@nangohq/providers 0.66.0 → 0.66.1

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 +277 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.66.0",
3
+ "version": "0.66.1",
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.66.0",
14
+ "@nangohq/types": "0.66.1",
15
15
  "vitest": "3.2.4"
16
16
  },
17
17
  "files": [
package/providers.yaml CHANGED
@@ -352,6 +352,53 @@ autodesk:
352
352
  after: 'retry-after'
353
353
  docs: https://docs.nango.dev/integrations/all/autodesk
354
354
 
355
+ autotask:
356
+ display_name: AutoTask
357
+ categories:
358
+ - support
359
+ - ticketing
360
+ auth_mode: API_KEY
361
+ proxy:
362
+ base_url: https://${connectionConfig.subdomain}.autotask.net/atservicesrest
363
+ headers:
364
+ apiintegrationcode: ${connectionConfig.apiIntegrationCode}
365
+ username: ${connectionConfig.username}
366
+ secret: ${apiKey}
367
+ verification:
368
+ method: GET
369
+ endpoints:
370
+ - /v1.0/Companies/entityinformation
371
+ docs: https://docs.nango.dev/integrations/all/autotask
372
+ docs_connect: https://docs.nango.dev/integrations/all/autotask/connect
373
+ connection_config:
374
+ subdomain:
375
+ type: string
376
+ title: AutoTask API Zone
377
+ description: The zone subdomain for your Autotask instance (e.g., webservices3, webservices1, etc.)
378
+ example: webservices3
379
+ doc_section: '#step-1-finding-your-autotask-api-zone'
380
+ apiIntegrationCode:
381
+ type: string
382
+ title: API Integration Code
383
+ description: The tracking identifier assigned to your API-only user (27-character string)
384
+ example: ASHJKLFDKAHKASLFH85LSA905H
385
+ pattern: '^[a-zA-Z0-9]+$'
386
+ doc_section: '#step-3-configure-the-api-user'
387
+ username:
388
+ type: string
389
+ title: API Username
390
+ description: The email address of your API-only user account
391
+ example: apiuser@example.com
392
+ format: email
393
+ doc_section: '#step-3-configure-the-api-user'
394
+ credentials:
395
+ apiKey:
396
+ type: string
397
+ title: API Secret
398
+ pattern: '^[A-Za-z0-9@#$~*]+$'
399
+ description: The secret for your API-only user account
400
+ doc_section: '#step-4-generate-api-secret'
401
+
355
402
  algolia:
356
403
  display_name: Algolia
357
404
  categories:
@@ -3754,6 +3801,31 @@ factorial:
3754
3801
  base_url: https://api.factorialhr.com/api
3755
3802
  docs: https://docs.nango.dev/integrations/all/factorial
3756
3803
 
3804
+ fairing:
3805
+ display_name: Fairing
3806
+ categories:
3807
+ - marketing
3808
+ - analytics
3809
+ auth_mode: API_KEY
3810
+ proxy:
3811
+ base_url: https://app.fairing.co/api
3812
+ headers:
3813
+ authorization: ${apiKey}
3814
+ verification:
3815
+ method: GET
3816
+ endpoints:
3817
+ - /questions
3818
+ docs: https://docs.nango.dev/integrations/all/fairing
3819
+ docs_connect: https://docs.nango.dev/integrations/all/fairing/connect
3820
+ credentials:
3821
+ apiKey:
3822
+ type: string
3823
+ title: Secret Token
3824
+ description: The Secret Token for your Fairing account
3825
+ pattern: '^[A-Za-z0-9_-]{64}$'
3826
+ example: '3UjYpDjuk70Lt7AxC4M1x_7XvxoxkeX-OV7uTahJowilqLb2eLLvrtlvCGZgku1q'
3827
+ doc_section: '#step-1-finding-your-secret-token'
3828
+
3757
3829
  facebook:
3758
3830
  display_name: Facebook
3759
3831
  categories:
@@ -5317,6 +5389,39 @@ health-gorilla:
5317
5389
  base_url: https://healthgorilla.com
5318
5390
  docs: https://docs.nango.dev/integrations/all/health-gorilla
5319
5391
 
5392
+ heap:
5393
+ display_name: Heap
5394
+ categories:
5395
+ - other
5396
+ auth_mode: TWO_STEP
5397
+ proxy:
5398
+ base_url: https://heapanalytics.com/api
5399
+ token_url: https://heapanalytics.com/api/public/v0/auth_token
5400
+ token_headers:
5401
+ authorization: Basic ${base64(${credentials.appId}:${credentials.apiKey})}
5402
+ token_response:
5403
+ token: access_token
5404
+ token_expiration: expires_in
5405
+ token_expiration_strategy: expireIn
5406
+ docs: https://docs.nango.dev/integrations/all/heap
5407
+ docs_connect: https://docs.nango.dev/integrations/all/heap/connect
5408
+ credentials:
5409
+ appId:
5410
+ type: string
5411
+ title: App ID
5412
+ description: Your Heap application ID
5413
+ example: '3207896401'
5414
+ pattern: '^\d+$'
5415
+ doc_section: '#step-1-generating-your-api-key-and-app-id'
5416
+ apiKey:
5417
+ type: string
5418
+ title: API Key
5419
+ description: Your Heap API Key
5420
+ secret: true
5421
+ example: 1bc32cba-a5d6-438a-bbcc-af312f560a3c
5422
+ format: uuid
5423
+ doc_section: '#step-1-generating-your-api-key-and-app-id'
5424
+
5320
5425
  hibob-service-user:
5321
5426
  display_name: Hibob Service User
5322
5427
  categories:
@@ -5614,26 +5719,23 @@ jazzhr:
5614
5719
  display_name: JazzHR
5615
5720
  categories:
5616
5721
  - hr
5617
- auth_mode: CUSTOM
5722
+ auth_mode: API_KEY
5618
5723
  proxy:
5619
- base_url: https://api.resumatorapi.com/
5724
+ base_url: https://api.resumatorapi.com
5620
5725
  verification:
5621
5726
  method: GET
5622
5727
  endpoints:
5623
- - /users?apikey=${connectionConfig.apiKey}
5624
- base_url_override: https://api.resumatorapi.com/v1
5728
+ - /v1/users?apikey=${credentials.apiKey}
5625
5729
  query:
5626
- apikey: ${connectionConfig.apiKey}
5730
+ apikey: ${apiKey}
5627
5731
  docs: https://docs.nango.dev/integrations/all/jazzhr
5628
5732
  docs_connect: https://docs.nango.dev/integrations/all/jazzhr/connect
5629
- connection_config:
5733
+ credentials:
5630
5734
  apiKey:
5631
5735
  type: string
5632
5736
  title: API Key
5633
5737
  description: Your JazzHR API Key
5634
- pattern: '^[a-zA-Z0-9]+$'
5635
5738
  doc_section: '#step-1-finding-your-api-key'
5636
- optional: false
5637
5739
 
5638
5740
  jira:
5639
5741
  display_name: Jira (OAuth)
@@ -5865,6 +5967,30 @@ jotform:
5865
5967
  title: API Key
5866
5968
  description: The API key for your Jotform account
5867
5969
 
5970
+ jumpcloud:
5971
+ display_name: JumpCloud
5972
+ categories:
5973
+ - other
5974
+ auth_mode: API_KEY
5975
+ proxy:
5976
+ base_url: https://console.jumpcloud.com/api
5977
+ headers:
5978
+ x-api-key: ${apiKey}
5979
+ verification:
5980
+ method: GET
5981
+ endpoints:
5982
+ - /organizations
5983
+ docs: https://docs.nango.dev/integrations/all/jumpcloud
5984
+ docs_connect: https://docs.nango.dev/integrations/all/jumpcloud/connect
5985
+ credentials:
5986
+ apiKey:
5987
+ type: string
5988
+ title: API Key
5989
+ description: Your JumpCloud API Key.
5990
+ example: jca_9mK4pL2xR8vN6qW1sT7uY3eA5bC9dF0hG2jM
5991
+ pattern: '^[A-Za-z0-9_-]+$'
5992
+ doc_section: '#step-1-generate-your-jumpcloud-api-key'
5993
+
5868
5994
  helpscout-docs:
5869
5995
  display_name: Help Scout Docs
5870
5996
  auth_mode: BASIC
@@ -7703,6 +7829,80 @@ paychex:
7703
7829
  description: A confidential key used to authenticate the identity of application (client)
7704
7830
  doc_section: '#step-1-generating-your-client-credentials'
7705
7831
 
7832
+ paycor:
7833
+ display_name: Paycor
7834
+ categories:
7835
+ - hr
7836
+ auth_mode: OAUTH2
7837
+ authorization_url: https://hcm.paycor.com/AppActivation/Authorize
7838
+ token_url: https://apis.paycor.com/sts/v1/common/token?subscription-key=${connectionConfig.subscriptionKey}
7839
+ authorization_params:
7840
+ response_type: code
7841
+ subscription-key: ${connectionConfig.subscriptionKey}
7842
+ scope_separator: ' '
7843
+ default_scopes:
7844
+ - offline_access
7845
+ token_params:
7846
+ grant_type: authorization_code
7847
+ refresh_params:
7848
+ grant_type: refresh_token
7849
+ proxy:
7850
+ base_url: https://apis.paycor.com
7851
+ headers:
7852
+ ocp-apim-subscription-key: ${connectionConfig.subscriptionKey}
7853
+ docs: https://docs.nango.dev/integrations/all/paycor
7854
+ docs_connect: https://docs.nango.dev/integrations/all/paycor/connect
7855
+ connection_config:
7856
+ subscriptionKey:
7857
+ type: string
7858
+ title: Subscription Key
7859
+ description: The subscription key for your Paycor account
7860
+ automated: true
7861
+ tenantId:
7862
+ type: string
7863
+ title: Company ID
7864
+ example: '290180'
7865
+ pattern: '^\d+$'
7866
+ description: The company ID for your Paycor account
7867
+ doc_section: '#step-1-finding-your-company-id'
7868
+
7869
+ paycor-sandbox:
7870
+ display_name: Paycor (Sandbox)
7871
+ categories:
7872
+ - hr
7873
+ auth_mode: OAUTH2
7874
+ authorization_url: https://hcm-demo.paycor.com/AppActivation/Authorize
7875
+ token_url: https://apis-sandbox.paycor.com/sts/v1/common/token?subscription-key=${connectionConfig.subscriptionKey}
7876
+ authorization_params:
7877
+ response_type: code
7878
+ subscription-key: ${connectionConfig.subscriptionKey}
7879
+ scope_separator: ' '
7880
+ default_scopes:
7881
+ - offline_access
7882
+ token_params:
7883
+ grant_type: authorization_code
7884
+ refresh_params:
7885
+ grant_type: refresh_token
7886
+ proxy:
7887
+ base_url: https://apis-sandbox.paycor.com
7888
+ headers:
7889
+ ocp-apim-subscription-key: ${connectionConfig.subscriptionKey}
7890
+ docs: https://docs.nango.dev/integrations/all/paycor-sandbox
7891
+ docs_connect: https://docs.nango.dev/integrations/all/paycor-sandbox/connect
7892
+ connection_config:
7893
+ subscriptionKey:
7894
+ type: string
7895
+ title: Subscription Key
7896
+ description: The subscription key for your Paycor sandbox account
7897
+ automated: true
7898
+ tenantId:
7899
+ type: string
7900
+ title: Company ID
7901
+ example: '290180'
7902
+ pattern: '^\d+$'
7903
+ description: The company ID for your Paycor sandbox account
7904
+ doc_section: '#step-1-finding-your-company-id'
7905
+
7706
7906
  paycom:
7707
7907
  display_name: Paycom
7708
7908
  categories:
@@ -9841,6 +10041,7 @@ snowflake:
9841
10041
  grant_type: refresh_token
9842
10042
  proxy:
9843
10043
  base_url: https://${connectionConfig.snowflake_account_url}
10044
+ post_connection_script: snowflakePostConnection
9844
10045
  docs: https://docs.nango.dev/integrations/all/snowflake
9845
10046
  connection_config:
9846
10047
  snowflake_account_url:
@@ -11556,6 +11757,43 @@ yahoo:
11556
11757
  example: fantasysports.yahooapis.com
11557
11758
  prefix: https://
11558
11759
 
11760
+ yotpo:
11761
+ display_name: Yotpo
11762
+ categories:
11763
+ - e-commerce
11764
+ auth_mode: TWO_STEP
11765
+ proxy:
11766
+ base_url: https://api.yotpo.com
11767
+ headers:
11768
+ x-yotpo-token: ${accessToken}
11769
+ token_url: https://api.yotpo.com/core/v3/stores/${connectionConfig.storeId}/access_tokens
11770
+ token_params:
11771
+ secret: ${credentials.apiSecret}
11772
+ token_headers:
11773
+ content-type: application/json
11774
+ token_response:
11775
+ token: access_token
11776
+ docs: https://docs.nango.dev/integrations/all/yotpo
11777
+ docs_connect: https://docs.nango.dev/integrations/all/yotpo/connect
11778
+ connection_config:
11779
+ storeId:
11780
+ type: string
11781
+ title: App Key
11782
+ description: Your Yotpo Store Key.
11783
+ pattern: '^[A-Za-z0-9]{40}$'
11784
+ doc_section: '#step-1-retrieving-your-app-key'
11785
+ example: rvR3359XuCuuuEgCgcHNrQ9TE8zwC5dMzWMULHZm
11786
+ order: 1
11787
+ credentials:
11788
+ apiSecret:
11789
+ type: string
11790
+ title: Secret Key
11791
+ description: Your Yotpo app's secret key.
11792
+ secret: true
11793
+ example: tHrwXaIBaWETHLRwxWaNktfYeEteyTcSjiNJY4IH
11794
+ doc_section: '#step-2-generating-your-secret-key'
11795
+ pattern: '^[A-Za-z0-9]{40}$'
11796
+
11559
11797
  yandex:
11560
11798
  display_name: Yandex
11561
11799
  categories:
@@ -11716,6 +11954,37 @@ zoho:
11716
11954
  example: com
11717
11955
  suffix: /
11718
11956
 
11957
+ datto-rmm:
11958
+ display_name: Datto RMM
11959
+ categories:
11960
+ - support
11961
+ auth_mode: OAUTH2
11962
+ authorization_url: https://${connectionConfig.platform}-api.centrastage.net/auth/oauth/authorize
11963
+ token_url: https://${connectionConfig.platform}-api.centrastage.net/auth/oauth/token
11964
+ authorization_params:
11965
+ response_type: code
11966
+ token_params:
11967
+ grant_type: authorization_code
11968
+ refresh_params:
11969
+ grant_type: refresh_token
11970
+ token_request_auth_method: basic
11971
+ disable_pkce: true
11972
+ proxy:
11973
+ base_url: https://${connectionConfig.platform}-api.centrastage.net/api
11974
+ docs: https://docs.nango.dev/integrations/all/datto-rmm
11975
+ docs_connect: https://docs.nango.dev/integrations/all/datto-rmm/connect
11976
+ connection_config:
11977
+ platform:
11978
+ type: string
11979
+ title: Platform
11980
+ description: The Datto RMM platform (region) for your account
11981
+ pattern: '^(pinotage|merlot|concord|vidal|zinfandel|syrah)$'
11982
+ example: merlot
11983
+ prefix: https://
11984
+ suffix: -api.centrastage.net
11985
+ order: 1
11986
+ doc_section: '#step-2-select-your-platform'
11987
+
11719
11988
  zoho-books:
11720
11989
  display_name: Zoho Books
11721
11990
  alias: zoho