@vm0/cli 9.127.0 → 9.127.2

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.
@@ -73642,7 +73642,7 @@ if (DSN) {
73642
73642
  init2({
73643
73643
  dsn: DSN,
73644
73644
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
73645
- release: "9.127.0",
73645
+ release: "9.127.2",
73646
73646
  sendDefaultPii: false,
73647
73647
  tracesSampleRate: 0,
73648
73648
  shutdownTimeout: 500,
@@ -73661,7 +73661,7 @@ if (DSN) {
73661
73661
  }
73662
73662
  });
73663
73663
  setContext("cli", {
73664
- version: "9.127.0",
73664
+ version: "9.127.2",
73665
73665
  command: process.argv.slice(2).join(" ")
73666
73666
  });
73667
73667
  setContext("runtime", {
@@ -111110,8 +111110,7 @@ var VM0_MODEL_TO_PROVIDER = {
111110
111110
  "glm-5.1": {
111111
111111
  concreteType: "openrouter-api-key",
111112
111112
  vendor: "openrouter",
111113
- apiModel: "z-ai/glm-5.1",
111114
- featureFlag: "vm0GlmModel" /* Vm0GlmModel */
111113
+ apiModel: "z-ai/glm-5.1"
111115
111114
  },
111116
111115
  "claude-haiku-4-5": {
111117
111116
  concreteType: "anthropic-api-key",
@@ -111128,6 +111127,11 @@ var VM0_MODEL_TO_PROVIDER = {
111128
111127
  "MiniMax-M2.7": {
111129
111128
  concreteType: "minimax-api-key",
111130
111129
  vendor: "minimax"
111130
+ },
111131
+ "deepseek-chat": {
111132
+ concreteType: "deepseek-api-key",
111133
+ vendor: "deepseek",
111134
+ featureFlag: "vm0DeepseekModel" /* Vm0DeepseekModel */
111131
111135
  }
111132
111136
  };
111133
111137
  var MODEL_PROVIDER_TYPES = {
@@ -115512,9 +115516,12 @@ var voiceChatCandidateSessionSchema = external_exports.object({
115512
115516
  agentId: external_exports.uuid().nullable(),
115513
115517
  mode: external_exports.literal("chat"),
115514
115518
  status: voiceChatCandidateSessionStatusSchema,
115515
- context: external_exports.string().nullable(),
115516
- contextSeq: external_exports.number().int(),
115517
- contextVersion: external_exports.number().int(),
115519
+ conversationSummary: external_exports.string().nullable(),
115520
+ workingTasksSummary: external_exports.string().nullable(),
115521
+ finishedTasksSummary: external_exports.string().nullable(),
115522
+ summarySeq: external_exports.number().int(),
115523
+ summaryVersion: external_exports.number().int(),
115524
+ lastSummaryAt: external_exports.string().nullable(),
115518
115525
  createdAt: external_exports.string(),
115519
115526
  lastHeartbeatAt: external_exports.string(),
115520
115527
  endedAt: external_exports.string().nullable()
@@ -115529,6 +115536,11 @@ var voiceChatCandidateItemSchema = external_exports.object({
115529
115536
  realtimeItemId: external_exports.string().nullable(),
115530
115537
  createdAt: external_exports.string()
115531
115538
  });
115539
+ var voiceChatCandidateTaskResultEntrySchema = external_exports.object({
115540
+ type: external_exports.literal("assistant"),
115541
+ content: external_exports.string(),
115542
+ at: external_exports.string()
115543
+ });
115532
115544
  var voiceChatCandidateTaskSchema = external_exports.object({
115533
115545
  id: external_exports.uuid(),
115534
115546
  sessionId: external_exports.uuid(),
@@ -115536,7 +115548,7 @@ var voiceChatCandidateTaskSchema = external_exports.object({
115536
115548
  callId: external_exports.string(),
115537
115549
  prompt: external_exports.string(),
115538
115550
  status: voiceChatCandidateTaskStatusSchema,
115539
- result: external_exports.string().nullable(),
115551
+ assistantMessages: external_exports.array(voiceChatCandidateTaskResultEntrySchema),
115540
115552
  error: external_exports.string().nullable(),
115541
115553
  createdAt: external_exports.string(),
115542
115554
  startedAt: external_exports.string().nullable(),
@@ -115567,7 +115579,13 @@ var zeroVoiceChatCandidateContract = c52.router({
115567
115579
  headers: authHeadersSchema,
115568
115580
  body: createSessionBodySchema,
115569
115581
  responses: {
115570
- 200: external_exports.object({ session: voiceChatCandidateSessionSchema }),
115582
+ 200: external_exports.object({
115583
+ session: voiceChatCandidateSessionSchema,
115584
+ recentTaskLogs: external_exports.string(),
115585
+ finishedTasksFullText: external_exports.string(),
115586
+ talkerInstructions: external_exports.string(),
115587
+ talkerInstructionTokens: external_exports.number().int().nonnegative()
115588
+ }),
115571
115589
  400: apiErrorSchema,
115572
115590
  401: apiErrorSchema,
115573
115591
  403: apiErrorSchema
@@ -115580,11 +115598,50 @@ var zeroVoiceChatCandidateContract = c52.router({
115580
115598
  headers: authHeadersSchema,
115581
115599
  pathParams: external_exports.object({ id: external_exports.uuid() }),
115582
115600
  responses: {
115583
- 200: external_exports.object({ session: voiceChatCandidateSessionSchema }),
115601
+ 200: external_exports.object({
115602
+ session: voiceChatCandidateSessionSchema,
115603
+ recentTaskLogs: external_exports.string(),
115604
+ finishedTasksFullText: external_exports.string(),
115605
+ talkerInstructions: external_exports.string(),
115606
+ talkerInstructionTokens: external_exports.number().int().nonnegative()
115607
+ }),
115608
+ 401: apiErrorSchema,
115609
+ 404: apiErrorSchema
115610
+ },
115611
+ summary: "Get a voice-chat-candidate session with recent task logs"
115612
+ },
115613
+ listSessions: {
115614
+ method: "GET",
115615
+ path: "/api/zero/voice-chat-candidate",
115616
+ headers: authHeadersSchema,
115617
+ responses: {
115618
+ 200: external_exports.object({
115619
+ sessions: external_exports.array(voiceChatCandidateSessionSchema)
115620
+ }),
115621
+ 401: apiErrorSchema,
115622
+ 403: apiErrorSchema
115623
+ },
115624
+ summary: "List voice-chat-candidate sessions for the current user"
115625
+ },
115626
+ reenterSession: {
115627
+ method: "POST",
115628
+ path: "/api/zero/voice-chat-candidate/:id/reenter",
115629
+ headers: authHeadersSchema,
115630
+ pathParams: external_exports.object({ id: external_exports.uuid() }),
115631
+ body: external_exports.object({}),
115632
+ responses: {
115633
+ 200: external_exports.object({
115634
+ session: voiceChatCandidateSessionSchema,
115635
+ recentTaskLogs: external_exports.string(),
115636
+ finishedTasksFullText: external_exports.string(),
115637
+ talkerInstructions: external_exports.string(),
115638
+ talkerInstructionTokens: external_exports.number().int().nonnegative()
115639
+ }),
115584
115640
  401: apiErrorSchema,
115641
+ 403: apiErrorSchema,
115585
115642
  404: apiErrorSchema
115586
115643
  },
115587
- summary: "Get a voice-chat-candidate session (including context)"
115644
+ summary: "Reactivate and load a voice-chat-candidate session, re-computing talker instructions"
115588
115645
  },
115589
115646
  endSession: {
115590
115647
  method: "POST",
@@ -115653,6 +115710,18 @@ var zeroVoiceChatCandidateContract = c52.router({
115653
115710
  },
115654
115711
  summary: "Create a task from the Talker's createTask tool call"
115655
115712
  },
115713
+ listTasks: {
115714
+ method: "GET",
115715
+ path: "/api/zero/voice-chat-candidate/:id/tasks",
115716
+ headers: authHeadersSchema,
115717
+ pathParams: external_exports.object({ id: external_exports.uuid() }),
115718
+ responses: {
115719
+ 200: external_exports.object({ tasks: external_exports.array(voiceChatCandidateTaskSchema) }),
115720
+ 401: apiErrorSchema,
115721
+ 404: apiErrorSchema
115722
+ },
115723
+ summary: "List voice-chat-candidate tasks for a session"
115724
+ },
115656
115725
  token: {
115657
115726
  method: "POST",
115658
115727
  path: "/api/zero/voice-chat-candidate/token",
@@ -116271,11 +116340,6 @@ var FEATURE_SWITCHES = {
116271
116340
  description: "Enable the Zoom connector (OAuth 2.0) for meetings, past participants, and cloud recordings access",
116272
116341
  enabled: false
116273
116342
  },
116274
- ["vm0GlmModel" /* Vm0GlmModel */]: {
116275
- maintainer: "ethan@vm0.ai",
116276
- description: "Expose Z.AI GLM-5.1 as a selectable model under the VM0 managed provider",
116277
- enabled: false
116278
- },
116279
116343
  ["apiKeys" /* ApiKeys */]: {
116280
116344
  maintainer: "ethan@vm0.ai",
116281
116345
  description: "Gate the custom /settings/api-keys UI for issuing personal access tokens used by the /api/v1 public surface. When disabled, the settings page redirects to / and the sidebar menu item is hidden. The backend /api/v1 verification does NOT consult this flag \u2014 previously issued PATs continue to work.",
@@ -116303,6 +116367,11 @@ var FEATURE_SWITCHES = {
116303
116367
  maintainer: "ethan@vm0.ai",
116304
116368
  description: "Replace the per-agent chat list with a unified Chats view that includes threads from every agent in the user's org (sub-agents included). Gates the sidebar + /chats title/placeholder/aria-label swaps, the per-row agent avatar render, and the unscoped request shape. New-chat creation still uses the current-agent fallback.",
116305
116369
  enabled: false
116370
+ },
116371
+ ["vm0DeepseekModel" /* Vm0DeepseekModel */]: {
116372
+ maintainer: "ethan@vm0.ai",
116373
+ description: "Enable the DeepSeek-V3.2 (deepseek-chat) VM0 managed model",
116374
+ enabled: false
116306
116375
  }
116307
116376
  };
116308
116377
  function isFeatureEnabled(key, ctx) {
@@ -118907,4 +118976,4 @@ undici/lib/web/fetch/body.js:
118907
118976
  undici/lib/web/websocket/frame.js:
118908
118977
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
118909
118978
  */
118910
- //# sourceMappingURL=chunk-GB3ETMZ2.js.map
118979
+ //# sourceMappingURL=chunk-6XWVRALX.js.map