@vm0/cli 9.112.5 → 9.113.0
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.
- package/{chunk-GN5OF2S7.js → chunk-BDLDW4ES.js} +27 -3
- package/{chunk-GN5OF2S7.js.map → chunk-BDLDW4ES.js.map} +1 -1
- package/index.js +10 -10
- package/package.json +1 -1
- package/zero.js +2 -3
- package/zero.js.map +1 -1
|
@@ -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.
|
|
34655
|
+
release: "9.113.0",
|
|
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.
|
|
34674
|
+
version: "9.113.0",
|
|
34675
34675
|
command: process.argv.slice(2).join(" ")
|
|
34676
34676
|
});
|
|
34677
34677
|
Sentry.setContext("runtime", {
|
|
@@ -73614,6 +73614,30 @@ var zeroVoiceChatPrepareCompleteContract = c47.router({
|
|
|
73614
73614
|
summary: "Complete a voice-chat preparation run by submitting the directive content"
|
|
73615
73615
|
}
|
|
73616
73616
|
});
|
|
73617
|
+
var prepareListResponseSchema = external_exports.object({
|
|
73618
|
+
preparations: external_exports.array(
|
|
73619
|
+
external_exports.object({
|
|
73620
|
+
id: external_exports.string(),
|
|
73621
|
+
mode: external_exports.string(),
|
|
73622
|
+
prompt: external_exports.string().nullable(),
|
|
73623
|
+
agentId: external_exports.string().nullable(),
|
|
73624
|
+
createdAt: external_exports.string()
|
|
73625
|
+
})
|
|
73626
|
+
)
|
|
73627
|
+
});
|
|
73628
|
+
var zeroVoiceChatPrepareListContract = c47.router({
|
|
73629
|
+
list: {
|
|
73630
|
+
method: "GET",
|
|
73631
|
+
path: "/api/zero/voice-chat/prepare/list",
|
|
73632
|
+
headers: authHeadersSchema,
|
|
73633
|
+
responses: {
|
|
73634
|
+
200: prepareListResponseSchema,
|
|
73635
|
+
401: apiErrorSchema,
|
|
73636
|
+
403: apiErrorSchema
|
|
73637
|
+
},
|
|
73638
|
+
summary: "List fresh meeting preparations for the current user"
|
|
73639
|
+
}
|
|
73640
|
+
});
|
|
73617
73641
|
|
|
73618
73642
|
// ../../packages/core/src/contracts/tasks.ts
|
|
73619
73643
|
init_esm_shims();
|
|
@@ -76455,4 +76479,4 @@ undici/lib/web/fetch/body.js:
|
|
|
76455
76479
|
undici/lib/web/websocket/frame.js:
|
|
76456
76480
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
76457
76481
|
*/
|
|
76458
|
-
//# sourceMappingURL=chunk-
|
|
76482
|
+
//# sourceMappingURL=chunk-BDLDW4ES.js.map
|