@vm0/cli 9.180.6 → 9.180.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.
|
@@ -74083,7 +74083,7 @@ if (DSN) {
|
|
|
74083
74083
|
init2({
|
|
74084
74084
|
dsn: DSN,
|
|
74085
74085
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
74086
|
-
release: "9.180.
|
|
74086
|
+
release: "9.180.7",
|
|
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.180.
|
|
74105
|
+
version: "9.180.7",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -130169,6 +130169,16 @@ var cronAggregateInsightsResponseSchema = external_exports.union([
|
|
|
130169
130169
|
cronAggregateInsightsSkippedResponseSchema,
|
|
130170
130170
|
cronAggregateInsightsAggregatedResponseSchema
|
|
130171
130171
|
]);
|
|
130172
|
+
var cronSummarizeMemorySkippedResponseSchema = external_exports.object({
|
|
130173
|
+
skipped: external_exports.literal(true)
|
|
130174
|
+
});
|
|
130175
|
+
var cronSummarizeMemorySummarizedResponseSchema = external_exports.object({
|
|
130176
|
+
summarized: external_exports.number()
|
|
130177
|
+
});
|
|
130178
|
+
var cronSummarizeMemoryResponseSchema = external_exports.union([
|
|
130179
|
+
cronSummarizeMemorySkippedResponseSchema,
|
|
130180
|
+
cronSummarizeMemorySummarizedResponseSchema
|
|
130181
|
+
]);
|
|
130172
130182
|
var cronAggregateUsageContract = c54.router({
|
|
130173
130183
|
aggregate: {
|
|
130174
130184
|
method: "GET",
|
|
@@ -130277,6 +130287,18 @@ var cronAggregateInsightsContract = c54.router({
|
|
|
130277
130287
|
summary: "Aggregate daily usage insights"
|
|
130278
130288
|
}
|
|
130279
130289
|
});
|
|
130290
|
+
var cronSummarizeMemoryContract = c54.router({
|
|
130291
|
+
summarize: {
|
|
130292
|
+
method: "GET",
|
|
130293
|
+
path: "/api/cron/summarize-memory",
|
|
130294
|
+
headers: authHeadersSchema,
|
|
130295
|
+
responses: {
|
|
130296
|
+
200: cronSummarizeMemoryResponseSchema,
|
|
130297
|
+
401: apiErrorSchema
|
|
130298
|
+
},
|
|
130299
|
+
summary: "Summarize daily memory changes per user"
|
|
130300
|
+
}
|
|
130301
|
+
});
|
|
130280
130302
|
|
|
130281
130303
|
// ../../packages/api-contracts/src/contracts/chat-threads-v1.ts
|
|
130282
130304
|
init_esm_shims();
|
|
@@ -135669,4 +135691,4 @@ undici/lib/web/fetch/body.js:
|
|
|
135669
135691
|
undici/lib/web/websocket/frame.js:
|
|
135670
135692
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
135671
135693
|
*/
|
|
135672
|
-
//# sourceMappingURL=chunk-
|
|
135694
|
+
//# sourceMappingURL=chunk-X2L5I4F6.js.map
|