From dea6de315f26a34165528429d486f49e8ad29927 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Tue, 26 Nov 2024 13:05:44 +0000 Subject: [PATCH] chore(integration-templates): Automated commit updating flows.yaml based on changes in https://github.com/NangoHQ/integration-templates/commit/d718b188f9d3e40f2dd1ec269ac9a0de4ec40e09 by Hassan_Wari. Commit message: fix(salesforce): remove last_name as it might not be configured on all salesforce accounts (#124) --- packages/shared/flows.yaml | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/packages/shared/flows.yaml b/packages/shared/flows.yaml index 28392a484e..c293ba55b0 100644 --- a/packages/shared/flows.yaml +++ b/packages/shared/flows.yaml @@ -7739,7 +7739,7 @@ integrations: method: POST path: /contacts group: Contacts - version: 1.0.0 + version: 1.0.1 update-contact: description: Update a single contact in salesforce scopes: @@ -7751,7 +7751,7 @@ integrations: method: PATCH path: /contacts group: Contacts - version: 1.0.0 + version: 1.0.1 delete-contact: description: Delete a single contact in salesforce scopes: @@ -7775,7 +7775,7 @@ integrations: method: POST path: /leads group: Leads - version: 1.0.0 + version: 1.0.1 update-lead: description: Update a single lead in salesforce scopes: @@ -7787,7 +7787,7 @@ integrations: method: PATCH path: /leads group: Leads - version: 1.0.0 + version: 1.0.1 delete-lead: description: Delete a single lead in salesforce scopes: @@ -7893,7 +7893,7 @@ integrations: scopes: - offline_access - api - version: 1.0.2 + version: 1.0.3 endpoint: method: GET path: /contacts @@ -7911,7 +7911,7 @@ integrations: method: GET path: /leads group: Leads - version: 1.0.0 + version: 1.0.1 articles: runs: every day description: | @@ -7960,7 +7960,6 @@ integrations: Contact: id: string first_name: string | null - middle_name: string | null last_name: string account_name: string | null account_id: string | null @@ -7974,7 +7973,6 @@ integrations: last_modified_date: string CommonContactInput: first_name?: string | undefined - middle_name?: string | undefined account_id?: string | undefined owner_id?: string | undefined email?: string | undefined @@ -7984,7 +7982,6 @@ integrations: title?: string | undefined CreateContactInput: first_name?: string | undefined - middle_name?: string | undefined account_id?: string | undefined owner_id?: string | undefined email?: string | undefined @@ -7995,7 +7992,6 @@ integrations: last_name: string UpdateContactInput: first_name?: string | undefined - middle_name?: string | undefined account_id?: string | undefined owner_id?: string | undefined email?: string | undefined @@ -8007,7 +8003,6 @@ integrations: Lead: id: string first_name: string | null - middle_name: string | null last_name: string company_name: string email: string | null @@ -8021,7 +8016,6 @@ integrations: last_modified_date: string CommonLeadInput: first_name?: string | undefined - middle_name?: string | undefined email?: string | undefined owner_id?: string | undefined phone?: string | undefined @@ -8031,7 +8025,6 @@ integrations: industry?: string | undefined CreateLeadInput: first_name?: string | undefined - middle_name?: string | undefined email?: string | undefined owner_id?: string | undefined phone?: string | undefined @@ -8043,7 +8036,6 @@ integrations: company_name: string UpdateLeadInput: first_name?: string | undefined - middle_name?: string | undefined email?: string | undefined owner_id?: string | undefined phone?: string | undefined