@nangohq/providers 0.58.5 → 0.58.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 +288 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.58.5",
3
+ "version": "0.58.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.58.5",
14
+ "@nangohq/types": "0.58.6",
15
15
  "vitest": "3.1.1"
16
16
  },
17
17
  "files": [
package/providers.yaml CHANGED
@@ -804,7 +804,7 @@ attio:
804
804
  refresh_params:
805
805
  grant_type: refresh_token
806
806
  proxy:
807
- base_url: https://app.attio.com
807
+ base_url: https://api.attio.com
808
808
  retry:
809
809
  after: 'retry-after'
810
810
  docs: https://docs.nango.dev/integrations/all/attio
@@ -2281,6 +2281,26 @@ commercetools:
2281
2281
  pattern: '^(gcp|aws)$'
2282
2282
  doc_section: '#step-3-identify-your-region-and-cloud-provider'
2283
2283
 
2284
+ companycam:
2285
+ display_name: CompanyCam
2286
+ categories:
2287
+ - productivity
2288
+ auth_mode: API_KEY
2289
+ proxy:
2290
+ base_url: https://api.companycam.com
2291
+ headers:
2292
+ authorization: Bearer ${apiKey}
2293
+ verification:
2294
+ method: GET
2295
+ endpoints:
2296
+ - /v2/company
2297
+ docs: https://docs.nango.dev/integrations/all/companycam
2298
+ credentials:
2299
+ apiKey:
2300
+ type: string
2301
+ title: Access Token
2302
+ description: The Access Token for your CompanyCam company
2303
+
2284
2304
  copper:
2285
2305
  display_name: Copper (OAuth)
2286
2306
  categories:
@@ -2664,6 +2684,30 @@ deel-sandbox:
2664
2684
  base_url: https://api-sandbox.demo.deel.com
2665
2685
  docs: https://docs.nango.dev/integrations/all/deel-sandbox
2666
2686
 
2687
+ devin:
2688
+ display_name: Devin
2689
+ categories:
2690
+ - dev-tools
2691
+ auth_mode: API_KEY
2692
+ proxy:
2693
+ base_url: https://api.devin.ai
2694
+ headers:
2695
+ authorization: Bearer ${apiKey}
2696
+ verification:
2697
+ method: GET
2698
+ endpoints:
2699
+ - /v1/sessions
2700
+ docs: https://docs.nango.dev/integrations/all/devin
2701
+ docs_connect: https://docs.nango.dev/integrations/all/devin/connect
2702
+ credentials:
2703
+ apiKey:
2704
+ type: string
2705
+ title: API Key
2706
+ description: The API Key for your Devin account
2707
+ pattern: '^apk_user_[A-Za-z0-9+/=]+$'
2708
+ example: 'apk_user_dGVzdF9vcmdfeDY1NzRBUElLRVl8Njc1OTdjNDQzMjFhOTZlODhlMmE4MTI0X29yZ194NnB5QlVJa042anVKWWtMOjQ3NzQxYTVmYWE5MTRiNjQ5'
2709
+ doc_section: '#step-1-finding-your-api-key'
2710
+
2667
2711
  dialpad:
2668
2712
  display_name: Dialpad
2669
2713
  categories:
@@ -2842,6 +2886,61 @@ docusign-sandbox:
2842
2886
  post_connection_script: docusignPostConnection
2843
2887
  docs: https://docs.nango.dev/integrations/all/docusign-sandbox
2844
2888
 
2889
+ docuware:
2890
+ display_name: DocuWare
2891
+ categories:
2892
+ - productivity
2893
+ auth_mode: TWO_STEP
2894
+ token_url: https://${connectionConfig.domain}/DocuWare/Platform/Home/IdentityServiceInfo
2895
+ body_format: form
2896
+ token_request_method: GET
2897
+ token_headers:
2898
+ content-type: application/x-www-form-urlencoded
2899
+ additional_steps:
2900
+ - body_format: form
2901
+ token_url: ${step1.IdentityServiceUrl}/.well-known/openid-configuration
2902
+ token_request_method: GET
2903
+ - body_format: form
2904
+ token_url: ${step2.token_endpoint}
2905
+ token_headers:
2906
+ content-type: application/x-www-form-urlencoded
2907
+ token_params:
2908
+ grant_type: password
2909
+ scope: docuware.platform
2910
+ client_id: docuware.platform.net.client
2911
+ username: ${credentials.username}
2912
+ password: ${credentials.password}
2913
+ proxy:
2914
+ base_url: https://${connectionConfig.domain}/DocuWare/Platform
2915
+ token_response:
2916
+ token: access_token
2917
+ token_expiration: expires_in
2918
+ token_expiration_strategy: expireIn
2919
+ docs: https://docs.nango.dev/integrations/all/docuware
2920
+ docs_connect: https://docs.nango.dev/integrations/all/docuware/connect
2921
+ connection_config:
2922
+ domain:
2923
+ type: string
2924
+ title: Domain
2925
+ description: The domain to your DocuWare account
2926
+ format: hostname
2927
+ prefix: https://
2928
+ example: example.docuware.cloud
2929
+ order: 1
2930
+ doc_section: '#step-1-finding-your-domain'
2931
+ credentials:
2932
+ username:
2933
+ type: string
2934
+ title: Username
2935
+ description: The Username to your DocuWare account
2936
+ doc_section: '#step-2-finding-your-credentials'
2937
+ password:
2938
+ type: string
2939
+ title: Password
2940
+ secret: true
2941
+ description: The Password to your DocuWare account
2942
+ doc_section: '#step-2-finding-your-credentials'
2943
+
2845
2944
  dropbox:
2846
2945
  display_name: Dropbox
2847
2946
  categories:
@@ -3218,8 +3317,7 @@ exact-online:
3218
3317
  display_name: Exact Online
3219
3318
  categories:
3220
3319
  - accounting
3221
- - hr
3222
- - productivity
3320
+ - erp
3223
3321
  auth_mode: OAUTH2
3224
3322
  authorization_url: https://start.exactonline.${connectionConfig.extension}/api/oauth2/auth
3225
3323
  token_url: https://start.exactonline.${connectionConfig.extension}/api/oauth2/token
@@ -3787,6 +3885,40 @@ google-gemini:
3787
3885
  example: 'AIzaSy**********RRtUK5V*********ZFFc64w****AI'
3788
3886
  pattern: '^[0-9A-Za-z_-]+$'
3789
3887
 
3888
+ gem:
3889
+ display_name: Gem
3890
+ categories:
3891
+ - ats
3892
+ auth_mode: API_KEY
3893
+ proxy:
3894
+ base_url: https://api.gem.com
3895
+ headers:
3896
+ x-api-key: ${apiKey}
3897
+ x-application-secret: ${connectionConfig.appSecret}
3898
+ verification:
3899
+ method: GET
3900
+ endpoints:
3901
+ - /v0/users
3902
+ docs: https://docs.nango.dev/integrations/all/gem
3903
+ docs_connect: https://docs.nango.dev/integrations/all/gem/connect
3904
+ credentials:
3905
+ apiKey:
3906
+ type: string
3907
+ title: Shareable Access Key
3908
+ description: The Shareable Access Key for your Integration
3909
+ example: Xk9t3HZbWqLp7AeGvM4sUdYjBnR2TfQxCVi81oNz
3910
+ pattern: '^[a-zA-Z0-9]{40}$'
3911
+ doc_section: '#step-1-finding-your-shareable-access-key'
3912
+ connection_config:
3913
+ appSecret:
3914
+ type: string
3915
+ title: Application Secret
3916
+ description: The Application Secret for your Gem Integration
3917
+ pattern: '^[a-f0-9]{128}$'
3918
+ example: a4c8e1d99f0b7d3c2f5bca0419ae4e5a91fcd42ba001e2a7c3d53c07aa4eb3f47e0bd7cf9e6d1e2faff3b9312d54f013e9c4ba2a17a8f3de12cdfe145d7a8c90
3919
+ secret: true
3920
+ doc_section: '#step-2-finding-your-application-secret'
3921
+
3790
3922
  gerrit:
3791
3923
  display_name: Gerrit
3792
3924
  categories:
@@ -4148,6 +4280,7 @@ gong-oauth:
4148
4280
  title: API Base URL
4149
4281
  description: The base URL of your Gong account
4150
4282
  format: uri
4283
+ automated: true
4151
4284
  pattern: '^https?://.*$'
4152
4285
 
4153
4286
  google:
@@ -4842,6 +4975,30 @@ hubspot:
4842
4975
  response_path: results
4843
4976
  docs: https://docs.nango.dev/integrations/all/hubspot
4844
4977
 
4978
+ incident-io:
4979
+ display_name: Incident.io
4980
+ categories:
4981
+ - ticketing
4982
+ auth_mode: API_KEY
4983
+ proxy:
4984
+ base_url: https://api.incident.io
4985
+ headers:
4986
+ authorization: Bearer ${apiKey}
4987
+ verification:
4988
+ method: GET
4989
+ endpoints:
4990
+ - /v1/identity
4991
+ docs: https://docs.nango.dev/integrations/all/incident-io
4992
+ docs_connect: https://docs.nango.dev/integrations/all/incident-io/connect
4993
+ credentials:
4994
+ apiKey:
4995
+ type: string
4996
+ title: API Key
4997
+ description: The API key for your Incident.io account
4998
+ example: 'inc_************************************f2c5e6a7b3d4**********'
4999
+ pattern: 'inc_[a-f0-9]{64}$'
5000
+ doc_section: '#step-1-generating-your-api-key'
5001
+
4845
5002
  insightly:
4846
5003
  display_name: Insightly
4847
5004
  categories:
@@ -4971,7 +5128,7 @@ jira-basic:
4971
5128
  verification:
4972
5129
  method: GET
4973
5130
  endpoints:
4974
- - /rest/api/3/events
5131
+ - /rest/api/3/myself
4975
5132
  docs: https://docs.nango.dev/integrations/all/jira-basic
4976
5133
  connection_config:
4977
5134
  subdomain:
@@ -5049,6 +5206,39 @@ jira-data-center-api-key:
5049
5206
  description: The API key for your Jira Data Center
5050
5207
  doc_section: '#step-2-generating-your-api-key'
5051
5208
 
5209
+ jira-data-center-basic:
5210
+ display_name: Jira Data Center (Basic Auth)
5211
+ categories:
5212
+ - productivity
5213
+ - ticketing
5214
+ auth_mode: BASIC
5215
+ proxy:
5216
+ base_url: ${connectionConfig.baseUrl}
5217
+ retry:
5218
+ after: 'retry-after'
5219
+ docs: https://docs.nango.dev/integrations/all/jira-data-center-basic
5220
+ docs_connect: https://docs.nango.dev/integrations/all/jira-data-center-basic/connect
5221
+ connection_config:
5222
+ baseUrl:
5223
+ type: string
5224
+ title: Instance Base Url
5225
+ description: The base Url for your Jira Data Center instance
5226
+ pattern: '^(https?:\/\/)?[a-zA-Z0-9.-]+(:\d+)?$'
5227
+ example: https://foobar.atlassian.net
5228
+ doc_section: '#step-1-finding-your-instance-base-url'
5229
+ order: 1
5230
+ credentials:
5231
+ username:
5232
+ type: string
5233
+ title: Username
5234
+ description: The username for your Jira Data Center
5235
+ doc_section: '#step-2-finding-your-credentials'
5236
+ password:
5237
+ type: string
5238
+ title: Password
5239
+ description: The password for your Jira Data Center
5240
+ doc_section: '#step-2-finding-your-credentials'
5241
+
5052
5242
  jotform:
5053
5243
  display_name: Jotform
5054
5244
  categories:
@@ -6432,7 +6622,7 @@ odoo-cc:
6432
6622
  proxy:
6433
6623
  base_url: https://${connectionConfig.serverUrl}/restapi
6434
6624
  docs: https://docs.nango.dev/integrations/all/odoo-cc
6435
- docs_connect: https://docs.nango.dev/integrations/all/odoo/connect
6625
+ docs_connect: https://docs.nango.dev/integrations/all/odoo-cc/connect
6436
6626
  credentials:
6437
6627
  consumerId:
6438
6628
  type: string
@@ -7502,6 +7692,43 @@ reddit:
7502
7692
  base_url: https://oauth.reddit.com
7503
7693
  docs: https://docs.nango.dev/integrations/all/reddit
7504
7694
 
7695
+ redtail-crm-sandbox:
7696
+ display_name: Redtail CRM (Sandbox)
7697
+ categories:
7698
+ - crm
7699
+ auth_mode: TWO_STEP
7700
+ token_url: https://review.crm.redtailtechnology.com/api/public/v1/authentication
7701
+ token_request_method: GET
7702
+ token_headers:
7703
+ authorization: Basic ${base64(${credentials.apiKey}:${credentials.username}:${credentials.password})}
7704
+ token_response:
7705
+ token: authenticated_user.user_key
7706
+ proxy:
7707
+ headers:
7708
+ authorization: Userkeyauth ${base64(${credentials.apiKey}:${accessToken})}
7709
+ base_url: https://review.crm.redtailtechnology.com/api/public
7710
+ docs: https://docs.nango.dev/integrations/all/redtail-crm-sandbox
7711
+ docs_connect: https://docs.nango.dev/integrations/all/redtail-crm-sandbox/connect
7712
+ credentials:
7713
+ username:
7714
+ type: string
7715
+ title: Username
7716
+ description: The username for your Redtail CRM account
7717
+ doc_section: '#step-2-finding-your-credentials'
7718
+ password:
7719
+ type: string
7720
+ title: Password
7721
+ description: The password for your Redtail CRM account
7722
+ secret: true
7723
+ doc_section: '#step-2-finding-your-credentials'
7724
+ apiKey:
7725
+ type: string
7726
+ title: API Key
7727
+ description: The API Key for your Redtail CRM account
7728
+ example: f1c2d3a4-5b67-4c89-ae01-123456789abc
7729
+ format: uuid
7730
+ secret: true
7731
+ doc_section: '#step-1-finding-your-api-token'
7505
7732
  refiner:
7506
7733
  display_name: Refiner
7507
7734
  categories:
@@ -7667,6 +7894,30 @@ rock-gym-pro:
7667
7894
  title: API Password
7668
7895
  description: Your Rock Gym Pro API password
7669
7896
 
7897
+ rootly:
7898
+ display_name: Rootly
7899
+ categories:
7900
+ - dev-tools
7901
+ auth_mode: API_KEY
7902
+ proxy:
7903
+ headers:
7904
+ authorization: Bearer ${apiKey}
7905
+ base_url: https://api.rootly.com
7906
+ verification:
7907
+ method: GET
7908
+ endpoints:
7909
+ - /v1/users/me
7910
+ docs: https://docs.nango.dev/integrations/all/rootly
7911
+ docs_connect: https://docs.nango.dev/integrations/all/rootly/connect
7912
+ credentials:
7913
+ apiKey:
7914
+ type: string
7915
+ title: API Key
7916
+ description: The API key for your Rootly account
7917
+ example: rootly_db86a6••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
7918
+ pattern: '^rootly_[a-f0-9]{64}$'
7919
+ doc_section: '#step-1-generating-your-api-key'
7920
+
7670
7921
  segment:
7671
7922
  display_name: Segment
7672
7923
  categories:
@@ -8025,6 +8276,38 @@ sendgrid:
8025
8276
  description: The API key for your Sendgrid account
8026
8277
  doc_section: '#step-1-generating-your-sendgrid-api-key'
8027
8278
 
8279
+ sentry:
8280
+ display_name: Sentry
8281
+ categories:
8282
+ - dev-tools
8283
+ - analytics
8284
+ auth_mode: API_KEY
8285
+ proxy:
8286
+ base_url: https://${connectionConfig.hostname}/api
8287
+ headers:
8288
+ authorization: Bearer ${apiKey}
8289
+ docs: https://docs.nango.dev/integrations/all/sentry
8290
+ docs_connect: https://docs.nango.dev/integrations/all/sentry/connect
8291
+ connection_config:
8292
+ hostname:
8293
+ type: string
8294
+ title: Hostname
8295
+ description: The Hostname of your Sentry account
8296
+ example: us.sentry.io
8297
+ format: hostname
8298
+ pattern: '^[a-z0-9_-]+\.sentry\.io|^sentry\.io$'
8299
+ prefix: https://
8300
+ order: 1
8301
+ doc_section: '#step-1-finding-your-hostname'
8302
+ credentials:
8303
+ apiKey:
8304
+ type: string
8305
+ title: Auth Token
8306
+ description: The Authentication token for your Sentry account
8307
+ example: sntryu_795225***************b9864a*********************
8308
+ pattern: '^sntryu_[a-f0-9]{64}$'
8309
+ doc_section: '#step-2-generating-your-sentry-auth-token'
8310
+
8028
8311
  sedna:
8029
8312
  display_name: Sedna (OAuth)
8030
8313
  auth_mode: OAUTH2_CC