Skip to content

Commit

Permalink
chore(integration-templates): Automated commit updating flows.yaml ba…
Browse files Browse the repository at this point in the history
…sed on changes in NangoHQ/integration-templates@d718b18 by Hassan_Wari. Commit message: fix(salesforce): remove last_name as it might not be configured on all salesforce accounts (#124)
  • Loading branch information
github-actions[bot] committed Nov 26, 2024
1 parent 1d87a74 commit dea6de3
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions packages/shared/flows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -7893,7 +7893,7 @@ integrations:
scopes:
- offline_access
- api
version: 1.0.2
version: 1.0.3
endpoint:
method: GET
path: /contacts
Expand All @@ -7911,7 +7911,7 @@ integrations:
method: GET
path: /leads
group: Leads
version: 1.0.0
version: 1.0.1
articles:
runs: every day
description: |
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit dea6de3

Please sign in to comment.