token-goat 2.9.2 → 2.9.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.
- package/README.md +22 -50
- package/dist/{token-goat-chunk-UZ2NFOOZ.mjs → token-goat-chunk-3ZR4NLB3.mjs} +165 -8
- package/dist/{token-goat-chunk-NY4HYRSK.mjs → token-goat-chunk-5BHXZEOI.mjs} +10 -12
- package/dist/{token-goat-chunk-Q4LOQY44.mjs → token-goat-chunk-63XEQMNU.mjs} +137 -12
- package/dist/{token-goat-chunk-KKIB7O3Z.mjs → token-goat-chunk-6MU6FHE3.mjs} +463 -106
- package/dist/token-goat-chunk-A37V4PBF.mjs +56 -0
- package/dist/{token-goat-chunk-LJ3CHCTT.mjs → token-goat-chunk-CBO45DYZ.mjs} +3728 -61
- package/dist/{token-goat-chunk-G6XLWJWI.mjs → token-goat-chunk-E3K3BTEQ.mjs} +5 -2
- package/dist/{token-goat-chunk-AO2QD2AG.mjs → token-goat-chunk-EEIDFMEM.mjs} +4 -0
- package/dist/{token-goat-chunk-CGWACYYZ.mjs → token-goat-chunk-EPX5DWGM.mjs} +6 -1
- package/dist/token-goat-chunk-EQKNR7CN.mjs +23 -0
- package/dist/{token-goat-chunk-324QOJYZ.mjs → token-goat-chunk-EVC4TOLE.mjs} +4 -1
- package/dist/{token-goat-chunk-WN5T5EW5.mjs → token-goat-chunk-FQD3OB5W.mjs} +98 -2
- package/dist/{token-goat-chunk-VCNW7BGU.mjs → token-goat-chunk-FSC44QOH.mjs} +20 -3
- package/dist/{token-goat-chunk-JMUBXBG7.mjs → token-goat-chunk-GEXHIIKM.mjs} +7 -7
- package/dist/{token-goat-chunk-5CVKO3DA.mjs → token-goat-chunk-LYWIRYCF.mjs} +5 -2
- package/dist/{token-goat-chunk-LEBYARO3.mjs → token-goat-chunk-OZAEJQ7L.mjs} +9 -6
- package/dist/{token-goat-chunk-R4SR7MQY.mjs → token-goat-chunk-PXWBHSFB.mjs} +2 -2
- package/dist/{token-goat-chunk-FXAPKVRG.mjs → token-goat-chunk-US57I7GN.mjs} +26 -5
- package/dist/token-goat-hook.mjs +12 -7
- package/dist/token-goat.core.mjs +10 -7
- package/docs/cli.md +68 -8
- package/docs/security.md +6 -2
- package/package.json +8 -2
- package/dist/token-goat-chunk-AEX54RUZ.mjs +0 -11
- package/dist/token-goat-chunk-ZVN5WHTO.mjs +0 -23
|
@@ -2,10 +2,13 @@ import { createRequire as __cjsRequire } from 'node:module';
|
|
|
2
2
|
const require = __cjsRequire(import.meta.url);
|
|
3
3
|
import {
|
|
4
4
|
clearModuleCaches
|
|
5
|
-
} from "./token-goat-chunk-
|
|
6
|
-
import
|
|
5
|
+
} from "./token-goat-chunk-EEIDFMEM.mjs";
|
|
6
|
+
import {
|
|
7
|
+
init_define_import_meta_env
|
|
8
|
+
} from "./token-goat-chunk-A37V4PBF.mjs";
|
|
7
9
|
|
|
8
10
|
// src/batch_serve.ts
|
|
11
|
+
init_define_import_meta_env();
|
|
9
12
|
function swapEnv(next) {
|
|
10
13
|
const before = { ...process.env };
|
|
11
14
|
for (const key of Object.keys(process.env)) if (!(key in next)) delete process.env[key];
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { createRequire as __cjsRequire } from 'node:module';
|
|
2
2
|
const require = __cjsRequire(import.meta.url);
|
|
3
|
+
import {
|
|
4
|
+
init_define_import_meta_env
|
|
5
|
+
} from "./token-goat-chunk-A37V4PBF.mjs";
|
|
3
6
|
|
|
4
7
|
// src/reset.ts
|
|
8
|
+
init_define_import_meta_env();
|
|
5
9
|
var _resets = [];
|
|
6
10
|
function registerReset(fn) {
|
|
7
11
|
_resets.push(fn);
|
|
@@ -2,9 +2,13 @@ import { createRequire as __cjsRequire } from 'node:module';
|
|
|
2
2
|
const require = __cjsRequire(import.meta.url);
|
|
3
3
|
import {
|
|
4
4
|
detectHarness
|
|
5
|
-
} from "./token-goat-chunk-
|
|
5
|
+
} from "./token-goat-chunk-3ZR4NLB3.mjs";
|
|
6
|
+
import {
|
|
7
|
+
init_define_import_meta_env
|
|
8
|
+
} from "./token-goat-chunk-A37V4PBF.mjs";
|
|
6
9
|
|
|
7
10
|
// src/delivery_cap.ts
|
|
11
|
+
init_define_import_meta_env();
|
|
8
12
|
var CLAUDE_CODE_BASH_OUTPUT_CAP_BYTES = 2e4;
|
|
9
13
|
function bashOutputCapBytes(harness = detectHarness()) {
|
|
10
14
|
return harness === "claudecode" ? CLAUDE_CODE_BASH_OUTPUT_CAP_BYTES : null;
|
|
@@ -16,6 +20,7 @@ function deliveredOutputBytes(originalBytes, harness) {
|
|
|
16
20
|
}
|
|
17
21
|
|
|
18
22
|
// src/shell.ts
|
|
23
|
+
init_define_import_meta_env();
|
|
19
24
|
import * as fs from "node:fs";
|
|
20
25
|
import * as path from "node:path";
|
|
21
26
|
var WSL_LAUNCHER_SEGMENTS = /* @__PURE__ */ new Set(["system32", "syswow64", "windowsapps"]);
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { createRequire as __cjsRequire } from 'node:module';
|
|
2
|
+
const require = __cjsRequire(import.meta.url);
|
|
3
|
+
import {
|
|
4
|
+
buildEvent,
|
|
5
|
+
relay,
|
|
6
|
+
relayInProcess
|
|
7
|
+
} from "./token-goat-chunk-63XEQMNU.mjs";
|
|
8
|
+
import {
|
|
9
|
+
MAX_STDIN_BYTES,
|
|
10
|
+
readStdinJson
|
|
11
|
+
} from "./token-goat-chunk-FSC44QOH.mjs";
|
|
12
|
+
import "./token-goat-chunk-CBO45DYZ.mjs";
|
|
13
|
+
import "./token-goat-chunk-EPX5DWGM.mjs";
|
|
14
|
+
import "./token-goat-chunk-3ZR4NLB3.mjs";
|
|
15
|
+
import "./token-goat-chunk-EEIDFMEM.mjs";
|
|
16
|
+
import "./token-goat-chunk-A37V4PBF.mjs";
|
|
17
|
+
export {
|
|
18
|
+
MAX_STDIN_BYTES,
|
|
19
|
+
buildEvent,
|
|
20
|
+
readStdinJson,
|
|
21
|
+
relay,
|
|
22
|
+
relayInProcess
|
|
23
|
+
};
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { createRequire as __cjsRequire } from 'node:module';
|
|
2
2
|
const require = __cjsRequire(import.meta.url);
|
|
3
|
-
import
|
|
3
|
+
import {
|
|
4
|
+
init_define_import_meta_env
|
|
5
|
+
} from "./token-goat-chunk-A37V4PBF.mjs";
|
|
4
6
|
|
|
5
7
|
// src/mcp_stdio.ts
|
|
8
|
+
init_define_import_meta_env();
|
|
6
9
|
import process from "node:process";
|
|
7
10
|
var STDIO_MAX_BUFFER_BYTES = 10 * 1024 * 1024;
|
|
8
11
|
var StdioServerTransport = class {
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { createRequire as __cjsRequire } from 'node:module';
|
|
2
2
|
const require = __cjsRequire(import.meta.url);
|
|
3
3
|
import {
|
|
4
|
-
__export
|
|
5
|
-
|
|
4
|
+
__export,
|
|
5
|
+
init_define_import_meta_env
|
|
6
|
+
} from "./token-goat-chunk-A37V4PBF.mjs";
|
|
7
|
+
|
|
8
|
+
// node_modules/zod/index.js
|
|
9
|
+
init_define_import_meta_env();
|
|
6
10
|
|
|
7
11
|
// node_modules/zod/v4/classic/external.js
|
|
8
12
|
var external_exports = {};
|
|
@@ -246,6 +250,7 @@ __export(external_exports, {
|
|
|
246
250
|
xid: () => xid2,
|
|
247
251
|
xor: () => xor
|
|
248
252
|
});
|
|
253
|
+
init_define_import_meta_env();
|
|
249
254
|
|
|
250
255
|
// node_modules/zod/v4/core/index.js
|
|
251
256
|
var core_exports2 = {};
|
|
@@ -525,8 +530,10 @@ __export(core_exports2, {
|
|
|
525
530
|
util: () => util_exports,
|
|
526
531
|
version: () => version
|
|
527
532
|
});
|
|
533
|
+
init_define_import_meta_env();
|
|
528
534
|
|
|
529
535
|
// node_modules/zod/v4/core/core.js
|
|
536
|
+
init_define_import_meta_env();
|
|
530
537
|
var _a;
|
|
531
538
|
var NEVER = /* @__PURE__ */ Object.freeze({
|
|
532
539
|
status: "aborted"
|
|
@@ -603,6 +610,12 @@ function config(newConfig) {
|
|
|
603
610
|
return globalConfig;
|
|
604
611
|
}
|
|
605
612
|
|
|
613
|
+
// node_modules/zod/v4/core/parse.js
|
|
614
|
+
init_define_import_meta_env();
|
|
615
|
+
|
|
616
|
+
// node_modules/zod/v4/core/errors.js
|
|
617
|
+
init_define_import_meta_env();
|
|
618
|
+
|
|
606
619
|
// node_modules/zod/v4/core/util.js
|
|
607
620
|
var util_exports = {};
|
|
608
621
|
__export(util_exports, {
|
|
@@ -670,6 +683,7 @@ __export(util_exports, {
|
|
|
670
683
|
uint8ArrayToHex: () => uint8ArrayToHex,
|
|
671
684
|
unwrapMessage: () => unwrapMessage
|
|
672
685
|
});
|
|
686
|
+
init_define_import_meta_env();
|
|
673
687
|
function assertEqual(val) {
|
|
674
688
|
return val;
|
|
675
689
|
}
|
|
@@ -1526,6 +1540,12 @@ var _safeDecodeAsync = (_Err) => async (schema, value, _ctx) => {
|
|
|
1526
1540
|
};
|
|
1527
1541
|
var safeDecodeAsync = /* @__PURE__ */ _safeDecodeAsync($ZodRealError);
|
|
1528
1542
|
|
|
1543
|
+
// node_modules/zod/v4/core/schemas.js
|
|
1544
|
+
init_define_import_meta_env();
|
|
1545
|
+
|
|
1546
|
+
// node_modules/zod/v4/core/checks.js
|
|
1547
|
+
init_define_import_meta_env();
|
|
1548
|
+
|
|
1529
1549
|
// node_modules/zod/v4/core/regexes.js
|
|
1530
1550
|
var regexes_exports = {};
|
|
1531
1551
|
__export(regexes_exports, {
|
|
@@ -1589,6 +1609,7 @@ __export(regexes_exports, {
|
|
|
1589
1609
|
uuid7: () => uuid7,
|
|
1590
1610
|
xid: () => xid
|
|
1591
1611
|
});
|
|
1612
|
+
init_define_import_meta_env();
|
|
1592
1613
|
var cuid = /^[cC][0-9a-z]{6,}$/;
|
|
1593
1614
|
var cuid2 = /^[0-9a-z]+$/;
|
|
1594
1615
|
var ulid = /^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/;
|
|
@@ -2234,6 +2255,7 @@ var $ZodCheckOverwrite = /* @__PURE__ */ $constructor("$ZodCheckOverwrite", (ins
|
|
|
2234
2255
|
});
|
|
2235
2256
|
|
|
2236
2257
|
// node_modules/zod/v4/core/doc.js
|
|
2258
|
+
init_define_import_meta_env();
|
|
2237
2259
|
var Doc = class {
|
|
2238
2260
|
constructor(args = []) {
|
|
2239
2261
|
this.content = [];
|
|
@@ -2270,6 +2292,7 @@ var Doc = class {
|
|
|
2270
2292
|
};
|
|
2271
2293
|
|
|
2272
2294
|
// node_modules/zod/v4/core/versions.js
|
|
2295
|
+
init_define_import_meta_env();
|
|
2273
2296
|
var version = {
|
|
2274
2297
|
major: 4,
|
|
2275
2298
|
minor: 4,
|
|
@@ -4425,8 +4448,10 @@ __export(locales_exports, {
|
|
|
4425
4448
|
zhCN: () => zh_CN_default,
|
|
4426
4449
|
zhTW: () => zh_TW_default
|
|
4427
4450
|
});
|
|
4451
|
+
init_define_import_meta_env();
|
|
4428
4452
|
|
|
4429
4453
|
// node_modules/zod/v4/locales/ar.js
|
|
4454
|
+
init_define_import_meta_env();
|
|
4430
4455
|
var error = () => {
|
|
4431
4456
|
const Sizable = {
|
|
4432
4457
|
string: { unit: "\u062D\u0631\u0641", verb: "\u0623\u0646 \u064A\u062D\u0648\u064A" },
|
|
@@ -4534,6 +4559,7 @@ function ar_default() {
|
|
|
4534
4559
|
}
|
|
4535
4560
|
|
|
4536
4561
|
// node_modules/zod/v4/locales/az.js
|
|
4562
|
+
init_define_import_meta_env();
|
|
4537
4563
|
var error2 = () => {
|
|
4538
4564
|
const Sizable = {
|
|
4539
4565
|
string: { unit: "simvol", verb: "olmal\u0131d\u0131r" },
|
|
@@ -4640,6 +4666,7 @@ function az_default() {
|
|
|
4640
4666
|
}
|
|
4641
4667
|
|
|
4642
4668
|
// node_modules/zod/v4/locales/be.js
|
|
4669
|
+
init_define_import_meta_env();
|
|
4643
4670
|
function getBelarusianPlural(count, one, few, many) {
|
|
4644
4671
|
const absCount = Math.abs(count);
|
|
4645
4672
|
const lastDigit = absCount % 10;
|
|
@@ -4797,6 +4824,7 @@ function be_default() {
|
|
|
4797
4824
|
}
|
|
4798
4825
|
|
|
4799
4826
|
// node_modules/zod/v4/locales/bg.js
|
|
4827
|
+
init_define_import_meta_env();
|
|
4800
4828
|
var error4 = () => {
|
|
4801
4829
|
const Sizable = {
|
|
4802
4830
|
string: { unit: "\u0441\u0438\u043C\u0432\u043E\u043B\u0430", verb: "\u0434\u0430 \u0441\u044A\u0434\u044A\u0440\u0436\u0430" },
|
|
@@ -4918,6 +4946,7 @@ function bg_default() {
|
|
|
4918
4946
|
}
|
|
4919
4947
|
|
|
4920
4948
|
// node_modules/zod/v4/locales/ca.js
|
|
4949
|
+
init_define_import_meta_env();
|
|
4921
4950
|
var error5 = () => {
|
|
4922
4951
|
const Sizable = {
|
|
4923
4952
|
string: { unit: "car\xE0cters", verb: "contenir" },
|
|
@@ -5027,6 +5056,7 @@ function ca_default() {
|
|
|
5027
5056
|
}
|
|
5028
5057
|
|
|
5029
5058
|
// node_modules/zod/v4/locales/cs.js
|
|
5059
|
+
init_define_import_meta_env();
|
|
5030
5060
|
var error6 = () => {
|
|
5031
5061
|
const Sizable = {
|
|
5032
5062
|
string: { unit: "znak\u016F", verb: "m\xEDt" },
|
|
@@ -5139,6 +5169,7 @@ function cs_default() {
|
|
|
5139
5169
|
}
|
|
5140
5170
|
|
|
5141
5171
|
// node_modules/zod/v4/locales/da.js
|
|
5172
|
+
init_define_import_meta_env();
|
|
5142
5173
|
var error7 = () => {
|
|
5143
5174
|
const Sizable = {
|
|
5144
5175
|
string: { unit: "tegn", verb: "havde" },
|
|
@@ -5255,6 +5286,7 @@ function da_default() {
|
|
|
5255
5286
|
}
|
|
5256
5287
|
|
|
5257
5288
|
// node_modules/zod/v4/locales/de.js
|
|
5289
|
+
init_define_import_meta_env();
|
|
5258
5290
|
var error8 = () => {
|
|
5259
5291
|
const Sizable = {
|
|
5260
5292
|
string: { unit: "Zeichen", verb: "zu haben" },
|
|
@@ -5364,6 +5396,7 @@ function de_default() {
|
|
|
5364
5396
|
}
|
|
5365
5397
|
|
|
5366
5398
|
// node_modules/zod/v4/locales/el.js
|
|
5399
|
+
init_define_import_meta_env();
|
|
5367
5400
|
var error9 = () => {
|
|
5368
5401
|
const Sizable = {
|
|
5369
5402
|
string: { unit: "\u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B5\u03C2", verb: "\u03BD\u03B1 \u03AD\u03C7\u03B5\u03B9" },
|
|
@@ -5474,6 +5507,7 @@ function el_default() {
|
|
|
5474
5507
|
}
|
|
5475
5508
|
|
|
5476
5509
|
// node_modules/zod/v4/locales/en.js
|
|
5510
|
+
init_define_import_meta_env();
|
|
5477
5511
|
var error10 = () => {
|
|
5478
5512
|
const Sizable = {
|
|
5479
5513
|
string: { unit: "characters", verb: "to have" },
|
|
@@ -5587,6 +5621,7 @@ function en_default() {
|
|
|
5587
5621
|
}
|
|
5588
5622
|
|
|
5589
5623
|
// node_modules/zod/v4/locales/eo.js
|
|
5624
|
+
init_define_import_meta_env();
|
|
5590
5625
|
var error11 = () => {
|
|
5591
5626
|
const Sizable = {
|
|
5592
5627
|
string: { unit: "karaktrojn", verb: "havi" },
|
|
@@ -5697,6 +5732,7 @@ function eo_default() {
|
|
|
5697
5732
|
}
|
|
5698
5733
|
|
|
5699
5734
|
// node_modules/zod/v4/locales/es.js
|
|
5735
|
+
init_define_import_meta_env();
|
|
5700
5736
|
var error12 = () => {
|
|
5701
5737
|
const Sizable = {
|
|
5702
5738
|
string: { unit: "caracteres", verb: "tener" },
|
|
@@ -5830,6 +5866,7 @@ function es_default() {
|
|
|
5830
5866
|
}
|
|
5831
5867
|
|
|
5832
5868
|
// node_modules/zod/v4/locales/fa.js
|
|
5869
|
+
init_define_import_meta_env();
|
|
5833
5870
|
var error13 = () => {
|
|
5834
5871
|
const Sizable = {
|
|
5835
5872
|
string: { unit: "\u06A9\u0627\u0631\u0627\u06A9\u062A\u0631", verb: "\u062F\u0627\u0634\u062A\u0647 \u0628\u0627\u0634\u062F" },
|
|
@@ -5945,6 +5982,7 @@ function fa_default() {
|
|
|
5945
5982
|
}
|
|
5946
5983
|
|
|
5947
5984
|
// node_modules/zod/v4/locales/fi.js
|
|
5985
|
+
init_define_import_meta_env();
|
|
5948
5986
|
var error14 = () => {
|
|
5949
5987
|
const Sizable = {
|
|
5950
5988
|
string: { unit: "merkki\xE4", subject: "merkkijonon" },
|
|
@@ -6058,6 +6096,7 @@ function fi_default() {
|
|
|
6058
6096
|
}
|
|
6059
6097
|
|
|
6060
6098
|
// node_modules/zod/v4/locales/fr.js
|
|
6099
|
+
init_define_import_meta_env();
|
|
6061
6100
|
var error15 = () => {
|
|
6062
6101
|
const Sizable = {
|
|
6063
6102
|
string: { unit: "caract\xE8res", verb: "avoir" },
|
|
@@ -6184,6 +6223,7 @@ function fr_default() {
|
|
|
6184
6223
|
}
|
|
6185
6224
|
|
|
6186
6225
|
// node_modules/zod/v4/locales/fr-CA.js
|
|
6226
|
+
init_define_import_meta_env();
|
|
6187
6227
|
var error16 = () => {
|
|
6188
6228
|
const Sizable = {
|
|
6189
6229
|
string: { unit: "caract\xE8res", verb: "avoir" },
|
|
@@ -6292,6 +6332,7 @@ function fr_CA_default() {
|
|
|
6292
6332
|
}
|
|
6293
6333
|
|
|
6294
6334
|
// node_modules/zod/v4/locales/he.js
|
|
6335
|
+
init_define_import_meta_env();
|
|
6295
6336
|
var error17 = () => {
|
|
6296
6337
|
const TypeNames = {
|
|
6297
6338
|
string: { label: "\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA", gender: "f" },
|
|
@@ -6487,6 +6528,7 @@ function he_default() {
|
|
|
6487
6528
|
}
|
|
6488
6529
|
|
|
6489
6530
|
// node_modules/zod/v4/locales/hr.js
|
|
6531
|
+
init_define_import_meta_env();
|
|
6490
6532
|
var error18 = () => {
|
|
6491
6533
|
const Sizable = {
|
|
6492
6534
|
string: { unit: "znakova", verb: "imati" },
|
|
@@ -6610,6 +6652,7 @@ function hr_default() {
|
|
|
6610
6652
|
}
|
|
6611
6653
|
|
|
6612
6654
|
// node_modules/zod/v4/locales/hu.js
|
|
6655
|
+
init_define_import_meta_env();
|
|
6613
6656
|
var error19 = () => {
|
|
6614
6657
|
const Sizable = {
|
|
6615
6658
|
string: { unit: "karakter", verb: "legyen" },
|
|
@@ -6719,6 +6762,7 @@ function hu_default() {
|
|
|
6719
6762
|
}
|
|
6720
6763
|
|
|
6721
6764
|
// node_modules/zod/v4/locales/hy.js
|
|
6765
|
+
init_define_import_meta_env();
|
|
6722
6766
|
function getArmenianPlural(count, one, many) {
|
|
6723
6767
|
return Math.abs(count) === 1 ? one : many;
|
|
6724
6768
|
}
|
|
@@ -6867,6 +6911,7 @@ function hy_default() {
|
|
|
6867
6911
|
}
|
|
6868
6912
|
|
|
6869
6913
|
// node_modules/zod/v4/locales/id.js
|
|
6914
|
+
init_define_import_meta_env();
|
|
6870
6915
|
var error21 = () => {
|
|
6871
6916
|
const Sizable = {
|
|
6872
6917
|
string: { unit: "karakter", verb: "memiliki" },
|
|
@@ -6974,6 +7019,7 @@ function id_default() {
|
|
|
6974
7019
|
}
|
|
6975
7020
|
|
|
6976
7021
|
// node_modules/zod/v4/locales/is.js
|
|
7022
|
+
init_define_import_meta_env();
|
|
6977
7023
|
var error22 = () => {
|
|
6978
7024
|
const Sizable = {
|
|
6979
7025
|
string: { unit: "stafi", verb: "a\xF0 hafa" },
|
|
@@ -7084,6 +7130,7 @@ function is_default() {
|
|
|
7084
7130
|
}
|
|
7085
7131
|
|
|
7086
7132
|
// node_modules/zod/v4/locales/it.js
|
|
7133
|
+
init_define_import_meta_env();
|
|
7087
7134
|
var error23 = () => {
|
|
7088
7135
|
const Sizable = {
|
|
7089
7136
|
string: { unit: "caratteri", verb: "avere" },
|
|
@@ -7193,6 +7240,7 @@ function it_default() {
|
|
|
7193
7240
|
}
|
|
7194
7241
|
|
|
7195
7242
|
// node_modules/zod/v4/locales/ja.js
|
|
7243
|
+
init_define_import_meta_env();
|
|
7196
7244
|
var error24 = () => {
|
|
7197
7245
|
const Sizable = {
|
|
7198
7246
|
string: { unit: "\u6587\u5B57", verb: "\u3067\u3042\u308B" },
|
|
@@ -7301,6 +7349,7 @@ function ja_default() {
|
|
|
7301
7349
|
}
|
|
7302
7350
|
|
|
7303
7351
|
// node_modules/zod/v4/locales/ka.js
|
|
7352
|
+
init_define_import_meta_env();
|
|
7304
7353
|
var error25 = () => {
|
|
7305
7354
|
const Sizable = {
|
|
7306
7355
|
string: { unit: "\u10E1\u10D8\u10DB\u10D1\u10DD\u10DA\u10DD", verb: "\u10E3\u10DC\u10D3\u10D0 \u10E8\u10D4\u10D8\u10EA\u10D0\u10D5\u10D3\u10D4\u10E1" },
|
|
@@ -7413,7 +7462,11 @@ function ka_default() {
|
|
|
7413
7462
|
};
|
|
7414
7463
|
}
|
|
7415
7464
|
|
|
7465
|
+
// node_modules/zod/v4/locales/kh.js
|
|
7466
|
+
init_define_import_meta_env();
|
|
7467
|
+
|
|
7416
7468
|
// node_modules/zod/v4/locales/km.js
|
|
7469
|
+
init_define_import_meta_env();
|
|
7417
7470
|
var error26 = () => {
|
|
7418
7471
|
const Sizable = {
|
|
7419
7472
|
string: { unit: "\u178F\u17BD\u17A2\u1780\u17D2\u179F\u179A", verb: "\u1782\u17BD\u179A\u1798\u17B6\u1793" },
|
|
@@ -7530,6 +7583,7 @@ function kh_default() {
|
|
|
7530
7583
|
}
|
|
7531
7584
|
|
|
7532
7585
|
// node_modules/zod/v4/locales/ko.js
|
|
7586
|
+
init_define_import_meta_env();
|
|
7533
7587
|
var error27 = () => {
|
|
7534
7588
|
const Sizable = {
|
|
7535
7589
|
string: { unit: "\uBB38\uC790", verb: "to have" },
|
|
@@ -7642,6 +7696,7 @@ function ko_default() {
|
|
|
7642
7696
|
}
|
|
7643
7697
|
|
|
7644
7698
|
// node_modules/zod/v4/locales/lt.js
|
|
7699
|
+
init_define_import_meta_env();
|
|
7645
7700
|
var capitalizeFirstCharacter = (text) => {
|
|
7646
7701
|
return text.charAt(0).toUpperCase() + text.slice(1);
|
|
7647
7702
|
};
|
|
@@ -7846,6 +7901,7 @@ function lt_default() {
|
|
|
7846
7901
|
}
|
|
7847
7902
|
|
|
7848
7903
|
// node_modules/zod/v4/locales/mk.js
|
|
7904
|
+
init_define_import_meta_env();
|
|
7849
7905
|
var error29 = () => {
|
|
7850
7906
|
const Sizable = {
|
|
7851
7907
|
string: { unit: "\u0437\u043D\u0430\u0446\u0438", verb: "\u0434\u0430 \u0438\u043C\u0430\u0430\u0442" },
|
|
@@ -7956,6 +8012,7 @@ function mk_default() {
|
|
|
7956
8012
|
}
|
|
7957
8013
|
|
|
7958
8014
|
// node_modules/zod/v4/locales/ms.js
|
|
8015
|
+
init_define_import_meta_env();
|
|
7959
8016
|
var error30 = () => {
|
|
7960
8017
|
const Sizable = {
|
|
7961
8018
|
string: { unit: "aksara", verb: "mempunyai" },
|
|
@@ -8064,6 +8121,7 @@ function ms_default() {
|
|
|
8064
8121
|
}
|
|
8065
8122
|
|
|
8066
8123
|
// node_modules/zod/v4/locales/nl.js
|
|
8124
|
+
init_define_import_meta_env();
|
|
8067
8125
|
var error31 = () => {
|
|
8068
8126
|
const Sizable = {
|
|
8069
8127
|
string: { unit: "tekens", verb: "heeft" },
|
|
@@ -8175,6 +8233,7 @@ function nl_default() {
|
|
|
8175
8233
|
}
|
|
8176
8234
|
|
|
8177
8235
|
// node_modules/zod/v4/locales/no.js
|
|
8236
|
+
init_define_import_meta_env();
|
|
8178
8237
|
var error32 = () => {
|
|
8179
8238
|
const Sizable = {
|
|
8180
8239
|
string: { unit: "tegn", verb: "\xE5 ha" },
|
|
@@ -8284,6 +8343,7 @@ function no_default() {
|
|
|
8284
8343
|
}
|
|
8285
8344
|
|
|
8286
8345
|
// node_modules/zod/v4/locales/ota.js
|
|
8346
|
+
init_define_import_meta_env();
|
|
8287
8347
|
var error33 = () => {
|
|
8288
8348
|
const Sizable = {
|
|
8289
8349
|
string: { unit: "harf", verb: "olmal\u0131d\u0131r" },
|
|
@@ -8394,6 +8454,7 @@ function ota_default() {
|
|
|
8394
8454
|
}
|
|
8395
8455
|
|
|
8396
8456
|
// node_modules/zod/v4/locales/ps.js
|
|
8457
|
+
init_define_import_meta_env();
|
|
8397
8458
|
var error34 = () => {
|
|
8398
8459
|
const Sizable = {
|
|
8399
8460
|
string: { unit: "\u062A\u0648\u06A9\u064A", verb: "\u0648\u0644\u0631\u064A" },
|
|
@@ -8509,6 +8570,7 @@ function ps_default() {
|
|
|
8509
8570
|
}
|
|
8510
8571
|
|
|
8511
8572
|
// node_modules/zod/v4/locales/pl.js
|
|
8573
|
+
init_define_import_meta_env();
|
|
8512
8574
|
var error35 = () => {
|
|
8513
8575
|
const Sizable = {
|
|
8514
8576
|
string: { unit: "znak\xF3w", verb: "mie\u0107" },
|
|
@@ -8619,6 +8681,7 @@ function pl_default() {
|
|
|
8619
8681
|
}
|
|
8620
8682
|
|
|
8621
8683
|
// node_modules/zod/v4/locales/pt.js
|
|
8684
|
+
init_define_import_meta_env();
|
|
8622
8685
|
var error36 = () => {
|
|
8623
8686
|
const Sizable = {
|
|
8624
8687
|
string: { unit: "caracteres", verb: "ter" },
|
|
@@ -8728,6 +8791,7 @@ function pt_default() {
|
|
|
8728
8791
|
}
|
|
8729
8792
|
|
|
8730
8793
|
// node_modules/zod/v4/locales/ro.js
|
|
8794
|
+
init_define_import_meta_env();
|
|
8731
8795
|
var error37 = () => {
|
|
8732
8796
|
const Sizable = {
|
|
8733
8797
|
string: { unit: "caractere", verb: "s\u0103 aib\u0103" },
|
|
@@ -8848,6 +8912,7 @@ function ro_default() {
|
|
|
8848
8912
|
}
|
|
8849
8913
|
|
|
8850
8914
|
// node_modules/zod/v4/locales/ru.js
|
|
8915
|
+
init_define_import_meta_env();
|
|
8851
8916
|
function getRussianPlural(count, one, few, many) {
|
|
8852
8917
|
const absCount = Math.abs(count);
|
|
8853
8918
|
const lastDigit = absCount % 10;
|
|
@@ -9005,6 +9070,7 @@ function ru_default() {
|
|
|
9005
9070
|
}
|
|
9006
9071
|
|
|
9007
9072
|
// node_modules/zod/v4/locales/sl.js
|
|
9073
|
+
init_define_import_meta_env();
|
|
9008
9074
|
var error39 = () => {
|
|
9009
9075
|
const Sizable = {
|
|
9010
9076
|
string: { unit: "znakov", verb: "imeti" },
|
|
@@ -9115,6 +9181,7 @@ function sl_default() {
|
|
|
9115
9181
|
}
|
|
9116
9182
|
|
|
9117
9183
|
// node_modules/zod/v4/locales/sv.js
|
|
9184
|
+
init_define_import_meta_env();
|
|
9118
9185
|
var error40 = () => {
|
|
9119
9186
|
const Sizable = {
|
|
9120
9187
|
string: { unit: "tecken", verb: "att ha" },
|
|
@@ -9226,6 +9293,7 @@ function sv_default() {
|
|
|
9226
9293
|
}
|
|
9227
9294
|
|
|
9228
9295
|
// node_modules/zod/v4/locales/ta.js
|
|
9296
|
+
init_define_import_meta_env();
|
|
9229
9297
|
var error41 = () => {
|
|
9230
9298
|
const Sizable = {
|
|
9231
9299
|
string: { unit: "\u0B8E\u0BB4\u0BC1\u0BA4\u0BCD\u0BA4\u0BC1\u0B95\u0BCD\u0B95\u0BB3\u0BCD", verb: "\u0B95\u0BCA\u0BA3\u0BCD\u0B9F\u0BBF\u0BB0\u0BC1\u0B95\u0BCD\u0B95 \u0BB5\u0BC7\u0BA3\u0BCD\u0B9F\u0BC1\u0BAE\u0BCD" },
|
|
@@ -9337,6 +9405,7 @@ function ta_default() {
|
|
|
9337
9405
|
}
|
|
9338
9406
|
|
|
9339
9407
|
// node_modules/zod/v4/locales/th.js
|
|
9408
|
+
init_define_import_meta_env();
|
|
9340
9409
|
var error42 = () => {
|
|
9341
9410
|
const Sizable = {
|
|
9342
9411
|
string: { unit: "\u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23", verb: "\u0E04\u0E27\u0E23\u0E21\u0E35" },
|
|
@@ -9448,6 +9517,7 @@ function th_default() {
|
|
|
9448
9517
|
}
|
|
9449
9518
|
|
|
9450
9519
|
// node_modules/zod/v4/locales/tr.js
|
|
9520
|
+
init_define_import_meta_env();
|
|
9451
9521
|
var error43 = () => {
|
|
9452
9522
|
const Sizable = {
|
|
9453
9523
|
string: { unit: "karakter", verb: "olmal\u0131" },
|
|
@@ -9553,7 +9623,11 @@ function tr_default() {
|
|
|
9553
9623
|
};
|
|
9554
9624
|
}
|
|
9555
9625
|
|
|
9626
|
+
// node_modules/zod/v4/locales/ua.js
|
|
9627
|
+
init_define_import_meta_env();
|
|
9628
|
+
|
|
9556
9629
|
// node_modules/zod/v4/locales/uk.js
|
|
9630
|
+
init_define_import_meta_env();
|
|
9557
9631
|
var error44 = () => {
|
|
9558
9632
|
const Sizable = {
|
|
9559
9633
|
string: { unit: "\u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432", verb: "\u043C\u0430\u0442\u0438\u043C\u0435" },
|
|
@@ -9668,6 +9742,7 @@ function ua_default() {
|
|
|
9668
9742
|
}
|
|
9669
9743
|
|
|
9670
9744
|
// node_modules/zod/v4/locales/ur.js
|
|
9745
|
+
init_define_import_meta_env();
|
|
9671
9746
|
var error45 = () => {
|
|
9672
9747
|
const Sizable = {
|
|
9673
9748
|
string: { unit: "\u062D\u0631\u0648\u0641", verb: "\u06C1\u0648\u0646\u0627" },
|
|
@@ -9779,6 +9854,7 @@ function ur_default() {
|
|
|
9779
9854
|
}
|
|
9780
9855
|
|
|
9781
9856
|
// node_modules/zod/v4/locales/uz.js
|
|
9857
|
+
init_define_import_meta_env();
|
|
9782
9858
|
var error46 = () => {
|
|
9783
9859
|
const Sizable = {
|
|
9784
9860
|
string: { unit: "belgi", verb: "bo\u2018lishi kerak" },
|
|
@@ -9890,6 +9966,7 @@ function uz_default() {
|
|
|
9890
9966
|
}
|
|
9891
9967
|
|
|
9892
9968
|
// node_modules/zod/v4/locales/vi.js
|
|
9969
|
+
init_define_import_meta_env();
|
|
9893
9970
|
var error47 = () => {
|
|
9894
9971
|
const Sizable = {
|
|
9895
9972
|
string: { unit: "k\xFD t\u1EF1", verb: "c\xF3" },
|
|
@@ -9999,6 +10076,7 @@ function vi_default() {
|
|
|
9999
10076
|
}
|
|
10000
10077
|
|
|
10001
10078
|
// node_modules/zod/v4/locales/zh-CN.js
|
|
10079
|
+
init_define_import_meta_env();
|
|
10002
10080
|
var error48 = () => {
|
|
10003
10081
|
const Sizable = {
|
|
10004
10082
|
string: { unit: "\u5B57\u7B26", verb: "\u5305\u542B" },
|
|
@@ -10109,6 +10187,7 @@ function zh_CN_default() {
|
|
|
10109
10187
|
}
|
|
10110
10188
|
|
|
10111
10189
|
// node_modules/zod/v4/locales/zh-TW.js
|
|
10190
|
+
init_define_import_meta_env();
|
|
10112
10191
|
var error49 = () => {
|
|
10113
10192
|
const Sizable = {
|
|
10114
10193
|
string: { unit: "\u5B57\u5143", verb: "\u64C1\u6709" },
|
|
@@ -10217,6 +10296,7 @@ function zh_TW_default() {
|
|
|
10217
10296
|
}
|
|
10218
10297
|
|
|
10219
10298
|
// node_modules/zod/v4/locales/yo.js
|
|
10299
|
+
init_define_import_meta_env();
|
|
10220
10300
|
var error50 = () => {
|
|
10221
10301
|
const Sizable = {
|
|
10222
10302
|
string: { unit: "\xE0mi", verb: "n\xED" },
|
|
@@ -10325,6 +10405,7 @@ function yo_default() {
|
|
|
10325
10405
|
}
|
|
10326
10406
|
|
|
10327
10407
|
// node_modules/zod/v4/core/registries.js
|
|
10408
|
+
init_define_import_meta_env();
|
|
10328
10409
|
var _a2;
|
|
10329
10410
|
var $output = /* @__PURE__ */ Symbol("ZodOutput");
|
|
10330
10411
|
var $input = /* @__PURE__ */ Symbol("ZodInput");
|
|
@@ -10375,6 +10456,7 @@ function registry() {
|
|
|
10375
10456
|
var globalRegistry = globalThis.__zod_globalRegistry;
|
|
10376
10457
|
|
|
10377
10458
|
// node_modules/zod/v4/core/api.js
|
|
10459
|
+
init_define_import_meta_env();
|
|
10378
10460
|
// @__NO_SIDE_EFFECTS__
|
|
10379
10461
|
function _string(Class2, params) {
|
|
10380
10462
|
return new Class2({
|
|
@@ -11414,6 +11496,7 @@ function _stringFormat(Class2, format, fnOrRegex, _params = {}) {
|
|
|
11414
11496
|
}
|
|
11415
11497
|
|
|
11416
11498
|
// node_modules/zod/v4/core/to-json-schema.js
|
|
11499
|
+
init_define_import_meta_env();
|
|
11417
11500
|
function initializeContext(params) {
|
|
11418
11501
|
let target = params?.target ?? "draft-2020-12";
|
|
11419
11502
|
if (target === "draft-4")
|
|
@@ -11773,6 +11856,7 @@ var createStandardJSONSchemaMethod = (schema, io, processors = {}) => (params) =
|
|
|
11773
11856
|
};
|
|
11774
11857
|
|
|
11775
11858
|
// node_modules/zod/v4/core/json-schema-processors.js
|
|
11859
|
+
init_define_import_meta_env();
|
|
11776
11860
|
var formatMap = {
|
|
11777
11861
|
guid: "uuid",
|
|
11778
11862
|
url: "uri",
|
|
@@ -12317,6 +12401,7 @@ function toJSONSchema(input, params) {
|
|
|
12317
12401
|
}
|
|
12318
12402
|
|
|
12319
12403
|
// node_modules/zod/v4/core/json-schema-generator.js
|
|
12404
|
+
init_define_import_meta_env();
|
|
12320
12405
|
var JSONSchemaGenerator = class {
|
|
12321
12406
|
/** @deprecated Access via ctx instead */
|
|
12322
12407
|
get metadataRegistry() {
|
|
@@ -12393,6 +12478,7 @@ var JSONSchemaGenerator = class {
|
|
|
12393
12478
|
|
|
12394
12479
|
// node_modules/zod/v4/core/json-schema.js
|
|
12395
12480
|
var json_schema_exports = {};
|
|
12481
|
+
init_define_import_meta_env();
|
|
12396
12482
|
|
|
12397
12483
|
// node_modules/zod/v4/classic/schemas.js
|
|
12398
12484
|
var schemas_exports2 = {};
|
|
@@ -12564,6 +12650,7 @@ __export(schemas_exports2, {
|
|
|
12564
12650
|
xid: () => xid2,
|
|
12565
12651
|
xor: () => xor
|
|
12566
12652
|
});
|
|
12653
|
+
init_define_import_meta_env();
|
|
12567
12654
|
|
|
12568
12655
|
// node_modules/zod/v4/classic/checks.js
|
|
12569
12656
|
var checks_exports2 = {};
|
|
@@ -12598,6 +12685,7 @@ __export(checks_exports2, {
|
|
|
12598
12685
|
trim: () => _trim,
|
|
12599
12686
|
uppercase: () => _uppercase
|
|
12600
12687
|
});
|
|
12688
|
+
init_define_import_meta_env();
|
|
12601
12689
|
|
|
12602
12690
|
// node_modules/zod/v4/classic/iso.js
|
|
12603
12691
|
var iso_exports = {};
|
|
@@ -12611,6 +12699,7 @@ __export(iso_exports, {
|
|
|
12611
12699
|
duration: () => duration2,
|
|
12612
12700
|
time: () => time2
|
|
12613
12701
|
});
|
|
12702
|
+
init_define_import_meta_env();
|
|
12614
12703
|
var ZodISODateTime = /* @__PURE__ */ $constructor("ZodISODateTime", (inst, def) => {
|
|
12615
12704
|
$ZodISODateTime.init(inst, def);
|
|
12616
12705
|
ZodStringFormat.init(inst, def);
|
|
@@ -12640,7 +12729,11 @@ function duration2(params) {
|
|
|
12640
12729
|
return _isoDuration(ZodISODuration, params);
|
|
12641
12730
|
}
|
|
12642
12731
|
|
|
12732
|
+
// node_modules/zod/v4/classic/parse.js
|
|
12733
|
+
init_define_import_meta_env();
|
|
12734
|
+
|
|
12643
12735
|
// node_modules/zod/v4/classic/errors.js
|
|
12736
|
+
init_define_import_meta_env();
|
|
12644
12737
|
var initializer2 = (inst, issues) => {
|
|
12645
12738
|
$ZodError.init(inst, issues);
|
|
12646
12739
|
inst.name = "ZodError";
|
|
@@ -13985,6 +14078,7 @@ function preprocess(fn, schema) {
|
|
|
13985
14078
|
}
|
|
13986
14079
|
|
|
13987
14080
|
// node_modules/zod/v4/classic/compat.js
|
|
14081
|
+
init_define_import_meta_env();
|
|
13988
14082
|
var ZodIssueCode = {
|
|
13989
14083
|
invalid_type: "invalid_type",
|
|
13990
14084
|
too_big: "too_big",
|
|
@@ -14011,6 +14105,7 @@ var ZodFirstPartyTypeKind;
|
|
|
14011
14105
|
})(ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {}));
|
|
14012
14106
|
|
|
14013
14107
|
// node_modules/zod/v4/classic/from-json-schema.js
|
|
14108
|
+
init_define_import_meta_env();
|
|
14014
14109
|
var z = {
|
|
14015
14110
|
...schemas_exports2,
|
|
14016
14111
|
...checks_exports2,
|
|
@@ -14499,6 +14594,7 @@ __export(coerce_exports, {
|
|
|
14499
14594
|
number: () => number3,
|
|
14500
14595
|
string: () => string3
|
|
14501
14596
|
});
|
|
14597
|
+
init_define_import_meta_env();
|
|
14502
14598
|
function string3(params) {
|
|
14503
14599
|
return _coercedString(ZodString, params);
|
|
14504
14600
|
}
|