@nangohq/providers 0.69.46 → 0.69.47

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 +346 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.69.46",
3
+ "version": "0.69.47",
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.46",
19
+ "@nangohq/types": "0.69.47",
20
20
  "vitest": "3.2.4"
21
21
  },
22
22
  "files": [
package/providers.yaml CHANGED
@@ -808,36 +808,49 @@ amazon-selling-partner:
808
808
  redirect_uri_metadata:
809
809
  - selling_partner_id
810
810
  proxy:
811
- base_url: https://sellingpartnerapi-${connectionConfig.region}.amazon.com
811
+ base_url: https://${connectionConfig.subdomain}-${connectionConfig.region}.amazon.com || https://sellingpartnerapi-${connectionConfig.region}.amazon.com
812
812
  headers:
813
813
  x-amz-access-token: ${accessToken}
814
- docs: https://nango.dev/docs/integrations/all/amazon-selling-partner
815
- docs_connect: https://nango.dev/docs/integrations/all/amazon-selling-partner/connect
814
+ docs: https://nango.dev/docs/api-integrations/amazon-selling-partner
815
+ docs_connect: https://nango.dev/docs/api-integrations/amazon-selling-partner/connect
816
+ setup_guide_url: https://nango.dev/docs/api-integrations/amazon-selling-partner/how-to-register-your-own-amazon-selling-partner-api-oauth-app
816
817
  connection_config:
817
818
  applicationId:
818
819
  type: string
819
820
  title: Application ID
820
- description: The unique identifier for your Amazon Selling Partner application
821
+ description: The unique identifier for your Amazon Selling Partner application.
821
822
  example: 'amzn1.sellerapps.app.0bf296b5-36a6-4942-a13e-EXAMPLEfcd28'
822
823
  pattern: '^[a-zA-Z0-9.-]+$'
823
824
  doc_section: '#step-1-finding-your-app-id'
824
825
  order: 1
825
826
  domain:
826
827
  type: string
827
- title: Domain
828
- description: The domain representing the Amazon platform you are integrating with
828
+ title: Authorization Domain
829
+ description: The domain representing the Amazon platform you are integrating with.
829
830
  example: sellercentral.amazon.com
830
831
  pattern: '^[a-z0-9.-]+\.amazon\.[a-z.]+$'
831
- doc_section: '#step-2-finding-your-domain'
832
+ prefix: https://
833
+ suffix: /apps
834
+ doc_section: '#step-2-finding-your-authorization-domain'
832
835
  order: 2
836
+ subdomain:
837
+ type: string
838
+ title: Proxy BaseUrl Subdomain
839
+ description: The subdomain prefix for the Amazon Selling Partner API endpoint.
840
+ example: sellingpartnerapi
841
+ pattern: '^(sandbox\.)?sellingpartnerapi$'
842
+ prefix: https://
843
+ doc_section: '#step-3-finding-your-proxy-baseurl-subdomain'
844
+ order: 3
833
845
  region:
834
846
  type: string
835
847
  title: Proxy BaseUrl Region
836
848
  description: The geographical region associated with the Amazon marketplace.
837
849
  example: eu
838
850
  pattern: '^[a-z]+$'
839
- doc_section: '#step-3-finding-your-proxy-baseurl-region'
840
- order: 3
851
+ suffix: .amazon.com
852
+ doc_section: '#step-4-finding-your-proxy-baseurl-region'
853
+ order: 4
841
854
 
842
855
  amazon-selling-partner-beta:
843
856
  display_name: Amazon Selling Partner (Beta)
@@ -862,13 +875,14 @@ amazon-selling-partner-beta:
862
875
  base_url: https://sandbox.sellingpartnerapi-${connectionConfig.region}.amazon.com
863
876
  headers:
864
877
  x-amz-access-token: ${accessToken}
865
- docs: https://nango.dev/docs/integrations/all/amazon-selling-partner-beta
866
- docs_connect: https://nango.dev/docs/integrations/all/amazon-selling-partner-beta/connect
878
+ docs: https://nango.dev/docs/api-integrations/amazon-selling-partner-beta
879
+ docs_connect: https://nango.dev/docs/api-integrations/amazon-selling-partner-beta/connect
880
+ setup_guide_url: https://nango.dev/docs/api-integrations/amazon-selling-partner-beta/how-to-register-your-own-amazon-selling-partner-beta-api-oauth-app
867
881
  connection_config:
868
882
  applicationId:
869
883
  type: string
870
884
  title: Application ID
871
- description: The unique identifier for your Amazon Selling Partner application
885
+ description: The unique identifier for your Amazon Selling Partner application.
872
886
  example: 'amzn1.sellerapps.app.0bf296b5-36a6-4942-a13e-EXAMPLEfcd28'
873
887
  pattern: '^[a-zA-Z0-9.-]+$'
874
888
  doc_section: '#step-1-finding-your-app-id'
@@ -876,10 +890,12 @@ amazon-selling-partner-beta:
876
890
  domain:
877
891
  type: string
878
892
  title: Domain
879
- description: The domain representing the Amazon platform you are integrating with
893
+ description: The domain representing the Amazon platform you are integrating with.
880
894
  example: sellercentral.amazon.com
881
895
  pattern: '^[a-z0-9.-]+\.amazon\.[a-z.]+$'
882
- doc_section: '#step-2-finding-your-domain'
896
+ prefix: https://
897
+ suffix: /apps
898
+ doc_section: '#step-2-finding-your-authorization-domain'
883
899
  order: 2
884
900
  region:
885
901
  type: string
@@ -887,6 +903,8 @@ amazon-selling-partner-beta:
887
903
  description: The geographical region associated with the Amazon marketplace.
888
904
  example: eu
889
905
  pattern: '^[a-z]+$'
906
+ prefix: https://sandbox.sellingpartnerapi-
907
+ suffix: .amazon.com
890
908
  doc_section: '#step-3-finding-your-proxy-baseurl-region'
891
909
  order: 3
892
910
 
@@ -2222,6 +2240,33 @@ bettercontact:
2222
2240
  pattern: '^[a-z0-9]+$'
2223
2241
  doc_section: '#step-1-generating-your-api-key'
2224
2242
 
2243
+ bliro:
2244
+ display_name: Bliro
2245
+ categories:
2246
+ - communication
2247
+ auth_mode: OAUTH2_CC
2248
+ body_format: json
2249
+ token_url: https://accounts.bliro.io/oauth/token
2250
+ token_params:
2251
+ grant_type: client_credentials
2252
+ audience: https://api.bliro.io
2253
+ proxy:
2254
+ base_url: https://api.bliro.io
2255
+ docs: https://nango.dev/docs/api-integrations/bliro
2256
+ docs_connect: https://nango.dev/docs/api-integrations/bliro/connect
2257
+ credentials:
2258
+ client_id:
2259
+ type: string
2260
+ title: Client ID
2261
+ description: Your Bliro client application Client ID.
2262
+ doc_section: '#step-1-creating-a-client-application'
2263
+ client_secret:
2264
+ type: string
2265
+ title: Client Secret
2266
+ description: Your Bliro client application Client Secret.
2267
+ secret: true
2268
+ doc_section: '#step-1-creating-a-client-application'
2269
+
2225
2270
  bigcommerce:
2226
2271
  display_name: BigCommerce
2227
2272
  categories:
@@ -3460,6 +3505,41 @@ clari-copilot:
3460
3505
  title: API Key
3461
3506
  description: The API key for your Clari Copilot account
3462
3507
 
3508
+ clay:
3509
+ display_name: Clay
3510
+ categories:
3511
+ - crm
3512
+ - marketing
3513
+ auth_mode: API_KEY
3514
+ proxy:
3515
+ base_url: https://api.clay.com
3516
+ headers:
3517
+ authorization: ${apiKey}
3518
+ verification:
3519
+ method: GET
3520
+ endpoints:
3521
+ - /v3/my-workspaces
3522
+ connection_config:
3523
+ workspaceId: ${connectionConfig.workspaceId}
3524
+ docs: https://nango.dev/docs/api-integrations/clay
3525
+ docs_connect: https://nango.dev/docs/api-integrations/clay/connect
3526
+ connection_config:
3527
+ workspaceId:
3528
+ type: string
3529
+ title: Workspace ID
3530
+ description: The ID of your Clay workspace.
3531
+ example: '10608232'
3532
+ pattern: '^\d+$'
3533
+ doc_section: '#step-2-finding-your-workspace-id'
3534
+ credentials:
3535
+ apiKey:
3536
+ type: string
3537
+ title: API Key
3538
+ description: The API key for your Clay account.
3539
+ example: 7de4ba****e439d39****
3540
+ pattern: '^[a-f0-9]+$'
3541
+ doc_section: '#step-1-finding-your-api-key'
3542
+
3463
3543
  cleverreach:
3464
3544
  display_name: CleverReach
3465
3545
  categories:
@@ -3520,6 +3600,37 @@ clickup:
3520
3600
  docs: https://nango.dev/docs/api-integrations/clickup
3521
3601
  setup_guide_url: https://nango.dev/docs/api-integrations/clickup/how-to-register-your-own-clickup-api-oauth-app
3522
3602
 
3603
+ clio:
3604
+ display_name: Clio
3605
+ categories:
3606
+ - legal
3607
+ auth_mode: OAUTH2
3608
+ authorization_url: https://${connectionConfig.hostname}/oauth/authorize
3609
+ token_url: https://${connectionConfig.hostname}/oauth/token
3610
+ authorization_params:
3611
+ response_type: code
3612
+ token_params:
3613
+ grant_type: authorization_code
3614
+ refresh_params:
3615
+ grant_type: refresh_token
3616
+ proxy:
3617
+ base_url: https://${connectionConfig.hostname}
3618
+ docs: https://nango.dev/docs/api-integrations/clio
3619
+ docs_connect: https://nango.dev/docs/api-integrations/clio/connect
3620
+ setup_guide_url: https://nango.dev/docs/api-integrations/clio/how-to-register-your-own-clio-api-oauth-app
3621
+ connection_config:
3622
+ hostname:
3623
+ type: string
3624
+ title: Hostname
3625
+ description: The hostname for your Clio region (e.g. app.clio.com for US, eu.app.clio.com for EU, ca.app.clio.com for CA, au.app.clio.com for AU)
3626
+ example: app.clio.com
3627
+ default_value: app.clio.com
3628
+ format: hostname
3629
+ pattern: '^(app\.clio\.com|eu\.app\.clio\.com|ca\.app\.clio\.com|au\.app\.clio\.com)$'
3630
+ prefix: https://
3631
+ order: 1
3632
+ doc_section: '#step-1-finding-your-hostname'
3633
+
3523
3634
  cloudbeds:
3524
3635
  display_name: Cloudbeds
3525
3636
  categories:
@@ -4044,6 +4155,28 @@ connectwise-rmm:
4044
4155
  pattern: '^[A-Za-z0-9._~+/=-]{8,}$'
4045
4156
  doc_section: '#step-2-create-api-credentials'
4046
4157
 
4158
+ conta-azul:
4159
+ display_name: Conta Azul
4160
+ categories:
4161
+ - accounting
4162
+ - erp
4163
+ auth_mode: OAUTH2
4164
+ authorization_url: https://auth.contaazul.com/login
4165
+ token_url: https://auth.contaazul.com/oauth2/token
4166
+ token_request_auth_method: basic
4167
+ authorization_params:
4168
+ response_type: code
4169
+ token_params:
4170
+ grant_type: authorization_code
4171
+ refresh_params:
4172
+ grant_type: refresh_token
4173
+ scope_separator: ' '
4174
+ proxy:
4175
+ base_url: https://api-v2.contaazul.com
4176
+ disable_pkce: true
4177
+ docs: https://nango.dev/docs/api-integrations/conta-azul
4178
+ setup_guide_url: https://nango.dev/docs/api-integrations/conta-azul/how-to-register-your-own-conta-azul-api-oauth-app
4179
+
4047
4180
  confluence:
4048
4181
  display_name: Confluence
4049
4182
  categories:
@@ -6402,6 +6535,33 @@ front:
6402
6535
  link_path_in_response_body: _pagination.next
6403
6536
  docs: https://nango.dev/docs/integrations/all/front
6404
6537
 
6538
+ front-api-key:
6539
+ display_name: Front (API Key)
6540
+ categories:
6541
+ - support
6542
+ - ticketing
6543
+ auth_mode: API_KEY
6544
+ proxy:
6545
+ base_url: https://api2.frontapp.com
6546
+ headers:
6547
+ authorization: Bearer ${apiKey}
6548
+ retry:
6549
+ after:
6550
+ - 'retry-after'
6551
+ verification:
6552
+ method: GET
6553
+ endpoints:
6554
+ - /me
6555
+ docs: https://nango.dev/docs/api-integrations/front-api-key
6556
+ docs_connect: https://nango.dev/docs/api-integrations/front-api-key/connect
6557
+ credentials:
6558
+ apiKey:
6559
+ type: string
6560
+ title: API Token
6561
+ description: Your Front API token.
6562
+ example: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.****
6563
+ doc_section: '#step-1-finding-your-api-token'
6564
+
6405
6565
  fullenrich:
6406
6566
  display_name: FullEnrich
6407
6567
  categories:
@@ -7189,6 +7349,16 @@ google-calendar:
7189
7349
  docs: https://nango.dev/docs/api-integrations/google-calendar
7190
7350
  setup_guide_url: https://nango.dev/docs/api-integrations/google-calendar/how-to-register-your-own-google-calendar-api-oauth-app
7191
7351
 
7352
+ google-contacts:
7353
+ display_name: Google Contacts
7354
+ categories:
7355
+ - productivity
7356
+ alias: google
7357
+ proxy:
7358
+ base_url: https://people.googleapis.com
7359
+ docs: https://nango.dev/docs/api-integrations/google-contacts
7360
+ setup_guide_url: https://nango.dev/docs/api-integrations/google-contacts/how-to-register-your-own-google-contacts-api-oauth-app
7361
+
7192
7362
  google-chat:
7193
7363
  display_name: Google Chat
7194
7364
  alias: google
@@ -8097,6 +8267,53 @@ heygen:
8097
8267
  docs: https://nango.dev/docs/api-integrations/heygen
8098
8268
  setup_guide_url: https://nango.dev/docs/api-integrations/heygen/how-to-register-your-own-heygen-oauth-app
8099
8269
 
8270
+ heymarket:
8271
+ display_name: Heymarket
8272
+ categories:
8273
+ - communication
8274
+ - marketing
8275
+ auth_mode: JWT
8276
+ signature:
8277
+ protocol: HMAC
8278
+ hmac_secret_encoding: utf8
8279
+ token:
8280
+ signing_key: ${credentials.apiSecretId}||${credentials.apiSecretKey}
8281
+ expires_in_ms: 300000
8282
+ header:
8283
+ alg: HS256
8284
+ typ: JWT
8285
+ payload:
8286
+ iss: ${credentials.apiSecretId}
8287
+ proxy:
8288
+ base_url: https://api.heymarket.com
8289
+ headers:
8290
+ accept: application/json
8291
+ authorization: Bearer ${accessToken}
8292
+ verification:
8293
+ method: GET
8294
+ headers:
8295
+ accept: application/json
8296
+ endpoints:
8297
+ - /v1/team
8298
+ docs: https://nango.dev/docs/api-integrations/heymarket
8299
+ docs_connect: https://nango.dev/docs/api-integrations/heymarket/connect
8300
+ credentials:
8301
+ apiSecretId:
8302
+ type: string
8303
+ title: API Secret ID
8304
+ description: Your Heymarket API Secret ID.
8305
+ example: a0ee0000-0000-4000-8000-00000000abcd
8306
+ format: uuid
8307
+ doc_section: '#step-1-finding-your-api-secret-id-and-secret-key'
8308
+ apiSecretKey:
8309
+ type: string
8310
+ title: API Secret Key
8311
+ description: Your Heymarket API Secret Key.
8312
+ secret: true
8313
+ example: Aa0***Cc2***Ee4***Gg6***Ii8***Kk0
8314
+ pattern: ^[A-Za-z0-9]+$
8315
+ doc_section: '#step-1-finding-your-api-secret-id-and-secret-key'
8316
+
8100
8317
  highlevel:
8101
8318
  display_name: HighLevel
8102
8319
  categories:
@@ -9444,6 +9661,37 @@ lever-basic-sandbox:
9444
9661
  default_value: ''
9445
9662
  hidden: true
9446
9663
 
9664
+ lightspeed-retail:
9665
+ display_name: Lightspeed Retail (X-Series)
9666
+ categories:
9667
+ - e-commerce
9668
+ auth_mode: OAUTH2
9669
+ authorization_url: https://secure.retail.lightspeed.app/connect
9670
+ token_url: https://${connectionConfig.domain_prefix}.retail.lightspeed.app/api/1.0/token
9671
+ scope_separator: ' '
9672
+ authorization_params:
9673
+ response_type: code
9674
+ token_params:
9675
+ grant_type: authorization_code
9676
+ refresh_params:
9677
+ grant_type: refresh_token
9678
+ redirect_uri_metadata:
9679
+ - domain_prefix
9680
+ disable_pkce: true
9681
+ proxy:
9682
+ base_url: https://${connectionConfig.domain_prefix}.retail.lightspeed.app
9683
+ retry:
9684
+ at:
9685
+ - 'x-ratelimit-reset'
9686
+ docs: https://nango.dev/docs/api-integrations/lightspeed-retail
9687
+ setup_guide_url: https://nango.dev/docs/api-integrations/lightspeed-retail/how-to-register-your-own-lightspeed-retail-api-oauth-app
9688
+ connection_config:
9689
+ domain_prefix:
9690
+ type: string
9691
+ title: ''
9692
+ description: ''
9693
+ automated: true
9694
+
9447
9695
  linear:
9448
9696
  display_name: Linear
9449
9697
  categories:
@@ -13534,6 +13782,31 @@ replicate:
13534
13782
  title: API Key
13535
13783
  description: The API key for your Replicate account
13536
13784
 
13785
+ reply-io:
13786
+ display_name: Reply.io
13787
+ categories:
13788
+ - marketing
13789
+ - communication
13790
+ auth_mode: API_KEY
13791
+ proxy:
13792
+ base_url: https://api.reply.io
13793
+ headers:
13794
+ x-api-key: ${apiKey}
13795
+ verification:
13796
+ method: GET
13797
+ endpoints:
13798
+ - /v1/campaigns
13799
+ docs: https://nango.dev/docs/api-integrations/reply-io
13800
+ docs_connect: https://nango.dev/docs/api-integrations/reply-io/connect
13801
+ credentials:
13802
+ apiKey:
13803
+ type: string
13804
+ title: API Key
13805
+ description: The API key for your Reply.io account.
13806
+ example: AKp2Bbuy****************
13807
+ pattern: '^[A-Za-z0-9_-]+$'
13808
+ doc_section: '#step-1-finding-your-api-key'
13809
+
13537
13810
  researchdesk:
13538
13811
  display_name: ResearchDesk
13539
13812
  categories:
@@ -14054,6 +14327,35 @@ salesforce:
14054
14327
  optional: true
14055
14328
  doc_section: '#step-1-finding-your-hostname'
14056
14329
 
14330
+ salesforce-cc:
14331
+ display_name: Salesforce (Client Credentials)
14332
+ categories:
14333
+ - crm
14334
+ auth_mode: OAUTH2_CC
14335
+ token_url: https://${connectionConfig.hostname}/services/oauth2/token
14336
+ token_params:
14337
+ grant_type: client_credentials
14338
+ token_response_metadata:
14339
+ - instance_url
14340
+ proxy:
14341
+ base_url: ${connectionConfig.instance_url}
14342
+ docs: https://nango.dev/docs/api-integrations/salesforce-cc
14343
+ docs_connect: https://nango.dev/docs/api-integrations/salesforce-cc/connect
14344
+ token_expires_in_ms: 0
14345
+ connection_config:
14346
+ instance_url:
14347
+ type: string
14348
+ title: ''
14349
+ description: ''
14350
+ automated: true
14351
+ hostname:
14352
+ type: string
14353
+ title: Hostname
14354
+ description: The hostname to your Salesforce instance
14355
+ format: hostname
14356
+ example: acme.my.salesforce.com
14357
+ prefix: https://
14358
+
14057
14359
  salesforce-jwt:
14058
14360
  display_name: Salesforce (JWT)
14059
14361
  categories:
@@ -15296,6 +15598,7 @@ shopworks:
15296
15598
  content-type: application/json
15297
15599
  token_response:
15298
15600
  token: id_token
15601
+ token_expires_in_ms: 3600000
15299
15602
  proxy:
15300
15603
  base_url: https://${connectionConfig.hostname}
15301
15604
  headers:
@@ -16767,6 +17070,35 @@ todoist:
16767
17070
  base_url: https://api.todoist.com
16768
17071
  docs: https://nango.dev/docs/integrations/all/todoist
16769
17072
 
17073
+ toggl:
17074
+ display_name: Toggl Track
17075
+ categories:
17076
+ - productivity
17077
+ auth_mode: BASIC
17078
+ proxy:
17079
+ base_url: https://api.track.toggl.com
17080
+ verification:
17081
+ method: GET
17082
+ endpoints:
17083
+ - /api/v9/me
17084
+ retry:
17085
+ after:
17086
+ - 'x-toggl-quota-resets-in'
17087
+ docs: https://nango.dev/docs/api-integrations/toggl
17088
+ docs_connect: https://nango.dev/docs/api-integrations/toggl/connect
17089
+ credentials:
17090
+ username:
17091
+ type: string
17092
+ title: Email or API token
17093
+ description: Your Toggl Track account email, or your API token when using token-based Basic Auth.
17094
+ doc_section: '#step-1-choose-emailpassword-or-api-token'
17095
+ password:
17096
+ type: string
17097
+ title: Password or api_token
17098
+ description: Your Toggl Track account password, or the literal text api_token when authenticating with an API token.
17099
+ secret: true
17100
+ doc_section: '#step-1-choose-emailpassword-or-api-token'
17101
+
16770
17102
  torii:
16771
17103
  display_name: Torii
16772
17104
  categories: