@vm0/cli 9.180.3 → 9.180.5
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.180.
|
|
74086
|
+
release: "9.180.5",
|
|
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.180.
|
|
74105
|
+
version: "9.180.5",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -110597,6 +110597,20 @@ var pagedChatMessageBaseSchema = external_exports.object({
|
|
|
110597
110597
|
attachFiles: external_exports.array(resolvedAttachFileSchema).optional(),
|
|
110598
110598
|
createdAt: external_exports.string()
|
|
110599
110599
|
});
|
|
110600
|
+
var chatMessageRecommendedFollowupSchema = external_exports.object({
|
|
110601
|
+
prompt: external_exports.string(),
|
|
110602
|
+
kind: external_exports.enum(["talk", "generate"]),
|
|
110603
|
+
generationType: external_exports.enum(["image", "video", "presentation", "website"]).optional()
|
|
110604
|
+
});
|
|
110605
|
+
var chatMessageRecommendedFollowupsSchema = external_exports.preprocess((value) => {
|
|
110606
|
+
if (!Array.isArray(value)) {
|
|
110607
|
+
return [];
|
|
110608
|
+
}
|
|
110609
|
+
return value.flatMap((item) => {
|
|
110610
|
+
const parsed = chatMessageRecommendedFollowupSchema.safeParse(item);
|
|
110611
|
+
return parsed.success ? [parsed.data] : [];
|
|
110612
|
+
});
|
|
110613
|
+
}, external_exports.array(chatMessageRecommendedFollowupSchema));
|
|
110600
110614
|
var pagedChatMessageSchema = external_exports.discriminatedUnion("role", [
|
|
110601
110615
|
pagedChatMessageBaseSchema.extend({
|
|
110602
110616
|
role: external_exports.literal("user")
|
|
@@ -110604,7 +110618,8 @@ var pagedChatMessageSchema = external_exports.discriminatedUnion("role", [
|
|
|
110604
110618
|
pagedChatMessageBaseSchema.extend({
|
|
110605
110619
|
role: external_exports.literal("assistant"),
|
|
110606
110620
|
status: external_exports.string().optional(),
|
|
110607
|
-
runLifecycleEvent: external_exports.enum(["completed", "failed", "cancelled"]).optional()
|
|
110621
|
+
runLifecycleEvent: external_exports.enum(["completed", "failed", "cancelled"]).optional(),
|
|
110622
|
+
recommendedFollowups: chatMessageRecommendedFollowupsSchema.optional()
|
|
110608
110623
|
})
|
|
110609
110624
|
]);
|
|
110610
110625
|
var chatThreadDetailSchema = external_exports.object({
|
|
@@ -110900,7 +110915,7 @@ var chatMessagesContract = c21.router({
|
|
|
110900
110915
|
// entry path end-to-end.
|
|
110901
110916
|
debugNoMockClaude: external_exports.boolean().optional(),
|
|
110902
110917
|
debugNoMockCodex: external_exports.boolean().optional(),
|
|
110903
|
-
revokesMessageId: external_exports.
|
|
110918
|
+
revokesMessageId: external_exports.string().min(1).optional(),
|
|
110904
110919
|
interruptsRunId: external_exports.undefined().optional()
|
|
110905
110920
|
}),
|
|
110906
110921
|
external_exports.object({
|
|
@@ -134160,6 +134175,17 @@ var FEATURE_SWITCHES = {
|
|
|
134160
134175
|
description: "Show the read-only memory viewer page in the Zero sidebar and at /memory, listing the files in the user's memory artifact.",
|
|
134161
134176
|
enabled: false,
|
|
134162
134177
|
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
134178
|
+
},
|
|
134179
|
+
["chatScrollToBottomButton" /* ChatScrollToBottomButton */]: {
|
|
134180
|
+
maintainer: "ethan@vm0.ai",
|
|
134181
|
+
description: "Show a floating scroll-to-bottom button in the bottom-right of the chat thread whenever the message list is scrolled away from the bottom. Clicking it jumps to the latest message.",
|
|
134182
|
+
enabled: true
|
|
134183
|
+
},
|
|
134184
|
+
["chatRecommendedFollowups" /* ChatRecommendedFollowups */]: {
|
|
134185
|
+
maintainer: "linghan@vm0.ai",
|
|
134186
|
+
description: "Generate and show recommended follow-up prompts after completed chat runs.",
|
|
134187
|
+
enabled: false,
|
|
134188
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
134163
134189
|
}
|
|
134164
134190
|
};
|
|
134165
134191
|
|
|
@@ -135720,4 +135746,4 @@ undici/lib/web/fetch/body.js:
|
|
|
135720
135746
|
undici/lib/web/websocket/frame.js:
|
|
135721
135747
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
135722
135748
|
*/
|
|
135723
|
-
//# sourceMappingURL=chunk-
|
|
135749
|
+
//# sourceMappingURL=chunk-GBLGZMXM.js.map
|