@nangohq/providers 0.57.6 → 0.58.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 +88 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.57.6",
3
+ "version": "0.58.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.57.6",
14
+ "@nangohq/types": "0.58.0",
15
15
  "vitest": "2.1.9"
16
16
  },
17
17
  "files": [
package/providers.yaml CHANGED
@@ -805,6 +805,8 @@ attio:
805
805
  grant_type: refresh_token
806
806
  proxy:
807
807
  base_url: https://app.attio.com
808
+ retry:
809
+ after: 'retry-after'
808
810
  docs: https://docs.nango.dev/integrations/all/attio
809
811
 
810
812
  auth0:
@@ -3893,6 +3895,43 @@ github-app-oauth:
3893
3895
  example: '38631545'
3894
3896
  automated: true
3895
3897
 
3898
+ github-pat:
3899
+ display_name: Github (Personal Access Token)
3900
+ categories:
3901
+ - dev-tools
3902
+ - ticketing
3903
+ auth_mode: API_KEY
3904
+ proxy:
3905
+ base_url: https://api.github.com
3906
+ retry:
3907
+ at: 'x-ratelimit-reset'
3908
+ remaining: 'x-ratelimit-remaining'
3909
+ error_code: 403
3910
+ headers:
3911
+ authorization: Bearer ${apiKey}
3912
+ x-github-api-version: ${connectionConfig.version} || 2022-11-28
3913
+ accept: application/vnd.github+json
3914
+ verification:
3915
+ method: GET
3916
+ endpoints:
3917
+ - /user
3918
+ docs: https://docs.nango.dev/integrations/all/github-pat
3919
+ docs_connect: https://docs.nango.dev/integrations/all/github-pat/connect
3920
+ connection_config:
3921
+ version:
3922
+ type: string
3923
+ title: ''
3924
+ description: ''
3925
+ automated: true
3926
+ credentials:
3927
+ apiKey:
3928
+ type: string
3929
+ title: Personal Access Token
3930
+ description: The Personal Access Token to your Github account
3931
+ pattern: '^(?:github_pat|ghp|gho|ghu|ghs|ghr)_[A-Za-z0-9_]{36,255}$'
3932
+ example: 'github_pat_***********************xRIoxmseCYRHDDIOFfTOyKex'
3933
+ doc_section: '#step-1-finding-your-personal-access-token'
3934
+
3896
3935
  gitlab:
3897
3936
  display_name: GitLab
3898
3937
  categories:
@@ -4092,6 +4131,8 @@ google-calendar:
4092
4131
  limit_name_in_request: maxSize
4093
4132
  cursor_name_in_request: pageToken
4094
4133
  response_path: items
4134
+ retry:
4135
+ error_code: 403
4095
4136
  docs: https://docs.nango.dev/integrations/all/google-calendar
4096
4137
 
4097
4138
  google-docs:
@@ -4643,15 +4684,15 @@ hibob-service-user:
4643
4684
  credentials:
4644
4685
  username:
4645
4686
  type: string
4646
- title: User name
4687
+ title: Hibob ID
4647
4688
  description: Your Hibob ID
4648
4689
  doc_section: '#step-1-finding-your-hibob-service-user-id'
4649
4690
  password:
4650
4691
  type: string
4651
- title: Password
4692
+ title: Hibob Token
4652
4693
  description: Your Hibob Token
4653
4694
  default_value: ''
4654
- hidden: true
4695
+ secret: true
4655
4696
  doc_section: '#step-2-finding-your-hibob-token'
4656
4697
  docs: https://docs.nango.dev/integrations/all/hibob-service-user
4657
4698
  docs_connect: https://docs.nango.dev/integrations/all/hibob-service-user/connect
@@ -5035,7 +5076,7 @@ keeper-scim:
5035
5076
  endpoints:
5036
5077
  - /Users
5037
5078
  docs: https://docs.nango.dev/integrations/all/keeper-scim
5038
- docs_connect: https://docs.nango.dev/integrations/all/keeper/connect
5079
+ docs_connect: https://docs.nango.dev/integrations/all/keeper-scim/connect
5039
5080
  credentials:
5040
5081
  apiKey:
5041
5082
  type: string
@@ -7507,6 +7548,31 @@ rippling:
7507
7548
  title: API Token
7508
7549
  description: The API Token for your Rippling account
7509
7550
  doc_section: '#step-1-generating-your-api-token'
7551
+
7552
+ rippling-shop-app:
7553
+ display_name: Rippling Shop App
7554
+ categories:
7555
+ - hr
7556
+ auth_mode: OAUTH2
7557
+ authorization_url: https://app.rippling.com/apps/PLATFORM/${connectionConfig.appName}/authorize
7558
+ token_url: https://api.rippling.com/api/o/token/
7559
+ authorization_params:
7560
+ response_type: code
7561
+ token_params:
7562
+ grant_type: authorization_code
7563
+ refresh_params:
7564
+ grant_type: refresh_token
7565
+ proxy:
7566
+ base_url: https://api.rippling.com
7567
+ post_connection_script: ripplingShopAppPostConnection
7568
+ docs: https://docs.nango.dev/integrations/all/rippling-shop-app
7569
+ connection_config:
7570
+ appName:
7571
+ type: string
7572
+ title: ''
7573
+ description: ''
7574
+ automated: true
7575
+
7510
7576
  segment:
7511
7577
  display_name: Segment
7512
7578
  categories:
@@ -9586,6 +9652,23 @@ xero:
9586
9652
  post_connection_script: xeroPostConnection
9587
9653
  docs: https://docs.nango.dev/integrations/all/xero
9588
9654
 
9655
+ xero-oauth2-cc:
9656
+ display_name: Xero (Client Credentials)
9657
+ categories:
9658
+ - accounting
9659
+ - popular
9660
+ auth_mode: OAUTH2_CC
9661
+ token_url: https://identity.xero.com/connect/token
9662
+ token_request_auth_method: basic
9663
+ token_params:
9664
+ grant_type: client_credentials
9665
+ proxy:
9666
+ base_url: https://api.xero.com
9667
+ retry:
9668
+ after: 'retry-after'
9669
+ docs: https://docs.nango.dev/integrations/all/xero-oauth2-cc
9670
+ docs_connect: https://docs.nango.dev/integrations/all/xero-oauth2-cc/connect
9671
+
9589
9672
  yahoo:
9590
9673
  display_name: Yahoo
9591
9674
  categories:
@@ -9682,6 +9765,7 @@ zapier-scim:
9682
9765
  endpoints:
9683
9766
  - /Users
9684
9767
  docs: https://docs.nango.dev/integrations/all/zapier-scim
9768
+ docs_connect: https://docs.nango.dev/integrations/all/zapier-scim/connect
9685
9769
  credentials:
9686
9770
  apiKey:
9687
9771
  type: string