@emeryld/rrroutes-contract 2.7.0 → 2.7.1

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.cjs CHANGED
@@ -1,7 +1,9 @@
1
1
  "use strict";
2
+ var __create = Object.create;
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
5
7
  var __hasOwnProp = Object.prototype.hasOwnProperty;
6
8
  var __export = (target, all) => {
7
9
  for (var name in all)
@@ -15,6 +17,14 @@ var __copyProps = (to, from, except, desc) => {
15
17
  }
16
18
  return to;
17
19
  };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
18
28
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
29
 
20
30
  // src/index.ts
@@ -22,19 +32,33 @@ var index_exports = {};
22
32
  __export(index_exports, {
23
33
  buildCacheKey: () => buildCacheKey,
24
34
  buildLowProfileLeaf: () => buildLowProfileLeaf,
35
+ clearSchemaIntrospectionHandlers: () => clearSchemaIntrospectionHandlers,
25
36
  collectNestedFieldSuggestions: () => collectNestedFieldSuggestions,
26
37
  compilePath: () => compilePath,
38
+ createSchemaIntrospector: () => createSchemaIntrospector,
27
39
  defineSocketEvents: () => defineSocketEvents,
40
+ exportFinalizedLeaves: () => exportFinalizedLeaves,
28
41
  finalize: () => finalize,
42
+ flattenLeafSchemas: () => flattenLeafSchemas,
43
+ flattenSerializableSchema: () => flattenSerializableSchema,
29
44
  getZodShape: () => getZodShape,
45
+ introspectSchema: () => introspectSchema,
30
46
  keyOf: () => keyOf,
47
+ loadFinalizedLeavesInput: () => loadFinalizedLeavesInput,
31
48
  lowProfileParse: () => lowProfileParse,
32
49
  lowProfileSafeParse: () => lowProfileSafeParse,
33
50
  mergeArrays: () => mergeArrays,
34
51
  mergeSchemas: () => mergeSchemas,
52
+ parseFinalizedLeavesCliArgs: () => parseFinalizedLeavesCliArgs,
53
+ registerSchemaIntrospectionHandler: () => registerSchemaIntrospectionHandler,
35
54
  resource: () => resource,
36
55
  routeSchemaParse: () => routeSchemaParse,
37
- staticBase: () => staticBase
56
+ runExportFinalizedLeavesCli: () => runExportFinalizedLeavesCli,
57
+ serializableSchemaKinds: () => serializableSchemaKinds,
58
+ serializeLeafContract: () => serializeLeafContract,
59
+ serializeLeavesContract: () => serializeLeavesContract,
60
+ staticBase: () => staticBase,
61
+ writeFinalizedLeavesExport: () => writeFinalizedLeavesExport
38
62
  });
39
63
  module.exports = __toCommonJS(index_exports);
40
64
 
@@ -82,9 +106,9 @@ function collectNestedFieldSuggestions(shape, prefix = []) {
82
106
  }
83
107
  return suggestions;
84
108
  }
