@nangohq/providers 0.53.2 → 0.55.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/providers.yaml +417 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.53.2",
3
+ "version": "0.55.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.53.2",
14
+ "@nangohq/types": "0.55.0",
15
15
  "vitest": "2.1.9"
16
16
  },
17
17
  "files": [
package/providers.yaml CHANGED
@@ -229,6 +229,7 @@ aircall-basic:
229
229
  airtable:
230
230
  display_name: Airtable
231
231
  categories:
232
+ - popular
232
233
  - productivity
233
234
  auth_mode: OAUTH2
234
235
  authorization_url: https://airtable.com/oauth2/v1/authorize
@@ -241,6 +242,26 @@ airtable:
241
242
  webhook_routing_script: airtableWebhookRouting
242
243
  docs: https://docs.nango.dev/integrations/all/airtable
243
244
 
245
+ airtable-pat:
246
+ display_name: Airtable (Personal Access Token)
247
+ categories:
248
+ - productivity
249
+ auth_mode: API_KEY
250
+ proxy:
251
+ base_url: https://api.airtable.com
252
+ headers:
253
+ authorization: Bearer ${apiKey}
254
+ docs: https://docs.nango.dev/integrations/all/airtable-pat
255
+ docs_connect: https://docs.nango.dev/integrations/all/airtable-pat/connect
256
+ credentials:
257
+ apiKey:
258
+ type: string
259
+ title: Personal Access Token
260
+ description: The Personal Access Token for your Airtable account
261
+ example: 'patoXxYzA1B2C3D4Ef.98a7b6c5d4e3f2g1h0i9j8k7l6m5n4o3p2q1r0s9t8u7v6w5x4y3z2a1b0cdef'
262
+ pattern: '^[a-zA-Z0-9\.]+$'
263
+ doc_section: '#step-1-generating-your-personal-access-token'
264
+
244
265
  autodesk:
245
266
  display_name: Autodesk
246
267
  categories:
@@ -319,6 +340,103 @@ amazon:
319
340
  example: com
320
341
  pattern: '^[a-z.]+$'
321
342
 
343
+ amazon-selling-partner:
344
+ display_name: Amazon Selling Partner
345
+ categories:
346
+ - dev-tools
347
+ - e-commerce
348
+ auth_mode: OAUTH2
349
+ authorization_url: https://${connectionConfig.domain}/apps/authorize/consent
350
+ token_url: https://api.amazon.com/auth/o2/token
351
+ authorization_code_param_in_callback: spapi_oauth_code
352
+ disable_pkce: true
353
+ authorization_params:
354
+ application_id: ${connectionConfig.applicationId}
355
+ token_params:
356
+ grant_type: authorization_code
357
+ refresh_params:
358
+ grant_type: refresh_token
359
+ proxy:
360
+ base_url: https://sellingpartnerapi-${connectionConfig.region}.amazon.com
361
+ headers:
362
+ x-amz-access-token: ${accessToken}
363
+ docs: https://docs.nango.dev/integrations/all/amazon-selling-partner
364
+ docs_connect: https://docs.nango.dev/integrations/all/amazon-selling-partner/connect
365
+ connection_config:
366
+ applicationId:
367
+ type: string
368
+ title: Application ID
369
+ description: The unique identifier for your Amazon Selling Partner application
370
+ example: 'amzn1.sellerapps.app.0bf296b5-36a6-4942-a13e-EXAMPLEfcd28'
371
+ pattern: '^[a-zA-Z0-9.-]+$'
372
+ doc_section: '#step-1-finding-your-app-id'
373
+ order: 1
374
+ domain:
375
+ type: string
376
+ title: Domain
377
+ description: The domain representing the Amazon platform you are integrating with
378
+ example: sellercentral.amazon.com
379
+ pattern: '^[a-z0-9.-]+\.amazon\.[a-z.]+$'
380
+ doc_section: '#step-2-finding-your-domain'
381
+ order: 2
382
+ region:
383
+ type: string
384
+ title: Proxy BaseUrl Region
385
+ description: The geographical region associated with the Amazon marketplace.
386
+ example: eu
387
+ pattern: '^[a-z]+$'
388
+ doc_section: '#step-3-finding-your-proxy-baseurl-region'
389
+ order: 3
390
+
391
+ amazon-selling-partner-beta:
392
+ display_name: Amazon Selling Partner (Beta)
393
+ categories:
394
+ - dev-tools
395
+ - e-commerce
396
+ auth_mode: OAUTH2
397
+ authorization_url: https://${connectionConfig.domain}/apps/authorize/consent
398
+ token_url: https://api.amazon.com/auth/o2/token
399
+ authorization_code_param_in_callback: spapi_oauth_code
400
+ disable_pkce: true
401
+ authorization_params:
402
+ application_id: ${connectionConfig.applicationId}
403
+ version: beta
404
+ token_params:
405
+ grant_type: authorization_code
406
+ refresh_params:
407
+ grant_type: refresh_token
408
+ proxy:
409
+ base_url: https://sandbox.sellingpartnerapi-${connectionConfig.region}.amazon.com
410
+ headers:
411
+ x-amz-access-token: ${accessToken}
412
+ docs: https://docs.nango.dev/integrations/all/amazon-selling-partner-beta
413
+ docs_connect: https://docs.nango.dev/integrations/all/amazon-selling-partner-beta/connect
414
+ connection_config:
415
+ applicationId:
416
+ type: string
417
+ title: Application ID
418
+ description: The unique identifier for your Amazon Selling Partner application
419
+ example: 'amzn1.sellerapps.app.0bf296b5-36a6-4942-a13e-EXAMPLEfcd28'
420
+ pattern: '^[a-zA-Z0-9.-]+$'
421
+ doc_section: '#step-1-finding-your-app-id'
422
+ order: 1
423
+ domain:
424
+ type: string
425
+ title: Domain
426
+ description: The domain representing the Amazon platform you are integrating with
427
+ example: sellercentral.amazon.com
428
+ pattern: '^[a-z0-9.-]+\.amazon\.[a-z.]+$'
429
+ doc_section: '#step-2-finding-your-domain'
430
+ order: 2
431
+ region:
432
+ type: string
433
+ title: Proxy BaseUrl Region
434
+ description: The geographical region associated with the Amazon marketplace.
435
+ example: eu
436
+ pattern: '^[a-z]+$'
437
+ doc_section: '#step-3-finding-your-proxy-baseurl-region'
438
+ order: 3
439
+
322
440
  anrok:
323
441
  display_name: Anrok
324
442
  categories:
@@ -435,6 +553,7 @@ apollo-oauth:
435
553
  display_name: Apollo (OAuth)
436
554
  categories:
437
555
  - marketing
556
+ - popular
438
557
  auth_mode: OAUTH2
439
558
  authorization_url: https://app.apollo.io
440
559
  token_url: https://app.apollo.io/api/v1/oauth/token
@@ -461,6 +580,27 @@ apple-app-store:
461
580
  base_url: https://api.appstoreconnect.apple.com
462
581
  docs: https://docs.nango.dev/integrations/all/apple-app-store
463
582
 
583
+ appstle-subscriptions:
584
+ display_name: Appstle Subscriptions
585
+ categories:
586
+ - productivity
587
+ auth_mode: API_KEY
588
+ proxy:
589
+ base_url: https://subscription-admin.appstle.com
590
+ headers:
591
+ x-api-key: ${apiKey}
592
+ docs: https://docs.nango.dev/integrations/all/appstle-subscriptions
593
+ docs_connect: https://docs.nango.dev/integrations/all/appstle-subscriptions/connect
594
+ credentials:
595
+ apiKey:
596
+ type: string
597
+ title: API Key
598
+ description: Your Appstle Subscriptions API Key
599
+ secret: true
600
+ doc_section: '#step-1-finding-your-api-key'
601
+ example: lBfFAdbxUxyv6jYRgOmrEVNkijCKD10T
602
+ pattern: ^[a-zA-Z0-9]+$
603
+
464
604
  asana:
465
605
  display_name: Asana
466
606
  categories:
@@ -1615,6 +1755,24 @@ chattermill:
1615
1755
  suffix: .chattermill.com
1616
1756
  prefix: https://
1617
1757
 
1758
+ checkhq:
1759
+ display_name: Check
1760
+ categories:
1761
+ - accounting
1762
+ auth_mode: API_KEY
1763
+ proxy:
1764
+ base_url: https://api.checkhq.com
1765
+ headers:
1766
+ authorization: Bearer ${apiKey}
1767
+ docs: https://docs.nango.dev/integrations/all/checkhq
1768
+ docs_connect: https://docs.nango.dev/integrations/all/checkhq/connect
1769
+ credentials:
1770
+ apiKey:
1771
+ type: string
1772
+ title: API Key
1773
+ description: The API key for your CheckHQ account
1774
+ doc_section: '#step-1-finding-check-api-token'
1775
+
1618
1776
  checkr-partner:
1619
1777
  display_name: Checkr Partner
1620
1778
  categories:
@@ -3367,6 +3525,8 @@ guru-scim:
3367
3525
  auth_mode: API_KEY
3368
3526
  proxy:
3369
3527
  base_url: https://api.getguru.com/api/scim
3528
+ headers:
3529
+ authorization: Bearer ${apiKey}
3370
3530
  docs: https://docs.nango.dev/integrations/all/guru-scim
3371
3531
  docs_connect: https://docs.nango.dev/integrations/all/guru-scim/connect
3372
3532
  credentials:
@@ -3401,6 +3561,7 @@ github-app:
3401
3561
  display_name: GitHub (App)
3402
3562
  categories:
3403
3563
  - dev-tools
3564
+ - popular
3404
3565
  - ticketing
3405
3566
  alias: github
3406
3567
  auth_mode: APP
@@ -3542,7 +3703,10 @@ ghost-content:
3542
3703
  gong:
3543
3704
  display_name: Gong (Basic Auth)
3544
3705
  categories:
3706
+ - communication
3707
+ - marketing
3545
3708
  - productivity
3709
+ - video
3546
3710
  auth_mode: BASIC
3547
3711
  proxy:
3548
3712
  base_url: https://api.gong.io
@@ -3568,7 +3732,10 @@ gong-oauth:
3568
3732
  display_name: Gong (Oauth)
3569
3733
  auth_mode: OAUTH2
3570
3734
  categories:
3735
+ - communication
3736
+ - marketing
3571
3737
  - productivity
3738
+ - video
3572
3739
  authorization_url: https://app.gong.io/oauth2/authorize
3573
3740
  token_url: https://app.gong.io/oauth2/generate-customer-token
3574
3741
  token_response_metadata:
@@ -3597,6 +3764,11 @@ gong-oauth:
3597
3764
 
3598
3765
  google:
3599
3766
  display_name: Google
3767
+ categories:
3768
+ - communication
3769
+ - dev-tools
3770
+ - productivity
3771
+ - social
3600
3772
  auth_mode: OAUTH2
3601
3773
  authorization_url: https://accounts.google.com/o/oauth2/v2/auth
3602
3774
  token_url: https://oauth2.googleapis.com/token
@@ -3624,6 +3796,7 @@ google-analytics:
3624
3796
  google-calendar:
3625
3797
  display_name: Google Calendar
3626
3798
  categories:
3799
+ - popular
3627
3800
  - productivity
3628
3801
  alias: google
3629
3802
  proxy:
@@ -3646,8 +3819,9 @@ google-docs:
3646
3819
  docs: https://docs.nango.dev/integrations/all/google-docs
3647
3820
 
3648
3821
  google-mail:
3649
- display_name: Google Mail
3822
+ display_name: Gmail
3650
3823
  categories:
3824
+ - popular
3651
3825
  - productivity
3652
3826
  alias: google
3653
3827
  proxy:
@@ -3667,6 +3841,7 @@ google-drive:
3667
3841
  display_name: Google Drive
3668
3842
  categories:
3669
3843
  - knowledge-base
3844
+ - popular
3670
3845
  - storage
3671
3846
  alias: google
3672
3847
  docs: https://docs.nango.dev/integrations/all/google-drive
@@ -3737,6 +3912,35 @@ gorgias:
3737
3912
  suffix: .gorgias.com
3738
3913
  prefix: https://
3739
3914
 
3915
+ gorgias-basic:
3916
+ display_name: Gorgias (Basic Auth)
3917
+ auth_mode: BASIC
3918
+ categories:
3919
+ - e-commerce
3920
+ proxy:
3921
+ base_url: https://${connectionConfig.subdomain}.gorgias.com/api
3922
+ docs: https://docs.nango.dev/integrations/all/gorgias-basic
3923
+ docs_connect: https://docs.nango.dev/integrations/all/gorgias-basic/connect
3924
+ credentials:
3925
+ username:
3926
+ type: string
3927
+ title: Username
3928
+ description: Your Gorgias account Username
3929
+ password:
3930
+ type: string
3931
+ title: API Key
3932
+ description: Your Gorgias API Key
3933
+ default_value: ''
3934
+ doc_section: '#step-1-finding-gorgias-api-key-secret'
3935
+ connection_config:
3936
+ subdomain:
3937
+ type: string
3938
+ title: Gorgias Domain
3939
+ description: The subdomain of your Gorgias account
3940
+ pattern: '^[a-z0-9_-]+$'
3941
+ prefix: https://
3942
+ order: 1
3943
+
3740
3944
  grafana:
3741
3945
  display_name: Grafana
3742
3946
  categories:
@@ -4210,6 +4414,7 @@ hubspot:
4210
4414
  - marketing
4211
4415
  - support
4212
4416
  - crm
4417
+ - popular
4213
4418
  auth_mode: OAUTH2
4214
4419
  authorization_url: https://app.hubspot.com/oauth/authorize
4215
4420
  token_url: https://api.hubapi.com/oauth/v1/token
@@ -4318,6 +4523,7 @@ intuit:
4318
4523
  jira:
4319
4524
  display_name: Jira (OAuth)
4320
4525
  categories:
4526
+ - popular
4321
4527
  - productivity
4322
4528
  - ticketing
4323
4529
  auth_mode: OAUTH2
@@ -4714,6 +4920,36 @@ lessonly:
4714
4920
  description: Your Lessonly API key
4715
4921
  secret: true
4716
4922
 
4923
+ lemlist:
4924
+ display_name: lemlist
4925
+ categories:
4926
+ - marketing
4927
+ - communication
4928
+ auth_mode: BASIC
4929
+ proxy:
4930
+ base_url: https://api.lemlist.com
4931
+ verification:
4932
+ endpoint: /api/team
4933
+ retry:
4934
+ after: 'retry-after'
4935
+ docs: https://docs.nango.dev/integrations/all/lemlist
4936
+ docs_connect: https://docs.nango.dev/integrations/all/lemlist/connect
4937
+ credentials:
4938
+ username:
4939
+ type: string
4940
+ title: ''
4941
+ description: ''
4942
+ default_value: ''
4943
+ hidden: true
4944
+ password:
4945
+ type: string
4946
+ title: API Key
4947
+ description: The API key for your Lemlist account
4948
+ secret: true
4949
+ example: a1b2c3d4e5f67890abcdefabcdefabcd
4950
+ pattern: '[a-f0-9]$'
4951
+ doc_section: '#step-1-generating-your-api-key'
4952
+
4717
4953
  lever:
4718
4954
  display_name: Lever (OAuth)
4719
4955
  categories:
@@ -4732,6 +4968,8 @@ lever:
4732
4968
  lever-basic:
4733
4969
  display_name: Lever (Basic Auth)
4734
4970
  auth_mode: BASIC
4971
+ categories:
4972
+ - ats
4735
4973
  proxy:
4736
4974
  base_url: https://api.lever.co
4737
4975
  docs: https://docs.nango.dev/integrations/all/lever-basic
@@ -4783,6 +5021,7 @@ lever-basic-sandbox:
4783
5021
  linear:
4784
5022
  display_name: Linear
4785
5023
  categories:
5024
+ - popular
4786
5025
  - productivity
4787
5026
  - ticketing
4788
5027
  auth_mode: OAUTH2
@@ -5177,6 +5416,10 @@ metabase:
5177
5416
  microsoft:
5178
5417
  display_name: Microsoft
5179
5418
  auth_mode: OAUTH2
5419
+ categories:
5420
+ - communication
5421
+ - dev-tools
5422
+ - productivity
5180
5423
  authorization_url: https://login.microsoftonline.com/common/oauth2/v2.0/authorize
5181
5424
  token_url: https://login.microsoftonline.com/common/oauth2/v2.0/token
5182
5425
  disable_pkce: true
@@ -5202,6 +5445,7 @@ microsoft-teams:
5202
5445
  categories:
5203
5446
  - productivity
5204
5447
  - video
5448
+ - popular
5205
5449
  alias: microsoft
5206
5450
  webhook_routing_script: microsoftTeamsWebhookRouting
5207
5451
  post_connection_script: microsoftTeamsPostConnection
@@ -5365,6 +5609,83 @@ minimax:
5365
5609
  description: The API key for securely accessing the MiniMax API.
5366
5610
  doc_section: '#step-2-generate-an-api-key'
5367
5611
 
5612
+ mip-cloud:
5613
+ display_name: MIP Cloud
5614
+ categories:
5615
+ - accounting
5616
+ auth_mode: TWO_STEP
5617
+ proxy:
5618
+ base_url: https://api.mip.com
5619
+ token_url: https://${connectionConfig.domain}/api/v1/sso/mipadv/login
5620
+ token_params:
5621
+ username: ${credentials.username}
5622
+ password: ${credentials.password}
5623
+ token_headers:
5624
+ content-type: application/json
5625
+ token_response:
5626
+ token: token
5627
+ docs: https://docs.nango.dev/integrations/all/mip-cloud
5628
+ docs_connect: https://docs.nango.dev/integrations/all/mip-cloud/connect
5629
+ credentials:
5630
+ username:
5631
+ type: string
5632
+ title: ID
5633
+ description: Your Login ID for MIP Fund Accounting
5634
+ password:
5635
+ type: string
5636
+ title: Password
5637
+ description: Your Password for MIP Fund Accounting.
5638
+ secret: true
5639
+ connection_config:
5640
+ domain:
5641
+ type: string
5642
+ title: HOST REST Service URL
5643
+ description: The rest service URL for the cloud-based API service
5644
+ prefix: https://
5645
+ suffix: /api/v1/sso/mipadv/login
5646
+ format: hostname
5647
+
5648
+ mip-on-premise:
5649
+ display_name: MIP On Premise
5650
+ categories:
5651
+ - accounting
5652
+ auth_mode: TWO_STEP
5653
+ proxy:
5654
+ base_url: https://api.mip.com
5655
+ token_url: https://${connectionConfig.domain}/api/security/login
5656
+ token_params:
5657
+ login: ${credentials.login}
5658
+ password: ${credentials.password}
5659
+ org: ${credentials.org}
5660
+ token_headers:
5661
+ content-type: application/json
5662
+ token_response:
5663
+ token: token
5664
+ docs: https://docs.nango.dev/integrations/all/mip-on-premise
5665
+ docs_connect: https://docs.nango.dev/integrations/all/mip-on-premise/connect
5666
+ credentials:
5667
+ login:
5668
+ type: string
5669
+ title: ID
5670
+ description: Your Login ID for MIP Fund Accounting
5671
+ password:
5672
+ type: string
5673
+ title: Password
5674
+ description: Your Password for MIP Fund Accounting.
5675
+ secret: true
5676
+ org:
5677
+ type: string
5678
+ title: ORG
5679
+ description: The MIP Fund Accounting database you will be using.
5680
+ connection_config:
5681
+ domain:
5682
+ type: string
5683
+ title: HOST REST Service URL
5684
+ description: The URL of your locally installed REST API server.
5685
+ prefix: https://
5686
+ suffix: /api/security/login
5687
+ format: hostname
5688
+
5368
5689
  mixpanel:
5369
5690
  display_name: Mixpanel
5370
5691
  categories:
@@ -5483,6 +5804,7 @@ netsuite:
5483
5804
  categories:
5484
5805
  - accounting
5485
5806
  - erp
5807
+ - popular
5486
5808
  auth_mode: OAUTH2
5487
5809
  authorization_url: https://${connectionConfig.accountId}.app.netsuite.com/app/login/oauth2/authorize.nl
5488
5810
  authorization_params:
@@ -5507,6 +5829,9 @@ netsuite-tba:
5507
5829
  alias: netsuite
5508
5830
  display_name: NetSuite (TBA)
5509
5831
  auth_mode: TBA
5832
+ categories:
5833
+ - accounting
5834
+ - erp
5510
5835
  docs: https://docs.nango.dev/integrations/all/netsuite-tba
5511
5836
 
5512
5837
  next-cloud-ocs:
@@ -5531,6 +5856,7 @@ notion:
5531
5856
  display_name: Notion
5532
5857
  categories:
5533
5858
  - knowledge-base
5859
+ - popular
5534
5860
  - productivity
5535
5861
  auth_mode: OAUTH2
5536
5862
  authorization_url: https://api.notion.com/v1/oauth/authorize
@@ -5648,6 +5974,8 @@ odoo-cc:
5648
5974
  okta:
5649
5975
  display_name: Okta
5650
5976
  auth_mode: OAUTH2
5977
+ categories:
5978
+ - dev-tools
5651
5979
  authorization_url: https://${connectionConfig.subdomain}.okta.com/oauth2/v1/authorize
5652
5980
  token_url: https://${connectionConfig.subdomain}.okta.com/oauth2/v1/token
5653
5981
  authorization_params:
@@ -5679,6 +6007,8 @@ okta:
5679
6007
  okta-preview:
5680
6008
  alias: okta
5681
6009
  display_name: Okta (Preview)
6010
+ categories:
6011
+ - dev-tools
5682
6012
  authorization_url: https://${connectionConfig.subdomain}.oktapreview.com/oauth2/v1/authorize
5683
6013
  token_url: https://${connectionConfig.subdomain}.oktapreview.com/oauth2/v1/token
5684
6014
  proxy:
@@ -5733,6 +6063,30 @@ openai:
5733
6063
  title: API Key
5734
6064
  description: The API key for your OpenAI account
5735
6065
  doc_section: '#step-1-retrieve-your-openai-api-key'
6066
+ openai-admin:
6067
+ display_name: OpenAI (Admin)
6068
+ categories:
6069
+ - productivity
6070
+ - dev-tools
6071
+ auth_mode: API_KEY
6072
+ proxy:
6073
+ base_url: https://api.openai.com
6074
+ headers:
6075
+ authorization: Bearer ${apiKey}
6076
+ content-type: application/json
6077
+ verification:
6078
+ method: GET
6079
+ endpoint: /v1/organization/users
6080
+ retry:
6081
+ after: 'x-ratelimit-reset-requests'
6082
+ docs: https://docs.nango.dev/integrations/all/openai-admin
6083
+ docs_connect: https://docs.nango.dev/integrations/all/openai-admin/connect
6084
+ credentials:
6085
+ apiKey:
6086
+ type: string
6087
+ title: Admin Key
6088
+ description: The Admin API key for your OpenAI account
6089
+ doc_section: '#step-1-retrieve-your-openai-admin-key'
5736
6090
 
5737
6091
  ory:
5738
6092
  display_name: Ory
@@ -6328,10 +6682,48 @@ qualtrics:
6328
6682
  suffix: .qualtrics.com
6329
6683
  prefix: https://
6330
6684
 
6685
+ quickbase:
6686
+ display_name: Quickbase
6687
+ categories:
6688
+ - productivity
6689
+ auth_mode: API_KEY
6690
+ proxy:
6691
+ base_url: https://api.quickbase.com/v1/
6692
+ headers:
6693
+ qb-realm-hostname: ${connectionConfig.domain}
6694
+ user-agent: ${connectionConfig.appDetails} || App (support@nango.dev)
6695
+ authorization: QB-USER-TOKEN ${apiKey}
6696
+ query:
6697
+ apiKey: ${apiKey}
6698
+ docs: https://docs.nango.dev/integrations/all/quickbase
6699
+ docs_connect: https://docs.nango.dev/integrations/all/quickbase/connect
6700
+ connection_config:
6701
+ domain:
6702
+ type: string
6703
+ title: Realm Hostname
6704
+ description: Your Quickbase Realm Hostname
6705
+ example: demo.quickbase.com
6706
+ format: hostname
6707
+ doc_section: '#step-1-finding-your-realm-hostname'
6708
+ appDetails:
6709
+ type: string
6710
+ title: App Details
6711
+ description: The details of your app
6712
+ automated: true
6713
+ credentials:
6714
+ apiKey:
6715
+ type: string
6716
+ title: User Token
6717
+ description: Your User Token
6718
+ pattern: '^[a-z0-9_-]+$'
6719
+ example: bb_aa_xxxxxx_xxxxxxxxxxxxxxxxx
6720
+ doc_section: '#step-2-finding-your-user-token'
6721
+
6331
6722
  quickbooks:
6332
6723
  display_name: Quickbooks
6333
6724
  categories:
6334
6725
  - accounting
6726
+ - popular
6335
6727
  auth_mode: OAUTH2
6336
6728
  authorization_url: https://appcenter.intuit.com/connect/oauth2
6337
6729
  token_url: https://oauth.platform.intuit.com/oauth2/v1/tokens/bearer
@@ -6612,6 +7004,24 @@ sage:
6612
7004
  base_url: https://api.accounting.sage.com
6613
7005
  docs: https://docs.nango.dev/integrations/all/sage
6614
7006
 
7007
+ sage-intacct-oauth:
7008
+ display_name: Sage Intacct (OAuth)
7009
+ categories:
7010
+ - accounting
7011
+ - erp
7012
+ auth_mode: OAUTH2
7013
+ authorization_url: https://api.intacct.com/ia/api/v1/oauth2/authorize
7014
+ token_url: https://api.intacct.com/ia/api/v1/oauth2/token
7015
+ authorization_params:
7016
+ response_type: code
7017
+ token_params:
7018
+ grant_type: authorization_code
7019
+ refresh_params:
7020
+ grant_type: refresh_token
7021
+ proxy:
7022
+ base_url: https://api.intacct.com/ia/api
7023
+ docs: https://docs.nango.dev/integrations/all/sage-intacct-oauth
7024
+
6615
7025
  sage-intacct:
6616
7026
  display_name: Sage Intacct
6617
7027
  categories:
@@ -6680,6 +7090,7 @@ salesforce:
6680
7090
  display_name: Salesforce
6681
7091
  categories:
6682
7092
  - crm
7093
+ - popular
6683
7094
  auth_mode: OAUTH2
6684
7095
  authorization_url: https://login.salesforce.com/services/oauth2/authorize
6685
7096
  token_url: https://login.salesforce.com/services/oauth2/token
@@ -7038,7 +7449,7 @@ servicenow:
7038
7449
  prefix: https://
7039
7450
 
7040
7451
  sharepoint-online:
7041
- display_name: SharePoint Online
7452
+ display_name: SharePoint Online (v2)
7042
7453
  categories:
7043
7454
  - storage
7044
7455
  - communication
@@ -7134,6 +7545,7 @@ shopify:
7134
7545
  display_name: Shopify (OAuth)
7135
7546
  categories:
7136
7547
  - e-commerce
7548
+ - popular
7137
7549
  auth_mode: OAUTH2
7138
7550
  authorization_url: https://${connectionConfig.subdomain}.myshopify.com/admin/oauth/authorize
7139
7551
  token_url: https://${connectionConfig.subdomain}.myshopify.com/admin/oauth/access_token
@@ -7234,6 +7646,7 @@ shortcut:
7234
7646
  slack:
7235
7647
  display_name: Slack
7236
7648
  categories:
7649
+ - popular
7237
7650
  - productivity
7238
7651
  auth_mode: OAUTH2
7239
7652
  authorization_url: https://slack.com/oauth/v2/authorize
@@ -8531,6 +8944,7 @@ xero:
8531
8944
  display_name: Xero
8532
8945
  categories:
8533
8946
  - accounting
8947
+ - popular
8534
8948
  auth_mode: OAUTH2
8535
8949
  authorization_url: https://login.xero.com/identity/connect/authorize
8536
8950
  token_url: https://identity.xero.com/connect/token
@@ -8651,6 +9065,7 @@ zapier-scim:
8651
9065
  zendesk:
8652
9066
  display_name: Zendesk
8653
9067
  categories:
9068
+ - popular
8654
9069
  - support
8655
9070
  - ticketing
8656
9071
  auth_mode: OAUTH2