switchboard-cli 0.1.0-alpha.2 → 0.1.0-alpha.3
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/calibration/ledger/baselines/baseline-2026-04-09.yaml +1 -1
- package/calibration/ledger/history.yaml +0 -18
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/LICENSE +21 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/README.md +208 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/index.cjs +33 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/index.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/index.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/index.js +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/package.json +118 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/index.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/ZodError.ts +330 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/errors.ts +13 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/external.ts +6 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/helpers/util.ts +224 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/index.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/locales/en.ts +124 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/standard-schema.ts +113 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/array.test.ts +71 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/base.test.ts +29 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/date.test.ts +32 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/default.test.ts +112 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/description.test.ts +33 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/error.test.ts +551 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/function.test.ts +257 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/map.test.ts +110 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/number.test.ts +176 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/object.test.ts +434 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/record.test.ts +171 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/set.test.ts +142 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/string.test.ts +916 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/tests/void.test.ts +15 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v3/types.ts +5136 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/checks.ts +30 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/compat.ts +66 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/errors.ts +75 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/external.ts +50 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/index.ts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/iso.ts +90 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/parse.ts +33 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/api.ts +1594 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/checks.ts +1283 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/config.ts +15 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/core.ts +134 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/errors.ts +424 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/function.ts +176 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/index.ts +15 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/json-schema.ts +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/parse.ts +94 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/regexes.ts +135 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/registries.ts +96 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/schemas.ts +3842 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/util.ts +775 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/core/zsf.ts +323 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/index.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/ar.ts +125 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/az.ts +121 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/be.ts +184 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/ca.ts +127 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/cs.ts +142 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/de.ts +124 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/en.ts +127 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/eo.ts +125 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/es.ts +125 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/fa.ts +134 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/fi.ts +131 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/fr.ts +124 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/he.ts +125 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/hu.ts +126 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/id.ts +125 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/index.ts +39 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/it.ts +125 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/ja.ts +122 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/kh.ts +126 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/ko.ts +131 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/mk.ts +127 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/ms.ts +124 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/nl.ts +126 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/no.ts +124 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/ota.ts +125 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/pl.ts +126 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/ps.ts +133 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/pt.ts +123 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/ru.ts +184 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/sl.ts +126 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/sv.ts +127 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/ta.ts +125 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/th.ts +126 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/tr.ts +121 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/ua.ts +126 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/ur.ts +126 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/vi.ts +125 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/coerce.ts +22 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/external.ts +40 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/iso.ts +62 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/parse.ts +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/src/v4-mini/index.ts +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/ZodError.cjs +138 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/ZodError.js +133 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/errors.cjs +17 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/errors.d.cts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/errors.d.ts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/errors.js +9 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/external.cjs +22 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/external.d.cts +6 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/external.d.ts +6 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/external.js +6 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/helpers/util.js +133 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/index.cjs +33 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/index.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/index.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/index.js +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/locales/en.cjs +111 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/locales/en.js +109 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/standard-schema.js +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/types.cjs +3775 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/types.d.cts +1031 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/types.d.ts +1031 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v3/types.js +3693 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/checks.cjs +32 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/checks.js +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/coerce.js +17 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/compat.cjs +57 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/compat.d.cts +46 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/compat.d.ts +46 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/compat.js +27 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/errors.cjs +67 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/errors.js +41 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/external.cjs +70 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/external.d.cts +13 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/external.d.ts +13 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/external.js +18 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/index.cjs +33 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/index.js +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/iso.js +30 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/parse.cjs +32 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/parse.d.cts +23 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/parse.d.ts +23 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/parse.js +6 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/schemas.cjs +1109 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/schemas.d.cts +630 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/schemas.d.ts +630 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/classic/schemas.js +1006 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/api.cjs +1039 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/api.d.cts +284 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/api.d.ts +284 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/api.js +906 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/checks.cjs +591 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/checks.js +565 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/core.cjs +67 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/core.d.cts +49 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/core.d.ts +49 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/core.js +61 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/doc.cjs +39 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/doc.js +35 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/errors.cjs +226 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/errors.d.cts +208 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/errors.d.ts +208 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/errors.js +195 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/function.cjs +102 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/function.d.cts +52 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/function.d.ts +52 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/function.js +75 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/index.cjs +44 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/index.d.cts +15 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/index.d.ts +15 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/index.js +15 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/json-schema.d.cts +87 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/json-schema.d.ts +87 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/json-schema.js +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/parse.cjs +87 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/parse.d.cts +25 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/parse.d.ts +25 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/parse.js +57 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/regexes.cjs +103 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/regexes.d.cts +62 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/regexes.d.ts +62 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/regexes.js +95 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/registries.cjs +56 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/registries.js +51 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/schemas.cjs +1748 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/schemas.d.cts +1041 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/schemas.d.ts +1041 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/schemas.js +1717 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/to-json-schema.js +849 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/util.cjs +539 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/util.d.cts +183 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/util.d.ts +183 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/util.js +493 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/versions.cjs +8 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/core/versions.js +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/index.cjs +22 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/index.d.cts +3 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/index.d.ts +3 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/index.js +3 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ar.cjs +142 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ar.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ar.js +116 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/az.cjs +141 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/az.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/az.js +115 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/be.cjs +190 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/be.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/be.js +164 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ca.cjs +144 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ca.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ca.js +118 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/cs.cjs +161 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/cs.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/cs.js +135 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/de.cjs +142 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/de.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/de.js +116 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/en.cjs +145 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/en.d.ts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/en.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/eo.cjs +144 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/eo.d.ts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/eo.js +116 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/es.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/es.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/es.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fa.cjs +148 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fa.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fa.js +122 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fi.cjs +148 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fi.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fi.js +122 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fr-CA.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fr.cjs +142 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fr.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/fr.js +116 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/he.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/he.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/he.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/hu.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/hu.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/hu.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/id.cjs +142 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/id.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/id.js +116 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/index.cjs +84 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/index.d.cts +39 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/index.d.ts +39 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/index.js +39 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/it.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/it.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/it.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ja.cjs +141 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ja.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ja.js +115 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/kh.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/kh.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/kh.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/kh.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ko.cjs +147 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ko.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ko.js +121 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/mk.cjs +144 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/mk.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/mk.js +118 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ms.cjs +142 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ms.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ms.js +116 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/nl.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/nl.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/nl.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/no.cjs +142 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/no.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/no.js +116 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ota.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ota.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ota.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/pl.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/pl.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/pl.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ps.cjs +148 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ps.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ps.js +122 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/pt.cjs +142 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/pt.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/pt.js +116 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ru.cjs +190 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ru.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ru.js +164 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/sl.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/sl.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/sl.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/sv.cjs +144 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/sv.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/sv.js +118 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ta.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ta.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ta.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/th.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/th.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/th.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/tr.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/tr.d.ts +5 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/tr.js +115 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ua.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ua.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ua.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ua.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ur.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ur.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/ur.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/vi.cjs +142 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/vi.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/vi.js +116 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/zh-CN.js +116 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/locales/zh-TW.js +117 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/checks.js +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/coerce.cjs +47 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/coerce.js +17 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/external.cjs +62 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/external.d.cts +11 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/external.d.ts +11 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/external.js +13 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/index.cjs +32 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/index.js +3 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/iso.cjs +60 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/iso.js +30 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/parse.cjs +8 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/parse.js +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/schemas.cjs +839 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/schemas.d.cts +356 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/schemas.d.ts +356 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4/mini/schemas.js +732 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4-mini/index.cjs +17 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4-mini/index.d.cts +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4-mini/index.d.ts +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/node_modules/zod/v4-mini/index.js +1 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/package.json +20 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/activation.ts +285 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/audited-receipt.ts +403 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/budget-ledger.ts +223 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/build-map.ts +327 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/canonical-delta.ts +754 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/canonical-pack.ts +400 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/canonical.ts +248 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/claim-spread.ts +219 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/classifier.ts +207 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/claude-executor.ts +37 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/codex-audit.ts +301 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/codex-executor.ts +22 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/compiler-adapter.ts +284 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/compiler.ts +183 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/dispatch-formatter.ts +348 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/dispatch-receipt.ts +135 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/dossier.ts +229 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/eval-scope.ts +208 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/evaluation-lane.ts +584 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/execution-trace.ts +455 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/gate-state.ts +296 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/gates.ts +198 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/governance-envelope.ts +317 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/handoff-v2.ts +221 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/handoff-visibility.ts +204 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/handoff.ts +87 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/harness-compiler.ts +246 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/index.ts +57 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/ingest.ts +128 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/launch-block-payload.ts +51 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/ledger.ts +313 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/live-event-bus.ts +37 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/live-event.ts +238 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/lock-readiness.ts +242 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/loop-compiler.ts +152 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/loop-validator.ts +55 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/meta-harness.ts +411 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/overflow-manifest.ts +220 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/packet-integrity.ts +302 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/parallel-conflict.ts +268 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/preflight.ts +181 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/pressure-assessment.ts +265 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/product-objects.ts +99 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/project-charter.ts +193 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/proof-capture.ts +319 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/provider-registry.ts +163 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/receipt-v2.ts +904 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/reconcile-matrix.ts +154 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/reconcile-v2.ts +272 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/reconcile.ts +450 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/return-normalizer.ts +226 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/router.ts +207 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/routing-v2.ts +214 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/run-snapshot.ts +405 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/surface-playbooks.ts +36 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/surface-profiles.ts +166 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/synthesis-provider.ts +1114 -0
- package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/types.ts +3054 -0
- package/package.json +5 -23
- package/src/commands/receipt.ts +33 -2
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/diffs/adv-a0c9e2bfb0d6.yaml +0 -9
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/diffs/blind-3e892f3a89ee.yaml +0 -9
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/diffs/blind-958b2f9e6816.yaml +0 -9
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/manifest.yaml +0 -8
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/seeds/adv-a0c9e2bfb0d6.yaml +0 -7
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/seeds/blind-3e892f3a89ee.yaml +0 -8
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/seeds/blind-958b2f9e6816.yaml +0 -8
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/summary.yaml +0 -10
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/traces/adv-a0c9e2bfb0d6.yaml +0 -141
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/traces/blind-3e892f3a89ee.yaml +0 -147
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/traces/blind-958b2f9e6816.yaml +0 -147
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/verdicts-a/adv-a0c9e2bfb0d6.yaml +0 -24
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/verdicts-a/blind-3e892f3a89ee.yaml +0 -23
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/verdicts-a/blind-958b2f9e6816.yaml +0 -25
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/verdicts-b/adv-a0c9e2bfb0d6.yaml +0 -31
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/verdicts-b/blind-3e892f3a89ee.yaml +0 -32
- package/calibration/ledger/runs/2026-04-09T10-02-57-143Z/verdicts-b/blind-958b2f9e6816.yaml +0 -32
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/diffs/adv-056e52eb6d09.yaml +0 -9
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/diffs/blind-aa04e10023e9.yaml +0 -9
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/escalations/esc-2bd30ef5717a30b3.yaml +0 -15
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/manifest.yaml +0 -8
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/seeds/adv-056e52eb6d09.yaml +0 -7
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/seeds/blind-aa04e10023e9.yaml +0 -8
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/summary.yaml +0 -10
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/traces/adv-056e52eb6d09.yaml +0 -141
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/traces/blind-aa04e10023e9.yaml +0 -146
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/verdicts-a/adv-056e52eb6d09.yaml +0 -24
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/verdicts-a/blind-aa04e10023e9.yaml +0 -24
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/verdicts-b/adv-056e52eb6d09.yaml +0 -31
- package/calibration/ledger/runs/2026-04-09T10-11-28-692Z/verdicts-b/blind-aa04e10023e9.yaml +0 -32
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/LICENSE +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/README.md +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/index.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/index.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/index.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/index.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/package.json +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/index.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/ZodError.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/benchmarks/datetime.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/benchmarks/discriminatedUnion.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/benchmarks/index.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/benchmarks/ipv4.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/benchmarks/object.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/benchmarks/primitives.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/benchmarks/realworld.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/benchmarks/string.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/benchmarks/union.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/errors.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/external.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/helpers/enumUtil.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/helpers/errorUtil.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/helpers/parseUtil.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/helpers/partialUtil.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/helpers/typeAliases.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/helpers/util.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/index.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/locales/en.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/standard-schema.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/Mocker.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/all-errors.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/anyunknown.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/array.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/async-parsing.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/async-refinements.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/base.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/bigint.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/branded.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/catch.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/coerce.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/complex.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/custom.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/date.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/deepmasking.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/default.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/description.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/discriminated-unions.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/enum.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/error.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/firstparty.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/firstpartyschematypes.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/function.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/generics.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/instanceof.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/intersection.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/language-server.source.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/language-server.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/literal.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/map.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/masking.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/mocker.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/nan.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/nativeEnum.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/nullable.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/number.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/object-augmentation.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/object-in-es5-env.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/object.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/optional.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/parseUtil.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/parser.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/partials.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/pickomit.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/pipeline.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/preprocess.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/primitive.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/promise.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/readonly.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/record.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/recursive.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/refine.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/safeparse.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/set.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/standard-schema.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/string.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/transformer.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/tuple.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/unions.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/validations.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/tests/void.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v3/types.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/checks.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/coerce.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/compat.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/errors.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/external.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/index.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/iso.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/parse.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/schemas.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/anyunknown.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/array.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/assignability.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/async-parsing.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/async-refinements.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/base.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/bigint.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/brand.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/catch.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/coalesce.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/coerce.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/continuability.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/custom.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/date.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/datetime.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/default.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/description.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/discriminated-unions.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/enum.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/error-utils.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/error.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/file.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/firstparty.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/function.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/generics.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/index.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/instanceof.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/intersection.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/json.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/lazy.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/literal.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/map.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/nan.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/nested-refine.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/nonoptional.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/nullable.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/number.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/object.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/optional.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/partial.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/pickomit.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/pipe.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/prefault.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/preprocess.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/primitive.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/promise.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/prototypes.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/readonly.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/record.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/recursive-types.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/refine.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/registries.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/set.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/standard-schema.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/string-formats.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/string.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/stringbool.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/template-literal.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/to-json-schema.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/transform.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/tuple.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/union.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/validations.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/classic/tests/void.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/api.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/checks.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/config.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/core.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/doc.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/errors.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/function.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/index.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/json-schema.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/parse.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/regexes.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/registries.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/schemas.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/standard-schema.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/tests/index.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/tests/locales/be.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/tests/locales/en.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/tests/locales/ru.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/tests/locales/tr.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/to-json-schema.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/util.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/versions.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/core/zsf.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/index.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/ar.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/az.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/be.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/ca.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/cs.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/de.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/en.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/eo.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/es.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/fa.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/fi.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/fr-CA.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/fr.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/he.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/hu.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/id.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/index.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/it.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/ja.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/kh.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/ko.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/mk.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/ms.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/nl.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/no.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/ota.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/pl.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/ps.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/pt.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/ru.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/sl.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/sv.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/ta.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/th.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/tr.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/ua.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/ur.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/vi.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/zh-CN.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/locales/zh-TW.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/checks.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/coerce.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/external.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/index.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/iso.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/parse.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/schemas.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/assignability.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/brand.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/checks.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/computed.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/error.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/functions.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/index.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/number.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/object.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/prototypes.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/recursive-types.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4/mini/tests/string.test.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/src/v4-mini/index.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/ZodError.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/ZodError.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/ZodError.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/ZodError.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/errors.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/errors.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/errors.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/errors.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/external.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/external.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/external.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/external.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/enumUtil.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/enumUtil.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/enumUtil.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/enumUtil.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/errorUtil.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/errorUtil.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/errorUtil.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/errorUtil.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/parseUtil.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/parseUtil.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/parseUtil.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/parseUtil.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/partialUtil.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/partialUtil.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/partialUtil.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/partialUtil.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/typeAliases.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/typeAliases.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/typeAliases.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/typeAliases.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/util.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/util.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/util.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/helpers/util.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/index.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/index.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/index.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/index.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/locales/en.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/locales/en.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/locales/en.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/locales/en.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/standard-schema.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/standard-schema.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/standard-schema.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/standard-schema.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/types.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/types.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/types.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v3/types.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/checks.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/checks.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/checks.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/checks.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/coerce.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/coerce.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/coerce.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/coerce.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/compat.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/compat.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/compat.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/compat.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/errors.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/errors.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/errors.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/errors.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/external.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/external.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/external.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/external.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/index.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/index.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/index.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/index.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/iso.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/iso.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/iso.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/iso.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/parse.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/parse.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/parse.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/parse.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/schemas.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/schemas.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/schemas.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/classic/schemas.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/api.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/api.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/api.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/api.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/checks.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/checks.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/checks.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/checks.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/core.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/core.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/core.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/core.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/doc.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/doc.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/doc.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/doc.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/errors.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/errors.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/errors.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/errors.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/function.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/function.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/function.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/function.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/index.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/index.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/index.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/index.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/json-schema.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/json-schema.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/json-schema.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/json-schema.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/parse.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/parse.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/parse.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/parse.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/regexes.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/regexes.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/regexes.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/regexes.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/registries.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/registries.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/registries.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/registries.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/schemas.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/schemas.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/schemas.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/schemas.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/standard-schema.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/standard-schema.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/standard-schema.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/standard-schema.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/to-json-schema.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/to-json-schema.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/to-json-schema.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/to-json-schema.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/util.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/util.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/util.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/util.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/versions.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/versions.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/versions.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/core/versions.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/index.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/index.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/index.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/index.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ar.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ar.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ar.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ar.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/az.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/az.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/az.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/az.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/be.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/be.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/be.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/be.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ca.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ca.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ca.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ca.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/cs.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/cs.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/cs.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/cs.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/de.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/de.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/de.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/de.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/en.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/en.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/en.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/en.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/eo.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/eo.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/eo.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/eo.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/es.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/es.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/es.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/es.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fa.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fa.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fa.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fa.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fi.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fi.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fi.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fi.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fr-CA.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fr-CA.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fr-CA.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fr-CA.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fr.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fr.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fr.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/fr.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/he.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/he.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/he.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/he.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/hu.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/hu.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/hu.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/hu.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/id.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/id.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/id.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/id.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/index.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/index.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/index.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/index.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/it.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/it.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/it.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/it.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ja.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ja.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ja.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ja.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/kh.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/kh.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/kh.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/kh.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ko.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ko.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ko.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ko.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/mk.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/mk.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/mk.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/mk.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ms.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ms.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ms.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ms.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/nl.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/nl.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/nl.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/nl.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/no.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/no.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/no.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/no.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ota.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ota.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ota.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ota.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/pl.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/pl.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/pl.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/pl.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ps.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ps.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ps.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ps.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/pt.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/pt.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/pt.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/pt.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ru.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ru.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ru.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ru.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/sl.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/sl.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/sl.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/sl.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/sv.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/sv.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/sv.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/sv.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ta.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ta.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ta.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ta.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/th.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/th.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/th.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/th.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/tr.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/tr.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/tr.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/tr.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ua.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ua.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ua.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ua.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ur.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ur.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ur.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/ur.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/vi.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/vi.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/vi.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/vi.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/zh-CN.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/zh-CN.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/zh-CN.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/zh-CN.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/zh-TW.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/zh-TW.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/zh-TW.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/locales/zh-TW.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/checks.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/checks.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/checks.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/checks.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/coerce.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/coerce.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/coerce.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/coerce.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/external.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/external.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/external.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/external.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/index.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/index.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/index.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/index.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/iso.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/iso.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/iso.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/iso.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/parse.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/parse.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/parse.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/parse.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/schemas.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/schemas.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/schemas.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4/mini/schemas.js +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4-mini/index.cjs +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4-mini/index.d.cts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4-mini/index.d.ts +0 -0
- /package/node_modules/{zod → @switchboard/core/node_modules/zod}/v4-mini/index.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/LICENSE +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/README.md +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/bin.mjs +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/compose-collection.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/compose-doc.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/compose-node.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/compose-scalar.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/composer.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/resolve-block-map.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/resolve-block-scalar.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/resolve-block-seq.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/resolve-end.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/resolve-flow-collection.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/resolve-flow-scalar.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/resolve-props.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/util-contains-newline.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/util-empty-scalar-position.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/util-flow-indent-check.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/compose/util-map-includes.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/doc/Document.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/doc/anchors.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/doc/applyReviver.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/doc/createNode.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/doc/directives.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/errors.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/index.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/log.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/nodes/Alias.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/nodes/Collection.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/nodes/Node.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/nodes/Pair.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/nodes/Scalar.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/nodes/YAMLMap.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/nodes/YAMLSeq.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/nodes/addPairToJSMap.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/nodes/identity.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/nodes/toJS.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/parse/cst-scalar.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/parse/cst-stringify.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/parse/cst-visit.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/parse/cst.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/parse/lexer.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/parse/line-counter.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/parse/parser.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/public-api.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/Schema.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/common/map.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/common/null.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/common/seq.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/common/string.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/core/bool.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/core/float.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/core/int.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/core/schema.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/json/schema.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/tags.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/yaml-1.1/binary.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/yaml-1.1/bool.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/yaml-1.1/float.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/yaml-1.1/int.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/yaml-1.1/merge.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/yaml-1.1/omap.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/yaml-1.1/pairs.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/yaml-1.1/schema.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/yaml-1.1/set.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/schema/yaml-1.1/timestamp.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/stringify/foldFlowLines.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/stringify/stringify.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/stringify/stringifyCollection.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/stringify/stringifyComment.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/stringify/stringifyDocument.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/stringify/stringifyNumber.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/stringify/stringifyPair.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/stringify/stringifyString.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/util.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/dist/visit.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/index.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/browser/package.json +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/cli.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/cli.mjs +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/compose-collection.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/compose-collection.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/compose-doc.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/compose-doc.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/compose-node.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/compose-node.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/compose-scalar.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/compose-scalar.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/composer.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/composer.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-block-map.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-block-map.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-block-scalar.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-block-scalar.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-block-seq.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-block-seq.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-end.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-end.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-flow-collection.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-flow-collection.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-flow-scalar.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-flow-scalar.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-props.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/resolve-props.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/util-contains-newline.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/util-contains-newline.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/util-empty-scalar-position.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/util-empty-scalar-position.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/util-flow-indent-check.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/util-flow-indent-check.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/util-map-includes.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/compose/util-map-includes.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/doc/Document.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/doc/Document.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/doc/anchors.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/doc/anchors.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/doc/applyReviver.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/doc/applyReviver.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/doc/createNode.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/doc/createNode.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/doc/directives.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/doc/directives.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/errors.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/errors.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/index.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/index.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/log.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/log.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/Alias.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/Alias.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/Collection.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/Collection.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/Node.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/Node.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/Pair.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/Pair.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/Scalar.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/Scalar.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/YAMLMap.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/YAMLMap.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/YAMLSeq.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/YAMLSeq.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/addPairToJSMap.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/addPairToJSMap.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/identity.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/identity.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/toJS.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/nodes/toJS.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/options.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/cst-scalar.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/cst-scalar.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/cst-stringify.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/cst-stringify.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/cst-visit.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/cst-visit.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/cst.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/cst.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/lexer.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/lexer.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/line-counter.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/line-counter.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/parser.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/parse/parser.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/public-api.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/public-api.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/Schema.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/Schema.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/common/map.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/common/map.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/common/null.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/common/null.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/common/seq.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/common/seq.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/common/string.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/common/string.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/core/bool.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/core/bool.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/core/float.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/core/float.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/core/int.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/core/int.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/core/schema.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/core/schema.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/json/schema.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/json/schema.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/json-schema.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/tags.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/tags.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/types.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/binary.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/binary.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/bool.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/bool.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/float.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/float.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/int.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/int.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/merge.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/merge.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/omap.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/omap.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/pairs.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/pairs.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/schema.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/schema.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/set.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/set.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/timestamp.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/schema/yaml-1.1/timestamp.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/foldFlowLines.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/foldFlowLines.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringify.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringify.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyCollection.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyCollection.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyComment.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyComment.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyDocument.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyDocument.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyNumber.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyNumber.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyPair.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyPair.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyString.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/stringify/stringifyString.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/test-events.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/test-events.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/util.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/util.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/visit.d.ts +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/dist/visit.js +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/package.json +0 -0
- /package/node_modules/{yaml → @switchboard/projections/node_modules/yaml}/util.js +0 -0
package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/live-event.ts
ADDED
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
BudgetPosture,
|
|
3
|
+
DispatchRecord,
|
|
4
|
+
EvaluationResult,
|
|
5
|
+
LiveEvent,
|
|
6
|
+
LiveEventKind,
|
|
7
|
+
LiveProvenanceLevel,
|
|
8
|
+
RunSnapshot,
|
|
9
|
+
Surface,
|
|
10
|
+
} from "./types";
|
|
11
|
+
import {
|
|
12
|
+
liveEventSchema,
|
|
13
|
+
SURFACE_LABELS,
|
|
14
|
+
} from "./types";
|
|
15
|
+
|
|
16
|
+
// ---------------------------------------------------------------------------
|
|
17
|
+
// Operator action derivation — deterministic from snapshot state
|
|
18
|
+
// ---------------------------------------------------------------------------
|
|
19
|
+
|
|
20
|
+
function deriveOperatorAction(snapshot: RunSnapshot): {
|
|
21
|
+
required: boolean;
|
|
22
|
+
action: string;
|
|
23
|
+
} {
|
|
24
|
+
switch (snapshot.phase) {
|
|
25
|
+
case "held_for_review":
|
|
26
|
+
return { required: true, action: "Review gate hold and resolve before advancing." };
|
|
27
|
+
case "blocked":
|
|
28
|
+
return { required: true, action: "Provide missing evidence to unblock." };
|
|
29
|
+
case "activation_blocked":
|
|
30
|
+
return { required: true, action: "Resolve activation blockers." };
|
|
31
|
+
case "activation_held":
|
|
32
|
+
return { required: true, action: "Narrow activation scope to proceed." };
|
|
33
|
+
case "accepted_with_cautions":
|
|
34
|
+
return { required: true, action: "Review cautions before closing or advancing." };
|
|
35
|
+
default:
|
|
36
|
+
break;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (snapshot.home_bucket === "feedback_pending") {
|
|
40
|
+
return { required: true, action: "Provide operator feedback." };
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
if (snapshot.unresolved_count > 0 && snapshot.phase === "accepted") {
|
|
44
|
+
return { required: true, action: "Resolve unresolved items before proceeding." };
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
return { required: false, action: "" };
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// ---------------------------------------------------------------------------
|
|
51
|
+
// Provenance level derivation — from evidence proof if available
|
|
52
|
+
// ---------------------------------------------------------------------------
|
|
53
|
+
|
|
54
|
+
function deriveProvenanceLevel(snapshot: RunSnapshot): LiveProvenanceLevel {
|
|
55
|
+
const proof = snapshot.evidence_proof;
|
|
56
|
+
if (!proof) return "unknown";
|
|
57
|
+
|
|
58
|
+
if (proof.provenance_captured_count > 0) return "captured";
|
|
59
|
+
if (proof.provenance_reconstructed_count > 0) return "reconstructed";
|
|
60
|
+
if (proof.provenance_derived_count > 0) return "derived";
|
|
61
|
+
|
|
62
|
+
// Has proof structure but no provenance counts → synthetic (e.g. simulated return)
|
|
63
|
+
if (proof.policy_task_type) return "synthetic";
|
|
64
|
+
|
|
65
|
+
return "unknown";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// ---------------------------------------------------------------------------
|
|
69
|
+
// projectLiveEvent — maps DispatchRecord + RunSnapshot → LiveEvent
|
|
70
|
+
// ---------------------------------------------------------------------------
|
|
71
|
+
|
|
72
|
+
let _eventCounter = 0;
|
|
73
|
+
|
|
74
|
+
function generateEventId(): string {
|
|
75
|
+
_eventCounter += 1;
|
|
76
|
+
const ts = Date.now().toString(36);
|
|
77
|
+
const seq = _eventCounter.toString(36).padStart(4, "0");
|
|
78
|
+
return `lev-${ts}-${seq}`;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export function projectLiveEvent(input: {
|
|
82
|
+
kind: LiveEventKind;
|
|
83
|
+
snapshot: RunSnapshot;
|
|
84
|
+
project_id: string;
|
|
85
|
+
dispatch?: DispatchRecord | null;
|
|
86
|
+
loop_ordinal?: number;
|
|
87
|
+
detail?: string;
|
|
88
|
+
budget_posture?: BudgetPosture;
|
|
89
|
+
}): LiveEvent {
|
|
90
|
+
const { kind, snapshot, project_id, detail } = input;
|
|
91
|
+
const dispatch = input.dispatch ?? null;
|
|
92
|
+
const loop_ordinal = input.loop_ordinal ?? -1;
|
|
93
|
+
|
|
94
|
+
// Surface identity — from dispatch if available
|
|
95
|
+
const surface: Surface | undefined = dispatch?.route_surface ?? undefined;
|
|
96
|
+
const surface_label: string = surface ? (SURFACE_LABELS[surface] ?? surface) : "";
|
|
97
|
+
const surface_fallback: Surface | undefined = dispatch?.route_fallback ?? undefined;
|
|
98
|
+
const route_rationale: string = dispatch?.route_rationale ?? "";
|
|
99
|
+
|
|
100
|
+
// Role — dispatch exists means agent is acting; operator actions have no dispatch
|
|
101
|
+
const role: "agent" | "operator" = dispatch ? "agent" : "operator";
|
|
102
|
+
|
|
103
|
+
// Operator action
|
|
104
|
+
const operatorSignal = deriveOperatorAction(snapshot);
|
|
105
|
+
|
|
106
|
+
// Provenance
|
|
107
|
+
const provenance_level = deriveProvenanceLevel(snapshot);
|
|
108
|
+
|
|
109
|
+
return liveEventSchema.parse({
|
|
110
|
+
event_id: generateEventId(),
|
|
111
|
+
kind,
|
|
112
|
+
timestamp: new Date().toISOString(),
|
|
113
|
+
|
|
114
|
+
project_id,
|
|
115
|
+
dispatch_id: dispatch?.dispatch_id ?? "",
|
|
116
|
+
slice_id: dispatch?.slice_id ?? "",
|
|
117
|
+
loop_ordinal,
|
|
118
|
+
|
|
119
|
+
surface,
|
|
120
|
+
surface_label,
|
|
121
|
+
surface_fallback,
|
|
122
|
+
route_rationale,
|
|
123
|
+
role,
|
|
124
|
+
|
|
125
|
+
phase: snapshot.phase,
|
|
126
|
+
home_bucket: snapshot.home_bucket,
|
|
127
|
+
gate_label: snapshot.gate_label,
|
|
128
|
+
hold_source: snapshot.hold_source,
|
|
129
|
+
|
|
130
|
+
operator_action_required: operatorSignal.required,
|
|
131
|
+
operator_action: operatorSignal.action,
|
|
132
|
+
|
|
133
|
+
budget_posture: input.budget_posture ?? "unknown",
|
|
134
|
+
provenance_level,
|
|
135
|
+
|
|
136
|
+
merge_outcome: snapshot.merge_outcome,
|
|
137
|
+
run_outcome: snapshot.run_outcome,
|
|
138
|
+
closure_posture: snapshot.closure_posture,
|
|
139
|
+
|
|
140
|
+
caution_count: snapshot.caution_count,
|
|
141
|
+
unresolved_count: snapshot.unresolved_count,
|
|
142
|
+
|
|
143
|
+
detail: detail ?? "",
|
|
144
|
+
});
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
// ---------------------------------------------------------------------------
|
|
148
|
+
// Convenience projectors for common lifecycle transitions
|
|
149
|
+
// ---------------------------------------------------------------------------
|
|
150
|
+
|
|
151
|
+
export function projectDispatchEvent(input: {
|
|
152
|
+
dispatch: DispatchRecord;
|
|
153
|
+
snapshot: RunSnapshot;
|
|
154
|
+
project_id: string;
|
|
155
|
+
loop_ordinal?: number;
|
|
156
|
+
}): LiveEvent {
|
|
157
|
+
return projectLiveEvent({
|
|
158
|
+
kind: "dispatched",
|
|
159
|
+
snapshot: input.snapshot,
|
|
160
|
+
project_id: input.project_id,
|
|
161
|
+
dispatch: input.dispatch,
|
|
162
|
+
loop_ordinal: input.loop_ordinal ?? -1,
|
|
163
|
+
detail: `Dispatched to ${input.dispatch.provider_label}: ${input.dispatch.packet_summary}`,
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
export function projectReturnEvent(input: {
|
|
168
|
+
dispatch: DispatchRecord;
|
|
169
|
+
snapshot: RunSnapshot;
|
|
170
|
+
project_id: string;
|
|
171
|
+
loop_ordinal?: number;
|
|
172
|
+
budget_posture?: BudgetPosture;
|
|
173
|
+
}): LiveEvent {
|
|
174
|
+
return projectLiveEvent({
|
|
175
|
+
kind: "return-received",
|
|
176
|
+
snapshot: input.snapshot,
|
|
177
|
+
project_id: input.project_id,
|
|
178
|
+
dispatch: input.dispatch,
|
|
179
|
+
loop_ordinal: input.loop_ordinal ?? -1,
|
|
180
|
+
detail: `Return from ${input.dispatch.provider_label}: ${input.dispatch.return_status}`,
|
|
181
|
+
...(input.budget_posture != null && { budget_posture: input.budget_posture }),
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
export function projectGateEvent(input: {
|
|
186
|
+
dispatch: DispatchRecord;
|
|
187
|
+
snapshot: RunSnapshot;
|
|
188
|
+
project_id: string;
|
|
189
|
+
loop_ordinal?: number;
|
|
190
|
+
budget_posture?: BudgetPosture;
|
|
191
|
+
}): LiveEvent {
|
|
192
|
+
return projectLiveEvent({
|
|
193
|
+
kind: "gate-resolved",
|
|
194
|
+
snapshot: input.snapshot,
|
|
195
|
+
project_id: input.project_id,
|
|
196
|
+
dispatch: input.dispatch,
|
|
197
|
+
loop_ordinal: input.loop_ordinal ?? -1,
|
|
198
|
+
detail: `Gate: ${input.snapshot.gate_label} (${input.snapshot.gate_reason})`,
|
|
199
|
+
...(input.budget_posture != null && { budget_posture: input.budget_posture }),
|
|
200
|
+
});
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export function projectStatusChange(input: {
|
|
204
|
+
snapshot: RunSnapshot;
|
|
205
|
+
project_id: string;
|
|
206
|
+
dispatch?: DispatchRecord | null;
|
|
207
|
+
loop_ordinal?: number;
|
|
208
|
+
detail?: string;
|
|
209
|
+
}): LiveEvent {
|
|
210
|
+
return projectLiveEvent({
|
|
211
|
+
kind: "status-changed",
|
|
212
|
+
snapshot: input.snapshot,
|
|
213
|
+
project_id: input.project_id,
|
|
214
|
+
dispatch: input.dispatch ?? null,
|
|
215
|
+
loop_ordinal: input.loop_ordinal ?? -1,
|
|
216
|
+
detail: input.detail ?? `Phase: ${input.snapshot.phase}, bucket: ${input.snapshot.home_bucket}`,
|
|
217
|
+
});
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
export function projectEvaluationEvent(input: {
|
|
221
|
+
evaluation: EvaluationResult;
|
|
222
|
+
snapshot: RunSnapshot;
|
|
223
|
+
project_id: string;
|
|
224
|
+
dispatch?: DispatchRecord | null;
|
|
225
|
+
loop_ordinal?: number;
|
|
226
|
+
budget_posture?: BudgetPosture;
|
|
227
|
+
}): LiveEvent {
|
|
228
|
+
const { evaluation } = input;
|
|
229
|
+
return projectLiveEvent({
|
|
230
|
+
kind: "evaluation-completed",
|
|
231
|
+
snapshot: input.snapshot,
|
|
232
|
+
project_id: input.project_id,
|
|
233
|
+
dispatch: input.dispatch ?? null,
|
|
234
|
+
loop_ordinal: input.loop_ordinal ?? -1,
|
|
235
|
+
detail: `Evaluation ${evaluation.evaluation_id}: ${evaluation.verdict} (${evaluation.finding_count} findings, reentry: ${evaluation.reentry_signal})`,
|
|
236
|
+
...(input.budget_posture != null && { budget_posture: input.budget_posture }),
|
|
237
|
+
});
|
|
238
|
+
}
|
package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/lock-readiness.ts
ADDED
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
LockFinding,
|
|
3
|
+
LockFindingCategory,
|
|
4
|
+
LockFindingSeverity,
|
|
5
|
+
LockReadiness,
|
|
6
|
+
ProjectContract,
|
|
7
|
+
SynthesizedSeed,
|
|
8
|
+
} from "./types";
|
|
9
|
+
import { lockReadinessSchema } from "./types";
|
|
10
|
+
|
|
11
|
+
// ---------------------------------------------------------------------------
|
|
12
|
+
// Helpers
|
|
13
|
+
// ---------------------------------------------------------------------------
|
|
14
|
+
|
|
15
|
+
function finding(
|
|
16
|
+
category: LockFindingCategory,
|
|
17
|
+
severity: LockFindingSeverity,
|
|
18
|
+
field: string,
|
|
19
|
+
detail: string,
|
|
20
|
+
): LockFinding {
|
|
21
|
+
return { category, severity, field, detail };
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
const GENERIC_BOUNDARY_MARKERS = [
|
|
25
|
+
"not a generic",
|
|
26
|
+
"not a chat wrapper",
|
|
27
|
+
"not a pm tool",
|
|
28
|
+
"not a workspace",
|
|
29
|
+
"not an emotional",
|
|
30
|
+
"not a sentiment",
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
function isProductGuardrailOnly(nonGoal: string): boolean {
|
|
34
|
+
const lower = nonGoal.toLowerCase();
|
|
35
|
+
return GENERIC_BOUNDARY_MARKERS.some(m => lower.includes(m));
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// ---------------------------------------------------------------------------
|
|
39
|
+
// Core checks
|
|
40
|
+
// ---------------------------------------------------------------------------
|
|
41
|
+
|
|
42
|
+
function checkRequiredInputs(seed: SynthesizedSeed): LockFinding[] {
|
|
43
|
+
const findings: LockFinding[] = [];
|
|
44
|
+
|
|
45
|
+
if (!seed.target_user || seed.target_user === "Solo builders shipping software.") {
|
|
46
|
+
findings.push(finding("missing_required_input", "blocking", "target_user", "Target user not specified."));
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
if (!seed.proposed_solution || seed.proposed_solution === "Needs further shaping.") {
|
|
50
|
+
findings.push(finding("missing_required_input", "blocking", "proposed_solution", "No clear solution approach — describe what ships."));
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
for (const m of seed.missing_inputs.filter(Boolean)) {
|
|
54
|
+
findings.push(finding("missing_required_input", "blocking", "missing_inputs", m));
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
return findings;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function checkScopeForImplTask(
|
|
61
|
+
seed: SynthesizedSeed,
|
|
62
|
+
contract: ProjectContract,
|
|
63
|
+
): LockFinding[] {
|
|
64
|
+
const findings: LockFinding[] = [];
|
|
65
|
+
|
|
66
|
+
// First bounded slice
|
|
67
|
+
if (!seed.first_build_slice || seed.first_build_slice.length < 10) {
|
|
68
|
+
findings.push(finding(
|
|
69
|
+
"missing_scope",
|
|
70
|
+
"blocking",
|
|
71
|
+
"first_build_slice",
|
|
72
|
+
"First bounded slice is missing or too vague — define what ships in this slice before locking.",
|
|
73
|
+
));
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// Scope in — must exist for impl tasks
|
|
77
|
+
const scopeIn = contract.task_clauses?.scope_in ?? [];
|
|
78
|
+
if (scopeIn.length === 0) {
|
|
79
|
+
findings.push(finding(
|
|
80
|
+
"missing_scope",
|
|
81
|
+
"blocking",
|
|
82
|
+
"task_clauses.scope_in",
|
|
83
|
+
"No in-scope lines defined — implementation tasks need bounded scope before lock.",
|
|
84
|
+
));
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// Scope out / non-goals
|
|
88
|
+
const scopeOut = contract.task_clauses?.scope_out ?? [];
|
|
89
|
+
if (scopeOut.length === 0 && contract.non_goals.length === 0) {
|
|
90
|
+
findings.push(finding(
|
|
91
|
+
"missing_scope",
|
|
92
|
+
"blocking",
|
|
93
|
+
"task_clauses.scope_out",
|
|
94
|
+
"No out-of-scope lines or non-goals — implementation tasks need at least one explicit boundary.",
|
|
95
|
+
));
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
return findings;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
function checkTaskBoundaries(
|
|
102
|
+
contract: ProjectContract,
|
|
103
|
+
taskType: string,
|
|
104
|
+
): LockFinding[] {
|
|
105
|
+
const findings: LockFinding[] = [];
|
|
106
|
+
|
|
107
|
+
if (taskType !== "implementation-request") return findings;
|
|
108
|
+
|
|
109
|
+
// Distinguish product guardrails from task-specific boundaries
|
|
110
|
+
const nonGoals = contract.non_goals;
|
|
111
|
+
const taskSpecific = nonGoals.filter(ng => !isProductGuardrailOnly(ng));
|
|
112
|
+
const productOnly = nonGoals.filter(ng => isProductGuardrailOnly(ng));
|
|
113
|
+
|
|
114
|
+
if (taskSpecific.length === 0) {
|
|
115
|
+
findings.push(finding(
|
|
116
|
+
"missing_task_boundary",
|
|
117
|
+
"blocking",
|
|
118
|
+
"non_goals",
|
|
119
|
+
`Contract has ${productOnly.length} product-level guardrail(s) but no task-specific boundaries. Implementation tasks need boundaries relevant to THIS build (e.g. "no billing", "single file only").`,
|
|
120
|
+
));
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// Build constraints
|
|
124
|
+
const buildConstraints = contract.task_clauses?.build_constraints ?? [];
|
|
125
|
+
if (buildConstraints.length === 0) {
|
|
126
|
+
findings.push(finding(
|
|
127
|
+
"missing_task_boundary",
|
|
128
|
+
"caution",
|
|
129
|
+
"task_clauses.build_constraints",
|
|
130
|
+
"No build constraints stated — consider adding boundaries for this specific implementation.",
|
|
131
|
+
));
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
return findings;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
function checkSystemsAndRepo(
|
|
138
|
+
contract: ProjectContract,
|
|
139
|
+
taskType: string,
|
|
140
|
+
): LockFinding[] {
|
|
141
|
+
const findings: LockFinding[] = [];
|
|
142
|
+
|
|
143
|
+
if (taskType !== "implementation-request") return findings;
|
|
144
|
+
|
|
145
|
+
// Systems in play
|
|
146
|
+
const systems = contract.task_clauses?.systems_expected ?? [];
|
|
147
|
+
if (systems.length === 0) {
|
|
148
|
+
findings.push(finding(
|
|
149
|
+
"missing_systems",
|
|
150
|
+
"caution",
|
|
151
|
+
"task_clauses.systems_expected",
|
|
152
|
+
"No systems-in-play detected — consider confirming which systems this slice touches.",
|
|
153
|
+
));
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
// Repo binding for implementation tasks
|
|
157
|
+
if (contract.repo_status === "repo-not-present") {
|
|
158
|
+
findings.push(finding(
|
|
159
|
+
"missing_repo_binding",
|
|
160
|
+
"caution",
|
|
161
|
+
"repo_status",
|
|
162
|
+
"No repository bound — first execution will create one.",
|
|
163
|
+
));
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
return findings;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
function checkIntent(seed: SynthesizedSeed): LockFinding[] {
|
|
170
|
+
const findings: LockFinding[] = [];
|
|
171
|
+
|
|
172
|
+
if (seed.confidence === "low") {
|
|
173
|
+
findings.push(finding(
|
|
174
|
+
"vague_intent",
|
|
175
|
+
"blocking",
|
|
176
|
+
"confidence",
|
|
177
|
+
"Low confidence in extracted intent — clarify before locking.",
|
|
178
|
+
));
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
if (seed.confidence === "medium" && seed.open_questions.filter(Boolean).length > 2) {
|
|
182
|
+
findings.push(finding(
|
|
183
|
+
"vague_intent",
|
|
184
|
+
"caution",
|
|
185
|
+
"confidence",
|
|
186
|
+
"Medium confidence with multiple open questions — lock is allowed but review recommended.",
|
|
187
|
+
));
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
for (const q of seed.open_questions.filter(Boolean)) {
|
|
191
|
+
findings.push(finding(
|
|
192
|
+
"unresolved_assumption",
|
|
193
|
+
"caution",
|
|
194
|
+
"open_questions",
|
|
195
|
+
q,
|
|
196
|
+
));
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
return findings;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
// ---------------------------------------------------------------------------
|
|
203
|
+
// Main function
|
|
204
|
+
// ---------------------------------------------------------------------------
|
|
205
|
+
|
|
206
|
+
export function checkLockReadiness(input: {
|
|
207
|
+
seed: SynthesizedSeed;
|
|
208
|
+
contract: ProjectContract;
|
|
209
|
+
taskType: string;
|
|
210
|
+
}): LockReadiness {
|
|
211
|
+
const { seed, contract, taskType } = input;
|
|
212
|
+
const isImpl = taskType === "implementation-request";
|
|
213
|
+
|
|
214
|
+
const allFindings: LockFinding[] = [
|
|
215
|
+
...checkRequiredInputs(seed),
|
|
216
|
+
...(isImpl ? checkScopeForImplTask(seed, contract) : []),
|
|
217
|
+
...checkTaskBoundaries(contract, taskType),
|
|
218
|
+
...checkSystemsAndRepo(contract, taskType),
|
|
219
|
+
...checkIntent(seed),
|
|
220
|
+
];
|
|
221
|
+
|
|
222
|
+
const blocking = allFindings.filter(f => f.severity === "blocking").length;
|
|
223
|
+
const cautions = allFindings.filter(f => f.severity === "caution").length;
|
|
224
|
+
|
|
225
|
+
let outcome: "lock_allowed" | "lock_allowed_with_cautions" | "lock_blocked";
|
|
226
|
+
if (blocking > 0) {
|
|
227
|
+
outcome = "lock_blocked";
|
|
228
|
+
} else if (cautions > 0) {
|
|
229
|
+
outcome = "lock_allowed_with_cautions";
|
|
230
|
+
} else {
|
|
231
|
+
outcome = "lock_allowed";
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
return lockReadinessSchema.parse({
|
|
235
|
+
outcome,
|
|
236
|
+
findings: allFindings,
|
|
237
|
+
blocking_count: blocking,
|
|
238
|
+
caution_count: cautions,
|
|
239
|
+
task_type_basis: taskType,
|
|
240
|
+
checked_at: new Date().toISOString(),
|
|
241
|
+
});
|
|
242
|
+
}
|
package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/loop-compiler.ts
ADDED
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import type { LoopContract, ProjectContract, RoutingResult, WorkingState } from "./types";
|
|
2
|
+
import { loopContractSchema } from "./types";
|
|
3
|
+
|
|
4
|
+
type LoopCompilerInput = {
|
|
5
|
+
contract: ProjectContract;
|
|
6
|
+
current: WorkingState;
|
|
7
|
+
route: RoutingResult;
|
|
8
|
+
objective?: string;
|
|
9
|
+
scope_in?: string[];
|
|
10
|
+
scope_out?: string[];
|
|
11
|
+
done_when?: string[];
|
|
12
|
+
success_criteria?: string[];
|
|
13
|
+
verify_with?: string[];
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
function compact(text: string) {
|
|
17
|
+
return text.replace(/\s+/g, " ").trim();
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function dedupe(values: string[]) {
|
|
21
|
+
return Array.from(new Set(values.map((value) => compact(value)).filter(Boolean)));
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function inferExecutionShape(route: RoutingResult, objective: string): LoopContract["execution_shape"] {
|
|
25
|
+
const normalized = objective.toLowerCase();
|
|
26
|
+
|
|
27
|
+
if (route.primary_recommendation === "chatgpt" && /(research|compare|investigate|discover|map)/.test(normalized)) {
|
|
28
|
+
return "bounded_parallel_research";
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
if (route.primary_recommendation === "claude-code" && /(across|multi-file|multiple|parallel|several|web app|bundle|api)/.test(normalized)) {
|
|
32
|
+
return "bounded_parallel_implementation";
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return "single";
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function defaultScopeIn(input: LoopCompilerInput, objective: string) {
|
|
39
|
+
return [
|
|
40
|
+
objective,
|
|
41
|
+
`Keep ${input.current.primary_artifact_ref} aligned only if the product meaning changes.`,
|
|
42
|
+
"Touch only files and artifacts that directly support the active slice.",
|
|
43
|
+
];
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function defaultScopeOut() {
|
|
47
|
+
return [
|
|
48
|
+
"No new execution surfaces, orchestration controls, or runtime platform features.",
|
|
49
|
+
"No remote execution, workers, schedulers, or graph-building UX.",
|
|
50
|
+
"No broad refactor outside the active slice.",
|
|
51
|
+
];
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function defaultDoneWhen(route: RoutingResult) {
|
|
55
|
+
if (route.primary_recommendation === "chatgpt") {
|
|
56
|
+
return [
|
|
57
|
+
"The blocking product decision is resolved.",
|
|
58
|
+
"The next repo-ready slice is explicit.",
|
|
59
|
+
"Any changed scope boundary is called out clearly.",
|
|
60
|
+
];
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (route.primary_recommendation === "cursor") {
|
|
64
|
+
return [
|
|
65
|
+
"The targeted UI or interaction slice is coherent.",
|
|
66
|
+
"Changed files are listed explicitly.",
|
|
67
|
+
"Any taste-sensitive decisions are captured in the return.",
|
|
68
|
+
];
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
return [
|
|
72
|
+
"The requested repo slice is complete across the required files.",
|
|
73
|
+
"Relevant verification has been run or skipped with explicit reason.",
|
|
74
|
+
"Follow-up blockers are captured before return.",
|
|
75
|
+
];
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function defaultSuccessCriteria(route: RoutingResult, objective: string) {
|
|
79
|
+
if (route.primary_recommendation === "chatgpt") {
|
|
80
|
+
return [
|
|
81
|
+
`The clarified recommendation directly resolves this objective: ${objective}`,
|
|
82
|
+
"The recommendation narrows the next slice rather than widening scope.",
|
|
83
|
+
];
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
if (route.primary_recommendation === "cursor") {
|
|
87
|
+
return [
|
|
88
|
+
"The edited experience feels coherent in the targeted area.",
|
|
89
|
+
"The changes stay within the active UI or taste-heavy slice.",
|
|
90
|
+
];
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
return [
|
|
94
|
+
"The repo implementation matches the stated objective without adding platform sprawl.",
|
|
95
|
+
"Verification evidence exists for the touched slice.",
|
|
96
|
+
];
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
function defaultVerifyWith(input: LoopCompilerInput) {
|
|
100
|
+
if (input.route.primary_recommendation === "chatgpt") {
|
|
101
|
+
return [
|
|
102
|
+
`Cross-check the recommendation against ${input.current.primary_artifact_ref}.`,
|
|
103
|
+
"Make any unresolved ambiguity explicit in the return.",
|
|
104
|
+
];
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
if (input.route.primary_recommendation === "cursor") {
|
|
108
|
+
return [
|
|
109
|
+
"Visually verify the targeted interaction or layout change.",
|
|
110
|
+
"List any unverified assumptions before returning.",
|
|
111
|
+
];
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
return [
|
|
115
|
+
"Run the smallest relevant checks for touched files.",
|
|
116
|
+
"Document any skipped verification with reason.",
|
|
117
|
+
];
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
function defaultBlockerEscalation() {
|
|
121
|
+
return [
|
|
122
|
+
"Return immediately if the product decision becomes unclear.",
|
|
123
|
+
"Return immediately if implementation expands unexpectedly.",
|
|
124
|
+
"Return immediately if the work becomes mostly visual or taste-heavy.",
|
|
125
|
+
];
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
function defaultExpectedArtifacts(input: LoopCompilerInput) {
|
|
129
|
+
if (input.route.primary_recommendation === "chatgpt") {
|
|
130
|
+
return [input.current.primary_artifact_ref, "Structured return report"];
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
return ["Repo changes for the active slice", "Structured return report"];
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export function compileLoopContract(input: LoopCompilerInput): LoopContract {
|
|
137
|
+
const objective = compact(input.objective ?? input.current.next_objective ?? input.route.next_objective);
|
|
138
|
+
|
|
139
|
+
return loopContractSchema.parse({
|
|
140
|
+
objective,
|
|
141
|
+
scope_in: dedupe(input.scope_in ?? defaultScopeIn(input, objective)),
|
|
142
|
+
scope_out: dedupe(input.scope_out ?? defaultScopeOut()),
|
|
143
|
+
done_when: dedupe(input.done_when ?? defaultDoneWhen(input.route)),
|
|
144
|
+
success_criteria: dedupe(input.success_criteria ?? defaultSuccessCriteria(input.route, objective)),
|
|
145
|
+
verify_with: dedupe(input.verify_with ?? defaultVerifyWith(input)),
|
|
146
|
+
return_when: input.route.return_condition,
|
|
147
|
+
blocker_escalation: dedupe(defaultBlockerEscalation()),
|
|
148
|
+
expected_artifacts: dedupe(defaultExpectedArtifacts(input)),
|
|
149
|
+
fallback_surface: input.route.fallback_surface,
|
|
150
|
+
execution_shape: inferExecutionShape(input.route, objective),
|
|
151
|
+
});
|
|
152
|
+
}
|
package/node_modules/@switchboard/projections/node_modules/@switchboard/core/src/loop-validator.ts
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type { LaunchReadiness, LoopContract } from "./types";
|
|
2
|
+
import { launchReadinessSchema } from "./types";
|
|
3
|
+
|
|
4
|
+
const VAGUE_MARKERS = ["good", "better", "clean up", "stuff", "things", "some", "maybe", "nice", "improve"];
|
|
5
|
+
const TESTABLE_MARKERS = ["run", "pass", "update", "list", "create", "capture", "document", "explicit", "complete", "verify", "return"];
|
|
6
|
+
|
|
7
|
+
function compact(text: string) {
|
|
8
|
+
return text.replace(/\s+/g, " ").trim().toLowerCase();
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
function looksVague(text: string) {
|
|
12
|
+
const normalized = compact(text);
|
|
13
|
+
return normalized.split(" ").length < 4 || VAGUE_MARKERS.some((marker) => normalized.includes(marker));
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function looksConcrete(items: string[]) {
|
|
17
|
+
return items.every((item) => item.length >= 12 && TESTABLE_MARKERS.some((marker) => compact(item).includes(marker)));
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export function validateLoopReadiness(loop: LoopContract): LaunchReadiness {
|
|
21
|
+
const missingIssues: string[] = [];
|
|
22
|
+
const clarificationIssues: string[] = [];
|
|
23
|
+
|
|
24
|
+
if (!loop.objective) missingIssues.push("Objective is missing.");
|
|
25
|
+
if (loop.scope_in.length === 0) missingIssues.push("Scope in is empty.");
|
|
26
|
+
if (loop.scope_out.length === 0) missingIssues.push("Scope out is empty.");
|
|
27
|
+
if (loop.done_when.length === 0) missingIssues.push("Done-when is empty.");
|
|
28
|
+
if (loop.success_criteria.length === 0) missingIssues.push("Success criteria are empty.");
|
|
29
|
+
if (loop.verify_with.length === 0) missingIssues.push("Verify-with is empty.");
|
|
30
|
+
if (!loop.return_when) missingIssues.push("Return-when is missing.");
|
|
31
|
+
if (!loop.fallback_surface) missingIssues.push("Fallback surface is missing.");
|
|
32
|
+
|
|
33
|
+
if (missingIssues.length > 0) {
|
|
34
|
+
return launchReadinessSchema.parse({
|
|
35
|
+
status: "missing required boundary info",
|
|
36
|
+
issues: missingIssues,
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
if (looksVague(loop.objective)) clarificationIssues.push("Objective needs to be more specific.");
|
|
41
|
+
if (!looksConcrete(loop.done_when)) clarificationIssues.push("Done-when needs more testable language.");
|
|
42
|
+
if (!looksConcrete(loop.success_criteria)) clarificationIssues.push("Success criteria need to be more concrete.");
|
|
43
|
+
|
|
44
|
+
if (clarificationIssues.length > 0) {
|
|
45
|
+
return launchReadinessSchema.parse({
|
|
46
|
+
status: "needs clarification",
|
|
47
|
+
issues: clarificationIssues,
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
return launchReadinessSchema.parse({
|
|
52
|
+
status: "ready",
|
|
53
|
+
issues: [],
|
|
54
|
+
});
|
|
55
|
+
}
|