@nangohq/providers 0.61.3 → 0.62.1
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 +220 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nangohq/providers",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.62.1",
|
|
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.62.1",
|
|
15
15
|
"vitest": "3.1.2"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
package/providers.yaml
CHANGED
|
@@ -160,8 +160,26 @@ adp:
|
|
|
160
160
|
token_url: https://accounts.adp.com/auth/oauth/v2/token
|
|
161
161
|
token_params:
|
|
162
162
|
grant_type: client_credentials
|
|
163
|
+
require_client_certificate: true
|
|
163
164
|
docs: https://docs.nango.dev/integrations/all/adp
|
|
164
165
|
docs_connect: https://docs.nango.dev/integrations/all/adp/connect
|
|
166
|
+
credentials:
|
|
167
|
+
client_certificate:
|
|
168
|
+
type: string
|
|
169
|
+
title: Client Public Certificate
|
|
170
|
+
description: The public certificate (in PEM format) used for Mutual TLS (mTLS) authentication.
|
|
171
|
+
example: '-----BEGIN CERTIFICATE-----\\nMIIDdzCCAl+gAwIBAgIEUzZrZDANBgkqhkiG9w0BAQsFADBv\\n...\\n-----END CERTIFICATE-----'
|
|
172
|
+
pattern: '^-----BEGIN CERTIFICATE-----\s*([A-Za-z0-9+/=\s]+)\s*-----END CERTIFICATE-----$'
|
|
173
|
+
secret: true
|
|
174
|
+
doc_section: '#step-2-generating-the-private-key-and-certificate-signing-request'
|
|
175
|
+
client_private_key:
|
|
176
|
+
type: string
|
|
177
|
+
title: Client Private Key
|
|
178
|
+
description: The private key (in PEM format) associated with the client certificate,
|
|
179
|
+
example: '-----BEGIN PRIVATE KEY-----\\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASC...\\n-----END PRIVATE KEY-----'
|
|
180
|
+
pattern: '^-----BEGIN PRIVATE KEY-----\s*([A-Za-z0-9+/=\s]+)\s*-----END PRIVATE KEY-----$'
|
|
181
|
+
secret: true
|
|
182
|
+
doc_section: '#step-2-generating-the-private-key-and-certificate-signing-request'
|
|
165
183
|
|
|
166
184
|
adyen:
|
|
167
185
|
display_name: Adyen
|
|
@@ -803,6 +821,28 @@ atlassian:
|
|
|
803
821
|
base_url: https://api.atlassian.com
|
|
804
822
|
docs: https://docs.nango.dev/integrations/all/atlassian
|
|
805
823
|
|
|
824
|
+
atlassian-admin:
|
|
825
|
+
display_name: Atlassian Cloud Admin
|
|
826
|
+
categories:
|
|
827
|
+
- dev-tools
|
|
828
|
+
auth_mode: API_KEY
|
|
829
|
+
proxy:
|
|
830
|
+
base_url: https://api.atlassian.com
|
|
831
|
+
retry:
|
|
832
|
+
at: 'x-ratelimit-reset'
|
|
833
|
+
headers:
|
|
834
|
+
authorization: Bearer ${apiKey}
|
|
835
|
+
docs: https://docs.nango.dev/integrations/all/atlassian-admin
|
|
836
|
+
docs_connect: https://docs.nango.dev/integrations/all/atlassian-admin/connect
|
|
837
|
+
credentials:
|
|
838
|
+
apiKey:
|
|
839
|
+
type: string
|
|
840
|
+
title: API Key
|
|
841
|
+
description: The API key for your Atlassian account
|
|
842
|
+
example: ATCTT3xFfGN0_a1B2-c3D4_E5F6-G7H8I9JKLMNOPQRSTUVWXYZ1234567890=DEADBEEF
|
|
843
|
+
pattern: '^ATCTT3xFfGN0[\w\-]+=[A-Z0-9]{8}$'
|
|
844
|
+
doc_section: '#step-1-generating-your-api-key'
|
|
845
|
+
|
|
806
846
|
attio:
|
|
807
847
|
display_name: Attio
|
|
808
848
|
categories:
|
|
@@ -1039,6 +1079,42 @@ aws-iam:
|
|
|
1039
1079
|
pattern: '^[a-z0-9-]+$'
|
|
1040
1080
|
doc_section: '#step-2-finding-your-region-host'
|
|
1041
1081
|
|
|
1082
|
+
aws-scim:
|
|
1083
|
+
display_name: AWS (SCIM)
|
|
1084
|
+
categories:
|
|
1085
|
+
- dev-tools
|
|
1086
|
+
auth_mode: API_KEY
|
|
1087
|
+
proxy:
|
|
1088
|
+
base_url: ${connectionConfig.scimEndpoint}
|
|
1089
|
+
headers:
|
|
1090
|
+
authorization: Bearer ${apiKey}
|
|
1091
|
+
accept: application/json
|
|
1092
|
+
content-type: application/json
|
|
1093
|
+
verification:
|
|
1094
|
+
method: GET
|
|
1095
|
+
endpoints:
|
|
1096
|
+
- /Users
|
|
1097
|
+
docs: https://docs.nango.dev/integrations/all/aws-scim
|
|
1098
|
+
docs_connect: https://docs.nango.dev/integrations/all/aws-scim/connect
|
|
1099
|
+
credentials:
|
|
1100
|
+
apiKey:
|
|
1101
|
+
type: string
|
|
1102
|
+
title: SCIM Access Token
|
|
1103
|
+
description: The SCIM Access Token generated from your AWS IAM Identity Center
|
|
1104
|
+
example: 878374852-dea1-47d5-9ae0-4d00a0bdbb13:ff7d4f04-7385-4add-befe-a9ed18341d0d:l6uepDQrHfNOiOYXZ7HYZL8hlvsYHSG7Cnx104tkRLmDbO8l/p5GxLv6Id5BCLicmjeKvhrlqrPvL6VMcAnJS6oitQrz3ZiZr18rnybzyISRlyjxktYtIK1R80YJXBH6U7NSvwGsu5gDbUZDGlCDeh+FFhL8tmUuHytvxuhz3jNhsh&8X9xiLBg=:ICn/+PhEST+8/pizxTmoA0DW9JcQTL4EVRh0z6DpJwQ4vFQ+iwAxNjh16SHdUovAJyMjT+TPDwI8gN63DLE+9EV+lcV+i2H/OTDE4x7L18WRz3ndMf/4dY98mJ41qRYBgh63Pi8PdXkAex2l8HJLMkzjjPirN+8DCBfPVKK+z/nCc04RXWIz6XOmqwgB1sV5jwfAxPhuV6vqgVosoSngSw7Y2Zon70PiI5UbTTZffF6QWFU7i9b3dgMMDAH6f9vm11EB6YpJt/XC74L1pDvKXiSzhel7b7dYzGvrXK0rN29cnjn0o58VYCOgk9c05p/nRsEaSs2Y/v7BqgxXUvI+Aw==
|
|
1105
|
+
pattern: '^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}:[A-Za-z0-9+/]+=*:[A-Za-z0-9+/]+=*$'
|
|
1106
|
+
doc_section: '#step-2-setting-up-automatic-provisioning'
|
|
1107
|
+
connection_config:
|
|
1108
|
+
scimEndpoint:
|
|
1109
|
+
type: string
|
|
1110
|
+
title: SCIM Endpoint
|
|
1111
|
+
description: The SCIM Endpoint mentioned in the AWS IAM Identity Center
|
|
1112
|
+
example: 'https://scim.ap-south-1.amazonaws.com/lSweb811432-ac8a-4a86-8332-f29hha4f5650/scim/v2'
|
|
1113
|
+
format: uri
|
|
1114
|
+
pattern: '^https://.*\/.*\/scim\/v2$'
|
|
1115
|
+
order: 1
|
|
1116
|
+
doc_section: '#step-2-setting-up-automatic-provisioning'
|
|
1117
|
+
|
|
1042
1118
|
azure-devops:
|
|
1043
1119
|
display_name: Azure DevOps
|
|
1044
1120
|
categories:
|
|
@@ -3645,6 +3721,28 @@ facebook:
|
|
|
3645
3721
|
base_url: https://graph.facebook.com
|
|
3646
3722
|
docs: https://docs.nango.dev/integrations/all/facebook
|
|
3647
3723
|
|
|
3724
|
+
fathom:
|
|
3725
|
+
display_name: Fathom
|
|
3726
|
+
categories:
|
|
3727
|
+
- communication
|
|
3728
|
+
- video
|
|
3729
|
+
auth_mode: API_KEY
|
|
3730
|
+
proxy:
|
|
3731
|
+
base_url: https://api.fathom.ai
|
|
3732
|
+
headers:
|
|
3733
|
+
x-api-key: ${apiKey}
|
|
3734
|
+
verification:
|
|
3735
|
+
method: GET
|
|
3736
|
+
endpoints:
|
|
3737
|
+
- /external/v1/teams
|
|
3738
|
+
docs: https://docs.nango.dev/integrations/all/fathom
|
|
3739
|
+
docs_connect: https://docs.nango.dev/integrations/all/fathom/connect
|
|
3740
|
+
credentials:
|
|
3741
|
+
apiKey:
|
|
3742
|
+
type: string
|
|
3743
|
+
title: API Key
|
|
3744
|
+
description: The API key for your Fathom account
|
|
3745
|
+
|
|
3648
3746
|
figjam:
|
|
3649
3747
|
display_name: FigJam
|
|
3650
3748
|
categories:
|
|
@@ -5472,6 +5570,8 @@ jira:
|
|
|
5472
5570
|
auth_mode: OAUTH2
|
|
5473
5571
|
authorization_url: https://auth.atlassian.com/authorize
|
|
5474
5572
|
token_url: https://auth.atlassian.com/oauth/token
|
|
5573
|
+
default_scopes:
|
|
5574
|
+
- offline_access
|
|
5475
5575
|
authorization_params:
|
|
5476
5576
|
audience: api.atlassian.com
|
|
5477
5577
|
prompt: consent
|
|
@@ -6111,6 +6211,7 @@ linear:
|
|
|
6111
6211
|
disable_pkce: true
|
|
6112
6212
|
webhook_routing_script: linearWebhookRouting
|
|
6113
6213
|
post_connection_script: linearPostConnection
|
|
6214
|
+
pre_connection_deletion_script: linearPreConnectionDeletion
|
|
6114
6215
|
webhook_user_defined_secret: true
|
|
6115
6216
|
docs: https://docs.nango.dev/integrations/all/linear
|
|
6116
6217
|
|
|
@@ -8498,6 +8599,32 @@ rippling-shop-app:
|
|
|
8498
8599
|
description: ''
|
|
8499
8600
|
automated: true
|
|
8500
8601
|
|
|
8602
|
+
roam-scim:
|
|
8603
|
+
display_name: Roam (SCIM API)
|
|
8604
|
+
categories:
|
|
8605
|
+
- productivity
|
|
8606
|
+
auth_mode: API_KEY
|
|
8607
|
+
proxy:
|
|
8608
|
+
base_url: https://api.ro.am/scim
|
|
8609
|
+
headers:
|
|
8610
|
+
authorization: Bearer ${apiKey}
|
|
8611
|
+
accept: application/json
|
|
8612
|
+
content-type: application/json
|
|
8613
|
+
verification:
|
|
8614
|
+
method: GET
|
|
8615
|
+
endpoints:
|
|
8616
|
+
- /v2/Users
|
|
8617
|
+
docs: https://docs.nango.dev/integrations/all/roam-scim
|
|
8618
|
+
docs_connect: https://docs.nango.dev/integrations/all/roam-scim/connect
|
|
8619
|
+
credentials:
|
|
8620
|
+
apiKey:
|
|
8621
|
+
type: string
|
|
8622
|
+
title: SCIM API Token
|
|
8623
|
+
description: The SCIM API token generated from your Roam organization settings.
|
|
8624
|
+
example: rmk-uu9zt58h-EYHyLJ3ay4Mc-wuWQTOk-Y2yY-gZlW7Ys8AdVXBRZks_SGrCyZ09_IDvX9ikahdxushGYKcT77Fjw
|
|
8625
|
+
pattern: '^rmk-[A-Za-z0-9_-]{86}$'
|
|
8626
|
+
doc_section: '#step-1-generating-your-scim-api-token'
|
|
8627
|
+
|
|
8501
8628
|
rock-gym-pro:
|
|
8502
8629
|
display_name: Rock Gym Pro
|
|
8503
8630
|
categories:
|
|
@@ -8841,6 +8968,7 @@ sap-success-factors:
|
|
|
8841
8968
|
display_name: SAP SuccessFactors
|
|
8842
8969
|
categories:
|
|
8843
8970
|
- hr
|
|
8971
|
+
body_format: form
|
|
8844
8972
|
auth_mode: TWO_STEP
|
|
8845
8973
|
token_url: https://${connectionConfig.apiServer}/oauth/token
|
|
8846
8974
|
token_params:
|
|
@@ -8848,6 +8976,7 @@ sap-success-factors:
|
|
|
8848
8976
|
client_id: ${credentials.apiKey}
|
|
8849
8977
|
grant_type: urn:ietf:params:oauth:grant-type:saml2-bearer
|
|
8850
8978
|
assertion: ${credentials.assertion}
|
|
8979
|
+
new_token: true
|
|
8851
8980
|
token_headers:
|
|
8852
8981
|
content-type: application/x-www-form-urlencoded
|
|
8853
8982
|
proxy:
|
|
@@ -8863,7 +8992,7 @@ sap-success-factors:
|
|
|
8863
8992
|
type: string
|
|
8864
8993
|
title: API Server
|
|
8865
8994
|
description: The API Server to connect to your SAP SuccessFactors account
|
|
8866
|
-
|
|
8995
|
+
format: hostname
|
|
8867
8996
|
example: api41preview.sapsf.com
|
|
8868
8997
|
prefix: https://
|
|
8869
8998
|
doc_section: '#step-1-finding-your-api-server'
|
|
@@ -8882,6 +9011,8 @@ sap-success-factors:
|
|
|
8882
9011
|
title: API Key
|
|
8883
9012
|
description: The API key for your SAP SuccessFactors account
|
|
8884
9013
|
secret: true
|
|
9014
|
+
example: YzA4MTVhMTQzZTUzMjc3NTk0ZDY2Nzc1ZmVkOA
|
|
9015
|
+
pattern: ^[A-Za-z0-9+/]{32,44}={0,2}$
|
|
8885
9016
|
doc_section: '#step-3-generating-your-api-key'
|
|
8886
9017
|
assertion:
|
|
8887
9018
|
type: string
|
|
@@ -8971,6 +9102,47 @@ sentry:
|
|
|
8971
9102
|
pattern: '^sntryu_[a-f0-9]{64}$'
|
|
8972
9103
|
doc_section: '#step-2-generating-your-sentry-auth-token'
|
|
8973
9104
|
|
|
9105
|
+
sentry-oauth:
|
|
9106
|
+
display_name: Sentry (Public Integrations)
|
|
9107
|
+
installation: outbound
|
|
9108
|
+
categories:
|
|
9109
|
+
- dev-tools
|
|
9110
|
+
- analytics
|
|
9111
|
+
auth_mode: OAUTH2
|
|
9112
|
+
token_url: https://sentry.io/api/0/sentry-app-installations/${connectionConfig.installation.uuid}/authorizations/
|
|
9113
|
+
webhook_routing_script: sentryOauthWebhookRouting
|
|
9114
|
+
post_connection_script: sentryOauthPostConnection
|
|
9115
|
+
authorization_code_param_in_webhook: data.installation.code
|
|
9116
|
+
webhook_response_metadata:
|
|
9117
|
+
- installation.uuid
|
|
9118
|
+
proxy:
|
|
9119
|
+
base_url: https://${connectionConfig.hostname}/api
|
|
9120
|
+
connection_config:
|
|
9121
|
+
actor: ${connectionConfig.actor}
|
|
9122
|
+
docs: https://docs.nango.dev/integrations/all/sentry-oauth
|
|
9123
|
+
docs_connect: https://docs.nango.dev/integrations/all/sentry-oauth/connect
|
|
9124
|
+
connection_config:
|
|
9125
|
+
hostname:
|
|
9126
|
+
type: string
|
|
9127
|
+
title: Hostname
|
|
9128
|
+
description: The Hostname of your Sentry account
|
|
9129
|
+
example: us.sentry.io
|
|
9130
|
+
format: hostname
|
|
9131
|
+
pattern: '^[a-z0-9_-]+\.sentry\.io|^sentry\.io$'
|
|
9132
|
+
prefix: https://
|
|
9133
|
+
order: 1
|
|
9134
|
+
doc_section: '#step-1-finding-your-hostname'
|
|
9135
|
+
actor:
|
|
9136
|
+
type: string
|
|
9137
|
+
title: User ID
|
|
9138
|
+
description: The unique identifier of the user who will accept and install the public integration
|
|
9139
|
+
doc_section: '#step-2-finding-your-user-id'
|
|
9140
|
+
installation.uuid:
|
|
9141
|
+
type: string
|
|
9142
|
+
title: ''
|
|
9143
|
+
description: ''
|
|
9144
|
+
automated: true
|
|
9145
|
+
|
|
8974
9146
|
sedna:
|
|
8975
9147
|
display_name: Sedna (OAuth)
|
|
8976
9148
|
auth_mode: OAUTH2_CC
|
|
@@ -9694,7 +9866,7 @@ strava-web:
|
|
|
9694
9866
|
docs: https://docs.nango.dev/integrations/all/strava-web
|
|
9695
9867
|
|
|
9696
9868
|
stripe:
|
|
9697
|
-
display_name: Stripe
|
|
9869
|
+
display_name: Stripe Connect
|
|
9698
9870
|
categories:
|
|
9699
9871
|
- payment
|
|
9700
9872
|
auth_mode: OAUTH2
|
|
@@ -9812,27 +9984,67 @@ tapclicks:
|
|
|
9812
9984
|
docs_connect: https://docs.nango.dev/integrations/all/tapclicks/connect
|
|
9813
9985
|
|
|
9814
9986
|
tableau:
|
|
9815
|
-
display_name: Tableau
|
|
9987
|
+
display_name: Tableau (PAT)
|
|
9816
9988
|
categories:
|
|
9817
9989
|
- analytics
|
|
9818
|
-
auth_mode:
|
|
9819
|
-
token_url: https://${connectionConfig.
|
|
9990
|
+
auth_mode: TWO_STEP
|
|
9991
|
+
token_url: https://${connectionConfig.hostname}/api/${connectionConfig.version}/auth/signin
|
|
9820
9992
|
proxy:
|
|
9821
9993
|
headers:
|
|
9822
9994
|
accept: application/json
|
|
9823
9995
|
content-type: application/json
|
|
9824
|
-
|
|
9996
|
+
x-tableau-auth: ${accessToken}
|
|
9997
|
+
base_url: https://${connectionConfig.hostname}/api/${connectionConfig.version}
|
|
9998
|
+
token_params:
|
|
9999
|
+
credentials:
|
|
10000
|
+
personalAccessTokenName: ${credentials.pat}
|
|
10001
|
+
personalAccessTokenSecret: ${credentials.secret}
|
|
10002
|
+
site:
|
|
10003
|
+
contentUrl: ${credentials.contentUrl}
|
|
10004
|
+
token_headers:
|
|
10005
|
+
content-type: application/json
|
|
10006
|
+
accept: application/json
|
|
10007
|
+
token_response:
|
|
10008
|
+
token: credentials.token
|
|
10009
|
+
token_expiration: credentials.estimatedTimeToExpiration
|
|
10010
|
+
token_expiration_strategy: expireAt
|
|
9825
10011
|
docs: https://docs.nango.dev/integrations/all/tableau
|
|
10012
|
+
docs_connect: https://docs.nango.dev/integrations/all/tableau/connect
|
|
10013
|
+
credentials:
|
|
10014
|
+
pat:
|
|
10015
|
+
type: string
|
|
10016
|
+
title: Personal Access Token
|
|
10017
|
+
description: Your Personal Access Token
|
|
10018
|
+
doc_section: '#step-2-generating-your-personal-access-token'
|
|
10019
|
+
secret:
|
|
10020
|
+
type: string
|
|
10021
|
+
title: Personal Access Token Secret
|
|
10022
|
+
description: Your Personal Access Token Secret
|
|
10023
|
+
secret: true
|
|
10024
|
+
doc_section: '#step-2-generating-your-personal-access-token'
|
|
10025
|
+
contentUrl:
|
|
10026
|
+
type: string
|
|
10027
|
+
title: Content Url
|
|
10028
|
+
optional: true
|
|
10029
|
+
example: test-eaec4a3fe2
|
|
10030
|
+
doc_section: '#step-5-finding-your-content-url'
|
|
10031
|
+
description: Your content URL
|
|
9826
10032
|
connection_config:
|
|
9827
|
-
|
|
10033
|
+
hostname:
|
|
9828
10034
|
type: string
|
|
9829
|
-
title:
|
|
10035
|
+
title: HostName
|
|
9830
10036
|
description: The domain of your Tableau instance
|
|
9831
10037
|
format: hostname
|
|
10038
|
+
order: 1
|
|
10039
|
+
example: dub01.online.tableau.com
|
|
10040
|
+
doc_section: '#step-3-finding-your-hostname'
|
|
9832
10041
|
prefix: https://
|
|
9833
10042
|
version:
|
|
9834
10043
|
type: string
|
|
9835
10044
|
title: API Version
|
|
10045
|
+
order: 2
|
|
10046
|
+
example: '3.26'
|
|
10047
|
+
doc_section: '#step-4-finding-your-api-version'
|
|
9836
10048
|
description: The version of the Tableau API to use
|
|
9837
10049
|
|
|
9838
10050
|
teamtailor:
|
|
@@ -10497,10 +10709,6 @@ ukg-pro:
|
|
|
10497
10709
|
headers:
|
|
10498
10710
|
content-type: application/json
|
|
10499
10711
|
us-customer-api-key: ${connectionConfig.customerApiKey}
|
|
10500
|
-
verification:
|
|
10501
|
-
method: GET
|
|
10502
|
-
endpoints:
|
|
10503
|
-
- /configuration/v1/earnings
|
|
10504
10712
|
docs: https://docs.nango.dev/integrations/all/ukg-pro
|
|
10505
10713
|
docs_connect: https://docs.nango.dev/integrations/all/ukg-pro/connect
|
|
10506
10714
|
credentials:
|