@vm0/cli 9.122.2 → 9.122.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.
|
@@ -10125,9 +10125,9 @@ var require_commonjs2 = __commonJS({
|
|
|
10125
10125
|
}
|
|
10126
10126
|
});
|
|
10127
10127
|
|
|
10128
|
-
// ../../node_modules/.pnpm/minimatch@10.2.
|
|
10128
|
+
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js
|
|
10129
10129
|
var require_assert_valid_pattern = __commonJS({
|
|
10130
|
-
"../../node_modules/.pnpm/minimatch@10.2.
|
|
10130
|
+
"../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js"(exports) {
|
|
10131
10131
|
"use strict";
|
|
10132
10132
|
init_esm_shims();
|
|
10133
10133
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -10145,9 +10145,9 @@ var require_assert_valid_pattern = __commonJS({
|
|
|
10145
10145
|
}
|
|
10146
10146
|
});
|
|
10147
10147
|
|
|
10148
|
-
// ../../node_modules/.pnpm/minimatch@10.2.
|
|
10148
|
+
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/brace-expressions.js
|
|
10149
10149
|
var require_brace_expressions = __commonJS({
|
|
10150
|
-
"../../node_modules/.pnpm/minimatch@10.2.
|
|
10150
|
+
"../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/brace-expressions.js"(exports) {
|
|
10151
10151
|
"use strict";
|
|
10152
10152
|
init_esm_shims();
|
|
10153
10153
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -10263,26 +10263,26 @@ var require_brace_expressions = __commonJS({
|
|
|
10263
10263
|
}
|
|
10264
10264
|
});
|
|
10265
10265
|
|
|
10266
|
-
// ../../node_modules/.pnpm/minimatch@10.2.
|
|
10266
|
+
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/unescape.js
|
|
10267
10267
|
var require_unescape = __commonJS({
|
|
10268
|
-
"../../node_modules/.pnpm/minimatch@10.2.
|
|
10268
|
+
"../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/unescape.js"(exports) {
|
|
10269
10269
|
"use strict";
|
|
10270
10270
|
init_esm_shims();
|
|
10271
10271
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10272
10272
|
exports.unescape = void 0;
|
|
10273
10273
|
var unescape = (s, { windowsPathsNoEscape = false, magicalBraces = true } = {}) => {
|
|
10274
10274
|
if (magicalBraces) {
|
|
10275
|
-
return windowsPathsNoEscape ? s.replace(/\[([
|
|
10275
|
+
return windowsPathsNoEscape ? s.replace(/\[([^/\\])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\])\]/g, "$1$2").replace(/\\([^/])/g, "$1");
|
|
10276
10276
|
}
|
|
10277
|
-
return windowsPathsNoEscape ? s.replace(/\[([
|
|
10277
|
+
return windowsPathsNoEscape ? s.replace(/\[([^/\\{}])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\{}])\]/g, "$1$2").replace(/\\([^/{}])/g, "$1");
|
|
10278
10278
|
};
|
|
10279
10279
|
exports.unescape = unescape;
|
|
10280
10280
|
}
|
|
10281
10281
|
});
|
|
10282
10282
|
|
|
10283
|
-
// ../../node_modules/.pnpm/minimatch@10.2.
|
|
10283
|
+
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/ast.js
|
|
10284
10284
|
var require_ast = __commonJS({
|
|
10285
|
-
"../../node_modules/.pnpm/minimatch@10.2.
|
|
10285
|
+
"../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/ast.js"(exports) {
|
|
10286
10286
|
"use strict";
|
|
10287
10287
|
init_esm_shims();
|
|
10288
10288
|
var _a2;
|
|
@@ -10405,13 +10405,7 @@ var require_ast = __commonJS({
|
|
|
10405
10405
|
}
|
|
10406
10406
|
// reconstructs the pattern
|
|
10407
10407
|
toString() {
|
|
10408
|
-
|
|
10409
|
-
return this.#toString;
|
|
10410
|
-
if (!this.type) {
|
|
10411
|
-
return this.#toString = this.#parts.map((p) => String(p)).join("");
|
|
10412
|
-
} else {
|
|
10413
|
-
return this.#toString = this.type + "(" + this.#parts.map((p) => String(p)).join("|") + ")";
|
|
10414
|
-
}
|
|
10408
|
+
return this.#toString !== void 0 ? this.#toString : !this.type ? this.#toString = this.#parts.map((p) => String(p)).join("") : this.#toString = this.type + "(" + this.#parts.map((p) => String(p)).join("|") + ")";
|
|
10415
10409
|
}
|
|
10416
10410
|
#fillNegs() {
|
|
10417
10411
|
if (this !== this.#root)
|
|
@@ -10941,9 +10935,9 @@ var require_ast = __commonJS({
|
|
|
10941
10935
|
}
|
|
10942
10936
|
});
|
|
10943
10937
|
|
|
10944
|
-
// ../../node_modules/.pnpm/minimatch@10.2.
|
|
10938
|
+
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/escape.js
|
|
10945
10939
|
var require_escape = __commonJS({
|
|
10946
|
-
"../../node_modules/.pnpm/minimatch@10.2.
|
|
10940
|
+
"../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/escape.js"(exports) {
|
|
10947
10941
|
"use strict";
|
|
10948
10942
|
init_esm_shims();
|
|
10949
10943
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -10958,9 +10952,9 @@ var require_escape = __commonJS({
|
|
|
10958
10952
|
}
|
|
10959
10953
|
});
|
|
10960
10954
|
|
|
10961
|
-
// ../../node_modules/.pnpm/minimatch@10.2.
|
|
10955
|
+
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/index.js
|
|
10962
10956
|
var require_commonjs3 = __commonJS({
|
|
10963
|
-
"../../node_modules/.pnpm/minimatch@10.2.
|
|
10957
|
+
"../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/commonjs/index.js"(exports) {
|
|
10964
10958
|
"use strict";
|
|
10965
10959
|
init_esm_shims();
|
|
10966
10960
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -10978,7 +10972,7 @@ var require_commonjs3 = __commonJS({
|
|
|
10978
10972
|
return new Minimatch(pattern, options).match(p);
|
|
10979
10973
|
};
|
|
10980
10974
|
exports.minimatch = minimatch;
|
|
10981
|
-
var starDotExtRE = /^\*+([
|
|
10975
|
+
var starDotExtRE = /^\*+([^+@!?*[(]*)$/;
|
|
10982
10976
|
var starDotExtTest = (ext2) => (f) => !f.startsWith(".") && f.endsWith(ext2);
|
|
10983
10977
|
var starDotExtTestDot = (ext2) => (f) => f.endsWith(ext2);
|
|
10984
10978
|
var starDotExtTestNocase = (ext2) => {
|
|
@@ -10997,7 +10991,7 @@ var require_commonjs3 = __commonJS({
|
|
|
10997
10991
|
var starRE = /^\*+$/;
|
|
10998
10992
|
var starTest = (f) => f.length !== 0 && !f.startsWith(".");
|
|
10999
10993
|
var starTestDot = (f) => f.length !== 0 && f !== "." && f !== "..";
|
|
11000
|
-
var qmarksRE = /^\?+([
|
|
10994
|
+
var qmarksRE = /^\?+([^+@!?*[(]*)?$/;
|
|
11001
10995
|
var qmarksTestNocase = ([$0, ext2 = ""]) => {
|
|
11002
10996
|
const noext = qmarksTestNoExt([$0]);
|
|
11003
10997
|
if (!ext2)
|
|
@@ -11221,10 +11215,10 @@ var require_commonjs3 = __commonJS({
|
|
|
11221
11215
|
// of patterns that we have to process.
|
|
11222
11216
|
preprocess(globParts) {
|
|
11223
11217
|
if (this.options.noglobstar) {
|
|
11224
|
-
for (
|
|
11225
|
-
for (let j = 0; j <
|
|
11226
|
-
if (
|
|
11227
|
-
|
|
11218
|
+
for (const partset of globParts) {
|
|
11219
|
+
for (let j = 0; j < partset.length; j++) {
|
|
11220
|
+
if (partset[j] === "**") {
|
|
11221
|
+
partset[j] = "*";
|
|
11228
11222
|
}
|
|
11229
11223
|
}
|
|
11230
11224
|
}
|
|
@@ -11302,7 +11296,7 @@ var require_commonjs3 = __commonJS({
|
|
|
11302
11296
|
let dd = 0;
|
|
11303
11297
|
while (-1 !== (dd = parts.indexOf("..", dd + 1))) {
|
|
11304
11298
|
const p = parts[dd - 1];
|
|
11305
|
-
if (p && p !== "." && p !== ".." && p !== "**") {
|
|
11299
|
+
if (p && p !== "." && p !== ".." && p !== "**" && !(this.isWindows && /^[a-z]:$/i.test(p))) {
|
|
11306
11300
|
didSomething = true;
|
|
11307
11301
|
parts.splice(dd - 1, 2);
|
|
11308
11302
|
dd -= 2;
|
|
@@ -11718,7 +11712,7 @@ var require_commonjs3 = __commonJS({
|
|
|
11718
11712
|
re = "^(?!" + re + ").+$";
|
|
11719
11713
|
try {
|
|
11720
11714
|
this.regexp = new RegExp(re, [...flags].join(""));
|
|
11721
|
-
} catch
|
|
11715
|
+
} catch {
|
|
11722
11716
|
this.regexp = false;
|
|
11723
11717
|
}
|
|
11724
11718
|
return this.regexp;
|
|
@@ -11726,7 +11720,7 @@ var require_commonjs3 = __commonJS({
|
|
|
11726
11720
|
slashSplit(p) {
|
|
11727
11721
|
if (this.preserveMultipleSlashes) {
|
|
11728
11722
|
return p.split("/");
|
|
11729
|
-
} else if (this.isWindows && /^\/\/[
|
|
11723
|
+
} else if (this.isWindows && /^\/\/[^/]+/.test(p)) {
|
|
11730
11724
|
return ["", ...p.split(/\/+/)];
|
|
11731
11725
|
} else {
|
|
11732
11726
|
return p.split(/\/+/);
|
|
@@ -11757,8 +11751,7 @@ var require_commonjs3 = __commonJS({
|
|
|
11757
11751
|
filename = ff[i];
|
|
11758
11752
|
}
|
|
11759
11753
|
}
|
|
11760
|
-
for (
|
|
11761
|
-
const pattern = set2[i];
|
|
11754
|
+
for (const pattern of set2) {
|
|
11762
11755
|
let file2 = ff;
|
|
11763
11756
|
if (options.matchBase && pattern.length === 1) {
|
|
11764
11757
|
file2 = [filename];
|
|
@@ -73649,7 +73642,7 @@ if (DSN) {
|
|
|
73649
73642
|
init2({
|
|
73650
73643
|
dsn: DSN,
|
|
73651
73644
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
73652
|
-
release: "9.122.
|
|
73645
|
+
release: "9.122.4",
|
|
73653
73646
|
sendDefaultPii: false,
|
|
73654
73647
|
tracesSampleRate: 0,
|
|
73655
73648
|
shutdownTimeout: 500,
|
|
@@ -73668,7 +73661,7 @@ if (DSN) {
|
|
|
73668
73661
|
}
|
|
73669
73662
|
});
|
|
73670
73663
|
setContext("cli", {
|
|
73671
|
-
version: "9.122.
|
|
73664
|
+
version: "9.122.4",
|
|
73672
73665
|
command: process.argv.slice(2).join(" ")
|
|
73673
73666
|
});
|
|
73674
73667
|
setContext("runtime", {
|
|
@@ -109953,7 +109946,14 @@ var chatThreadListItemSchema = external_exports.object({
|
|
|
109953
109946
|
title: external_exports.string().nullable(),
|
|
109954
109947
|
agentId: external_exports.string(),
|
|
109955
109948
|
createdAt: external_exports.string(),
|
|
109956
|
-
updatedAt: external_exports.string()
|
|
109949
|
+
updatedAt: external_exports.string(),
|
|
109950
|
+
/**
|
|
109951
|
+
* Read state of the thread's last message. `false` when the thread has no
|
|
109952
|
+
* messages yet or the last message has not been marked read.
|
|
109953
|
+
* Threads whose last message is archived are filtered out server-side.
|
|
109954
|
+
*/
|
|
109955
|
+
isRead: external_exports.boolean(),
|
|
109956
|
+
isArchived: external_exports.boolean()
|
|
109957
109957
|
});
|
|
109958
109958
|
var toolSummaryEntrySchema = external_exports.object({
|
|
109959
109959
|
kind: external_exports.literal("tool"),
|
|
@@ -116204,4 +116204,4 @@ undici/lib/web/fetch/body.js:
|
|
|
116204
116204
|
undici/lib/web/websocket/frame.js:
|
|
116205
116205
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
116206
116206
|
*/
|
|
116207
|
-
//# sourceMappingURL=chunk-
|
|
116207
|
+
//# sourceMappingURL=chunk-DJPGNCLD.js.map
|