@nangohq/providers 0.57.1 → 0.57.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/providers.yaml +75 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.57.1",
3
+ "version": "0.57.2",
4
4
  "description": "Nango's providers.yaml and getters",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -11,7 +11,7 @@
11
11
  "js-yaml": "4.1.0"
12
12
  },
13
13
  "devDependencies": {
14
- "@nangohq/types": "0.57.1",
14
+ "@nangohq/types": "0.57.2",
15
15
  "vitest": "2.1.9"
16
16
  },
17
17
  "files": [
package/providers.yaml CHANGED
@@ -927,6 +927,7 @@ aws-iam:
927
927
  region: ${connectionConfig.region}
928
928
  retry:
929
929
  at: 'x-ratelimit-reset'
930
+ credentials_verification_script: awsIamCredentialsVerification
930
931
  docs: https://docs.nango.dev/integrations/all/aws-iam
931
932
  docs_connect: https://docs.nango.dev/integrations/all/aws-iam/connect
932
933
  credentials:
@@ -1704,6 +1705,31 @@ calendly:
1704
1705
  webhook_routing_script: calendlyWebhookRouting
1705
1706
  docs: https://docs.nango.dev/integrations/all/calendly
1706
1707
 
1708
+ callrail:
1709
+ display_name: Callrail
1710
+ categories:
1711
+ - marketing
1712
+ auth_mode: API_KEY
1713
+ proxy:
1714
+ base_url: https://api.callrail.com
1715
+ headers:
1716
+ authorization: Token token=${apiKey}
1717
+ content-type: application/json
1718
+ verification:
1719
+ method: GET
1720
+ endpoints:
1721
+ - /v3/a.json
1722
+ docs_connect: https://docs.nango.dev/integrations/all/callrail/connect
1723
+ credentials:
1724
+ apiKey:
1725
+ type: string
1726
+ title: API Key
1727
+ description: The API key for your Callrail account
1728
+ pattern: '^[a-f0-9]{32}$'
1729
+ example: '4f3c12efb9659a0b5c123b568745dbf9'
1730
+ doc_section: '#step-1-finding-your-api-key'
1731
+ docs: https://docs.nango.dev/integrations/all/callrail
1732
+
1707
1733
  canny:
1708
1734
  display_name: Canny
1709
1735
  categories:
@@ -1904,8 +1930,8 @@ checkr-partner:
1904
1930
  base_url: https://api.checkr.com
1905
1931
  token_response_metadata:
1906
1932
  - checkr_account_id
1907
- webhook_routing_script: checkrWebhookRouting
1908
- post_connection_script: checkrPostConnection
1933
+ webhook_routing_script: checkrPartnerWebhookRouting
1934
+ post_connection_script: checkrPartnerPostConnection
1909
1935
  docs: https://docs.nango.dev/integrations/all/checkr-partner
1910
1936
  connection_config:
1911
1937
  client_id:
@@ -1929,8 +1955,8 @@ checkr-partner-staging:
1929
1955
  base_url: https://api.checkr-staging.com
1930
1956
  token_response_metadata:
1931
1957
  - checkr_account_id
1932
- webhook_routing_script: checkrWebhookRouting
1933
- post_connection_script: checkrPostConnection
1958
+ webhook_routing_script: checkrPartnerWebhookRouting
1959
+ post_connection_script: checkrPartnerPostConnection
1934
1960
  docs: https://docs.nango.dev/integrations/all/checkr-partner-staging
1935
1961
  connection_config:
1936
1962
  client_id:
@@ -3226,6 +3252,46 @@ figma:
3226
3252
  base_url: https://api.figma.com
3227
3253
  docs: https://docs.nango.dev/integrations/all/figma
3228
3254
 
3255
+ figma-scim:
3256
+ display_name: Figma (SCIM)
3257
+ categories:
3258
+ - design
3259
+ - productivity
3260
+ auth_mode: API_KEY
3261
+ proxy:
3262
+ base_url: https://${connectionConfig.host}/scim
3263
+ headers:
3264
+ authorization: Bearer ${apiKey}
3265
+ verification:
3266
+ method: GET
3267
+ endpoints:
3268
+ - /v2/${connectionConfig.tenantId}/Users
3269
+ docs: https://docs.nango.dev/integrations/all/figma-scim
3270
+ docs_connect: https://docs.nango.dev/integrations/all/figma-scim/connect
3271
+ credentials:
3272
+ apiKey:
3273
+ type: string
3274
+ title: API Token
3275
+ description: The API token for your Figma account
3276
+ doc_section: '#step-3-generating-your-api-token'
3277
+ connection_config:
3278
+ host:
3279
+ type: string
3280
+ title: Host
3281
+ description: The host to your Figma account
3282
+ example: www.figma.com
3283
+ format: hostname
3284
+ prefix: https://
3285
+ pattern: ^(www\.figma\.com|figma-gov\.com)+$
3286
+ order: 1
3287
+ doc_section: '#step-1-finding-your-host'
3288
+ tenantId:
3289
+ type: string
3290
+ title: Tenant ID
3291
+ description: The tenant ID of your Figma account
3292
+ order: 2
3293
+ doc_section: '#step-2-finding-your-tenant-id'
3294
+
3229
3295
  falai:
3230
3296
  display_name: fal.ai
3231
3297
  categories:
@@ -3815,7 +3881,12 @@ ghost-admin:
3815
3881
  headers:
3816
3882
  accept: application/json
3817
3883
  accept-version: ${connectionConfig.version}
3884
+ authorization: Ghost ${accessToken}
3818
3885
  base_url: https://${connectionConfig.adminDomain}/ghost/api/admin/
3886
+ verification:
3887
+ method: GET
3888
+ endpoints:
3889
+ - /users
3819
3890
  docs: https://docs.nango.dev/integrations/all/ghost-admin
3820
3891
  connection_config:
3821
3892
  adminDomain: