@nangohq/providers 0.69.5 → 0.69.6

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 +248 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.69.5",
3
+ "version": "0.69.6",
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.69.5",
14
+ "@nangohq/types": "0.69.6",
15
15
  "vitest": "3.2.4"
16
16
  },
17
17
  "files": [
package/providers.yaml CHANGED
@@ -436,6 +436,24 @@ aimfox:
436
436
  example: 123e4567-e89b-12d3-a456-426614174000
437
437
  doc_section: '#step-1-generating-your-api-key'
438
438
 
439
+ aimfox-oauth:
440
+ display_name: Aimfox (OAuth)
441
+ categories:
442
+ - surveys
443
+ auth_mode: OAUTH2
444
+ authorization_url: https://id.aimfox.com/realms/aimfox-prod/protocol/openid-connect/auth
445
+ token_url: https://id.aimfox.com/realms/aimfox-prod/protocol/openid-connect/token
446
+ disable_pkce: true
447
+ authorization_params:
448
+ response_type: code
449
+ token_params:
450
+ grant_type: authorization_code
451
+ refresh_params:
452
+ grant_type: refresh_token
453
+ proxy:
454
+ base_url: https://api.aimfox.com/api
455
+ docs: https://nango.dev/docs/integrations/all/aimfox-oauth
456
+
439
457
  aircall:
440
458
  display_name: Aircall (OAuth)
441
459
  categories:
@@ -6596,7 +6614,7 @@ intercom:
6596
6614
  - surveys
6597
6615
  - ticketing
6598
6616
  auth_mode: OAUTH2
6599
- authorization_url: https://app.${connectionConfig.region}.intercom.com || https://app.intercom.com/oauth
6617
+ authorization_url: https://app.${connectionConfig.region}.intercom.com/oauth || https://app.intercom.com/oauth
6600
6618
  token_url: https://api.${connectionConfig.region}.intercom.io/auth/eagle/token || https://api.intercom.io/auth/eagle/token
6601
6619
  proxy:
6602
6620
  base_url: https://api.${connectionConfig.region}.intercom.io || https://api.intercom.io
@@ -8007,29 +8025,41 @@ medallia:
8007
8025
  retry:
8008
8026
  after:
8009
8027
  - 'x-ratelimit-reset'
8010
- base_url: https://${connectionConfig.gatewayUrl}.apis.medallia.com
8028
+ base_url: https://${connectionConfig.apiHostUrl} || https://${connectionConfig.gatewayUrl}.apis.medallia.com
8011
8029
  docs: https://nango.dev/docs/integrations/all/medallia
8012
8030
  docs_connect: https://nango.dev/docs/integrations/all/medallia/connect
8013
8031
  connection_config:
8014
8032
  reportingInstance:
8015
8033
  type: string
8016
8034
  title: Domain
8017
- description: The domain of your Medallia account
8035
+ description: The base domain for your Medallia instance
8018
8036
  format: hostname
8019
8037
  prefix: https://
8020
- doc_section: '#step-3-connect-your-medallia-account'
8038
+ suffix: /oauth
8039
+ example: instance.medallia.com
8040
+ order: 1
8041
+ doc_section: '#step-2-identifying-your-domain'
8021
8042
  tenantName:
8022
8043
  type: string
8023
8044
  title: Tenant Name
8024
8045
  description: The tenant name of your Medallia account
8025
- doc_section: '#step-3-connect-your-medallia-account'
8026
- gatewayUrl:
8046
+ order: 2
8047
+ example: acme
8048
+ doc_section: '#step-3-identifying-your-tenant-name'
8049
+ apiHostUrl:
8027
8050
  type: string
8028
- title: Gateway URL
8029
- description: The gateway URL of your Medallia account
8051
+ title: API Host URL
8052
+ description: The base API endpoint (gateway URL) for your Medallia account
8030
8053
  format: hostname
8031
8054
  prefix: https://
8032
- doc_section: '#step-3-connect-your-medallia-account'
8055
+ order: 3
8056
+ example: fo-acme.apis.medallia.eu
8057
+ doc_section: '#step-4-identifying-your-api-host-url'
8058
+ gatewayUrl:
8059
+ type: string
8060
+ title: ''
8061
+ description: ''
8062
+ hidden: true # deprecating this in favor of apiHostUrl
8033
8063
 
8034
8064
  metabase:
8035
8065
  display_name: Metabase
@@ -8091,6 +8121,34 @@ microsoft:
8091
8121
  decompress: true
8092
8122
  docs: https://nango.dev/docs/integrations/all/microsoft
8093
8123
 
8124
+ microsoft-admin:
8125
+ display_name: Microsoft (Admin)
8126
+ auth_mode: OAUTH2
8127
+ categories:
8128
+ - communication
8129
+ - dev-tools
8130
+ - productivity
8131
+ authorization_url: https://login.microsoftonline.com/${connectionConfig.tenantId}/adminconsent
8132
+ token_url: https://login.microsoftonline.com/${connectionConfig.tenantId}/oauth2/v2.0/token
8133
+ authorization_code_param_in_callback: tenant
8134
+ proxy:
8135
+ base_url: https://graph.microsoft.com
8136
+ retry:
8137
+ after:
8138
+ - 'retry-after'
8139
+ decompress: true
8140
+ docs: https://nango.dev/docs/integrations/all/microsoft-admin
8141
+ docs_connect: https://nango.dev/docs/integrations/all/microsoft-admin/connect
8142
+ connection_config:
8143
+ tenantId:
8144
+ type: string
8145
+ title: Tenant ID
8146
+ description: The unique identifier for your organization that uses Microsoft services
8147
+ format: uuid
8148
+ example: a1b2c3d4-e5f6-47a8-9b0c-d1234567890f
8149
+ doc_section: '#step-1-finding-your-tenant-id'
8150
+ order: 1
8151
+
8094
8152
  microsoft-excel:
8095
8153
  display_name: Microsoft Excel
8096
8154
  categories:
@@ -8474,6 +8532,28 @@ monday:
8474
8532
  base_url: https://api.monday.com
8475
8533
  docs: https://nango.dev/docs/integrations/all/monday
8476
8534
 
8535
+ momentum-io:
8536
+ display_name: Momentum.io
8537
+ categories:
8538
+ - productivity
8539
+ auth_mode: API_KEY
8540
+ proxy:
8541
+ base_url: https://api.momentum.io
8542
+ headers:
8543
+ x-api-key: ${apiKey}
8544
+ verification:
8545
+ method: GET
8546
+ endpoints:
8547
+ - /v1/meetings
8548
+ docs: https://nango.dev/docs/integrations/all/momentum-io
8549
+ docs_connect: https://nango.dev/docs/integrations/all/momentum-io/connect
8550
+ credentials:
8551
+ apiKey:
8552
+ type: string
8553
+ title: API Key
8554
+ description: The API key for your Make account
8555
+ doc_section: '#step-1-generating-an-api-key'
8556
+
8477
8557
  mural:
8478
8558
  display_name: Mural
8479
8559
  categories:
@@ -9363,6 +9443,35 @@ pennylane:
9363
9443
  - scopes
9364
9444
  docs: https://nango.dev/docs/integrations/all/pennylane
9365
9445
 
9446
+ pennylane-company-api:
9447
+ display_name: Pennylane (Company API)
9448
+ categories:
9449
+ - accounting
9450
+ - banking
9451
+ - invoicing
9452
+ - payment
9453
+ auth_mode: API_KEY
9454
+ proxy:
9455
+ headers:
9456
+ authorization: Bearer ${apiKey}
9457
+ base_url: https://app.pennylane.com
9458
+ verification:
9459
+ method: GET
9460
+ headers:
9461
+ accept: application/json
9462
+ endpoints:
9463
+ - /api/external/v2/me
9464
+ docs: https://docs.nango.dev/integrations/all/pennylane-company-api
9465
+ docs_connect: https://docs.nango.dev/integrations/all/pennylane-company-api/connect
9466
+ credentials:
9467
+ apiKey:
9468
+ type: string
9469
+ title: API Token
9470
+ description: The company API token for your Pennylane account
9471
+ pattern: '^[A-Za-z0-9_-]{43}$'
9472
+ example: aZ9b4Lp3QhN7vXyK1sTcO0WfR8jMdEuD5GrIi2-H6PnU
9473
+ doc_section: '#step-1-generating-your-company-api-token'
9474
+
9366
9475
  peopledatalabs:
9367
9476
  display_name: People Data Labs
9368
9477
  categories:
@@ -10861,6 +10970,54 @@ salesforce-cdp:
10861
10970
  description: This is your pre-generated, encoded JSON Web Token (JWT)
10862
10971
  secret: true
10863
10972
  doc_section: '#step-1-generating-your-encoded-jwt'
10973
+
10974
+ sap-fieldglass:
10975
+ display_name: SAP Fieldglass
10976
+ categories:
10977
+ - hr
10978
+ body_format: form
10979
+ auth_mode: TWO_STEP
10980
+ token_url: https://${connectionConfig.domain}/api/oauth2/v2.0/token?grant_type=client_credentials&response_type=token
10981
+ token_headers:
10982
+ authorization: Basic ${base64(${credentials.clientId}:${credentials.clientSecret})}
10983
+ X-ApplicationKey: ${credentials.appKey}
10984
+ proxy:
10985
+ base_url: https://${connectionConfig.domain}/api
10986
+ token_response:
10987
+ token: access_token
10988
+ token_expiration: expires_in
10989
+ token_expiration_strategy: expireIn
10990
+ docs: https://nango.dev/docs/integrations/all/sap-fieldglass
10991
+ docs_connect: https://nango.dev/docs/integrations/all/sap-fieldglass/connect
10992
+ credentials:
10993
+ clientId:
10994
+ type: string
10995
+ title: Client ID
10996
+ description: Your SAP Fieldglass application Client ID
10997
+ doc_section: '#step-1-generating-an-application'
10998
+ clientSecret:
10999
+ type: string
11000
+ title: Client secret
11001
+ description: Your SAP Fieldglass application Client secret
11002
+ secret: true
11003
+ doc_section: '#step-1-generating-an-application'
11004
+ appKey:
11005
+ type: string
11006
+ title: Application Key
11007
+ description: Your SAP Fieldglass application key
11008
+ secret: true
11009
+ optional: true
11010
+ doc_section: '#step-1-generating-an-application'
11011
+ connection_config:
11012
+ domain:
11013
+ type: string
11014
+ title: Domain
11015
+ description: Your SAP Fieldglass environment URL
11016
+ example: auth.fieldglass.net
11017
+ prefix: https://
11018
+ pattern: '^(?:[a-zA-Z0-9_-]+-(?:auth\.)?fgvms\.com|auth\.fieldglass\.net|sso\.fieldglass\.eu)$'
11019
+ doc_section: '#step-2-determining-your-domain'
11020
+
10864
11021
  sap-concur:
10865
11022
  display_name: SAP Concur
10866
11023
  categories:
@@ -10892,6 +11049,64 @@ sap-concur:
10892
11049
  example: us
10893
11050
  doc_section: '#step-3-determine-your-region'
10894
11051
 
11052
+ sap-business-one:
11053
+ display_name: SAP Business One
11054
+ categories:
11055
+ - erp
11056
+ body_format: json
11057
+ auth_mode: TWO_STEP
11058
+ token_url: https://${connectionConfig.domain}/login
11059
+ token_params:
11060
+ CompanyDB: ${connectionConfig.companyDb}
11061
+ UserName: ${credentials.userName}
11062
+ DBInstance: ${connectionConfig.dbInstance}
11063
+ Password: ${credentials.password}
11064
+ token_headers:
11065
+ content-type: application/json
11066
+ proxy:
11067
+ base_url: https://${connectionConfig.domain}
11068
+ token_response:
11069
+ token: AccessToken
11070
+ docs: https://nango.dev/docs/integrations/all/sap-business-one
11071
+ docs_connect: https://nango.dev/docs/integrations/all/sap-business-one/connect
11072
+ connection_config:
11073
+ domain:
11074
+ type: string
11075
+ title: Service Layer URL
11076
+ prefix: https://
11077
+ suffix: /login
11078
+ pattern: '^[A-Za-z0-9.-]+(?::\d+(?:/[-A-Za-z0-9.]*)*)?$'
11079
+ order: 1
11080
+ description: The base URL for your SAP Business One Service Layer
11081
+ doc_section: '#step-3-finding-your-service-layer-url'
11082
+ companyDb:
11083
+ type: string
11084
+ title: Company Database Name
11085
+ description: The name of your SAP Business One company database
11086
+ example: 10COR0809H
11087
+ order: 2
11088
+ doc_section: '#step-2-identifying-your-company-database'
11089
+ dbInstance:
11090
+ type: string
11091
+ title: Database Instance
11092
+ description: The database server instance name
11093
+ optional: true
11094
+ order: 3
11095
+ example: C200@10.58.114.200:30013
11096
+ doc_section: '#step-4-finding-your-database-instance'
11097
+ credentials:
11098
+ userName:
11099
+ type: string
11100
+ title: Username
11101
+ description: Your SAP Business One username
11102
+ doc_section: '#step-1-obtaining-your-credentials'
11103
+ password:
11104
+ type: string
11105
+ title: Password
11106
+ description: Your SAP Business One password
11107
+ secret: true
11108
+ doc_section: '#step-1-obtaining-your-credentials'
11109
+
10895
11110
  sap-success-factors:
10896
11111
  display_name: SAP SuccessFactors
10897
11112
  categories:
@@ -11435,6 +11650,8 @@ shopify-api-key:
11435
11650
  content-type: application/json
11436
11651
  endpoints:
11437
11652
  - /admin/api/2024-10/graphql.json?query=%7B__schema%7Btypes%7Bname%2Ckind%2Cfields%7Bname%7D%7D%7D%7D
11653
+ webhook_routing_script: shopifyWebhookRouting
11654
+ webhook_user_defined_secret: true
11438
11655
  docs: https://nango.dev/docs/integrations/all/shopify-api-key
11439
11656
  docs_connect: https://nango.dev/docs/integrations/all/shopify-api-key/connect
11440
11657
  connection_config:
@@ -13768,13 +13985,17 @@ zoho:
13768
13985
  categories:
13769
13986
  - accounting
13770
13987
  auth_mode: OAUTH2
13771
- authorization_url: https://accounts.zoho.${connectionConfig.extension}/oauth/v2/auth
13772
- token_url: https://accounts.zoho.${connectionConfig.extension}/oauth/v2/token
13988
+ authorization_url: https://accounts.zoho.${connectionConfig.extension}/oauth/v2/auth || https://accounts.zoho.com/oauth/v2/auth
13989
+ token_url: https://accounts.zoho.${connectionConfig.extension}/oauth/v2/token || ${connectionConfig.accounts-server}/oauth/v2/token
13773
13990
  authorization_params:
13774
13991
  prompt: consent
13775
13992
  access_type: offline
13993
+ redirect_uri_metadata:
13994
+ - accounts-server
13995
+ token_response_metadata:
13996
+ - api_domain
13776
13997
  proxy:
13777
- base_url: https://www.zohoapis.${connectionConfig.extension}
13998
+ base_url: https://www.zohoapis.${connectionConfig.extension} || ${connectionConfig.api_domain}
13778
13999
  paginate:
13779
14000
  type: offset
13780
14001
  response_path: data
@@ -13789,7 +14010,13 @@ zoho:
13789
14010
  pattern: '^[a-z.]+$'
13790
14011
  prefix: https://accounts.zoho.
13791
14012
  example: com
14013
+ optional: true
13792
14014
  suffix: /
14015
+ accounts-server:
14016
+ type: string
14017
+ title: ''
14018
+ description: ''
14019
+ automated: true
13793
14020
 
13794
14021
  zoho-books:
13795
14022
  display_name: Zoho Books
@@ -13804,6 +14031,7 @@ zoho-books:
13804
14031
  pattern: '^[a-z.]+$'
13805
14032
  prefix: https://books.zoho.
13806
14033
  example: com
14034
+ optional: true
13807
14035
  suffix: /
13808
14036
 
13809
14037
  zoho-crm:
@@ -13819,6 +14047,7 @@ zoho-crm:
13819
14047
  pattern: '^[a-z.]+$'
13820
14048
  prefix: https://crm.zoho.
13821
14049
  example: com
14050
+ optional: true
13822
14051
  suffix: /
13823
14052
 
13824
14053
  zoho-calendar:
@@ -13838,6 +14067,7 @@ zoho-calendar:
13838
14067
  pattern: '^[a-z.]+$'
13839
14068
  prefix: https://calendar.zoho.
13840
14069
  example: com
14070
+ optional: true
13841
14071
  suffix: /
13842
14072
 
13843
14073
  zoho-desk:
@@ -13858,6 +14088,7 @@ zoho-desk:
13858
14088
  pattern: '^[a-z.]+$'
13859
14089
  prefix: https://desk.zoho.
13860
14090
  example: com
14091
+ optional: true
13861
14092
  suffix: /
13862
14093
 
13863
14094
  zoho-inventory:
@@ -13875,6 +14106,7 @@ zoho-inventory:
13875
14106
  pattern: '^[a-z.]+$'
13876
14107
  prefix: https://inventory.zoho.
13877
14108
  example: com
14109
+ optional: true
13878
14110
  suffix: /
13879
14111
 
13880
14112
  zoho-invoice:
@@ -13892,6 +14124,7 @@ zoho-invoice:
13892
14124
  pattern: '^[a-z.]+$'
13893
14125
  prefix: https://invoice.zoho.
13894
14126
  example: com
14127
+ optional: true
13895
14128
  suffix: /
13896
14129
 
13897
14130
  zoho-mail:
@@ -13912,6 +14145,7 @@ zoho-mail:
13912
14145
  pattern: '^[a-z.]+$'
13913
14146
  prefix: https://mail.zoho.
13914
14147
  example: com
14148
+ optional: true
13915
14149
  suffix: /
13916
14150
 
13917
14151
  zoho-bigin:
@@ -13927,6 +14161,7 @@ zoho-bigin:
13927
14161
  pattern: '^[a-z.]+$'
13928
14162
  prefix: https://bigin.zoho.
13929
14163
  example: com
14164
+ optional: true
13930
14165
  suffix: /
13931
14166
 
13932
14167
  zoho-people:
@@ -13946,6 +14181,7 @@ zoho-people:
13946
14181
  pattern: '^[a-z.]+$'
13947
14182
  prefix: https://people.zoho.
13948
14183
  example: com
14184
+ optional: true
13949
14185
  suffix: /
13950
14186
 
13951
14187
  zoom: