@vm0/cli 9.132.5 → 9.132.7

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.
@@ -66268,7 +66268,7 @@ if (DSN) {
66268
66268
  init2({
66269
66269
  dsn: DSN,
66270
66270
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
66271
- release: "9.132.5",
66271
+ release: "9.132.7",
66272
66272
  sendDefaultPii: false,
66273
66273
  tracesSampleRate: 0,
66274
66274
  shutdownTimeout: 500,
@@ -66287,7 +66287,7 @@ if (DSN) {
66287
66287
  }
66288
66288
  });
66289
66289
  setContext("cli", {
66290
- version: "9.132.5",
66290
+ version: "9.132.7",
66291
66291
  command: process.argv.slice(2).join(" ")
66292
66292
  });
66293
66293
  setContext("runtime", {
@@ -94451,12 +94451,18 @@ var MODEL_PROVIDER_TYPES = {
94451
94451
  CLAUDE_CODE_SUBAGENT_MODEL: "$model"
94452
94452
  },
94453
94453
  models: [
94454
+ "anthropic/claude-opus-4.7",
94454
94455
  "anthropic/claude-sonnet-4.6",
94455
94456
  "anthropic/claude-opus-4.6",
94456
- "anthropic/claude-sonnet-4.5",
94457
94457
  "anthropic/claude-opus-4.5",
94458
+ "anthropic/claude-sonnet-4.5",
94458
94459
  "anthropic/claude-haiku-4.5",
94459
- "z-ai/glm-5.1"
94460
+ "z-ai/glm-5.1",
94461
+ "deepseek/deepseek-v4-pro",
94462
+ "deepseek/deepseek-v4-flash",
94463
+ "moonshotai/kimi-k2.6",
94464
+ "moonshotai/kimi-k2.5",
94465
+ "minimax/minimax-m2.7"
94460
94466
  ],
94461
94467
  defaultModel: ""
94462
94468
  },
@@ -94791,10 +94797,12 @@ var modelProviderTypeSchema = external_exports.enum([
94791
94797
  var modelProviderFrameworkSchema = external_exports.enum(["claude-code"]);
94792
94798
  function hasAuthMethods(type) {
94793
94799
  const config4 = MODEL_PROVIDER_TYPES[type];
94800
+ if (!config4) return false;
94794
94801
  return "authMethods" in config4;
94795
94802
  }
94796
94803
  function getAuthMethodsForType(type) {
94797
94804
  const config4 = MODEL_PROVIDER_TYPES[type];
94805
+ if (!config4) return void 0;
94798
94806
  return "authMethods" in config4 ? config4.authMethods : void 0;
94799
94807
  }
94800
94808
  function getDefaultAuthMethod(type) {
@@ -94943,6 +94951,12 @@ var chatThreadDetailSchema = external_exports.object({
94943
94951
  agentId: external_exports.string(),
94944
94952
  chatMessages: external_exports.array(storedChatMessageSchema),
94945
94953
  latestSessionId: external_exports.string().nullable(),
94954
+ /**
94955
+ * ID of the latest message this user has marked read in this thread.
94956
+ * Null when the thread has never been explicitly marked read. Optional for
94957
+ * back-compat with fixtures/tests that predate the read marker field.
94958
+ */
94959
+ lastReadMessageId: external_exports.string().nullable().optional(),
94946
94960
  /**
94947
94961
  * Provider type of the latest run in this thread, if any. Used by the
94948
94962
  * composer's model picker to disable options whose base URL differs from
@@ -94981,6 +94995,7 @@ var chatThreadsContract = c13.router({
94981
94995
  headers: authHeadersSchema,
94982
94996
  body: external_exports.object({
94983
94997
  agentId: external_exports.string().min(1),
94998
+ clientThreadId: external_exports.string().uuid().optional(),
94984
94999
  title: external_exports.string().optional()
94985
95000
  }),
94986
95001
  responses: {
@@ -95079,6 +95094,7 @@ var chatMessagesContract = c13.router({
95079
95094
  agentId: external_exports.string().min(1),
95080
95095
  prompt: external_exports.string().min(1),
95081
95096
  threadId: external_exports.string().optional(),
95097
+ clientThreadId: external_exports.string().uuid().optional(),
95082
95098
  modelProvider: external_exports.string().optional(),
95083
95099
  /**
95084
95100
  * Per-run model override; persisted on the thread so subsequent runs
@@ -98142,4 +98158,4 @@ undici/lib/web/fetch/body.js:
98142
98158
  undici/lib/web/websocket/frame.js:
98143
98159
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
98144
98160
  */
98145
- //# sourceMappingURL=chunk-LYJPILDD.js.map
98161
+ //# sourceMappingURL=chunk-FZMGSRRK.js.map