@nangohq/providers 0.53.2 → 0.54.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.
- package/package.json +2 -2
- package/providers.yaml +182 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nangohq/providers",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.54.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.
|
|
14
|
+
"@nangohq/types": "0.54.0",
|
|
15
15
|
"vitest": "2.1.9"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
package/providers.yaml
CHANGED
|
@@ -241,6 +241,26 @@ airtable:
|
|
|
241
241
|
webhook_routing_script: airtableWebhookRouting
|
|
242
242
|
docs: https://docs.nango.dev/integrations/all/airtable
|
|
243
243
|
|
|
244
|
+
airtable-pat:
|
|
245
|
+
display_name: Airtable (Personal Access Token)
|
|
246
|
+
categories:
|
|
247
|
+
- productivity
|
|
248
|
+
auth_mode: API_KEY
|
|
249
|
+
proxy:
|
|
250
|
+
base_url: https://api.airtable.com
|
|
251
|
+
headers:
|
|
252
|
+
authorization: Bearer ${apiKey}
|
|
253
|
+
docs: https://docs.nango.dev/integrations/all/airtable-pat
|
|
254
|
+
docs_connect: https://docs.nango.dev/integrations/all/airtable-pat/connect
|
|
255
|
+
credentials:
|
|
256
|
+
apiKey:
|
|
257
|
+
type: string
|
|
258
|
+
title: Personal Access Token
|
|
259
|
+
description: The Personal Access Token for your Airtable account
|
|
260
|
+
example: 'patoXxYzA1B2C3D4Ef.98a7b6c5d4e3f2g1h0i9j8k7l6m5n4o3p2q1r0s9t8u7v6w5x4y3z2a1b0cdef'
|
|
261
|
+
pattern: '^[a-zA-Z0-9\.]+$'
|
|
262
|
+
doc_section: '#step-1-generating-your-personal-access-token'
|
|
263
|
+
|
|
244
264
|
autodesk:
|
|
245
265
|
display_name: Autodesk
|
|
246
266
|
categories:
|
|
@@ -319,6 +339,95 @@ amazon:
|
|
|
319
339
|
example: com
|
|
320
340
|
pattern: '^[a-z.]+$'
|
|
321
341
|
|
|
342
|
+
amazon-selling-partner:
|
|
343
|
+
display_name: Amazon Selling Partner
|
|
344
|
+
categories:
|
|
345
|
+
- dev-tools
|
|
346
|
+
- e-commerce
|
|
347
|
+
auth_mode: OAUTH2
|
|
348
|
+
authorization_url: https://${connectionConfig.domain}/authorize/consent
|
|
349
|
+
token_url: https://api.amazon.com/auth/o2/token
|
|
350
|
+
authorization_params:
|
|
351
|
+
application_id: ${connectionConfig.applicationId}
|
|
352
|
+
token_params:
|
|
353
|
+
grant_type: authorization_code
|
|
354
|
+
refresh_params:
|
|
355
|
+
grant_type: refresh_token
|
|
356
|
+
proxy:
|
|
357
|
+
base_url: https://sellingpartnerapi-${connectionConfig.region}.amazon.com
|
|
358
|
+
docs: https://docs.nango.dev/integrations/all/amazon-selling-partner
|
|
359
|
+
docs_connect: https://docs.nango.dev/integrations/all/amazon-selling-partner/connect
|
|
360
|
+
connection_config:
|
|
361
|
+
applicationId:
|
|
362
|
+
type: string
|
|
363
|
+
title: Application ID
|
|
364
|
+
description: The unique identifier for your Amazon Selling Partner application
|
|
365
|
+
example: 'amzn1.sellerapps.app.0bf296b5-36a6-4942-a13e-EXAMPLEfcd28'
|
|
366
|
+
pattern: '^[a-zA-Z0-9.-]+$'
|
|
367
|
+
doc_section: '#step-1-finding-your-app-id'
|
|
368
|
+
order: 1
|
|
369
|
+
domain:
|
|
370
|
+
type: string
|
|
371
|
+
title: Domain
|
|
372
|
+
description: The domain representing the Amazon platform you are integrating with
|
|
373
|
+
example: sellercentral.amazon.com
|
|
374
|
+
pattern: '^[a-z0-9.-]+\.amazon\.[a-z.]+$'
|
|
375
|
+
doc_section: '#step-2-finding-your-domain'
|
|
376
|
+
order: 2
|
|
377
|
+
region:
|
|
378
|
+
type: string
|
|
379
|
+
title: Proxy BaseUrl Region
|
|
380
|
+
description: The geographical region associated with the Amazon marketplace.
|
|
381
|
+
example: eu
|
|
382
|
+
pattern: '^[a-z]+$'
|
|
383
|
+
doc_section: '#step-3-finding-your-proxy-baseurl-region'
|
|
384
|
+
order: 3
|
|
385
|
+
|
|
386
|
+
amazon-selling-partner-beta:
|
|
387
|
+
display_name: Amazon Selling Partner (Beta)
|
|
388
|
+
categories:
|
|
389
|
+
- dev-tools
|
|
390
|
+
- e-commerce
|
|
391
|
+
auth_mode: OAUTH2
|
|
392
|
+
authorization_url: https://${connectionConfig.domain}/authorize/consent
|
|
393
|
+
token_url: https://api.amazon.com/auth/o2/token
|
|
394
|
+
authorization_params:
|
|
395
|
+
application_id: ${connectionConfig.applicationId}
|
|
396
|
+
version: beta
|
|
397
|
+
token_params:
|
|
398
|
+
grant_type: authorization_code
|
|
399
|
+
refresh_params:
|
|
400
|
+
grant_type: refresh_token
|
|
401
|
+
proxy:
|
|
402
|
+
base_url: https://sellingpartnerapi-${connectionConfig.region}.amazon.com
|
|
403
|
+
docs: https://docs.nango.dev/integrations/all/amazon-selling-partner-beta
|
|
404
|
+
docs_connect: https://docs.nango.dev/integrations/all/amazon-selling-partner-beta/connect
|
|
405
|
+
connection_config:
|
|
406
|
+
applicationId:
|
|
407
|
+
type: string
|
|
408
|
+
title: Application ID
|
|
409
|
+
description: The unique identifier for your Amazon Selling Partner application
|
|
410
|
+
example: 'amzn1.sellerapps.app.0bf296b5-36a6-4942-a13e-EXAMPLEfcd28'
|
|
411
|
+
pattern: '^[a-zA-Z0-9.-]+$'
|
|
412
|
+
doc_section: '#step-1-finding-your-app-id'
|
|
413
|
+
order: 1
|
|
414
|
+
domain:
|
|
415
|
+
type: string
|
|
416
|
+
title: Domain
|
|
417
|
+
description: The domain representing the Amazon platform you are integrating with
|
|
418
|
+
example: sellercentral.amazon.com
|
|
419
|
+
pattern: '^[a-z0-9.-]+\.amazon\.[a-z.]+$'
|
|
420
|
+
doc_section: '#step-2-finding-your-domain'
|
|
421
|
+
order: 2
|
|
422
|
+
region:
|
|
423
|
+
type: string
|
|
424
|
+
title: Proxy BaseUrl Region
|
|
425
|
+
description: The geographical region associated with the Amazon marketplace.
|
|
426
|
+
example: eu
|
|
427
|
+
pattern: '^[a-z]+$'
|
|
428
|
+
doc_section: '#step-3-finding-your-proxy-baseurl-region'
|
|
429
|
+
order: 3
|
|
430
|
+
|
|
322
431
|
anrok:
|
|
323
432
|
display_name: Anrok
|
|
324
433
|
categories:
|
|
@@ -461,6 +570,27 @@ apple-app-store:
|
|
|
461
570
|
base_url: https://api.appstoreconnect.apple.com
|
|
462
571
|
docs: https://docs.nango.dev/integrations/all/apple-app-store
|
|
463
572
|
|
|
573
|
+
appstle-subscriptions:
|
|
574
|
+
display_name: Appstle Subscriptions
|
|
575
|
+
categories:
|
|
576
|
+
- productivity
|
|
577
|
+
auth_mode: API_KEY
|
|
578
|
+
proxy:
|
|
579
|
+
base_url: https://subscription-admin.appstle.com
|
|
580
|
+
headers:
|
|
581
|
+
x-api-key: ${apiKey}
|
|
582
|
+
docs: https://docs.nango.dev/integrations/all/appstle-subscriptions
|
|
583
|
+
docs_connect: https://docs.nango.dev/integrations/all/appstle-subscriptions/connect
|
|
584
|
+
credentials:
|
|
585
|
+
apiKey:
|
|
586
|
+
type: string
|
|
587
|
+
title: API Key
|
|
588
|
+
description: Your Appstle Subscriptions API Key
|
|
589
|
+
secret: true
|
|
590
|
+
doc_section: '#step-1-finding-your-api-key'
|
|
591
|
+
example: lBfFAdbxUxyv6jYRgOmrEVNkijCKD10T
|
|
592
|
+
pattern: ^[a-zA-Z0-9]+$
|
|
593
|
+
|
|
464
594
|
asana:
|
|
465
595
|
display_name: Asana
|
|
466
596
|
categories:
|
|
@@ -3367,6 +3497,8 @@ guru-scim:
|
|
|
3367
3497
|
auth_mode: API_KEY
|
|
3368
3498
|
proxy:
|
|
3369
3499
|
base_url: https://api.getguru.com/api/scim
|
|
3500
|
+
headers:
|
|
3501
|
+
authorization: Bearer ${apiKey}
|
|
3370
3502
|
docs: https://docs.nango.dev/integrations/all/guru-scim
|
|
3371
3503
|
docs_connect: https://docs.nango.dev/integrations/all/guru-scim/connect
|
|
3372
3504
|
credentials:
|
|
@@ -3737,6 +3869,35 @@ gorgias:
|
|
|
3737
3869
|
suffix: .gorgias.com
|
|
3738
3870
|
prefix: https://
|
|
3739
3871
|
|
|
3872
|
+
gorgias-basic:
|
|
3873
|
+
display_name: Gorgias (Basic Auth)
|
|
3874
|
+
auth_mode: BASIC
|
|
3875
|
+
categories:
|
|
3876
|
+
- e-commerce
|
|
3877
|
+
proxy:
|
|
3878
|
+
base_url: https://${connectionConfig.subdomain}.gorgias.com/api
|
|
3879
|
+
docs: https://docs.nango.dev/integrations/all/gorgias-basic
|
|
3880
|
+
docs_connect: https://docs.nango.dev/integrations/all/gorgias-basic/connect
|
|
3881
|
+
credentials:
|
|
3882
|
+
username:
|
|
3883
|
+
type: string
|
|
3884
|
+
title: Username
|
|
3885
|
+
description: Your Gorgias account Username
|
|
3886
|
+
password:
|
|
3887
|
+
type: string
|
|
3888
|
+
title: API Key
|
|
3889
|
+
description: Your Gorgias API Key
|
|
3890
|
+
default_value: ''
|
|
3891
|
+
doc_section: '#step-1-finding-gorgias-api-key-secret'
|
|
3892
|
+
connection_config:
|
|
3893
|
+
subdomain:
|
|
3894
|
+
type: string
|
|
3895
|
+
title: Gorgias Domain
|
|
3896
|
+
description: The subdomain of your Gorgias account
|
|
3897
|
+
pattern: '^[a-z0-9_-]+$'
|
|
3898
|
+
prefix: https://
|
|
3899
|
+
order: 1
|
|
3900
|
+
|
|
3740
3901
|
grafana:
|
|
3741
3902
|
display_name: Grafana
|
|
3742
3903
|
categories:
|
|
@@ -5507,6 +5668,9 @@ netsuite-tba:
|
|
|
5507
5668
|
alias: netsuite
|
|
5508
5669
|
display_name: NetSuite (TBA)
|
|
5509
5670
|
auth_mode: TBA
|
|
5671
|
+
categories:
|
|
5672
|
+
- accounting
|
|
5673
|
+
- erp
|
|
5510
5674
|
docs: https://docs.nango.dev/integrations/all/netsuite-tba
|
|
5511
5675
|
|
|
5512
5676
|
next-cloud-ocs:
|
|
@@ -6612,6 +6776,24 @@ sage:
|
|
|
6612
6776
|
base_url: https://api.accounting.sage.com
|
|
6613
6777
|
docs: https://docs.nango.dev/integrations/all/sage
|
|
6614
6778
|
|
|
6779
|
+
sage-intacct-oauth:
|
|
6780
|
+
display_name: Sage Intacct (OAuth)
|
|
6781
|
+
categories:
|
|
6782
|
+
- accounting
|
|
6783
|
+
- erp
|
|
6784
|
+
auth_mode: OAUTH2
|
|
6785
|
+
authorization_url: https://api.intacct.com/ia/api/v1/oauth2/authorize
|
|
6786
|
+
token_url: https://api.intacct.com/ia/api/v1/oauth2/token
|
|
6787
|
+
authorization_params:
|
|
6788
|
+
response_type: code
|
|
6789
|
+
token_params:
|
|
6790
|
+
grant_type: authorization_code
|
|
6791
|
+
refresh_params:
|
|
6792
|
+
grant_type: refresh_token
|
|
6793
|
+
proxy:
|
|
6794
|
+
base_url: https://api.intacct.com/ia/api
|
|
6795
|
+
docs: https://docs.nango.dev/integrations/all/sage-intacct-oauth
|
|
6796
|
+
|
|
6615
6797
|
sage-intacct:
|
|
6616
6798
|
display_name: Sage Intacct
|
|
6617
6799
|
categories:
|