@vm0/cli 9.96.0 → 9.97.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.
- package/{chunk-T53WM66Z.js → chunk-HWEQWUNR.js} +141 -12
- package/chunk-HWEQWUNR.js.map +1 -0
- package/index.js +30 -22
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/zero.js +2 -2
- package/chunk-T53WM66Z.js.map +0 -1
|
@@ -49,7 +49,7 @@ if (DSN) {
|
|
|
49
49
|
Sentry.init({
|
|
50
50
|
dsn: DSN,
|
|
51
51
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
52
|
-
release: "9.
|
|
52
|
+
release: "9.97.0",
|
|
53
53
|
sendDefaultPii: false,
|
|
54
54
|
tracesSampleRate: 0,
|
|
55
55
|
shutdownTimeout: 500,
|
|
@@ -68,7 +68,7 @@ if (DSN) {
|
|
|
68
68
|
}
|
|
69
69
|
});
|
|
70
70
|
Sentry.setContext("cli", {
|
|
71
|
-
version: "9.
|
|
71
|
+
version: "9.97.0",
|
|
72
72
|
command: process.argv.slice(2).join(" ")
|
|
73
73
|
});
|
|
74
74
|
Sentry.setContext("runtime", {
|
|
@@ -745,7 +745,8 @@ var firewallPermissionSchema = z4.object({
|
|
|
745
745
|
var firewallApiSchema = z4.object({
|
|
746
746
|
base: z4.string(),
|
|
747
747
|
auth: z4.object({
|
|
748
|
-
headers: z4.record(z4.string(), z4.string())
|
|
748
|
+
headers: z4.record(z4.string(), z4.string()),
|
|
749
|
+
base: z4.string().optional()
|
|
749
750
|
}),
|
|
750
751
|
permissions: z4.array(firewallPermissionSchema).optional()
|
|
751
752
|
});
|
|
@@ -1299,10 +1300,11 @@ var networkLogEntrySchema = z8.object({
|
|
|
1299
1300
|
firewall_rule_match: z8.string().optional(),
|
|
1300
1301
|
firewall_params: z8.record(z8.string(), z8.string()).optional(),
|
|
1301
1302
|
firewall_error: z8.string().optional(),
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1303
|
+
auth_resolved_secrets: z8.array(z8.string()).optional(),
|
|
1304
|
+
auth_refreshed_connectors: z8.array(z8.string()).optional(),
|
|
1305
|
+
auth_refreshed_secrets: z8.array(z8.string()).optional(),
|
|
1306
|
+
auth_cache_hit: z8.boolean().optional(),
|
|
1307
|
+
auth_url_rewrite: z8.boolean().optional(),
|
|
1306
1308
|
error: z8.string().optional()
|
|
1307
1309
|
});
|
|
1308
1310
|
var networkLogsResponseSchema = z8.object({
|
|
@@ -1973,10 +1975,11 @@ var networkLogSchema = z10.object({
|
|
|
1973
1975
|
firewall_rule_match: z10.string().optional(),
|
|
1974
1976
|
firewall_params: z10.record(z10.string(), z10.string()).optional(),
|
|
1975
1977
|
firewall_error: z10.string().optional(),
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1978
|
+
auth_resolved_secrets: z10.array(z10.string()).optional(),
|
|
1979
|
+
auth_refreshed_connectors: z10.array(z10.string()).optional(),
|
|
1980
|
+
auth_refreshed_secrets: z10.array(z10.string()).optional(),
|
|
1981
|
+
auth_cache_hit: z10.boolean().optional(),
|
|
1982
|
+
auth_url_rewrite: z10.boolean().optional(),
|
|
1980
1983
|
error: z10.string().optional()
|
|
1981
1984
|
});
|
|
1982
1985
|
var webhookTelemetryContract = c6.router({
|
|
@@ -3203,6 +3206,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
3203
3206
|
},
|
|
3204
3207
|
"api-token": {
|
|
3205
3208
|
label: "API Token",
|
|
3209
|
+
helpText: "1. Log in to [Ahrefs](https://ahrefs.com) as a workspace owner or admin\n2. Go to **Account settings > API keys**\n3. Create a new API key\n4. Copy the API key and use it in the `Authorization: Bearer <YOUR_API_KEY>` header",
|
|
3206
3210
|
secrets: {
|
|
3207
3211
|
AHREFS_TOKEN: {
|
|
3208
3212
|
label: "API Token",
|
|
@@ -3569,6 +3573,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
3569
3573
|
authMethods: {
|
|
3570
3574
|
"api-token": {
|
|
3571
3575
|
label: "API Key",
|
|
3576
|
+
helpText: "1. Log in to [HeyGen](https://app.heygen.com)\n2. Navigate to **Settings > API > API token**\n3. Click to generate your API key\n4. Copy and save the key immediately \u2014 you cannot retrieve it after leaving the page, and regenerating a new key will invalidate the previous one",
|
|
3572
3577
|
secrets: {
|
|
3573
3578
|
HEYGEN_TOKEN: {
|
|
3574
3579
|
label: "API Key",
|
|
@@ -3772,6 +3777,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
3772
3777
|
},
|
|
3773
3778
|
"api-token": {
|
|
3774
3779
|
label: "Access Token",
|
|
3780
|
+
helpText: "1. Go to the [Dropbox App Console](https://www.dropbox.com/developers/apps)\n2. Select your app (or create a new one)\n3. Click the button to generate an access token for your own account\n4. Copy the generated OAuth 2 access token",
|
|
3775
3781
|
secrets: {
|
|
3776
3782
|
DROPBOX_TOKEN: {
|
|
3777
3783
|
label: "Access Token",
|
|
@@ -3836,6 +3842,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
3836
3842
|
authMethods: {
|
|
3837
3843
|
"api-token": {
|
|
3838
3844
|
label: "Access Token",
|
|
3845
|
+
helpText: "1. Sign up at the [Intercom Developer Hub](https://app.intercom.com/admins/sign_up/developer) on your Intercom workspace\n2. Create a new app in the Developer Hub\n3. Navigate to **Configure > Authentication** within your app in the [Developer Hub](https://app.intercom.io/a/apps/_/developer-hub/app-packages)\n4. Copy your access token",
|
|
3839
3846
|
secrets: {
|
|
3840
3847
|
INTERCOM_TOKEN: {
|
|
3841
3848
|
label: "Access Token",
|
|
@@ -3855,6 +3862,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
3855
3862
|
authMethods: {
|
|
3856
3863
|
"api-token": {
|
|
3857
3864
|
label: "API Key",
|
|
3865
|
+
helpText: "1. Log in to [Instantly](https://app.instantly.ai)\n2. Navigate to **Settings > Integrations** at https://app.instantly.ai/app/settings/integrations\n3. Click the **API Keys** section in the left sidebar\n4. Click the **Create API Key** button\n5. Enter a name for the API key\n6. Select the scopes (permissions) you want the API key to have\n7. Click **Create**\n8. Copy the key and store it in a secure place (it will only be displayed once)",
|
|
3858
3866
|
secrets: {
|
|
3859
3867
|
INSTANTLY_API_KEY: {
|
|
3860
3868
|
label: "API Key",
|
|
@@ -3875,6 +3883,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
3875
3883
|
authMethods: {
|
|
3876
3884
|
"api-token": {
|
|
3877
3885
|
label: "Personal Access Token",
|
|
3886
|
+
helpText: '1. Log in to [Jam](https://jam.dev)\n2. Go to **Settings > Integrations > AI Agents**\n3. Scroll down to the **Personal Access Tokens** section\n4. Click **Create token**\n5. Enter a name for the token (e.g., "Cursor" or "Claude Code")\n6. Choose an expiration period (7 days, 30 days, 90 days, or 1 year)\n7. Select at least one scope (`mcp:read` for viewing or `mcp:write` for editing)\n8. Click **Create**\n9. Copy the token immediately (it will not be displayed again)',
|
|
3878
3887
|
secrets: {
|
|
3879
3888
|
JAM_TOKEN: {
|
|
3880
3889
|
label: "Personal Access Token",
|
|
@@ -3897,6 +3906,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
3897
3906
|
authMethods: {
|
|
3898
3907
|
"api-token": {
|
|
3899
3908
|
label: "API Token",
|
|
3909
|
+
helpText: "1. Go to [Atlassian API token management](https://id.atlassian.com/manage-profile/security/api-tokens)\n2. Log in to your Atlassian account\n3. Click **Create API token**\n4. Enter a name that describes what the token is for\n5. Choose an expiration date (between 1 and 365 days)\n6. Click **Create**\n7. Click **Copy to clipboard** and save the token in a secure place (you cannot recover it later)",
|
|
3900
3910
|
secrets: {
|
|
3901
3911
|
JIRA_API_TOKEN: {
|
|
3902
3912
|
label: "API Token",
|
|
@@ -3949,6 +3959,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
3949
3959
|
authMethods: {
|
|
3950
3960
|
"api-token": {
|
|
3951
3961
|
label: "API Key",
|
|
3962
|
+
helpText: "1. Log in to [Kommo](https://www.kommo.com) and create a **private integration**\n2. Go to the **Keys and Scopes** tab in your private integration settings\n3. Click **Generate long-lived token**\n4. Set the token expiration date (from 1 day to 5 years)\n5. Copy and save the token immediately (it will only be displayed once)",
|
|
3952
3963
|
secrets: {
|
|
3953
3964
|
KOMMO_API_KEY: {
|
|
3954
3965
|
label: "API Key",
|
|
@@ -4015,6 +4026,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4015
4026
|
authMethods: {
|
|
4016
4027
|
"api-token": {
|
|
4017
4028
|
label: "API Token",
|
|
4029
|
+
helpText: "1. Log in to [Make](https://www.make.com)\n2. Click your **avatar** at the bottom-left corner\n3. Select **Profile**, then open the **API** tab\n4. Click **Add token**\n5. Enter a **Label** (custom name to identify the token)\n6. Select the required **Scopes** (permissions)\n7. Click **Save**\n8. Copy the token and store it in a safe place (it will be hidden once you leave the page)",
|
|
4018
4030
|
secrets: {
|
|
4019
4031
|
MAKE_TOKEN: {
|
|
4020
4032
|
label: "API Token",
|
|
@@ -4076,6 +4088,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4076
4088
|
},
|
|
4077
4089
|
"api-token": {
|
|
4078
4090
|
label: "API Token",
|
|
4091
|
+
helpText: "1. Create a [Deel](https://app.deel.com) account and verify your email\n2. Navigate to the **Developer Center**\n3. Select the **API Sandbox** tab (or **Production** for live credentials)\n4. Click **Create Sandbox** and enter a unique email and password\n5. Click **Confirm** to finalize sandbox creation\n6. Locate your **API Key / Access Token** in the Developer Center\n7. Copy and store the token securely",
|
|
4079
4092
|
secrets: {
|
|
4080
4093
|
DEEL_TOKEN: {
|
|
4081
4094
|
label: "API Token",
|
|
@@ -4109,6 +4122,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4109
4122
|
authMethods: {
|
|
4110
4123
|
"api-token": {
|
|
4111
4124
|
label: "API Key",
|
|
4125
|
+
helpText: "1. Go to the [DeepSeek Platform](https://platform.deepseek.com/api_keys)\n2. Sign up for an account or log in\n3. Navigate to the **API Keys** page\n4. Create a new API key and copy it",
|
|
4112
4126
|
secrets: {
|
|
4113
4127
|
DEEPSEEK_TOKEN: {
|
|
4114
4128
|
label: "API Key",
|
|
@@ -4129,6 +4143,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4129
4143
|
authMethods: {
|
|
4130
4144
|
"api-token": {
|
|
4131
4145
|
label: "API Token",
|
|
4146
|
+
helpText: "1. Log in to [ClickUp](https://app.clickup.com)\n2. Click your avatar in the upper-right corner and select **Settings**\n3. In the sidebar, click **Apps** (or visit [app.clickup.com/settings/apps](https://app.clickup.com/settings/apps))\n4. Under the **API Token** section, click **Generate** (or **Regenerate** if you already have one)\n5. Click **Copy** to copy the personal token (tokens start with `pk_` and never expire)",
|
|
4132
4147
|
secrets: {
|
|
4133
4148
|
CLICKUP_TOKEN: {
|
|
4134
4149
|
label: "API Token",
|
|
@@ -4202,6 +4217,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4202
4217
|
authMethods: {
|
|
4203
4218
|
"api-token": {
|
|
4204
4219
|
label: "API Key",
|
|
4220
|
+
helpText: "1. Log in to the [Cronlytic dashboard](https://www.cronlytic.com/dashboard)\n2. Go to the **API Keys** section\n3. Click **Generate New API Key**\n4. Copy your **API Key** and **User ID** (both are required for authentication via `X-API-Key` and `X-User-ID` headers)",
|
|
4205
4221
|
secrets: {
|
|
4206
4222
|
CRONLYTIC_API_KEY: {
|
|
4207
4223
|
label: "API Key",
|
|
@@ -4226,6 +4242,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4226
4242
|
authMethods: {
|
|
4227
4243
|
"api-token": {
|
|
4228
4244
|
label: "API Token",
|
|
4245
|
+
helpText: "1. Log in to your [Customer.io](https://fly.customer.io) account\n2. Go to **Account Settings > [API Credentials](https://fly.customer.io/settings/api_credentials)**\n3. Locate your **Site ID** and **API Key** on the Track API Keys page\n4. Copy both values (they are used together as basic authentication credentials in the format `site_id:api_key`, Base64-encoded)",
|
|
4229
4246
|
secrets: {
|
|
4230
4247
|
CUSTOMERIO_APP_TOKEN: {
|
|
4231
4248
|
label: "App API Key",
|
|
@@ -4245,6 +4262,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4245
4262
|
authMethods: {
|
|
4246
4263
|
"api-token": {
|
|
4247
4264
|
label: "API Key",
|
|
4265
|
+
helpText: "1. Log in to [Dify](https://cloud.dify.ai)\n2. Open your app and navigate to **API Access** in the left sidebar\n3. Click to generate new API credentials\n4. Copy the API key",
|
|
4248
4266
|
secrets: {
|
|
4249
4267
|
DIFY_TOKEN: {
|
|
4250
4268
|
label: "API Key",
|
|
@@ -4280,6 +4298,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4280
4298
|
},
|
|
4281
4299
|
"api-token": {
|
|
4282
4300
|
label: "Personal Access Token",
|
|
4301
|
+
helpText: "1. Log in to [Figma](https://www.figma.com) and open the file browser\n2. Click the account menu in the top-left corner and select **Settings**\n3. Select the **Security** tab\n4. Scroll to the **Personal access tokens** section and click **Generate new token**\n5. Enter a name for the token, assign the desired scopes, and press Return/Enter\n6. Copy the generated token immediately \u2014 it will not be shown again",
|
|
4283
4302
|
secrets: {
|
|
4284
4303
|
FIGMA_TOKEN: {
|
|
4285
4304
|
label: "Personal Access Token",
|
|
@@ -4356,6 +4375,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4356
4375
|
authMethods: {
|
|
4357
4376
|
"api-token": {
|
|
4358
4377
|
label: "API Key",
|
|
4378
|
+
helpText: "1. Log in to [MiniMax Platform](https://platform.minimax.io)\n2. Go to **User Center > Basic Information > Interface Key**\n3. Create a new API key\n4. Copy the key",
|
|
4359
4379
|
secrets: {
|
|
4360
4380
|
MINIMAX_TOKEN: {
|
|
4361
4381
|
label: "API Key",
|
|
@@ -4376,6 +4396,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4376
4396
|
authMethods: {
|
|
4377
4397
|
"api-token": {
|
|
4378
4398
|
label: "API Token",
|
|
4399
|
+
helpText: "1. Log in to [Reportei](https://app.reportei.com)\n2. Go to **Company Settings** (Configura\xE7\xF5es da Empresa)\n3. Navigate to the **API Reportei** section\n4. Click **Generate new token** or copy your existing token",
|
|
4379
4400
|
secrets: {
|
|
4380
4401
|
REPORTEI_TOKEN: {
|
|
4381
4402
|
label: "API Token",
|
|
@@ -4396,6 +4417,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4396
4417
|
authMethods: {
|
|
4397
4418
|
"api-token": {
|
|
4398
4419
|
label: "API Key",
|
|
4420
|
+
helpText: "1. Go to [SerpApi](https://serpapi.com) and sign up for an account (free plan available with 250 searches/month)\n2. Log in and go to your [Dashboard](https://serpapi.com/dashboard)\n3. Your API key is displayed on the dashboard\n4. Copy the API key",
|
|
4399
4421
|
secrets: {
|
|
4400
4422
|
SERPAPI_TOKEN: {
|
|
4401
4423
|
label: "API Key",
|
|
@@ -4597,6 +4619,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4597
4619
|
},
|
|
4598
4620
|
"api-token": {
|
|
4599
4621
|
label: "API Key",
|
|
4622
|
+
helpText: "1. Log in to [Neon Console](https://console.neon.tech)\n2. Navigate to **Account settings > API keys**\n3. Click the button to create a new API key\n4. Copy and store the secret token immediately (it is only displayed once)",
|
|
4600
4623
|
secrets: {
|
|
4601
4624
|
NEON_TOKEN: {
|
|
4602
4625
|
label: "API Key",
|
|
@@ -4755,6 +4778,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
4755
4778
|
},
|
|
4756
4779
|
"api-token": {
|
|
4757
4780
|
label: "Personal API Key",
|
|
4781
|
+
helpText: "1. Log in to [PostHog](https://app.posthog.com)\n2. Navigate to **Personal API keys** in your account settings\n3. Click **+ Create a personal API Key**\n4. Enter a descriptive label for the key\n5. Choose the scopes (permissions) required for your use case\n6. Copy the key immediately (it will not be shown again after refreshing the page)",
|
|
4758
4782
|
secrets: {
|
|
4759
4783
|
POSTHOG_TOKEN: {
|
|
4760
4784
|
label: "Personal API Key",
|
|
@@ -5046,6 +5070,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5046
5070
|
},
|
|
5047
5071
|
"api-token": {
|
|
5048
5072
|
label: "Service Role Key",
|
|
5073
|
+
helpText: "1. Log in to the [Supabase Dashboard](https://supabase.com/dashboard)\n2. Open your project's **Connect** dialog, or go to **Project Settings > API Keys**\n3. For legacy keys, copy the `anon` key (for client-side) or `service_role` key (for server-side) from the **Legacy API Keys** tab\n4. For new keys, open the **API Keys** tab, click **Create new API Keys** if needed, and copy the value from the **Publishable key** section",
|
|
5049
5074
|
secrets: {
|
|
5050
5075
|
SUPABASE_TOKEN: {
|
|
5051
5076
|
label: "Service Role Key",
|
|
@@ -5120,6 +5145,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5120
5145
|
},
|
|
5121
5146
|
"api-token": {
|
|
5122
5147
|
label: "Site Token",
|
|
5148
|
+
helpText: "1. Log in to [Webflow](https://webflow.com) (site administrator access required)\n2. In your workspace, find the site and click the gear icon to open **Site Settings**\n3. In the left sidebar, select **Apps & integrations**\n4. Scroll to the bottom of the page to the **API access** section\n5. Click **Generate API token**\n6. Enter a name for your token and choose the required scopes\n7. Click **Generate token**\n8. Copy the generated token and save it in a secure location",
|
|
5123
5149
|
secrets: {
|
|
5124
5150
|
WEBFLOW_TOKEN: {
|
|
5125
5151
|
label: "Site Token",
|
|
@@ -5161,6 +5187,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5161
5187
|
authMethods: {
|
|
5162
5188
|
"api-token": {
|
|
5163
5189
|
label: "Permanent Access Token",
|
|
5190
|
+
helpText: "1. Navigate to your [Wrike](https://www.wrike.com) workspace\n2. Click on your **profile icon** in the navigation bar\n3. Select **Apps & Integrations**\n4. Click on **API**\n5. Click **+ App**\n6. Enter a name for your integration\n7. Click **Get Token** at the bottom of the window\n8. Copy and securely store your token \u2014 it will not be shown again after closing the page\n9. Click **Save**",
|
|
5164
5191
|
secrets: {
|
|
5165
5192
|
WRIKE_TOKEN: {
|
|
5166
5193
|
label: "Permanent Access Token",
|
|
@@ -5360,6 +5387,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5360
5387
|
authMethods: {
|
|
5361
5388
|
"api-token": {
|
|
5362
5389
|
label: "API Key",
|
|
5390
|
+
helpText: "1. Log in to [OpenAI Platform](https://platform.openai.com)\n2. Navigate to the [API Keys](https://platform.openai.com/api-keys) page in the dashboard\n3. Create a new API key\n4. Copy and store the key in a safe location",
|
|
5363
5391
|
secrets: {
|
|
5364
5392
|
OPENAI_TOKEN: {
|
|
5365
5393
|
label: "API Key",
|
|
@@ -5380,6 +5408,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5380
5408
|
authMethods: {
|
|
5381
5409
|
"api-token": {
|
|
5382
5410
|
label: "API Key",
|
|
5411
|
+
helpText: "1. Log in to the [Similarweb platform](https://pro.similarweb.com/) (admin access required)\n2. From the main menu on the left, select **Settings & Help**, then select **Account**\n3. Under **Data Tools**, select either **REST API** or **Batch API**\n4. Click **Generate a New API Key** on the right\n5. Type the name of the API key, then select whether this is for yourself or another user\n6. Click **Create** \u2014 your key will be displayed in the Generated Keys table\n7. In the Generated Keys table, ensure the **Activation** toggle is on for the relevant API key",
|
|
5383
5412
|
secrets: {
|
|
5384
5413
|
SIMILARWEB_TOKEN: {
|
|
5385
5414
|
label: "API Key",
|
|
@@ -5400,6 +5429,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5400
5429
|
authMethods: {
|
|
5401
5430
|
"api-token": {
|
|
5402
5431
|
label: "API Key",
|
|
5432
|
+
helpText: '1. Log in to the [Perplexity Console](https://console.perplexity.ai)\n2. Navigate to the **API Groups** page and create an API group (e.g., "Production" or "Development")\n3. Go to the **API Keys** page\n4. Generate a new API key\n5. Store the key immediately and securely (you will only see the full token value once)',
|
|
5403
5433
|
secrets: {
|
|
5404
5434
|
PERPLEXITY_TOKEN: {
|
|
5405
5435
|
label: "API Key",
|
|
@@ -5452,6 +5482,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5452
5482
|
},
|
|
5453
5483
|
"api-token": {
|
|
5454
5484
|
label: "API Key",
|
|
5485
|
+
helpText: "1. Log in to [Mailchimp](https://mailchimp.com)\n2. Click your **profile icon** and select **Profile**\n3. Click the **Extras** dropdown menu, then choose **API keys**\n4. In the **Your API Keys** section, click **Create A Key**\n5. Enter a descriptive name for the key\n6. Click **Generate Key**\n7. Click **Copy Key to Clipboard** and store it in a secure place (you will not be able to see or copy it again)\n8. Click **Done**",
|
|
5455
5486
|
secrets: {
|
|
5456
5487
|
MAILCHIMP_TOKEN: {
|
|
5457
5488
|
label: "API Key",
|
|
@@ -5477,6 +5508,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5477
5508
|
authMethods: {
|
|
5478
5509
|
"api-token": {
|
|
5479
5510
|
label: "API Access Token",
|
|
5511
|
+
helpText: "1. Log in to [Chatwoot](https://app.chatwoot.com) with an administrator account\n2. Click on your **avatar image** in the bottom left corner of the screen\n3. Select **Profile Settings** from the menu\n4. Scroll to the bottom of the Profile Settings page\n5. Copy the **Personal Access Token** displayed there",
|
|
5480
5512
|
secrets: {
|
|
5481
5513
|
CHATWOOT_TOKEN: {
|
|
5482
5514
|
label: "API Access Token",
|
|
@@ -5498,6 +5530,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5498
5530
|
authMethods: {
|
|
5499
5531
|
"api-token": {
|
|
5500
5532
|
label: "API Key",
|
|
5533
|
+
helpText: "1. Log in to [Resend](https://resend.com)\n2. Navigate to the [API Keys](https://resend.com/api-keys) page\n3. Click **Create API Key**\n4. Enter a name for your key (up to 50 characters)\n5. Select the permission level: **Full access** or **Sending access**\n6. If choosing sending access, select which domain the key can access\n7. Copy the generated API key",
|
|
5501
5534
|
secrets: {
|
|
5502
5535
|
RESEND_TOKEN: {
|
|
5503
5536
|
label: "API Key",
|
|
@@ -5518,6 +5551,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5518
5551
|
authMethods: {
|
|
5519
5552
|
"api-token": {
|
|
5520
5553
|
label: "Secret API Key",
|
|
5554
|
+
helpText: "1. Log in to [RevenueCat](https://app.revenuecat.com)\n2. Navigate to the **API keys** section in your project dashboard\n3. Public API keys are automatically created when you add an app to your project\n4. To create a secret API key, click **+ New secret API key** in the API keys section\n5. Copy and store the key securely (never embed secret keys in client-side code)",
|
|
5521
5555
|
secrets: {
|
|
5522
5556
|
REVENUECAT_TOKEN: {
|
|
5523
5557
|
label: "Secret API Key",
|
|
@@ -5538,6 +5572,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5538
5572
|
authMethods: {
|
|
5539
5573
|
"api-token": {
|
|
5540
5574
|
label: "API Key",
|
|
5575
|
+
helpText: "1. Register for an account at [PDF4me](https://portal.pdf4me.com) using email/password or via Google, Microsoft, Apple, or Facebook\n2. Go to the **Billing Info** section and select **Start Free Trial**\n3. After activation, you will be redirected to the **Dashboard**\n4. Find and copy your API Key from the Dashboard",
|
|
5541
5576
|
secrets: {
|
|
5542
5577
|
PDF4ME_TOKEN: {
|
|
5543
5578
|
label: "API Key",
|
|
@@ -5579,6 +5614,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5579
5614
|
authMethods: {
|
|
5580
5615
|
"api-token": {
|
|
5581
5616
|
label: "Webhook URL",
|
|
5617
|
+
helpText: "1. Log in to your [Bitrix24](https://www.bitrix24.com) account\n2. Go to **Applications > Developer resources**\n3. Select the **Ready-made scenarios** tab\n4. Choose **Other > Incoming webhook**\n5. Configure the webhook name and set access permissions\n6. Click **Execute** to test the webhook\n7. Copy the generated webhook URL, which contains your secret code in the format `https://<domain>/rest/1/<secret-code>/<method>.json`",
|
|
5582
5618
|
secrets: {
|
|
5583
5619
|
BITRIX_WEBHOOK_URL: {
|
|
5584
5620
|
label: "Webhook URL",
|
|
@@ -5620,6 +5656,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5620
5656
|
authMethods: {
|
|
5621
5657
|
"api-token": {
|
|
5622
5658
|
label: "API Key",
|
|
5659
|
+
helpText: "1. Go to the [Brave Search API dashboard](https://api-dashboard.search.brave.com/register) and sign up for an account\n2. Provide a credit card for identity verification (free plans will not be charged)\n3. After registration, your API key will be available in the dashboard\n4. Copy the API key and use it in the `X-Subscription-Token` request header",
|
|
5623
5660
|
secrets: {
|
|
5624
5661
|
BRAVE_API_KEY: {
|
|
5625
5662
|
label: "API Key",
|
|
@@ -5661,6 +5698,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5661
5698
|
authMethods: {
|
|
5662
5699
|
"api-token": {
|
|
5663
5700
|
label: "API Token",
|
|
5701
|
+
helpText: "1. Sign up for a [Browserbase](https://www.browserbase.com/sign-up) account\n2. Log in and navigate to the **Overview** dashboard\n3. Your **Project ID** and **API key** are displayed on the right side of the Overview page\n4. Copy the API key",
|
|
5664
5702
|
secrets: {
|
|
5665
5703
|
BROWSERBASE_TOKEN: {
|
|
5666
5704
|
label: "API Token",
|
|
@@ -5685,6 +5723,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5685
5723
|
authMethods: {
|
|
5686
5724
|
"api-token": {
|
|
5687
5725
|
label: "API Token",
|
|
5726
|
+
helpText: "1. Sign up or log in at [Browserless](https://browserless.io/account/)\n2. Navigate to the account dashboard\n3. Copy your API token from the dashboard",
|
|
5688
5727
|
secrets: {
|
|
5689
5728
|
BROWSERLESS_TOKEN: {
|
|
5690
5729
|
label: "API Token",
|
|
@@ -5704,6 +5743,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5704
5743
|
authMethods: {
|
|
5705
5744
|
"api-token": {
|
|
5706
5745
|
label: "API Token",
|
|
5746
|
+
helpText: "1. Log in to [Fireflies](https://fireflies.ai)\n2. Navigate to the **Integrations** section\n3. Click on **Fireflies API**\n4. Copy your API key and store it securely",
|
|
5707
5747
|
secrets: {
|
|
5708
5748
|
FIREFLIES_TOKEN: {
|
|
5709
5749
|
label: "API Token",
|
|
@@ -5783,6 +5823,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5783
5823
|
authMethods: {
|
|
5784
5824
|
"api-token": {
|
|
5785
5825
|
label: "API Key",
|
|
5826
|
+
helpText: "1. Log in to [ElevenLabs](https://elevenlabs.io)\n2. Go to [Settings > API Keys](https://elevenlabs.io/app/settings/api-keys)\n3. Click to create a new API key\n4. Copy the key and store it securely",
|
|
5786
5827
|
secrets: {
|
|
5787
5828
|
ELEVENLABS_TOKEN: {
|
|
5788
5829
|
label: "API Key",
|
|
@@ -5803,6 +5844,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5803
5844
|
authMethods: {
|
|
5804
5845
|
"api-token": {
|
|
5805
5846
|
label: "API Key",
|
|
5847
|
+
helpText: "1. Log in to the [Explorium Admin Portal](https://admin.explorium.ai)\n2. Navigate to **Access & Authentication > Getting Your API Key**\n3. Click the **Show Key** button to reveal the masked API key\n4. Click the **Copy Key** button to copy it",
|
|
5806
5848
|
secrets: {
|
|
5807
5849
|
EXPLORIUM_TOKEN: {
|
|
5808
5850
|
label: "API Key",
|
|
@@ -5823,6 +5865,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5823
5865
|
authMethods: {
|
|
5824
5866
|
"api-token": {
|
|
5825
5867
|
label: "API Key",
|
|
5868
|
+
helpText: "1. Log in to [DEV.to](https://dev.to)\n2. Go to **Settings > Extensions** (or visit [dev.to/settings/extensions](https://dev.to/settings/extensions))\n3. Generate a new API key from the settings page\n4. Copy the API key and use it in the `api-key` request header",
|
|
5826
5869
|
secrets: {
|
|
5827
5870
|
DEVTO_TOKEN: {
|
|
5828
5871
|
label: "API Key",
|
|
@@ -5843,6 +5886,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5843
5886
|
authMethods: {
|
|
5844
5887
|
"api-token": {
|
|
5845
5888
|
label: "API Key",
|
|
5889
|
+
helpText: "1. Go to the [fal Dashboard Keys page](https://fal.ai/dashboard/keys)\n2. Click the **Create Key** button\n3. Provide a name for your key and select the appropriate scope (**API** for calling models, or **ADMIN** for full access)\n4. Copy the key immediately \u2014 you will not be able to see it again",
|
|
5846
5890
|
secrets: {
|
|
5847
5891
|
FAL_TOKEN: {
|
|
5848
5892
|
label: "API Key",
|
|
@@ -5863,6 +5907,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5863
5907
|
authMethods: {
|
|
5864
5908
|
"api-token": {
|
|
5865
5909
|
label: "API Key",
|
|
5910
|
+
helpText: "1. Open the [Granola](https://granola.ai) desktop app\n2. Go to **Settings > API**\n3. Click the **Create new key** button\n4. Choose a key type (if prompted) and click **Generate API Key**\n5. Copy and save the API key securely",
|
|
5866
5911
|
secrets: {
|
|
5867
5912
|
GRANOLA_TOKEN: {
|
|
5868
5913
|
label: "API Key",
|
|
@@ -5883,6 +5928,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5883
5928
|
authMethods: {
|
|
5884
5929
|
"api-token": {
|
|
5885
5930
|
label: "API Token",
|
|
5931
|
+
helpText: "1. Log in to [Podchaser](https://www.podchaser.com)\n2. Go to [Profile > Settings > API](https://www.podchaser.com/profile/settings/api) to retrieve your **API Key** and **API Secret**\n3. Request an access token by sending a POST request to `https://api.podchaser.com/graphql` using the `requestAccessToken` mutation with `grant_type` set to `CLIENT_CREDENTIALS`, your API Key as `client_id`, and your API Secret as `client_secret`\n4. Store the returned access token (it lasts 1 year)",
|
|
5886
5932
|
secrets: {
|
|
5887
5933
|
PODCHASER_TOKEN: {
|
|
5888
5934
|
label: "API Token",
|
|
@@ -5951,6 +5997,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5951
5997
|
authMethods: {
|
|
5952
5998
|
"api-token": {
|
|
5953
5999
|
label: "Access Token",
|
|
6000
|
+
helpText: "1. Log in to [Qiita](https://qiita.com)\n2. Go to **Settings > Applications**\n3. Create a new access token with the desired scopes (e.g., `read_qiita`, `write_qiita`)\n4. Copy the generated token\n5. Use it in API requests with the header `Authorization: Bearer [your_token]`",
|
|
5954
6001
|
secrets: {
|
|
5955
6002
|
QIITA_TOKEN: {
|
|
5956
6003
|
label: "Access Token",
|
|
@@ -5971,6 +6018,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5971
6018
|
authMethods: {
|
|
5972
6019
|
"api-token": {
|
|
5973
6020
|
label: "Send Mail Token",
|
|
6021
|
+
helpText: "1. Log in to [ZeptoMail](https://zeptomail.zoho.com)\n2. Select the Mail Agent for which you want to generate the API key\n3. Go to the **SMTP/API** tab\n4. In the **API** section, copy the **Agent alias** (agentkey)\n5. Submit a POST request to `https://api.zeptomail.com/v1.1/agents/{agentkey}/apikeys` with an `Authorization: Zoho-oauthtoken [your-token]` header\n6. The response will contain your send mail token (username and password)",
|
|
5974
6022
|
secrets: {
|
|
5975
6023
|
ZEPTOMAIL_TOKEN: {
|
|
5976
6024
|
label: "Send Mail Token",
|
|
@@ -5991,6 +6039,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
5991
6039
|
authMethods: {
|
|
5992
6040
|
"api-token": {
|
|
5993
6041
|
label: "API Key",
|
|
6042
|
+
helpText: "1. Sign up for an account in the [Runway Developer Portal](https://dev.runwayml.com/)\n2. After signing up, create a new organization\n3. Click to the **API Keys** tab\n4. Create a new key, giving it a descriptive name\n5. Copy the key immediately and store it in a safe place \u2014 it will only be shown once",
|
|
5994
6043
|
secrets: {
|
|
5995
6044
|
RUNWAY_TOKEN: {
|
|
5996
6045
|
label: "API Key",
|
|
@@ -6011,6 +6060,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6011
6060
|
authMethods: {
|
|
6012
6061
|
"api-token": {
|
|
6013
6062
|
label: "API Key",
|
|
6063
|
+
helpText: "1. Log in to the [Short.io](https://short.io) Dashboard\n2. Navigate to **Integrations and API**\n3. Click on **Create API key**\n4. Leave the **Public key** option disabled to create a private (secret) key\n5. Restrict the scope of the key to a specific team or domain\n6. Click **Create**\n7. Copy the key and store it in a safe place \u2014 secret keys cannot be recovered",
|
|
6014
6064
|
secrets: {
|
|
6015
6065
|
SHORTIO_TOKEN: {
|
|
6016
6066
|
label: "API Key",
|
|
@@ -6031,6 +6081,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6031
6081
|
authMethods: {
|
|
6032
6082
|
"api-token": {
|
|
6033
6083
|
label: "API Key",
|
|
6084
|
+
helpText: "1. Install the Streak extension and navigate to [Gmail](https://mail.google.com)\n2. Click on the Streak icon in the right sidebar\n3. Select the **Integrations** button\n4. Under the **Streak API** section, click **Create New Key**\n5. Copy and store the API key securely",
|
|
6034
6085
|
secrets: {
|
|
6035
6086
|
STREAK_TOKEN: {
|
|
6036
6087
|
label: "API Key",
|
|
@@ -6051,6 +6102,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6051
6102
|
authMethods: {
|
|
6052
6103
|
"api-token": {
|
|
6053
6104
|
label: "API Key",
|
|
6105
|
+
helpText: "1. Go to the [Supadata Dashboard](https://dash.supadata.ai)\n2. Sign up for an account (no credit card required)\n3. Your API key will be generated automatically\n4. Use it in API requests with the header `x-api-key: [your_api_key]`",
|
|
6054
6106
|
secrets: {
|
|
6055
6107
|
SUPADATA_TOKEN: {
|
|
6056
6108
|
label: "API Key",
|
|
@@ -6071,6 +6123,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6071
6123
|
authMethods: {
|
|
6072
6124
|
"api-token": {
|
|
6073
6125
|
label: "API Key",
|
|
6126
|
+
helpText: "1. Go to [app.tavily.com](https://app.tavily.com/) and sign up for a free account\n2. After signing in, your API key will be available on the dashboard\n3. Copy the API key (it will start with `tvly-`)",
|
|
6074
6127
|
secrets: {
|
|
6075
6128
|
TAVILY_TOKEN: {
|
|
6076
6129
|
label: "API Key",
|
|
@@ -6091,6 +6144,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6091
6144
|
authMethods: {
|
|
6092
6145
|
"api-token": {
|
|
6093
6146
|
label: "API Key",
|
|
6147
|
+
helpText: "1. Ensure you have a **Business Plan** subscription on [tldv](https://tldv.io)\n2. API and webhook access is only available on the Business Plan\n3. Contact support at **support@tldv.io** to request API access and obtain your credentials",
|
|
6094
6148
|
secrets: {
|
|
6095
6149
|
TLDV_TOKEN: {
|
|
6096
6150
|
label: "API Key",
|
|
@@ -6111,6 +6165,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6111
6165
|
authMethods: {
|
|
6112
6166
|
"api-token": {
|
|
6113
6167
|
label: "API Key",
|
|
6168
|
+
helpText: "1. Log in to your [Twenty](https://twenty.com) workspace\n2. Go to **Settings > APIs & Webhooks**\n3. Click **+ Create key**\n4. Enter a descriptive **Name** and set an **Expiration Date**\n5. Click **Save**\n6. Copy the key immediately \u2014 it is only shown once",
|
|
6114
6169
|
secrets: {
|
|
6115
6170
|
TWENTY_TOKEN: {
|
|
6116
6171
|
label: "API Key",
|
|
@@ -6172,6 +6227,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6172
6227
|
authMethods: {
|
|
6173
6228
|
"api-token": {
|
|
6174
6229
|
label: "API Token",
|
|
6230
|
+
helpText: "1. Log in to your [ZapSign](https://app.zapsign.com) account\n2. Go to **Settings**\n3. Navigate to **Integrations**\n4. Select **ZAPSIGN API**\n5. Copy your API token",
|
|
6175
6231
|
secrets: {
|
|
6176
6232
|
ZAPSIGN_TOKEN: {
|
|
6177
6233
|
label: "API Token",
|
|
@@ -6228,6 +6284,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6228
6284
|
authMethods: {
|
|
6229
6285
|
"api-token": {
|
|
6230
6286
|
label: "API Key",
|
|
6287
|
+
helpText: "1. Log in to [HTML/CSS to Image](https://htmlcsstoimage.com/dashboard)\n2. Go to your **Dashboard**\n3. Locate your **User ID** and **API Key** displayed on the dashboard\n4. Copy the **API Key** (used as the password in HTTP Basic authentication)",
|
|
6231
6288
|
secrets: {
|
|
6232
6289
|
HCTI_API_KEY: {
|
|
6233
6290
|
label: "API Key",
|
|
@@ -6252,6 +6309,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6252
6309
|
authMethods: {
|
|
6253
6310
|
"api-token": {
|
|
6254
6311
|
label: "API Token",
|
|
6312
|
+
helpText: "1. Log in to [Imgur](https://imgur.com)\n2. Go to [Register an Application](https://api.imgur.com/oauth2/addclient)\n3. Fill in the application registration form\n4. After registration, you will receive a **Client ID** and **Client Secret**\n5. Copy and save both credentials",
|
|
6255
6313
|
secrets: {
|
|
6256
6314
|
IMGUR_CLIENT_ID: {
|
|
6257
6315
|
label: "Client ID",
|
|
@@ -6273,6 +6331,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6273
6331
|
authMethods: {
|
|
6274
6332
|
"api-token": {
|
|
6275
6333
|
label: "API Token",
|
|
6334
|
+
helpText: "1. Create a Meta app of type **Business** at [Meta for Developers](https://developers.facebook.com/apps)\n2. In your app dashboard, click **Instagram > API setup with Instagram business login** in the left side menu\n3. Click **Generate token** next to the Instagram account you want to access\n4. Log into Instagram when prompted\n5. Copy the access token",
|
|
6276
6335
|
secrets: {
|
|
6277
6336
|
INSTAGRAM_TOKEN: {
|
|
6278
6337
|
label: "Access Token",
|
|
@@ -6297,6 +6356,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6297
6356
|
authMethods: {
|
|
6298
6357
|
"api-token": {
|
|
6299
6358
|
label: "API Key",
|
|
6359
|
+
helpText: "1. Log in to the [Prisma Console](https://console.prisma.io)\n2. Go to your workspace **Settings** page\n3. Select **Service Tokens**\n4. Click **New Service Token**\n5. Copy and save the generated service token securely",
|
|
6300
6360
|
secrets: {
|
|
6301
6361
|
PRISMA_POSTGRES_TOKEN: {
|
|
6302
6362
|
label: "API Key",
|
|
@@ -6317,6 +6377,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6317
6377
|
authMethods: {
|
|
6318
6378
|
"api-token": {
|
|
6319
6379
|
label: "Bot Token",
|
|
6380
|
+
helpText: "1. Go to the [Discord Developer Portal](https://discord.com/developers/applications)\n2. Select your application (or create a new one)\n3. Navigate to the **Bot** page in your app's settings\n4. In the **Token** section, click **Reset Token** to generate a new bot token\n5. Copy and securely store the token \u2014 you won't be able to view it again unless you regenerate it",
|
|
6320
6381
|
secrets: {
|
|
6321
6382
|
DISCORD_BOT_TOKEN: {
|
|
6322
6383
|
label: "Bot Token",
|
|
@@ -6338,6 +6399,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6338
6399
|
authMethods: {
|
|
6339
6400
|
"api-token": {
|
|
6340
6401
|
label: "App Credentials",
|
|
6402
|
+
helpText: "1. Log in to the [Lark Developer Console](https://open.larksuite.com/app/)\n2. Select your app from the list (or create a new one)\n3. Go to the **Credentials & Basic Info** page\n4. Copy your **App ID** and **App Secret**\n5. Use these credentials to call the tenant_access_token API to obtain an access token",
|
|
6341
6403
|
secrets: {
|
|
6342
6404
|
LARK_TOKEN: {
|
|
6343
6405
|
label: "App Secret",
|
|
@@ -6363,6 +6425,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6363
6425
|
authMethods: {
|
|
6364
6426
|
"api-token": {
|
|
6365
6427
|
label: "API Key",
|
|
6428
|
+
helpText: "1. Go to [Mailsac](https://mailsac.com) and sign up for an account\n2. Log in to your Mailsac dashboard\n3. Navigate to [API Keys](https://mailsac.com/api-keys)\n4. Copy your API key from the dashboard",
|
|
6366
6429
|
secrets: {
|
|
6367
6430
|
MAILSAC_TOKEN: {
|
|
6368
6431
|
label: "API Key",
|
|
@@ -6385,6 +6448,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6385
6448
|
authMethods: {
|
|
6386
6449
|
"api-token": {
|
|
6387
6450
|
label: "Access Credentials",
|
|
6451
|
+
helpText: "1. Log in to the MinIO Console\n2. Navigate to the **Access Keys** section under Security and Access\n3. Click **Create Access Key**\n4. The system automatically generates an access key and secret key\n5. Optionally override the auto-generated values or toggle **Restrict beyond user policy** to limit permissions\n6. Save the secret key in a secure location (you cannot retrieve or reset it after creation)\n7. Click **Create** to finalize",
|
|
6388
6452
|
secrets: {
|
|
6389
6453
|
MINIO_TOKEN: {
|
|
6390
6454
|
label: "Access Key",
|
|
@@ -6416,6 +6480,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6416
6480
|
authMethods: {
|
|
6417
6481
|
"api-token": {
|
|
6418
6482
|
label: "API Key",
|
|
6483
|
+
helpText: "1. Create an account on [pdforge](https://pdforge.com)\n2. Two API keys are automatically generated when you create your account\n3. Go to the **API Keys** menu in the sidebar to view your keys\n4. Copy your API key and use it in the `Authorization: Bearer pdfnoodle_api_[your_key]` header",
|
|
6419
6484
|
secrets: {
|
|
6420
6485
|
PDFORGE_API_KEY: {
|
|
6421
6486
|
label: "API Key",
|
|
@@ -6436,6 +6501,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6436
6501
|
authMethods: {
|
|
6437
6502
|
"api-token": {
|
|
6438
6503
|
label: "Webhook URL",
|
|
6504
|
+
helpText: "1. Open your Discord server and navigate to **Server Settings**\n2. Select the **Integrations** tab\n3. Click the **Create Webhook** button\n4. Configure the webhook name and select the target text channel from the dropdown menu\n5. Click the **Copy Webhook URL** button to copy the webhook URL",
|
|
6439
6505
|
secrets: {
|
|
6440
6506
|
DISCORD_WEBHOOK_URL: {
|
|
6441
6507
|
label: "Webhook URL",
|
|
@@ -6506,6 +6572,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6506
6572
|
authMethods: {
|
|
6507
6573
|
"api-token": {
|
|
6508
6574
|
label: "Webhook URL",
|
|
6575
|
+
helpText: "1. Create a [Slack app](https://api.slack.com/apps) (or use an existing one), choosing a workspace to associate it with\n2. From the app settings page, select **Incoming Webhooks**\n3. Toggle **Activate Incoming Webhooks** to on\n4. Click **Add New Webhook to Workspace**\n5. Pick a channel for the app to post to, then click **Authorize**\n6. Copy the webhook URL from the **Webhook URLs for Your Workspace** section (it will look like `https://hooks.slack.com/services/T.../B.../XXXX...`)",
|
|
6509
6576
|
secrets: {
|
|
6510
6577
|
SLACK_WEBHOOK_URL: {
|
|
6511
6578
|
label: "Webhook URL",
|
|
@@ -6527,6 +6594,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6527
6594
|
authMethods: {
|
|
6528
6595
|
"api-token": {
|
|
6529
6596
|
label: "Personal Access Token",
|
|
6597
|
+
helpText: "1. Log in to [GitLab](https://gitlab.com)\n2. Click your avatar in the upper-right corner and select **Edit profile**\n3. In the left sidebar, navigate to **Access > Personal access tokens**\n4. From the **Generate token** dropdown, select **Legacy token**\n5. Enter a name in the **Token name** field\n6. Optionally set an expiration date (defaults to 365 days)\n7. Select the required scopes for your token\n8. Click **Generate token**\n9. Copy and save the token \u2014 you cannot view it again after leaving the page",
|
|
6530
6598
|
secrets: {
|
|
6531
6599
|
GITLAB_TOKEN: {
|
|
6532
6600
|
label: "Personal Access Token",
|
|
@@ -6552,6 +6620,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
6552
6620
|
authMethods: {
|
|
6553
6621
|
"api-token": {
|
|
6554
6622
|
label: "API Key",
|
|
6623
|
+
helpText: "1. Log in to your [Wix](https://www.wix.com) account (account owner or co-owner access required)\n2. Go to the [API Keys Manager](https://manage.wix.com/account/api-keys)\n3. Create a new API key and assign the required permissions\n4. Copy the generated API key and store it securely",
|
|
6555
6624
|
secrets: {
|
|
6556
6625
|
WIX_TOKEN: {
|
|
6557
6626
|
label: "API Key",
|
|
@@ -9298,6 +9367,25 @@ var axiomFirewall = {
|
|
|
9298
9367
|
]
|
|
9299
9368
|
};
|
|
9300
9369
|
|
|
9370
|
+
// ../../packages/core/src/firewalls/bitrix.generated.ts
|
|
9371
|
+
var bitrixFirewall = {
|
|
9372
|
+
name: "bitrix",
|
|
9373
|
+
description: "Bitrix24",
|
|
9374
|
+
placeholders: {
|
|
9375
|
+
BITRIX_WEBHOOK_URL: "https://firewall-placeholder.vm3.ai/bitrix/hook"
|
|
9376
|
+
},
|
|
9377
|
+
apis: [
|
|
9378
|
+
{
|
|
9379
|
+
base: "https://firewall-placeholder.vm3.ai/bitrix/hook",
|
|
9380
|
+
auth: {
|
|
9381
|
+
headers: {},
|
|
9382
|
+
base: "${{ secrets.BITRIX_WEBHOOK_URL }}"
|
|
9383
|
+
},
|
|
9384
|
+
permissions: []
|
|
9385
|
+
}
|
|
9386
|
+
]
|
|
9387
|
+
};
|
|
9388
|
+
|
|
9301
9389
|
// ../../packages/core/src/firewalls/brave-search.generated.ts
|
|
9302
9390
|
var braveSearchFirewall = {
|
|
9303
9391
|
name: "brave-search",
|
|
@@ -10361,6 +10449,25 @@ var discordFirewall = {
|
|
|
10361
10449
|
]
|
|
10362
10450
|
};
|
|
10363
10451
|
|
|
10452
|
+
// ../../packages/core/src/firewalls/discord-webhook.generated.ts
|
|
10453
|
+
var discordWebhookFirewall = {
|
|
10454
|
+
name: "discord-webhook",
|
|
10455
|
+
description: "Discord Webhook",
|
|
10456
|
+
placeholders: {
|
|
10457
|
+
DISCORD_WEBHOOK_URL: "https://firewall-placeholder.vm3.ai/discord-webhook/hook"
|
|
10458
|
+
},
|
|
10459
|
+
apis: [
|
|
10460
|
+
{
|
|
10461
|
+
base: "https://firewall-placeholder.vm3.ai/discord-webhook/hook",
|
|
10462
|
+
auth: {
|
|
10463
|
+
headers: {},
|
|
10464
|
+
base: "${{ secrets.DISCORD_WEBHOOK_URL }}"
|
|
10465
|
+
},
|
|
10466
|
+
permissions: []
|
|
10467
|
+
}
|
|
10468
|
+
]
|
|
10469
|
+
};
|
|
10470
|
+
|
|
10364
10471
|
// ../../packages/core/src/firewalls/docusign.generated.ts
|
|
10365
10472
|
var docusignFirewall = {
|
|
10366
10473
|
name: "docusign",
|
|
@@ -23928,6 +24035,25 @@ var similarwebFirewall = {
|
|
|
23928
24035
|
]
|
|
23929
24036
|
};
|
|
23930
24037
|
|
|
24038
|
+
// ../../packages/core/src/firewalls/slack-webhook.generated.ts
|
|
24039
|
+
var slackWebhookFirewall = {
|
|
24040
|
+
name: "slack-webhook",
|
|
24041
|
+
description: "Slack Webhook",
|
|
24042
|
+
placeholders: {
|
|
24043
|
+
SLACK_WEBHOOK_URL: "https://firewall-placeholder.vm3.ai/slack-webhook/hook"
|
|
24044
|
+
},
|
|
24045
|
+
apis: [
|
|
24046
|
+
{
|
|
24047
|
+
base: "https://firewall-placeholder.vm3.ai/slack-webhook/hook",
|
|
24048
|
+
auth: {
|
|
24049
|
+
headers: {},
|
|
24050
|
+
base: "${{ secrets.SLACK_WEBHOOK_URL }}"
|
|
24051
|
+
},
|
|
24052
|
+
permissions: []
|
|
24053
|
+
}
|
|
24054
|
+
]
|
|
24055
|
+
};
|
|
24056
|
+
|
|
23931
24057
|
// ../../packages/core/src/firewalls/spotify.generated.ts
|
|
23932
24058
|
var spotifyFirewall = {
|
|
23933
24059
|
name: "spotify",
|
|
@@ -26789,6 +26915,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
26789
26915
|
asana: asanaFirewall,
|
|
26790
26916
|
atlassian: atlassianFirewall,
|
|
26791
26917
|
axiom: axiomFirewall,
|
|
26918
|
+
bitrix: bitrixFirewall,
|
|
26792
26919
|
"brave-search": braveSearchFirewall,
|
|
26793
26920
|
brevo: brevoFirewall,
|
|
26794
26921
|
"bright-data": brightDataFirewall,
|
|
@@ -26808,6 +26935,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
26808
26935
|
devto: devtoFirewall,
|
|
26809
26936
|
dify: difyFirewall,
|
|
26810
26937
|
discord: discordFirewall,
|
|
26938
|
+
"discord-webhook": discordWebhookFirewall,
|
|
26811
26939
|
docusign: docusignFirewall,
|
|
26812
26940
|
dropbox: dropboxFirewall,
|
|
26813
26941
|
elevenlabs: elevenlabsFirewall,
|
|
@@ -26880,6 +27008,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
26880
27008
|
shortio: shortioFirewall,
|
|
26881
27009
|
similarweb: similarwebFirewall,
|
|
26882
27010
|
slack: slackFirewall,
|
|
27011
|
+
"slack-webhook": slackWebhookFirewall,
|
|
26883
27012
|
spotify: spotifyFirewall,
|
|
26884
27013
|
strava: stravaFirewall,
|
|
26885
27014
|
streak: streakFirewall,
|
|
@@ -31676,4 +31805,4 @@ export {
|
|
|
31676
31805
|
parseTime,
|
|
31677
31806
|
paginate
|
|
31678
31807
|
};
|
|
31679
|
-
//# sourceMappingURL=chunk-
|
|
31808
|
+
//# sourceMappingURL=chunk-HWEQWUNR.js.map
|