@nangohq/providers 0.52.3 → 0.52.4
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.
- package/package.json +2 -2
- package/providers.yaml +139 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nangohq/providers",
|
|
3
|
-
"version": "0.52.
|
|
3
|
+
"version": "0.52.4",
|
|
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.52.
|
|
14
|
+
"@nangohq/types": "0.52.4",
|
|
15
15
|
"vitest": "2.1.8"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
package/providers.yaml
CHANGED
|
@@ -1783,6 +1783,45 @@ codeclimate:
|
|
|
1783
1783
|
title: API Key
|
|
1784
1784
|
description: The API key for your Code Climate account
|
|
1785
1785
|
|
|
1786
|
+
commercetools:
|
|
1787
|
+
display_name: Commercetools
|
|
1788
|
+
categories:
|
|
1789
|
+
- e-commerce
|
|
1790
|
+
auth_mode: OAUTH2_CC
|
|
1791
|
+
token_url: https://auth.${connectionConfig.region}.${connectionConfig.cloudProvider}.commercetools.com/oauth/token
|
|
1792
|
+
token_request_auth_method: basic
|
|
1793
|
+
scope_separator: ' '
|
|
1794
|
+
token_params:
|
|
1795
|
+
grant_type: client_credentials
|
|
1796
|
+
proxy:
|
|
1797
|
+
base_url: https://api.${connectionConfig.region}.${connectionConfig.cloudProvider}.commercetools.com/${connectionConfig.projectKey}
|
|
1798
|
+
headers:
|
|
1799
|
+
authorization: Bearer ${accessToken}
|
|
1800
|
+
docs: https://docs.nango.dev/integrations/all/commercetools
|
|
1801
|
+
docs_connect: https://docs.nango.dev/integrations/all/commercetools/connect
|
|
1802
|
+
connection_config:
|
|
1803
|
+
region:
|
|
1804
|
+
type: string
|
|
1805
|
+
title: Region
|
|
1806
|
+
description: The region of your Commercetools account. Use the full region identifier (e.g., 'us-central1' for GCP or 'us-east-2' for AWS).
|
|
1807
|
+
example: us-central1
|
|
1808
|
+
pattern: '^[a-z]+-[a-z0-9-]+$'
|
|
1809
|
+
doc_section: '#step-3-identify-your-region-and-cloud-provider'
|
|
1810
|
+
projectKey:
|
|
1811
|
+
type: string
|
|
1812
|
+
title: Project Key
|
|
1813
|
+
description: The project key of your Commercetools account
|
|
1814
|
+
example: demo-project-slug
|
|
1815
|
+
pattern: '^[a-zA-Z0-9-_]+$'
|
|
1816
|
+
doc_section: '#step-2-save-the-api-environment-variables'
|
|
1817
|
+
cloudProvider:
|
|
1818
|
+
type: string
|
|
1819
|
+
title: Cloud Provider
|
|
1820
|
+
description: Cloud provider used to host your Commercetools project (e.g., 'gcp' or 'aws')
|
|
1821
|
+
example: gcp
|
|
1822
|
+
pattern: '^(gcp|aws)$'
|
|
1823
|
+
doc_section: '#step-3-identify-your-region-and-cloud-provider'
|
|
1824
|
+
|
|
1786
1825
|
copper:
|
|
1787
1826
|
display_name: Copper
|
|
1788
1827
|
categories:
|
|
@@ -2341,6 +2380,60 @@ dropbox:
|
|
|
2341
2380
|
base_url: https://api.dropboxapi.com
|
|
2342
2381
|
docs: https://docs.nango.dev/integrations/all/dropbox
|
|
2343
2382
|
|
|
2383
|
+
drupal:
|
|
2384
|
+
display_name: Drupal
|
|
2385
|
+
categories:
|
|
2386
|
+
- dev-tools
|
|
2387
|
+
- design
|
|
2388
|
+
- cms
|
|
2389
|
+
auth_mode: TWO_STEP
|
|
2390
|
+
body_format: form
|
|
2391
|
+
token_url: https://${connectionConfig.baseUrl}/rest_api/access_token
|
|
2392
|
+
token_params:
|
|
2393
|
+
client_id: ${credential.clientId}
|
|
2394
|
+
client_secret: ${credential.clientSecret}
|
|
2395
|
+
username: ${credential.userName}
|
|
2396
|
+
grant_type: client_credentials
|
|
2397
|
+
token_headers:
|
|
2398
|
+
content-type: application/x-www-form-urlencoded
|
|
2399
|
+
accept: application/json
|
|
2400
|
+
token_response:
|
|
2401
|
+
token: access_token
|
|
2402
|
+
token_expiration: expires_in
|
|
2403
|
+
token_expiration_strategy: expireIn
|
|
2404
|
+
proxy:
|
|
2405
|
+
base_url: https://${connectionConfig.baseUrl}
|
|
2406
|
+
docs: https://docs.nango.dev/integrations/all/drupal
|
|
2407
|
+
docs_connect: https://docs.nango.dev/integrations/all/drupal/connect
|
|
2408
|
+
credentials:
|
|
2409
|
+
clientId:
|
|
2410
|
+
type: string
|
|
2411
|
+
title: Client ID
|
|
2412
|
+
description: Your Client ID
|
|
2413
|
+
secret: true
|
|
2414
|
+
doc_section: '#step-3-generating-your-drupal-client-credentials'
|
|
2415
|
+
clientSecret:
|
|
2416
|
+
type: string
|
|
2417
|
+
title: Client Secret
|
|
2418
|
+
description: Your Client Secret
|
|
2419
|
+
secret: true
|
|
2420
|
+
doc_section: '#step-3-generating-your-drupal-client-credentials'
|
|
2421
|
+
userName:
|
|
2422
|
+
type: string
|
|
2423
|
+
title: User Name
|
|
2424
|
+
description: Your Drupal User Name
|
|
2425
|
+
doc_section: '#step-2-finding-your-drupal-user-name'
|
|
2426
|
+
connection_config:
|
|
2427
|
+
baseUrl:
|
|
2428
|
+
type: string
|
|
2429
|
+
title: Base Url
|
|
2430
|
+
description: Your Drupal base url
|
|
2431
|
+
example: example.drupal.com
|
|
2432
|
+
format: hostname
|
|
2433
|
+
prefix: https://
|
|
2434
|
+
order: 1
|
|
2435
|
+
doc_section: '#step-1-finding-your-drupal-base-url'
|
|
2436
|
+
|
|
2344
2437
|
emarsys:
|
|
2345
2438
|
display_name: Emarsys Core API (WSSE)
|
|
2346
2439
|
categories:
|
|
@@ -6168,6 +6261,27 @@ replicate:
|
|
|
6168
6261
|
title: API Key
|
|
6169
6262
|
description: The API key for your Replicate account
|
|
6170
6263
|
|
|
6264
|
+
retell-ai:
|
|
6265
|
+
display_name: Retell AI
|
|
6266
|
+
categories:
|
|
6267
|
+
- dev-tools
|
|
6268
|
+
- productivity
|
|
6269
|
+
auth_mode: API_KEY
|
|
6270
|
+
proxy:
|
|
6271
|
+
base_url: https://api.retellai.com
|
|
6272
|
+
headers:
|
|
6273
|
+
authorization: Bearer ${apiKey}
|
|
6274
|
+
content-type: application/json
|
|
6275
|
+
docs: https://docs.nango.dev/integrations/all/retell-ai
|
|
6276
|
+
docs_connect: https://docs.nango.dev/integrations/all/retell-ai/connect
|
|
6277
|
+
credentials:
|
|
6278
|
+
apiKey:
|
|
6279
|
+
type: string
|
|
6280
|
+
title: API Key
|
|
6281
|
+
description: The API key for Retell AI
|
|
6282
|
+
example: key-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
6283
|
+
doc_section: '#step-1-finding-your-retell-ai-api-key'
|
|
6284
|
+
|
|
6171
6285
|
ring-central:
|
|
6172
6286
|
display_name: RingCentral
|
|
6173
6287
|
categories:
|
|
@@ -8049,6 +8163,31 @@ wrike:
|
|
|
8049
8163
|
format: hostname
|
|
8050
8164
|
prefix: https://
|
|
8051
8165
|
|
|
8166
|
+
xai:
|
|
8167
|
+
display_name: xAI
|
|
8168
|
+
categories:
|
|
8169
|
+
- productivity
|
|
8170
|
+
- dev-tools
|
|
8171
|
+
auth_mode: API_KEY
|
|
8172
|
+
proxy:
|
|
8173
|
+
base_url: https://api.x.ai
|
|
8174
|
+
headers:
|
|
8175
|
+
authorization: Bearer ${apiKey}
|
|
8176
|
+
content-type: application/json
|
|
8177
|
+
verification:
|
|
8178
|
+
method: GET
|
|
8179
|
+
endpoint: /v1/api-key
|
|
8180
|
+
docs: https://docs.nango.dev/integrations/all/xai
|
|
8181
|
+
docs_connect: https://docs.nango.dev/integrations/all/xai/connect
|
|
8182
|
+
credentials:
|
|
8183
|
+
apiKey:
|
|
8184
|
+
type: string
|
|
8185
|
+
title: API Key
|
|
8186
|
+
description: The API key for your xAI account
|
|
8187
|
+
example: xai-******************************************************
|
|
8188
|
+
pattern: 'xai-[A-Za-z0-9]+$'
|
|
8189
|
+
doc_section: '#step-1-generating-your-api-key'
|
|
8190
|
+
|
|
8052
8191
|
xero:
|
|
8053
8192
|
display_name: Xero
|
|
8054
8193
|
categories:
|