@nangohq/providers 0.57.5 → 0.58.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 +127 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nangohq/providers",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.58.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.58.0",
|
|
15
15
|
"vitest": "2.1.9"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
package/providers.yaml
CHANGED
|
@@ -58,6 +58,41 @@ accelo:
|
|
|
58
58
|
suffix: .api.accelo.com
|
|
59
59
|
prefix: https://
|
|
60
60
|
|
|
61
|
+
active-campaign:
|
|
62
|
+
display_name: ActiveCampaign
|
|
63
|
+
categories:
|
|
64
|
+
- marketing
|
|
65
|
+
- communication
|
|
66
|
+
auth_mode: API_KEY
|
|
67
|
+
proxy:
|
|
68
|
+
headers:
|
|
69
|
+
api-token: ${apiKey}
|
|
70
|
+
base_url: https://${connectionConfig.hostname}/api
|
|
71
|
+
verification:
|
|
72
|
+
method: GET
|
|
73
|
+
endpoints:
|
|
74
|
+
- /3/users/me
|
|
75
|
+
docs: https://docs.nango.dev/integrations/all/active-campaign
|
|
76
|
+
docs_connect: https://docs.nango.dev/integrations/all/active-campaign/connect
|
|
77
|
+
connection_config:
|
|
78
|
+
hostname:
|
|
79
|
+
type: string
|
|
80
|
+
title: Hostname
|
|
81
|
+
description: The Hostname for your ActiveCampaign account
|
|
82
|
+
format: hostname
|
|
83
|
+
prefix: https://
|
|
84
|
+
example: company.activehosted.com
|
|
85
|
+
doc_section: '#step-1-finding-your-hostname'
|
|
86
|
+
order: 1
|
|
87
|
+
credentials:
|
|
88
|
+
apiKey:
|
|
89
|
+
type: string
|
|
90
|
+
title: API Key
|
|
91
|
+
description: The API Key for your ActiveCampaign account
|
|
92
|
+
pattern: '^[a-f0-9]{72}$'
|
|
93
|
+
example: b4f1a7c9d8e56320a9db472fe6c8351f2e0a4d98b7f6c3e5d9a2f4701b3e8d6c3455abbe
|
|
94
|
+
doc_section: '#step-2-finding-your-api-key'
|
|
95
|
+
|
|
61
96
|
acuity-scheduling:
|
|
62
97
|
display_name: Acuity Scheduling
|
|
63
98
|
categories:
|
|
@@ -770,6 +805,8 @@ attio:
|
|
|
770
805
|
grant_type: refresh_token
|
|
771
806
|
proxy:
|
|
772
807
|
base_url: https://app.attio.com
|
|
808
|
+
retry:
|
|
809
|
+
after: 'retry-after'
|
|
773
810
|
docs: https://docs.nango.dev/integrations/all/attio
|
|
774
811
|
|
|
775
812
|
auth0:
|
|
@@ -3858,6 +3895,43 @@ github-app-oauth:
|
|
|
3858
3895
|
example: '38631545'
|
|
3859
3896
|
automated: true
|
|
3860
3897
|
|
|
3898
|
+
github-pat:
|
|
3899
|
+
display_name: Github (Personal Access Token)
|
|
3900
|
+
categories:
|
|
3901
|
+
- dev-tools
|
|
3902
|
+
- ticketing
|
|
3903
|
+
auth_mode: API_KEY
|
|
3904
|
+
proxy:
|
|
3905
|
+
base_url: https://api.github.com
|
|
3906
|
+
retry:
|
|
3907
|
+
at: 'x-ratelimit-reset'
|
|
3908
|
+
remaining: 'x-ratelimit-remaining'
|
|
3909
|
+
error_code: 403
|
|
3910
|
+
headers:
|
|
3911
|
+
authorization: Bearer ${apiKey}
|
|
3912
|
+
x-github-api-version: ${connectionConfig.version} || 2022-11-28
|
|
3913
|
+
accept: application/vnd.github+json
|
|
3914
|
+
verification:
|
|
3915
|
+
method: GET
|
|
3916
|
+
endpoints:
|
|
3917
|
+
- /user
|
|
3918
|
+
docs: https://docs.nango.dev/integrations/all/github-pat
|
|
3919
|
+
docs_connect: https://docs.nango.dev/integrations/all/github-pat/connect
|
|
3920
|
+
connection_config:
|
|
3921
|
+
version:
|
|
3922
|
+
type: string
|
|
3923
|
+
title: ''
|
|
3924
|
+
description: ''
|
|
3925
|
+
automated: true
|
|
3926
|
+
credentials:
|
|
3927
|
+
apiKey:
|
|
3928
|
+
type: string
|
|
3929
|
+
title: Personal Access Token
|
|
3930
|
+
description: The Personal Access Token to your Github account
|
|
3931
|
+
pattern: '^(?:github_pat|ghp|gho|ghu|ghs|ghr)_[A-Za-z0-9_]{36,255}$'
|
|
3932
|
+
example: 'github_pat_***********************xRIoxmseCYRHDDIOFfTOyKex'
|
|
3933
|
+
doc_section: '#step-1-finding-your-personal-access-token'
|
|
3934
|
+
|
|
3861
3935
|
gitlab:
|
|
3862
3936
|
display_name: GitLab
|
|
3863
3937
|
categories:
|
|
@@ -4057,6 +4131,8 @@ google-calendar:
|
|
|
4057
4131
|
limit_name_in_request: maxSize
|
|
4058
4132
|
cursor_name_in_request: pageToken
|
|
4059
4133
|
response_path: items
|
|
4134
|
+
retry:
|
|
4135
|
+
error_code: 403
|
|
4060
4136
|
docs: https://docs.nango.dev/integrations/all/google-calendar
|
|
4061
4137
|
|
|
4062
4138
|
google-docs:
|
|
@@ -4608,15 +4684,15 @@ hibob-service-user:
|
|
|
4608
4684
|
credentials:
|
|
4609
4685
|
username:
|
|
4610
4686
|
type: string
|
|
4611
|
-
title:
|
|
4687
|
+
title: Hibob ID
|
|
4612
4688
|
description: Your Hibob ID
|
|
4613
4689
|
doc_section: '#step-1-finding-your-hibob-service-user-id'
|
|
4614
4690
|
password:
|
|
4615
4691
|
type: string
|
|
4616
|
-
title:
|
|
4692
|
+
title: Hibob Token
|
|
4617
4693
|
description: Your Hibob Token
|
|
4618
4694
|
default_value: ''
|
|
4619
|
-
|
|
4695
|
+
secret: true
|
|
4620
4696
|
doc_section: '#step-2-finding-your-hibob-token'
|
|
4621
4697
|
docs: https://docs.nango.dev/integrations/all/hibob-service-user
|
|
4622
4698
|
docs_connect: https://docs.nango.dev/integrations/all/hibob-service-user/connect
|
|
@@ -5000,7 +5076,7 @@ keeper-scim:
|
|
|
5000
5076
|
endpoints:
|
|
5001
5077
|
- /Users
|
|
5002
5078
|
docs: https://docs.nango.dev/integrations/all/keeper-scim
|
|
5003
|
-
docs_connect: https://docs.nango.dev/integrations/all/keeper/connect
|
|
5079
|
+
docs_connect: https://docs.nango.dev/integrations/all/keeper-scim/connect
|
|
5004
5080
|
credentials:
|
|
5005
5081
|
apiKey:
|
|
5006
5082
|
type: string
|
|
@@ -7433,6 +7509,8 @@ ring-central:
|
|
|
7433
7509
|
grant_type: refresh_token
|
|
7434
7510
|
proxy:
|
|
7435
7511
|
base_url: https://platform.ringcentral.com
|
|
7512
|
+
retry:
|
|
7513
|
+
after: 'retry-after'
|
|
7436
7514
|
docs: https://docs.nango.dev/integrations/all/ring-central
|
|
7437
7515
|
|
|
7438
7516
|
ring-central-sandbox:
|
|
@@ -7449,6 +7527,8 @@ ring-central-sandbox:
|
|
|
7449
7527
|
grant_type: refresh_token
|
|
7450
7528
|
proxy:
|
|
7451
7529
|
base_url: https://platform.devtest.ringcentral.com
|
|
7530
|
+
retry:
|
|
7531
|
+
after: 'retry-after'
|
|
7452
7532
|
docs: https://docs.nango.dev/integrations/all/ring-central-sandbox
|
|
7453
7533
|
|
|
7454
7534
|
rippling:
|
|
@@ -7468,6 +7548,31 @@ rippling:
|
|
|
7468
7548
|
title: API Token
|
|
7469
7549
|
description: The API Token for your Rippling account
|
|
7470
7550
|
doc_section: '#step-1-generating-your-api-token'
|
|
7551
|
+
|
|
7552
|
+
rippling-shop-app:
|
|
7553
|
+
display_name: Rippling Shop App
|
|
7554
|
+
categories:
|
|
7555
|
+
- hr
|
|
7556
|
+
auth_mode: OAUTH2
|
|
7557
|
+
authorization_url: https://app.rippling.com/apps/PLATFORM/${connectionConfig.appName}/authorize
|
|
7558
|
+
token_url: https://api.rippling.com/api/o/token/
|
|
7559
|
+
authorization_params:
|
|
7560
|
+
response_type: code
|
|
7561
|
+
token_params:
|
|
7562
|
+
grant_type: authorization_code
|
|
7563
|
+
refresh_params:
|
|
7564
|
+
grant_type: refresh_token
|
|
7565
|
+
proxy:
|
|
7566
|
+
base_url: https://api.rippling.com
|
|
7567
|
+
post_connection_script: ripplingShopAppPostConnection
|
|
7568
|
+
docs: https://docs.nango.dev/integrations/all/rippling-shop-app
|
|
7569
|
+
connection_config:
|
|
7570
|
+
appName:
|
|
7571
|
+
type: string
|
|
7572
|
+
title: ''
|
|
7573
|
+
description: ''
|
|
7574
|
+
automated: true
|
|
7575
|
+
|
|
7471
7576
|
segment:
|
|
7472
7577
|
display_name: Segment
|
|
7473
7578
|
categories:
|
|
@@ -9547,6 +9652,23 @@ xero:
|
|
|
9547
9652
|
post_connection_script: xeroPostConnection
|
|
9548
9653
|
docs: https://docs.nango.dev/integrations/all/xero
|
|
9549
9654
|
|
|
9655
|
+
xero-oauth2-cc:
|
|
9656
|
+
display_name: Xero (Client Credentials)
|
|
9657
|
+
categories:
|
|
9658
|
+
- accounting
|
|
9659
|
+
- popular
|
|
9660
|
+
auth_mode: OAUTH2_CC
|
|
9661
|
+
token_url: https://identity.xero.com/connect/token
|
|
9662
|
+
token_request_auth_method: basic
|
|
9663
|
+
token_params:
|
|
9664
|
+
grant_type: client_credentials
|
|
9665
|
+
proxy:
|
|
9666
|
+
base_url: https://api.xero.com
|
|
9667
|
+
retry:
|
|
9668
|
+
after: 'retry-after'
|
|
9669
|
+
docs: https://docs.nango.dev/integrations/all/xero-oauth2-cc
|
|
9670
|
+
docs_connect: https://docs.nango.dev/integrations/all/xero-oauth2-cc/connect
|
|
9671
|
+
|
|
9550
9672
|
yahoo:
|
|
9551
9673
|
display_name: Yahoo
|
|
9552
9674
|
categories:
|
|
@@ -9643,6 +9765,7 @@ zapier-scim:
|
|
|
9643
9765
|
endpoints:
|
|
9644
9766
|
- /Users
|
|
9645
9767
|
docs: https://docs.nango.dev/integrations/all/zapier-scim
|
|
9768
|
+
docs_connect: https://docs.nango.dev/integrations/all/zapier-scim/connect
|
|
9646
9769
|
credentials:
|
|
9647
9770
|
apiKey:
|
|
9648
9771
|
type: string
|