@vm0/cli 9.145.13 → 9.145.15
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-FQ7FOJMC.js → chunk-N6PYMJMA.js} +35 -19
- package/{chunk-FQ7FOJMC.js.map → chunk-N6PYMJMA.js.map} +1 -1
- package/index.js +9 -9
- package/package.json +1 -1
- package/zero.js +22 -13
- package/zero.js.map +1 -1
|
@@ -74083,7 +74083,7 @@ if (DSN) {
|
|
|
74083
74083
|
init2({
|
|
74084
74084
|
dsn: DSN,
|
|
74085
74085
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
74086
|
-
release: "9.145.
|
|
74086
|
+
release: "9.145.15",
|
|
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.145.
|
|
74105
|
+
version: "9.145.15",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -102163,6 +102163,7 @@ var zeroRunAgentEventsContract = c12.router({
|
|
|
102163
102163
|
responses: {
|
|
102164
102164
|
200: agentEventsResponseSchema,
|
|
102165
102165
|
401: apiErrorSchema,
|
|
102166
|
+
403: apiErrorSchema,
|
|
102166
102167
|
404: apiErrorSchema
|
|
102167
102168
|
},
|
|
102168
102169
|
summary: "Get agent events with pagination (zero proxy)"
|
|
@@ -102220,6 +102221,7 @@ var zeroRunContextContract = c12.router({
|
|
|
102220
102221
|
200: runContextResponseSchema,
|
|
102221
102222
|
400: apiErrorSchema,
|
|
102222
102223
|
401: apiErrorSchema,
|
|
102224
|
+
403: apiErrorSchema,
|
|
102223
102225
|
404: apiErrorSchema
|
|
102224
102226
|
},
|
|
102225
102227
|
summary: "Get run execution context snapshot for debugging"
|
|
@@ -102242,6 +102244,7 @@ var zeroRunNetworkLogsContract = c12.router({
|
|
|
102242
102244
|
200: networkLogsResponseSchema,
|
|
102243
102245
|
400: apiErrorSchema,
|
|
102244
102246
|
401: apiErrorSchema,
|
|
102247
|
+
403: apiErrorSchema,
|
|
102245
102248
|
404: apiErrorSchema
|
|
102246
102249
|
},
|
|
102247
102250
|
summary: "Get network logs for a run"
|
|
@@ -103248,6 +103251,7 @@ var storedChatMessageBaseSchema = external_exports.object({
|
|
|
103248
103251
|
content: external_exports.string().nullable(),
|
|
103249
103252
|
runId: external_exports.string().optional(),
|
|
103250
103253
|
revokesMessageId: external_exports.string().optional(),
|
|
103254
|
+
interruptsRunId: external_exports.string().optional(),
|
|
103251
103255
|
error: external_exports.string().optional(),
|
|
103252
103256
|
attachFiles: external_exports.array(resolvedAttachFileSchema).optional(),
|
|
103253
103257
|
createdAt: external_exports.string()
|
|
@@ -103266,6 +103270,7 @@ var pagedChatMessageBaseSchema = external_exports.object({
|
|
|
103266
103270
|
content: external_exports.string().nullable(),
|
|
103267
103271
|
runId: external_exports.string().optional(),
|
|
103268
103272
|
revokesMessageId: external_exports.string().optional(),
|
|
103273
|
+
interruptsRunId: external_exports.string().optional(),
|
|
103269
103274
|
error: external_exports.string().optional(),
|
|
103270
103275
|
attachFiles: external_exports.array(resolvedAttachFileSchema).optional(),
|
|
103271
103276
|
createdAt: external_exports.string()
|
|
@@ -103506,7 +103511,8 @@ var chatMessagesContract = c13.router({
|
|
|
103506
103511
|
// entry path end-to-end.
|
|
103507
103512
|
debugNoMockClaude: external_exports.boolean().optional(),
|
|
103508
103513
|
debugNoMockCodex: external_exports.boolean().optional(),
|
|
103509
|
-
revokesMessageId: external_exports.undefined().optional()
|
|
103514
|
+
revokesMessageId: external_exports.undefined().optional(),
|
|
103515
|
+
interruptsRunId: external_exports.undefined().optional()
|
|
103510
103516
|
}),
|
|
103511
103517
|
external_exports.object({
|
|
103512
103518
|
agentId: external_exports.string().min(1),
|
|
@@ -103520,7 +103526,23 @@ var chatMessagesContract = c13.router({
|
|
|
103520
103526
|
hasTextContent: external_exports.undefined().optional(),
|
|
103521
103527
|
attachFiles: external_exports.undefined().optional(),
|
|
103522
103528
|
debugNoMockClaude: external_exports.undefined().optional(),
|
|
103523
|
-
debugNoMockCodex: external_exports.undefined().optional()
|
|
103529
|
+
debugNoMockCodex: external_exports.undefined().optional(),
|
|
103530
|
+
interruptsRunId: external_exports.undefined().optional()
|
|
103531
|
+
}),
|
|
103532
|
+
external_exports.object({
|
|
103533
|
+
agentId: external_exports.string().min(1),
|
|
103534
|
+
threadId: external_exports.string().min(1),
|
|
103535
|
+
interruptsRunId: external_exports.string().uuid(),
|
|
103536
|
+
clientMessageId: external_exports.string().uuid().optional(),
|
|
103537
|
+
prompt: external_exports.undefined().optional(),
|
|
103538
|
+
clientThreadId: external_exports.undefined().optional(),
|
|
103539
|
+
modelProvider: external_exports.undefined().optional(),
|
|
103540
|
+
modelSelection: external_exports.undefined().optional(),
|
|
103541
|
+
hasTextContent: external_exports.undefined().optional(),
|
|
103542
|
+
attachFiles: external_exports.undefined().optional(),
|
|
103543
|
+
debugNoMockClaude: external_exports.undefined().optional(),
|
|
103544
|
+
debugNoMockCodex: external_exports.undefined().optional(),
|
|
103545
|
+
revokesMessageId: external_exports.undefined().optional()
|
|
103524
103546
|
})
|
|
103525
103547
|
]),
|
|
103526
103548
|
responses: {
|
|
@@ -120670,22 +120692,14 @@ var FEATURE_SWITCHES = {
|
|
|
120670
120692
|
["chatHeaderNewButton" /* ChatHeaderNewButton */]: {
|
|
120671
120693
|
maintainer: "ethan@vm0.ai",
|
|
120672
120694
|
description: "Replace the Invite people button in the agent chat page header with a New button that creates a new chat thread",
|
|
120673
|
-
enabled: false
|
|
120674
|
-
|
|
120675
|
-
["officialTelegramBot" /* OfficialTelegramBot */]: {
|
|
120676
|
-
maintainer: "ethan@vm0.ai",
|
|
120677
|
-
description: "Show and enable the shared official Zero Telegram bot integration",
|
|
120678
|
-
enabled: true
|
|
120679
|
-
},
|
|
120680
|
-
["chatManualHistory" /* ChatManualHistory */]: {
|
|
120681
|
-
maintainer: "linghan@vm0.ai",
|
|
120682
|
-
description: "Enable manual chat history loading from a Load history button at the top of a thread. When off, chat stays in the latest-50/no-history mode.",
|
|
120683
|
-
enabled: true
|
|
120695
|
+
enabled: false,
|
|
120696
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
120684
120697
|
},
|
|
120685
120698
|
["chatMessageStartButton" /* ChatMessageStartButton */]: {
|
|
120686
120699
|
maintainer: "linghan@vm0.ai",
|
|
120687
120700
|
description: "Show an icon button in assistant message group actions that scrolls back to the start of that message group.",
|
|
120688
|
-
enabled: false
|
|
120701
|
+
enabled: false,
|
|
120702
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
120689
120703
|
},
|
|
120690
120704
|
["queueMessage" /* QueueMessage */]: {
|
|
120691
120705
|
maintainer: "linghan@vm0.ai",
|
|
@@ -120696,12 +120710,14 @@ var FEATURE_SWITCHES = {
|
|
|
120696
120710
|
["chatThreadPin" /* ChatThreadPin */]: {
|
|
120697
120711
|
maintainer: "ethan@vm0.ai",
|
|
120698
120712
|
description: "Replace the sidebar's per-thread trash button with a kebab/pin menu that exposes Pin/Unpin and Delete. Pinned threads sort to the top of the agent's chat list. Mobile shows the menu trigger always; desktop shows it on hover.",
|
|
120699
|
-
enabled: false
|
|
120713
|
+
enabled: false,
|
|
120714
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
120700
120715
|
},
|
|
120701
120716
|
["chatThreadRename" /* ChatThreadRename */]: {
|
|
120702
120717
|
maintainer: "ethan@vm0.ai",
|
|
120703
120718
|
description: "Adds a Rename chat item to the sidebar thread kebab menu. When the user renames a thread, automated title generation is suppressed for that thread.",
|
|
120704
|
-
enabled: false
|
|
120719
|
+
enabled: false,
|
|
120720
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
120705
120721
|
},
|
|
120706
120722
|
["freshdeskConnector" /* FreshdeskConnector */]: {
|
|
120707
120723
|
maintainer: "ethan@vm0.ai",
|
|
@@ -122246,4 +122262,4 @@ undici/lib/web/fetch/body.js:
|
|
|
122246
122262
|
undici/lib/web/websocket/frame.js:
|
|
122247
122263
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
122248
122264
|
*/
|
|
122249
|
-
//# sourceMappingURL=chunk-
|
|
122265
|
+
//# sourceMappingURL=chunk-N6PYMJMA.js.map
|