@vm0/cli 9.165.0 → 9.165.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.
|
@@ -74083,7 +74083,7 @@ if (DSN) {
|
|
|
74083
74083
|
init2({
|
|
74084
74084
|
dsn: DSN,
|
|
74085
74085
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
74086
|
-
release: "9.165.
|
|
74086
|
+
release: "9.165.2",
|
|
74087
74087
|
sendDefaultPii: false,
|
|
74088
74088
|
tracesSampleRate: 0,
|
|
74089
74089
|
shutdownTimeout: 500,
|
|
@@ -74102,7 +74102,7 @@ if (DSN) {
|
|
|
74102
74102
|
}
|
|
74103
74103
|
});
|
|
74104
74104
|
setContext("cli", {
|
|
74105
|
-
version: "9.165.
|
|
74105
|
+
version: "9.165.2",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -74316,8 +74316,7 @@ var FEATURE_SWITCHES = {
|
|
|
74316
74316
|
["googleAdsConnector" /* GoogleAdsConnector */]: {
|
|
74317
74317
|
maintainer: "ethan@vm0.ai",
|
|
74318
74318
|
description: "Enable the Google Ads connector",
|
|
74319
|
-
enabled:
|
|
74320
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
74319
|
+
enabled: true
|
|
74321
74320
|
},
|
|
74322
74321
|
["metaAdsConnector" /* MetaAdsConnector */]: {
|
|
74323
74322
|
maintainer: "ethan@vm0.ai",
|
|
@@ -95681,6 +95680,7 @@ var checkoutRequestSchema = external_exports.object({
|
|
|
95681
95680
|
});
|
|
95682
95681
|
var creditCheckoutRequestSchema = external_exports.object({
|
|
95683
95682
|
credits: external_exports.number().int().min(1e3).max(1e7),
|
|
95683
|
+
customAmount: external_exports.boolean().optional(),
|
|
95684
95684
|
successUrl: external_exports.string().url(),
|
|
95685
95685
|
cancelUrl: external_exports.string().url(),
|
|
95686
95686
|
autoRecharge: external_exports.object({
|
|
@@ -95689,6 +95689,11 @@ var creditCheckoutRequestSchema = external_exports.object({
|
|
|
95689
95689
|
amount: external_exports.number().int().min(1e3).max(1e7).optional()
|
|
95690
95690
|
}).optional()
|
|
95691
95691
|
}).refine(
|
|
95692
|
+
(data) => {
|
|
95693
|
+
return data.customAmount !== true || data.autoRecharge === void 0;
|
|
95694
|
+
},
|
|
95695
|
+
{ message: "auto-recharge is not supported for custom amount checkout" }
|
|
95696
|
+
).refine(
|
|
95692
95697
|
(data) => {
|
|
95693
95698
|
return data.autoRecharge?.enabled !== true || data.autoRecharge.threshold === void 0 || data.autoRecharge.amount === void 0 || data.autoRecharge.threshold < data.autoRecharge.amount;
|
|
95694
95699
|
},
|
|
@@ -132099,6 +132104,7 @@ var zeroUsageRunsContract = c74.router({
|
|
|
132099
132104
|
query: external_exports.object({
|
|
132100
132105
|
page: external_exports.coerce.number().int().positive().default(1),
|
|
132101
132106
|
pageSize: external_exports.coerce.number().int().positive().max(100).default(20),
|
|
132107
|
+
runId: external_exports.string().uuid().optional(),
|
|
132102
132108
|
agentId: external_exports.string().optional(),
|
|
132103
132109
|
// Comma-separated list of user IDs to filter by. Empty string = no filter.
|
|
132104
132110
|
userIds: external_exports.string().optional(),
|
|
@@ -132107,6 +132113,7 @@ var zeroUsageRunsContract = c74.router({
|
|
|
132107
132113
|
}),
|
|
132108
132114
|
responses: {
|
|
132109
132115
|
200: usageRunsResponseSchema,
|
|
132116
|
+
400: apiErrorSchema,
|
|
132110
132117
|
401: apiErrorSchema,
|
|
132111
132118
|
403: apiErrorSchema,
|
|
132112
132119
|
500: apiErrorSchema
|
|
@@ -135346,4 +135353,4 @@ undici/lib/web/fetch/body.js:
|
|
|
135346
135353
|
undici/lib/web/websocket/frame.js:
|
|
135347
135354
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
135348
135355
|
*/
|
|
135349
|
-
//# sourceMappingURL=chunk-
|
|
135356
|
+
//# sourceMappingURL=chunk-2U6TV3JH.js.map
|