@nangohq/providers 0.69.43 → 0.69.45
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 +238 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nangohq/providers",
|
|
3
|
-
"version": "0.69.
|
|
3
|
+
"version": "0.69.45",
|
|
4
4
|
"description": "Nango's providers.yaml and getters",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"js-yaml": "4.1.1"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@nangohq/types": "0.69.
|
|
19
|
+
"@nangohq/types": "0.69.45",
|
|
20
20
|
"vitest": "3.2.4"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
package/providers.yaml
CHANGED
|
@@ -1630,6 +1630,59 @@ auvik:
|
|
|
1630
1630
|
docs: https://nango.dev/docs/integrations/all/auvik
|
|
1631
1631
|
docs_connect: https://nango.dev/docs/integrations/all/auvik/connect
|
|
1632
1632
|
|
|
1633
|
+
avanan:
|
|
1634
|
+
display_name: Avanan
|
|
1635
|
+
categories:
|
|
1636
|
+
- other
|
|
1637
|
+
auth_mode: TWO_STEP
|
|
1638
|
+
token_request_method: GET
|
|
1639
|
+
token_url: https://${connectionConfig.subdomain}.avanan.net/v1.0/auth
|
|
1640
|
+
token_headers:
|
|
1641
|
+
x-av-app-id: ${credentials.appId}
|
|
1642
|
+
x-av-req-id: ${random}
|
|
1643
|
+
x-av-date: '${now:YYYY-MM-DDTHH:mm:ss}'
|
|
1644
|
+
x-av-sig: '${sha256Hex(${base64(${random}${credentials.appId}${now:YYYY-MM-DDTHH:mm:ss}${credentials.secretKey})})}'
|
|
1645
|
+
token_response:
|
|
1646
|
+
token: ''
|
|
1647
|
+
token_expires_in_ms: 3_600_000
|
|
1648
|
+
proxy:
|
|
1649
|
+
base_url: https://${connectionConfig.subdomain}.avanan.net
|
|
1650
|
+
headers:
|
|
1651
|
+
x-av-app-id: ${credentials.appId}
|
|
1652
|
+
x-av-token: ${accessToken}
|
|
1653
|
+
x-av-req-id: ${random}
|
|
1654
|
+
x-av-date: '${now:YYYY-MM-DDTHH:mm:ss}'
|
|
1655
|
+
x-av-sig: '${sha256Hex(${base64(${random}${credentials.appId}${now:YYYY-MM-DDTHH:mm:ss}${endpoint}${credentials.secretKey})})}'
|
|
1656
|
+
docs: https://nango.dev/docs/api-integrations/avanan
|
|
1657
|
+
docs_connect: https://nango.dev/docs/api-integrations/avanan/connect
|
|
1658
|
+
connection_config:
|
|
1659
|
+
subdomain:
|
|
1660
|
+
type: string
|
|
1661
|
+
title: Subdomain
|
|
1662
|
+
description: The Avanan API subdomain for your region.
|
|
1663
|
+
example: smart-api-production-1-us
|
|
1664
|
+
suffix: .avanan.net
|
|
1665
|
+
prefix: https://
|
|
1666
|
+
pattern: '^smart-api-production-[0-9]+-[a-z0-9]+$'
|
|
1667
|
+
order: 1
|
|
1668
|
+
doc_section: '#step-1-finding-your-subdomain'
|
|
1669
|
+
credentials:
|
|
1670
|
+
appId:
|
|
1671
|
+
type: string
|
|
1672
|
+
title: Client ID
|
|
1673
|
+
description: Your Avanan Client ID from Avanan Support.
|
|
1674
|
+
example: 9k8m****************ht3w
|
|
1675
|
+
pattern: '^[a-z0-9]+$'
|
|
1676
|
+
doc_section: '#step-2-getting-your-client-id-and-secret-key'
|
|
1677
|
+
secretKey:
|
|
1678
|
+
type: string
|
|
1679
|
+
title: Secret Key
|
|
1680
|
+
description: Your Avanan Secret Key from Avanan Support.
|
|
1681
|
+
example: 3k9t****************************0uj5gtrpqlz8x2nvy
|
|
1682
|
+
pattern: '^[a-z0-9]+$'
|
|
1683
|
+
secret: true
|
|
1684
|
+
doc_section: '#step-2-getting-your-client-id-and-secret-key'
|
|
1685
|
+
|
|
1633
1686
|
availity:
|
|
1634
1687
|
display_name: Availity
|
|
1635
1688
|
categories:
|
|
@@ -7132,6 +7185,7 @@ google-calendar:
|
|
|
7132
7185
|
- '401'
|
|
7133
7186
|
- '429'
|
|
7134
7187
|
webhook_routing_script: googleCalendarWebhookRouting
|
|
7188
|
+
post_connection_script: googleCalendarPostConnection
|
|
7135
7189
|
docs: https://nango.dev/docs/api-integrations/google-calendar
|
|
7136
7190
|
setup_guide_url: https://nango.dev/docs/api-integrations/google-calendar/how-to-register-your-own-google-calendar-api-oauth-app
|
|
7137
7191
|
|
|
@@ -7163,6 +7217,7 @@ google-mail:
|
|
|
7163
7217
|
proxy:
|
|
7164
7218
|
base_url: https://gmail.googleapis.com
|
|
7165
7219
|
webhook_routing_script: gmailWebhookRouting
|
|
7220
|
+
post_connection_script: googleMailPostConnection
|
|
7166
7221
|
docs: https://nango.dev/docs/api-integrations/google-mail
|
|
7167
7222
|
setup_guide_url: https://nango.dev/docs/api-integrations/google-mail/how-to-register-your-own-gmail-api-oauth-app
|
|
7168
7223
|
|
|
@@ -7215,6 +7270,16 @@ google-forms:
|
|
|
7215
7270
|
docs: https://nango.dev/docs/api-integrations/google-forms
|
|
7216
7271
|
setup_guide_url: https://nango.dev/docs/api-integrations/google-forms/how-to-register-your-own-google-forms-api-oauth-app
|
|
7217
7272
|
|
|
7273
|
+
google-tasks:
|
|
7274
|
+
display_name: Google Tasks
|
|
7275
|
+
categories:
|
|
7276
|
+
- productivity
|
|
7277
|
+
alias: google
|
|
7278
|
+
proxy:
|
|
7279
|
+
base_url: https://tasks.googleapis.com
|
|
7280
|
+
docs: https://nango.dev/docs/api-integrations/google-tasks
|
|
7281
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/google-tasks/how-to-register-your-own-google-tasks-api-oauth-app
|
|
7282
|
+
|
|
7218
7283
|
google-meet:
|
|
7219
7284
|
display_name: Google Meet
|
|
7220
7285
|
categories:
|
|
@@ -10116,6 +10181,10 @@ microsoft-oauth2-cc:
|
|
|
10116
10181
|
grant_type: client_credentials
|
|
10117
10182
|
proxy:
|
|
10118
10183
|
base_url: https://graph.microsoft.com
|
|
10184
|
+
webhook_routing_script: microsoftClientCredentialsWebhookRouting
|
|
10185
|
+
webhook_user_defined_secret: true
|
|
10186
|
+
webhook_allowed_query_params:
|
|
10187
|
+
- validationToken
|
|
10119
10188
|
docs: https://nango.dev/docs/integrations/all/microsoft-oauth2-cc
|
|
10120
10189
|
docs_connect: https://nango.dev/docs/integrations/all/microsoft-oauth2-cc/connect
|
|
10121
10190
|
connection_config:
|
|
@@ -12832,6 +12901,36 @@ procore:
|
|
|
12832
12901
|
example: '598134325779301'
|
|
12833
12902
|
pattern: '^[0-9]+$'
|
|
12834
12903
|
|
|
12904
|
+
provenexpert:
|
|
12905
|
+
display_name: ProvenExpert
|
|
12906
|
+
categories:
|
|
12907
|
+
- marketing
|
|
12908
|
+
auth_mode: BASIC
|
|
12909
|
+
proxy:
|
|
12910
|
+
base_url: https://www.provenexpert.com/api/
|
|
12911
|
+
verification:
|
|
12912
|
+
method: POST
|
|
12913
|
+
endpoints:
|
|
12914
|
+
- v1/rating/summary/get
|
|
12915
|
+
docs: https://nango.dev/docs/api-integrations/provenexpert
|
|
12916
|
+
docs_connect: https://nango.dev/docs/api-integrations/provenexpert/connect
|
|
12917
|
+
credentials:
|
|
12918
|
+
username:
|
|
12919
|
+
type: string
|
|
12920
|
+
title: API ID
|
|
12921
|
+
description: Your ProvenExpert API ID.
|
|
12922
|
+
pattern: '^[A-Za-z0-9]{32}$'
|
|
12923
|
+
example: '3yxp1qwZl5UAmyHZ5qRC2Sbpk5KAlEDZ'
|
|
12924
|
+
doc_section: '#step-1-getting-your-credentials'
|
|
12925
|
+
password:
|
|
12926
|
+
type: string
|
|
12927
|
+
title: API Key
|
|
12928
|
+
description: Your ProvenExpert API Key.
|
|
12929
|
+
secret: true
|
|
12930
|
+
pattern: '^[A-Za-z0-9]{43}$'
|
|
12931
|
+
example: 'M3A5NwykMKW1BRy6NRrxAwW2MzI3MxOmNRXzNzByMxW'
|
|
12932
|
+
doc_section: '#step-1-getting-your-credentials'
|
|
12933
|
+
|
|
12835
12934
|
qualtrics:
|
|
12836
12935
|
display_name: Qualtrics
|
|
12837
12936
|
categories:
|
|
@@ -16082,6 +16181,30 @@ teamwork:
|
|
|
16082
16181
|
base_url: ${connectionConfig.installation.apiEndPoint}
|
|
16083
16182
|
docs: https://nango.dev/docs/integrations/all/teamwork
|
|
16084
16183
|
|
|
16184
|
+
telegram:
|
|
16185
|
+
display_name: Telegram
|
|
16186
|
+
categories:
|
|
16187
|
+
- communication
|
|
16188
|
+
auth_mode: API_KEY
|
|
16189
|
+
proxy:
|
|
16190
|
+
base_url: https://api.telegram.org/bot${apiKey}
|
|
16191
|
+
verification:
|
|
16192
|
+
method: GET
|
|
16193
|
+
headers:
|
|
16194
|
+
content-type: application/json
|
|
16195
|
+
endpoints:
|
|
16196
|
+
- /getMe
|
|
16197
|
+
docs: https://nango.dev/docs/api-integrations/telegram
|
|
16198
|
+
docs_connect: https://nango.dev/docs/api-integrations/telegram/connect
|
|
16199
|
+
credentials:
|
|
16200
|
+
apiKey:
|
|
16201
|
+
type: string
|
|
16202
|
+
title: Bot Token
|
|
16203
|
+
description: Your Telegram Bot token from @BotFather.
|
|
16204
|
+
example: 1234567890:ABCdefGHIjklMNOpqrSTUvwxYZ1234567
|
|
16205
|
+
pattern: '^[0-9]+:[a-zA-Z0-9_-]+$'
|
|
16206
|
+
doc_section: '#step-1-creating-your-telegram-bot'
|
|
16207
|
+
|
|
16085
16208
|
terraform:
|
|
16086
16209
|
display_name: Terraform
|
|
16087
16210
|
categories:
|
|
@@ -16389,6 +16512,59 @@ tldv:
|
|
|
16389
16512
|
description: The API key for your tl;dv account
|
|
16390
16513
|
doc_section: '#step-1-finding-your-api-key'
|
|
16391
16514
|
|
|
16515
|
+
trigify-io-mcp:
|
|
16516
|
+
display_name: Trigify IO (MCP)
|
|
16517
|
+
categories:
|
|
16518
|
+
- dev-tools
|
|
16519
|
+
- mcp
|
|
16520
|
+
auth_mode: MCP_OAUTH2
|
|
16521
|
+
client_registration: dynamic
|
|
16522
|
+
authorization_url: https://clerk.trigify.io/oauth/authorize
|
|
16523
|
+
token_url: https://clerk.trigify.io/oauth/token
|
|
16524
|
+
registration_url: https://clerk.trigify.io/oauth/register
|
|
16525
|
+
default_scopes:
|
|
16526
|
+
- offline_access
|
|
16527
|
+
authorization_params:
|
|
16528
|
+
response_type: code
|
|
16529
|
+
token_params:
|
|
16530
|
+
grant_type: authorization_code
|
|
16531
|
+
refresh_params:
|
|
16532
|
+
grant_type: refresh_token
|
|
16533
|
+
proxy:
|
|
16534
|
+
base_url: https://api.trigify.io
|
|
16535
|
+
headers:
|
|
16536
|
+
accept: application/json,text/event-stream
|
|
16537
|
+
docs: https://nango.dev/docs/api-integrations/trigify-io-mcp
|
|
16538
|
+
|
|
16539
|
+
triple-whale:
|
|
16540
|
+
display_name: Triple Whale
|
|
16541
|
+
categories:
|
|
16542
|
+
- analytics
|
|
16543
|
+
- marketing
|
|
16544
|
+
auth_mode: API_KEY
|
|
16545
|
+
proxy:
|
|
16546
|
+
base_url: https://api.triplewhale.com
|
|
16547
|
+
headers:
|
|
16548
|
+
x-api-key: ${apiKey}
|
|
16549
|
+
accept: application/json
|
|
16550
|
+
verification:
|
|
16551
|
+
method: GET
|
|
16552
|
+
headers:
|
|
16553
|
+
accept: application/json
|
|
16554
|
+
content-type: application/json
|
|
16555
|
+
endpoints:
|
|
16556
|
+
- /api/v2/users/api-keys/me
|
|
16557
|
+
docs: https://nango.dev/docs/api-integrations/triple-whale
|
|
16558
|
+
docs_connect: https://nango.dev/docs/api-integrations/triple-whale/connect
|
|
16559
|
+
credentials:
|
|
16560
|
+
apiKey:
|
|
16561
|
+
type: string
|
|
16562
|
+
title: API Key
|
|
16563
|
+
description: Your Triple Whale API key.
|
|
16564
|
+
example: 5ab87915-2deb-429c-a1e2-8b0495900f45
|
|
16565
|
+
format: uuid
|
|
16566
|
+
doc_section: '#step-1-generating-your-api-key'
|
|
16567
|
+
|
|
16392
16568
|
tsheetsteam:
|
|
16393
16569
|
display_name: TSheets
|
|
16394
16570
|
categories:
|
|
@@ -16756,6 +16932,36 @@ typefully:
|
|
|
16756
16932
|
title: API Key
|
|
16757
16933
|
description: The API key for your Typefully account
|
|
16758
16934
|
|
|
16935
|
+
typefully-v2:
|
|
16936
|
+
display_name: Typefully (API v2)
|
|
16937
|
+
categories:
|
|
16938
|
+
- analytics
|
|
16939
|
+
- communication
|
|
16940
|
+
- social
|
|
16941
|
+
auth_mode: API_KEY
|
|
16942
|
+
proxy:
|
|
16943
|
+
base_url: https://api.typefully.com
|
|
16944
|
+
headers:
|
|
16945
|
+
authorization: Bearer ${apiKey}
|
|
16946
|
+
verification:
|
|
16947
|
+
method: GET
|
|
16948
|
+
endpoints:
|
|
16949
|
+
- /v2/me
|
|
16950
|
+
retry:
|
|
16951
|
+
at:
|
|
16952
|
+
- 'x-ratelimit-user-reset'
|
|
16953
|
+
- 'x-ratelimit-socialset-reset'
|
|
16954
|
+
docs: https://nango.dev/docs/api-integrations/typefully-v2
|
|
16955
|
+
docs_connect: https://nango.dev/docs/api-integrations/typefully-v2/connect
|
|
16956
|
+
credentials:
|
|
16957
|
+
apiKey:
|
|
16958
|
+
type: string
|
|
16959
|
+
title: API Key
|
|
16960
|
+
description: Your Typefully v2 API key.
|
|
16961
|
+
example: 'aNVlyR********************YxeIDz'
|
|
16962
|
+
pattern: '^[A-Za-z0-9]{32}$'
|
|
16963
|
+
doc_section: '#step-1-generating-your-api-key'
|
|
16964
|
+
|
|
16759
16965
|
uber:
|
|
16760
16966
|
display_name: Uber
|
|
16761
16967
|
auth_mode: OAUTH2
|
|
@@ -17067,16 +17273,16 @@ vercel:
|
|
|
17067
17273
|
content-type: application/json
|
|
17068
17274
|
endpoints:
|
|
17069
17275
|
- /v2/user
|
|
17070
|
-
docs: https://nango.dev/docs/integrations/
|
|
17071
|
-
docs_connect: https://nango.dev/docs/integrations/
|
|
17276
|
+
docs: https://nango.dev/docs/api-integrations/vercel
|
|
17277
|
+
docs_connect: https://nango.dev/docs/api-integrations/vercel/connect
|
|
17072
17278
|
credentials:
|
|
17073
17279
|
apiKey:
|
|
17074
17280
|
type: string
|
|
17075
17281
|
title: Token
|
|
17076
|
-
description: The Token for your Vercel account
|
|
17077
|
-
pattern: '^[A-Za-z0-9]
|
|
17078
|
-
example: '
|
|
17079
|
-
doc_section: '#step-1-finding-your-
|
|
17282
|
+
description: The Token for your Vercel account.
|
|
17283
|
+
pattern: '^vcp_[A-Za-z0-9]+$'
|
|
17284
|
+
example: 'vcp_6ppUxFRd****r1sc53a'
|
|
17285
|
+
doc_section: '#step-1-finding-your-token'
|
|
17080
17286
|
|
|
17081
17287
|
vimeo:
|
|
17082
17288
|
display_name: Vimeo (OAuth)
|
|
@@ -17322,6 +17528,32 @@ webex:
|
|
|
17322
17528
|
- 'retry-after'
|
|
17323
17529
|
docs: https://nango.dev/docs/integrations/all/webex
|
|
17324
17530
|
|
|
17531
|
+
webinarjam:
|
|
17532
|
+
display_name: WebinarJam
|
|
17533
|
+
categories:
|
|
17534
|
+
- marketing
|
|
17535
|
+
auth_mode: API_KEY
|
|
17536
|
+
proxy:
|
|
17537
|
+
base_url: https://api.webinarjam.com/webinarjam
|
|
17538
|
+
query:
|
|
17539
|
+
api_key: ${apiKey}
|
|
17540
|
+
verification:
|
|
17541
|
+
method: POST
|
|
17542
|
+
headers:
|
|
17543
|
+
content-type: application/x-www-form-urlencoded
|
|
17544
|
+
endpoints:
|
|
17545
|
+
- /webinars
|
|
17546
|
+
docs: https://nango.dev/docs/api-integrations/webinarjam
|
|
17547
|
+
docs_connect: https://nango.dev/docs/api-integrations/webinarjam/connect
|
|
17548
|
+
credentials:
|
|
17549
|
+
apiKey:
|
|
17550
|
+
type: string
|
|
17551
|
+
title: API Key
|
|
17552
|
+
description: Your WebinarJam API key.
|
|
17553
|
+
example: b7e2d4f1-8a3c-4e6b-9d5f-1a2b3c4d5e6f
|
|
17554
|
+
format: uuid
|
|
17555
|
+
doc_section: '#step-1-getting-your-api-key'
|
|
17556
|
+
|
|
17325
17557
|
whatsapp-business:
|
|
17326
17558
|
display_name: WhatsApp Business
|
|
17327
17559
|
categories:
|