@vm0/cli 9.180.7 → 9.180.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.180.
|
|
74086
|
+
release: "9.180.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.180.
|
|
74105
|
+
version: "9.180.8",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -110645,6 +110645,16 @@ var modelSelectionRequestSchema = external_exports.object({
|
|
|
110645
110645
|
});
|
|
110646
110646
|
}
|
|
110647
110647
|
});
|
|
110648
|
+
var presentationGenerationTemplateRequestSchema = external_exports.object({
|
|
110649
|
+
type: external_exports.literal("presentation"),
|
|
110650
|
+
selection: external_exports.object({
|
|
110651
|
+
designSystemId: external_exports.string().min(1),
|
|
110652
|
+
templateId: external_exports.string().min(1)
|
|
110653
|
+
})
|
|
110654
|
+
});
|
|
110655
|
+
var generationTemplateRequestSchema = external_exports.discriminatedUnion("type", [
|
|
110656
|
+
presentationGenerationTemplateRequestSchema
|
|
110657
|
+
]);
|
|
110648
110658
|
var chatThreadsContract = c22.router({
|
|
110649
110659
|
create: {
|
|
110650
110660
|
method: "POST",
|
|
@@ -110854,6 +110864,7 @@ var chatMessagesContract = c22.router({
|
|
|
110854
110864
|
* thread override and fall back to agent/org defaults.
|
|
110855
110865
|
*/
|
|
110856
110866
|
modelSelection: modelSelectionRequestSchema.nullable().optional(),
|
|
110867
|
+
generationTemplate: generationTemplateRequestSchema.optional(),
|
|
110857
110868
|
// Optional for backward compatibility: older clients that omit this field
|
|
110858
110869
|
// still trigger title generation (server guards with !== false, not === true).
|
|
110859
110870
|
hasTextContent: external_exports.boolean().optional(),
|
|
@@ -135691,4 +135702,4 @@ undici/lib/web/fetch/body.js:
|
|
|
135691
135702
|
undici/lib/web/websocket/frame.js:
|
|
135692
135703
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
135693
135704
|
*/
|
|
135694
|
-
//# sourceMappingURL=chunk-
|
|
135705
|
+
//# sourceMappingURL=chunk-HK2N7XD4.js.map
|