@nangohq/providers 0.52.2 → 0.52.3

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 +160 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.52.2",
3
+ "version": "0.52.3",
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.52.2",
14
+ "@nangohq/types": "0.52.3",
15
15
  "vitest": "2.1.8"
16
16
  },
17
17
  "files": [
package/providers.yaml CHANGED
@@ -3504,6 +3504,39 @@ gorgias:
3504
3504
  suffix: .gorgias.com
3505
3505
  prefix: https://
3506
3506
 
3507
+ grafana:
3508
+ display_name: Grafana
3509
+ categories:
3510
+ - dev-tools
3511
+ auth_mode: API_KEY
3512
+ proxy:
3513
+ base_url: https://${connectionConfig.domain}
3514
+ verification:
3515
+ endpoint: /api/access-control/user/permissions
3516
+ method: GET
3517
+ headers:
3518
+ authorization: Bearer ${apiKey}
3519
+ docs: https://docs.nango.dev/integrations/all/grafana
3520
+ docs_connect: https://docs.nango.dev/integrations/all/grafana/connect
3521
+ connection_config:
3522
+ domain:
3523
+ type: string
3524
+ title: Domain
3525
+ description: Your Grafana domain
3526
+ example: example.grafana.net
3527
+ prefix: https://
3528
+ format: hostname
3529
+ order: 1
3530
+ doc_section: '#step-1-finding-your-domain'
3531
+ credentials:
3532
+ apiKey:
3533
+ type: string
3534
+ title: Token
3535
+ description: The Token for your Grafana service account
3536
+ example: glsa_*****************************************
3537
+ pattern: '^[A-Za-z0-9_-]+$'
3538
+ doc_section: '#step-2-generating-your-service-account-token'
3539
+
3507
3540
  grain:
3508
3541
  display_name: Grain
3509
3542
  categories:
@@ -3593,6 +3626,98 @@ greenhouse-basic:
3593
3626
  suffix: .greenhouse.io
3594
3627
  prefix: https://
3595
3628
  order: 1
3629
+ doc_section: '#step-1-finding-your-greenhouse-api-domain'
3630
+ credentials:
3631
+ username:
3632
+ type: string
3633
+ title: API key
3634
+ description: The API Key of your Greenhouse account
3635
+ pattern: '^[a-zA-Z0-9-]+$'
3636
+ secret: true
3637
+ doc_section: '#step-2-finding-your-greenhouse-api-key'
3638
+ password:
3639
+ type: string
3640
+ title: Password
3641
+ description: Password
3642
+ # https://developers.greenhouse.io/harvest.html#authentication
3643
+ # Greenhouse is using basic auth with an api key
3644
+ default_value: ''
3645
+ hidden: true
3646
+
3647
+ greenhouse-harvest:
3648
+ display_name: Greenhouse (Harvest API)
3649
+ auth_mode: BASIC
3650
+ categories:
3651
+ - ats
3652
+ proxy:
3653
+ base_url: https://harvest.greenhouse.io
3654
+ retry:
3655
+ after: 'retry-after'
3656
+ docs: https://docs.nango.dev/integrations/all/greenhouse-harvest
3657
+ docs_connect: https://docs.nango.dev/integrations/all/greenhouse-harvest/connect
3658
+ credentials:
3659
+ username:
3660
+ type: string
3661
+ title: API key
3662
+ description: The API Key of your Greenhouse account
3663
+ pattern: '^[a-zA-Z0-9-]+$'
3664
+ secret: true
3665
+ doc_section: '#step-1-finding-your-greenhouse-api-key'
3666
+ password:
3667
+ type: string
3668
+ title: Password
3669
+ description: Password
3670
+ # https://developers.greenhouse.io/harvest.html#authentication
3671
+ # Greenhouse is using basic auth with an api key
3672
+ default_value: ''
3673
+ hidden: true
3674
+
3675
+ greenhouse-job-board:
3676
+ display_name: Greenhouse (Job Board API)
3677
+ auth_mode: BASIC
3678
+ categories:
3679
+ - ats
3680
+ proxy:
3681
+ base_url: https://boards-api.greenhouse.io
3682
+ docs: https://docs.nango.dev/integrations/all/greenhouse-job-board
3683
+ docs_connect: https://docs.nango.dev/integrations/all/greenhouse-job-board/connect
3684
+ credentials:
3685
+ username:
3686
+ type: string
3687
+ title: API key
3688
+ description: The API Key of your Greenhouse account
3689
+ pattern: '^[a-zA-Z0-9-]+$'
3690
+ secret: true
3691
+ doc_section: '#step-1-finding-your-greenhouse-api-key'
3692
+ password:
3693
+ type: string
3694
+ title: Password
3695
+ description: Password
3696
+ # https://developers.greenhouse.io/harvest.html#authentication
3697
+ # Greenhouse is using basic auth with an api key
3698
+ default_value: ''
3699
+ hidden: true
3700
+
3701
+ greenhouse-assessment:
3702
+ display_name: Greenhouse (Assessment API)
3703
+ auth_mode: BASIC
3704
+ categories:
3705
+ - ats
3706
+ proxy:
3707
+ base_url: https://${connectionConfig.baseUrl}
3708
+ docs: https://docs.nango.dev/integrations/all/greenhouse-assessment
3709
+ docs_connect: https://docs.nango.dev/integrations/all/greenhouse-assessment/connect
3710
+ connection_config:
3711
+ baseUrl:
3712
+ type: string
3713
+ title: Assessment Base Url
3714
+ description: The Assessment API Base Url you want to connect to
3715
+ pattern: '^[a-z0-9_-]+$'
3716
+ example: www.testing-partner.com
3717
+ prefix: https://
3718
+ format: hostname
3719
+ order: 1
3720
+ doc_section: '#step-1-obtaining-your-base-url'
3596
3721
  credentials:
3597
3722
  username:
3598
3723
  type: string
@@ -3600,7 +3725,7 @@ greenhouse-basic:
3600
3725
  description: The API Key of your Greenhouse account
3601
3726
  pattern: '^[a-zA-Z0-9-]+$'
3602
3727
  secret: true
3603
- doc_section: '#step-1-finding-greenhouse-api-key'
3728
+ doc_section: '#step-2-obtaining-your-api-key'
3604
3729
  password:
3605
3730
  type: string
3606
3731
  title: Password
@@ -3610,6 +3735,40 @@ greenhouse-basic:
3610
3735
  default_value: ''
3611
3736
  hidden: true
3612
3737
 
3738
+ greenhouse-ingestion:
3739
+ display_name: Greenhouse (Ingestion API)
3740
+ auth_mode: OAUTH2
3741
+ authorization_url: https://api.greenhouse.io/oauth/authorize
3742
+ token_url: https://api.greenhouse.io/oauth/token
3743
+ categories:
3744
+ - ats
3745
+ proxy:
3746
+ base_url: https://api.greenhouse.io
3747
+ docs: https://docs.nango.dev/integrations/all/greenhouse-ingestion
3748
+
3749
+ greenhouse-onboarding:
3750
+ display_name: Greenhouse (Onboarding API)
3751
+ auth_mode: BASIC
3752
+ categories:
3753
+ - ats
3754
+ proxy:
3755
+ base_url: https://onboarding-api.greenhouse.io/graphql
3756
+ credentials:
3757
+ username:
3758
+ type: string
3759
+ title: Access Key
3760
+ description: The Access Key to your Greenhouse Onboarding account
3761
+ pattern: '^[a-zA-Z0-9-]+$'
3762
+ doc_section: '#step-1-generating-your-access-and-secret-key'
3763
+ password:
3764
+ type: string
3765
+ title: Secret Key
3766
+ description: The Secret Key to your Greenhouse Onboarding account
3767
+ pattern: '^[a-zA-Z0-9-]+$'
3768
+ doc_section: '#step-1-generating-your-access-and-secret-key'
3769
+ docs: https://docs.nango.dev/integrations/all/greenhouse-onboarding
3770
+ docs_connect: https://docs.nango.dev/integrations/all/greenhouse-onboarding/connect
3771
+
3613
3772
  gumroad:
3614
3773
  display_name: Gumroad
3615
3774
  categories: