@vm0/cli 9.145.12 → 9.145.14
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.145.
|
|
74086
|
+
release: "9.145.14",
|
|
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.14",
|
|
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: {
|
|
@@ -119268,6 +119290,7 @@ var zeroBillingInvoicesContract = c41.router({
|
|
|
119268
119290
|
responses: {
|
|
119269
119291
|
200: billingInvoicesResponseSchema,
|
|
119270
119292
|
401: apiErrorSchema,
|
|
119293
|
+
403: apiErrorSchema,
|
|
119271
119294
|
500: apiErrorSchema
|
|
119272
119295
|
},
|
|
119273
119296
|
summary: "Get invoices for current org"
|
|
@@ -120671,16 +120694,6 @@ var FEATURE_SWITCHES = {
|
|
|
120671
120694
|
description: "Replace the Invite people button in the agent chat page header with a New button that creates a new chat thread",
|
|
120672
120695
|
enabled: false
|
|
120673
120696
|
},
|
|
120674
|
-
["officialTelegramBot" /* OfficialTelegramBot */]: {
|
|
120675
|
-
maintainer: "ethan@vm0.ai",
|
|
120676
|
-
description: "Show and enable the shared official Zero Telegram bot integration",
|
|
120677
|
-
enabled: true
|
|
120678
|
-
},
|
|
120679
|
-
["chatManualHistory" /* ChatManualHistory */]: {
|
|
120680
|
-
maintainer: "linghan@vm0.ai",
|
|
120681
|
-
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.",
|
|
120682
|
-
enabled: true
|
|
120683
|
-
},
|
|
120684
120697
|
["chatMessageStartButton" /* ChatMessageStartButton */]: {
|
|
120685
120698
|
maintainer: "linghan@vm0.ai",
|
|
120686
120699
|
description: "Show an icon button in assistant message group actions that scrolls back to the start of that message group.",
|
|
@@ -122245,4 +122258,4 @@ undici/lib/web/fetch/body.js:
|
|
|
122245
122258
|
undici/lib/web/websocket/frame.js:
|
|
122246
122259
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
122247
122260
|
*/
|
|
122248
|
-
//# sourceMappingURL=chunk-
|
|
122261
|
+
//# sourceMappingURL=chunk-V7GEUGSA.js.map
|