@nangohq/providers 0.56.3 → 0.57.0
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 +201 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nangohq/providers",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.57.0",
|
|
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.
|
|
14
|
+
"@nangohq/types": "0.57.0",
|
|
15
15
|
"vitest": "2.1.9"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
package/providers.yaml
CHANGED
|
@@ -494,6 +494,9 @@ anthropic:
|
|
|
494
494
|
content-type: application/json
|
|
495
495
|
retry:
|
|
496
496
|
after: 'retry-after'
|
|
497
|
+
verification:
|
|
498
|
+
method: GET
|
|
499
|
+
endpoint: v1/models
|
|
497
500
|
docs: https://docs.nango.dev/integrations/all/anthropic
|
|
498
501
|
connection_config:
|
|
499
502
|
version:
|
|
@@ -508,6 +511,37 @@ anthropic:
|
|
|
508
511
|
title: API Key
|
|
509
512
|
description: The API key for your Anthropic account
|
|
510
513
|
|
|
514
|
+
anthropic-admin:
|
|
515
|
+
display_name: Anthropic Administrator
|
|
516
|
+
categories:
|
|
517
|
+
- productivity
|
|
518
|
+
- dev-tools
|
|
519
|
+
auth_mode: API_KEY
|
|
520
|
+
proxy:
|
|
521
|
+
base_url: https://api.anthropic.com
|
|
522
|
+
headers:
|
|
523
|
+
x-api-key: ${apiKey}
|
|
524
|
+
anthropic-version: ${connectionConfig.version}
|
|
525
|
+
content-type: application/json
|
|
526
|
+
retry:
|
|
527
|
+
after: 'retry-after'
|
|
528
|
+
verification:
|
|
529
|
+
method: GET
|
|
530
|
+
endpoint: /v1/organizations/users
|
|
531
|
+
docs: https://docs.nango.dev/integrations/all/anthropic-admin
|
|
532
|
+
connection_config:
|
|
533
|
+
version:
|
|
534
|
+
type: string
|
|
535
|
+
title: API Version
|
|
536
|
+
description: The version of the Anthropic API to use
|
|
537
|
+
pattern: '^[0-9]{4}-[0-9]{2}-[0-9]{2}$'
|
|
538
|
+
example: '2023-06-01'
|
|
539
|
+
credentials:
|
|
540
|
+
apiKey:
|
|
541
|
+
type: string
|
|
542
|
+
title: API Key
|
|
543
|
+
description: The Admin API key for your Anthropic account
|
|
544
|
+
|
|
511
545
|
apaleo:
|
|
512
546
|
display_name: Apaleo
|
|
513
547
|
categories:
|
|
@@ -1238,6 +1272,9 @@ blandai:
|
|
|
1238
1272
|
base_url: https://api.bland.ai
|
|
1239
1273
|
headers:
|
|
1240
1274
|
authorization: ${apiKey}
|
|
1275
|
+
verification:
|
|
1276
|
+
method: GET
|
|
1277
|
+
endpoint: v1/calls
|
|
1241
1278
|
docs: https://docs.nango.dev/integrations/all/blandai
|
|
1242
1279
|
credentials:
|
|
1243
1280
|
apiKey:
|
|
@@ -1374,6 +1411,9 @@ brevo-api-key:
|
|
|
1374
1411
|
headers:
|
|
1375
1412
|
api-key: ${apiKey}
|
|
1376
1413
|
base_url: https://api.brevo.com/v3
|
|
1414
|
+
verification:
|
|
1415
|
+
method: GET
|
|
1416
|
+
endpoint: /account
|
|
1377
1417
|
docs: https://docs.nango.dev/integrations/all/brevo-api-key
|
|
1378
1418
|
credentials:
|
|
1379
1419
|
apiKey:
|
|
@@ -1451,6 +1491,9 @@ builder-io-private:
|
|
|
1451
1491
|
base_url: https://${connectionConfig.domain}
|
|
1452
1492
|
headers:
|
|
1453
1493
|
authorization: Bearer ${apiKey}
|
|
1494
|
+
verification:
|
|
1495
|
+
method: POST
|
|
1496
|
+
endpoint: /api/v1/write/page
|
|
1454
1497
|
docs: https://docs.nango.dev/integrations/all/builder-io-private
|
|
1455
1498
|
docs_connect: https://docs.nango.dev/integrations/all/builder-io-private/connect
|
|
1456
1499
|
connection_config:
|
|
@@ -1482,6 +1525,9 @@ builder-io-public:
|
|
|
1482
1525
|
base_url: https://${connectionConfig.domain}
|
|
1483
1526
|
query:
|
|
1484
1527
|
apiKey: ${apiKey}
|
|
1528
|
+
verification:
|
|
1529
|
+
method: GET
|
|
1530
|
+
endpoint: /api/v1/content/page
|
|
1485
1531
|
docs: https://docs.nango.dev/integrations/all/builder-io-public
|
|
1486
1532
|
docs_connect: https://docs.nango.dev/integrations/all/builder-io-public/connect
|
|
1487
1533
|
connection_config:
|
|
@@ -1699,11 +1745,13 @@ certn:
|
|
|
1699
1745
|
method: GET
|
|
1700
1746
|
endpoint: /api/v2/teams
|
|
1701
1747
|
docs: https://docs.nango.dev/integrations/all/certn
|
|
1748
|
+
docs_connect: https://docs.nango.dev/integrations/all/certn
|
|
1702
1749
|
credentials:
|
|
1703
1750
|
apiKey:
|
|
1704
1751
|
type: string
|
|
1705
1752
|
title: API Key
|
|
1706
1753
|
description: The API key for your Certn account
|
|
1754
|
+
doc_section: '#step-1-creating-an-api-key'
|
|
1707
1755
|
|
|
1708
1756
|
certn-partner:
|
|
1709
1757
|
display_name: Certn Partner
|
|
@@ -1737,6 +1785,7 @@ chargebee:
|
|
|
1737
1785
|
retry:
|
|
1738
1786
|
after: 'retry-after'
|
|
1739
1787
|
docs: https://docs.nango.dev/integrations/all/chargebee
|
|
1788
|
+
docs_connect: https://docs.nango.dev/integrations/all/chargebee/connect
|
|
1740
1789
|
connection_config:
|
|
1741
1790
|
subdomain:
|
|
1742
1791
|
type: string
|
|
@@ -1746,6 +1795,7 @@ chargebee:
|
|
|
1746
1795
|
example: domain
|
|
1747
1796
|
suffix: .chargebee.com
|
|
1748
1797
|
prefix: https://
|
|
1798
|
+
doc_section: '#step-1-creating-an-api-key'
|
|
1749
1799
|
credentials:
|
|
1750
1800
|
username:
|
|
1751
1801
|
type: string
|
|
@@ -1774,6 +1824,9 @@ chattermill:
|
|
|
1774
1824
|
authorization: Bearer ${apiKey}
|
|
1775
1825
|
accept: application/json
|
|
1776
1826
|
content-type: application/json
|
|
1827
|
+
verification:
|
|
1828
|
+
method: GET
|
|
1829
|
+
endpoint: /v1/projects
|
|
1777
1830
|
docs: https://docs.nango.dev/integrations/all/chattermill
|
|
1778
1831
|
credentials:
|
|
1779
1832
|
apiKey:
|
|
@@ -1873,6 +1926,7 @@ checkout-com:
|
|
|
1873
1926
|
accept: application/json
|
|
1874
1927
|
base_url: https://api.checkout.com
|
|
1875
1928
|
docs: https://docs.nango.dev/integrations/all/checkout-com
|
|
1929
|
+
docs_connect: https://docs.nango.dev/integrations/all/checkout-com/connect
|
|
1876
1930
|
|
|
1877
1931
|
checkout-com-sandbox:
|
|
1878
1932
|
display_name: Checkout.com (Sandbox)
|
|
@@ -1889,6 +1943,7 @@ checkout-com-sandbox:
|
|
|
1889
1943
|
accept: application/json
|
|
1890
1944
|
base_url: https://api.sandbox.checkout.com
|
|
1891
1945
|
docs: https://docs.nango.dev/integrations/all/checkout-com-sandbox
|
|
1946
|
+
docs_connect: https://docs.nango.dev/integrations/all/checkout-com-sandbox/connect
|
|
1892
1947
|
|
|
1893
1948
|
chorus:
|
|
1894
1949
|
display_name: Chorus
|
|
@@ -1935,6 +1990,9 @@ clari-copilot:
|
|
|
1935
1990
|
x-api-key: ${apiKey}
|
|
1936
1991
|
x-api-password: ${connectionConfig.API_PASSWORD}
|
|
1937
1992
|
base_url: https://rest-api.copilot.clari.com
|
|
1993
|
+
verification:
|
|
1994
|
+
method: GET
|
|
1995
|
+
endpoint: /calls
|
|
1938
1996
|
docs: https://docs.nango.dev/integrations/all/clari-copilot
|
|
1939
1997
|
connection_config:
|
|
1940
1998
|
API_PASSWORD:
|
|
@@ -1971,19 +2029,23 @@ cloudentity:
|
|
|
1971
2029
|
proxy:
|
|
1972
2030
|
base_url: https://${connectionConfig.tenantID}.${connectionConfig.regionID}.authz.cloudentity.io/${connectionConfig.tenantID}/${connectionConfig.workspaceID}
|
|
1973
2031
|
docs: https://docs.nango.dev/integrations/all/cloudentity
|
|
2032
|
+
docs_connect: https://docs.nango.dev/integrations/all/cloudentity/connect
|
|
1974
2033
|
connection_config:
|
|
1975
2034
|
tenantID:
|
|
1976
2035
|
type: string
|
|
1977
2036
|
title: Tenant ID
|
|
1978
2037
|
description: The tenant ID of your Cloudentity account
|
|
2038
|
+
doc_section: '#step-2-retrieving-the-tenant-id'
|
|
1979
2039
|
regionID:
|
|
1980
2040
|
type: string
|
|
1981
2041
|
title: Region ID
|
|
1982
2042
|
description: The region ID of your Cloudentity account
|
|
2043
|
+
doc_section: '#step-3-retrieving-the-region-id'
|
|
1983
2044
|
workspaceID:
|
|
1984
2045
|
type: string
|
|
1985
2046
|
title: Workspace ID
|
|
1986
2047
|
description: The workspace ID of your Cloudentity account
|
|
2048
|
+
doc_section: '#step-4-retrieving-the-workspace-id'
|
|
1987
2049
|
|
|
1988
2050
|
close:
|
|
1989
2051
|
display_name: Close
|
|
@@ -2010,12 +2072,17 @@ coda:
|
|
|
2010
2072
|
base_url: https://coda.io/apis/v1
|
|
2011
2073
|
headers:
|
|
2012
2074
|
authorization: Bearer ${apiKey}
|
|
2075
|
+
verification:
|
|
2076
|
+
method: GET
|
|
2077
|
+
endpoint: /whoami
|
|
2013
2078
|
docs: https://docs.nango.dev/integrations/all/coda
|
|
2079
|
+
docs_connect: https://docs.nango.dev/integrations/all/coda/connect
|
|
2014
2080
|
credentials:
|
|
2015
2081
|
apiKey:
|
|
2016
2082
|
type: string
|
|
2017
2083
|
title: API Key
|
|
2018
2084
|
description: The API key for your Coda account
|
|
2085
|
+
doc_section: '#step-1-creating-an-api-key'
|
|
2019
2086
|
|
|
2020
2087
|
codeclimate:
|
|
2021
2088
|
display_name: Code Climate
|
|
@@ -2032,6 +2099,7 @@ codeclimate:
|
|
|
2032
2099
|
method: GET
|
|
2033
2100
|
endpoint: /v1/user
|
|
2034
2101
|
docs: https://docs.nango.dev/integrations/all/codeclimate
|
|
2102
|
+
docs_connect: https://docs.nango.dev/integrations/all/codeclimate/connect
|
|
2035
2103
|
connection_config:
|
|
2036
2104
|
domain:
|
|
2037
2105
|
type: string
|
|
@@ -2039,11 +2107,13 @@ codeclimate:
|
|
|
2039
2107
|
description: The domain of your Code Climate account
|
|
2040
2108
|
format: hostname
|
|
2041
2109
|
prefix: https://
|
|
2110
|
+
doc_section: '#step-1-obtaining-the-domain-url'
|
|
2042
2111
|
credentials:
|
|
2043
2112
|
apiKey:
|
|
2044
2113
|
type: string
|
|
2045
2114
|
title: API Key
|
|
2046
2115
|
description: The API key for your Code Climate account
|
|
2116
|
+
doc_section: '#step-2-creating-an-api-key'
|
|
2047
2117
|
|
|
2048
2118
|
commercetools:
|
|
2049
2119
|
display_name: Commercetools
|
|
@@ -2572,6 +2642,10 @@ dixa:
|
|
|
2572
2642
|
base_url: https://${connectionConfig.apiType}.dixa.io
|
|
2573
2643
|
headers:
|
|
2574
2644
|
authorization: ${apiKey}
|
|
2645
|
+
verification:
|
|
2646
|
+
method: GET
|
|
2647
|
+
endpoint: /v1/agents
|
|
2648
|
+
base_url_override: https://dev.dixa.io
|
|
2575
2649
|
docs: https://docs.nango.dev/integrations/all/dixa
|
|
2576
2650
|
credentials:
|
|
2577
2651
|
apiKey:
|
|
@@ -3124,6 +3198,9 @@ falai:
|
|
|
3124
3198
|
headers:
|
|
3125
3199
|
authorization: Key ${apiKey}
|
|
3126
3200
|
base_url: https://queue.fal.run
|
|
3201
|
+
verification:
|
|
3202
|
+
method: POST
|
|
3203
|
+
endpoint: /fal-ai/fast-sdxl
|
|
3127
3204
|
docs: https://docs.nango.dev/integrations/all/falai
|
|
3128
3205
|
credentials:
|
|
3129
3206
|
apiKey:
|
|
@@ -3173,6 +3250,9 @@ fireflies:
|
|
|
3173
3250
|
base_url: https://api.fireflies.ai
|
|
3174
3251
|
headers:
|
|
3175
3252
|
authorization: Bearer ${apiKey}
|
|
3253
|
+
verification:
|
|
3254
|
+
method: GET
|
|
3255
|
+
endpoint: /graphql?query=%7B__schema%7Btypes%7Bname%7D%7D%7D
|
|
3176
3256
|
docs: https://docs.nango.dev/integrations/all/fireflies
|
|
3177
3257
|
credentials:
|
|
3178
3258
|
apiKey:
|
|
@@ -4093,6 +4173,8 @@ greenhouse-basic:
|
|
|
4093
4173
|
type: link
|
|
4094
4174
|
limit_name_in_request: per_page
|
|
4095
4175
|
link_rel_in_response_header: next
|
|
4176
|
+
verification:
|
|
4177
|
+
endpoint: /v1/candidates/
|
|
4096
4178
|
docs: https://docs.nango.dev/integrations/all/greenhouse-basic
|
|
4097
4179
|
docs_connect: https://docs.nango.dev/integrations/all/greenhouse-basic/connect
|
|
4098
4180
|
connection_config:
|
|
@@ -4132,6 +4214,9 @@ greenhouse-harvest:
|
|
|
4132
4214
|
base_url: https://harvest.greenhouse.io
|
|
4133
4215
|
retry:
|
|
4134
4216
|
after: 'retry-after'
|
|
4217
|
+
verification:
|
|
4218
|
+
method: GET
|
|
4219
|
+
endpoint: /v1/candidates
|
|
4135
4220
|
docs: https://docs.nango.dev/integrations/all/greenhouse-harvest
|
|
4136
4221
|
docs_connect: https://docs.nango.dev/integrations/all/greenhouse-harvest/connect
|
|
4137
4222
|
credentials:
|
|
@@ -4184,6 +4269,8 @@ greenhouse-assessment:
|
|
|
4184
4269
|
- ats
|
|
4185
4270
|
proxy:
|
|
4186
4271
|
base_url: https://${connectionConfig.baseUrl}
|
|
4272
|
+
verification:
|
|
4273
|
+
endpoint: /list_tests
|
|
4187
4274
|
docs: https://docs.nango.dev/integrations/all/greenhouse-assessment
|
|
4188
4275
|
docs_connect: https://docs.nango.dev/integrations/all/greenhouse-assessment/connect
|
|
4189
4276
|
connection_config:
|
|
@@ -4232,6 +4319,8 @@ greenhouse-onboarding:
|
|
|
4232
4319
|
- ats
|
|
4233
4320
|
proxy:
|
|
4234
4321
|
base_url: https://onboarding-api.greenhouse.io/graphql
|
|
4322
|
+
verification:
|
|
4323
|
+
endpoint: ?query=%7B__schema%7Btypes%7Bname,kind,fields%7Bname%7D%7D%7D%7D
|
|
4235
4324
|
credentials:
|
|
4236
4325
|
username:
|
|
4237
4326
|
type: string
|
|
@@ -5805,7 +5894,21 @@ miro-scim:
|
|
|
5805
5894
|
title: API Key
|
|
5806
5895
|
description: The API key for your Miro scim account
|
|
5807
5896
|
doc_section: '#step-1-finding-miro-api-key'
|
|
5808
|
-
|
|
5897
|
+
missive:
|
|
5898
|
+
display_name: Missive
|
|
5899
|
+
categories:
|
|
5900
|
+
- productivity
|
|
5901
|
+
auth_mode: API_KEY
|
|
5902
|
+
proxy:
|
|
5903
|
+
headers:
|
|
5904
|
+
api_token: ${apiKey}
|
|
5905
|
+
base_url: https://missiveapp.com
|
|
5906
|
+
docs: https://docs.nango.dev/integrations/all/missive
|
|
5907
|
+
credentials:
|
|
5908
|
+
apiKey:
|
|
5909
|
+
type: string
|
|
5910
|
+
title: API Key
|
|
5911
|
+
description: The API key for your Missive account
|
|
5809
5912
|
monday:
|
|
5810
5913
|
display_name: Monday
|
|
5811
5914
|
categories:
|
|
@@ -6893,6 +6996,85 @@ rapidapi:
|
|
|
6893
6996
|
suffix: .p.rapidapi.com
|
|
6894
6997
|
prefix: https://
|
|
6895
6998
|
|
|
6999
|
+
razorpay:
|
|
7000
|
+
display_name: Razorpay
|
|
7001
|
+
categories:
|
|
7002
|
+
- payment
|
|
7003
|
+
auth_mode: BASIC
|
|
7004
|
+
proxy:
|
|
7005
|
+
base_url: https://api.razorpay.com
|
|
7006
|
+
verification:
|
|
7007
|
+
method: GET
|
|
7008
|
+
endpoint: /v1/orders
|
|
7009
|
+
docs: https://docs.nango.dev/integrations/all/razorpay
|
|
7010
|
+
docs_connect: https://docs.nango.dev/integrations/all/razorpay/connect
|
|
7011
|
+
credentials:
|
|
7012
|
+
username:
|
|
7013
|
+
type: string
|
|
7014
|
+
title: Key ID
|
|
7015
|
+
description: Your Key ID
|
|
7016
|
+
pattern: '^rzp_(test|live)_[A-Za-z0-9]+$'
|
|
7017
|
+
example: 'rzp_test_*************'
|
|
7018
|
+
doc_section: '#step-1-finding-your-key-id-and-secret'
|
|
7019
|
+
password:
|
|
7020
|
+
type: string
|
|
7021
|
+
title: Key Secret
|
|
7022
|
+
description: Your Key Secret
|
|
7023
|
+
secret: true
|
|
7024
|
+
pattern: '^[a-zA-Z0-9]+$'
|
|
7025
|
+
doc_section: '#step-1-finding-your-key-id-and-secret'
|
|
7026
|
+
|
|
7027
|
+
readwise:
|
|
7028
|
+
display_name: Readwise
|
|
7029
|
+
categories:
|
|
7030
|
+
- productivity
|
|
7031
|
+
auth_mode: API_KEY
|
|
7032
|
+
proxy:
|
|
7033
|
+
base_url: https://readwise.io/api/v2
|
|
7034
|
+
headers:
|
|
7035
|
+
authorization: Token ${apiKey}
|
|
7036
|
+
verification:
|
|
7037
|
+
method: GET
|
|
7038
|
+
endpoint: /auth
|
|
7039
|
+
retry:
|
|
7040
|
+
after: 'retry-after'
|
|
7041
|
+
docs: https://docs.nango.dev/integrations/all/readwise
|
|
7042
|
+
docs_connect: https://docs.nango.dev/integrations/all/readwise/connect
|
|
7043
|
+
credentials:
|
|
7044
|
+
apiKey:
|
|
7045
|
+
type: string
|
|
7046
|
+
title: Access Token
|
|
7047
|
+
description: The Access Token for your Readwise account
|
|
7048
|
+
example: zCDL1fUOpu4Cg3WMlMl1S7ecKsaBQlfCzw7sbVfc0wBqUJMI56
|
|
7049
|
+
pattern: '^[a-zA-Z0-9]+$'
|
|
7050
|
+
doc_section: '#step-1-generating-your-access-token'
|
|
7051
|
+
|
|
7052
|
+
readwise-reader:
|
|
7053
|
+
display_name: Readwise Reader
|
|
7054
|
+
categories:
|
|
7055
|
+
- productivity
|
|
7056
|
+
auth_mode: API_KEY
|
|
7057
|
+
proxy:
|
|
7058
|
+
base_url: https://readwise.io/api/v3
|
|
7059
|
+
headers:
|
|
7060
|
+
authorization: Token ${apiKey}
|
|
7061
|
+
verification:
|
|
7062
|
+
method: GET
|
|
7063
|
+
base_url_override: https://readwise.io
|
|
7064
|
+
endpoint: /api/v2/auth
|
|
7065
|
+
retry:
|
|
7066
|
+
after: 'retry-after'
|
|
7067
|
+
docs: https://docs.nango.dev/integrations/all/readwise-reader
|
|
7068
|
+
docs_connect: https://docs.nango.dev/integrations/all/readwise-reader/connect
|
|
7069
|
+
credentials:
|
|
7070
|
+
apiKey:
|
|
7071
|
+
type: string
|
|
7072
|
+
title: Access Token
|
|
7073
|
+
description: The Access Token for your Readwise account
|
|
7074
|
+
example: zCDL1fUOpu4Cg3WMlMl1S7ecKsaBQlfCzw7sbVfc0wBqUJMI56
|
|
7075
|
+
pattern: '^[a-zA-Z0-9]+$'
|
|
7076
|
+
doc_section: '#step-1-generating-your-access-token'
|
|
7077
|
+
|
|
6896
7078
|
recharge:
|
|
6897
7079
|
display_name: Recharge
|
|
6898
7080
|
categories:
|
|
@@ -8312,6 +8494,24 @@ trello-scim:
|
|
|
8312
8494
|
description: The API key for your Trello scim account
|
|
8313
8495
|
doc_section: '#step-1-finding-your-trello-api-key'
|
|
8314
8496
|
|
|
8497
|
+
tldv:
|
|
8498
|
+
display_name: tl;dv
|
|
8499
|
+
categories:
|
|
8500
|
+
- productivity
|
|
8501
|
+
auth_mode: API_KEY
|
|
8502
|
+
proxy:
|
|
8503
|
+
base_url: https://pasta.tldv.io
|
|
8504
|
+
headers:
|
|
8505
|
+
x-api-key: ${apiKey}
|
|
8506
|
+
docs: https://docs.nango.dev/integrations/all/tldv
|
|
8507
|
+
docs_connect: https://docs.nango.dev/integrations/all/tldv/connect
|
|
8508
|
+
credentials:
|
|
8509
|
+
apiKey:
|
|
8510
|
+
type: string
|
|
8511
|
+
title: API Key
|
|
8512
|
+
description: The API key for your tl;dv account
|
|
8513
|
+
doc_section: '#step-1-finding-your-api-key'
|
|
8514
|
+
|
|
8315
8515
|
tsheetsteam:
|
|
8316
8516
|
display_name: TSheets
|
|
8317
8517
|
categories:
|