├── .asyncapi-tool ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── async-api-validation.yml │ ├── minor.yml │ ├── node.js.yml │ ├── npm-publish.yml │ └── patch.yml ├── .gitignore ├── .husky └── pre-commit ├── CHANGELOG.md ├── LICENSE ├── LICENSE-3RD-PARTY.md ├── README.md ├── SECURITY.md ├── coverage.svg ├── eslint.config.js ├── example ├── README.md ├── actions │ ├── chat.ts │ ├── index.ts │ ├── ping.ts │ ├── subscribe.ts │ └── unsubscribe.ts ├── config.ts ├── example-client.ts ├── example-documentation.yaml ├── factories.ts ├── generate-client.ts ├── generate-documentation.ts └── index.ts ├── flow.svg ├── package.json ├── src ├── __snapshots__ │ ├── action.spec.ts.snap │ ├── common-helpers.spec.ts.snap │ ├── documentation-helpers.spec.ts.snap │ ├── documentation.spec.ts.snap │ ├── function-schema.spec.ts.snap │ ├── index.spec.ts.snap │ ├── integration-helpers.spec.ts.snap │ ├── integration.spec.ts.snap │ └── zts.spec.ts.snap ├── action.spec.ts ├── action.ts ├── actions-factory.spec.ts ├── actions-factory.ts ├── async-api │ ├── __snapshots__ │ │ ├── builder.spec.ts.snap │ │ ├── document-builder.spec.ts.snap │ │ └── socket-io-binding.spec.ts.snap │ ├── builder.spec.ts │ ├── builder.ts │ ├── helpers.spec.ts │ ├── helpers.ts │ ├── model.ts │ ├── security.ts │ └── websockets.ts ├── attach.spec.ts ├── attach.ts ├── client.ts ├── common-helpers.spec.ts ├── common-helpers.ts ├── config.spec.ts ├── config.ts ├── distribution.ts ├── documentation-helpers.spec.ts ├── documentation-helpers.ts ├── documentation.spec.ts ├── documentation.ts ├── emission.spec.ts ├── emission.ts ├── errors.spec.ts ├── errors.ts ├── handler.ts ├── hooks.ts ├── index.spec.ts ├── index.ts ├── integration-helpers.spec.ts ├── integration-helpers.ts ├── integration.spec.ts ├── integration.ts ├── logger.ts ├── namespace.spec.ts ├── namespace.ts ├── remote-client.spec.ts ├── remote-client.ts ├── schema-walker.ts ├── startup-logo.ts ├── typescript-api.ts ├── zts-helpers.ts ├── zts.spec.ts └── zts.ts ├── tests ├── cjs │ ├── package.json │ ├── quick-start.spec.ts │ └── tsconfig.json ├── compat │ ├── express-zod-api.ts │ ├── frontend-client.spec.ts │ ├── package.json │ └── tsconfig.json ├── esm │ ├── package.json │ ├── quick-start.spec.ts │ └── tsconfig.json ├── helpers.ts ├── issue952 │ ├── package.json │ └── tsconfig.json └── system │ ├── example.spec.ts │ ├── issue590.spec.ts │ ├── package.json │ └── tsconfig.json ├── tools ├── extract-quick-start.ts └── make-tests.ts ├── tsconfig.base.json ├── tsconfig.json ├── tsdown.config.ts ├── vitest.config.ts ├── vitest.setup.ts └── yarn.lock /.asyncapi-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/.asyncapi-tool -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/async-api-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/.github/workflows/async-api-validation.yml -------------------------------------------------------------------------------- /.github/workflows/minor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/.github/workflows/minor.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/.github/workflows/patch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | yarn precommit 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-3RD-PARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/LICENSE-3RD-PARTY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/SECURITY.md -------------------------------------------------------------------------------- /coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/coverage.svg -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/eslint.config.js -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/README.md -------------------------------------------------------------------------------- /example/actions/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/actions/chat.ts -------------------------------------------------------------------------------- /example/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/actions/index.ts -------------------------------------------------------------------------------- /example/actions/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/actions/ping.ts -------------------------------------------------------------------------------- /example/actions/subscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/actions/subscribe.ts -------------------------------------------------------------------------------- /example/actions/unsubscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/actions/unsubscribe.ts -------------------------------------------------------------------------------- /example/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/config.ts -------------------------------------------------------------------------------- /example/example-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/example-client.ts -------------------------------------------------------------------------------- /example/example-documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/example-documentation.yaml -------------------------------------------------------------------------------- /example/factories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/factories.ts -------------------------------------------------------------------------------- /example/generate-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/generate-client.ts -------------------------------------------------------------------------------- /example/generate-documentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/generate-documentation.ts -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/example/index.ts -------------------------------------------------------------------------------- /flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/flow.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/package.json -------------------------------------------------------------------------------- /src/__snapshots__/action.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/__snapshots__/action.spec.ts.snap -------------------------------------------------------------------------------- /src/__snapshots__/common-helpers.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/__snapshots__/common-helpers.spec.ts.snap -------------------------------------------------------------------------------- /src/__snapshots__/documentation-helpers.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/__snapshots__/documentation-helpers.spec.ts.snap -------------------------------------------------------------------------------- /src/__snapshots__/documentation.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/__snapshots__/documentation.spec.ts.snap -------------------------------------------------------------------------------- /src/__snapshots__/function-schema.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/__snapshots__/function-schema.spec.ts.snap -------------------------------------------------------------------------------- /src/__snapshots__/index.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/__snapshots__/index.spec.ts.snap -------------------------------------------------------------------------------- /src/__snapshots__/integration-helpers.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/__snapshots__/integration-helpers.spec.ts.snap -------------------------------------------------------------------------------- /src/__snapshots__/integration.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/__snapshots__/integration.spec.ts.snap -------------------------------------------------------------------------------- /src/__snapshots__/zts.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/__snapshots__/zts.spec.ts.snap -------------------------------------------------------------------------------- /src/action.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/action.spec.ts -------------------------------------------------------------------------------- /src/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/action.ts -------------------------------------------------------------------------------- /src/actions-factory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/actions-factory.spec.ts -------------------------------------------------------------------------------- /src/actions-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/actions-factory.ts -------------------------------------------------------------------------------- /src/async-api/__snapshots__/builder.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/async-api/__snapshots__/builder.spec.ts.snap -------------------------------------------------------------------------------- /src/async-api/__snapshots__/document-builder.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/async-api/__snapshots__/document-builder.spec.ts.snap -------------------------------------------------------------------------------- /src/async-api/__snapshots__/socket-io-binding.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/async-api/__snapshots__/socket-io-binding.spec.ts.snap -------------------------------------------------------------------------------- /src/async-api/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/async-api/builder.spec.ts -------------------------------------------------------------------------------- /src/async-api/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/async-api/builder.ts -------------------------------------------------------------------------------- /src/async-api/helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/async-api/helpers.spec.ts -------------------------------------------------------------------------------- /src/async-api/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/async-api/helpers.ts -------------------------------------------------------------------------------- /src/async-api/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/async-api/model.ts -------------------------------------------------------------------------------- /src/async-api/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/async-api/security.ts -------------------------------------------------------------------------------- /src/async-api/websockets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/async-api/websockets.ts -------------------------------------------------------------------------------- /src/attach.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/attach.spec.ts -------------------------------------------------------------------------------- /src/attach.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/attach.ts -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/common-helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/common-helpers.spec.ts -------------------------------------------------------------------------------- /src/common-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/common-helpers.ts -------------------------------------------------------------------------------- /src/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/config.spec.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/distribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/distribution.ts -------------------------------------------------------------------------------- /src/documentation-helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/documentation-helpers.spec.ts -------------------------------------------------------------------------------- /src/documentation-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/documentation-helpers.ts -------------------------------------------------------------------------------- /src/documentation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/documentation.spec.ts -------------------------------------------------------------------------------- /src/documentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/documentation.ts -------------------------------------------------------------------------------- /src/emission.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/emission.spec.ts -------------------------------------------------------------------------------- /src/emission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/emission.ts -------------------------------------------------------------------------------- /src/errors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/errors.spec.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/handler.ts -------------------------------------------------------------------------------- /src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/hooks.ts -------------------------------------------------------------------------------- /src/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/index.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/integration-helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/integration-helpers.spec.ts -------------------------------------------------------------------------------- /src/integration-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/integration-helpers.ts -------------------------------------------------------------------------------- /src/integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/integration.spec.ts -------------------------------------------------------------------------------- /src/integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/integration.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/namespace.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/namespace.spec.ts -------------------------------------------------------------------------------- /src/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/namespace.ts -------------------------------------------------------------------------------- /src/remote-client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/remote-client.spec.ts -------------------------------------------------------------------------------- /src/remote-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/remote-client.ts -------------------------------------------------------------------------------- /src/schema-walker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/schema-walker.ts -------------------------------------------------------------------------------- /src/startup-logo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/startup-logo.ts -------------------------------------------------------------------------------- /src/typescript-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/typescript-api.ts -------------------------------------------------------------------------------- /src/zts-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/zts-helpers.ts -------------------------------------------------------------------------------- /src/zts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/zts.spec.ts -------------------------------------------------------------------------------- /src/zts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/src/zts.ts -------------------------------------------------------------------------------- /tests/cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/cjs/package.json -------------------------------------------------------------------------------- /tests/cjs/quick-start.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/cjs/quick-start.spec.ts -------------------------------------------------------------------------------- /tests/cjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/cjs/tsconfig.json -------------------------------------------------------------------------------- /tests/compat/express-zod-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/compat/express-zod-api.ts -------------------------------------------------------------------------------- /tests/compat/frontend-client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/compat/frontend-client.spec.ts -------------------------------------------------------------------------------- /tests/compat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/compat/package.json -------------------------------------------------------------------------------- /tests/compat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/compat/tsconfig.json -------------------------------------------------------------------------------- /tests/esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/esm/package.json -------------------------------------------------------------------------------- /tests/esm/quick-start.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/esm/quick-start.spec.ts -------------------------------------------------------------------------------- /tests/esm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/esm/tsconfig.json -------------------------------------------------------------------------------- /tests/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/helpers.ts -------------------------------------------------------------------------------- /tests/issue952/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/issue952/package.json -------------------------------------------------------------------------------- /tests/issue952/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/issue952/tsconfig.json -------------------------------------------------------------------------------- /tests/system/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/system/example.spec.ts -------------------------------------------------------------------------------- /tests/system/issue590.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/system/issue590.spec.ts -------------------------------------------------------------------------------- /tests/system/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/system/package.json -------------------------------------------------------------------------------- /tests/system/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tests/system/tsconfig.json -------------------------------------------------------------------------------- /tools/extract-quick-start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tools/extract-quick-start.ts -------------------------------------------------------------------------------- /tools/make-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tools/make-tests.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/tsdown.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vitest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/vitest.setup.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinTail/zod-sockets/HEAD/yarn.lock --------------------------------------------------------------------------------