@nangohq/providers 0.52.2 → 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 +299 -1
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:
|
|
@@ -3504,6 +3597,39 @@ gorgias:
|
|
|
3504
3597
|
suffix: .gorgias.com
|
|
3505
3598
|
prefix: https://
|
|
3506
3599
|
|
|
3600
|
+
grafana:
|
|
3601
|
+
display_name: Grafana
|
|
3602
|
+
categories:
|
|
3603
|
+
- dev-tools
|
|
3604
|
+
auth_mode: API_KEY
|
|
3605
|
+
proxy:
|
|
3606
|
+
base_url: https://${connectionConfig.domain}
|
|
3607
|
+
verification:
|
|
3608
|
+
endpoint: /api/access-control/user/permissions
|
|
3609
|
+
method: GET
|
|
3610
|
+
headers:
|
|
3611
|
+
authorization: Bearer ${apiKey}
|
|
3612
|
+
docs: https://docs.nango.dev/integrations/all/grafana
|
|
3613
|
+
docs_connect: https://docs.nango.dev/integrations/all/grafana/connect
|
|
3614
|
+
connection_config:
|
|
3615
|
+
domain:
|
|
3616
|
+
type: string
|
|
3617
|
+
title: Domain
|
|
3618
|
+
description: Your Grafana domain
|
|
3619
|
+
example: example.grafana.net
|
|
3620
|
+
prefix: https://
|
|
3621
|
+
format: hostname
|
|
3622
|
+
order: 1
|
|
3623
|
+
doc_section: '#step-1-finding-your-domain'
|
|
3624
|
+
credentials:
|
|
3625
|
+
apiKey:
|
|
3626
|
+
type: string
|
|
3627
|
+
title: Token
|
|
3628
|
+
description: The Token for your Grafana service account
|
|
3629
|
+
example: glsa_*****************************************
|
|
3630
|
+
pattern: '^[A-Za-z0-9_-]+$'
|
|
3631
|
+
doc_section: '#step-2-generating-your-service-account-token'
|
|
3632
|
+
|
|
3507
3633
|
grain:
|
|
3508
3634
|
display_name: Grain
|
|
3509
3635
|
categories:
|
|
@@ -3593,6 +3719,98 @@ greenhouse-basic:
|
|
|
3593
3719
|
suffix: .greenhouse.io
|
|
3594
3720
|
prefix: https://
|
|
3595
3721
|
order: 1
|
|
3722
|
+
doc_section: '#step-1-finding-your-greenhouse-api-domain'
|
|
3723
|
+
credentials:
|
|
3724
|
+
username:
|
|
3725
|
+
type: string
|
|
3726
|
+
title: API key
|
|
3727
|
+
description: The API Key of your Greenhouse account
|
|
3728
|
+
pattern: '^[a-zA-Z0-9-]+$'
|
|
3729
|
+
secret: true
|
|
3730
|
+
doc_section: '#step-2-finding-your-greenhouse-api-key'
|
|
3731
|
+
password:
|
|
3732
|
+
type: string
|
|
3733
|
+
title: Password
|
|
3734
|
+
description: Password
|
|
3735
|
+
# https://developers.greenhouse.io/harvest.html#authentication
|
|
3736
|
+
# Greenhouse is using basic auth with an api key
|
|
3737
|
+
default_value: ''
|
|
3738
|
+
hidden: true
|
|
3739
|
+
|
|
3740
|
+
greenhouse-harvest:
|
|
3741
|
+
display_name: Greenhouse (Harvest API)
|
|
3742
|
+
auth_mode: BASIC
|
|
3743
|
+
categories:
|
|
3744
|
+
- ats
|
|
3745
|
+
proxy:
|
|
3746
|
+
base_url: https://harvest.greenhouse.io
|
|
3747
|
+
retry:
|
|
3748
|
+
after: 'retry-after'
|
|
3749
|
+
docs: https://docs.nango.dev/integrations/all/greenhouse-harvest
|
|
3750
|
+
docs_connect: https://docs.nango.dev/integrations/all/greenhouse-harvest/connect
|
|
3751
|
+
credentials:
|
|
3752
|
+
username:
|
|
3753
|
+
type: string
|
|
3754
|
+
title: API key
|
|
3755
|
+
description: The API Key of your Greenhouse account
|
|
3756
|
+
pattern: '^[a-zA-Z0-9-]+$'
|
|
3757
|
+
secret: true
|
|
3758
|
+
doc_section: '#step-1-finding-your-greenhouse-api-key'
|
|
3759
|
+
password:
|
|
3760
|
+
type: string
|
|
3761
|
+
title: Password
|
|
3762
|
+
description: Password
|
|
3763
|
+
# https://developers.greenhouse.io/harvest.html#authentication
|
|
3764
|
+
# Greenhouse is using basic auth with an api key
|
|
3765
|
+
default_value: ''
|
|
3766
|
+
hidden: true
|
|
3767
|
+
|
|
3768
|
+
greenhouse-job-board:
|
|
3769
|
+
display_name: Greenhouse (Job Board API)
|
|
3770
|
+
auth_mode: BASIC
|
|
3771
|
+
categories:
|
|
3772
|
+
- ats
|
|
3773
|
+
proxy:
|
|
3774
|
+
base_url: https://boards-api.greenhouse.io
|
|
3775
|
+
docs: https://docs.nango.dev/integrations/all/greenhouse-job-board
|
|
3776
|
+
docs_connect: https://docs.nango.dev/integrations/all/greenhouse-job-board/connect
|
|
3777
|
+
credentials:
|
|
3778
|
+
username:
|
|
3779
|
+
type: string
|
|
3780
|
+
title: API key
|
|
3781
|
+
description: The API Key of your Greenhouse account
|
|
3782
|
+
pattern: '^[a-zA-Z0-9-]+$'
|
|
3783
|
+
secret: true
|
|
3784
|
+
doc_section: '#step-1-finding-your-greenhouse-api-key'
|
|
3785
|
+
password:
|
|
3786
|
+
type: string
|
|
3787
|
+
title: Password
|
|
3788
|
+
description: Password
|
|
3789
|
+
# https://developers.greenhouse.io/harvest.html#authentication
|
|
3790
|
+
# Greenhouse is using basic auth with an api key
|
|
3791
|
+
default_value: ''
|
|
3792
|
+
hidden: true
|
|
3793
|
+
|
|
3794
|
+
greenhouse-assessment:
|
|
3795
|
+
display_name: Greenhouse (Assessment API)
|
|
3796
|
+
auth_mode: BASIC
|
|
3797
|
+
categories:
|
|
3798
|
+
- ats
|
|
3799
|
+
proxy:
|
|
3800
|
+
base_url: https://${connectionConfig.baseUrl}
|
|
3801
|
+
docs: https://docs.nango.dev/integrations/all/greenhouse-assessment
|
|
3802
|
+
docs_connect: https://docs.nango.dev/integrations/all/greenhouse-assessment/connect
|
|
3803
|
+
connection_config:
|
|
3804
|
+
baseUrl:
|
|
3805
|
+
type: string
|
|
3806
|
+
title: Assessment Base Url
|
|
3807
|
+
description: The Assessment API Base Url you want to connect to
|
|
3808
|
+
pattern: '^[a-z0-9_-]+$'
|
|
3809
|
+
example: www.testing-partner.com
|
|
3810
|
+
prefix: https://
|
|
3811
|
+
format: hostname
|
|
3812
|
+
order: 1
|
|
3813
|
+
doc_section: '#step-1-obtaining-your-base-url'
|
|
3596
3814
|
credentials:
|
|
3597
3815
|
username:
|
|
3598
3816
|
type: string
|
|
@@ -3600,7 +3818,7 @@ greenhouse-basic:
|
|
|
3600
3818
|
description: The API Key of your Greenhouse account
|
|
3601
3819
|
pattern: '^[a-zA-Z0-9-]+$'
|
|
3602
3820
|
secret: true
|
|
3603
|
-
doc_section: '#step-
|
|
3821
|
+
doc_section: '#step-2-obtaining-your-api-key'
|
|
3604
3822
|
password:
|
|
3605
3823
|
type: string
|
|
3606
3824
|
title: Password
|
|
@@ -3610,6 +3828,40 @@ greenhouse-basic:
|
|
|
3610
3828
|
default_value: ''
|
|
3611
3829
|
hidden: true
|
|
3612
3830
|
|
|
3831
|
+
greenhouse-ingestion:
|
|
3832
|
+
display_name: Greenhouse (Ingestion API)
|
|
3833
|
+
auth_mode: OAUTH2
|
|
3834
|
+
authorization_url: https://api.greenhouse.io/oauth/authorize
|
|
3835
|
+
token_url: https://api.greenhouse.io/oauth/token
|
|
3836
|
+
categories:
|
|
3837
|
+
- ats
|
|
3838
|
+
proxy:
|
|
3839
|
+
base_url: https://api.greenhouse.io
|
|
3840
|
+
docs: https://docs.nango.dev/integrations/all/greenhouse-ingestion
|
|
3841
|
+
|
|
3842
|
+
greenhouse-onboarding:
|
|
3843
|
+
display_name: Greenhouse (Onboarding API)
|
|
3844
|
+
auth_mode: BASIC
|
|
3845
|
+
categories:
|
|
3846
|
+
- ats
|
|
3847
|
+
proxy:
|
|
3848
|
+
base_url: https://onboarding-api.greenhouse.io/graphql
|
|
3849
|
+
credentials:
|
|
3850
|
+
username:
|
|
3851
|
+
type: string
|
|
3852
|
+
title: Access Key
|
|
3853
|
+
description: The Access Key to your Greenhouse Onboarding account
|
|
3854
|
+
pattern: '^[a-zA-Z0-9-]+$'
|
|
3855
|
+
doc_section: '#step-1-generating-your-access-and-secret-key'
|
|
3856
|
+
password:
|
|
3857
|
+
type: string
|
|
3858
|
+
title: Secret Key
|
|
3859
|
+
description: The Secret Key to your Greenhouse Onboarding account
|
|
3860
|
+
pattern: '^[a-zA-Z0-9-]+$'
|
|
3861
|
+
doc_section: '#step-1-generating-your-access-and-secret-key'
|
|
3862
|
+
docs: https://docs.nango.dev/integrations/all/greenhouse-onboarding
|
|
3863
|
+
docs_connect: https://docs.nango.dev/integrations/all/greenhouse-onboarding/connect
|
|
3864
|
+
|
|
3613
3865
|
gumroad:
|
|
3614
3866
|
display_name: Gumroad
|
|
3615
3867
|
categories:
|
|
@@ -6009,6 +6261,27 @@ replicate:
|
|
|
6009
6261
|
title: API Key
|
|
6010
6262
|
description: The API key for your Replicate account
|
|
6011
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
|
+
|
|
6012
6285
|
ring-central:
|
|
6013
6286
|
display_name: RingCentral
|
|
6014
6287
|
categories:
|
|
@@ -7890,6 +8163,31 @@ wrike:
|
|
|
7890
8163
|
format: hostname
|
|
7891
8164
|
prefix: https://
|
|
7892
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
|
+
|
|
7893
8191
|
xero:
|
|
7894
8192
|
display_name: Xero
|
|
7895
8193
|
categories:
|