85
- function compilePath(path, params) {
86
- if (!params) return path;
87
- const withParams = path.replace(/:([A-Za-z0-9_]+)/g, (_, k) => {
109
+ function compilePath(path3, params) {
110
+ if (!params) return path3;
111
+ const withParams = path3.replace(/:([A-Za-z0-9_]+)/g, (_, k) => {
88
112
  const v = params[k];
89
113
  if (v === void 0 || v === null) throw new Error(`Missing param :${k}`);
90
114
  return String(v);
@@ -159,8 +183,8 @@ function buildLowProfileLeaf(leaf) {
159
183
  }
160
184
  };
161
185
  }
162
- var keyOf = (method, path, encodeSafe) => {
163
- const key = `${method.toUpperCase()} ${path}`;
186
+ var keyOf = (method, path3, encodeSafe) => {
187
+ const key = `${method.toUpperCase()} ${path3}`;
164
188
  return encodeSafe ? encodeURIComponent(key) : key;
165
189
  };
166
190
 
@@ -336,8 +360,8 @@ function joinPaths(parent, child) {
336
360
  if (!trimmedChild) return trimmedParent;
337
361
  return `${trimmedParent}/${trimmedChild}`;
338
362
  }
339
- function assertDynamicLayerUniqueness(path, dynamicLayerMap) {
340
- const segments = path.split("/").filter(Boolean);
363
+ function assertDynamicLayerUniqueness(path3, dynamicLayerMap) {
364
+ const segments = path3.split("/").filter(Boolean);
341
365
  if (segments.length === 0) return;
342
366
  for (let i = 0; i < segments.length; i++) {
343
367
  const segment = segments[i];
@@ -375,22 +399,494 @@ function finalize(leaves) {
375
399
  function defineSocketEvents(config, events) {
376
400
  return { config, events };
377
401
  }
402
+
403
+ // src/export/schemaIntrospection.ts
404
+ var z3 = __toESM(require("zod"), 1);
405
+ var serializableSchemaKinds = [
406
+ "object",
407
+ "string",
408
+ "number",
409
+ "boolean",
410
+ "bigint",
411
+ "date",
412
+ "array",
413
+ "enum",
414
+ "literal",
415
+ "union",
416
+ "record",
417
+ "tuple",
418
+ "unknown",
419
+ "any"
420
+ ];
421
+ var globalHandlers = {};
422
+ function registerSchemaIntrospectionHandler(kind, handler) {
423
+ globalHandlers[kind] = handler;
424
+ }
425
+ function clearSchemaIntrospectionHandlers() {
426
+ for (const key of Object.keys(globalHandlers)) {
427
+ delete globalHandlers[key];
428
+ }
429
+ }
430
+ function getDef(schema) {
431
+ if (!schema || typeof schema !== "object") return void 0;
432
+ const anySchema = schema;
433
+ return anySchema._zod?.def ?? anySchema._def;
434
+ }
435
+ function getDescription(schema) {
436
+ const anyZ = z3;
437
+ const registry = anyZ.globalRegistry?.get ? anyZ.globalRegistry.get(schema) : void 0;
438
+ if (registry && typeof registry.description === "string") {
439
+ return registry.description;
440
+ }
441
+ const def = getDef(schema);
442
+ if (def && typeof def.description === "string") {
443
+ return def.description;
444
+ }
445
+ return void 0;
446
+ }
447
+ function unwrap(schema) {
448
+ let current = schema;
449
+ let optional = false;
450
+ let nullable = false;
451
+ const ZodEffectsCtor = z3.ZodEffects;
452
+ while (true) {
453
+ if (ZodEffectsCtor && current instanceof ZodEffectsCtor) {
454
+ const def = getDef(current) || {};
455
+ const sourceType = typeof current.sourceType === "function" ? current.sourceType() : def.schema;
456
+ if (!sourceType) break;
457
+ current = sourceType;
458
+ continue;
459
+ }
460
+ if (current instanceof z3.ZodOptional) {
461
+ optional = true;
462
+ const def = getDef(current);
463
+ current = def && def.innerType || current;
464
+ continue;
465
+ }
466
+ if (current instanceof z3.ZodNullable) {
467
+ nullable = true;
468
+ const def = getDef(current);
469
+ current = def && def.innerType || current;
470
+ continue;
471
+ }
472
+ if (current instanceof z3.ZodDefault) {
473
+ const def = getDef(current);
474
+ current = def && def.innerType || current;
475
+ continue;
476
+ }
477
+ break;
478
+ }
479
+ return { base: current, optional, nullable };
480
+ }
481
+ function mergeProps(a, b) {
482
+ if (!a && !b) return void 0;
483
+ return { ...a ?? {}, ...b ?? {} };
484
+ }
485
+ function inferKind(schema) {
486
+ if (schema instanceof z3.ZodString) return "string";
487
+ if (schema instanceof z3.ZodNumber) return "number";
488
+ if (schema instanceof z3.ZodBoolean) return "boolean";
489
+ if (schema instanceof z3.ZodBigInt) return "bigint";
490
+ if (schema instanceof z3.ZodDate) return "date";
491
+ if (schema instanceof z3.ZodArray) return "array";
492
+ if (schema instanceof z3.ZodObject) return "object";
493
+ if (schema instanceof z3.ZodUnion) return "union";
494
+ if (schema instanceof z3.ZodLiteral) return "literal";
495
+ if (schema instanceof z3.ZodEnum) return "enum";
496
+ if (schema instanceof z3.ZodRecord) return "record";
497
+ if (schema instanceof z3.ZodTuple) return "tuple";
498
+ if (schema instanceof z3.ZodUnknown) return "unknown";
499
+ if (schema instanceof z3.ZodAny) return "any";
500
+ return "unknown";
501
+ }
502
+ var defaultHandlers = {
503
+ intersection({ base, def, node }, ctx) {
504
+ const left = def?.left;
505
+ const right = def?.right;
506
+ const leftNode = left ? ctx.introspect(left) : void 0;
507
+ const rightNode = right ? ctx.introspect(right) : void 0;
508
+ const leftIsObj = leftNode?.kind === "object" && !!leftNode.properties;
509
+ const rightIsObj = rightNode?.kind === "object" && !!rightNode.properties;
510
+ if (leftIsObj && rightIsObj) {
511
+ node.kind = "object";
512
+ node.description = node.description ?? leftNode.description ?? rightNode.description;
513
+ node.properties = mergeProps(leftNode.properties, rightNode.properties);
514
+ return node;
515
+ }
516
+ if (leftNode && rightNode) {
517
+ node.properties = {
518
+ left: leftNode,
519
+ right: rightNode
520
+ };
521
+ }
522
+ return node;
523
+ },
524
+ object({ base, def, node }, ctx) {
525
+ const rawShape = base.shape ?? (def && typeof def.shape === "function" ? def.shape() : def?.shape);
526
+ const shape = typeof rawShape === "function" ? rawShape() : rawShape ?? {};
527
+ const props = {};
528
+ for (const key of Object.keys(shape)) {
529
+ const child = shape[key];
530
+ const childNode = ctx.introspect(child);
531
+ if (childNode) props[key] = childNode;
532
+ }
533
+ node.properties = props;
534
+ return node;
535
+ },
536
+ array({ def, node }, ctx) {
537
+ const inner = def && def.element || def && def.type || void 0;
538
+ if (inner) {
539
+ node.element = ctx.introspect(inner);
540
+ }
541
+ return node;
542
+ },
543
+ union({ def, node }, ctx) {
544
+ const options = def && def.options || [];
545
+ node.union = options.map((opt) => ctx.introspect(opt)).filter(Boolean);
546
+ return node;
547
+ },
548
+ literal({ def, node }) {
549
+ if (def) {
550
+ if (Array.isArray(def.values)) {
551
+ node.literal = def.values.length === 1 ? def.values[0] : def.values.slice();
552
+ } else {
553
+ node.literal = def.value;
554
+ }
555
+ }
556
+ return node;
557
+ },
558
+ enum({ def, node }) {
559
+ if (def) {
560
+ if (Array.isArray(def.values)) {
561
+ node.enumValues = def.values.slice();
562
+ } else if (def.entries && typeof def.entries === "object") {
563
+ node.enumValues = Object.values(def.entries).map((v) => String(v));
564
+ }
565
+ }
566
+ return node;
567
+ }
568
+ };
569
+ function createSchemaIntrospector(options = {}) {
570
+ const handlers = {
571
+ ...defaultHandlers,
572
+ ...globalHandlers,
573
+ ...options.handlers ?? {}
574
+ };
575
+ const introspect = (schema) => {
576
+ if (!schema) return void 0;
577
+ const unwrapped = unwrap(schema);
578
+ const base = unwrapped.base;
579
+ const def = getDef(base);
580
+ const kind = base instanceof z3.ZodIntersection ? "intersection" : inferKind(base);
581
+ const node = {
582
+ kind: kind === "intersection" ? "unknown" : kind,
583
+ optional: unwrapped.optional || void 0,
584
+ nullable: unwrapped.nullable || void 0,
585
+ description: getDescription(base)
586
+ };
587
+ const handler = handlers[kind];
588
+ if (!handler) return node;
589
+ return handler(
590
+ {
591
+ schema,
592
+ base,
593
+ def,
594
+ kind,
595
+ optional: unwrapped.optional,
596
+ nullable: unwrapped.nullable,
597
+ node
598
+ },
599
+ {
600
+ zod: z3,
601
+ introspect,
602
+ getDef,
603
+ unwrap,
604
+ getDescription
605
+ }
606
+ );
607
+ };
608
+ return introspect;
609
+ }
610
+ function introspectSchema(schema, options = {}) {
611
+ const introspect = createSchemaIntrospector(options);
612
+ return introspect(schema);
613
+ }
614
+
615
+ // src/export/serializeLeafContract.ts
616
+ function serializeContractSchema(schema, options) {
617
+ return schema ? introspectSchema(routeSchemaParse(schema), options) : void 0;
618
+ }
619
+ function serializeBodyFiles(cfg) {
620
+ if (!Array.isArray(cfg.bodyFiles) || cfg.bodyFiles.length === 0) {
621
+ return void 0;
622
+ }
623
+ return cfg.bodyFiles.map(({ name, maxCount }) => ({ name, maxCount }));
624
+ }
625
+ function serializeLeafContract(leaf, options = {}) {
626
+ const cfg = leaf.cfg;
627
+ return {
628
+ key: `${leaf.method.toUpperCase()} ${leaf.path}`,
629
+ method: leaf.method,
630
+ path: leaf.path,
631
+ cfg: {
632
+ description: cfg.description,
633
+ summary: cfg.summary,
634
+ docsGroup: cfg.docsGroup,
635
+ tags: Array.isArray(cfg.tags) ? cfg.tags.slice() : void 0,
636
+ deprecated: cfg.deprecated,
637
+ stability: cfg.stability,
638
+ docsHidden: cfg.docsHidden,
639
+ docsMeta: cfg.docsMeta,
640
+ feed: cfg.feed,
641
+ bodyFiles: serializeBodyFiles(cfg),
642
+ schemas: {
643
+ body: serializeContractSchema(cfg.bodySchema, options),
644
+ query: serializeContractSchema(cfg.querySchema, options),
645
+ params: serializeContractSchema(cfg.paramsSchema, options),
646
+ output: serializeContractSchema(cfg.outputSchema, options),
647
+ outputMeta: serializeContractSchema(cfg.outputMetaSchema, options),
648
+ queryExtension: serializeContractSchema(cfg.queryExtensionSchema, options)
649
+ }
650
+ }
651
+ };
652
+ }
653
+ function serializeLeavesContract(leaves, options = {}) {
654
+ return leaves.map((leaf) => serializeLeafContract(leaf, options));
655
+ }
656
+
657
+ // src/export/flattenSchema.ts
658
+ function normalizeType(schema) {
659
+ switch (schema.kind) {
660
+ case "string":
661
+ case "number":
662
+ case "date":
663
+ case "boolean":
664
+ case "object":
665
+ case "array":
666
+ return schema.kind;
667
+ case "enum": {
668
+ if (Array.isArray(schema.enumValues) && schema.enumValues.length > 0) {
669
+ return schema.enumValues.join("|");
670
+ }
671
+ return "unknown";
672
+ }
673
+ case "literal": {
674
+ const lit = schema.literal;
675
+ if (typeof lit === "string") return "string";
676
+ if (typeof lit === "number") return "number";
677
+ if (typeof lit === "boolean") return "boolean";
678
+ return "unknown";
679
+ }
680
+ default:
681
+ return "unknown";
682
+ }
683
+ }
684
+ function isNonEmptyPath(path3) {
685
+ return typeof path3 === "string" && path3.length > 0;
686
+ }
687
+ function setNode(out, path3, schema, inherited) {
688
+ if (!isNonEmptyPath(path3)) return;
689
+ out[path3] = {
690
+ type: normalizeType(schema),
691
+ nullable: inherited.nullable || Boolean(schema.nullable),
692
+ optional: inherited.optional || Boolean(schema.optional)
693
+ };
694
+ }
695
+ function flattenInto(out, schema, path3, inherited) {
696
+ if (!schema || !isNonEmptyPath(path3)) return;
697
+ const nextInherited = {
698
+ optional: inherited.optional || Boolean(schema.optional),
699
+ nullable: inherited.nullable || Boolean(schema.nullable)
700
+ };
701
+ if (schema.kind === "union" && Array.isArray(schema.union) && schema.union.length > 0) {
702
+ schema.union.forEach((option, index) => {
703
+ const optionPath = `${path3}-${index + 1}`;
704
+ flattenInto(out, option, optionPath, inherited);
705
+ });
706
+ return;
707
+ }
708
+ setNode(out, path3, schema, inherited);
709
+ if (schema.kind === "object" && schema.properties) {
710
+ for (const [key, child] of Object.entries(schema.properties)) {
711
+ const childPath = `${path3}.${key}`;
712
+ flattenInto(out, child, childPath, nextInherited);
713
+ }
714
+ return;
715
+ }
716
+ if (schema.kind === "array" && schema.element) {
717
+ flattenInto(out, schema.element, `${path3}[]`, nextInherited);
718
+ }
719
+ }
720
+ function flattenSerializableSchema(schema, path3) {
721
+ const out = {};
722
+ flattenInto(out, schema, path3, { optional: false, nullable: false });
723
+ return out;
724
+ }
725
+ function isSerializedLeaf(value) {
726
+ if (!value || typeof value !== "object") return false;
727
+ const item = value;
728
+ return typeof item.key === "string" && !!item.cfg && typeof item.cfg === "object";
729
+ }
730
+ function flattenLeafSchemas(leaf) {
731
+ const serialized = isSerializedLeaf(leaf) ? leaf : serializeLeafContract(leaf);
732
+ const out = {};
733
+ const sections = serialized.cfg.schemas;
734
+ Object.assign(out, flattenSerializableSchema(sections.params, "params"));
735
+ Object.assign(out, flattenSerializableSchema(sections.query, "query"));
736
+ Object.assign(out, flattenSerializableSchema(sections.body, "body"));
737
+ Object.assign(out, flattenSerializableSchema(sections.output, "output"));
738
+ return out;
739
+ }
740
+
741
+ // src/export/exportFinalizedLeaves.ts
742
+ var import_promises = __toESM(require("fs/promises"), 1);
743
+ var import_node_path = __toESM(require("path"), 1);
744
+ function isRegistry(value) {
745
+ return typeof value === "object" && value !== null && "all" in value && "byKey" in value;
746
+ }
747
+ function getLeaves(input) {
748
+ return isRegistry(input) ? input.all : input;
749
+ }
750
+ function buildMeta() {
751
+ return {
752
+ generatedAt: (/* @__PURE__ */ new Date()).toISOString(),
753
+ description: "Finalized RRRoutes leaves export with serialized schemas and flattened schema paths for downstream processing.",
754
+ fieldCatalog: {
755
+ leaf: ["key", "method", "path", "cfg"],
756
+ cfg: [
757
+ "description?",
758
+ "summary?",
759
+ "docsGroup?",
760
+ "tags?",
761
+ "deprecated?",
762
+ "stability?",
763
+ "docsHidden?",
764
+ "docsMeta?",
765
+ "feed?",
766
+ "bodyFiles?",
767
+ "schemas"
768
+ ],
769
+ schemaNode: [
770
+ "kind",
771
+ "optional?",
772
+ "nullable?",
773
+ "description?",
774
+ "properties?",
775
+ "element?",
776
+ "union?",
777
+ "literal?",
778
+ "enumValues?"
779
+ ],
780
+ flatSchemaEntry: ["type", "nullable", "optional"]
781
+ },
782
+ flattening: {
783
+ notation: "dot+[]",
784
+ unionBranchSuffix: "-N",
785
+ sections: ["params", "query", "body", "output"]
786
+ }
787
+ };
788
+ }
789
+ async function writeFinalizedLeavesExport(payload, outFile) {
790
+ const resolved = import_node_path.default.resolve(outFile);
791
+ await import_promises.default.mkdir(import_node_path.default.dirname(resolved), { recursive: true });
792
+ await import_promises.default.writeFile(resolved, `${JSON.stringify(payload, null, 2)}
793
+ `, "utf8");
794
+ return resolved;
795
+ }
796
+ async function exportFinalizedLeaves(input, options = {}) {
797
+ const leaves = getLeaves(input);
798
+ const serializedLeaves = serializeLeavesContract(leaves, options);
799
+ const schemaFlatByLeaf = Object.fromEntries(
800
+ serializedLeaves.map((leaf) => [leaf.key, flattenLeafSchemas(leaf)])
801
+ );
802
+ const payload = {
803
+ _meta: buildMeta(),
804
+ leaves: serializedLeaves,
805
+ schemaFlatByLeaf
806
+ };
807
+ if (options.outFile) {
808
+ await writeFinalizedLeavesExport(payload, options.outFile);
809
+ }
810
+ return payload;
811
+ }
812
+
813
+ // src/export/exportFinalizedLeaves.cli.ts
814
+ var import_node_path2 = __toESM(require("path"), 1);
815
+ var import_node_url = require("url");
816
+ function parseFinalizedLeavesCliArgs(argv) {
817
+ const args = /* @__PURE__ */ new Map();
818
+ for (let i = 0; i < argv.length; i += 1) {
819
+ const key = argv[i];
820
+ if (key === "--") continue;
821
+ if (!key.startsWith("--")) continue;
822
+ const value = argv[i + 1];
823
+ if (!value || value.startsWith("--")) {
824
+ throw new Error(`Missing value for ${key}`);
825
+ }
826
+ args.set(key, value);
827
+ i += 1;
828
+ }
829
+ const modulePath = args.get("--module");
830
+ if (!modulePath) {
831
+ throw new Error("Missing required --module argument");
832
+ }
833
+ return {
834
+ modulePath,
835
+ exportName: args.get("--export") ?? "leaves",
836
+ outFile: args.get("--out") ?? "finalized-leaves.export.json"
837
+ };
838
+ }
839
+ async function loadFinalizedLeavesInput({
840
+ modulePath,
841
+ exportName
842
+ }) {
843
+ const resolvedModule = import_node_path2.default.resolve(process.cwd(), modulePath);
844
+ const mod = await import((0, import_node_url.pathToFileURL)(resolvedModule).href);
845
+ const value = mod[exportName] ?? (mod.default && mod.default[exportName]);
846
+ if (!value) {
847
+ throw new Error(`Export "${exportName}" not found in module: ${resolvedModule}`);
848
+ }
849
+ return value;
850
+ }
851
+ async function runExportFinalizedLeavesCli(argv) {
852
+ const args = parseFinalizedLeavesCliArgs(argv);
853
+ const input = await loadFinalizedLeavesInput(args);
854
+ const payload = await exportFinalizedLeaves(input, { outFile: args.outFile });
855
+ return {
856
+ payload,
857
+ outFile: import_node_path2.default.resolve(args.outFile)
858
+ };
859
+ }
378
860
  // Annotate the CommonJS export names for ESM import in node:
379
861
  0 && (module.exports = {
380
862
  buildCacheKey,
381
863
  buildLowProfileLeaf,
864
+ clearSchemaIntrospectionHandlers,
382
865
  collectNestedFieldSuggestions,
383
866
  compilePath,
867
+ createSchemaIntrospector,
384
868
  defineSocketEvents,
869
+ exportFinalizedLeaves,
385
870
  finalize,
871
+ flattenLeafSchemas,
872
+ flattenSerializableSchema,
386
873
  getZodShape,
874
+ introspectSchema,
387
875
  keyOf,
876
+ loadFinalizedLeavesInput,
388
877
  lowProfileParse,
389
878
  lowProfileSafeParse,
390
879
  mergeArrays,
391
880
  mergeSchemas,
881
+ parseFinalizedLeavesCliArgs,
882
+ registerSchemaIntrospectionHandler,
392
883
  resource,
393
884
  routeSchemaParse,
394
- staticBase
885
+ runExportFinalizedLeavesCli,
886
+ serializableSchemaKinds,
887
+ serializeLeafContract,
888
+ serializeLeavesContract,
889
+ staticBase,
890
+ writeFinalizedLeavesExport
395
891
  });
396
892
  //# sourceMappingURL=index.cjs.map