@nangohq/providers 0.69.21 → 0.69.25

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 +7 -2
  2. package/providers.yaml +592 -46
package/package.json CHANGED
@@ -1,17 +1,22 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.69.21",
3
+ "version": "0.69.25",
4
4
  "description": "Nango's providers.yaml and getters",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "typings": "./dist/index.d.ts",
8
8
  "private": false,
9
9
  "scripts": {},
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/NangoHQ/nango.git",
13
+ "directory": "packages/providers"
14
+ },
10
15
  "dependencies": {
11
16
  "js-yaml": "4.1.1"
12
17
  },
13
18
  "devDependencies": {
14
- "@nangohq/types": "0.69.21",
19
+ "@nangohq/types": "0.69.25",
15
20
  "vitest": "3.2.4"
16
21
  },
17
22
  "files": [
package/providers.yaml CHANGED
@@ -1100,7 +1100,7 @@ apollo-oauth:
1100
1100
  grant_type: refresh_token
1101
1101
  proxy:
1102
1102
  base_url: https://app.apollo.io/api
1103
- docs: https://nango.dev/docs/integrations/all/apollo-oauth
1103
+ docs: https://nango.dev/docs/api-integrations/apollo-oauth
1104
1104
 
1105
1105
  apple-app-store:
1106
1106
  display_name: Apple App Store
@@ -1179,7 +1179,7 @@ asana-mcp:
1179
1179
  grant_type: authorization_code
1180
1180
  refresh_params:
1181
1181
  grant_type: refresh_token
1182
- docs: https://nango.dev/docs/integrations/all/asana
1182
+ docs: https://nango.dev/docs/api-integrations/asana
1183
1183
 
1184
1184
  asana-scim:
1185
1185
  display_name: Asana (SCIM API)
@@ -1197,8 +1197,8 @@ asana-scim:
1197
1197
  - /1.0/scim/Users
1198
1198
  headers:
1199
1199
  authorization: Bearer ${apiKey}
1200
- docs: https://nango.dev/docs/integrations/all/asana-scim
1201
- docs_connect: https://nango.dev/docs/integrations/all/asana-scim/connect
1200
+ docs: https://nango.dev/docs/api-integrations/asana-scim
1201
+ docs_connect: https://nango.dev/docs/api-integrations/asana-scim/connect
1202
1202
  credentials:
1203
1203
  apiKey:
1204
1204
  type: string
@@ -1339,6 +1339,89 @@ atlassian-government-cloud:
1339
1339
  suffix: .atlassian-us-gov-mod.net
1340
1340
  prefix: https://
1341
1341
 
1342
+ atlassian-service-account-api-token:
1343
+ display_name: Atlassian Service Account (API Token)
1344
+ categories:
1345
+ - dev-tools
1346
+ auth_mode: BASIC
1347
+ proxy:
1348
+ base_url: https://api.atlassian.com
1349
+ retry:
1350
+ at:
1351
+ - 'x-ratelimit-reset'
1352
+ connection_config:
1353
+ cloudId: ${connectionConfig.cloudId}
1354
+ post_connection_script: atlassianServicAccountPostConnection
1355
+ docs: https://nango.dev/docs/api-integrations/atlassian-service-account-api-token
1356
+ docs_connect: https://nango.dev/docs/api-integrations/atlassian-service-account-api-token/connect
1357
+ connection_config:
1358
+ cloudId:
1359
+ type: string
1360
+ title: Cloud ID
1361
+ description: Your Atlassian Cloud ID
1362
+ example: '12345678-1234-1234-1234-123456789012'
1363
+ format: uuid
1364
+ doc_section: '#step-1-finding-your-cloud-id'
1365
+ order: 1
1366
+ credentials:
1367
+ username:
1368
+ type: string
1369
+ title: Service Account Email
1370
+ description: The email address of your Atlassian service account
1371
+ example: bot@serviceaccount.atlassian.com
1372
+ format: email
1373
+ doc_section: '#step-2-finding-your-service-account-email'
1374
+ password:
1375
+ type: string
1376
+ title: API Token
1377
+ description: Your Atlassian service account API token
1378
+ secret: true
1379
+ example: ATSTT3xFfGF07SUw*******************************RvxLUHWs8ZV58TfHI=610694C8
1380
+ pattern: '^[A-Za-z0-9_-]{40,}=[A-Fa-f0-9]{8}$'
1381
+ doc_section: '#step-3-creating-an-api-token'
1382
+
1383
+ atlassian-service-account-oauth2:
1384
+ display_name: Atlassian Service Account (OAuth 2.0)
1385
+ categories:
1386
+ - dev-tools
1387
+ auth_mode: OAUTH2_CC
1388
+ token_url: https://auth.atlassian.com/oauth/token
1389
+ token_params:
1390
+ grant_type: client_credentials
1391
+ proxy:
1392
+ base_url: https://api.atlassian.com
1393
+ retry:
1394
+ at:
1395
+ - 'x-ratelimit-reset'
1396
+ connection_config:
1397
+ subdomain: ${connectionConfig.subdomain}
1398
+ post_connection_script: atlassianServicAccountPostConnection
1399
+ docs: https://nango.dev/docs/api-integrations/atlassian-service-account-oauth2
1400
+ docs_connect: https://nango.dev/docs/api-integrations/atlassian-service-account-oauth2/connect
1401
+ connection_config:
1402
+ subdomain:
1403
+ type: string
1404
+ title: Subdomain
1405
+ optional: true
1406
+ description: The subdomain of your Attlassian account
1407
+ pattern: '^[a-zA-Z0-9.-]+$'
1408
+ example: subdomain
1409
+ suffix: .atlassian.net
1410
+ prefix: https://
1411
+ doc_section: '#step-2-finding-your-subdomain'
1412
+ credentials:
1413
+ client_id:
1414
+ type: string
1415
+ title: Client ID
1416
+ description: The OAuth 2.0 client ID from your service account credential
1417
+ doc_section: '#step-1-creating-oauth-client-credentials'
1418
+ client_secret:
1419
+ type: string
1420
+ title: Client Secret
1421
+ description: The OAuth 2.0 client secret from your service account credential
1422
+ secret: true
1423
+ doc_section: '#step-1-creating-oauth-client-credentials'
1424
+
1342
1425
  attio:
1343
1426
  display_name: Attio
1344
1427
  categories:
@@ -2349,7 +2432,8 @@ brex:
2349
2432
  - offline_access
2350
2433
  proxy:
2351
2434
  base_url: https://platform.brexapis.com
2352
- docs: https://nango.dev/docs/integrations/all/brex
2435
+ docs: https://nango.dev/docs/api-integrations/brex
2436
+ setup_guide_url: https://nango.dev/docs/api-integrations/brex/how-to-register-your-own-brex-oauth-app
2353
2437
 
2354
2438
  brex-api-key:
2355
2439
  display_name: Brex (API Key)
@@ -2358,8 +2442,8 @@ brex-api-key:
2358
2442
  headers:
2359
2443
  authorization: Bearer ${apiKey}
2360
2444
  base_url: https://platform.brexapis.com
2361
- docs: https://nango.dev/docs/integrations/all/brex-api-key
2362
- docs_connect: https://nango.dev/docs/integrations/all/brex-api-key/connect
2445
+ docs: https://nango.dev/docs/api-integrations/brex-api-key
2446
+ docs_connect: https://nango.dev/docs/api-integrations/brex-api-key/connect
2363
2447
  credentials:
2364
2448
  apiKey:
2365
2449
  type: string
@@ -2375,8 +2459,9 @@ brex-staging:
2375
2459
  authorization_url: https://accounts-api.staging.brexapps.com/oauth2/default/v1/authorize
2376
2460
  token_url: https://accounts-api.staging.brexapps.com/oauth2/default/v1/token
2377
2461
  proxy:
2378
- base_url: https://platform.staging.brexapis.com
2379
- docs: https://nango.dev/docs/integrations/all/brex-staging
2462
+ base_url: https://platform.staging.brexapps.com
2463
+ docs: https://nango.dev/docs/api-integrations/brex-staging
2464
+ setup_guide_url: https://nango.dev/docs/api-integrations/brex-staging/how-to-register-your-own-brex-staging-oauth-app
2380
2465
 
2381
2466
  brightcrowd:
2382
2467
  display_name: BrightCrowd
@@ -2741,6 +2826,36 @@ canva:
2741
2826
  docs: https://nango.dev/docs/integrations/all/canva
2742
2827
  token_request_auth_method: basic
2743
2828
 
2829
+ canvas-lms:
2830
+ display_name: Canvas LMS
2831
+ categories:
2832
+ - productivity
2833
+ auth_mode: OAUTH2
2834
+ authorization_url: https://${connectionConfig.hostname}/login/oauth2/auth
2835
+ token_url: https://${connectionConfig.hostname}/login/oauth2/token
2836
+ scope_separator: ' '
2837
+ authorization_params:
2838
+ response_type: code
2839
+ token_params:
2840
+ grant_type: authorization_code
2841
+ refresh_params:
2842
+ grant_type: refresh_token
2843
+ proxy:
2844
+ base_url: https://${connectionConfig.hostname}
2845
+ docs: https://nango.dev/docs/api-integrations/canvas-lms
2846
+ setup_guide_url: https://nango.dev/docs/api-integrations/canvas-lms/how-to-register-your-own-canvas-lms-oauth-app
2847
+ docs_connect: https://nango.dev/docs/api-integrations/canvas-lms/connect
2848
+ connection_config:
2849
+ hostname:
2850
+ type: string
2851
+ title: Canvas Install URL
2852
+ description: The base URL of your Canvas instance
2853
+ example: canvas.instructure.com
2854
+ format: hostname
2855
+ prefix: https://
2856
+ order: 1
2857
+ doc_section: '#step-1-finding-your-canvas-install-url'
2858
+
2744
2859
  canva-scim:
2745
2860
  display_name: Canva (SCIM API)
2746
2861
  categories:
@@ -3562,8 +3677,8 @@ confluence-basic:
3562
3677
  content-type: application/json
3563
3678
  endpoints:
3564
3679
  - /wiki/api/v2/spaces
3565
- docs: https://nango.dev/docs/integrations/all/confluence-basic
3566
- docs_connect: https://nango.dev/docs/integrations/all/confluence-basic/connect
3680
+ docs: https://nango.dev/docs/api-integrations/confluence-basic
3681
+ docs_connect: https://nango.dev/docs/api-integrations/confluence-basic/connect
3567
3682
  connection_config:
3568
3683
  subdomain:
3569
3684
  type: string
@@ -3600,8 +3715,8 @@ confluence-data-center:
3600
3715
  after:
3601
3716
  - 'retry-after'
3602
3717
  base_url: https://${connectionConfig.endpointURL}
3603
- docs: https://nango.dev/docs/integrations/all/confluence-data-center
3604
- docs_connect: https://nango.dev/docs/integrations/all/confluence-data-center/connect
3718
+ docs: https://nango.dev/docs/api-integrations/confluence-data-center
3719
+ docs_connect: https://nango.dev/docs/api-integrations/confluence-data-center/connect
3605
3720
  connection_config:
3606
3721
  endpointURL:
3607
3722
  type: string
@@ -4290,6 +4405,26 @@ crisp:
4290
4405
  description: The key part of your Crisp token keypair
4291
4406
  doc_section: '#step-1-generating-your-token-keypair'
4292
4407
 
4408
+ crisp-plugin-install:
4409
+ display_name: Crisp (Plugin Install)
4410
+ categories:
4411
+ - communication
4412
+ - support
4413
+ auth_mode: INSTALL_PLUGIN
4414
+ auth_type: BASIC
4415
+ redirect_uri_metadata:
4416
+ - website_id
4417
+ proxy:
4418
+ base_url: https://api.crisp.chat
4419
+ headers:
4420
+ x-crisp-tier: plugin
4421
+ verification:
4422
+ method: GET
4423
+ endpoints:
4424
+ - /v1/plugin/connect/account
4425
+ docs: https://nango.dev/docs/api-integrations/crisp-plugin-install
4426
+ setup_guide_url: https://nango.dev/docs/api-integrations/crisp-plugin-install/how-to-register-your-own-crisp-plugin
4427
+
4293
4428
  dixa:
4294
4429
  display_name: Dixa
4295
4430
  categories:
@@ -4707,7 +4842,7 @@ e-conomic:
4707
4842
  description: The Agreement Grant Token for your e-conomic account
4708
4843
 
4709
4844
  ecu360:
4710
- display_name: ECU360
4845
+ display_name: ECU360 (Test)
4711
4846
  categories:
4712
4847
  - other
4713
4848
  auth_mode: TWO_STEP
@@ -4734,7 +4869,7 @@ ecu360:
4734
4869
  title: API Key
4735
4870
  description: Your ECU360 API Key
4736
4871
  secret: true
4737
- doc_section: '#step-2-finding-your-api-key'
4872
+ doc_section: '#step-2-obtaining-your-api-key'
4738
4873
  userName:
4739
4874
  type: string
4740
4875
  title: Username
@@ -4747,6 +4882,15 @@ ecu360:
4747
4882
  secret: true
4748
4883
  doc_section: '#step-1-finding-your-credentials'
4749
4884
 
4885
+ ecu360-production:
4886
+ display_name: ECU360 (Production)
4887
+ alias: ecu360
4888
+ token_url: https://apim.ecu360.com/auth/v1/authenticate
4889
+ proxy:
4890
+ base_url: https://apim.ecu360.com
4891
+ docs: https://nango.dev/docs/api-integrations/ecu360-production
4892
+ docs_connect: https://nango.dev/docs/api-integrations/ecu360-production/connect
4893
+
4750
4894
  egnyte:
4751
4895
  display_name: Egnyte
4752
4896
  categories:
@@ -5642,7 +5786,7 @@ freshsales:
5642
5786
  - crm
5643
5787
  auth_mode: API_KEY
5644
5788
  proxy:
5645
- base_url: https://${connectionConfig.subdomain}.freshsales.io
5789
+ base_url: https://${connectionConfig.bundleAlias} || https://${connectionConfig.subdomain}.freshsales.io
5646
5790
  verification:
5647
5791
  method: GET
5648
5792
  headers:
@@ -5654,18 +5798,22 @@ freshsales:
5654
5798
  retry:
5655
5799
  after:
5656
5800
  - 'retry-after'
5657
- docs: https://nango.dev/docs/integrations/all/freshsales
5658
- docs_connect: https://nango.dev/docs/integrations/all/freshsales/connect
5801
+ docs: https://nango.dev/docs/api-integrations/freshsales
5802
+ docs_connect: https://nango.dev/docs/api-integrations/freshsales/connect
5659
5803
  connection_config:
5660
- subdomain:
5804
+ bundleAlias:
5661
5805
  type: string
5662
- title: Freshsales subdomain
5663
- description: The subdomain of your Freshsales account
5664
- pattern: '^[a-z0-9_-]+$'
5665
- example: subdomain
5666
- suffix: .freshsales.io
5806
+ title: Bundle Alias
5807
+ description: The bundle alias for your Freshsales account
5667
5808
  prefix: https://
5668
- doc_section: '#step-2-finding-your-freshsales-subdomain'
5809
+ example: acme.myfreshworks.com/crm/sales
5810
+ doc_section: '#step-2-finding-your-bundle-alias'
5811
+ subdomain:
5812
+ type: string
5813
+ title: ''
5814
+ description: ''
5815
+ default_value: ''
5816
+ hidden: true # deprecating this in favor of bundleAlias
5669
5817
  credentials:
5670
5818
  apiKey:
5671
5819
  type: string
@@ -6489,6 +6637,17 @@ google-drive:
6489
6637
  docs: https://nango.dev/docs/api-integrations/google-drive
6490
6638
  setup_guide_url: https://nango.dev/docs/api-integrations/google-drive/how-to-register-your-own-google-drive-api-oauth-app
6491
6639
 
6640
+ google-meet:
6641
+ display_name: Google Meet
6642
+ categories:
6643
+ - communication
6644
+ - productivity
6645
+ alias: google
6646
+ proxy:
6647
+ base_url: https://meet.googleapis.com
6648
+ docs: https://nango.dev/docs/api-integrations/google-meet
6649
+ setup_guide_url: https://nango.dev/docs/api-integrations/google-meet/how-to-register-your-own-google-meet-api-oauth-app
6650
+
6492
6651
  google-ads:
6493
6652
  display_name: Google Ads
6494
6653
  categories:
@@ -6854,6 +7013,68 @@ greenhouse-harvest:
6854
7013
  default_value: ''
6855
7014
  hidden: true
6856
7015
 
7016
+ greenhouse-harvest-partner:
7017
+ display_name: Greenhouse Harvest Partner (V3)
7018
+ categories:
7019
+ - ats
7020
+ auth_mode: OAUTH2
7021
+ authorization_url: https://auth.greenhouse.io/authorize
7022
+ token_url: https://auth.greenhouse.io/token
7023
+ token_request_auth_method: basic
7024
+ disable_pkce: true
7025
+ scope_separator: ' '
7026
+ authorization_params:
7027
+ response_type: code
7028
+ token_params:
7029
+ grant_type: authorization_code
7030
+ refresh_params:
7031
+ grant_type: refresh_token
7032
+ proxy:
7033
+ base_url: https://harvest.greenhouse.io
7034
+ retry:
7035
+ at:
7036
+ - 'x-ratelimit-reset'
7037
+ docs: https://nango.dev/docs/api-integrations/greenhouse-harvest-partner
7038
+ setup_guide_url: https://nango.dev/docs/api-integrations/greenhouse-harvest-partner/how-to-register-your-own-greenhouse-harvest-partner-oauth-app
7039
+
7040
+ greenhouse-harvest-oauth2-cc:
7041
+ display_name: Greenhouse Harvest (Client Credentials V3)
7042
+ categories:
7043
+ - ats
7044
+ auth_mode: OAUTH2_CC
7045
+ token_url: https://auth.greenhouse.io/token?grant_type=client_credentials
7046
+ token_request_auth_method: basic
7047
+ body_format: json
7048
+ token_params:
7049
+ sub: ${connectionConfig.sub}
7050
+ proxy:
7051
+ base_url: https://harvest.greenhouse.io
7052
+ retry:
7053
+ at:
7054
+ - 'x-ratelimit-reset'
7055
+ docs: https://nango.dev/docs/api-integrations/greenhouse-harvest-oauth2-cc
7056
+ docs_connect: https://nango.dev/docs/api-integrations/greenhouse-harvest-oauth2-cc/connect
7057
+ connection_config:
7058
+ sub:
7059
+ type: string
7060
+ title: User ID
7061
+ description: The optional ID of the user to act on-behalf-of.
7062
+ optional: true
7063
+ example: '4212952002'
7064
+ pattern: '^[0-9]+$'
7065
+ doc_section: '#step-2-finding-your-user-id'
7066
+ credentials:
7067
+ client_id:
7068
+ type: string
7069
+ title: Client ID
7070
+ description: Your Greenhouse client ID for authentication
7071
+ doc_section: '#step-1-generating-your-client-credentials'
7072
+ client_secret:
7073
+ type: string
7074
+ title: Client Secret
7075
+ description: Your Greenhouse client secret for authentication
7076
+ doc_section: '#step-1-generating-your-client-credentials'
7077
+
6857
7078
  greenhouse-job-board:
6858
7079
  display_name: Greenhouse (Job Board API)
6859
7080
  auth_mode: BASIC
@@ -7238,12 +7459,13 @@ highlevel:
7238
7459
  post_connection_script: highlevelPostConnection
7239
7460
  webhook_routing_script: highlevelWebhookRouting
7240
7461
  webhook_user_defined_secret: true
7241
- docs: https://nango.dev/docs/integrations/all/highlevel
7462
+ docs: https://nango.dev/docs/api-integrations/highlevel
7463
+ setup_guide_url: https://nango.dev/docs/api-integrations/highlevel/how-to-register-your-own-highlevel-api-oauth-app
7242
7464
 
7243
7465
  highlevel-white-label:
7244
- display_name: HighLevel (White Label)
7466
+ display_name: HighLevel (LeadConnector)
7245
7467
  categories:
7246
- - marketing
7468
+ - crm
7247
7469
  auth_mode: OAUTH2
7248
7470
  authorization_url: https://marketplace.leadconnectorhq.com/oauth/chooselocation
7249
7471
  token_url: https://services.leadconnectorhq.com/oauth/token
@@ -7258,7 +7480,8 @@ highlevel-white-label:
7258
7480
  post_connection_script: highlevelPostConnection
7259
7481
  webhook_routing_script: highlevelWebhookRouting
7260
7482
  webhook_user_defined_secret: true
7261
- docs: https://nango.dev/docs/integrations/all/highlevel-white-label
7483
+ docs: https://nango.dev/docs/api-integrations/highlevel-white-label
7484
+ setup_guide_url: https://nango.dev/docs/api-integrations/highlevel-white-label/how-to-register-your-own-highlevel-white-label-api-oauth-app
7262
7485
 
7263
7486
  holded:
7264
7487
  display_name: Holded
@@ -8676,7 +8899,7 @@ loop-returns:
8676
8899
  doc_section: '#step-1-generating-your-api-key'
8677
8900
 
8678
8901
  looker:
8679
- display_name: Looker Studio
8902
+ display_name: Looker
8680
8903
  categories:
8681
8904
  - analytics
8682
8905
  auth_mode: TWO_STEP
@@ -8702,7 +8925,7 @@ looker:
8702
8925
  example: mycompany.looker.com
8703
8926
  order: 1
8704
8927
  format: hostname
8705
- doc_section: '#step-1-finding-your-looker-studio-hostname'
8928
+ doc_section: '#step-1-finding-your-looker-hostname'
8706
8929
  credentials:
8707
8930
  clientId:
8708
8931
  type: string
@@ -9088,6 +9311,14 @@ metabase:
9088
9311
  description: The API key for your Metabase account
9089
9312
  doc_section: '#step-1-generating-an-api-key'
9090
9313
 
9314
+ meta-marketing-api:
9315
+ display_name: Meta Marketing API
9316
+ categories:
9317
+ - marketing
9318
+ alias: facebook
9319
+ docs: https://nango.dev/docs/api-integrations/meta-marketing-api
9320
+ setup_guide_url: https://nango.dev/docs/api-integrations/meta-marketing-api/how-to-register-your-own-meta-marketing-api-oauth-app
9321
+
9091
9322
  microsoft:
9092
9323
  display_name: Microsoft
9093
9324
  auth_mode: OAUTH2
@@ -9531,6 +9762,41 @@ missive:
9531
9762
  type: string
9532
9763
  title: API Key
9533
9764
  description: The API key for your Missive account
9765
+
9766
+ juniper-mist:
9767
+ display_name: Juniper Mist
9768
+ categories:
9769
+ - dev-tools
9770
+ auth_mode: API_KEY
9771
+ proxy:
9772
+ base_url: https://${connectionConfig.subdomain}.mist.com
9773
+ headers:
9774
+ authorization: Token ${apiKey}
9775
+ verification:
9776
+ method: GET
9777
+ headers:
9778
+ content-type: application/json
9779
+ endpoints:
9780
+ - /api/v1/self
9781
+ docs: https://nango.dev/docs/api-integrations/juniper-mist
9782
+ docs_connect: https://nango.dev/docs/api-integrations/juniper-mist/connect
9783
+ connection_config:
9784
+ subdomain:
9785
+ type: string
9786
+ title: API Subdomain
9787
+ description: The API subdomain for your Juniper Mist region
9788
+ example: api
9789
+ pattern: '^api(\.[a-z0-9]+)*$'
9790
+ doc_section: '#step-1-finding-your-api-subdomain'
9791
+ credentials:
9792
+ apiKey:
9793
+ type: string
9794
+ title: API Token
9795
+ description: Your Juniper Mist API token
9796
+ doc_section: '#step-2-generating-your-api-token'
9797
+ example: 3n69xDYMlT36fulLwIq7PDaDopc5W0b*****************************************************************
9798
+ pattern: '^[A-Za-z0-9]{96}$'
9799
+
9534
9800
  monday:
9535
9801
  display_name: Monday
9536
9802
  categories:
@@ -9539,9 +9805,15 @@ monday:
9539
9805
  auth_mode: OAUTH2
9540
9806
  authorization_url: https://auth.monday.com/oauth2/authorize
9541
9807
  token_url: https://auth.monday.com/oauth2/token
9808
+ disable_pkce: true
9809
+ authorization_params:
9810
+ force_install_if_needed: true
9811
+ authorization_url_replacements:
9812
+ response_type: ''
9542
9813
  proxy:
9543
9814
  base_url: https://api.monday.com
9544
- docs: https://nango.dev/docs/integrations/all/monday
9815
+ docs: https://nango.dev/docs/api-integrations/monday
9816
+ setup_guide_url: https://nango.dev/docs/api-integrations/monday/how-to-register-your-own-monday-oauth-app
9545
9817
 
9546
9818
  momentum-io:
9547
9819
  display_name: Momentum.io
@@ -9565,6 +9837,87 @@ momentum-io:
9565
9837
  description: The API key for your Make account
9566
9838
  doc_section: '#step-1-generating-an-api-key'
9567
9839
 
9840
+ mollie:
9841
+ display_name: Mollie
9842
+ categories:
9843
+ - payment
9844
+ auth_mode: OAUTH2
9845
+ authorization_url: https://my.mollie.com/oauth2/authorize
9846
+ token_url: https://api.mollie.com/oauth2/tokens
9847
+ scope_separator: ' '
9848
+ disable_pkce: true
9849
+ authorization_params:
9850
+ response_type: code
9851
+ token_params:
9852
+ grant_type: authorization_code
9853
+ refresh_params:
9854
+ grant_type: refresh_token
9855
+ proxy:
9856
+ base_url: https://api.mollie.com
9857
+ docs: https://nango.dev/docs/api-integrations/mollie
9858
+ setup_guide_url: https://nango.dev/docs/api-integrations/mollie/how-to-register-your-own-mollie-oauth-app
9859
+ modmed:
9860
+ display_name: ModMed
9861
+ categories:
9862
+ - other
9863
+ auth_mode: TWO_STEP
9864
+ body_format: form
9865
+ token_url: https://${connectionConfig.environment}/firm/${connectionConfig.firmUrlPrefix}/ema/ws/oauth2/grant
9866
+ token_params:
9867
+ grant_type: password
9868
+ username: ${credentials.username}
9869
+ password: ${credentials.password}
9870
+ token_headers:
9871
+ x-api-key: ${credentials.apiKey}
9872
+ accept: application/json
9873
+ content-type: application/x-www-form-urlencoded
9874
+ proxy:
9875
+ base_url: https://${connectionConfig.environment}/firm/${connectionConfig.firmUrlPrefix}
9876
+ headers:
9877
+ accept: application/fhir+json
9878
+ x-api-key: ${credentials.apiKey}
9879
+ token_response:
9880
+ token: access_token
9881
+ docs: https://nango.dev/docs/api-integrations/modmed
9882
+ docs_connect: https://nango.dev/docs/api-integrations/modmed/connect
9883
+ connection_config:
9884
+ environment:
9885
+ type: string
9886
+ title: Environment
9887
+ description: The ModMed API environment
9888
+ example: stage.ema-api.com/ema-dev
9889
+ pattern: '^(stage|mmapi)\.ema-api\.com\/(ema-dev|ema-training|ema-prod)$'
9890
+ doc_section: '#step-3-selecting-your-environment'
9891
+ order: 1
9892
+ firmUrlPrefix:
9893
+ type: string
9894
+ title: Firm URL Prefix
9895
+ description: The firm URL prefix for your practice
9896
+ example: emapmsandbox01
9897
+ doc_section: '#step-2-finding-your-firm-url-prefix'
9898
+ order: 2
9899
+ credentials:
9900
+ username:
9901
+ type: string
9902
+ title: Username
9903
+ description: Your API username
9904
+ example: fhir_QfLlo
9905
+ doc_section: '#step-1-request-access-to-modmed-sandbox'
9906
+ password:
9907
+ type: string
9908
+ title: Password
9909
+ description: Your API password
9910
+ secret: true
9911
+ doc_section: '#step-1-request-access-to-modmed-sandbox'
9912
+ apiKey:
9913
+ type: string
9914
+ title: API Key
9915
+ description: Your API key (x-api-key)
9916
+ secret: true
9917
+ format: uuid
9918
+ example: a1b2c3d4-e5f6-47a8-9b0c-d1234567890f
9919
+ doc_section: '#step-1-request-access-to-modmed-sandbox'
9920
+
9568
9921
  mural:
9569
9922
  display_name: Mural
9570
9923
  categories:
@@ -10077,6 +10430,39 @@ onelogin:
10077
10430
  suffix: .onelogin.com
10078
10431
  doc_section: '#step-1-finding-your-subdomain'
10079
10432
 
10433
+ oomnitza:
10434
+ display_name: Oomnitza
10435
+ categories:
10436
+ - productivity
10437
+ auth_mode: API_KEY
10438
+ proxy:
10439
+ base_url: https://${connectionConfig.subdomain}.oomnitza.com
10440
+ headers:
10441
+ authorization2: ${apiKey}
10442
+ content-type: application/json
10443
+ verification:
10444
+ method: GET
10445
+ endpoints:
10446
+ - /api/v3/assets/meta
10447
+ docs: https://nango.dev/docs/api-integrations/oomnitza
10448
+ docs_connect: https://nango.dev/docs/api-integrations/oomnitza/connect
10449
+ connection_config:
10450
+ subdomain:
10451
+ type: string
10452
+ title: Oomnitza Subdomain
10453
+ description: The subdomain of your Oomnitza instance
10454
+ example: mycompany
10455
+ prefix: https://
10456
+ suffix: .oomnitza.com
10457
+ order: 1
10458
+ doc_section: '#step-1-finding-your-subdomain'
10459
+ credentials:
10460
+ apiKey:
10461
+ type: string
10462
+ title: API Token
10463
+ description: Your Oomnitza API token
10464
+ doc_section: '#step-2-generating-your-api-token'
10465
+
10080
10466
  openai:
10081
10467
  display_name: OpenAI
10082
10468
  categories:
@@ -10773,6 +11159,32 @@ peopledatalabs:
10773
11159
  title: API Key
10774
11160
  description: The API key for your People Data Labs account
10775
11161
 
11162
+ perdoo:
11163
+ display_name: Perdoo
11164
+ categories:
11165
+ - productivity
11166
+ - analytics
11167
+ auth_mode: API_KEY
11168
+ proxy:
11169
+ base_url: https://eu.perdoo.com
11170
+ headers:
11171
+ authorization: Bearer ${apiKey}
11172
+ content-type: application/json
11173
+ verification:
11174
+ method: GET
11175
+ endpoints:
11176
+ - /user
11177
+ docs: https://nango.dev/docs/api-integrations/perdoo
11178
+ docs_connect: https://nango.dev/docs/api-integrations/perdoo/connect
11179
+ credentials:
11180
+ apiKey:
11181
+ type: string
11182
+ title: API Token
11183
+ description: Your Perdoo API token
11184
+ example: '5037c64a83d34725a13131b9b28856c0e499887b16c84b6d9bba2756d1e61634'
11185
+ pattern: '^[a-f0-9]{64}$'
11186
+ doc_section: '#step-1-generating-your-api-token'
11187
+
10776
11188
  perplexity:
10777
11189
  display_name: Perplexity
10778
11190
  categories:
@@ -11407,6 +11819,39 @@ productboard:
11407
11819
  base_url: https://api.productboard.com
11408
11820
  docs: https://nango.dev/docs/integrations/all/productboard
11409
11821
 
11822
+ procore:
11823
+ display_name: Procore
11824
+ categories:
11825
+ - erp
11826
+ auth_mode: OAUTH2
11827
+ authorization_url: https://login.procore.com/oauth/authorize
11828
+ token_url: https://login.procore.com/oauth/token
11829
+ authorization_params:
11830
+ response_type: code
11831
+ token_params:
11832
+ grant_type: authorization_code
11833
+ refresh_params:
11834
+ grant_type: refresh_token
11835
+ post_connection_script: procorePostConnection
11836
+ proxy:
11837
+ headers:
11838
+ procore-company-id: ${connectionConfig.companyId}
11839
+ base_url: https://api.procore.com
11840
+ retry:
11841
+ at:
11842
+ - 'x-rate-limit-reset'
11843
+ docs: https://nango.dev/docs/api-integrations/procore
11844
+ setup_guide_url: https://nango.dev/docs/api-integrations/procore/how-to-register-your-own-procore-oauth-app
11845
+ docs_connect: https://nango.dev/docs/api-integrations/procore/connect
11846
+ connection_config:
11847
+ companyId:
11848
+ type: string
11849
+ title: Company ID
11850
+ description: Your Procore company ID
11851
+ optional: true
11852
+ example: '598134325779301'
11853
+ pattern: '^[0-9]+$'
11854
+
11410
11855
  qualtrics:
11411
11856
  display_name: Qualtrics
11412
11857
  categories:
@@ -12113,7 +12558,7 @@ rootly:
12113
12558
  verification:
12114
12559
  method: GET
12115
12560
  headers:
12116
- content-type: application/json
12561
+ content-type: application/vnd.api+json
12117
12562
  endpoints:
12118
12563
  - /v1/users/me
12119
12564
  docs: https://nango.dev/docs/integrations/all/rootly
@@ -12127,6 +12572,32 @@ rootly:
12127
12572
  pattern: '^rootly_[a-f0-9]{64}$'
12128
12573
  doc_section: '#step-1-generating-your-api-key'
12129
12574
 
12575
+ reapit:
12576
+ display_name: Reapit Connect
12577
+ categories:
12578
+ - crm
12579
+ auth_mode: OAUTH2
12580
+ authorization_url: https://connect.reapit.cloud/authorize
12581
+ token_url: https://connect.reapit.cloud/token
12582
+ disable_pkce: true
12583
+ authorization_params:
12584
+ response_type: code
12585
+ token_params:
12586
+ grant_type: authorization_code
12587
+ refresh_params:
12588
+ grant_type: refresh_token
12589
+ proxy:
12590
+ base_url: https://platform.reapit.cloud
12591
+ headers:
12592
+ api-version: ${connectionConfig.version} || 2020-01-31
12593
+ docs: https://nango.dev/docs/api-integrations/reapit
12594
+ setup_guide_url: https://nango.dev/docs/api-integrations/reapit/how-to-register-your-own-reapit-oauth-app
12595
+ connection_config:
12596
+ version:
12597
+ type: string
12598
+ title: ''
12599
+ description: ''
12600
+ automated: true
12130
12601
  segment:
12131
12602
  display_name: Segment
12132
12603
  categories:
@@ -12307,8 +12778,8 @@ salesforce:
12307
12778
  - crm
12308
12779
  - popular
12309
12780
  auth_mode: OAUTH2
12310
- authorization_url: https://login.salesforce.com/services/oauth2/authorize
12311
- token_url: https://login.salesforce.com/services/oauth2/token
12781
+ authorization_url: https://${connectionConfig.hostname}/services/oauth2/authorize || https://login.salesforce.com/services/oauth2/authorize
12782
+ token_url: https://${connectionConfig.hostname}/services/oauth2/token || https://login.salesforce.com/services/oauth2/token
12312
12783
  authorization_params:
12313
12784
  prompt: consent
12314
12785
  default_scopes:
@@ -12329,6 +12800,14 @@ salesforce:
12329
12800
  format: uri
12330
12801
  pattern: '^https?://.*$'
12331
12802
  automated: true
12803
+ hostname:
12804
+ type: string
12805
+ title: Hostname
12806
+ description: The hostname to your Salesforce instance
12807
+ format: hostname
12808
+ example: acme.my.salesforce.com
12809
+ prefix: https://
12810
+ optional: true
12332
12811
 
12333
12812
  salesforce-sandbox:
12334
12813
  display_name: Salesforce (Sandbox)
@@ -12568,6 +13047,19 @@ sap-success-factors:
12568
13047
  grant_type: urn:ietf:params:oauth:grant-type:saml2-bearer
12569
13048
  assertion: ${credentials.assertion}
12570
13049
  new_token: true
13050
+ assertion:
13051
+ key: ${assertionOption.privateKey}
13052
+ issuer: www.successfactors.com
13053
+ lifetimeInSeconds: '315360000'
13054
+ audiences: www.successfactors.com
13055
+ attributes:
13056
+ api_key: ${credentials.apiKey}
13057
+ use_username: true
13058
+ use_email: false
13059
+ external_user: false
13060
+ sessionIndex: ${random}
13061
+ nameIdentifier: ${assertionOption.userName}
13062
+ recipient: https://${connectionConfig.apiServer}/oauth/token
12571
13063
  token_headers:
12572
13064
  content-type: application/x-www-form-urlencoded
12573
13065
  proxy:
@@ -12576,8 +13068,8 @@ sap-success-factors:
12576
13068
  token: access_token
12577
13069
  token_expiration: expires_in
12578
13070
  token_expiration_strategy: expireIn
12579
- docs: https://nango.dev/docs/integrations/all/sap-success-factors
12580
- docs_connect: https://nango.dev/docs/integrations/all/sap-success-factors/connect
13071
+ docs: https://nango.dev/docs/api-integrations/sap-success-factors
13072
+ docs_connect: https://nango.dev/docs/api-integrations/sap-success-factors/connect
12581
13073
  connection_config:
12582
13074
  apiServer:
12583
13075
  type: string
@@ -12604,13 +13096,24 @@ sap-success-factors:
12604
13096
  secret: true
12605
13097
  example: YzA4MTVhMTQzZTUzMjc3NTk0ZDY2Nzc1ZmVkOA
12606
13098
  pattern: ^[A-Za-z0-9+/]{32,44}={0,2}$
12607
- doc_section: '#step-3-generating-your-api-key'
13099
+ doc_section: '#step-3-finding-your-api-key-and-private-key'
12608
13100
  assertion:
12609
13101
  type: string
12610
- title: SAML Assertion
12611
- description: The SAML Assertion generated for your SAP SuccessFactors account
12612
- secret: true
12613
- doc_section: '#step-4-generating-your-saml-assertion'
13102
+ title: ''
13103
+ description: ''
13104
+ automated: true
13105
+ assertion_option:
13106
+ userName:
13107
+ type: string
13108
+ title: Username
13109
+ description: The username of your SAP SuccessFactors account
13110
+ example: johnDoe
13111
+ doc_section: '#step-4-finding-your-username'
13112
+ privateKey:
13113
+ type: string
13114
+ title: Private Key
13115
+ description: The Private Key for your SAP SuccessFactors Oauth Client
13116
+ doc_section: '#step-3-finding-your-api-key-and-private-key'
12614
13117
 
12615
13118
  sap-odata-oauth2-cc:
12616
13119
  display_name: SAP S/4HANA Cloud (Client Credentials)
@@ -12675,6 +13178,25 @@ sap-odata-basic:
12675
13178
  doc_section: '#step-2-finding-your-api-server'
12676
13179
  order: 1
12677
13180
 
13181
+ schwab:
13182
+ display_name: Schwab
13183
+ categories:
13184
+ - banking
13185
+ - accounting
13186
+ auth_mode: OAUTH2
13187
+ authorization_url: https://api.schwabapi.com/v1/oauth/authorize
13188
+ token_url: https://api.schwabapi.com/v1/oauth/token
13189
+ authorization_params:
13190
+ response_type: code
13191
+ token_params:
13192
+ grant_type: authorization_code
13193
+ refresh_params:
13194
+ grant_type: refresh_token
13195
+ proxy:
13196
+ base_url: https://api.schwabapi.com
13197
+ docs: https://nango.dev/docs/api-integrations/schwab
13198
+ setup_guide_url: https://nango.dev/docs/api-integrations/schwab/how-to-register-your-own-schwab-oauth-app
13199
+
12678
13200
  scrapedo:
12679
13201
  display_name: Scrape.do
12680
13202
  categories:
@@ -13087,8 +13609,8 @@ sharepoint-online-oauth2-cc:
13087
13609
  grant_type: client_credentials
13088
13610
  proxy:
13089
13611
  base_url: https://graph.microsoft.com
13090
- docs: https://nango.dev/docs/integrations/all/sharepoint-online-oauth2-cc
13091
- docs_connect: https://nango.dev/docs/integrations/all/sharepoint-online-oauth2-cc/connect
13612
+ docs: https://nango.dev/docs/api-integrations/sharepoint-online-oauth2-cc
13613
+ docs_connect: https://nango.dev/docs/api-integrations/sharepoint-online-oauth2-cc/connect
13092
13614
  connection_config:
13093
13615
  tenantId:
13094
13616
  type: string
@@ -13123,8 +13645,8 @@ sharepoint-online-v1:
13123
13645
  token: access_token
13124
13646
  token_expiration: expires_in
13125
13647
  token_expiration_strategy: expireIn
13126
- docs: https://nango.dev/docs/integrations/all/sharepoint-online-v1
13127
- docs_connect: https://nango.dev/docs/integrations/all/sharepoint-online-v1/connect
13648
+ docs: https://nango.dev/docs/api-integrations/sharepoint-online-v1
13649
+ docs_connect: https://nango.dev/docs/api-integrations/sharepoint-online-v1/connect
13128
13650
  connection_config:
13129
13651
  tenantId:
13130
13652
  type: string
@@ -15679,6 +16201,30 @@ wrike:
15679
16201
  format: hostname
15680
16202
  prefix: https://
15681
16203
 
16204
+ wise-api-key:
16205
+ display_name: Wise (API Key)
16206
+ categories:
16207
+ - banking
16208
+ - payment
16209
+ auth_mode: API_KEY
16210
+ proxy:
16211
+ headers:
16212
+ authorization: Bearer ${apiKey}
16213
+ base_url: https://api.wise.com
16214
+ verification:
16215
+ method: GET
16216
+ endpoints:
16217
+ - /v1/profiles
16218
+ docs: https://nango.dev/docs/api-integrations/wise-api-key
16219
+ docs_connect: https://nango.dev/docs/api-integrations/wise-api-key/connect
16220
+ credentials:
16221
+ apiKey:
16222
+ type: string
16223
+ title: API Token
16224
+ description: Your Wise Personal API Token
16225
+ example: 12345678-1234-1234-1234-123456789abc
16226
+ pattern: '^[a-f0-9-]{36}$'
16227
+ doc_section: '#step-1-generating-your-api-token'
15682
16228
  xai:
15683
16229
  display_name: xAI
15684
16230
  categories: