@vm0/cli 9.112.3 → 9.112.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.
|
@@ -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.5",
|
|
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.5",
|
|
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",
|
|
@@ -73548,7 +73573,7 @@ var prepareTriggerBodySchema = external_exports.object({
|
|
|
73548
73573
|
var prepareTriggerResponseSchema = external_exports.object({
|
|
73549
73574
|
preparation: external_exports.object({
|
|
73550
73575
|
id: external_exports.string(),
|
|
73551
|
-
status: external_exports.
|
|
73576
|
+
status: external_exports.enum(["preparing", "ready", "failed"]),
|
|
73552
73577
|
runId: external_exports.string().optional()
|
|
73553
73578
|
})
|
|
73554
73579
|
});
|
|
@@ -73572,7 +73597,7 @@ var prepareCompleteBodySchema = external_exports.object({
|
|
|
73572
73597
|
});
|
|
73573
73598
|
var prepareCompleteResponseSchema = external_exports.object({
|
|
73574
73599
|
id: external_exports.string(),
|
|
73575
|
-
status: external_exports.
|
|
73600
|
+
status: external_exports.enum(["preparing", "ready", "failed"])
|
|
73576
73601
|
});
|
|
73577
73602
|
var zeroVoiceChatPrepareCompleteContract = c47.router({
|
|
73578
73603
|
complete: {
|
|
@@ -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-GN5OF2S7.js.map
|