@cleocode/adapters 2026.4.70 → 2026.4.72

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/dist/index.js CHANGED
@@ -480,7 +480,7 @@ var init_cant_context = __esm({
480
480
 
481
481
  // packages/contracts/src/acceptance-gate-schema.ts
482
482
  import { z } from "zod";
483
- var gateBaseSchema, fileAssertionSchema, testGateSchema, fileGateSchema, commandGateSchema, lintGateSchema, httpGateSchema, manualGateSchema, acceptanceGateSchema, acceptanceGateResultSchema, acceptanceItemSchema, acceptanceArraySchema;
483
+ var gateBaseSchema, fileAssertionSchema, testGateSchema, fileGateSchema, commandGateSchema, lintGateSchema, httpGateSchema, manualGateSchema, acceptanceGateSchema, gateResultDetailsSchema, acceptanceGateResultSchema, acceptanceItemSchema, acceptanceArraySchema;
484
484
  var init_acceptance_gate_schema = __esm({
485
485
  "packages/contracts/src/acceptance-gate-schema.ts"() {
486
486
  "use strict";
@@ -521,7 +521,13 @@ var init_acceptance_gate_schema = __esm({
521
521
  });
522
522
  fileGateSchema = gateBaseSchema.extend({
523
523
  kind: z.literal("file"),
524
- path: z.string().min(1),
524
+ /** Absolute or project-root-relative file path. Mutually exclusive with `attachmentSha256`. */
525
+ path: z.string().min(1).optional(),
526
+ /**
527
+ * SHA-256 hex of an attachment blob. Gate runner resolves the on-disk path
528
+ * via AttachmentStore. Mutually exclusive with `path`.
529
+ */
530
+ attachmentSha256: z.string().regex(/^[0-9a-f]{64}$/i, "attachmentSha256 must be a 64-char hex string").optional(),
525
531
  assertions: z.array(fileAssertionSchema).min(1)
526
532
  });
527
533
  commandGateSchema = gateBaseSchema.extend({
@@ -564,12 +570,52 @@ var init_acceptance_gate_schema = __esm({
564
570
  httpGateSchema,
565
571
  manualGateSchema
566
572
  ]);
573
+ gateResultDetailsSchema = z.discriminatedUnion("kind", [
574
+ z.object({
575
+ kind: z.literal("test"),
576
+ exitCode: z.number().int(),
577
+ stdout: z.string(),
578
+ stderr: z.string(),
579
+ duration: z.number().nonnegative()
580
+ }),
581
+ z.object({
582
+ kind: z.literal("file"),
583
+ path: z.string().min(1),
584
+ passedAssertions: z.array(z.string()),
585
+ failedAssertions: z.array(z.string())
586
+ }),
587
+ z.object({
588
+ kind: z.literal("command"),
589
+ cmd: z.string().min(1),
590
+ exitCode: z.number().int(),
591
+ stdout: z.string()
592
+ }),
593
+ z.object({
594
+ kind: z.literal("lint"),
595
+ tool: z.string().min(1),
596
+ warnings: z.number().int().nonnegative(),
597
+ errors: z.number().int().nonnegative()
598
+ }),
599
+ z.object({
600
+ kind: z.literal("http"),
601
+ url: z.string(),
602
+ status: z.number().int().min(100).max(599),
603
+ body: z.string()
604
+ }),
605
+ z.object({
606
+ kind: z.literal("manual"),
607
+ prompt: z.string().min(1),
608
+ accepted: z.boolean()
609
+ })
610
+ ]);
567
611
  acceptanceGateResultSchema = z.object({
568
612
  index: z.number().int().nonnegative(),
569
613
  req: z.string().optional(),
570
614
  kind: z.enum(["test", "file", "command", "lint", "http", "manual"]),
571
615
  result: z.enum(["pass", "fail", "warn", "skipped", "error"]),
572
616
  durationMs: z.number().nonnegative(),
617
+ /** Typed kind-specific detail payload (T802). */
618
+ details: gateResultDetailsSchema.optional(),
573
619
  evidence: z.string().optional(),
574
620
  errorMessage: z.string().optional(),
575
621
  /** ISO 8601 timestamp. */
@@ -604,6 +650,126 @@ var init_acceptance_gate_schema = __esm({
604
650
  }
605
651
  });
606
652
 
653
+ // packages/contracts/src/attachment-schema.ts
654
+ import { z as z2 } from "zod";
655
+ var attachmentCommonSchema, localFileAttachmentSchema, urlAttachmentSchema, blobAttachmentSchema, llmsTxtAttachmentSchema, llmtxtDocAttachmentSchema, attachmentSchema, attachmentMetadataSchema, attachmentRefSchema;
656
+ var init_attachment_schema = __esm({
657
+ "packages/contracts/src/attachment-schema.ts"() {
658
+ "use strict";
659
+ attachmentCommonSchema = z2.object({
660
+ /** Free-text description of what this attachment contains. */
661
+ description: z2.string().optional(),
662
+ /** Labels for filtering (e.g., `["rfc", "spec"]`). */
663
+ labels: z2.array(z2.string()).optional()
664
+ });
665
+ localFileAttachmentSchema = attachmentCommonSchema.extend({
666
+ kind: z2.literal("local-file"),
667
+ /** Path to the file (absolute or project-root-relative, forward-slashes only). */
668
+ path: z2.string().min(1),
669
+ /** SHA-256 hex digest (64 hex characters). */
670
+ sha256: z2.string().length(64),
671
+ /** IANA MIME type. */
672
+ mime: z2.string().min(1),
673
+ /** File size in bytes (non-negative integer). */
674
+ size: z2.number().int().nonnegative()
675
+ });
676
+ urlAttachmentSchema = attachmentCommonSchema.extend({
677
+ kind: z2.literal("url"),
678
+ /** The remote URL — must be a valid absolute URL. */
679
+ url: z2.string().url(),
680
+ /** SHA-256 of the cached body (64 hex characters). */
681
+ cachedSha256: z2.string().length(64).optional(),
682
+ /** ISO 8601 timestamp when the body was cached. */
683
+ cachedAt: z2.string().datetime().optional(),
684
+ /** IANA MIME type detected from the Content-Type header. */
685
+ mime: z2.string().optional()
686
+ });
687
+ blobAttachmentSchema = attachmentCommonSchema.extend({
688
+ kind: z2.literal("blob"),
689
+ /** SHA-256 hex digest of the uncompressed content (64 hex characters). */
690
+ sha256: z2.string().length(64),
691
+ /** Storage key inside `.cleo/attachments/sha256/`. */
692
+ storageKey: z2.string().min(1),
693
+ /** IANA MIME type. */
694
+ mime: z2.string().min(1),
695
+ /** Size of the uncompressed content in bytes. */
696
+ size: z2.number().int().nonnegative()
697
+ });
698
+ llmsTxtAttachmentSchema = attachmentCommonSchema.extend({
699
+ kind: z2.literal("llms-txt"),
700
+ /** Where the llms.txt content originated. */
701
+ source: z2.enum(["url", "generated"]),
702
+ /** Full markdown content of the llms.txt (stored inline). */
703
+ content: z2.string().min(1),
704
+ /** SHA-256 hex digest of `content` (64 hex characters). */
705
+ sha256: z2.string().length(64)
706
+ });
707
+ llmtxtDocAttachmentSchema = attachmentCommonSchema.extend({
708
+ kind: z2.literal("llmtxt-doc"),
709
+ /** Document slug from the llmtxt backend. */
710
+ slug: z2.string().min(1),
711
+ /** Which backend owns the document. */
712
+ backend: z2.enum(["local", "remote"]),
713
+ /**
714
+ * Version string pinned at attach time.
715
+ *
716
+ * Opaque: integer version for local backends, API-assigned string for remote.
717
+ */
718
+ pinnedVersion: z2.string().optional()
719
+ });
720
+ attachmentSchema = z2.discriminatedUnion("kind", [
721
+ localFileAttachmentSchema,
722
+ urlAttachmentSchema,
723
+ blobAttachmentSchema,
724
+ llmsTxtAttachmentSchema,
725
+ llmtxtDocAttachmentSchema
726
+ ]);
727
+ attachmentMetadataSchema = z2.object({
728
+ /**
729
+ * Unique attachment ID.
730
+ *
731
+ * Pattern: `att_<base62>` or UUID fallback. Must be non-empty.
732
+ */
733
+ id: z2.string().min(1),
734
+ /**
735
+ * Content hash — SHA-256 hex (64 chars) for byte-backed kinds, empty string
736
+ * for kinds that delegate content storage externally.
737
+ */
738
+ sha256: z2.string(),
739
+ /** The full attachment value (validated through the discriminated union). */
740
+ attachment: attachmentSchema,
741
+ /** ISO 8601 creation timestamp. */
742
+ createdAt: z2.string().datetime(),
743
+ /**
744
+ * Reference count — how many `AttachmentRef` rows point at this attachment.
745
+ *
746
+ * Must be a non-negative integer.
747
+ */
748
+ refCount: z2.number().int().nonnegative()
749
+ });
750
+ attachmentRefSchema = z2.object({
751
+ /** ID of the attachment (→ `attachments.id`). Must be non-empty. */
752
+ attachmentId: z2.string().min(1),
753
+ /**
754
+ * The domain entity type that owns this attachment.
755
+ *
756
+ * Restricted to the six supported CLEO entity types.
757
+ */
758
+ ownerType: z2.enum(["task", "observation", "session", "decision", "learning", "pattern"]),
759
+ /** ID of the owning entity. Must be non-empty. */
760
+ ownerId: z2.string().min(1),
761
+ /** ISO 8601 timestamp when the ref was created. */
762
+ attachedAt: z2.string().datetime(),
763
+ /**
764
+ * Agent identity (or `"human"`) that created the ref.
765
+ *
766
+ * Optional; populated from the active session credential when available.
767
+ */
768
+ attachedBy: z2.string().optional()
769
+ });
770
+ }
771
+ });
772
+
607
773
  // packages/contracts/src/errors.ts
608
774
  function getErrorMessage(error, fallback = "Unknown error") {
609
775
  if (error instanceof Error) {
@@ -623,6 +789,68 @@ var init_errors = __esm({
623
789
  }
624
790
  });
625
791
 
792
+ // packages/contracts/src/evidence-record-schema.ts
793
+ import { z as z3 } from "zod";
794
+ var evidenceBaseSchema, implDiffRecordSchema, validateSpecCheckRecordSchema, testOutputRecordSchema, lintReportRecordSchema, commandOutputRecordSchema, evidenceRecordSchema;
795
+ var init_evidence_record_schema = __esm({
796
+ "packages/contracts/src/evidence-record-schema.ts"() {
797
+ "use strict";
798
+ evidenceBaseSchema = z3.object({
799
+ /** Identity string of the agent that produced this record. */
800
+ agentIdentity: z3.string().min(1),
801
+ /** SHA-256 hex digest (64 chars) of the attached artifact. */
802
+ attachmentSha256: z3.string().length(64),
803
+ /** ISO 8601 timestamp at which the action ran. */
804
+ ranAt: z3.string().datetime(),
805
+ /** Wall-clock duration of the action in milliseconds. */
806
+ durationMs: z3.number().nonnegative()
807
+ });
808
+ implDiffRecordSchema = evidenceBaseSchema.extend({
809
+ kind: z3.literal("impl-diff"),
810
+ phase: z3.literal("implement"),
811
+ filesChanged: z3.array(z3.string().min(1)).min(1),
812
+ linesAdded: z3.number().int().nonnegative(),
813
+ linesRemoved: z3.number().int().nonnegative()
814
+ });
815
+ validateSpecCheckRecordSchema = evidenceBaseSchema.extend({
816
+ kind: z3.literal("validate-spec-check"),
817
+ phase: z3.literal("validate"),
818
+ reqIdsChecked: z3.array(z3.string().min(1)).min(1),
819
+ passed: z3.boolean(),
820
+ details: z3.string().min(1)
821
+ });
822
+ testOutputRecordSchema = evidenceBaseSchema.extend({
823
+ kind: z3.literal("test-output"),
824
+ phase: z3.literal("test"),
825
+ command: z3.string().min(1),
826
+ exitCode: z3.number().int(),
827
+ testsPassed: z3.number().int().nonnegative(),
828
+ testsFailed: z3.number().int().nonnegative()
829
+ });
830
+ lintReportRecordSchema = evidenceBaseSchema.extend({
831
+ kind: z3.literal("lint-report"),
832
+ phase: z3.enum(["implement", "test"]),
833
+ tool: z3.string().min(1),
834
+ passed: z3.boolean(),
835
+ warnings: z3.number().int().nonnegative(),
836
+ errors: z3.number().int().nonnegative()
837
+ });
838
+ commandOutputRecordSchema = evidenceBaseSchema.extend({
839
+ kind: z3.literal("command-output"),
840
+ phase: z3.enum(["implement", "validate", "test"]),
841
+ cmd: z3.string().min(1),
842
+ exitCode: z3.number().int()
843
+ });
844
+ evidenceRecordSchema = z3.discriminatedUnion("kind", [
845
+ implDiffRecordSchema,
846
+ validateSpecCheckRecordSchema,
847
+ testOutputRecordSchema,
848
+ lintReportRecordSchema,
849
+ commandOutputRecordSchema
850
+ ]);
851
+ }
852
+ });
853
+
626
854
  // packages/contracts/src/exit-codes.ts
627
855
  var init_exit_codes = __esm({
628
856
  "packages/contracts/src/exit-codes.ts"() {
@@ -752,11 +980,69 @@ var init_status_registry = __esm({
752
980
  }
753
981
  });
754
982
 
983
+ // packages/contracts/src/task-evidence.ts
984
+ import { z as z4 } from "zod";
985
+ var fileEvidenceSchema, logEvidenceSchema, screenshotEvidenceSchema, testOutputEvidenceSchema, commandOutputEvidenceSchema, taskEvidenceSchema;
986
+ var init_task_evidence = __esm({
987
+ "packages/contracts/src/task-evidence.ts"() {
988
+ "use strict";
989
+ fileEvidenceSchema = z4.object({
990
+ kind: z4.literal("file"),
991
+ sha256: z4.string().length(64),
992
+ timestamp: z4.string().datetime(),
993
+ path: z4.string().min(1),
994
+ mime: z4.string().optional(),
995
+ description: z4.string().optional()
996
+ });
997
+ logEvidenceSchema = z4.object({
998
+ kind: z4.literal("log"),
999
+ sha256: z4.string().length(64),
1000
+ timestamp: z4.string().datetime(),
1001
+ source: z4.string().min(1),
1002
+ description: z4.string().optional()
1003
+ });
1004
+ screenshotEvidenceSchema = z4.object({
1005
+ kind: z4.literal("screenshot"),
1006
+ sha256: z4.string().length(64),
1007
+ timestamp: z4.string().datetime(),
1008
+ mime: z4.enum(["image/png", "image/jpeg", "image/webp"]).optional(),
1009
+ description: z4.string().optional()
1010
+ });
1011
+ testOutputEvidenceSchema = z4.object({
1012
+ kind: z4.literal("test-output"),
1013
+ sha256: z4.string().length(64),
1014
+ timestamp: z4.string().datetime(),
1015
+ passed: z4.number().int().nonnegative(),
1016
+ failed: z4.number().int().nonnegative(),
1017
+ skipped: z4.number().int().nonnegative(),
1018
+ exitCode: z4.number().int(),
1019
+ description: z4.string().optional()
1020
+ });
1021
+ commandOutputEvidenceSchema = z4.object({
1022
+ kind: z4.literal("command-output"),
1023
+ sha256: z4.string().length(64),
1024
+ timestamp: z4.string().datetime(),
1025
+ cmd: z4.string().min(1),
1026
+ exitCode: z4.number().int(),
1027
+ description: z4.string().optional()
1028
+ });
1029
+ taskEvidenceSchema = z4.discriminatedUnion("kind", [
1030
+ fileEvidenceSchema,
1031
+ logEvidenceSchema,
1032
+ screenshotEvidenceSchema,
1033
+ testOutputEvidenceSchema,
1034
+ commandOutputEvidenceSchema
1035
+ ]);
1036
+ }
1037
+ });
1038
+
755
1039
  // packages/contracts/src/index.ts
756
1040
  var init_src = __esm({
757
1041
  "packages/contracts/src/index.ts"() {
758
1042
  init_acceptance_gate_schema();
1043
+ init_attachment_schema();
759
1044
  init_errors();
1045
+ init_evidence_record_schema();
760
1046
  init_exit_codes();
761
1047
  init_facade();
762
1048
  init_lafs();
@@ -764,6 +1050,7 @@ var init_src = __esm({
764
1050
  init_orchestration_hierarchy();
765
1051
  init_session2();
766
1052
  init_status_registry();
1053
+ init_task_evidence();
767
1054
  }
768
1055
  });
769
1056
 
@@ -1778,7 +2065,7 @@ function g$($, { level: X } = { level: "debug" }) {
1778
2065
  function sK() {
1779
2066
  return aK() ?? process.env.CLAUDE_CODE_DEBUG_LOGS_DIR ?? oK(E4(), "debug", `${uK()}.txt`);
1780
2067
  }
1781
- function z2() {
2068
+ function z22() {
1782
2069
  return W2;
1783
2070
  }
1784
2071
  function B$($, X, J) {
@@ -4103,10 +4390,10 @@ function zZ($) {
4103
4390
  return A7(D9, $);
4104
4391
  }
4105
4392
  function GZ($) {
4106
- return I7(z3, $);
4393
+ return I7(z32, $);
4107
4394
  }
4108
4395
  function UZ($) {
4109
- return b7(z3, $);
4396
+ return b7(z32, $);
4110
4397
  }
4111
4398
  function HZ($) {
4112
4399
  return Z7(OV, $);
@@ -5362,7 +5649,7 @@ function Uy($, X) {
5362
5649
  }
5363
5650
  return null;
5364
5651
  }
5365
- var Nj, Vj, D5, wj, Oj, qj, Dj, VH, k, Lj, z1, Fj, Mj, w$, O$, C9, d3, a, Q$, A4, _9, kO, $U, XU, x9, nO, P6, JB, zB, UU, HB, T9, g9, lQ, h9, pQ, hB, mB, oB, Xq, Yq, zq, Oq, qq, Aq, bq, Pq, Eq, Cq, _q, Tq, fq, hq, mq, $5, iq, nq, oq, aq, PU, RU, zD, HD, ND, DD, FD, SU, ZD, vD, kD, xD, yD, gD, lD, pD, dD, rD, tD, eD, JL, zL, HL, KL, _U, ML, IL, RL, Ij, Zj, Pj, X6, Ej, OH, Sj, vj, i1, Cj, d1, BH, kj, _j, HX, qH, Tj, yj, DH, gj, hj, LH, jH, YJ, lj, cj, pj, ij, FH, nj, QJ, MH, AH, oj, tj, IH, sj, ej, $F, XF, JF, YF, QF, bH, ZH, WJ, UF, Y4, PH, RH, NF, VF, wF, EH, BF, qF, SH, LF, vH, L5, CH, kH, P4, IF, bF, _H, xH, TH, yH, fH, SF, gH, hH, uH, R4, mH, lH, cH, pH, j5, fF, S6, E4, M5, KX, y, C$, f$, G1, NX, VX, wX, OX, BX, qX, DX, LX, jX, mF, iH, A5, I5, nH, GJ, rH, S4, sH, cF, oH, tH, aH, eH, JK, QK, WK, N6, V6, v4, KJ, R5, rF, UK, W4, IX, w6, HK, bX, U1, VJ, S5, wJ, v6, ZX, C5, k5, t1, KK, $M, XM, v5, NK, JM, YM, b$, VK, d, RX, OK, GM, M$, EX, SX, DJ, NM, a1, VM, wM, LJ, L6, C4, s1, vX, jJ, CX, kX, FJ, _X, z4, xX, MJ, AJ, K1, IJ, bJ, TX, f5, DK, ZJ, g5, h5, u5, LK, jK, yX, e1, AK, IK, fX, $0, N1, k$, gX, O6, G4, k4, hX, bK, m5, uX, X0, mX, PK, qM, _4, lX, J0, p6, Y0, j6, x4, Q0, cX, PJ, pX, iX, RJ, dX, U4, nX, EJ, SJ, V1, vJ, CJ, rX, p5, SK, i5, d5, n5, r5, vK, CK, oX, tX, w1, xK, AM, W0, aX, o5, t5, kJ, TK, yK, fK, P$, O1, H0, U0, vM, CM, zl, kM, Gl, _M, Ul, lK, pK, pM, iM, e5, aM, sM, $W, eM, tK, aK, X2, xJ, s5, eK, yl, W2, Z$, o$, K2, TJ, XN, eX, B1, XW, $8, JW, q2, YW, F2, C6, A2, I2, b2, N0, R2, zN, E2, gJ, v2, X8, C2, k2, p2, JA, HA, RN, KA, NA, VA, Op, PN, wA, BA, SN, X$, kN, E, K4, b, B6, LA, y4, jA, iJ, c$, l, O0, t$, qW, DW, F1, Q8, f, k6, _N, e, FA, MA, AA, IA, bA, ZA, PA, RA, EA, LW, SA, vA, CA, kA, _A, xA, xN, TA, V4, q0, D0, dJ, z8, nJ, G8, U8, rJ, M1, w4, oJ, d6, R$, H8, N4, FW, K8, O4, tJ, aJ, L0, W8, N8, V8, A1, w8, j0, n6, M6, f4, O8, B8, sJ, MW, eJ, q8, hp, Z, up, mp, lp, cp, pp, ip, dp, np, rp, op, tp, ap, sp, ep, fN, $i, Xi, Ji, Yi, Qi, Wi, zi, Gi, Ui, Hi, Ki, Ni, Vi, wi, Oi, Bi, qi, Di, Li, _6, $Y, XY, B4, D8, R, JY, PW, aA, A8, RW, SW, vW, gN, hN, Z8, A0, WY, Z1, zY, P1, GY, h4, UY, u4, m4, kW, _W, xW, TW, yW, fW, gW, GI, hW, R1, UI, HI, KI, uW, NI, VI, wI, OI, BI, lW, cW, pW, iW, dW, HY, nW, qI, rW, mN, oW, sW, eW, $z, Xz, Jz, Yz, Qz, Wz, zz, A$, pN, KY, NY, Gz, Uz, Hz, Kz, Nz, Vz, wz, Oz, Bz, Z0, qz, Dz, Lz, jz, Fz, Mz, Az, Iz, bz, VY, Zz, i, l4, H$, BY, qY, DY, LY, jY, FY, MY, AY, IY, bY, ZY, Rz, Ez, Sz, vz, PY, RY, EY, SY, vY, CY, kY, _Y, xY, P8, TY, P0, R8, yY, fY, gY, hY, uY, E1, mY, lY, cY, R0, E8, S8, pY, iY, c4, dY, nY, rY, oY, tY, aY, E0, sY, eY, $7, X7, J7, Y7, Q7, W7, S0, z7, G7, U7, H7, K7, v0, DI, LI, jI, FI, MI, AI, II, bI, ZI, PI, RI, EI, SI, vI, CI, kI, _I, xI, TI, yI, fI, gI, hI, uI, mI, lI, cI, pI, iI, dI, nI, rI, oI, tI, aI, sI, eI, $b, Xb, Jb, Yb, Qb, N7, V7, C8, W6, O7, CG, h7, UV, Rb, Eb, n4, f0, c7, p7, i7, d7, VV, Cb, g0, fG, gG, hG, uG, s, lG, O9, D$, cG, n7, F4, pG, iG, dG, nG, rG, oG, tG, aG, sG, eG, $3, X3, J3, Y3, Q3, W3, wV, B9, h0, q9, D9, z3, OV, BV, qV, DV, LV, jV, FV, s7, MV, e7, G3, AV, IV, bV, U3, ZV, PV, w9, RV, EV, H3, N3, SV, vV, kV, V3, TV, yV, gV, w3, hV, mV, lV, pV, XQ, EZ, vZ, B3, q3, rV, r4, QQ, x$, oV, tV, on, gZ, hZ, D3, D6, j9, aV, h$, b6, Z6, u$, WQ, sV, L3, eV, $w, j3, F9, m, F3, Xw, tn, an, zQ, uZ, GQ, mZ, M9, u0, Jw, lZ, cZ, pZ, iZ, dZ, nZ, M3, rZ, oZ, A3, UQ, tZ, aZ, HQ, sZ, A9, I9, eZ, b9, m0, $P, Z9, KQ, NQ, VQ, sn, wQ, OQ, BQ, Yw, Qw, Ww, I3, zw, P9, l0, Gw, XP, qQ, JP, DQ, YP, b3, QP, LQ, WP, zP, GP, UP, HP, KP, NP, VP, wP, OP, jQ, BP, qP, FQ, Z3, P3, R3, DP, LP, jP, E3, FP, MP, AP, IP, bP, Uw, MQ, ZP, AQ, en, PP, c0, RP, $r, R9, EP, S3, SP, vP, CP, kP, _P, xP, TP, YQ, yP, fP, gP, E9, v3, hP, uP, mP, lP, cP, pP, iP, dP, nP, rP, oP, tP, aP, sP, eP, $R, XR, JR, p0, YR, QR, WR, IQ, zR, GR, UR, C3, HR, Xr, Jr, Yr, Qr, Wr, zr, h, Nw, ww, Vw, Ow, Bw, bQ, jw, KR, NR, x3, x6, VR, S9, vw, Tw, yw, lw, cw, qR, DR, y3, jR, u3, EL, SL, cU, pU, iU, _L, kL, ST, rU, tU, kT, e9, hL, mL, fT, a6, cL, aT;
5652
+ var Nj, Vj, D5, wj, Oj, qj, Dj, VH, k, Lj, z1, Fj, Mj, w$, O$, C9, d3, a, Q$, A4, _9, kO, $U, XU, x9, nO, P6, JB, zB, UU, HB, T9, g9, lQ, h9, pQ, hB, mB, oB, Xq, Yq, zq, Oq, qq, Aq, bq, Pq, Eq, Cq, _q, Tq, fq, hq, mq, $5, iq, nq, oq, aq, PU, RU, zD, HD, ND, DD, FD, SU, ZD, vD, kD, xD, yD, gD, lD, pD, dD, rD, tD, eD, JL, zL, HL, KL, _U, ML, IL, RL, Ij, Zj, Pj, X6, Ej, OH, Sj, vj, i1, Cj, d1, BH, kj, _j, HX, qH, Tj, yj, DH, gj, hj, LH, jH, YJ, lj, cj, pj, ij, FH, nj, QJ, MH, AH, oj, tj, IH, sj, ej, $F, XF, JF, YF, QF, bH, ZH, WJ, UF, Y4, PH, RH, NF, VF, wF, EH, BF, qF, SH, LF, vH, L5, CH, kH, P4, IF, bF, _H, xH, TH, yH, fH, SF, gH, hH, uH, R4, mH, lH, cH, pH, j5, fF, S6, E4, M5, KX, y, C$, f$, G1, NX, VX, wX, OX, BX, qX, DX, LX, jX, mF, iH, A5, I5, nH, GJ, rH, S4, sH, cF, oH, tH, aH, eH, JK, QK, WK, N6, V6, v4, KJ, R5, rF, UK, W4, IX, w6, HK, bX, U1, VJ, S5, wJ, v6, ZX, C5, k5, t1, KK, $M, XM, v5, NK, JM, YM, b$, VK, d, RX, OK, GM, M$, EX, SX, DJ, NM, a1, VM, wM, LJ, L6, C4, s1, vX, jJ, CX, kX, FJ, _X, z42, xX, MJ, AJ, K1, IJ, bJ, TX, f5, DK, ZJ, g5, h5, u5, LK, jK, yX, e1, AK, IK, fX, $0, N1, k$, gX, O6, G4, k4, hX, bK, m5, uX, X0, mX, PK, qM, _4, lX, J0, p6, Y0, j6, x4, Q0, cX, PJ, pX, iX, RJ, dX, U4, nX, EJ, SJ, V1, vJ, CJ, rX, p5, SK, i5, d5, n5, r5, vK, CK, oX, tX, w1, xK, AM, W0, aX, o5, t5, kJ, TK, yK, fK, P$, O1, H0, U0, vM, CM, zl, kM, Gl, _M, Ul, lK, pK, pM, iM, e5, aM, sM, $W, eM, tK, aK, X2, xJ, s5, eK, yl, W2, Z$, o$, K2, TJ, XN, eX, B1, XW, $8, JW, q2, YW, F2, C6, A2, I2, b2, N0, R2, zN, E2, gJ, v2, X8, C2, k2, p2, JA, HA, RN, KA, NA, VA, Op, PN, wA, BA, SN, X$, kN, E, K4, b, B6, LA, y4, jA, iJ, c$, l, O0, t$, qW, DW, F1, Q8, f, k6, _N, e, FA, MA, AA, IA, bA, ZA, PA, RA, EA, LW, SA, vA, CA, kA, _A, xA, xN, TA, V4, q0, D0, dJ, z8, nJ, G8, U8, rJ, M1, w4, oJ, d6, R$, H8, N4, FW, K8, O4, tJ, aJ, L0, W8, N8, V8, A1, w8, j0, n6, M6, f4, O8, B8, sJ, MW, eJ, q8, hp, Z, up, mp, lp, cp, pp, ip, dp, np, rp, op, tp, ap, sp, ep, fN, $i, Xi, Ji, Yi, Qi, Wi, zi, Gi, Ui, Hi, Ki, Ni, Vi, wi, Oi, Bi, qi, Di, Li, _6, $Y, XY, B4, D8, R, JY, PW, aA, A8, RW, SW, vW, gN, hN, Z8, A0, WY, Z1, zY, P1, GY, h4, UY, u4, m4, kW, _W, xW, TW, yW, fW, gW, GI, hW, R1, UI, HI, KI, uW, NI, VI, wI, OI, BI, lW, cW, pW, iW, dW, HY, nW, qI, rW, mN, oW, sW, eW, $z, Xz, Jz, Yz, Qz, Wz, zz, A$, pN, KY, NY, Gz, Uz, Hz, Kz, Nz, Vz, wz, Oz, Bz, Z0, qz, Dz, Lz, jz, Fz, Mz, Az, Iz, bz, VY, Zz, i, l4, H$, BY, qY, DY, LY, jY, FY, MY, AY, IY, bY, ZY, Rz, Ez, Sz, vz, PY, RY, EY, SY, vY, CY, kY, _Y, xY, P8, TY, P0, R8, yY, fY, gY, hY, uY, E1, mY, lY, cY, R0, E8, S8, pY, iY, c4, dY, nY, rY, oY, tY, aY, E0, sY, eY, $7, X7, J7, Y7, Q7, W7, S0, z7, G7, U7, H7, K7, v0, DI, LI, jI, FI, MI, AI, II, bI, ZI, PI, RI, EI, SI, vI, CI, kI, _I, xI, TI, yI, fI, gI, hI, uI, mI, lI, cI, pI, iI, dI, nI, rI, oI, tI, aI, sI, eI, $b, Xb, Jb, Yb, Qb, N7, V7, C8, W6, O7, CG, h7, UV, Rb, Eb, n4, f0, c7, p7, i7, d7, VV, Cb, g0, fG, gG, hG, uG, s, lG, O9, D$, cG, n7, F4, pG, iG, dG, nG, rG, oG, tG, aG, sG, eG, $3, X3, J3, Y3, Q3, W3, wV, B9, h0, q9, D9, z32, OV, BV, qV, DV, LV, jV, FV, s7, MV, e7, G3, AV, IV, bV, U3, ZV, PV, w9, RV, EV, H3, N3, SV, vV, kV, V3, TV, yV, gV, w3, hV, mV, lV, pV, XQ, EZ, vZ, B3, q3, rV, r4, QQ, x$, oV, tV, on, gZ, hZ, D3, D6, j9, aV, h$, b6, Z6, u$, WQ, sV, L3, eV, $w, j3, F9, m, F3, Xw, tn, an, zQ, uZ, GQ, mZ, M9, u0, Jw, lZ, cZ, pZ, iZ, dZ, nZ, M3, rZ, oZ, A3, UQ, tZ, aZ, HQ, sZ, A9, I9, eZ, b9, m0, $P, Z9, KQ, NQ, VQ, sn, wQ, OQ, BQ, Yw, Qw, Ww, I3, zw, P9, l0, Gw, XP, qQ, JP, DQ, YP, b3, QP, LQ, WP, zP, GP, UP, HP, KP, NP, VP, wP, OP, jQ, BP, qP, FQ, Z3, P3, R3, DP, LP, jP, E3, FP, MP, AP, IP, bP, Uw, MQ, ZP, AQ, en, PP, c0, RP, $r, R9, EP, S3, SP, vP, CP, kP, _P, xP, TP, YQ, yP, fP, gP, E9, v3, hP, uP, mP, lP, cP, pP, iP, dP, nP, rP, oP, tP, aP, sP, eP, $R, XR, JR, p0, YR, QR, WR, IQ, zR, GR, UR, C3, HR, Xr, Jr, Yr, Qr, Wr, zr, h, Nw, ww, Vw, Ow, Bw, bQ, jw, KR, NR, x3, x6, VR, S9, vw, Tw, yw, lw, cw, qR, DR, y3, jR, u3, EL, SL, cU, pU, iU, _L, kL, ST, rU, tU, kT, e9, hL, mL, fT, a6, cL, aT;
5366
5653
  var init_sdk = __esm({
5367
5654
  "node_modules/.pnpm/@anthropic-ai+claude-agent-sdk@0.2.108_zod@4.3.6/node_modules/@anthropic-ai/claude-agent-sdk/sdk.mjs"() {
5368
5655
  Nj = Object.create;
@@ -9834,7 +10121,7 @@ ${N}`);
9834
10121
  }), CX.set(this, () => {
9835
10122
  }), kX.set(this, void 0), FJ.set(this, () => {
9836
10123
  }), _X.set(this, () => {
9837
- }), z4.set(this, {}), xX.set(this, false), MJ.set(this, false), AJ.set(this, false), K1.set(this, false), IJ.set(this, void 0), bJ.set(this, void 0), TX.set(this, void 0), ZJ.set(this, (J) => {
10124
+ }), z42.set(this, {}), xX.set(this, false), MJ.set(this, false), AJ.set(this, false), K1.set(this, false), IJ.set(this, void 0), bJ.set(this, void 0), TX.set(this, void 0), ZJ.set(this, (J) => {
9838
10125
  if (v(this, MJ, true, "f"), Q4(J)) J = new f$();
9839
10126
  if (J instanceof f$) return v(this, AJ, true, "f"), this._emit("abort", J);
9840
10127
  if (J instanceof y) return this._emit("error", J);
@@ -9917,17 +10204,17 @@ ${N}`);
9917
10204
  this.controller.abort();
9918
10205
  }
9919
10206
  on($, X) {
9920
- return (D(this, z4, "f")[$] || (D(this, z4, "f")[$] = [])).push({ listener: X }), this;
10207
+ return (D(this, z42, "f")[$] || (D(this, z42, "f")[$] = [])).push({ listener: X }), this;
9921
10208
  }
9922
10209
  off($, X) {
9923
- let J = D(this, z4, "f")[$];
10210
+ let J = D(this, z42, "f")[$];
9924
10211
  if (!J) return this;
9925
10212
  let Q = J.findIndex((Y) => Y.listener === X);
9926
10213
  if (Q >= 0) J.splice(Q, 1);
9927
10214
  return this;
9928
10215
  }
9929
10216
  once($, X) {
9930
- return (D(this, z4, "f")[$] || (D(this, z4, "f")[$] = [])).push({ listener: X, once: true }), this;
10217
+ return (D(this, z42, "f")[$] || (D(this, z42, "f")[$] = [])).push({ listener: X, once: true }), this;
9931
10218
  }
9932
10219
  emitted($) {
9933
10220
  return new Promise((X, J) => {
@@ -9950,8 +10237,8 @@ ${N}`);
9950
10237
  _emit($, ...X) {
9951
10238
  if (D(this, xX, "f")) return;
9952
10239
  if ($ === "end") v(this, xX, true, "f"), D(this, FJ, "f").call(this);
9953
- let J = D(this, z4, "f")[$];
9954
- if (J) D(this, z4, "f")[$] = J.filter((Q) => !Q.once), J.forEach(({ listener: Q }) => Q(...X));
10240
+ let J = D(this, z42, "f")[$];
10241
+ if (J) D(this, z42, "f")[$] = J.filter((Q) => !Q.once), J.forEach(({ listener: Q }) => Q(...X));
9955
10242
  if ($ === "abort") {
9956
10243
  let Q = X[0];
9957
10244
  if (!D(this, K1, "f") && !J?.length) Promise.reject(Q);
@@ -9983,7 +10270,7 @@ ${N}`);
9983
10270
  if (J && Q) J.removeEventListener("abort", Q);
9984
10271
  }
9985
10272
  }
9986
- [(C4 = /* @__PURE__ */ new WeakMap(), s1 = /* @__PURE__ */ new WeakMap(), vX = /* @__PURE__ */ new WeakMap(), jJ = /* @__PURE__ */ new WeakMap(), CX = /* @__PURE__ */ new WeakMap(), kX = /* @__PURE__ */ new WeakMap(), FJ = /* @__PURE__ */ new WeakMap(), _X = /* @__PURE__ */ new WeakMap(), z4 = /* @__PURE__ */ new WeakMap(), xX = /* @__PURE__ */ new WeakMap(), MJ = /* @__PURE__ */ new WeakMap(), AJ = /* @__PURE__ */ new WeakMap(), K1 = /* @__PURE__ */ new WeakMap(), IJ = /* @__PURE__ */ new WeakMap(), bJ = /* @__PURE__ */ new WeakMap(), TX = /* @__PURE__ */ new WeakMap(), ZJ = /* @__PURE__ */ new WeakMap(), L6 = /* @__PURE__ */ new WeakSet(), f5 = function() {
10273
+ [(C4 = /* @__PURE__ */ new WeakMap(), s1 = /* @__PURE__ */ new WeakMap(), vX = /* @__PURE__ */ new WeakMap(), jJ = /* @__PURE__ */ new WeakMap(), CX = /* @__PURE__ */ new WeakMap(), kX = /* @__PURE__ */ new WeakMap(), FJ = /* @__PURE__ */ new WeakMap(), _X = /* @__PURE__ */ new WeakMap(), z42 = /* @__PURE__ */ new WeakMap(), xX = /* @__PURE__ */ new WeakMap(), MJ = /* @__PURE__ */ new WeakMap(), AJ = /* @__PURE__ */ new WeakMap(), K1 = /* @__PURE__ */ new WeakMap(), IJ = /* @__PURE__ */ new WeakMap(), bJ = /* @__PURE__ */ new WeakMap(), TX = /* @__PURE__ */ new WeakMap(), ZJ = /* @__PURE__ */ new WeakMap(), L6 = /* @__PURE__ */ new WeakSet(), f5 = function() {
9987
10274
  if (this.receivedMessages.length === 0) throw new y("stream ended without producing a Message with role=assistant");
9988
10275
  return this.receivedMessages.at(-1);
9989
10276
  }, DK = function() {
@@ -11360,7 +11647,7 @@ new Anthropic({ apiKey, dangerouslyAllowBrowser: true });
11360
11647
  })();
11361
11648
  W2 = { [Symbol.dispose]() {
11362
11649
  } };
11363
- Z$ = z2;
11650
+ Z$ = z22;
11364
11651
  o$ = ($, X) => {
11365
11652
  let Q = [];
11366
11653
  try {
@@ -17865,7 +18152,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
17865
18152
  E8.init($, X), Rb.init($, X), R.defineLazy($, "shape", () => X.shape);
17866
18153
  });
17867
18154
  n4 = {};
17868
- z1(n4, { xid: () => ib, void: () => VZ, uuidv7: () => gb, uuidv6: () => fb, uuidv4: () => yb, uuid: () => Tb, url: () => hb, uppercase: () => Y9, unknown: () => j$, union: () => K$, undefined: () => KZ, ulid: () => pb, uint64: () => UZ, uint32: () => WZ, tuple: () => qZ, trim: () => H9, treeifyError: () => YY, transform: () => K3, toUpperCase: () => N9, toLowerCase: () => K9, toJSONSchema: () => T0, templateLiteral: () => ZZ, symbol: () => HZ, superRefine: () => nV, success: () => IZ, stringbool: () => EZ, stringFormat: () => XZ, string: () => F, strictObject: () => BZ, startsWith: () => W9, size: () => $9, setErrorMap: () => CZ, set: () => jZ, safeParseAsync: () => uG, safeParse: () => hG, registry: () => k8, regexes: () => m4, regex: () => X9, refine: () => dV, record: () => N$, readonly: () => uV, property: () => SG, promise: () => PZ, prettifyError: () => QY, preprocess: () => JQ, prefault: () => _V, positive: () => ZG, pipe: () => o7, partialRecord: () => DZ, parseAsync: () => gG, parse: () => fG, overwrite: () => j4, optional: () => L$, object: () => _, number: () => z$, nullish: () => AZ, nullable: () => r7, null: () => t7, normalize: () => U9, nonpositive: () => RG, nonoptional: () => xV, nonnegative: () => EG, never: () => a7, negative: () => PG, nativeEnum: () => FZ, nanoid: () => mb, nan: () => bZ, multipleOf: () => v1, minSize: () => C1, minLength: () => p4, mime: () => G9, maxSize: () => k0, maxLength: () => _0, map: () => LZ, lte: () => A6, lt: () => D4, lowercase: () => J9, looseObject: () => i$, locales: () => v0, literal: () => g, length: () => x0, lazy: () => cV, ksuid: () => db, keyof: () => OZ, jwt: () => $Z, json: () => SZ, iso: () => f0, ipv6: () => rb, ipv4: () => nb, intersection: () => L9, int64: () => GZ, int32: () => QZ, int: () => mG, instanceof: () => RZ, includes: () => Q9, guid: () => xb, gte: () => z6, gt: () => L4, globalRegistry: () => W6, getErrorMap: () => kZ, function: () => g7, formatError: () => b0, float64: () => YZ, float32: () => JZ, flattenError: () => I0, file: () => MZ, enum: () => a$, endsWith: () => z9, emoji: () => ub, email: () => _b, e164: () => eb, discriminatedUnion: () => $Q, date: () => wZ, custom: () => O3, cuid2: () => cb, cuid: () => lb, core: () => _6, config: () => E$, coerce: () => B3, clone: () => p$, cidrv6: () => tb, cidrv4: () => ob, check: () => iV, catch: () => fV, boolean: () => v$, bigint: () => zZ, base64url: () => sb, base64: () => ab, array: () => $$, any: () => NZ, _default: () => CV, _ZodString: () => lG, ZodXID: () => tG, ZodVoid: () => FV, ZodUnknown: () => LV, ZodUnion: () => G3, ZodUndefined: () => BV, ZodUUID: () => F4, ZodURL: () => pG, ZodULID: () => oG, ZodType: () => s, ZodTuple: () => bV, ZodTransform: () => H3, ZodTemplateLiteral: () => mV, ZodSymbol: () => OV, ZodSuccess: () => TV, ZodStringFormat: () => D$, ZodString: () => O9, ZodSet: () => PV, ZodRecord: () => U3, ZodRealError: () => g0, ZodReadonly: () => hV, ZodPromise: () => pV, ZodPrefault: () => kV, ZodPipe: () => w3, ZodOptional: () => N3, ZodObject: () => e7, ZodNumberFormat: () => h0, ZodNumber: () => B9, ZodNullable: () => SV, ZodNull: () => qV, ZodNonOptional: () => V3, ZodNever: () => jV, ZodNanoID: () => dG, ZodNaN: () => gV, ZodMap: () => ZV, ZodLiteral: () => RV, ZodLazy: () => lV, ZodKSUID: () => aG, ZodJWT: () => W3, ZodIssueCode: () => vZ, ZodIntersection: () => IV, ZodISOTime: () => i7, ZodISODuration: () => d7, ZodISODateTime: () => c7, ZodISODate: () => p7, ZodIPv6: () => eG, ZodIPv4: () => sG, ZodGUID: () => n7, ZodFile: () => EV, ZodError: () => Cb, ZodEnum: () => w9, ZodEmoji: () => iG, ZodEmail: () => cG, ZodE164: () => Q3, ZodDiscriminatedUnion: () => AV, ZodDefault: () => vV, ZodDate: () => s7, ZodCustomStringFormat: () => wV, ZodCustom: () => XQ, ZodCatch: () => yV, ZodCUID2: () => rG, ZodCUID: () => nG, ZodCIDRv6: () => X3, ZodCIDRv4: () => $3, ZodBoolean: () => q9, ZodBigIntFormat: () => z3, ZodBigInt: () => D9, ZodBase64URL: () => Y3, ZodBase64: () => J3, ZodArray: () => MV, ZodAny: () => DV, TimePrecision: () => O7, NEVER: () => $Y, $output: () => N7, $input: () => V7, $brand: () => XY });
18155
+ z1(n4, { xid: () => ib, void: () => VZ, uuidv7: () => gb, uuidv6: () => fb, uuidv4: () => yb, uuid: () => Tb, url: () => hb, uppercase: () => Y9, unknown: () => j$, union: () => K$, undefined: () => KZ, ulid: () => pb, uint64: () => UZ, uint32: () => WZ, tuple: () => qZ, trim: () => H9, treeifyError: () => YY, transform: () => K3, toUpperCase: () => N9, toLowerCase: () => K9, toJSONSchema: () => T0, templateLiteral: () => ZZ, symbol: () => HZ, superRefine: () => nV, success: () => IZ, stringbool: () => EZ, stringFormat: () => XZ, string: () => F, strictObject: () => BZ, startsWith: () => W9, size: () => $9, setErrorMap: () => CZ, set: () => jZ, safeParseAsync: () => uG, safeParse: () => hG, registry: () => k8, regexes: () => m4, regex: () => X9, refine: () => dV, record: () => N$, readonly: () => uV, property: () => SG, promise: () => PZ, prettifyError: () => QY, preprocess: () => JQ, prefault: () => _V, positive: () => ZG, pipe: () => o7, partialRecord: () => DZ, parseAsync: () => gG, parse: () => fG, overwrite: () => j4, optional: () => L$, object: () => _, number: () => z$, nullish: () => AZ, nullable: () => r7, null: () => t7, normalize: () => U9, nonpositive: () => RG, nonoptional: () => xV, nonnegative: () => EG, never: () => a7, negative: () => PG, nativeEnum: () => FZ, nanoid: () => mb, nan: () => bZ, multipleOf: () => v1, minSize: () => C1, minLength: () => p4, mime: () => G9, maxSize: () => k0, maxLength: () => _0, map: () => LZ, lte: () => A6, lt: () => D4, lowercase: () => J9, looseObject: () => i$, locales: () => v0, literal: () => g, length: () => x0, lazy: () => cV, ksuid: () => db, keyof: () => OZ, jwt: () => $Z, json: () => SZ, iso: () => f0, ipv6: () => rb, ipv4: () => nb, intersection: () => L9, int64: () => GZ, int32: () => QZ, int: () => mG, instanceof: () => RZ, includes: () => Q9, guid: () => xb, gte: () => z6, gt: () => L4, globalRegistry: () => W6, getErrorMap: () => kZ, function: () => g7, formatError: () => b0, float64: () => YZ, float32: () => JZ, flattenError: () => I0, file: () => MZ, enum: () => a$, endsWith: () => z9, emoji: () => ub, email: () => _b, e164: () => eb, discriminatedUnion: () => $Q, date: () => wZ, custom: () => O3, cuid2: () => cb, cuid: () => lb, core: () => _6, config: () => E$, coerce: () => B3, clone: () => p$, cidrv6: () => tb, cidrv4: () => ob, check: () => iV, catch: () => fV, boolean: () => v$, bigint: () => zZ, base64url: () => sb, base64: () => ab, array: () => $$, any: () => NZ, _default: () => CV, _ZodString: () => lG, ZodXID: () => tG, ZodVoid: () => FV, ZodUnknown: () => LV, ZodUnion: () => G3, ZodUndefined: () => BV, ZodUUID: () => F4, ZodURL: () => pG, ZodULID: () => oG, ZodType: () => s, ZodTuple: () => bV, ZodTransform: () => H3, ZodTemplateLiteral: () => mV, ZodSymbol: () => OV, ZodSuccess: () => TV, ZodStringFormat: () => D$, ZodString: () => O9, ZodSet: () => PV, ZodRecord: () => U3, ZodRealError: () => g0, ZodReadonly: () => hV, ZodPromise: () => pV, ZodPrefault: () => kV, ZodPipe: () => w3, ZodOptional: () => N3, ZodObject: () => e7, ZodNumberFormat: () => h0, ZodNumber: () => B9, ZodNullable: () => SV, ZodNull: () => qV, ZodNonOptional: () => V3, ZodNever: () => jV, ZodNanoID: () => dG, ZodNaN: () => gV, ZodMap: () => ZV, ZodLiteral: () => RV, ZodLazy: () => lV, ZodKSUID: () => aG, ZodJWT: () => W3, ZodIssueCode: () => vZ, ZodIntersection: () => IV, ZodISOTime: () => i7, ZodISODuration: () => d7, ZodISODateTime: () => c7, ZodISODate: () => p7, ZodIPv6: () => eG, ZodIPv4: () => sG, ZodGUID: () => n7, ZodFile: () => EV, ZodError: () => Cb, ZodEnum: () => w9, ZodEmoji: () => iG, ZodEmail: () => cG, ZodE164: () => Q3, ZodDiscriminatedUnion: () => AV, ZodDefault: () => vV, ZodDate: () => s7, ZodCustomStringFormat: () => wV, ZodCustom: () => XQ, ZodCatch: () => yV, ZodCUID2: () => rG, ZodCUID: () => nG, ZodCIDRv6: () => X3, ZodCIDRv4: () => $3, ZodBoolean: () => q9, ZodBigIntFormat: () => z32, ZodBigInt: () => D9, ZodBase64URL: () => Y3, ZodBase64: () => J3, ZodArray: () => MV, ZodAny: () => DV, TimePrecision: () => O7, NEVER: () => $Y, $output: () => N7, $input: () => V7, $brand: () => XY });
17869
18156
  f0 = {};
17870
18157
  z1(f0, { time: () => TG, duration: () => yG, datetime: () => _G, date: () => xG, ZodISOTime: () => i7, ZodISODuration: () => d7, ZodISODateTime: () => c7, ZodISODate: () => p7 });
17871
18158
  c7 = q("ZodISODateTime", ($, X) => {
@@ -17994,7 +18281,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
17994
18281
  let J = $._zod.bag;
17995
18282
  $.minValue = J.minimum ?? null, $.maxValue = J.maximum ?? null, $.format = J.format ?? null;
17996
18283
  });
17997
- z3 = q("ZodBigIntFormat", ($, X) => {
18284
+ z32 = q("ZodBigIntFormat", ($, X) => {
17998
18285
  yY.init($, X), D9.init($, X);
17999
18286
  });
18000
18287
  OV = q("ZodSymbol", ($, X) => {