@vm0/cli 9.112.2 → 9.112.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.
|
@@ -34652,7 +34652,7 @@ if (DSN) {
|
|
|
34652
34652
|
Sentry.init({
|
|
34653
34653
|
dsn: DSN,
|
|
34654
34654
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
34655
|
-
release: "9.112.
|
|
34655
|
+
release: "9.112.4",
|
|
34656
34656
|
sendDefaultPii: false,
|
|
34657
34657
|
tracesSampleRate: 0,
|
|
34658
34658
|
shutdownTimeout: 500,
|
|
@@ -34671,7 +34671,7 @@ if (DSN) {
|
|
|
34671
34671
|
}
|
|
34672
34672
|
});
|
|
34673
34673
|
Sentry.setContext("cli", {
|
|
34674
|
-
version: "9.112.
|
|
34674
|
+
version: "9.112.4",
|
|
34675
34675
|
command: process.argv.slice(2).join(" ")
|
|
34676
34676
|
});
|
|
34677
34677
|
Sentry.setContext("runtime", {
|
|
@@ -70346,6 +70346,13 @@ init_esm_shims();
|
|
|
70346
70346
|
// ../../packages/core/src/contracts/chat-threads.ts
|
|
70347
70347
|
init_esm_shims();
|
|
70348
70348
|
var c10 = initContract();
|
|
70349
|
+
var persistedAttachmentSchema = external_exports.object({
|
|
70350
|
+
id: external_exports.string(),
|
|
70351
|
+
url: external_exports.string(),
|
|
70352
|
+
filename: external_exports.string(),
|
|
70353
|
+
contentType: external_exports.string(),
|
|
70354
|
+
size: external_exports.number()
|
|
70355
|
+
});
|
|
70349
70356
|
var chatThreadListItemSchema = external_exports.object({
|
|
70350
70357
|
id: external_exports.string(),
|
|
70351
70358
|
title: external_exports.string().nullable(),
|
|
@@ -70390,7 +70397,9 @@ var chatThreadDetailSchema = external_exports.object({
|
|
|
70390
70397
|
latestSessionId: external_exports.string().nullable(),
|
|
70391
70398
|
unsavedRuns: external_exports.array(unsavedRunSchema),
|
|
70392
70399
|
createdAt: external_exports.string(),
|
|
70393
|
-
updatedAt: external_exports.string()
|
|
70400
|
+
updatedAt: external_exports.string(),
|
|
70401
|
+
draftContent: external_exports.string().nullable().optional(),
|
|
70402
|
+
draftAttachments: external_exports.array(persistedAttachmentSchema).nullable().optional()
|
|
70394
70403
|
});
|
|
70395
70404
|
var chatThreadsContract = c10.router({
|
|
70396
70405
|
create: {
|
|
@@ -70447,6 +70456,22 @@ var chatThreadByIdContract = c10.router({
|
|
|
70447
70456
|
},
|
|
70448
70457
|
summary: "Get chat thread detail with messages"
|
|
70449
70458
|
},
|
|
70459
|
+
patch: {
|
|
70460
|
+
method: "PATCH",
|
|
70461
|
+
path: "/api/zero/chat-threads/:id",
|
|
70462
|
+
headers: authHeadersSchema,
|
|
70463
|
+
pathParams: external_exports.object({ id: external_exports.string() }),
|
|
70464
|
+
body: external_exports.object({
|
|
70465
|
+
draftContent: external_exports.string().nullable().optional(),
|
|
70466
|
+
draftAttachments: external_exports.array(persistedAttachmentSchema).nullable().optional()
|
|
70467
|
+
}),
|
|
70468
|
+
responses: {
|
|
70469
|
+
204: c10.noBody(),
|
|
70470
|
+
401: apiErrorSchema,
|
|
70471
|
+
404: apiErrorSchema
|
|
70472
|
+
},
|
|
70473
|
+
summary: "Update chat thread draft content and attachments"
|
|
70474
|
+
},
|
|
70450
70475
|
delete: {
|
|
70451
70476
|
method: "DELETE",
|
|
70452
70477
|
path: "/api/zero/chat-threads/:id",
|
|
@@ -73994,9 +74019,9 @@ var FEATURE_SWITCHES = {
|
|
|
73994
74019
|
enabled: false,
|
|
73995
74020
|
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
73996
74021
|
},
|
|
73997
|
-
["
|
|
74022
|
+
["audioIO" /* AudioIO */]: {
|
|
73998
74023
|
maintainer: "lancy@vm0.ai",
|
|
73999
|
-
description: "Enable
|
|
74024
|
+
description: "Enable audio input/output features in chat (TTS read-aloud, auto-read, voice input)",
|
|
74000
74025
|
enabled: false,
|
|
74001
74026
|
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
74002
74027
|
},
|
|
@@ -76430,4 +76455,4 @@ undici/lib/web/fetch/body.js:
|
|
|
76430
76455
|
undici/lib/web/websocket/frame.js:
|
|
76431
76456
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
76432
76457
|
*/
|
|
76433
|
-
//# sourceMappingURL=chunk-
|
|
76458
|
+
//# sourceMappingURL=chunk-3DHUEIA7.js.map
|