@vm0/cli 9.138.0 → 9.138.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.
|
@@ -74090,7 +74090,7 @@ if (DSN) {
|
|
|
74090
74090
|
init2({
|
|
74091
74091
|
dsn: DSN,
|
|
74092
74092
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
74093
|
-
release: "9.138.
|
|
74093
|
+
release: "9.138.2",
|
|
74094
74094
|
sendDefaultPii: false,
|
|
74095
74095
|
tracesSampleRate: 0,
|
|
74096
74096
|
shutdownTimeout: 500,
|
|
@@ -74109,7 +74109,7 @@ if (DSN) {
|
|
|
74109
74109
|
}
|
|
74110
74110
|
});
|
|
74111
74111
|
setContext("cli", {
|
|
74112
|
-
version: "9.138.
|
|
74112
|
+
version: "9.138.2",
|
|
74113
74113
|
command: process.argv.slice(2).join(" ")
|
|
74114
74114
|
});
|
|
74115
74115
|
setContext("runtime", {
|
|
@@ -102224,9 +102224,8 @@ var VM0_MODEL_TO_PROVIDER = {
|
|
|
102224
102224
|
vendor: "minimax"
|
|
102225
102225
|
},
|
|
102226
102226
|
"deepseek-v4-pro": {
|
|
102227
|
-
concreteType: "
|
|
102228
|
-
vendor: "
|
|
102229
|
-
apiModel: "deepseek/deepseek-v4-pro"
|
|
102227
|
+
concreteType: "deepseek-api-key",
|
|
102228
|
+
vendor: "deepseek"
|
|
102230
102229
|
},
|
|
102231
102230
|
"deepseek-v4-flash": {
|
|
102232
102231
|
concreteType: "deepseek-api-key",
|
|
@@ -104911,10 +104910,20 @@ var MIME_BY_EXTENSION = {
|
|
|
104911
104910
|
".jpeg": "image/jpeg",
|
|
104912
104911
|
".gif": "image/gif",
|
|
104913
104912
|
".webp": "image/webp",
|
|
104913
|
+
".avif": "image/avif",
|
|
104914
104914
|
".svg": "image/svg+xml",
|
|
104915
104915
|
".mp4": "video/mp4",
|
|
104916
104916
|
".webm": "video/webm",
|
|
104917
104917
|
".mov": "video/quicktime",
|
|
104918
|
+
".aac": "audio/aac",
|
|
104919
|
+
".flac": "audio/flac",
|
|
104920
|
+
".m4a": "audio/mp4",
|
|
104921
|
+
".mp3": "audio/mpeg",
|
|
104922
|
+
".mpga": "audio/mpga",
|
|
104923
|
+
".ogg": "audio/ogg",
|
|
104924
|
+
".opus": "audio/opus",
|
|
104925
|
+
".wav": "audio/wav",
|
|
104926
|
+
".wave": "audio/wave",
|
|
104918
104927
|
".pdf": "application/pdf",
|
|
104919
104928
|
".txt": "text/plain",
|
|
104920
104929
|
".csv": "text/csv",
|
|
@@ -118170,6 +118179,15 @@ var creditBreakdownSegmentSchema = external_exports.object({
|
|
|
118170
118179
|
// without round-tripping through the `label` string.
|
|
118171
118180
|
tier: external_exports.enum(["pro", "team"]).optional()
|
|
118172
118181
|
});
|
|
118182
|
+
var creditGrantSchema = external_exports.object({
|
|
118183
|
+
id: external_exports.string(),
|
|
118184
|
+
source: external_exports.string(),
|
|
118185
|
+
label: external_exports.string(),
|
|
118186
|
+
amount: external_exports.number(),
|
|
118187
|
+
remaining: external_exports.number(),
|
|
118188
|
+
createdAt: external_exports.string(),
|
|
118189
|
+
expiresAt: external_exports.string()
|
|
118190
|
+
});
|
|
118173
118191
|
var billingStatusResponseSchema = external_exports.object({
|
|
118174
118192
|
tier: external_exports.string(),
|
|
118175
118193
|
credits: external_exports.number(),
|
|
@@ -118179,7 +118197,8 @@ var billingStatusResponseSchema = external_exports.object({
|
|
|
118179
118197
|
hasSubscription: external_exports.boolean(),
|
|
118180
118198
|
autoRecharge: autoRechargeSchema,
|
|
118181
118199
|
creditExpiry: creditExpirySchema,
|
|
118182
|
-
creditBreakdown: external_exports.array(creditBreakdownSegmentSchema)
|
|
118200
|
+
creditBreakdown: external_exports.array(creditBreakdownSegmentSchema),
|
|
118201
|
+
creditGrants: external_exports.array(creditGrantSchema)
|
|
118183
118202
|
});
|
|
118184
118203
|
var checkoutResponseSchema = external_exports.object({
|
|
118185
118204
|
url: external_exports.string()
|
|
@@ -119609,7 +119628,7 @@ var FEATURE_SWITCHES = {
|
|
|
119609
119628
|
["usageAnalytics" /* UsageAnalytics */]: {
|
|
119610
119629
|
maintainer: "ethan@vm0.ai",
|
|
119611
119630
|
description: "Show admin-only daily credits chart and per-run records on Usage page",
|
|
119612
|
-
enabled:
|
|
119631
|
+
enabled: true
|
|
119613
119632
|
},
|
|
119614
119633
|
["zeroDebug" /* ZeroDebug */]: {
|
|
119615
119634
|
maintainer: "ethan@vm0.ai",
|
|
@@ -121077,4 +121096,4 @@ undici/lib/web/fetch/body.js:
|
|
|
121077
121096
|
undici/lib/web/websocket/frame.js:
|
|
121078
121097
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
121079
121098
|
*/
|
|
121080
|
-
//# sourceMappingURL=chunk-
|
|
121099
|
+
//# sourceMappingURL=chunk-5GETKYXH.js.map
|