@nangohq/providers 0.65.0 → 0.66.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 +75 -22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.65.0",
3
+ "version": "0.66.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.65.0",
14
+ "@nangohq/types": "0.66.0",
15
15
  "vitest": "3.2.4"
16
16
  },
17
17
  "files": [
package/providers.yaml CHANGED
@@ -8177,6 +8177,38 @@ prive:
8177
8177
  description: The API key for your Prive account
8178
8178
  doc_section: '#step-1-requesting-your-prive-api-key'
8179
8179
 
8180
+ private-api-bearer:
8181
+ display_name: Private API (Bearer Auth)
8182
+ auth_mode: API_KEY
8183
+ proxy:
8184
+ headers:
8185
+ authorization: Bearer ${apiKey}
8186
+ base_url: https://my-private-api
8187
+ docs: https://docs.nango.dev/integrations/all/private-api-bearer
8188
+ docs_connect: https://docs.nango.dev/integrations/all/private-api-bearer/connect
8189
+ credentials:
8190
+ apiKey:
8191
+ type: string
8192
+ title: API Key
8193
+ description: Your API Key
8194
+
8195
+ private-api-basic:
8196
+ display_name: Private API (Basic Auth)
8197
+ auth_mode: BASIC
8198
+ proxy:
8199
+ base_url: https://my-private-api
8200
+ docs: https://docs.nango.dev/integrations/all/private-api-basic
8201
+ docs_connect: https://docs.nango.dev/integrations/all/private-api-basic/connect
8202
+ credentials:
8203
+ username:
8204
+ type: string
8205
+ title: Username
8206
+ description: Your username
8207
+ password:
8208
+ type: string
8209
+ title: Password
8210
+ description: Your password
8211
+
8180
8212
  precisefp:
8181
8213
  display_name: PreciseFP
8182
8214
  categories:
@@ -8950,6 +8982,35 @@ sage-intacct:
8950
8982
  description: Your Sage Intacct User Password
8951
8983
  secret: true
8952
8984
 
8985
+ sage-people:
8986
+ display_name: Sage People
8987
+ categories:
8988
+ - hr
8989
+ auth_mode: OAUTH2
8990
+ authorization_url: https://login.salesforce.com/services/oauth2/authorize
8991
+ token_url: https://login.salesforce.com/services/oauth2/token
8992
+ authorization_params:
8993
+ prompt: consent
8994
+ default_scopes:
8995
+ - offline_access
8996
+ - api
8997
+ proxy:
8998
+ base_url: https://${connectionConfig.instance_url}/services/apexrest/spapi
8999
+ headers:
9000
+ accept: application/json
9001
+ token_response_metadata:
9002
+ - instance_url
9003
+ docs: https://docs.nango.dev/integrations/all/sage-people
9004
+ docs_connect: https://docs.nango.dev/integrations/all/sage-people/connect
9005
+ connection_config:
9006
+ instance_url:
9007
+ type: string
9008
+ title: Instance URL
9009
+ description: The instance URL of your Salesforce account
9010
+ format: uri
9011
+ pattern: '^https?://.*$'
9012
+ automated: true
9013
+
8953
9014
  salesforce:
8954
9015
  display_name: Salesforce
8955
9016
  categories:
@@ -10901,38 +10962,30 @@ ukg-ready:
10901
10962
  display_name: UKG Ready
10902
10963
  categories:
10903
10964
  - hr
10904
- auth_mode: OAUTH2
10905
- authorization_url: https://${connectionConfig.hostname}/api/v2/client/tokens
10906
- token_url: https://${connectionConfig.hostname}/api/v2/client/tokens
10907
- scope_separator: ' '
10908
- authorization_params:
10909
- response_type: code
10910
- audience: https://${connectionConfig.hostname}/api
10911
- realm: ${connectionConfig.tenantName}
10965
+ auth_mode: OAUTH2_CC
10966
+ token_url: https://${connectionConfig.hostname}/ta/rest/v2/companies/${connectionConfig.realmId}/oauth2/token
10912
10967
  token_params:
10913
- grant_type: authorization_code
10914
- refresh_params:
10915
- grant_type: refresh_token
10968
+ grant_type: client_credentials
10916
10969
  proxy:
10917
10970
  base_url: https://${connectionConfig.hostname}
10918
10971
  docs: https://docs.nango.dev/integrations/all/ukg-ready
10919
10972
  docs_connect: https://docs.nango.dev/integrations/all/ukg-ready/connect
10920
10973
  connection_config:
10974
+ realmId:
10975
+ type: string
10976
+ title: Company ID
10977
+ description: A unique identifier for your company.
10978
+ example: '23444234'
10979
+ doc_section: '#step-2-finding-your-company-id'
10921
10980
  hostname:
10922
10981
  type: string
10923
- title: Tenant URL
10924
- description: The tenant URL of your UKG Ready instance
10982
+ title: Hostname
10983
+ description: The hostname to your UKG Ready instance
10925
10984
  format: hostname
10926
- example: wfm.us1.ukg.com
10927
- suffix: /api
10985
+ example: secure.us.rdy.ukg
10986
+ suffix: /ta
10928
10987
  prefix: https://
10929
- doc_section: '#step-1-finding-your-tenant-url-and-tenant-name'
10930
- tenantName:
10931
- type: string
10932
- title: Tenant Name
10933
- description: The tenant name of your UKG Ready instance
10934
- example: wfm
10935
- doc_section: '#step-1-finding-your-tenant-url-and-tenant-name'
10988
+ doc_section: '#step-3-finding-your-hostname'
10936
10989
  unanet:
10937
10990
  display_name: Unanet
10938
10991
  categories: