@vm0/cli 9.131.3 → 9.131.4
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.131.
|
|
73645
|
+
release: "9.131.4",
|
|
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.131.
|
|
73664
|
+
version: "9.131.4",
|
|
73665
73665
|
command: process.argv.slice(2).join(" ")
|
|
73666
73666
|
});
|
|
73667
73667
|
setContext("runtime", {
|
|
@@ -112858,6 +112858,12 @@ var chatThreadDetailSchema = external_exports.object({
|
|
|
112858
112858
|
*/
|
|
112859
112859
|
latestSessionProviderType: modelProviderTypeSchema.nullable().optional(),
|
|
112860
112860
|
activeRunIds: external_exports.array(external_exports.string()),
|
|
112861
|
+
/**
|
|
112862
|
+
* Active (non-terminal) runs attached to this thread, with live status.
|
|
112863
|
+
* Lets the UI distinguish queued runs from running runs without an extra
|
|
112864
|
+
* API call. Optional for back-compat with fixtures that predate the field.
|
|
112865
|
+
*/
|
|
112866
|
+
activeRuns: external_exports.array(external_exports.object({ id: external_exports.string(), status: external_exports.string() })).optional(),
|
|
112861
112867
|
createdAt: external_exports.string(),
|
|
112862
112868
|
updatedAt: external_exports.string(),
|
|
112863
112869
|
draftContent: external_exports.string().nullable().optional(),
|
|
@@ -115662,13 +115668,18 @@ var checkoutRequestSchema = external_exports.object({
|
|
|
115662
115668
|
cancelUrl: external_exports.string().url()
|
|
115663
115669
|
});
|
|
115664
115670
|
var portalRequestSchema = external_exports.object({
|
|
115665
|
-
returnUrl: external_exports.string().
|
|
115671
|
+
returnUrl: external_exports.string().url()
|
|
115666
115672
|
});
|
|
115667
115673
|
var autoRechargeUpdateRequestSchema = external_exports.object({
|
|
115668
115674
|
enabled: external_exports.boolean(),
|
|
115669
|
-
threshold: external_exports.number().int().positive().optional(),
|
|
115670
|
-
amount: external_exports.number().int().min(1e3).optional()
|
|
115671
|
-
})
|
|
115675
|
+
threshold: external_exports.number().int().positive().max(1e7).optional(),
|
|
115676
|
+
amount: external_exports.number().int().min(1e3).max(1e7).optional()
|
|
115677
|
+
}).refine(
|
|
115678
|
+
(data) => {
|
|
115679
|
+
return !data.enabled || data.threshold === void 0 || data.amount === void 0 || data.threshold < data.amount;
|
|
115680
|
+
},
|
|
115681
|
+
{ message: "threshold must be less than amount to avoid recharge loops" }
|
|
115682
|
+
);
|
|
115672
115683
|
var redeemRequestSchema = external_exports.object({
|
|
115673
115684
|
successUrl: external_exports.string().url(),
|
|
115674
115685
|
cancelUrl: external_exports.string().url()
|
|
@@ -117096,12 +117107,6 @@ var FEATURE_SWITCHES = {
|
|
|
117096
117107
|
description: "Enable automatic skill creation in agent prompts",
|
|
117097
117108
|
enabled: false
|
|
117098
117109
|
},
|
|
117099
|
-
["sandboxReuse" /* SandboxReuse */]: {
|
|
117100
|
-
maintainer: "liangyou@vm0.ai",
|
|
117101
|
-
description: "Enable sandbox reuse (keep-alive) across conversation turns",
|
|
117102
|
-
enabled: false,
|
|
117103
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
117104
|
-
},
|
|
117105
117110
|
["scheduleRunHistory" /* ScheduleRunHistory */]: {
|
|
117106
117111
|
maintainer: "linghan@vm0.ai",
|
|
117107
117112
|
description: "Show Run History tab on schedules page and Chat-from-schedule button on activity detail",
|
|
@@ -119747,4 +119752,4 @@ undici/lib/web/fetch/body.js:
|
|
|
119747
119752
|
undici/lib/web/websocket/frame.js:
|
|
119748
119753
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
119749
119754
|
*/
|
|
119750
|
-
//# sourceMappingURL=chunk-
|
|
119755
|
+
//# sourceMappingURL=chunk-FIAZJXG4.js.map
|