@vm0/cli 9.156.6 → 9.156.8
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.
|
@@ -74083,7 +74083,7 @@ if (DSN) {
|
|
|
74083
74083
|
init2({
|
|
74084
74084
|
dsn: DSN,
|
|
74085
74085
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
74086
|
-
release: "9.156.
|
|
74086
|
+
release: "9.156.8",
|
|
74087
74087
|
sendDefaultPii: false,
|
|
74088
74088
|
tracesSampleRate: 0,
|
|
74089
74089
|
shutdownTimeout: 500,
|
|
@@ -74102,7 +74102,7 @@ if (DSN) {
|
|
|
74102
74102
|
}
|
|
74103
74103
|
});
|
|
74104
74104
|
setContext("cli", {
|
|
74105
|
-
version: "9.156.
|
|
74105
|
+
version: "9.156.8",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -96608,6 +96608,7 @@ var zeroAgentsByIdContract = c15.router({
|
|
|
96608
96608
|
pathParams: external_exports.object({ id: external_exports.string().uuid() }),
|
|
96609
96609
|
responses: {
|
|
96610
96610
|
200: zeroAgentResponseSchema,
|
|
96611
|
+
400: apiErrorSchema,
|
|
96611
96612
|
401: apiErrorSchema,
|
|
96612
96613
|
403: apiErrorSchema,
|
|
96613
96614
|
404: apiErrorSchema
|
|
@@ -96655,6 +96656,7 @@ var zeroAgentsByIdContract = c15.router({
|
|
|
96655
96656
|
body: c15.noBody(),
|
|
96656
96657
|
responses: {
|
|
96657
96658
|
204: c15.noBody(),
|
|
96659
|
+
400: apiErrorSchema,
|
|
96658
96660
|
401: apiErrorSchema,
|
|
96659
96661
|
403: apiErrorSchema,
|
|
96660
96662
|
404: apiErrorSchema,
|
|
@@ -98004,6 +98006,33 @@ var googleAds = {
|
|
|
98004
98006
|
}
|
|
98005
98007
|
};
|
|
98006
98008
|
|
|
98009
|
+
// ../../packages/connectors/src/connectors/google-maps.ts
|
|
98010
|
+
init_esm_shims();
|
|
98011
|
+
var googleMaps = {
|
|
98012
|
+
"google-maps": {
|
|
98013
|
+
label: "Google Maps",
|
|
98014
|
+
category: "data-automation-infrastructure",
|
|
98015
|
+
environmentMapping: {
|
|
98016
|
+
GOOGLE_MAPS_TOKEN: "$secrets.GOOGLE_MAPS_TOKEN"
|
|
98017
|
+
},
|
|
98018
|
+
helpText: "Connect Google Maps Platform to access geocoding, places, directions, and other Maps APIs",
|
|
98019
|
+
authMethods: {
|
|
98020
|
+
"api-token": {
|
|
98021
|
+
label: "API Key",
|
|
98022
|
+
helpText: "1. Open [Google Cloud Console](https://console.cloud.google.com/google/maps-apis/credentials)\n2. Select or create a project and enable the Maps APIs you need (Geocoding, Places, Directions, etc.)\n3. Go to **APIs & Services \u2192 Credentials** and click **Create credentials \u2192 API key**\n4. Copy the API key (format: `AIza\u2026`) and restrict it to the APIs and referrers/IPs you trust",
|
|
98023
|
+
secrets: {
|
|
98024
|
+
GOOGLE_MAPS_TOKEN: {
|
|
98025
|
+
label: "API Key",
|
|
98026
|
+
required: true,
|
|
98027
|
+
placeholder: "AIza..."
|
|
98028
|
+
}
|
|
98029
|
+
}
|
|
98030
|
+
}
|
|
98031
|
+
},
|
|
98032
|
+
defaultAuthMethod: "api-token"
|
|
98033
|
+
}
|
|
98034
|
+
};
|
|
98035
|
+
|
|
98007
98036
|
// ../../packages/connectors/src/connectors/gumroad.ts
|
|
98008
98037
|
init_esm_shims();
|
|
98009
98038
|
var gumroad = {
|
|
@@ -98483,6 +98512,32 @@ var attio = {
|
|
|
98483
98512
|
}
|
|
98484
98513
|
};
|
|
98485
98514
|
|
|
98515
|
+
// ../../packages/connectors/src/connectors/aviationstack.ts
|
|
98516
|
+
init_esm_shims();
|
|
98517
|
+
var aviationstack = {
|
|
98518
|
+
aviationstack: {
|
|
98519
|
+
label: "AviationStack",
|
|
98520
|
+
category: "data-automation-infrastructure",
|
|
98521
|
+
environmentMapping: {
|
|
98522
|
+
AVIATIONSTACK_TOKEN: "$secrets.AVIATIONSTACK_TOKEN"
|
|
98523
|
+
},
|
|
98524
|
+
helpText: "Connect AviationStack to access real-time flight status, schedules, airline, airport, and route data",
|
|
98525
|
+
authMethods: {
|
|
98526
|
+
"api-token": {
|
|
98527
|
+
label: "Access Key",
|
|
98528
|
+
helpText: "1. Sign in to the [AviationStack dashboard](https://aviationstack.com/dashboard)\n2. Copy the **API Access Key** shown on the main dashboard\n3. Pass it as the `access_key` query parameter on every request",
|
|
98529
|
+
secrets: {
|
|
98530
|
+
AVIATIONSTACK_TOKEN: {
|
|
98531
|
+
label: "Access Key",
|
|
98532
|
+
required: true
|
|
98533
|
+
}
|
|
98534
|
+
}
|
|
98535
|
+
}
|
|
98536
|
+
},
|
|
98537
|
+
defaultAuthMethod: "api-token"
|
|
98538
|
+
}
|
|
98539
|
+
};
|
|
98540
|
+
|
|
98486
98541
|
// ../../packages/connectors/src/connectors/axiom.ts
|
|
98487
98542
|
init_esm_shims();
|
|
98488
98543
|
var axiom = {
|
|
@@ -98801,6 +98856,32 @@ var buffer = {
|
|
|
98801
98856
|
}
|
|
98802
98857
|
};
|
|
98803
98858
|
|
|
98859
|
+
// ../../packages/connectors/src/connectors/builtwith.ts
|
|
98860
|
+
init_esm_shims();
|
|
98861
|
+
var builtwith = {
|
|
98862
|
+
builtwith: {
|
|
98863
|
+
label: "BuiltWith",
|
|
98864
|
+
category: "sales-crm-business-operations",
|
|
98865
|
+
environmentMapping: {
|
|
98866
|
+
BUILTWITH_TOKEN: "$secrets.BUILTWITH_TOKEN"
|
|
98867
|
+
},
|
|
98868
|
+
helpText: "Connect BuiltWith to look up the technology stack, traffic, and contact data for any website",
|
|
98869
|
+
authMethods: {
|
|
98870
|
+
"api-token": {
|
|
98871
|
+
label: "API Key",
|
|
98872
|
+
helpText: "1. Log in to [BuiltWith](https://api.builtwith.com)\n2. Open the **API access** page in your account\n3. Copy your **API key**\n4. Pass it as the `KEY` query parameter on every request",
|
|
98873
|
+
secrets: {
|
|
98874
|
+
BUILTWITH_TOKEN: {
|
|
98875
|
+
label: "API Key",
|
|
98876
|
+
required: true
|
|
98877
|
+
}
|
|
98878
|
+
}
|
|
98879
|
+
}
|
|
98880
|
+
},
|
|
98881
|
+
defaultAuthMethod: "api-token"
|
|
98882
|
+
}
|
|
98883
|
+
};
|
|
98884
|
+
|
|
98804
98885
|
// ../../packages/connectors/src/connectors/cal-com.ts
|
|
98805
98886
|
init_esm_shims();
|
|
98806
98887
|
var calCom = {
|
|
@@ -98931,6 +99012,32 @@ var chatwoot = {
|
|
|
98931
99012
|
}
|
|
98932
99013
|
};
|
|
98933
99014
|
|
|
99015
|
+
// ../../packages/connectors/src/connectors/clado.ts
|
|
99016
|
+
init_esm_shims();
|
|
99017
|
+
var clado = {
|
|
99018
|
+
clado: {
|
|
99019
|
+
label: "Clado",
|
|
99020
|
+
category: "sales-crm-business-operations",
|
|
99021
|
+
environmentMapping: {
|
|
99022
|
+
CLADO_TOKEN: "$secrets.CLADO_TOKEN"
|
|
99023
|
+
},
|
|
99024
|
+
helpText: "Connect Clado to search and enrich a B2B people graph for prospecting and recruiting",
|
|
99025
|
+
authMethods: {
|
|
99026
|
+
"api-token": {
|
|
99027
|
+
label: "API Key",
|
|
99028
|
+
helpText: "1. Sign in to [Clado](https://clado.ai)\n2. Open the **API keys** page in your account\n3. Click **Create Key**, name it, and copy the value\n4. Use it as a Bearer token on requests to `https://search.clado.ai`",
|
|
99029
|
+
secrets: {
|
|
99030
|
+
CLADO_TOKEN: {
|
|
99031
|
+
label: "API Key",
|
|
99032
|
+
required: true
|
|
99033
|
+
}
|
|
99034
|
+
}
|
|
99035
|
+
}
|
|
99036
|
+
},
|
|
99037
|
+
defaultAuthMethod: "api-token"
|
|
99038
|
+
}
|
|
99039
|
+
};
|
|
99040
|
+
|
|
98934
99041
|
// ../../packages/connectors/src/connectors/clerk.ts
|
|
98935
99042
|
init_esm_shims();
|
|
98936
99043
|
var clerk = {
|
|
@@ -99377,6 +99484,32 @@ var devto = {
|
|
|
99377
99484
|
}
|
|
99378
99485
|
};
|
|
99379
99486
|
|
|
99487
|
+
// ../../packages/connectors/src/connectors/diffbot.ts
|
|
99488
|
+
init_esm_shims();
|
|
99489
|
+
var diffbot = {
|
|
99490
|
+
diffbot: {
|
|
99491
|
+
label: "Diffbot",
|
|
99492
|
+
category: "data-automation-infrastructure",
|
|
99493
|
+
environmentMapping: {
|
|
99494
|
+
DIFFBOT_TOKEN: "$secrets.DIFFBOT_TOKEN"
|
|
99495
|
+
},
|
|
99496
|
+
helpText: "Connect Diffbot to extract structured article, product, and entity data from any web page or knowledge graph",
|
|
99497
|
+
authMethods: {
|
|
99498
|
+
"api-token": {
|
|
99499
|
+
label: "API Token",
|
|
99500
|
+
helpText: "1. Log in to [Diffbot](https://app.diffbot.com/get-started/)\n2. Open your account dashboard\n3. Copy the **API token** shown on the dashboard\n4. Pass it as the `token` query parameter on every request",
|
|
99501
|
+
secrets: {
|
|
99502
|
+
DIFFBOT_TOKEN: {
|
|
99503
|
+
label: "API Token",
|
|
99504
|
+
required: true
|
|
99505
|
+
}
|
|
99506
|
+
}
|
|
99507
|
+
}
|
|
99508
|
+
},
|
|
99509
|
+
defaultAuthMethod: "api-token"
|
|
99510
|
+
}
|
|
99511
|
+
};
|
|
99512
|
+
|
|
99380
99513
|
// ../../packages/connectors/src/connectors/dify.ts
|
|
99381
99514
|
init_esm_shims();
|
|
99382
99515
|
var dify = {
|
|
@@ -100348,6 +100481,32 @@ var hume = {
|
|
|
100348
100481
|
}
|
|
100349
100482
|
};
|
|
100350
100483
|
|
|
100484
|
+
// ../../packages/connectors/src/connectors/hunter.ts
|
|
100485
|
+
init_esm_shims();
|
|
100486
|
+
var hunter = {
|
|
100487
|
+
hunter: {
|
|
100488
|
+
label: "Hunter",
|
|
100489
|
+
category: "sales-crm-business-operations",
|
|
100490
|
+
environmentMapping: {
|
|
100491
|
+
HUNTER_TOKEN: "$secrets.HUNTER_TOKEN"
|
|
100492
|
+
},
|
|
100493
|
+
helpText: "Connect Hunter to find and verify professional email addresses for outbound and prospecting",
|
|
100494
|
+
authMethods: {
|
|
100495
|
+
"api-token": {
|
|
100496
|
+
label: "API Key",
|
|
100497
|
+
helpText: "1. Log in to [Hunter](https://hunter.io/api-keys)\n2. Open the **API keys** page under your account\n3. Copy your existing key or click **Generate a new key**\n4. Pass it as the `api_key` query parameter on every request",
|
|
100498
|
+
secrets: {
|
|
100499
|
+
HUNTER_TOKEN: {
|
|
100500
|
+
label: "API Key",
|
|
100501
|
+
required: true
|
|
100502
|
+
}
|
|
100503
|
+
}
|
|
100504
|
+
}
|
|
100505
|
+
},
|
|
100506
|
+
defaultAuthMethod: "api-token"
|
|
100507
|
+
}
|
|
100508
|
+
};
|
|
100509
|
+
|
|
100351
100510
|
// ../../packages/connectors/src/connectors/imgur.ts
|
|
100352
100511
|
init_esm_shims();
|
|
100353
100512
|
var imgur = {
|
|
@@ -101022,6 +101181,65 @@ var manus = {
|
|
|
101022
101181
|
}
|
|
101023
101182
|
};
|
|
101024
101183
|
|
|
101184
|
+
// ../../packages/connectors/src/connectors/mapbox.ts
|
|
101185
|
+
init_esm_shims();
|
|
101186
|
+
var mapbox = {
|
|
101187
|
+
mapbox: {
|
|
101188
|
+
label: "Mapbox",
|
|
101189
|
+
category: "data-automation-infrastructure",
|
|
101190
|
+
environmentMapping: {
|
|
101191
|
+
MAPBOX_TOKEN: "$secrets.MAPBOX_TOKEN"
|
|
101192
|
+
},
|
|
101193
|
+
helpText: "Connect Mapbox to access geocoding, directions, isochrones, and other location APIs",
|
|
101194
|
+
authMethods: {
|
|
101195
|
+
"api-token": {
|
|
101196
|
+
label: "Access Token",
|
|
101197
|
+
helpText: "1. Log in to [Mapbox](https://account.mapbox.com)\n2. Open the **Access tokens** page\n3. Click **Create a token**, give it a name, and pick the scopes you need\n4. Copy the token (format: `pk.\u2026`) \u2014 pass it as the `access_token` query parameter",
|
|
101198
|
+
secrets: {
|
|
101199
|
+
MAPBOX_TOKEN: {
|
|
101200
|
+
label: "Access Token",
|
|
101201
|
+
required: true,
|
|
101202
|
+
placeholder: "pk...."
|
|
101203
|
+
}
|
|
101204
|
+
}
|
|
101205
|
+
}
|
|
101206
|
+
},
|
|
101207
|
+
defaultAuthMethod: "api-token"
|
|
101208
|
+
}
|
|
101209
|
+
};
|
|
101210
|
+
|
|
101211
|
+
// ../../packages/connectors/src/connectors/mathpix.ts
|
|
101212
|
+
init_esm_shims();
|
|
101213
|
+
var mathpix = {
|
|
101214
|
+
mathpix: {
|
|
101215
|
+
label: "Mathpix",
|
|
101216
|
+
category: "data-automation-infrastructure",
|
|
101217
|
+
environmentMapping: {
|
|
101218
|
+
MATHPIX_APP_KEY: "$secrets.MATHPIX_APP_KEY",
|
|
101219
|
+
MATHPIX_APP_ID: "$vars.MATHPIX_APP_ID"
|
|
101220
|
+
},
|
|
101221
|
+
helpText: "Connect Mathpix to convert images, PDFs, and handwriting into LaTeX, Markdown, DOCX, or structured JSON",
|
|
101222
|
+
authMethods: {
|
|
101223
|
+
"api-token": {
|
|
101224
|
+
label: "App ID + App Key",
|
|
101225
|
+
helpText: "1. Sign in to the [Mathpix Console](https://console.mathpix.com)\n2. Open **API Keys** under your account\n3. Copy your **app_id** and create / copy an **app_key**\n4. Mathpix authenticates with both values sent as the `app_id` and `app_key` request headers",
|
|
101226
|
+
secrets: {
|
|
101227
|
+
MATHPIX_APP_KEY: {
|
|
101228
|
+
label: "App Key",
|
|
101229
|
+
required: true
|
|
101230
|
+
},
|
|
101231
|
+
MATHPIX_APP_ID: {
|
|
101232
|
+
label: "App ID",
|
|
101233
|
+
required: true,
|
|
101234
|
+
type: "variable"
|
|
101235
|
+
}
|
|
101236
|
+
}
|
|
101237
|
+
}
|
|
101238
|
+
},
|
|
101239
|
+
defaultAuthMethod: "api-token"
|
|
101240
|
+
}
|
|
101241
|
+
};
|
|
101242
|
+
|
|
101025
101243
|
// ../../packages/connectors/src/connectors/mem0.ts
|
|
101026
101244
|
init_esm_shims();
|
|
101027
101245
|
var mem0 = {
|
|
@@ -101493,6 +101711,37 @@ var neon = {
|
|
|
101493
101711
|
}
|
|
101494
101712
|
};
|
|
101495
101713
|
|
|
101714
|
+
// ../../packages/connectors/src/connectors/nyne.ts
|
|
101715
|
+
init_esm_shims();
|
|
101716
|
+
var nyne = {
|
|
101717
|
+
nyne: {
|
|
101718
|
+
label: "Nyne",
|
|
101719
|
+
category: "sales-crm-business-operations",
|
|
101720
|
+
environmentMapping: {
|
|
101721
|
+
NYNE_API_KEY: "$secrets.NYNE_API_KEY",
|
|
101722
|
+
NYNE_API_SECRET: "$secrets.NYNE_API_SECRET"
|
|
101723
|
+
},
|
|
101724
|
+
helpText: "Connect Nyne to orchestrate AI sales agents that prospect, qualify, and book meetings",
|
|
101725
|
+
authMethods: {
|
|
101726
|
+
"api-token": {
|
|
101727
|
+
label: "API Credentials",
|
|
101728
|
+
helpText: "1. Sign in at [nyne.ai](https://nyne.ai)\n2. Open your dashboard \u2192 **API Keys**\n3. Copy your **API Key** and **API Secret**\n4. Nyne authenticates each request with both `X-API-Key` and `X-API-Secret` headers on `https://api.nyne.ai`",
|
|
101729
|
+
secrets: {
|
|
101730
|
+
NYNE_API_KEY: {
|
|
101731
|
+
label: "API Key",
|
|
101732
|
+
required: true
|
|
101733
|
+
},
|
|
101734
|
+
NYNE_API_SECRET: {
|
|
101735
|
+
label: "API Secret",
|
|
101736
|
+
required: true
|
|
101737
|
+
}
|
|
101738
|
+
}
|
|
101739
|
+
}
|
|
101740
|
+
},
|
|
101741
|
+
defaultAuthMethod: "api-token"
|
|
101742
|
+
}
|
|
101743
|
+
};
|
|
101744
|
+
|
|
101496
101745
|
// ../../packages/connectors/src/connectors/onyx.ts
|
|
101497
101746
|
init_esm_shims();
|
|
101498
101747
|
var onyx = {
|
|
@@ -101549,6 +101798,60 @@ var openai = {
|
|
|
101549
101798
|
}
|
|
101550
101799
|
};
|
|
101551
101800
|
|
|
101801
|
+
// ../../packages/connectors/src/connectors/openrouter.ts
|
|
101802
|
+
init_esm_shims();
|
|
101803
|
+
var openrouter = {
|
|
101804
|
+
openrouter: {
|
|
101805
|
+
label: "OpenRouter",
|
|
101806
|
+
category: "ai-general-models",
|
|
101807
|
+
generation: ["text"],
|
|
101808
|
+
environmentMapping: {
|
|
101809
|
+
OPENROUTER_TOKEN: "$secrets.OPENROUTER_TOKEN"
|
|
101810
|
+
},
|
|
101811
|
+
helpText: "Connect OpenRouter to call hundreds of LLMs through a single OpenAI-compatible API",
|
|
101812
|
+
authMethods: {
|
|
101813
|
+
"api-token": {
|
|
101814
|
+
label: "API Key",
|
|
101815
|
+
helpText: "1. Sign in to [OpenRouter](https://openrouter.ai/keys)\n2. Click **Create Key**, name it, and set the credit limit you want\n3. Copy the key (format: `sk-or-v1-\u2026`)\n4. Use it as a Bearer token on requests to `https://openrouter.ai/api/v1/...`",
|
|
101816
|
+
secrets: {
|
|
101817
|
+
OPENROUTER_TOKEN: {
|
|
101818
|
+
label: "API Key",
|
|
101819
|
+
required: true,
|
|
101820
|
+
placeholder: "sk-or-v1-..."
|
|
101821
|
+
}
|
|
101822
|
+
}
|
|
101823
|
+
}
|
|
101824
|
+
},
|
|
101825
|
+
defaultAuthMethod: "api-token"
|
|
101826
|
+
}
|
|
101827
|
+
};
|
|
101828
|
+
|
|
101829
|
+
// ../../packages/connectors/src/connectors/openweather.ts
|
|
101830
|
+
init_esm_shims();
|
|
101831
|
+
var openweather = {
|
|
101832
|
+
openweather: {
|
|
101833
|
+
label: "OpenWeather",
|
|
101834
|
+
category: "data-automation-infrastructure",
|
|
101835
|
+
environmentMapping: {
|
|
101836
|
+
OPENWEATHER_TOKEN: "$secrets.OPENWEATHER_TOKEN"
|
|
101837
|
+
},
|
|
101838
|
+
helpText: "Connect OpenWeather to access current weather, forecasts, and climate data via the One Call API",
|
|
101839
|
+
authMethods: {
|
|
101840
|
+
"api-token": {
|
|
101841
|
+
label: "API Key",
|
|
101842
|
+
helpText: "1. Sign in to [OpenWeather](https://home.openweathermap.org)\n2. Go to **My API keys**\n3. Copy your default key or click **Generate** to create a new one\n4. Pass it as the `appid` query parameter on every request",
|
|
101843
|
+
secrets: {
|
|
101844
|
+
OPENWEATHER_TOKEN: {
|
|
101845
|
+
label: "API Key",
|
|
101846
|
+
required: true
|
|
101847
|
+
}
|
|
101848
|
+
}
|
|
101849
|
+
}
|
|
101850
|
+
},
|
|
101851
|
+
defaultAuthMethod: "api-token"
|
|
101852
|
+
}
|
|
101853
|
+
};
|
|
101854
|
+
|
|
101552
101855
|
// ../../packages/connectors/src/connectors/outlook-calendar.ts
|
|
101553
101856
|
init_esm_shims();
|
|
101554
101857
|
var outlookCalendar = {
|
|
@@ -102265,6 +102568,32 @@ var reddit = {
|
|
|
102265
102568
|
}
|
|
102266
102569
|
};
|
|
102267
102570
|
|
|
102571
|
+
// ../../packages/connectors/src/connectors/reducto.ts
|
|
102572
|
+
init_esm_shims();
|
|
102573
|
+
var reducto = {
|
|
102574
|
+
reducto: {
|
|
102575
|
+
label: "Reducto",
|
|
102576
|
+
category: "data-automation-infrastructure",
|
|
102577
|
+
environmentMapping: {
|
|
102578
|
+
REDUCTO_TOKEN: "$secrets.REDUCTO_TOKEN"
|
|
102579
|
+
},
|
|
102580
|
+
helpText: "Connect Reducto to parse, OCR, and chunk PDFs, scans, and complex documents into structured JSON",
|
|
102581
|
+
authMethods: {
|
|
102582
|
+
"api-token": {
|
|
102583
|
+
label: "API Key",
|
|
102584
|
+
helpText: "1. Sign in to the [Reducto Platform](https://platform.reducto.ai)\n2. Open **Settings \u2192 API Keys**\n3. Click **Create Key**, name it, and copy the value\n4. Use it as a Bearer token on requests to `https://platform.reducto.ai`",
|
|
102585
|
+
secrets: {
|
|
102586
|
+
REDUCTO_TOKEN: {
|
|
102587
|
+
label: "API Key",
|
|
102588
|
+
required: true
|
|
102589
|
+
}
|
|
102590
|
+
}
|
|
102591
|
+
}
|
|
102592
|
+
},
|
|
102593
|
+
defaultAuthMethod: "api-token"
|
|
102594
|
+
}
|
|
102595
|
+
};
|
|
102596
|
+
|
|
102268
102597
|
// ../../packages/connectors/src/connectors/replicate.ts
|
|
102269
102598
|
init_esm_shims();
|
|
102270
102599
|
var replicate = {
|
|
@@ -102919,6 +103248,33 @@ var stripe = {
|
|
|
102919
103248
|
}
|
|
102920
103249
|
};
|
|
102921
103250
|
|
|
103251
|
+
// ../../packages/connectors/src/connectors/suno.ts
|
|
103252
|
+
init_esm_shims();
|
|
103253
|
+
var suno = {
|
|
103254
|
+
suno: {
|
|
103255
|
+
label: "Suno",
|
|
103256
|
+
category: "ai-image-video",
|
|
103257
|
+
generation: ["audio"],
|
|
103258
|
+
environmentMapping: {
|
|
103259
|
+
SUNO_TOKEN: "$secrets.SUNO_TOKEN"
|
|
103260
|
+
},
|
|
103261
|
+
helpText: "Connect Suno to generate AI music tracks, vocals, and instrumentals from text prompts",
|
|
103262
|
+
authMethods: {
|
|
103263
|
+
"api-token": {
|
|
103264
|
+
label: "API Key",
|
|
103265
|
+
helpText: "1. Sign in to [SunoAPI](https://sunoapi.org)\n2. Open the **API Keys** page in your account\n3. Click **Create Key**, name it, and copy the value\n4. Use it as a Bearer token on requests to `https://api.sunoapi.org`",
|
|
103266
|
+
secrets: {
|
|
103267
|
+
SUNO_TOKEN: {
|
|
103268
|
+
label: "API Key",
|
|
103269
|
+
required: true
|
|
103270
|
+
}
|
|
103271
|
+
}
|
|
103272
|
+
}
|
|
103273
|
+
},
|
|
103274
|
+
defaultAuthMethod: "api-token"
|
|
103275
|
+
}
|
|
103276
|
+
};
|
|
103277
|
+
|
|
102922
103278
|
// ../../packages/connectors/src/connectors/supabase.ts
|
|
102923
103279
|
init_esm_shims();
|
|
102924
103280
|
var supabase = {
|
|
@@ -103723,6 +104079,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
103723
104079
|
...airtable,
|
|
103724
104080
|
...docusign,
|
|
103725
104081
|
...googleAds,
|
|
104082
|
+
...googleMaps,
|
|
103726
104083
|
...gumroad,
|
|
103727
104084
|
...spotify,
|
|
103728
104085
|
...agentmail,
|
|
@@ -103736,6 +104093,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
103736
104093
|
...asana,
|
|
103737
104094
|
...atlassian,
|
|
103738
104095
|
...attio,
|
|
104096
|
+
...aviationstack,
|
|
103739
104097
|
...axiom,
|
|
103740
104098
|
...bentoml,
|
|
103741
104099
|
...bitrix,
|
|
@@ -103747,10 +104105,12 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
103747
104105
|
...browserstack,
|
|
103748
104106
|
...browserUse,
|
|
103749
104107
|
...buffer,
|
|
104108
|
+
...builtwith,
|
|
103750
104109
|
...calCom,
|
|
103751
104110
|
...calendly,
|
|
103752
104111
|
...canva,
|
|
103753
104112
|
...chatwoot,
|
|
104113
|
+
...clado,
|
|
103754
104114
|
...clerk,
|
|
103755
104115
|
...clickup,
|
|
103756
104116
|
...close2,
|
|
@@ -103765,6 +104125,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
103765
104125
|
...deel,
|
|
103766
104126
|
...deepseek,
|
|
103767
104127
|
...devto,
|
|
104128
|
+
...diffbot,
|
|
103768
104129
|
...dify,
|
|
103769
104130
|
...discord,
|
|
103770
104131
|
...discordWebhook,
|
|
@@ -103797,6 +104158,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
103797
104158
|
...htmlcsstoimage,
|
|
103798
104159
|
...huggingFace,
|
|
103799
104160
|
...hume,
|
|
104161
|
+
...hunter,
|
|
103800
104162
|
...imgur,
|
|
103801
104163
|
...infisical,
|
|
103802
104164
|
...instagram,
|
|
@@ -103820,6 +104182,8 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
103820
104182
|
...mailsac,
|
|
103821
104183
|
...make,
|
|
103822
104184
|
...manus,
|
|
104185
|
+
...mapbox,
|
|
104186
|
+
...mathpix,
|
|
103823
104187
|
...mem0,
|
|
103824
104188
|
...mercury,
|
|
103825
104189
|
...metaAds,
|
|
@@ -103833,8 +104197,11 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
103833
104197
|
...msg9,
|
|
103834
104198
|
...n8n,
|
|
103835
104199
|
...neon,
|
|
104200
|
+
...nyne,
|
|
103836
104201
|
...onyx,
|
|
103837
104202
|
...openai,
|
|
104203
|
+
...openrouter,
|
|
104204
|
+
...openweather,
|
|
103838
104205
|
...outlookCalendar,
|
|
103839
104206
|
...outlookMail,
|
|
103840
104207
|
...pandadoc,
|
|
@@ -103858,6 +104225,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
103858
104225
|
...railwayProject,
|
|
103859
104226
|
...reap,
|
|
103860
104227
|
...reddit,
|
|
104228
|
+
...reducto,
|
|
103861
104229
|
...replicate,
|
|
103862
104230
|
...reportei,
|
|
103863
104231
|
...resend,
|
|
@@ -103879,6 +104247,7 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
103879
104247
|
...strapi,
|
|
103880
104248
|
...streak,
|
|
103881
104249
|
...stripe,
|
|
104250
|
+
...suno,
|
|
103882
104251
|
...supabase,
|
|
103883
104252
|
...supadata,
|
|
103884
104253
|
...supermemory,
|
|
@@ -113686,6 +114055,27 @@ var atlassianFirewall = {
|
|
|
113686
114055
|
]
|
|
113687
114056
|
};
|
|
113688
114057
|
|
|
114058
|
+
// ../../packages/connectors/src/firewalls/aviationstack.generated.ts
|
|
114059
|
+
init_esm_shims();
|
|
114060
|
+
var aviationstackFirewall = {
|
|
114061
|
+
name: "aviationstack",
|
|
114062
|
+
description: "AviationStack API",
|
|
114063
|
+
placeholders: {
|
|
114064
|
+
AVIATIONSTACK_TOKEN: "c0ffeesafelocal5afe10ca1c0ffeesa"
|
|
114065
|
+
},
|
|
114066
|
+
apis: [
|
|
114067
|
+
{
|
|
114068
|
+
base: "https://api.aviationstack.com",
|
|
114069
|
+
auth: {
|
|
114070
|
+
query: {
|
|
114071
|
+
access_key: "${{ secrets.AVIATIONSTACK_TOKEN }}"
|
|
114072
|
+
}
|
|
114073
|
+
},
|
|
114074
|
+
permissions: []
|
|
114075
|
+
}
|
|
114076
|
+
]
|
|
114077
|
+
};
|
|
114078
|
+
|
|
113689
114079
|
// ../../packages/connectors/src/firewalls/axiom.generated.ts
|
|
113690
114080
|
init_esm_shims();
|
|
113691
114081
|
var axiomFirewall = {
|
|
@@ -114281,6 +114671,27 @@ var bufferFirewall = {
|
|
|
114281
114671
|
]
|
|
114282
114672
|
};
|
|
114283
114673
|
|
|
114674
|
+
// ../../packages/connectors/src/firewalls/builtwith.generated.ts
|
|
114675
|
+
init_esm_shims();
|
|
114676
|
+
var builtwithFirewall = {
|
|
114677
|
+
name: "builtwith",
|
|
114678
|
+
description: "BuiltWith API",
|
|
114679
|
+
placeholders: {
|
|
114680
|
+
BUILTWITH_TOKEN: "c0ffeesafelocal5afe10ca1c0ffeesa"
|
|
114681
|
+
},
|
|
114682
|
+
apis: [
|
|
114683
|
+
{
|
|
114684
|
+
base: "https://api.builtwith.com",
|
|
114685
|
+
auth: {
|
|
114686
|
+
query: {
|
|
114687
|
+
KEY: "${{ secrets.BUILTWITH_TOKEN }}"
|
|
114688
|
+
}
|
|
114689
|
+
},
|
|
114690
|
+
permissions: []
|
|
114691
|
+
}
|
|
114692
|
+
]
|
|
114693
|
+
};
|
|
114694
|
+
|
|
114284
114695
|
// ../../packages/connectors/src/firewalls/cal-com.generated.ts
|
|
114285
114696
|
init_esm_shims();
|
|
114286
114697
|
var calComFirewall = {
|
|
@@ -114365,6 +114776,27 @@ var chatwootFirewall = {
|
|
|
114365
114776
|
]
|
|
114366
114777
|
};
|
|
114367
114778
|
|
|
114779
|
+
// ../../packages/connectors/src/firewalls/clado.generated.ts
|
|
114780
|
+
init_esm_shims();
|
|
114781
|
+
var cladoFirewall = {
|
|
114782
|
+
name: "clado",
|
|
114783
|
+
description: "Clado API",
|
|
114784
|
+
placeholders: {
|
|
114785
|
+
CLADO_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafe"
|
|
114786
|
+
},
|
|
114787
|
+
apis: [
|
|
114788
|
+
{
|
|
114789
|
+
base: "https://search.clado.ai",
|
|
114790
|
+
auth: {
|
|
114791
|
+
headers: {
|
|
114792
|
+
Authorization: "Bearer ${{ secrets.CLADO_TOKEN }}"
|
|
114793
|
+
}
|
|
114794
|
+
},
|
|
114795
|
+
permissions: []
|
|
114796
|
+
}
|
|
114797
|
+
]
|
|
114798
|
+
};
|
|
114799
|
+
|
|
114368
114800
|
// ../../packages/connectors/src/firewalls/clickup.generated.ts
|
|
114369
114801
|
init_esm_shims();
|
|
114370
114802
|
var clickupFirewall = {
|
|
@@ -115260,6 +115692,27 @@ var devtoFirewall = {
|
|
|
115260
115692
|
]
|
|
115261
115693
|
};
|
|
115262
115694
|
|
|
115695
|
+
// ../../packages/connectors/src/firewalls/diffbot.generated.ts
|
|
115696
|
+
init_esm_shims();
|
|
115697
|
+
var diffbotFirewall = {
|
|
115698
|
+
name: "diffbot",
|
|
115699
|
+
description: "Diffbot API",
|
|
115700
|
+
placeholders: {
|
|
115701
|
+
DIFFBOT_TOKEN: "c0ffeesafelocal5afe10ca1c0ffeesa"
|
|
115702
|
+
},
|
|
115703
|
+
apis: [
|
|
115704
|
+
{
|
|
115705
|
+
base: "https://api.diffbot.com",
|
|
115706
|
+
auth: {
|
|
115707
|
+
query: {
|
|
115708
|
+
token: "${{ secrets.DIFFBOT_TOKEN }}"
|
|
115709
|
+
}
|
|
115710
|
+
},
|
|
115711
|
+
permissions: []
|
|
115712
|
+
}
|
|
115713
|
+
]
|
|
115714
|
+
};
|
|
115715
|
+
|
|
115263
115716
|
// ../../packages/connectors/src/firewalls/dify.generated.ts
|
|
115264
115717
|
init_esm_shims();
|
|
115265
115718
|
var difyFirewall = {
|
|
@@ -116868,6 +117321,27 @@ var googleCalendarFirewall = {
|
|
|
116868
117321
|
]
|
|
116869
117322
|
};
|
|
116870
117323
|
|
|
117324
|
+
// ../../packages/connectors/src/firewalls/google-maps.generated.ts
|
|
117325
|
+
init_esm_shims();
|
|
117326
|
+
var googleMapsFirewall = {
|
|
117327
|
+
name: "google-maps",
|
|
117328
|
+
description: "Google Maps Platform API",
|
|
117329
|
+
placeholders: {
|
|
117330
|
+
GOOGLE_MAPS_TOKEN: "AIzaCoffeeSafeLocalCoffeeSafeLocalCoffe"
|
|
117331
|
+
},
|
|
117332
|
+
apis: [
|
|
117333
|
+
{
|
|
117334
|
+
base: "https://maps.googleapis.com",
|
|
117335
|
+
auth: {
|
|
117336
|
+
query: {
|
|
117337
|
+
key: "${{ secrets.GOOGLE_MAPS_TOKEN }}"
|
|
117338
|
+
}
|
|
117339
|
+
},
|
|
117340
|
+
permissions: []
|
|
117341
|
+
}
|
|
117342
|
+
]
|
|
117343
|
+
};
|
|
117344
|
+
|
|
116871
117345
|
// ../../packages/connectors/src/firewalls/google-docs.generated.ts
|
|
116872
117346
|
init_esm_shims();
|
|
116873
117347
|
var googleDocsFirewall = {
|
|
@@ -118100,6 +118574,27 @@ var humeFirewall = {
|
|
|
118100
118574
|
]
|
|
118101
118575
|
};
|
|
118102
118576
|
|
|
118577
|
+
// ../../packages/connectors/src/firewalls/hunter.generated.ts
|
|
118578
|
+
init_esm_shims();
|
|
118579
|
+
var hunterFirewall = {
|
|
118580
|
+
name: "hunter",
|
|
118581
|
+
description: "Hunter API",
|
|
118582
|
+
placeholders: {
|
|
118583
|
+
HUNTER_TOKEN: "c0ffeesafelocalc0ffeesafelocalc0ffeesafe"
|
|
118584
|
+
},
|
|
118585
|
+
apis: [
|
|
118586
|
+
{
|
|
118587
|
+
base: "https://api.hunter.io",
|
|
118588
|
+
auth: {
|
|
118589
|
+
query: {
|
|
118590
|
+
api_key: "${{ secrets.HUNTER_TOKEN }}"
|
|
118591
|
+
}
|
|
118592
|
+
},
|
|
118593
|
+
permissions: []
|
|
118594
|
+
}
|
|
118595
|
+
]
|
|
118596
|
+
};
|
|
118597
|
+
|
|
118103
118598
|
// ../../packages/connectors/src/firewalls/imgur.generated.ts
|
|
118104
118599
|
init_esm_shims();
|
|
118105
118600
|
var imgurFirewall = {
|
|
@@ -118653,6 +119148,49 @@ var manusFirewall = {
|
|
|
118653
119148
|
]
|
|
118654
119149
|
};
|
|
118655
119150
|
|
|
119151
|
+
// ../../packages/connectors/src/firewalls/mapbox.generated.ts
|
|
119152
|
+
init_esm_shims();
|
|
119153
|
+
var mapboxFirewall = {
|
|
119154
|
+
name: "mapbox",
|
|
119155
|
+
description: "Mapbox API",
|
|
119156
|
+
placeholders: {
|
|
119157
|
+
MAPBOX_TOKEN: "pk.eyJ1IjoiY29mZmVlc2FmZWxvY2FsIiwiYSI6ImNvZmZlZXNhZmVsb2NhbCJ9.CoffeeSafeLocal"
|
|
119158
|
+
},
|
|
119159
|
+
apis: [
|
|
119160
|
+
{
|
|
119161
|
+
base: "https://api.mapbox.com",
|
|
119162
|
+
auth: {
|
|
119163
|
+
query: {
|
|
119164
|
+
access_token: "${{ secrets.MAPBOX_TOKEN }}"
|
|
119165
|
+
}
|
|
119166
|
+
},
|
|
119167
|
+
permissions: []
|
|
119168
|
+
}
|
|
119169
|
+
]
|
|
119170
|
+
};
|
|
119171
|
+
|
|
119172
|
+
// ../../packages/connectors/src/firewalls/mathpix.generated.ts
|
|
119173
|
+
init_esm_shims();
|
|
119174
|
+
var mathpixFirewall = {
|
|
119175
|
+
name: "mathpix",
|
|
119176
|
+
description: "Mathpix OCR API",
|
|
119177
|
+
placeholders: {
|
|
119178
|
+
MATHPIX_APP_KEY: "c0ffeesafelocal5afe10ca1c0ffeesa"
|
|
119179
|
+
},
|
|
119180
|
+
apis: [
|
|
119181
|
+
{
|
|
119182
|
+
base: "https://api.mathpix.com",
|
|
119183
|
+
auth: {
|
|
119184
|
+
headers: {
|
|
119185
|
+
app_id: "${{ vars.MATHPIX_APP_ID }}",
|
|
119186
|
+
app_key: "${{ secrets.MATHPIX_APP_KEY }}"
|
|
119187
|
+
}
|
|
119188
|
+
},
|
|
119189
|
+
permissions: []
|
|
119190
|
+
}
|
|
119191
|
+
]
|
|
119192
|
+
};
|
|
119193
|
+
|
|
118656
119194
|
// ../../packages/connectors/src/firewalls/mem0.generated.ts
|
|
118657
119195
|
init_esm_shims();
|
|
118658
119196
|
var mem0Firewall = {
|
|
@@ -119025,6 +119563,29 @@ var notionFirewall = {
|
|
|
119025
119563
|
]
|
|
119026
119564
|
};
|
|
119027
119565
|
|
|
119566
|
+
// ../../packages/connectors/src/firewalls/nyne.generated.ts
|
|
119567
|
+
init_esm_shims();
|
|
119568
|
+
var nyneFirewall = {
|
|
119569
|
+
name: "nyne",
|
|
119570
|
+
description: "Nyne API",
|
|
119571
|
+
placeholders: {
|
|
119572
|
+
NYNE_API_KEY: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafe",
|
|
119573
|
+
NYNE_API_SECRET: "SafeLocalCoffeeSafeLocalCoffeeSafeLocal"
|
|
119574
|
+
},
|
|
119575
|
+
apis: [
|
|
119576
|
+
{
|
|
119577
|
+
base: "https://api.nyne.ai",
|
|
119578
|
+
auth: {
|
|
119579
|
+
headers: {
|
|
119580
|
+
"X-API-Key": "${{ secrets.NYNE_API_KEY }}",
|
|
119581
|
+
"X-API-Secret": "${{ secrets.NYNE_API_SECRET }}"
|
|
119582
|
+
}
|
|
119583
|
+
},
|
|
119584
|
+
permissions: []
|
|
119585
|
+
}
|
|
119586
|
+
]
|
|
119587
|
+
};
|
|
119588
|
+
|
|
119028
119589
|
// ../../packages/connectors/src/firewalls/onyx.generated.ts
|
|
119029
119590
|
init_esm_shims();
|
|
119030
119591
|
var onyxFirewall = {
|
|
@@ -119067,6 +119628,48 @@ var openaiFirewall = {
|
|
|
119067
119628
|
]
|
|
119068
119629
|
};
|
|
119069
119630
|
|
|
119631
|
+
// ../../packages/connectors/src/firewalls/openrouter.generated.ts
|
|
119632
|
+
init_esm_shims();
|
|
119633
|
+
var openrouterFirewall = {
|
|
119634
|
+
name: "openrouter",
|
|
119635
|
+
description: "OpenRouter API",
|
|
119636
|
+
placeholders: {
|
|
119637
|
+
OPENROUTER_TOKEN: "sk-or-v1-CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafe"
|
|
119638
|
+
},
|
|
119639
|
+
apis: [
|
|
119640
|
+
{
|
|
119641
|
+
base: "https://openrouter.ai",
|
|
119642
|
+
auth: {
|
|
119643
|
+
headers: {
|
|
119644
|
+
Authorization: "Bearer ${{ secrets.OPENROUTER_TOKEN }}"
|
|
119645
|
+
}
|
|
119646
|
+
},
|
|
119647
|
+
permissions: []
|
|
119648
|
+
}
|
|
119649
|
+
]
|
|
119650
|
+
};
|
|
119651
|
+
|
|
119652
|
+
// ../../packages/connectors/src/firewalls/openweather.generated.ts
|
|
119653
|
+
init_esm_shims();
|
|
119654
|
+
var openweatherFirewall = {
|
|
119655
|
+
name: "openweather",
|
|
119656
|
+
description: "OpenWeather API",
|
|
119657
|
+
placeholders: {
|
|
119658
|
+
OPENWEATHER_TOKEN: "c0ffeesafelocal5afe10ca1c0ffeesa"
|
|
119659
|
+
},
|
|
119660
|
+
apis: [
|
|
119661
|
+
{
|
|
119662
|
+
base: "https://api.openweathermap.org",
|
|
119663
|
+
auth: {
|
|
119664
|
+
query: {
|
|
119665
|
+
appid: "${{ secrets.OPENWEATHER_TOKEN }}"
|
|
119666
|
+
}
|
|
119667
|
+
},
|
|
119668
|
+
permissions: []
|
|
119669
|
+
}
|
|
119670
|
+
]
|
|
119671
|
+
};
|
|
119672
|
+
|
|
119070
119673
|
// ../../packages/connectors/src/firewalls/outlook-calendar.generated.ts
|
|
119071
119674
|
init_esm_shims();
|
|
119072
119675
|
var outlookCalendarFirewall = {
|
|
@@ -119555,6 +120158,27 @@ var reapFirewall = {
|
|
|
119555
120158
|
]
|
|
119556
120159
|
};
|
|
119557
120160
|
|
|
120161
|
+
// ../../packages/connectors/src/firewalls/reducto.generated.ts
|
|
120162
|
+
init_esm_shims();
|
|
120163
|
+
var reductoFirewall = {
|
|
120164
|
+
name: "reducto",
|
|
120165
|
+
description: "Reducto API",
|
|
120166
|
+
placeholders: {
|
|
120167
|
+
REDUCTO_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafe"
|
|
120168
|
+
},
|
|
120169
|
+
apis: [
|
|
120170
|
+
{
|
|
120171
|
+
base: "https://platform.reducto.ai",
|
|
120172
|
+
auth: {
|
|
120173
|
+
headers: {
|
|
120174
|
+
Authorization: "Bearer ${{ secrets.REDUCTO_TOKEN }}"
|
|
120175
|
+
}
|
|
120176
|
+
},
|
|
120177
|
+
permissions: []
|
|
120178
|
+
}
|
|
120179
|
+
]
|
|
120180
|
+
};
|
|
120181
|
+
|
|
119558
120182
|
// ../../packages/connectors/src/firewalls/reportei.generated.ts
|
|
119559
120183
|
init_esm_shims();
|
|
119560
120184
|
var reporteiFirewall = {
|
|
@@ -120736,6 +121360,27 @@ var stripeFirewall = {
|
|
|
120736
121360
|
]
|
|
120737
121361
|
};
|
|
120738
121362
|
|
|
121363
|
+
// ../../packages/connectors/src/firewalls/suno.generated.ts
|
|
121364
|
+
init_esm_shims();
|
|
121365
|
+
var sunoFirewall = {
|
|
121366
|
+
name: "suno",
|
|
121367
|
+
description: "Suno API",
|
|
121368
|
+
placeholders: {
|
|
121369
|
+
SUNO_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafe"
|
|
121370
|
+
},
|
|
121371
|
+
apis: [
|
|
121372
|
+
{
|
|
121373
|
+
base: "https://api.sunoapi.org",
|
|
121374
|
+
auth: {
|
|
121375
|
+
headers: {
|
|
121376
|
+
Authorization: "Bearer ${{ secrets.SUNO_TOKEN }}"
|
|
121377
|
+
}
|
|
121378
|
+
},
|
|
121379
|
+
permissions: []
|
|
121380
|
+
}
|
|
121381
|
+
]
|
|
121382
|
+
};
|
|
121383
|
+
|
|
120739
121384
|
// ../../packages/connectors/src/firewalls/supabase.generated.ts
|
|
120740
121385
|
init_esm_shims();
|
|
120741
121386
|
var supabaseFirewall = {
|
|
@@ -123353,7 +123998,20 @@ var CONNECTOR_FIREWALLS = {
|
|
|
123353
123998
|
square: squareFirewall,
|
|
123354
123999
|
gong: gongFirewall,
|
|
123355
124000
|
ironclad: ironcladFirewall,
|
|
123356
|
-
snowflake: snowflakeFirewall
|
|
124001
|
+
snowflake: snowflakeFirewall,
|
|
124002
|
+
aviationstack: aviationstackFirewall,
|
|
124003
|
+
builtwith: builtwithFirewall,
|
|
124004
|
+
clado: cladoFirewall,
|
|
124005
|
+
diffbot: diffbotFirewall,
|
|
124006
|
+
"google-maps": googleMapsFirewall,
|
|
124007
|
+
hunter: hunterFirewall,
|
|
124008
|
+
mapbox: mapboxFirewall,
|
|
124009
|
+
mathpix: mathpixFirewall,
|
|
124010
|
+
nyne: nyneFirewall,
|
|
124011
|
+
openrouter: openrouterFirewall,
|
|
124012
|
+
openweather: openweatherFirewall,
|
|
124013
|
+
reducto: reductoFirewall,
|
|
124014
|
+
suno: sunoFirewall
|
|
123357
124015
|
};
|
|
123358
124016
|
function expandPlaceholders(firewall, connectorType) {
|
|
123359
124017
|
if (!firewall.placeholders) return firewall;
|
|
@@ -128459,7 +129117,12 @@ var FEATURE_SWITCHES = {
|
|
|
128459
129117
|
},
|
|
128460
129118
|
["storedSecretKmsRead" /* StoredSecretKmsRead */]: {
|
|
128461
129119
|
maintainer: "ethan@vm0.ai",
|
|
128462
|
-
description: "Prefer AWS KMS material when reading stored-secret envelopes. Disabled keeps reading the legacy AES branch during rollout
|
|
129120
|
+
description: "Prefer AWS KMS material when reading stored-secret envelopes. Disabled keeps reading the legacy AES branch during rollout. Read path is independent of StoredSecretKmsWrite \u2014 enable read only after dual-write has been on long enough to backfill existing rows.",
|
|
129121
|
+
enabled: false
|
|
129122
|
+
},
|
|
129123
|
+
["storedSecretKmsWrite" /* StoredSecretKmsWrite */]: {
|
|
129124
|
+
maintainer: "ethan@vm0.ai",
|
|
129125
|
+
description: "Dual-write stored-secret values to AWS KMS in addition to the legacy AES branch. When OFF, writes stay legacy-only even if SECRETS_KMS_KEY_ID is configured \u2014 this gates the KMS GenerateDataKey call so a missing IAM grant does not 500 every secret save.",
|
|
128463
129126
|
enabled: false
|
|
128464
129127
|
},
|
|
128465
129128
|
["trinity" /* Trinity */]: {
|
|
@@ -130032,4 +130695,4 @@ undici/lib/web/fetch/body.js:
|
|
|
130032
130695
|
undici/lib/web/websocket/frame.js:
|
|
130033
130696
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
130034
130697
|
*/
|
|
130035
|
-
//# sourceMappingURL=chunk-
|
|
130698
|
+
//# sourceMappingURL=chunk-NY3IM6SU.js.map
|