@nangohq/providers 0.69.42 → 0.69.44

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/providers.yaml +173 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.69.42",
3
+ "version": "0.69.44",
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.42",
19
+ "@nangohq/types": "0.69.44",
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: 86400000
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,30 @@ 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
+
16392
16539
  tsheetsteam:
16393
16540
  display_name: TSheets
16394
16541
  categories:
@@ -17322,6 +17469,32 @@ webex:
17322
17469
  - 'retry-after'
17323
17470
  docs: https://nango.dev/docs/integrations/all/webex
17324
17471
 
17472
+ webinarjam:
17473
+ display_name: WebinarJam
17474
+ categories:
17475
+ - marketing
17476
+ auth_mode: API_KEY
17477
+ proxy:
17478
+ base_url: https://api.webinarjam.com/webinarjam
17479
+ query:
17480
+ api_key: ${apiKey}
17481
+ verification:
17482
+ method: POST
17483
+ headers:
17484
+ content-type: application/x-www-form-urlencoded
17485
+ endpoints:
17486
+ - /webinars
17487
+ docs: https://nango.dev/docs/api-integrations/webinarjam
17488
+ docs_connect: https://nango.dev/docs/api-integrations/webinarjam/connect
17489
+ credentials:
17490
+ apiKey:
17491
+ type: string
17492
+ title: API Key
17493
+ description: Your WebinarJam API key.
17494
+ example: b7e2d4f1-8a3c-4e6b-9d5f-1a2b3c4d5e6f
17495
+ format: uuid
17496
+ doc_section: '#step-1-getting-your-api-key'
17497
+
17325
17498
  whatsapp-business:
17326
17499
  display_name: WhatsApp Business
17327
17500
  categories: