@vm0/cli 9.132.6 → 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.
|
|
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.
|
|
66290
|
+
version: "9.132.7",
|
|
66291
66291
|
command: process.argv.slice(2).join(" ")
|
|
66292
66292
|
});
|
|
66293
66293
|
setContext("runtime", {
|
|
@@ -94797,10 +94797,12 @@ var modelProviderTypeSchema = external_exports.enum([
|
|
|
94797
94797
|
var modelProviderFrameworkSchema = external_exports.enum(["claude-code"]);
|
|
94798
94798
|
function hasAuthMethods(type) {
|
|
94799
94799
|
const config4 = MODEL_PROVIDER_TYPES[type];
|
|
94800
|
+
if (!config4) return false;
|
|
94800
94801
|
return "authMethods" in config4;
|
|
94801
94802
|
}
|
|
94802
94803
|
function getAuthMethodsForType(type) {
|
|
94803
94804
|
const config4 = MODEL_PROVIDER_TYPES[type];
|
|
94805
|
+
if (!config4) return void 0;
|
|
94804
94806
|
return "authMethods" in config4 ? config4.authMethods : void 0;
|
|
94805
94807
|
}
|
|
94806
94808
|
function getDefaultAuthMethod(type) {
|
|
@@ -94949,6 +94951,12 @@ var chatThreadDetailSchema = external_exports.object({
|
|
|
94949
94951
|
agentId: external_exports.string(),
|
|
94950
94952
|
chatMessages: external_exports.array(storedChatMessageSchema),
|
|
94951
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(),
|
|
94952
94960
|
/**
|
|
94953
94961
|
* Provider type of the latest run in this thread, if any. Used by the
|
|
94954
94962
|
* composer's model picker to disable options whose base URL differs from
|
|
@@ -94987,6 +94995,7 @@ var chatThreadsContract = c13.router({
|
|
|
94987
94995
|
headers: authHeadersSchema,
|
|
94988
94996
|
body: external_exports.object({
|
|
94989
94997
|
agentId: external_exports.string().min(1),
|
|
94998
|
+
clientThreadId: external_exports.string().uuid().optional(),
|
|
94990
94999
|
title: external_exports.string().optional()
|
|
94991
95000
|
}),
|
|
94992
95001
|
responses: {
|
|
@@ -95085,6 +95094,7 @@ var chatMessagesContract = c13.router({
|
|
|
95085
95094
|
agentId: external_exports.string().min(1),
|
|
95086
95095
|
prompt: external_exports.string().min(1),
|
|
95087
95096
|
threadId: external_exports.string().optional(),
|
|
95097
|
+
clientThreadId: external_exports.string().uuid().optional(),
|
|
95088
95098
|
modelProvider: external_exports.string().optional(),
|
|
95089
95099
|
/**
|
|
95090
95100
|
* Per-run model override; persisted on the thread so subsequent runs
|
|
@@ -98148,4 +98158,4 @@ undici/lib/web/fetch/body.js:
|
|
|
98148
98158
|
undici/lib/web/websocket/frame.js:
|
|
98149
98159
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
98150
98160
|
*/
|
|
98151
|
-
//# sourceMappingURL=chunk-
|
|
98161
|
+
//# sourceMappingURL=chunk-FZMGSRRK.js.map
|