@nangohq/providers 0.69.45 → 0.69.46

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 +144 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.69.45",
3
+ "version": "0.69.46",
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.45",
19
+ "@nangohq/types": "0.69.46",
20
20
  "vitest": "3.2.4"
21
21
  },
22
22
  "files": [
package/providers.yaml CHANGED
@@ -10206,6 +10206,14 @@ microsoft-planner:
10206
10206
  docs: https://nango.dev/docs/api-integrations/microsoft-planner
10207
10207
  setup_guide_url: https://nango.dev/docs/api-integrations/microsoft-planner/how-to-register-your-own-microsoft-planner-api-oauth-app
10208
10208
 
10209
+ microsoft-powerpoint:
10210
+ display_name: Microsoft PowerPoint
10211
+ categories:
10212
+ - productivity
10213
+ alias: microsoft
10214
+ docs: https://nango.dev/docs/api-integrations/microsoft-powerpoint
10215
+ setup_guide_url: https://nango.dev/docs/api-integrations/microsoft-powerpoint/how-to-register-your-own-microsoft-powerpoint-api-oauth-app
10216
+
10209
10217
  microsoft-teams:
10210
10218
  display_name: Microsoft Teams
10211
10219
  categories:
@@ -10218,6 +10226,14 @@ microsoft-teams:
10218
10226
  docs: https://nango.dev/docs/api-integrations/microsoft-teams
10219
10227
  setup_guide_url: https://nango.dev/docs/api-integrations/microsoft-teams/how-to-register-your-own-microsoft-teams-api-oauth-app
10220
10228
 
10229
+ microsoft-word:
10230
+ display_name: Microsoft Word
10231
+ categories:
10232
+ - productivity
10233
+ alias: microsoft
10234
+ docs: https://nango.dev/docs/api-integrations/microsoft-word
10235
+ setup_guide_url: https://nango.dev/docs/api-integrations/microsoft-word/how-to-register-your-own-microsoft-word-api-oauth-app
10236
+
10221
10237
  microsoft-tenant-specific:
10222
10238
  display_name: Microsoft (Tenant)
10223
10239
  categories:
@@ -12625,6 +12641,44 @@ plain:
12625
12641
  description: The API key for your Plain account
12626
12642
  doc_section: '#step-1-generating-your-api-key'
12627
12643
 
12644
+ pleo:
12645
+ display_name: Pleo
12646
+ categories:
12647
+ - payment
12648
+ - invoicing
12649
+ auth_mode: OAUTH2
12650
+ authorization_url: https://${connectionConfig.subdomain}.pleo.io/oauth/authorize
12651
+ token_url: https://${connectionConfig.subdomain}.pleo.io/oauth/token
12652
+ token_request_auth_method: basic
12653
+ authorization_params:
12654
+ response_type: code
12655
+ token_params:
12656
+ grant_type: authorization_code
12657
+ refresh_params:
12658
+ grant_type: refresh_token
12659
+ proxy:
12660
+ base_url: https://${connectionConfig.apiSubdomain}.pleo.io
12661
+ docs: https://nango.dev/docs/api-integrations/pleo
12662
+ docs_connect: https://nango.dev/docs/api-integrations/pleo/connect
12663
+ setup_guide_url: https://nango.dev/docs/api-integrations/pleo/how-to-register-your-own-pleo-api-oauth-app
12664
+ connection_config:
12665
+ subdomain:
12666
+ type: string
12667
+ title: OAuth Subdomain
12668
+ description: The auth subdomain of your Pleo environment.
12669
+ example: auth
12670
+ pattern: '^auth(\.staging)?$'
12671
+ suffix: .pleo.io
12672
+ prefix: https://
12673
+ apiSubdomain:
12674
+ type: string
12675
+ title: API Subdomain
12676
+ description: The API subdomain of your Pleo environment.
12677
+ example: external
12678
+ pattern: '^external(\.staging)?$'
12679
+ suffix: .pleo.io
12680
+ prefix: https://
12681
+
12628
12682
  podium:
12629
12683
  display_name: Podium
12630
12684
  categories:
@@ -15228,6 +15282,48 @@ shopify-scim:
15228
15282
  description: The SCIM API token generated from your Shopify organization settings.
15229
15283
  doc_section: '#step-1-generating-your-scim-api-token'
15230
15284
 
15285
+ shopworks:
15286
+ display_name: ShopWorks
15287
+ categories:
15288
+ - other
15289
+ auth_mode: TWO_STEP
15290
+ body_format: json
15291
+ token_url: https://${connectionConfig.hostname}/signin
15292
+ token_params:
15293
+ username: ${credentials.username}
15294
+ password: ${credentials.password}
15295
+ token_headers:
15296
+ content-type: application/json
15297
+ token_response:
15298
+ token: id_token
15299
+ proxy:
15300
+ base_url: https://${connectionConfig.hostname}
15301
+ headers:
15302
+ authorization: ${accessToken}
15303
+ docs: https://nango.dev/docs/api-integrations/shopworks
15304
+ docs_connect: https://nango.dev/docs/api-integrations/shopworks/connect
15305
+ connection_config:
15306
+ hostname:
15307
+ type: string
15308
+ title: Hostname
15309
+ prefix: https://
15310
+ suffix: /signin
15311
+ description: The hostname of the API you want to connect to.
15312
+ example: manageordersapi.com/onsite
15313
+ doc_section: '#step-1-find-your-hostname'
15314
+ credentials:
15315
+ username:
15316
+ type: string
15317
+ title: Username
15318
+ description: The username for your ShopWorks account.
15319
+ doc_section: '#step-2-find-your-credentials'
15320
+ password:
15321
+ type: string
15322
+ title: Password
15323
+ secret: true
15324
+ description: The password for your ShopWorks account.
15325
+ doc_section: '#step-2-find-your-credentials'
15326
+
15231
15327
  slab:
15232
15328
  display_name: Slab
15233
15329
  categories:
@@ -15302,6 +15398,30 @@ slack:
15302
15398
  docs: https://nango.dev/docs/api-integrations/slack
15303
15399
  setup_guide_url: https://nango.dev/docs/api-integrations/slack/how-to-register-your-own-slack-api-oauth-app
15304
15400
 
15401
+ slack-mcp:
15402
+ display_name: Slack (MCP)
15403
+ categories:
15404
+ - popular
15405
+ - productivity
15406
+ - communication
15407
+ - mcp
15408
+ auth_mode: MCP_OAUTH2
15409
+ client_registration: static
15410
+ authorization_url: https://slack.com/oauth/v2_user/authorize
15411
+ token_url: https://slack.com/api/oauth.v2.user.access
15412
+ scope_separator: ','
15413
+ alternate_access_token_response_path: authed_user.access_token
15414
+ authorization_params:
15415
+ response_type: code
15416
+ token_params:
15417
+ grant_type: authorization_code
15418
+ proxy:
15419
+ base_url: https://mcp.slack.com
15420
+ headers:
15421
+ accept: application/json,text/event-stream
15422
+ docs: https://nango.dev/docs/api-integrations/slack-mcp
15423
+ setup_guide_url: https://nango.dev/docs/api-integrations/slack-mcp/how-to-register-your-own-slack-mcp-oauth-app
15424
+
15305
15425
  smartlead-ai:
15306
15426
  display_name: Smartlead.ai
15307
15427
  categories:
@@ -17284,6 +17404,30 @@ vercel:
17284
17404
  example: 'vcp_6ppUxFRd****r1sc53a'
17285
17405
  doc_section: '#step-1-finding-your-token'
17286
17406
 
17407
+ vercel-mcp:
17408
+ display_name: Vercel (MCP)
17409
+ categories:
17410
+ - dev-tools
17411
+ - mcp
17412
+ auth_mode: MCP_OAUTH2
17413
+ client_registration: static
17414
+ authorization_url: https://vercel.com/oauth/authorize
17415
+ token_url: https://vercel.com/api/login/oauth/token
17416
+ authorization_params:
17417
+ response_type: code
17418
+ token_params:
17419
+ grant_type: authorization_code
17420
+ refresh_params:
17421
+ grant_type: refresh_token
17422
+ default_scopes:
17423
+ - offline_access
17424
+ proxy:
17425
+ headers:
17426
+ accept: application/json,text/event-stream
17427
+ base_url: https://mcp.vercel.com
17428
+ docs: https://nango.dev/docs/api-integrations/vercel-mcp
17429
+ setup_guide_url: https://nango.dev/docs/api-integrations/vercel-mcp/how-to-register-your-own-vercel-mcp-oauth-app
17430
+
17287
17431
  vimeo:
17288
17432
  display_name: Vimeo (OAuth)
17289
17433
  categories: