@vm0/cli 9.121.2 → 9.121.4
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.
|
@@ -73649,7 +73649,7 @@ if (DSN) {
|
|
|
73649
73649
|
init2({
|
|
73650
73650
|
dsn: DSN,
|
|
73651
73651
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
73652
|
-
release: "9.121.
|
|
73652
|
+
release: "9.121.4",
|
|
73653
73653
|
sendDefaultPii: false,
|
|
73654
73654
|
tracesSampleRate: 0,
|
|
73655
73655
|
shutdownTimeout: 500,
|
|
@@ -73668,7 +73668,7 @@ if (DSN) {
|
|
|
73668
73668
|
}
|
|
73669
73669
|
});
|
|
73670
73670
|
setContext("cli", {
|
|
73671
|
-
version: "9.121.
|
|
73671
|
+
version: "9.121.4",
|
|
73672
73672
|
command: process.argv.slice(2).join(" ")
|
|
73673
73673
|
});
|
|
73674
73674
|
setContext("runtime", {
|
|
@@ -94248,6 +94248,69 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
94248
94248
|
}
|
|
94249
94249
|
},
|
|
94250
94250
|
defaultAuthMethod: "api-token"
|
|
94251
|
+
},
|
|
94252
|
+
db9: {
|
|
94253
|
+
label: "db9",
|
|
94254
|
+
environmentMapping: {
|
|
94255
|
+
DB9_API_KEY: "$secrets.DB9_API_KEY"
|
|
94256
|
+
},
|
|
94257
|
+
helpText: "Connect your db9 account to manage serverless Postgres databases with pgvector, FTS, and embeddings",
|
|
94258
|
+
authMethods: {
|
|
94259
|
+
"api-token": {
|
|
94260
|
+
label: "API Key",
|
|
94261
|
+
helpText: "1. Log in to [db9](https://db9.ai)\n2. Go to **Settings > API Keys**\n3. Create a new API key\n4. Copy the 128-character hex token",
|
|
94262
|
+
secrets: {
|
|
94263
|
+
DB9_API_KEY: {
|
|
94264
|
+
label: "API Key",
|
|
94265
|
+
required: true,
|
|
94266
|
+
placeholder: "128-char hex token"
|
|
94267
|
+
}
|
|
94268
|
+
}
|
|
94269
|
+
}
|
|
94270
|
+
},
|
|
94271
|
+
defaultAuthMethod: "api-token"
|
|
94272
|
+
},
|
|
94273
|
+
drive9: {
|
|
94274
|
+
label: "drive9",
|
|
94275
|
+
environmentMapping: {
|
|
94276
|
+
DRIVE9_TOKEN: "$secrets.DRIVE9_TOKEN"
|
|
94277
|
+
},
|
|
94278
|
+
helpText: "Connect your drive9 account for agent-friendly file storage with unified path-based operations",
|
|
94279
|
+
authMethods: {
|
|
94280
|
+
"api-token": {
|
|
94281
|
+
label: "API Key",
|
|
94282
|
+
helpText: "1. Log in to [drive9](https://drive9.ai)\n2. Go to **Settings > API Keys**\n3. Create a new API key\n4. Copy the key (format: `drive9_sk_...`)",
|
|
94283
|
+
secrets: {
|
|
94284
|
+
DRIVE9_TOKEN: {
|
|
94285
|
+
label: "API Key",
|
|
94286
|
+
required: true,
|
|
94287
|
+
placeholder: "drive9_sk_..."
|
|
94288
|
+
}
|
|
94289
|
+
}
|
|
94290
|
+
}
|
|
94291
|
+
},
|
|
94292
|
+
defaultAuthMethod: "api-token"
|
|
94293
|
+
},
|
|
94294
|
+
msg9: {
|
|
94295
|
+
label: "msg9",
|
|
94296
|
+
environmentMapping: {
|
|
94297
|
+
MSG9_TOKEN: "$secrets.MSG9_TOKEN"
|
|
94298
|
+
},
|
|
94299
|
+
helpText: "Connect your msg9 account to send messages, manage inboxes, contacts, lists, channels, and skills",
|
|
94300
|
+
authMethods: {
|
|
94301
|
+
"api-token": {
|
|
94302
|
+
label: "API Key",
|
|
94303
|
+
helpText: "1. Log in to [msg9](https://www.msg9.io)\n2. Go to **Settings > API Keys**\n3. Create a new API key\n4. Copy the key (format: `msg9_sk_...`)",
|
|
94304
|
+
secrets: {
|
|
94305
|
+
MSG9_TOKEN: {
|
|
94306
|
+
label: "API Key",
|
|
94307
|
+
required: true,
|
|
94308
|
+
placeholder: "msg9_sk_..."
|
|
94309
|
+
}
|
|
94310
|
+
}
|
|
94311
|
+
}
|
|
94312
|
+
},
|
|
94313
|
+
defaultAuthMethod: "api-token"
|
|
94251
94314
|
}
|
|
94252
94315
|
};
|
|
94253
94316
|
var CONNECTOR_TYPES = CONNECTOR_TYPES_DEF;
|
|
@@ -96380,6 +96443,48 @@ var docusignFirewall = {
|
|
|
96380
96443
|
]
|
|
96381
96444
|
};
|
|
96382
96445
|
|
|
96446
|
+
// ../../packages/core/src/firewalls/db9.generated.ts
|
|
96447
|
+
init_esm_shims();
|
|
96448
|
+
var db9Firewall = {
|
|
96449
|
+
name: "db9",
|
|
96450
|
+
description: "db9 API",
|
|
96451
|
+
placeholders: {
|
|
96452
|
+
DB9_API_KEY: "c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5a"
|
|
96453
|
+
},
|
|
96454
|
+
apis: [
|
|
96455
|
+
{
|
|
96456
|
+
base: "https://api.db9.ai",
|
|
96457
|
+
auth: {
|
|
96458
|
+
headers: {
|
|
96459
|
+
Authorization: "Bearer ${{ secrets.DB9_API_KEY }}"
|
|
96460
|
+
}
|
|
96461
|
+
},
|
|
96462
|
+
permissions: []
|
|
96463
|
+
}
|
|
96464
|
+
]
|
|
96465
|
+
};
|
|
96466
|
+
|
|
96467
|
+
// ../../packages/core/src/firewalls/drive9.generated.ts
|
|
96468
|
+
init_esm_shims();
|
|
96469
|
+
var drive9Firewall = {
|
|
96470
|
+
name: "drive9",
|
|
96471
|
+
description: "drive9 API",
|
|
96472
|
+
placeholders: {
|
|
96473
|
+
DRIVE9_TOKEN: "drive9_sk_CoffeeSafeLocalCoffeeSafeLocalCoffeeSa"
|
|
96474
|
+
},
|
|
96475
|
+
apis: [
|
|
96476
|
+
{
|
|
96477
|
+
base: "https://api.drive9.ai",
|
|
96478
|
+
auth: {
|
|
96479
|
+
headers: {
|
|
96480
|
+
Authorization: "Bearer ${{ secrets.DRIVE9_TOKEN }}"
|
|
96481
|
+
}
|
|
96482
|
+
},
|
|
96483
|
+
permissions: []
|
|
96484
|
+
}
|
|
96485
|
+
]
|
|
96486
|
+
};
|
|
96487
|
+
|
|
96383
96488
|
// ../../packages/core/src/firewalls/dropbox.generated.ts
|
|
96384
96489
|
init_esm_shims();
|
|
96385
96490
|
var dropboxFirewall = {
|
|
@@ -99237,6 +99342,27 @@ var mondayFirewall = {
|
|
|
99237
99342
|
]
|
|
99238
99343
|
};
|
|
99239
99344
|
|
|
99345
|
+
// ../../packages/core/src/firewalls/msg9.generated.ts
|
|
99346
|
+
init_esm_shims();
|
|
99347
|
+
var msg9Firewall = {
|
|
99348
|
+
name: "msg9",
|
|
99349
|
+
description: "msg9 API",
|
|
99350
|
+
placeholders: {
|
|
99351
|
+
MSG9_TOKEN: "msg9_sk_CoffeeSafeLocalCoffeeSafeLocalCoffeeSafe"
|
|
99352
|
+
},
|
|
99353
|
+
apis: [
|
|
99354
|
+
{
|
|
99355
|
+
base: "https://www.msg9.io",
|
|
99356
|
+
auth: {
|
|
99357
|
+
headers: {
|
|
99358
|
+
Authorization: "Bearer ${{ secrets.MSG9_TOKEN }}"
|
|
99359
|
+
}
|
|
99360
|
+
},
|
|
99361
|
+
permissions: []
|
|
99362
|
+
}
|
|
99363
|
+
]
|
|
99364
|
+
};
|
|
99365
|
+
|
|
99240
99366
|
// ../../packages/core/src/firewalls/neon.generated.ts
|
|
99241
99367
|
init_esm_shims();
|
|
99242
99368
|
var neonFirewall = {
|
|
@@ -102824,6 +102950,8 @@ var CONNECTOR_FIREWALLS = {
|
|
|
102824
102950
|
discord: discordFirewall,
|
|
102825
102951
|
"discord-webhook": discordWebhookFirewall,
|
|
102826
102952
|
docusign: docusignFirewall,
|
|
102953
|
+
db9: db9Firewall,
|
|
102954
|
+
drive9: drive9Firewall,
|
|
102827
102955
|
dropbox: dropboxFirewall,
|
|
102828
102956
|
elevenlabs: elevenlabsFirewall,
|
|
102829
102957
|
explorium: exploriumFirewall,
|
|
@@ -102869,6 +102997,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
102869
102997
|
"meta-ads": metaAdsFirewall,
|
|
102870
102998
|
minimax: minimaxFirewall,
|
|
102871
102999
|
monday: mondayFirewall,
|
|
103000
|
+
msg9: msg9Firewall,
|
|
102872
103001
|
neon: neonFirewall,
|
|
102873
103002
|
notion: notionFirewall,
|
|
102874
103003
|
openai: openaiFirewall,
|
|
@@ -110120,7 +110249,7 @@ var heartbeatBodySchema = external_exports.object({
|
|
|
110120
110249
|
allocatedMemoryMb: external_exports.number().int().nonnegative(),
|
|
110121
110250
|
runningCount: external_exports.number().int().nonnegative(),
|
|
110122
110251
|
heldSessions: external_exports.array(external_exports.string()),
|
|
110123
|
-
mode: external_exports.enum(["running", "draining"])
|
|
110252
|
+
mode: external_exports.enum(["running", "draining", "stopping"])
|
|
110124
110253
|
});
|
|
110125
110254
|
var runnersHeartbeatContract = c12.router({
|
|
110126
110255
|
heartbeat: {
|
|
@@ -115999,4 +116128,4 @@ undici/lib/web/fetch/body.js:
|
|
|
115999
116128
|
undici/lib/web/websocket/frame.js:
|
|
116000
116129
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
116001
116130
|
*/
|
|
116002
|
-
//# sourceMappingURL=chunk-
|
|
116131
|
+
//# sourceMappingURL=chunk-GPSANZ2L.js.map
|