@tstdl/base 0.93.34 → 0.93.36
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/.eslintrc.json.bak +281 -0
- package/.repomix/bundles.json +100 -0
- package/.repomix/config/all-repomix.config.json +31 -0
- package/.repomix/config/debug-repomix.config.json +31 -0
- package/.repomix/config/dm-repomix.config.json +31 -0
- package/.vscode/launch.json +16 -0
- package/README.md +100 -0
- package/container/postgres/init/bootstrap.sql +8 -0
- package/container/postgres/postgresql.conf +2 -0
- package/deno.json +8 -0
- package/deno.lock +847 -0
- package/dist/ai/ai.service.js +497 -0
- package/dist/ai/types.d.ts +229 -0
- package/dist/audit/schemas.d.ts +6 -0
- package/dist/authentication/client/authentication.service.d.ts +176 -0
- package/dist/authentication/client/authentication.service.js +420 -0
- package/dist/document-management/server/schemas.d.ts +32 -0
- package/dist/document-management/server/services/document-property.service.d.ts +63 -0
- package/dist/eslint.config.js +86 -0
- package/dist/package.json +190 -0
- package/dist/schema/converters/openapi-converter.js +125 -0
- package/dist/schema/schemas/object.d.ts +95 -0
- package/dist/schema/schemas/object.js +209 -0
- package/dist/schema/schemas/string.d.ts +18 -0
- package/dist/schema/schemas/string.js +45 -0
- package/dist/test1.js +101 -0
- package/dist/tools/fetch-mime-types.js +14 -0
- package/dist/tsconfig.json +50 -0
- package/dist/tsconfig.server.json +6 -0
- package/dist/utils/stream/stream-helper-types.js +1 -0
- package/docker-compose.yml +30 -0
- package/generate-readmes.ts +340 -0
- package/package.json +1 -1
- package/scripts/generate-context7-docs.sh +52 -0
- package/scripts/manage-orm.sh +63 -0
- package/source/ai/README.md +281 -0
- package/source/ai/ai-file.service.ts +292 -0
- package/source/ai/ai-session.ts +63 -0
- package/source/ai/ai.service.ts +626 -0
- package/source/ai/functions.ts +49 -0
- package/source/ai/index.ts +6 -0
- package/source/ai/module.ts +16 -0
- package/source/ai/types.ts +263 -0
- package/source/api/README.md +257 -0
- package/source/api/client/client.ts +221 -0
- package/source/api/client/index.ts +1 -0
- package/source/api/default-error-handlers.ts +37 -0
- package/source/api/index.ts +9 -0
- package/source/api/response.ts +173 -0
- package/source/api/server/api-controller.ts +69 -0
- package/source/api/server/api-request-token.provider.ts +32 -0
- package/source/api/server/error-handler.ts +13 -0
- package/source/api/server/gateway.ts +347 -0
- package/source/api/server/index.ts +5 -0
- package/source/api/server/middlewares/allowed-methods.middleware.ts +19 -0
- package/source/api/server/middlewares/catch-error.middleware.ts +18 -0
- package/source/api/server/middlewares/content-type.middleware.ts +22 -0
- package/source/api/server/middlewares/cors.middleware.ts +73 -0
- package/source/api/server/middlewares/index.ts +5 -0
- package/source/api/server/middlewares/response-time.middleware.ts +12 -0
- package/source/api/server/module.ts +34 -0
- package/source/api/server/tokens.ts +12 -0
- package/source/api/types.ts +195 -0
- package/source/api/utils.ts +27 -0
- package/source/application/README.md +234 -0
- package/source/application/application.ts +173 -0
- package/source/application/index.ts +2 -0
- package/source/application/providers.ts +68 -0
- package/source/audit/README.md +272 -0
- package/source/audit/audit.model.ts +161 -0
- package/source/audit/auditor.ts +309 -0
- package/source/audit/drizzle/0000_bored_stick.sql +26 -0
- package/source/audit/drizzle/meta/0000_snapshot.json +195 -0
- package/source/audit/drizzle/meta/_journal.json +13 -0
- package/source/audit/drizzle.config.ts +13 -0
- package/source/audit/index.ts +5 -0
- package/source/audit/module.ts +40 -0
- package/source/audit/schemas.ts +11 -0
- package/source/audit/types.ts +29 -0
- package/source/authentication/README.md +288 -0
- package/source/authentication/authentication.api.ts +182 -0
- package/source/authentication/client/api.client.ts +36 -0
- package/source/authentication/client/authentication.service.ts +488 -0
- package/source/authentication/client/http-client.middleware.ts +32 -0
- package/source/authentication/client/index.ts +5 -0
- package/source/authentication/client/module.ts +56 -0
- package/source/authentication/client/tokens.ts +17 -0
- package/source/authentication/errors/index.ts +1 -0
- package/source/authentication/errors/secret-requirements.error.ts +9 -0
- package/source/authentication/index.ts +10 -0
- package/source/authentication/models/authentication-credentials.model.ts +24 -0
- package/source/authentication/models/authentication-session.model.ts +30 -0
- package/source/authentication/models/index.ts +6 -0
- package/source/authentication/models/init-secret-reset-data.model.ts +19 -0
- package/source/authentication/models/secret-check-result.model.ts +5 -0
- package/source/authentication/models/token-payload-base.model.ts +48 -0
- package/source/authentication/models/token.model.ts +61 -0
- package/source/authentication/server/authentication-ancillary.service.ts +64 -0
- package/source/authentication/server/authentication-api-request-token.provider.ts +30 -0
- package/source/authentication/server/authentication-secret-requirements.validator.ts +84 -0
- package/source/authentication/server/authentication.api-controller.ts +225 -0
- package/source/authentication/server/authentication.audit.ts +15 -0
- package/source/authentication/server/authentication.service.ts +833 -0
- package/source/authentication/server/drizzle/0000_calm_warlock.sql +28 -0
- package/source/authentication/server/drizzle/meta/0000_snapshot.json +189 -0
- package/source/authentication/server/drizzle/meta/_journal.json +13 -0
- package/source/authentication/server/drizzle.config.ts +13 -0
- package/source/authentication/server/helper.ts +140 -0
- package/source/authentication/server/index.ts +8 -0
- package/source/authentication/server/module.ts +69 -0
- package/source/authentication/server/schemas.ts +7 -0
- package/source/browser/README.md +311 -0
- package/source/browser/browser-context-controller.ts +149 -0
- package/source/browser/browser-controller.ts +118 -0
- package/source/browser/browser.service.ts +115 -0
- package/source/browser/document-controller.ts +114 -0
- package/source/browser/element-controller.ts +348 -0
- package/source/browser/frame-controller.ts +40 -0
- package/source/browser/index.ts +17 -0
- package/source/browser/locator-controller.ts +51 -0
- package/source/browser/module.ts +48 -0
- package/source/browser/page-controller.ts +203 -0
- package/source/browser/pdf-options.ts +68 -0
- package/source/browser/types.ts +21 -0
- package/source/browser/utils.ts +144 -0
- package/source/cancellation/README.md +301 -0
- package/source/cancellation/index.ts +6 -0
- package/source/cancellation/token.ts +339 -0
- package/source/collections/awaitable/awaitable-list.ts +135 -0
- package/source/collections/awaitable/awaitable-map.ts +124 -0
- package/source/collections/awaitable/awaitable-set.ts +113 -0
- package/source/collections/awaitable/index.ts +3 -0
- package/source/collections/collection.ts +10 -0
- package/source/collections/index.ts +12 -0
- package/source/collections/keyed-set.ts +104 -0
- package/source/collections/list.ts +18 -0
- package/source/collections/observable/index.ts +8 -0
- package/source/collections/observable/observable-array.ts +132 -0
- package/source/collections/observable/observable-collection-base.ts +119 -0
- package/source/collections/observable/observable-collection.ts +27 -0
- package/source/collections/observable/observable-list-base.ts +90 -0
- package/source/collections/observable/observable-list.ts +26 -0
- package/source/collections/observable/observable-map.ts +78 -0
- package/source/collections/observable/observable-set.ts +133 -0
- package/source/collections/observable/observable-sorted-array-list.ts +227 -0
- package/source/collections/sorted-array-list.ts +210 -0
- package/source/collections/sorted-list.ts +14 -0
- package/source/collections/sorted-map.ts +105 -0
- package/source/constants.ts +1 -0
- package/source/context/context.ts +92 -0
- package/source/context/index.ts +1 -0
- package/source/cookie/cookie.ts +99 -0
- package/source/cookie/index.ts +7 -0
- package/source/core.ts +34 -0
- package/source/css/css-variables.ts +73 -0
- package/source/css/index.ts +1 -0
- package/source/data-structures/README.md +330 -0
- package/source/data-structures/array-dictionary.ts +121 -0
- package/source/data-structures/array-list.ts +144 -0
- package/source/data-structures/cache.ts +67 -0
- package/source/data-structures/circular-buffer.ts +260 -0
- package/source/data-structures/collection.ts +137 -0
- package/source/data-structures/context-data-map.ts +60 -0
- package/source/data-structures/dictionary.ts +77 -0
- package/source/data-structures/distinct-collection.ts +113 -0
- package/source/data-structures/index-out-of-bounds.error.ts +11 -0
- package/source/data-structures/index.ts +24 -0
- package/source/data-structures/iterable-weak-map.ts +172 -0
- package/source/data-structures/linked-list.ts +478 -0
- package/source/data-structures/list.ts +164 -0
- package/source/data-structures/map-dictionary.ts +77 -0
- package/source/data-structures/multi-key-map.ts +204 -0
- package/source/data-structures/multi-key-set.ts +82 -0
- package/source/data-structures/set-collection.ts +115 -0
- package/source/data-structures/sorted-array-list.ts +172 -0
- package/source/data-structures/weak-ref-map.ts +171 -0
- package/source/decorators/index.ts +7 -0
- package/source/decorators/log.ts +46 -0
- package/source/disposable/disposable.ts +13 -0
- package/source/disposable/index.ts +2 -0
- package/source/disposable/using.ts +17 -0
- package/source/distributed-loop/controller.ts +4 -0
- package/source/distributed-loop/distributed-loop.ts +88 -0
- package/source/distributed-loop/index.ts +9 -0
- package/source/distributed-loop/provider.ts +16 -0
- package/source/document-management/CONCEPT.md +166 -0
- package/source/document-management/README.md +409 -0
- package/source/document-management/api/document-management.api.ts +235 -0
- package/source/document-management/api/index.ts +1 -0
- package/source/document-management/authorization/document-management-authorization.service.ts +99 -0
- package/source/document-management/authorization/index.ts +2 -0
- package/source/document-management/authorization/policies.ts +19 -0
- package/source/document-management/index.ts +5 -0
- package/source/document-management/localizations/english.ts +11 -0
- package/source/document-management/localizations/german.ts +11 -0
- package/source/document-management/localizations/index.ts +12 -0
- package/source/document-management/localizations/localization.ts +9 -0
- package/source/document-management/models/document-assignment-scope.model.ts +27 -0
- package/source/document-management/models/document-assignment-task.model.ts +30 -0
- package/source/document-management/models/document-category.model.ts +20 -0
- package/source/document-management/models/document-collection-assignment.model.ts +25 -0
- package/source/document-management/models/document-collection.model.ts +15 -0
- package/source/document-management/models/document-management-table.ts +6 -0
- package/source/document-management/models/document-property-value.model.ts +41 -0
- package/source/document-management/models/document-property.model.ts +30 -0
- package/source/document-management/models/document-request-collection-assignment.model.ts +24 -0
- package/source/document-management/models/document-request-template.ts +23 -0
- package/source/document-management/models/document-request.model.ts +44 -0
- package/source/document-management/models/document-requests-template.ts +15 -0
- package/source/document-management/models/document-tag-assignment.model.ts +22 -0
- package/source/document-management/models/document-tag.model.ts +15 -0
- package/source/document-management/models/document-type-property.model.ts +19 -0
- package/source/document-management/models/document-type-validation.model.ts +20 -0
- package/source/document-management/models/document-type.model.ts +20 -0
- package/source/document-management/models/document-validation-definition.model.ts +24 -0
- package/source/document-management/models/document-validation-execution-related-document.model.ts +23 -0
- package/source/document-management/models/document-validation-execution.model.ts +57 -0
- package/source/document-management/models/document-workflow.model.ts +68 -0
- package/source/document-management/models/document.model.ts +64 -0
- package/source/document-management/models/index.ts +22 -0
- package/source/document-management/server/api/document-management.api.ts +322 -0
- package/source/document-management/server/api/index.ts +1 -0
- package/source/document-management/server/configure.ts +10 -0
- package/source/document-management/server/drizzle/0000_ordinary_pretty_boy.sql +362 -0
- package/source/document-management/server/drizzle/meta/0000_snapshot.json +2680 -0
- package/source/document-management/server/drizzle/meta/_journal.json +13 -0
- package/source/document-management/server/drizzle.config.ts +13 -0
- package/source/document-management/server/index.ts +5 -0
- package/source/document-management/server/module.ts +30 -0
- package/source/document-management/server/schemas.ts +37 -0
- package/source/document-management/server/services/document-category-type.service.ts +95 -0
- package/source/document-management/server/services/document-collection.service.ts +100 -0
- package/source/document-management/server/services/document-file.service.ts +213 -0
- package/source/document-management/server/services/document-management-ai.service.ts +393 -0
- package/source/document-management/server/services/document-management-ancillary.service.ts +11 -0
- package/source/document-management/server/services/document-management-observation.service.ts +185 -0
- package/source/document-management/server/services/document-management.service.ts +411 -0
- package/source/document-management/server/services/document-property.service.ts +184 -0
- package/source/document-management/server/services/document-request.service.ts +142 -0
- package/source/document-management/server/services/document-tag.service.ts +70 -0
- package/source/document-management/server/services/document-validation.service.ts +187 -0
- package/source/document-management/server/services/document-workflow.service.ts +205 -0
- package/source/document-management/server/services/document.service.ts +197 -0
- package/source/document-management/server/services/enum-type-key.ts +1 -0
- package/source/document-management/server/services/index.ts +15 -0
- package/source/document-management/server/services/singleton.ts +12 -0
- package/source/document-management/server/validators/ai-validation-executor.ts +60 -0
- package/source/document-management/server/validators/index.ts +2 -0
- package/source/document-management/server/validators/single-document-validation-executor.ts +27 -0
- package/source/document-management/server/validators/validator.ts +23 -0
- package/source/document-management/service-models/categories-and-types.view-model.ts +10 -0
- package/source/document-management/service-models/document-collection-metadata.service-model.ts +15 -0
- package/source/document-management/service-models/document-folders.view-model.ts +35 -0
- package/source/document-management/service-models/document-management.view-model.ts +123 -0
- package/source/document-management/service-models/document-requests-template.view-model.ts +12 -0
- package/source/document-management/service-models/document.service-model.ts +157 -0
- package/source/document-management/service-models/enriched/enriched-document-assignment.view.ts +47 -0
- package/source/document-management/service-models/enriched/enriched-document-category.view.ts +75 -0
- package/source/document-management/service-models/enriched/enriched-document-collection.view.ts +72 -0
- package/source/document-management/service-models/enriched/enriched-document-management-data.view.ts +103 -0
- package/source/document-management/service-models/enriched/enriched-document-request.view.ts +48 -0
- package/source/document-management/service-models/enriched/enriched-document-type.view.ts +34 -0
- package/source/document-management/service-models/enriched/enriched-document.view.ts +97 -0
- package/source/document-management/service-models/enriched/enriched-requests-template-data.model.ts +35 -0
- package/source/document-management/service-models/enriched/enriched.ts +64 -0
- package/source/document-management/service-models/enriched/index.ts +9 -0
- package/source/document-management/service-models/index.ts +8 -0
- package/source/document-management/service-models/stats.view-model.ts +21 -0
- package/source/dom/file-download.ts +19 -0
- package/source/dom/file-select-dialog.ts +32 -0
- package/source/dom/index.ts +3 -0
- package/source/dom/observation/index.ts +6 -0
- package/source/dom/observation/intersection-observer.ts +61 -0
- package/source/dom/observation/media-query-observer.ts +19 -0
- package/source/dom/observation/mutation-observer.ts +43 -0
- package/source/dom/observation/performance-observer.ts +56 -0
- package/source/dom/observation/resize-observer.ts +46 -0
- package/source/dom/observation/touch-observer.ts +25 -0
- package/source/enumerable/README.md +192 -0
- package/source/enumerable/async-enumerable.ts +320 -0
- package/source/enumerable/enumerable-methods.ts +47 -0
- package/source/enumerable/enumerable.ts +243 -0
- package/source/enumerable/index.ts +8 -0
- package/source/enumeration/README.md +100 -0
- package/source/enumeration/enumeration.ts +26 -0
- package/source/enumeration/index.ts +1 -0
- package/source/environment.ts +41 -0
- package/source/errors/README.md +156 -0
- package/source/errors/api.error.ts +16 -0
- package/source/errors/assertion.error.ts +9 -0
- package/source/errors/bad-request.error.ts +9 -0
- package/source/errors/custom.error.ts +74 -0
- package/source/errors/details.error.ts +13 -0
- package/source/errors/errors.localization.ts +228 -0
- package/source/errors/forbidden.error.ts +9 -0
- package/source/errors/index.ts +25 -0
- package/source/errors/invalid-credentials.error.ts +9 -0
- package/source/errors/invalid-token.error.ts +9 -0
- package/source/errors/max-bytes-exceeded.error.ts +13 -0
- package/source/errors/method-not-allowed.error.ts +9 -0
- package/source/errors/multi.error.ts +13 -0
- package/source/errors/not-found.error.ts +9 -0
- package/source/errors/not-implemented.error.ts +9 -0
- package/source/errors/not-supported.error.ts +16 -0
- package/source/errors/timeout.error.ts +9 -0
- package/source/errors/unauthorized.error.ts +9 -0
- package/source/errors/unsupported-media-type.error.ts +9 -0
- package/source/errors/utils.ts +13 -0
- package/source/examples/api/authentication.ts +71 -0
- package/source/examples/api/basic-overview.ts +111 -0
- package/source/examples/api/custom-authentication.ts +140 -0
- package/source/examples/api/streaming.ts +127 -0
- package/source/examples/browser/basic.ts +35 -0
- package/source/examples/document-management/categories-and-types.ts +820 -0
- package/source/examples/document-management/main.ts +171 -0
- package/source/examples/http/client.ts +29 -0
- package/source/examples/mail/basic.ts +64 -0
- package/source/examples/mail/templates/hello-name.tsx +30 -0
- package/source/examples/pdf/basic.ts +70 -0
- package/source/examples/pdf/templates/hello-name.hbs +12 -0
- package/source/examples/pdf/templates/hello-name.ts +49 -0
- package/source/examples/reflection/basic.ts +38 -0
- package/source/examples/template/basic.ts +48 -0
- package/source/examples/template/templates/hello-jsx.tsx +17 -0
- package/source/examples/template/templates/hello-name.hbs +12 -0
- package/source/examples/template/templates/hello-name.ts +26 -0
- package/source/file/index.ts +2 -0
- package/source/file/mime-type.ts +21 -0
- package/source/file/mime-types.ts +773 -0
- package/source/file/server/index.ts +1 -0
- package/source/file/server/temporary-file.ts +67 -0
- package/source/formats/formats.ts +192 -0
- package/source/formats/index.ts +1 -0
- package/source/function/index.ts +7 -0
- package/source/function/log.ts +46 -0
- package/source/http/README.md +367 -0
- package/source/http/client/adapters/undici.adapter.ts +143 -0
- package/source/http/client/http-client-options.ts +12 -0
- package/source/http/client/http-client-request.ts +249 -0
- package/source/http/client/http-client-response.ts +58 -0
- package/source/http/client/http-client.adapter.ts +9 -0
- package/source/http/client/http-client.ts +391 -0
- package/source/http/client/index.ts +8 -0
- package/source/http/client/middleware.ts +8 -0
- package/source/http/client/module.ts +39 -0
- package/source/http/client/tokens.ts +4 -0
- package/source/http/cookie-parser.ts +30 -0
- package/source/http/http-body.ts +77 -0
- package/source/http/http-form.ts +27 -0
- package/source/http/http-headers.ts +124 -0
- package/source/http/http-query.ts +26 -0
- package/source/http/http-url-parameters.ts +17 -0
- package/source/http/http-value-map.ts +147 -0
- package/source/http/http.error.ts +89 -0
- package/source/http/index.ts +19 -0
- package/source/http/server/http-server-request.ts +40 -0
- package/source/http/server/http-server-response.ts +75 -0
- package/source/http/server/http-server.ts +18 -0
- package/source/http/server/index.ts +3 -0
- package/source/http/server/node/index.ts +2 -0
- package/source/http/server/node/module.ts +20 -0
- package/source/http/server/node/node-http-server.ts +270 -0
- package/source/http/tokens.ts +5 -0
- package/source/http/types.ts +51 -0
- package/source/http/utils.ts +143 -0
- package/source/image-service/image-service.ts +57 -0
- package/source/image-service/imgproxy/imgproxy-image-service.ts +115 -0
- package/source/image-service/imgproxy/index.ts +1 -0
- package/source/image-service/index.ts +8 -0
- package/source/import.ts +3 -0
- package/source/index.ts +9 -0
- package/source/injector/README.md +389 -0
- package/source/injector/decorators.ts +252 -0
- package/source/injector/index.ts +18 -0
- package/source/injector/inject.ts +181 -0
- package/source/injector/injector.ts +919 -0
- package/source/injector/interfaces.ts +28 -0
- package/source/injector/provider.ts +89 -0
- package/source/injector/registration.error.ts +12 -0
- package/source/injector/resolution.ts +25 -0
- package/source/injector/resolve-chain.ts +166 -0
- package/source/injector/resolve.error.ts +11 -0
- package/source/injector/symbols.ts +3 -0
- package/source/injector/token.ts +54 -0
- package/source/injector/type-info.ts +30 -0
- package/source/injector/types.ts +80 -0
- package/source/interfaces.ts +3 -0
- package/source/intl/index.ts +1 -0
- package/source/intl/number-parser.ts +50 -0
- package/source/json-path/index.ts +7 -0
- package/source/json-path/json-path.ts +226 -0
- package/source/jsx/index.ts +2 -0
- package/source/jsx/is-component-class.ts +9 -0
- package/source/jsx/render-to-string.tsx +23 -0
- package/source/key-value-store/README.md +231 -0
- package/source/key-value-store/index.ts +8 -0
- package/source/key-value-store/key-value-store.provider.ts +6 -0
- package/source/key-value-store/key-value.store.ts +68 -0
- package/source/key-value-store/postgres/drizzle/0000_shocking_slipstream.sql +12 -0
- package/source/key-value-store/postgres/drizzle/meta/0000_snapshot.json +97 -0
- package/source/key-value-store/postgres/drizzle/meta/_journal.json +13 -0
- package/source/key-value-store/postgres/drizzle.config.ts +13 -0
- package/source/key-value-store/postgres/index.ts +2 -0
- package/source/key-value-store/postgres/key-value-store.service.ts +75 -0
- package/source/key-value-store/postgres/models/index.ts +2 -0
- package/source/key-value-store/postgres/models/key-value.model.ts +15 -0
- package/source/key-value-store/postgres/models/schemas.ts +6 -0
- package/source/key-value-store/postgres/module.ts +31 -0
- package/source/lock/README.md +214 -0
- package/source/lock/index.ts +8 -0
- package/source/lock/lock.ts +133 -0
- package/source/lock/postgres/drizzle/0000_busy_tattoo.sql +7 -0
- package/source/lock/postgres/drizzle/meta/0000_snapshot.json +65 -0
- package/source/lock/postgres/drizzle/meta/_journal.json +13 -0
- package/source/lock/postgres/drizzle.config.ts +13 -0
- package/source/lock/postgres/index.ts +2 -0
- package/source/lock/postgres/lock.ts +145 -0
- package/source/lock/postgres/models/index.ts +2 -0
- package/source/lock/postgres/models/lock.model.ts +16 -0
- package/source/lock/postgres/models/schemas.ts +6 -0
- package/source/lock/postgres/module.ts +34 -0
- package/source/lock/postgres/provider.ts +22 -0
- package/source/lock/provider.ts +42 -0
- package/source/lock/web/index.ts +3 -0
- package/source/lock/web/module.ts +13 -0
- package/source/lock/web/web-lock.provider.ts +11 -0
- package/source/lock/web/web-lock.ts +101 -0
- package/source/logger/README.md +257 -0
- package/source/logger/formatter.ts +15 -0
- package/source/logger/formatters/index.ts +2 -0
- package/source/logger/formatters/json.ts +28 -0
- package/source/logger/formatters/pretty-print.ts +58 -0
- package/source/logger/index.ts +14 -0
- package/source/logger/level.ts +12 -0
- package/source/logger/logger.ts +156 -0
- package/source/logger/manager.ts +96 -0
- package/source/logger/tokens.ts +4 -0
- package/source/logger/transport.ts +27 -0
- package/source/logger/transports/console.ts +38 -0
- package/source/logger/transports/index.ts +1 -0
- package/source/mail/README.md +225 -0
- package/source/mail/clients/index.ts +1 -0
- package/source/mail/clients/nodemailer.mail-client.ts +90 -0
- package/source/mail/drizzle/0000_previous_malcolm_colcord.sql +13 -0
- package/source/mail/drizzle/0001_flimsy_bloodscream.sql +5 -0
- package/source/mail/drizzle/meta/0000_snapshot.json +100 -0
- package/source/mail/drizzle/meta/0001_snapshot.json +69 -0
- package/source/mail/drizzle/meta/_journal.json +20 -0
- package/source/mail/drizzle.config.ts +13 -0
- package/source/mail/index.ts +12 -0
- package/source/mail/mail.client.ts +33 -0
- package/source/mail/mail.service.ts +73 -0
- package/source/mail/models/index.ts +7 -0
- package/source/mail/models/mail-address.model.ts +1 -0
- package/source/mail/models/mail-content.model.ts +4 -0
- package/source/mail/models/mail-data.model.ts +24 -0
- package/source/mail/models/mail-log.model.ts +22 -0
- package/source/mail/models/mail-send-result.model.ts +8 -0
- package/source/mail/models/mail-template.model.ts +17 -0
- package/source/mail/models/schemas.ts +6 -0
- package/source/mail/module.ts +45 -0
- package/source/mail/tokens.ts +4 -0
- package/source/memory/finalization.ts +62 -0
- package/source/memory/index.ts +8 -0
- package/source/memory/observable-finalization-registry.ts +14 -0
- package/source/message-bus/README.md +245 -0
- package/source/message-bus/broadcast-channel/broadcast-channel-message-bus-provider.ts +14 -0
- package/source/message-bus/broadcast-channel/broadcast-channel-message-bus.ts +63 -0
- package/source/message-bus/broadcast-channel/index.ts +3 -0
- package/source/message-bus/broadcast-channel/module.ts +13 -0
- package/source/message-bus/index.ts +11 -0
- package/source/message-bus/local/index.ts +3 -0
- package/source/message-bus/local/local-message-bus-provider.ts +27 -0
- package/source/message-bus/local/local-message-bus.ts +43 -0
- package/source/message-bus/local/module.ts +13 -0
- package/source/message-bus/local/types.ts +4 -0
- package/source/message-bus/message-bus-base.ts +65 -0
- package/source/message-bus/message-bus-provider.ts +5 -0
- package/source/message-bus/message-bus.ts +24 -0
- package/source/module/README.md +169 -0
- package/source/module/index.ts +8 -0
- package/source/module/module.ts +64 -0
- package/source/module/modules/function.module.ts +24 -0
- package/source/module/modules/index.ts +2 -0
- package/source/module/modules/web-server.module.ts +64 -0
- package/source/object-storage/README.md +272 -0
- package/source/object-storage/index.ts +10 -0
- package/source/object-storage/object-storage-provider.ts +9 -0
- package/source/object-storage/object-storage.ts +137 -0
- package/source/object-storage/object.ts +23 -0
- package/source/object-storage/s3/index.ts +3 -0
- package/source/object-storage/s3/s3.object-storage-provider.ts +86 -0
- package/source/object-storage/s3/s3.object-storage.ts +253 -0
- package/source/object-storage/s3/s3.object.ts +56 -0
- package/source/openid-connect/cached-oidc-configuration.service.ts +39 -0
- package/source/openid-connect/index.ts +17 -0
- package/source/openid-connect/oidc-configuration.service.ts +47 -0
- package/source/openid-connect/oidc-state.model.ts +27 -0
- package/source/openid-connect/oidc.service-model.ts +57 -0
- package/source/openid-connect/oidc.service.ts +190 -0
- package/source/orm/README.md +385 -0
- package/source/orm/data-types/bytea.ts +21 -0
- package/source/orm/data-types/common.ts +28 -0
- package/source/orm/data-types/index.ts +9 -0
- package/source/orm/data-types/numeric-date.ts +29 -0
- package/source/orm/data-types/timestamp.ts +22 -0
- package/source/orm/data-types/tsvector.ts +16 -0
- package/source/orm/decorators.ts +546 -0
- package/source/orm/entity.ts +84 -0
- package/source/orm/index.ts +13 -0
- package/source/orm/query/base.ts +269 -0
- package/source/orm/query/index.ts +2 -0
- package/source/orm/query/parade.ts +135 -0
- package/source/orm/repository.types.ts +221 -0
- package/source/orm/schemas/index.ts +6 -0
- package/source/orm/schemas/json.ts +38 -0
- package/source/orm/schemas/numeric-date.ts +19 -0
- package/source/orm/schemas/numeric.ts +41 -0
- package/source/orm/schemas/timestamp.ts +29 -0
- package/source/orm/schemas/tsvector.ts +25 -0
- package/source/orm/schemas/uuid.ts +27 -0
- package/source/orm/server/database-schema.ts +65 -0
- package/source/orm/server/database.ts +51 -0
- package/source/orm/server/drizzle/index.ts +1 -0
- package/source/orm/server/drizzle/schema-converter.ts +507 -0
- package/source/orm/server/encryption.ts +65 -0
- package/source/orm/server/index.ts +13 -0
- package/source/orm/server/module.ts +45 -0
- package/source/orm/server/query-converter.ts +567 -0
- package/source/orm/server/repository.ts +1487 -0
- package/source/orm/server/tokens.ts +3 -0
- package/source/orm/server/transaction.ts +117 -0
- package/source/orm/server/transactional.ts +217 -0
- package/source/orm/server/types.ts +58 -0
- package/source/orm/sqls.ts +374 -0
- package/source/orm/types.ts +118 -0
- package/source/orm/utils.ts +25 -0
- package/source/password/README.md +123 -0
- package/source/password/have-i-been-pwned.ts +29 -0
- package/source/password/index.ts +10 -0
- package/source/password/password-check-result.model.ts +32 -0
- package/source/password/password-check.localization.ts +104 -0
- package/source/password/password-check.ts +70 -0
- package/source/pdf/README.md +206 -0
- package/source/pdf/index.ts +2 -0
- package/source/pdf/pdf.service.ts +197 -0
- package/source/pdf/utils.ts +91 -0
- package/source/polyfills.ts +1 -0
- package/source/pool/index.ts +7 -0
- package/source/pool/pool.ts +186 -0
- package/source/process/README.md +162 -0
- package/source/process/index.ts +1 -0
- package/source/process/spawn.ts +131 -0
- package/source/promise/README.md +209 -0
- package/source/promise/cancelable-promise.ts +46 -0
- package/source/promise/custom-promise.ts +21 -0
- package/source/promise/deferred-promise.ts +102 -0
- package/source/promise/index.ts +10 -0
- package/source/promise/lazy-promise.ts +46 -0
- package/source/promise/types.ts +3 -0
- package/source/queue/README.md +235 -0
- package/source/queue/enqueue-batch.ts +36 -0
- package/source/queue/index.ts +3 -0
- package/source/queue/postgres/drizzle/0000_zippy_moondragon.sql +11 -0
- package/source/queue/postgres/drizzle/0001_certain_wild_pack.sql +2 -0
- package/source/queue/postgres/drizzle/0002_dear_meggan.sql +2 -0
- package/source/queue/postgres/drizzle/meta/0000_snapshot.json +90 -0
- package/source/queue/postgres/drizzle/meta/0001_snapshot.json +103 -0
- package/source/queue/postgres/drizzle/meta/0002_snapshot.json +90 -0
- package/source/queue/postgres/drizzle/meta/_journal.json +27 -0
- package/source/queue/postgres/drizzle.config.ts +13 -0
- package/source/queue/postgres/index.ts +4 -0
- package/source/queue/postgres/job.model.ts +29 -0
- package/source/queue/postgres/module.ts +34 -0
- package/source/queue/postgres/queue.provider.ts +15 -0
- package/source/queue/postgres/queue.ts +208 -0
- package/source/queue/postgres/schemas.ts +6 -0
- package/source/queue/provider.ts +6 -0
- package/source/queue/queue.ts +150 -0
- package/source/random/index.ts +2 -0
- package/source/random/number-generator/index.ts +5 -0
- package/source/random/number-generator/mulberry32.ts +48 -0
- package/source/random/number-generator/random-number-generator-function.ts +6 -0
- package/source/random/number-generator/random-number-generator.ts +20 -0
- package/source/random/number-generator/seeded-random-number-generator.ts +17 -0
- package/source/random/number-generator/sfc32.ts +66 -0
- package/source/random/number-generator/utils.ts +10 -0
- package/source/random/series.ts +85 -0
- package/source/reflection/README.md +235 -0
- package/source/reflection/decorator-data.ts +68 -0
- package/source/reflection/decorators.ts +56 -0
- package/source/reflection/index.ts +5 -0
- package/source/reflection/registry.ts +212 -0
- package/source/reflection/types.ts +106 -0
- package/source/reflection/utils.ts +169 -0
- package/source/require.ts +7 -0
- package/source/rpc/README.md +234 -0
- package/source/rpc/adapters/index.ts +1 -0
- package/source/rpc/adapters/readable-stream.adapter.ts +97 -0
- package/source/rpc/endpoints/index.ts +1 -0
- package/source/rpc/endpoints/message-port.rpc-endpoint.ts +185 -0
- package/source/rpc/index.ts +6 -0
- package/source/rpc/model.ts +41 -0
- package/source/rpc/rpc.adapter.ts +14 -0
- package/source/rpc/rpc.endpoint.ts +86 -0
- package/source/rpc/rpc.error.ts +23 -0
- package/source/rpc/rpc.ts +419 -0
- package/source/rxjs-utils/cast.ts +9 -0
- package/source/rxjs-utils/index.ts +9 -0
- package/source/rxjs-utils/noop.ts +9 -0
- package/source/rxjs-utils/reject-error.ts +10 -0
- package/source/rxjs-utils/retry-backoff.ts +42 -0
- package/source/rxjs-utils/slow-array.ts +55 -0
- package/source/rxjs-utils/start-with-provider.ts +7 -0
- package/source/rxjs-utils/teardown.ts +25 -0
- package/source/rxjs-utils/timing.ts +43 -0
- package/source/rxjs-utils/untrack.ts +13 -0
- package/source/schema/README.md +414 -0
- package/source/schema/converters/index.ts +1 -0
- package/source/schema/converters/openapi-converter.ts +150 -0
- package/source/schema/decorators/class.ts +6 -0
- package/source/schema/decorators/description.ts +13 -0
- package/source/schema/decorators/index.ts +3 -0
- package/source/schema/decorators/schema.ts +57 -0
- package/source/schema/decorators/types.ts +28 -0
- package/source/schema/decorators/utils.ts +40 -0
- package/source/schema/index.ts +25 -0
- package/source/schema/schema.error.ts +88 -0
- package/source/schema/schema.ts +153 -0
- package/source/schema/schemas/any.ts +20 -0
- package/source/schema/schemas/array.ts +75 -0
- package/source/schema/schemas/bigint.ts +44 -0
- package/source/schema/schemas/boolean.ts +46 -0
- package/source/schema/schemas/date.ts +38 -0
- package/source/schema/schemas/defaulted.ts +39 -0
- package/source/schema/schemas/deferred.ts +30 -0
- package/source/schema/schemas/enumeration.ts +50 -0
- package/source/schema/schemas/function.ts +94 -0
- package/source/schema/schemas/index.ts +26 -0
- package/source/schema/schemas/instance.ts +46 -0
- package/source/schema/schemas/literal.ts +46 -0
- package/source/schema/schemas/never.ts +18 -0
- package/source/schema/schemas/nullable.ts +40 -0
- package/source/schema/schemas/number.ts +60 -0
- package/source/schema/schemas/object.ts +333 -0
- package/source/schema/schemas/one-or-many.ts +39 -0
- package/source/schema/schemas/optional.ts +43 -0
- package/source/schema/schemas/readable-stream.ts +21 -0
- package/source/schema/schemas/regexp.ts +34 -0
- package/source/schema/schemas/simple.ts +103 -0
- package/source/schema/schemas/string.ts +59 -0
- package/source/schema/schemas/symbol.ts +21 -0
- package/source/schema/schemas/transform.ts +34 -0
- package/source/schema/schemas/uint8-array.ts +38 -0
- package/source/schema/schemas/union.ts +61 -0
- package/source/schema/schemas/unknown.ts +20 -0
- package/source/schema/testable.ts +51 -0
- package/source/schema/types.ts +25 -0
- package/source/serializer/README.md +237 -0
- package/source/serializer/handlers/binary.ts +40 -0
- package/source/serializer/handlers/date.ts +7 -0
- package/source/serializer/handlers/error.ts +13 -0
- package/source/serializer/handlers/index.ts +7 -0
- package/source/serializer/handlers/map.ts +29 -0
- package/source/serializer/handlers/regex.ts +15 -0
- package/source/serializer/handlers/register.ts +44 -0
- package/source/serializer/handlers/set.ts +25 -0
- package/source/serializer/index.ts +4 -0
- package/source/serializer/serializable.ts +94 -0
- package/source/serializer/serializer.ts +396 -0
- package/source/serializer/types.ts +68 -0
- package/source/signals/api.ts +40 -0
- package/source/signals/computed-with-dependencies.ts +17 -0
- package/source/signals/effect-with-dependencies.ts +17 -0
- package/source/signals/implementation/README.md +1 -0
- package/source/signals/implementation/api.ts +29 -0
- package/source/signals/implementation/asserts.ts +24 -0
- package/source/signals/implementation/computed.ts +160 -0
- package/source/signals/implementation/configure.ts +23 -0
- package/source/signals/implementation/effect.ts +181 -0
- package/source/signals/implementation/equality.ts +19 -0
- package/source/signals/implementation/errors.ts +23 -0
- package/source/signals/implementation/graph.ts +500 -0
- package/source/signals/implementation/index.ts +13 -0
- package/source/signals/implementation/signal.ts +93 -0
- package/source/signals/implementation/to-observable.ts +43 -0
- package/source/signals/implementation/to-signal.ts +212 -0
- package/source/signals/implementation/untracked.ts +24 -0
- package/source/signals/implementation/watch.ts +145 -0
- package/source/signals/implementation/writable-signal.ts +79 -0
- package/source/signals/index.ts +9 -0
- package/source/signals/notifier.ts +22 -0
- package/source/signals/operators/combine.ts +16 -0
- package/source/signals/operators/defer.ts +10 -0
- package/source/signals/operators/derive-async.ts +64 -0
- package/source/signals/operators/index.ts +5 -0
- package/source/signals/operators/map.ts +5 -0
- package/source/signals/operators/switchAll.ts +6 -0
- package/source/signals/pipe.ts +41 -0
- package/source/signals/symbol.ts +6 -0
- package/source/signals/to-lazy-signal.ts +24 -0
- package/source/signals/types.ts +4 -0
- package/source/signals/untracked-operator.ts +14 -0
- package/source/sse/README.md +271 -0
- package/source/sse/data-stream-source.ts +99 -0
- package/source/sse/data-stream.ts +27 -0
- package/source/sse/index.ts +5 -0
- package/source/sse/model.ts +28 -0
- package/source/sse/server-sent-events-source.ts +78 -0
- package/source/sse/server-sent-events.ts +126 -0
- package/source/supports.ts +7 -0
- package/source/templates/README.md +261 -0
- package/source/templates/index.ts +9 -0
- package/source/templates/module.ts +41 -0
- package/source/templates/providers/file.template-provider.ts +53 -0
- package/source/templates/providers/index.ts +2 -0
- package/source/templates/providers/memory.template-provider.ts +29 -0
- package/source/templates/renderers/handlebars.template-renderer.ts +154 -0
- package/source/templates/renderers/index.ts +4 -0
- package/source/templates/renderers/jsx.template-renderer.tsx +23 -0
- package/source/templates/renderers/mjml.template-renderer.ts +57 -0
- package/source/templates/renderers/string.template-renderer.ts +27 -0
- package/source/templates/resolvers/file.template-resolver.ts +60 -0
- package/source/templates/resolvers/index.ts +3 -0
- package/source/templates/resolvers/jsx.template-resolver.ts +33 -0
- package/source/templates/resolvers/string.template-resolver.ts +28 -0
- package/source/templates/template-renderer.provider.ts +32 -0
- package/source/templates/template-resolver.provider.ts +32 -0
- package/source/templates/template.model.ts +51 -0
- package/source/templates/template.provider.ts +5 -0
- package/source/templates/template.renderer.ts +36 -0
- package/source/templates/template.resolver.ts +6 -0
- package/source/templates/template.service.ts +50 -0
- package/source/templates/tokens.ts +6 -0
- package/source/templates/types/index.ts +1 -0
- package/source/templates/types/jsx.intrinsic-elements.ts +7 -0
- package/source/test/drizzle/0000_natural_cannonball.sql +9 -0
- package/source/test/drizzle/meta/0000_snapshot.json +118 -0
- package/source/test/drizzle/meta/_journal.json +13 -0
- package/source/test/drizzle.config.ts +13 -0
- package/source/test/index.ts +3 -0
- package/source/test/module.ts +24 -0
- package/source/test/schemas.ts +6 -0
- package/source/test/test.model.ts +327 -0
- package/source/test1.ts +111 -0
- package/source/test2.ts +19 -0
- package/source/test3.ts +58 -0
- package/source/test4.ts +176 -0
- package/source/test5.ts +27 -0
- package/source/test6.ts +36 -0
- package/source/text/README.md +364 -0
- package/source/text/common-localization.ts +71 -0
- package/source/text/dynamic-text.model.ts +59 -0
- package/source/text/index.ts +4 -0
- package/source/text/localizable-text.model.ts +3 -0
- package/source/text/localization.service.ts +348 -0
- package/source/threading/index.ts +2 -0
- package/source/threading/thread-pool.ts +83 -0
- package/source/threading/thread-worker.ts +7 -0
- package/source/tokens.ts +3 -0
- package/source/tools/fetch-mime-types.ts +22 -0
- package/source/types/README.md +216 -0
- package/source/types/geo-json.ts +48 -0
- package/source/types/index.ts +4 -0
- package/source/types/tagged.ts +23 -0
- package/source/types/types.ts +290 -0
- package/source/types/web-types.ts +119 -0
- package/source/utils/README.md +385 -0
- package/source/utils/alphabet.ts +12 -0
- package/source/utils/any-iterable-iterator.ts +10 -0
- package/source/utils/array/array-backtracker.ts +62 -0
- package/source/utils/array/array.ts +114 -0
- package/source/utils/array/index.ts +2 -0
- package/source/utils/async-hook/async-hook.ts +153 -0
- package/source/utils/async-hook/index.ts +1 -0
- package/source/utils/async-iterable-helpers/all.ts +45 -0
- package/source/utils/async-iterable-helpers/any.ts +45 -0
- package/source/utils/async-iterable-helpers/assert.ts +40 -0
- package/source/utils/async-iterable-helpers/batch.ts +43 -0
- package/source/utils/async-iterable-helpers/buffer.ts +68 -0
- package/source/utils/async-iterable-helpers/concat.ts +8 -0
- package/source/utils/async-iterable-helpers/default-if-empty.ts +14 -0
- package/source/utils/async-iterable-helpers/deferred.ts +6 -0
- package/source/utils/async-iterable-helpers/difference.ts +36 -0
- package/source/utils/async-iterable-helpers/distinct.ts +39 -0
- package/source/utils/async-iterable-helpers/drain.ts +7 -0
- package/source/utils/async-iterable-helpers/filter.ts +41 -0
- package/source/utils/async-iterable-helpers/first-or-default.ts +15 -0
- package/source/utils/async-iterable-helpers/first.ts +15 -0
- package/source/utils/async-iterable-helpers/for-each.ts +34 -0
- package/source/utils/async-iterable-helpers/group-single.ts +9 -0
- package/source/utils/async-iterable-helpers/group-to-map.ts +88 -0
- package/source/utils/async-iterable-helpers/group-to-single-map.ts +88 -0
- package/source/utils/async-iterable-helpers/group.ts +9 -0
- package/source/utils/async-iterable-helpers/includes.ts +10 -0
- package/source/utils/async-iterable-helpers/index.ts +48 -0
- package/source/utils/async-iterable-helpers/interrupt.ts +31 -0
- package/source/utils/async-iterable-helpers/is-async-iterable.ts +11 -0
- package/source/utils/async-iterable-helpers/last-or-default.ts +22 -0
- package/source/utils/async-iterable-helpers/last.ts +22 -0
- package/source/utils/async-iterable-helpers/map-many.ts +37 -0
- package/source/utils/async-iterable-helpers/map.ts +37 -0
- package/source/utils/async-iterable-helpers/materialize.ts +34 -0
- package/source/utils/async-iterable-helpers/metadata.ts +58 -0
- package/source/utils/async-iterable-helpers/multiplex.ts +37 -0
- package/source/utils/async-iterable-helpers/observable-iterable.ts +40 -0
- package/source/utils/async-iterable-helpers/pairwise.ts +41 -0
- package/source/utils/async-iterable-helpers/parallel/feed.ts +32 -0
- package/source/utils/async-iterable-helpers/parallel/filter.ts +13 -0
- package/source/utils/async-iterable-helpers/parallel/for-each.ts +32 -0
- package/source/utils/async-iterable-helpers/parallel/group.ts +19 -0
- package/source/utils/async-iterable-helpers/parallel/index.ts +7 -0
- package/source/utils/async-iterable-helpers/parallel/map.ts +10 -0
- package/source/utils/async-iterable-helpers/parallel/tap.ts +10 -0
- package/source/utils/async-iterable-helpers/parallel/types.ts +2 -0
- package/source/utils/async-iterable-helpers/reduce.ts +51 -0
- package/source/utils/async-iterable-helpers/retry.ts +67 -0
- package/source/utils/async-iterable-helpers/single-or-default.ts +28 -0
- package/source/utils/async-iterable-helpers/single.ts +32 -0
- package/source/utils/async-iterable-helpers/skip.ts +6 -0
- package/source/utils/async-iterable-helpers/sort.ts +12 -0
- package/source/utils/async-iterable-helpers/take-until.ts +52 -0
- package/source/utils/async-iterable-helpers/take-while.ts +45 -0
- package/source/utils/async-iterable-helpers/take.ts +38 -0
- package/source/utils/async-iterable-helpers/tap.ts +37 -0
- package/source/utils/async-iterable-helpers/throttle.ts +15 -0
- package/source/utils/async-iterable-helpers/to-array.ts +16 -0
- package/source/utils/async-iterable-helpers/to-async-iterable-iterator.ts +53 -0
- package/source/utils/async-iterable-helpers/to-async-iterator.ts +43 -0
- package/source/utils/async-iterable-helpers/to-set.ts +16 -0
- package/source/utils/async-iterable-helpers/to-sync-iterable.ts +9 -0
- package/source/utils/async-iterable-helpers/types.ts +12 -0
- package/source/utils/async-iterable-helpers/while.ts +45 -0
- package/source/utils/async-iterator-iterable-iterator.ts +58 -0
- package/source/utils/backoff.ts +320 -0
- package/source/utils/base64.ts +207 -0
- package/source/utils/benchmark.ts +164 -0
- package/source/utils/binary-search.ts +114 -0
- package/source/utils/binary.ts +66 -0
- package/source/utils/clone.ts +57 -0
- package/source/utils/comparison.ts +112 -0
- package/source/utils/compression.ts +163 -0
- package/source/utils/config-parser.ts +37 -0
- package/source/utils/crc32.ts +38 -0
- package/source/utils/cryptography.ts +259 -0
- package/source/utils/date-time.ts +196 -0
- package/source/utils/encoding.ts +84 -0
- package/source/utils/enum.ts +54 -0
- package/source/utils/equals.ts +196 -0
- package/source/utils/event-loop.ts +29 -0
- package/source/utils/factory-map.ts +90 -0
- package/source/utils/feedable-async-iterable.ts +60 -0
- package/source/utils/file-reader.ts +27 -0
- package/source/utils/format-error.ts +133 -0
- package/source/utils/format.ts +42 -0
- package/source/utils/function/class.ts +14 -0
- package/source/utils/function/index.ts +3 -0
- package/source/utils/function/memoize.ts +190 -0
- package/source/utils/function/throttle.ts +33 -0
- package/source/utils/helpers.ts +91 -0
- package/source/utils/html-link-utils.ts +20 -0
- package/source/utils/image.ts +94 -0
- package/source/utils/index.ts +60 -0
- package/source/utils/iterable-helpers/all.ts +15 -0
- package/source/utils/iterable-helpers/any.ts +15 -0
- package/source/utils/iterable-helpers/assert.ts +11 -0
- package/source/utils/iterable-helpers/batch.ts +16 -0
- package/source/utils/iterable-helpers/concat.ts +5 -0
- package/source/utils/iterable-helpers/default-if-empty.ts +12 -0
- package/source/utils/iterable-helpers/deferred.ts +3 -0
- package/source/utils/iterable-helpers/difference.ts +32 -0
- package/source/utils/iterable-helpers/distinct.ts +15 -0
- package/source/utils/iterable-helpers/drain.ts +5 -0
- package/source/utils/iterable-helpers/filter.ts +13 -0
- package/source/utils/iterable-helpers/first-or-default.ts +12 -0
- package/source/utils/iterable-helpers/first.ts +12 -0
- package/source/utils/iterable-helpers/for-each.ts +9 -0
- package/source/utils/iterable-helpers/group-single.ts +8 -0
- package/source/utils/iterable-helpers/group-to-map.ts +40 -0
- package/source/utils/iterable-helpers/group-to-single-map.ts +40 -0
- package/source/utils/iterable-helpers/group.ts +8 -0
- package/source/utils/iterable-helpers/includes.ts +5 -0
- package/source/utils/iterable-helpers/index.ts +39 -0
- package/source/utils/iterable-helpers/is-iterable.ts +11 -0
- package/source/utils/iterable-helpers/last-or-default.ts +20 -0
- package/source/utils/iterable-helpers/last.ts +20 -0
- package/source/utils/iterable-helpers/map-many.ts +10 -0
- package/source/utils/iterable-helpers/map.ts +10 -0
- package/source/utils/iterable-helpers/materialize.ts +3 -0
- package/source/utils/iterable-helpers/metadata.ts +25 -0
- package/source/utils/iterable-helpers/pairwise.ts +15 -0
- package/source/utils/iterable-helpers/range.ts +5 -0
- package/source/utils/iterable-helpers/reduce.ts +17 -0
- package/source/utils/iterable-helpers/single-or-default.ts +22 -0
- package/source/utils/iterable-helpers/single.ts +26 -0
- package/source/utils/iterable-helpers/skip.ts +8 -0
- package/source/utils/iterable-helpers/sort.ts +7 -0
- package/source/utils/iterable-helpers/take-until.ts +15 -0
- package/source/utils/iterable-helpers/take-while.ts +16 -0
- package/source/utils/iterable-helpers/take.ts +14 -0
- package/source/utils/iterable-helpers/tap.ts +10 -0
- package/source/utils/iterable-helpers/types.ts +7 -0
- package/source/utils/iterable-helpers/while.ts +15 -0
- package/source/utils/jwt.ts +145 -0
- package/source/utils/map.ts +59 -0
- package/source/utils/math.ts +159 -0
- package/source/utils/merge.ts +89 -0
- package/source/utils/middleware.ts +69 -0
- package/source/utils/moving-metric.ts +222 -0
- package/source/utils/noop.ts +7 -0
- package/source/utils/object/decycle.ts +98 -0
- package/source/utils/object/dereference.ts +133 -0
- package/source/utils/object/forward-ref.ts +105 -0
- package/source/utils/object/index.ts +7 -0
- package/source/utils/object/lazy-property.ts +152 -0
- package/source/utils/object/merge.ts +88 -0
- package/source/utils/object/object.ts +203 -0
- package/source/utils/object/property-name.ts +100 -0
- package/source/utils/ordered-feedable-async-iterable.ts +60 -0
- package/source/utils/patch-worker.ts +109 -0
- package/source/utils/patterns.ts +10 -0
- package/source/utils/periodic-reporter.ts +81 -0
- package/source/utils/periodic-sampler.ts +100 -0
- package/source/utils/provider-function-iterable.ts +40 -0
- package/source/utils/proxy.ts +23 -0
- package/source/utils/random.ts +57 -0
- package/source/utils/reactive-value-to-signal.ts +23 -0
- package/source/utils/reflection.ts +27 -0
- package/source/utils/repl.ts +23 -0
- package/source/utils/set.ts +58 -0
- package/source/utils/singleton.ts +38 -0
- package/source/utils/sort.ts +90 -0
- package/source/utils/stream/finalize-stream.ts +68 -0
- package/source/utils/stream/from-promise.ts +34 -0
- package/source/utils/stream/index.ts +9 -0
- package/source/utils/stream/readable-stream-adapter.ts +46 -0
- package/source/utils/stream/size-limited-stream.ts +18 -0
- package/source/utils/stream/slice.ts +97 -0
- package/source/utils/stream/stream-helper-types.ts +18 -0
- package/source/utils/stream/stream-reader.ts +169 -0
- package/source/utils/stream/to-bytes-stream.ts +97 -0
- package/source/utils/stream/to-readable-stream.ts +8 -0
- package/source/utils/string/casing.ts +21 -0
- package/source/utils/string/hypenate.ts +3 -0
- package/source/utils/string/index.ts +5 -0
- package/source/utils/string/normalize.ts +100 -0
- package/source/utils/string/title-case.ts +10 -0
- package/source/utils/string/trim.ts +13 -0
- package/source/utils/throw.ts +9 -0
- package/source/utils/timer.ts +103 -0
- package/source/utils/timing.ts +70 -0
- package/source/utils/try-chain.ts +51 -0
- package/source/utils/try-ignore.ts +49 -0
- package/source/utils/type/extends.ts +7 -0
- package/source/utils/type/index.ts +1 -0
- package/source/utils/type-guards.ts +431 -0
- package/source/utils/type-of.ts +50 -0
- package/source/utils/units.ts +61 -0
- package/source/utils/url-builder.ts +78 -0
- package/source/utils/value-or-provider.ts +58 -0
- package/source/utils/z-base32.ts +59 -0
- package/tsconfig.base.json +50 -0
- package/tsconfig.dts.json +6 -0
- package/tsconfig.json +17 -46
- package/tstdl-features.xml +1239 -0
- package/typedoc.js +46 -0
- package/ai/ai.service.js +0 -490
- package/ai/types.d.ts +0 -223
- package/audit/schemas.d.ts +0 -6
- package/authentication/client/authentication.service.d.ts +0 -175
- package/authentication/client/authentication.service.js +0 -418
- package/document-management/server/schemas.d.ts +0 -32
- package/document-management/server/services/document-property.service.d.ts +0 -63
- package/schema/converters/openapi-converter.js +0 -118
- package/schema/schemas/object.d.ts +0 -91
- package/schema/schemas/object.js +0 -198
- package/schema/schemas/string.d.ts +0 -14
- package/schema/schemas/string.js +0 -34
- package/test1.js +0 -90
- /package/{ai → dist/ai}/ai-file.service.d.ts +0 -0
- /package/{ai → dist/ai}/ai-file.service.js +0 -0
- /package/{ai → dist/ai}/ai-session.d.ts +0 -0
- /package/{ai → dist/ai}/ai-session.js +0 -0
- /package/{ai → dist/ai}/ai.service.d.ts +0 -0
- /package/{ai → dist/ai}/functions.d.ts +0 -0
- /package/{ai → dist/ai}/functions.js +0 -0
- /package/{ai → dist/ai}/index.d.ts +0 -0
- /package/{ai → dist/ai}/index.js +0 -0
- /package/{ai → dist/ai}/module.d.ts +0 -0
- /package/{ai → dist/ai}/module.js +0 -0
- /package/{ai → dist/ai}/types.js +0 -0
- /package/{api → dist/api}/client/client.d.ts +0 -0
- /package/{api → dist/api}/client/client.js +0 -0
- /package/{api → dist/api}/client/index.d.ts +0 -0
- /package/{api → dist/api}/client/index.js +0 -0
- /package/{api → dist/api}/default-error-handlers.d.ts +0 -0
- /package/{api → dist/api}/default-error-handlers.js +0 -0
- /package/{api → dist/api}/index.d.ts +0 -0
- /package/{api → dist/api}/index.js +0 -0
- /package/{api → dist/api}/response.d.ts +0 -0
- /package/{api → dist/api}/response.js +0 -0
- /package/{api → dist/api}/server/api-controller.d.ts +0 -0
- /package/{api → dist/api}/server/api-controller.js +0 -0
- /package/{api → dist/api}/server/api-request-token.provider.d.ts +0 -0
- /package/{api → dist/api}/server/api-request-token.provider.js +0 -0
- /package/{api → dist/api}/server/error-handler.d.ts +0 -0
- /package/{api → dist/api}/server/error-handler.js +0 -0
- /package/{api → dist/api}/server/gateway.d.ts +0 -0
- /package/{api → dist/api}/server/gateway.js +0 -0
- /package/{api → dist/api}/server/index.d.ts +0 -0
- /package/{api → dist/api}/server/index.js +0 -0
- /package/{api → dist/api}/server/middlewares/allowed-methods.middleware.d.ts +0 -0
- /package/{api → dist/api}/server/middlewares/allowed-methods.middleware.js +0 -0
- /package/{api → dist/api}/server/middlewares/catch-error.middleware.d.ts +0 -0
- /package/{api → dist/api}/server/middlewares/catch-error.middleware.js +0 -0
- /package/{api → dist/api}/server/middlewares/content-type.middleware.d.ts +0 -0
- /package/{api → dist/api}/server/middlewares/content-type.middleware.js +0 -0
- /package/{api → dist/api}/server/middlewares/cors.middleware.d.ts +0 -0
- /package/{api → dist/api}/server/middlewares/cors.middleware.js +0 -0
- /package/{api → dist/api}/server/middlewares/index.d.ts +0 -0
- /package/{api → dist/api}/server/middlewares/index.js +0 -0
- /package/{api → dist/api}/server/middlewares/response-time.middleware.d.ts +0 -0
- /package/{api → dist/api}/server/middlewares/response-time.middleware.js +0 -0
- /package/{api → dist/api}/server/module.d.ts +0 -0
- /package/{api → dist/api}/server/module.js +0 -0
- /package/{api → dist/api}/server/tokens.d.ts +0 -0
- /package/{api → dist/api}/server/tokens.js +0 -0
- /package/{api → dist/api}/types.d.ts +0 -0
- /package/{api → dist/api}/types.js +0 -0
- /package/{api → dist/api}/utils.d.ts +0 -0
- /package/{api → dist/api}/utils.js +0 -0
- /package/{application → dist/application}/application.d.ts +0 -0
- /package/{application → dist/application}/application.js +0 -0
- /package/{application → dist/application}/index.d.ts +0 -0
- /package/{application → dist/application}/index.js +0 -0
- /package/{application → dist/application}/providers.d.ts +0 -0
- /package/{application → dist/application}/providers.js +0 -0
- /package/{audit → dist/audit}/audit.model.d.ts +0 -0
- /package/{audit → dist/audit}/audit.model.js +0 -0
- /package/{audit → dist/audit}/auditor.d.ts +0 -0
- /package/{audit → dist/audit}/auditor.js +0 -0
- /package/{audit → dist/audit}/drizzle/0000_bored_stick.sql +0 -0
- /package/{audit → dist/audit}/drizzle/meta/0000_snapshot.json +0 -0
- /package/{audit → dist/audit}/drizzle/meta/_journal.json +0 -0
- /package/{audit → dist/audit}/drizzle.config.d.ts +0 -0
- /package/{audit → dist/audit}/drizzle.config.js +0 -0
- /package/{audit → dist/audit}/index.d.ts +0 -0
- /package/{audit → dist/audit}/index.js +0 -0
- /package/{audit → dist/audit}/module.d.ts +0 -0
- /package/{audit → dist/audit}/module.js +0 -0
- /package/{audit → dist/audit}/schemas.js +0 -0
- /package/{audit → dist/audit}/types.d.ts +0 -0
- /package/{audit → dist/audit}/types.js +0 -0
- /package/{authentication → dist/authentication}/authentication.api.d.ts +0 -0
- /package/{authentication → dist/authentication}/authentication.api.js +0 -0
- /package/{authentication → dist/authentication}/client/api.client.d.ts +0 -0
- /package/{authentication → dist/authentication}/client/api.client.js +0 -0
- /package/{authentication → dist/authentication}/client/http-client.middleware.d.ts +0 -0
- /package/{authentication → dist/authentication}/client/http-client.middleware.js +0 -0
- /package/{authentication → dist/authentication}/client/index.d.ts +0 -0
- /package/{authentication → dist/authentication}/client/index.js +0 -0
- /package/{authentication → dist/authentication}/client/module.d.ts +0 -0
- /package/{authentication → dist/authentication}/client/module.js +0 -0
- /package/{authentication → dist/authentication}/client/tokens.d.ts +0 -0
- /package/{authentication → dist/authentication}/client/tokens.js +0 -0
- /package/{authentication → dist/authentication}/errors/index.d.ts +0 -0
- /package/{authentication → dist/authentication}/errors/index.js +0 -0
- /package/{authentication → dist/authentication}/errors/secret-requirements.error.d.ts +0 -0
- /package/{authentication → dist/authentication}/errors/secret-requirements.error.js +0 -0
- /package/{authentication → dist/authentication}/index.d.ts +0 -0
- /package/{authentication → dist/authentication}/index.js +0 -0
- /package/{authentication → dist/authentication}/models/authentication-credentials.model.d.ts +0 -0
- /package/{authentication → dist/authentication}/models/authentication-credentials.model.js +0 -0
- /package/{authentication → dist/authentication}/models/authentication-session.model.d.ts +0 -0
- /package/{authentication → dist/authentication}/models/authentication-session.model.js +0 -0
- /package/{authentication → dist/authentication}/models/index.d.ts +0 -0
- /package/{authentication → dist/authentication}/models/index.js +0 -0
- /package/{authentication → dist/authentication}/models/init-secret-reset-data.model.d.ts +0 -0
- /package/{authentication → dist/authentication}/models/init-secret-reset-data.model.js +0 -0
- /package/{authentication → dist/authentication}/models/secret-check-result.model.d.ts +0 -0
- /package/{authentication → dist/authentication}/models/secret-check-result.model.js +0 -0
- /package/{authentication → dist/authentication}/models/token-payload-base.model.d.ts +0 -0
- /package/{authentication → dist/authentication}/models/token-payload-base.model.js +0 -0
- /package/{authentication → dist/authentication}/models/token.model.d.ts +0 -0
- /package/{authentication → dist/authentication}/models/token.model.js +0 -0
- /package/{authentication → dist/authentication}/server/authentication-ancillary.service.d.ts +0 -0
- /package/{authentication → dist/authentication}/server/authentication-ancillary.service.js +0 -0
- /package/{authentication → dist/authentication}/server/authentication-api-request-token.provider.d.ts +0 -0
- /package/{authentication → dist/authentication}/server/authentication-api-request-token.provider.js +0 -0
- /package/{authentication → dist/authentication}/server/authentication-secret-requirements.validator.d.ts +0 -0
- /package/{authentication → dist/authentication}/server/authentication-secret-requirements.validator.js +0 -0
- /package/{authentication → dist/authentication}/server/authentication.api-controller.d.ts +0 -0
- /package/{authentication → dist/authentication}/server/authentication.api-controller.js +0 -0
- /package/{authentication → dist/authentication}/server/authentication.audit.d.ts +0 -0
- /package/{authentication → dist/authentication}/server/authentication.audit.js +0 -0
- /package/{authentication → dist/authentication}/server/authentication.service.d.ts +0 -0
- /package/{authentication → dist/authentication}/server/authentication.service.js +0 -0
- /package/{authentication → dist/authentication}/server/drizzle/0000_calm_warlock.sql +0 -0
- /package/{authentication → dist/authentication}/server/drizzle/meta/0000_snapshot.json +0 -0
- /package/{authentication → dist/authentication}/server/drizzle/meta/_journal.json +0 -0
- /package/{authentication → dist/authentication}/server/drizzle.config.d.ts +0 -0
- /package/{authentication → dist/authentication}/server/drizzle.config.js +0 -0
- /package/{authentication → dist/authentication}/server/helper.d.ts +0 -0
- /package/{authentication → dist/authentication}/server/helper.js +0 -0
- /package/{authentication → dist/authentication}/server/index.d.ts +0 -0
- /package/{authentication → dist/authentication}/server/index.js +0 -0
- /package/{authentication → dist/authentication}/server/module.d.ts +0 -0
- /package/{authentication → dist/authentication}/server/module.js +0 -0
- /package/{authentication → dist/authentication}/server/schemas.d.ts +0 -0
- /package/{authentication → dist/authentication}/server/schemas.js +0 -0
- /package/{browser → dist/browser}/browser-context-controller.d.ts +0 -0
- /package/{browser → dist/browser}/browser-context-controller.js +0 -0
- /package/{browser → dist/browser}/browser-controller.d.ts +0 -0
- /package/{browser → dist/browser}/browser-controller.js +0 -0
- /package/{browser → dist/browser}/browser.service.d.ts +0 -0
- /package/{browser → dist/browser}/browser.service.js +0 -0
- /package/{browser → dist/browser}/document-controller.d.ts +0 -0
- /package/{browser → dist/browser}/document-controller.js +0 -0
- /package/{browser → dist/browser}/element-controller.d.ts +0 -0
- /package/{browser → dist/browser}/element-controller.js +0 -0
- /package/{browser → dist/browser}/frame-controller.d.ts +0 -0
- /package/{browser → dist/browser}/frame-controller.js +0 -0
- /package/{browser → dist/browser}/index.d.ts +0 -0
- /package/{browser → dist/browser}/index.js +0 -0
- /package/{browser → dist/browser}/locator-controller.d.ts +0 -0
- /package/{browser → dist/browser}/locator-controller.js +0 -0
- /package/{browser → dist/browser}/module.d.ts +0 -0
- /package/{browser → dist/browser}/module.js +0 -0
- /package/{browser → dist/browser}/page-controller.d.ts +0 -0
- /package/{browser → dist/browser}/page-controller.js +0 -0
- /package/{browser → dist/browser}/pdf-options.d.ts +0 -0
- /package/{browser → dist/browser}/pdf-options.js +0 -0
- /package/{browser → dist/browser}/types.d.ts +0 -0
- /package/{browser → dist/browser}/types.js +0 -0
- /package/{browser → dist/browser}/utils.d.ts +0 -0
- /package/{browser → dist/browser}/utils.js +0 -0
- /package/{cancellation → dist/cancellation}/index.d.ts +0 -0
- /package/{cancellation → dist/cancellation}/index.js +0 -0
- /package/{cancellation → dist/cancellation}/token.d.ts +0 -0
- /package/{cancellation → dist/cancellation}/token.js +0 -0
- /package/{collections → dist/collections}/awaitable/awaitable-list.d.ts +0 -0
- /package/{collections → dist/collections}/awaitable/awaitable-list.js +0 -0
- /package/{collections → dist/collections}/awaitable/awaitable-map.d.ts +0 -0
- /package/{collections → dist/collections}/awaitable/awaitable-map.js +0 -0
- /package/{collections → dist/collections}/awaitable/awaitable-set.d.ts +0 -0
- /package/{collections → dist/collections}/awaitable/awaitable-set.js +0 -0
- /package/{collections → dist/collections}/awaitable/index.d.ts +0 -0
- /package/{collections → dist/collections}/awaitable/index.js +0 -0
- /package/{collections → dist/collections}/collection.d.ts +0 -0
- /package/{collections → dist/collections}/collection.js +0 -0
- /package/{collections → dist/collections}/index.d.ts +0 -0
- /package/{collections → dist/collections}/index.js +0 -0
- /package/{collections → dist/collections}/keyed-set.d.ts +0 -0
- /package/{collections → dist/collections}/keyed-set.js +0 -0
- /package/{collections → dist/collections}/list.d.ts +0 -0
- /package/{collections → dist/collections}/list.js +0 -0
- /package/{collections → dist/collections}/observable/index.d.ts +0 -0
- /package/{collections → dist/collections}/observable/index.js +0 -0
- /package/{collections → dist/collections}/observable/observable-array.d.ts +0 -0
- /package/{collections → dist/collections}/observable/observable-array.js +0 -0
- /package/{collections → dist/collections}/observable/observable-collection-base.d.ts +0 -0
- /package/{collections → dist/collections}/observable/observable-collection-base.js +0 -0
- /package/{collections → dist/collections}/observable/observable-collection.d.ts +0 -0
- /package/{collections → dist/collections}/observable/observable-collection.js +0 -0
- /package/{collections → dist/collections}/observable/observable-list-base.d.ts +0 -0
- /package/{collections → dist/collections}/observable/observable-list-base.js +0 -0
- /package/{collections → dist/collections}/observable/observable-list.d.ts +0 -0
- /package/{collections → dist/collections}/observable/observable-list.js +0 -0
- /package/{collections → dist/collections}/observable/observable-map.d.ts +0 -0
- /package/{collections → dist/collections}/observable/observable-map.js +0 -0
- /package/{collections → dist/collections}/observable/observable-set.d.ts +0 -0
- /package/{collections → dist/collections}/observable/observable-set.js +0 -0
- /package/{collections → dist/collections}/observable/observable-sorted-array-list.d.ts +0 -0
- /package/{collections → dist/collections}/observable/observable-sorted-array-list.js +0 -0
- /package/{collections → dist/collections}/sorted-array-list.d.ts +0 -0
- /package/{collections → dist/collections}/sorted-array-list.js +0 -0
- /package/{collections → dist/collections}/sorted-list.d.ts +0 -0
- /package/{collections → dist/collections}/sorted-list.js +0 -0
- /package/{collections → dist/collections}/sorted-map.d.ts +0 -0
- /package/{collections → dist/collections}/sorted-map.js +0 -0
- /package/{constants.d.ts → dist/constants.d.ts} +0 -0
- /package/{constants.js → dist/constants.js} +0 -0
- /package/{context → dist/context}/context.d.ts +0 -0
- /package/{context → dist/context}/context.js +0 -0
- /package/{context → dist/context}/index.d.ts +0 -0
- /package/{context → dist/context}/index.js +0 -0
- /package/{cookie → dist/cookie}/cookie.d.ts +0 -0
- /package/{cookie → dist/cookie}/cookie.js +0 -0
- /package/{cookie → dist/cookie}/index.d.ts +0 -0
- /package/{cookie → dist/cookie}/index.js +0 -0
- /package/{core.d.ts → dist/core.d.ts} +0 -0
- /package/{core.js → dist/core.js} +0 -0
- /package/{css → dist/css}/css-variables.d.ts +0 -0
- /package/{css → dist/css}/css-variables.js +0 -0
- /package/{css → dist/css}/index.d.ts +0 -0
- /package/{css → dist/css}/index.js +0 -0
- /package/{data-structures → dist/data-structures}/array-dictionary.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/array-dictionary.js +0 -0
- /package/{data-structures → dist/data-structures}/array-list.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/array-list.js +0 -0
- /package/{data-structures → dist/data-structures}/cache.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/cache.js +0 -0
- /package/{data-structures → dist/data-structures}/circular-buffer.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/circular-buffer.js +0 -0
- /package/{data-structures → dist/data-structures}/collection.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/collection.js +0 -0
- /package/{data-structures → dist/data-structures}/context-data-map.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/context-data-map.js +0 -0
- /package/{data-structures → dist/data-structures}/dictionary.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/dictionary.js +0 -0
- /package/{data-structures → dist/data-structures}/distinct-collection.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/distinct-collection.js +0 -0
- /package/{data-structures → dist/data-structures}/index-out-of-bounds.error.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/index-out-of-bounds.error.js +0 -0
- /package/{data-structures → dist/data-structures}/index.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/index.js +0 -0
- /package/{data-structures → dist/data-structures}/iterable-weak-map.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/iterable-weak-map.js +0 -0
- /package/{data-structures → dist/data-structures}/linked-list.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/linked-list.js +0 -0
- /package/{data-structures → dist/data-structures}/list.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/list.js +0 -0
- /package/{data-structures → dist/data-structures}/map-dictionary.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/map-dictionary.js +0 -0
- /package/{data-structures → dist/data-structures}/multi-key-map.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/multi-key-map.js +0 -0
- /package/{data-structures → dist/data-structures}/multi-key-set.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/multi-key-set.js +0 -0
- /package/{data-structures → dist/data-structures}/set-collection.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/set-collection.js +0 -0
- /package/{data-structures → dist/data-structures}/sorted-array-list.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/sorted-array-list.js +0 -0
- /package/{data-structures → dist/data-structures}/weak-ref-map.d.ts +0 -0
- /package/{data-structures → dist/data-structures}/weak-ref-map.js +0 -0
- /package/{decorators → dist/decorators}/index.d.ts +0 -0
- /package/{decorators → dist/decorators}/index.js +0 -0
- /package/{decorators → dist/decorators}/log.d.ts +0 -0
- /package/{decorators → dist/decorators}/log.js +0 -0
- /package/{disposable → dist/disposable}/disposable.d.ts +0 -0
- /package/{disposable → dist/disposable}/disposable.js +0 -0
- /package/{disposable → dist/disposable}/index.d.ts +0 -0
- /package/{disposable → dist/disposable}/index.js +0 -0
- /package/{disposable → dist/disposable}/using.d.ts +0 -0
- /package/{disposable → dist/disposable}/using.js +0 -0
- /package/{distributed-loop → dist/distributed-loop}/controller.d.ts +0 -0
- /package/{distributed-loop → dist/distributed-loop}/controller.js +0 -0
- /package/{distributed-loop → dist/distributed-loop}/distributed-loop.d.ts +0 -0
- /package/{distributed-loop → dist/distributed-loop}/distributed-loop.js +0 -0
- /package/{distributed-loop → dist/distributed-loop}/index.d.ts +0 -0
- /package/{distributed-loop → dist/distributed-loop}/index.js +0 -0
- /package/{distributed-loop → dist/distributed-loop}/provider.d.ts +0 -0
- /package/{distributed-loop → dist/distributed-loop}/provider.js +0 -0
- /package/{document-management → dist/document-management}/api/document-management.api.d.ts +0 -0
- /package/{document-management → dist/document-management}/api/document-management.api.js +0 -0
- /package/{document-management → dist/document-management}/api/index.d.ts +0 -0
- /package/{document-management → dist/document-management}/api/index.js +0 -0
- /package/{document-management → dist/document-management}/authorization/document-management-authorization.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/authorization/document-management-authorization.service.js +0 -0
- /package/{document-management → dist/document-management}/authorization/index.d.ts +0 -0
- /package/{document-management → dist/document-management}/authorization/index.js +0 -0
- /package/{document-management → dist/document-management}/authorization/policies.d.ts +0 -0
- /package/{document-management → dist/document-management}/authorization/policies.js +0 -0
- /package/{document-management → dist/document-management}/index.d.ts +0 -0
- /package/{document-management → dist/document-management}/index.js +0 -0
- /package/{document-management → dist/document-management}/localizations/english.d.ts +0 -0
- /package/{document-management → dist/document-management}/localizations/english.js +0 -0
- /package/{document-management → dist/document-management}/localizations/german.d.ts +0 -0
- /package/{document-management → dist/document-management}/localizations/german.js +0 -0
- /package/{document-management → dist/document-management}/localizations/index.d.ts +0 -0
- /package/{document-management → dist/document-management}/localizations/index.js +0 -0
- /package/{document-management → dist/document-management}/localizations/localization.d.ts +0 -0
- /package/{document-management → dist/document-management}/localizations/localization.js +0 -0
- /package/{document-management → dist/document-management}/models/document-assignment-scope.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-assignment-scope.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-assignment-task.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-assignment-task.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-category.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-category.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-collection-assignment.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-collection-assignment.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-collection.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-collection.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-management-table.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-management-table.js +0 -0
- /package/{document-management → dist/document-management}/models/document-property-value.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-property-value.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-property.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-property.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-request-collection-assignment.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-request-collection-assignment.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-request-template.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-request-template.js +0 -0
- /package/{document-management → dist/document-management}/models/document-request.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-request.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-requests-template.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-requests-template.js +0 -0
- /package/{document-management → dist/document-management}/models/document-tag-assignment.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-tag-assignment.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-tag.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-tag.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-type-property.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-type-property.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-type-validation.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-type-validation.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-type.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-type.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-validation-definition.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-validation-definition.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-validation-execution-related-document.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-validation-execution-related-document.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-validation-execution.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-validation-execution.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document-workflow.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document-workflow.model.js +0 -0
- /package/{document-management → dist/document-management}/models/document.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/document.model.js +0 -0
- /package/{document-management → dist/document-management}/models/index.d.ts +0 -0
- /package/{document-management → dist/document-management}/models/index.js +0 -0
- /package/{document-management → dist/document-management}/server/api/document-management.api.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/api/document-management.api.js +0 -0
- /package/{document-management → dist/document-management}/server/api/index.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/api/index.js +0 -0
- /package/{document-management → dist/document-management}/server/configure.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/configure.js +0 -0
- /package/{document-management → dist/document-management}/server/drizzle/0000_ordinary_pretty_boy.sql +0 -0
- /package/{document-management → dist/document-management}/server/drizzle/meta/0000_snapshot.json +0 -0
- /package/{document-management → dist/document-management}/server/drizzle/meta/_journal.json +0 -0
- /package/{document-management → dist/document-management}/server/drizzle.config.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/drizzle.config.js +0 -0
- /package/{document-management → dist/document-management}/server/index.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/index.js +0 -0
- /package/{document-management → dist/document-management}/server/module.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/module.js +0 -0
- /package/{document-management → dist/document-management}/server/schemas.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-category-type.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document-category-type.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-collection.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document-collection.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-file.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document-file.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-management-ai.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document-management-ai.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-management-ancillary.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document-management-ancillary.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-management-observation.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document-management-observation.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-management.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document-management.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-property.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-request.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document-request.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-tag.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document-tag.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-validation.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document-validation.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document-workflow.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document-workflow.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/document.service.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/document.service.js +0 -0
- /package/{document-management → dist/document-management}/server/services/enum-type-key.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/enum-type-key.js +0 -0
- /package/{document-management → dist/document-management}/server/services/index.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/index.js +0 -0
- /package/{document-management → dist/document-management}/server/services/singleton.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/services/singleton.js +0 -0
- /package/{document-management → dist/document-management}/server/validators/ai-validation-executor.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/validators/ai-validation-executor.js +0 -0
- /package/{document-management → dist/document-management}/server/validators/index.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/validators/index.js +0 -0
- /package/{document-management → dist/document-management}/server/validators/single-document-validation-executor.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/validators/single-document-validation-executor.js +0 -0
- /package/{document-management → dist/document-management}/server/validators/validator.d.ts +0 -0
- /package/{document-management → dist/document-management}/server/validators/validator.js +0 -0
- /package/{document-management → dist/document-management}/service-models/categories-and-types.view-model.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/categories-and-types.view-model.js +0 -0
- /package/{document-management → dist/document-management}/service-models/document-collection-metadata.service-model.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/document-collection-metadata.service-model.js +0 -0
- /package/{document-management → dist/document-management}/service-models/document-folders.view-model.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/document-folders.view-model.js +0 -0
- /package/{document-management → dist/document-management}/service-models/document-management.view-model.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/document-management.view-model.js +0 -0
- /package/{document-management → dist/document-management}/service-models/document-requests-template.view-model.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/document-requests-template.view-model.js +0 -0
- /package/{document-management → dist/document-management}/service-models/document.service-model.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/document.service-model.js +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-assignment.view.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-assignment.view.js +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-category.view.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-category.view.js +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-collection.view.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-collection.view.js +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-management-data.view.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-management-data.view.js +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-request.view.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-request.view.js +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-type.view.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document-type.view.js +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document.view.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-document.view.js +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-requests-template-data.model.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched-requests-template-data.model.js +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/enriched.js +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/index.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/enriched/index.js +0 -0
- /package/{document-management → dist/document-management}/service-models/index.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/index.js +0 -0
- /package/{document-management → dist/document-management}/service-models/stats.view-model.d.ts +0 -0
- /package/{document-management → dist/document-management}/service-models/stats.view-model.js +0 -0
- /package/{dom → dist/dom}/file-download.d.ts +0 -0
- /package/{dom → dist/dom}/file-download.js +0 -0
- /package/{dom → dist/dom}/file-select-dialog.d.ts +0 -0
- /package/{dom → dist/dom}/file-select-dialog.js +0 -0
- /package/{dom → dist/dom}/index.d.ts +0 -0
- /package/{dom → dist/dom}/index.js +0 -0
- /package/{dom → dist/dom}/observation/index.d.ts +0 -0
- /package/{dom → dist/dom}/observation/index.js +0 -0
- /package/{dom → dist/dom}/observation/intersection-observer.d.ts +0 -0
- /package/{dom → dist/dom}/observation/intersection-observer.js +0 -0
- /package/{dom → dist/dom}/observation/media-query-observer.d.ts +0 -0
- /package/{dom → dist/dom}/observation/media-query-observer.js +0 -0
- /package/{dom → dist/dom}/observation/mutation-observer.d.ts +0 -0
- /package/{dom → dist/dom}/observation/mutation-observer.js +0 -0
- /package/{dom → dist/dom}/observation/performance-observer.d.ts +0 -0
- /package/{dom → dist/dom}/observation/performance-observer.js +0 -0
- /package/{dom → dist/dom}/observation/resize-observer.d.ts +0 -0
- /package/{dom → dist/dom}/observation/resize-observer.js +0 -0
- /package/{dom → dist/dom}/observation/touch-observer.d.ts +0 -0
- /package/{dom → dist/dom}/observation/touch-observer.js +0 -0
- /package/{enumerable → dist/enumerable}/async-enumerable.d.ts +0 -0
- /package/{enumerable → dist/enumerable}/async-enumerable.js +0 -0
- /package/{enumerable → dist/enumerable}/enumerable-methods.d.ts +0 -0
- /package/{enumerable → dist/enumerable}/enumerable-methods.js +0 -0
- /package/{enumerable → dist/enumerable}/enumerable.d.ts +0 -0
- /package/{enumerable → dist/enumerable}/enumerable.js +0 -0
- /package/{enumerable → dist/enumerable}/index.d.ts +0 -0
- /package/{enumerable → dist/enumerable}/index.js +0 -0
- /package/{enumeration → dist/enumeration}/enumeration.d.ts +0 -0
- /package/{enumeration → dist/enumeration}/enumeration.js +0 -0
- /package/{enumeration → dist/enumeration}/index.d.ts +0 -0
- /package/{enumeration → dist/enumeration}/index.js +0 -0
- /package/{environment.d.ts → dist/environment.d.ts} +0 -0
- /package/{environment.js → dist/environment.js} +0 -0
- /package/{errors → dist/errors}/api.error.d.ts +0 -0
- /package/{errors → dist/errors}/api.error.js +0 -0
- /package/{errors → dist/errors}/assertion.error.d.ts +0 -0
- /package/{errors → dist/errors}/assertion.error.js +0 -0
- /package/{errors → dist/errors}/bad-request.error.d.ts +0 -0
- /package/{errors → dist/errors}/bad-request.error.js +0 -0
- /package/{errors → dist/errors}/custom.error.d.ts +0 -0
- /package/{errors → dist/errors}/custom.error.js +0 -0
- /package/{errors → dist/errors}/details.error.d.ts +0 -0
- /package/{errors → dist/errors}/details.error.js +0 -0
- /package/{errors → dist/errors}/errors.localization.d.ts +0 -0
- /package/{errors → dist/errors}/errors.localization.js +0 -0
- /package/{errors → dist/errors}/forbidden.error.d.ts +0 -0
- /package/{errors → dist/errors}/forbidden.error.js +0 -0
- /package/{errors → dist/errors}/index.d.ts +0 -0
- /package/{errors → dist/errors}/index.js +0 -0
- /package/{errors → dist/errors}/invalid-credentials.error.d.ts +0 -0
- /package/{errors → dist/errors}/invalid-credentials.error.js +0 -0
- /package/{errors → dist/errors}/invalid-token.error.d.ts +0 -0
- /package/{errors → dist/errors}/invalid-token.error.js +0 -0
- /package/{errors → dist/errors}/max-bytes-exceeded.error.d.ts +0 -0
- /package/{errors → dist/errors}/max-bytes-exceeded.error.js +0 -0
- /package/{errors → dist/errors}/method-not-allowed.error.d.ts +0 -0
- /package/{errors → dist/errors}/method-not-allowed.error.js +0 -0
- /package/{errors → dist/errors}/multi.error.d.ts +0 -0
- /package/{errors → dist/errors}/multi.error.js +0 -0
- /package/{errors → dist/errors}/not-found.error.d.ts +0 -0
- /package/{errors → dist/errors}/not-found.error.js +0 -0
- /package/{errors → dist/errors}/not-implemented.error.d.ts +0 -0
- /package/{errors → dist/errors}/not-implemented.error.js +0 -0
- /package/{errors → dist/errors}/not-supported.error.d.ts +0 -0
- /package/{errors → dist/errors}/not-supported.error.js +0 -0
- /package/{errors → dist/errors}/timeout.error.d.ts +0 -0
- /package/{errors → dist/errors}/timeout.error.js +0 -0
- /package/{errors → dist/errors}/unauthorized.error.d.ts +0 -0
- /package/{errors → dist/errors}/unauthorized.error.js +0 -0
- /package/{errors → dist/errors}/unsupported-media-type.error.d.ts +0 -0
- /package/{errors → dist/errors}/unsupported-media-type.error.js +0 -0
- /package/{errors → dist/errors}/utils.d.ts +0 -0
- /package/{errors → dist/errors}/utils.js +0 -0
- /package/{examples → dist/examples}/api/authentication.d.ts +0 -0
- /package/{examples → dist/examples}/api/authentication.js +0 -0
- /package/{examples → dist/examples}/api/basic-overview.d.ts +0 -0
- /package/{examples → dist/examples}/api/basic-overview.js +0 -0
- /package/{examples → dist/examples}/api/custom-authentication.d.ts +0 -0
- /package/{examples → dist/examples}/api/custom-authentication.js +0 -0
- /package/{examples → dist/examples}/api/streaming.d.ts +0 -0
- /package/{examples → dist/examples}/api/streaming.js +0 -0
- /package/{examples → dist/examples}/browser/basic.d.ts +0 -0
- /package/{examples → dist/examples}/browser/basic.js +0 -0
- /package/{examples → dist/examples}/document-management/categories-and-types.d.ts +0 -0
- /package/{examples → dist/examples}/document-management/categories-and-types.js +0 -0
- /package/{examples → dist/examples}/document-management/main.d.ts +0 -0
- /package/{examples → dist/examples}/document-management/main.js +0 -0
- /package/{examples → dist/examples}/http/client.d.ts +0 -0
- /package/{examples → dist/examples}/http/client.js +0 -0
- /package/{examples → dist/examples}/mail/basic.d.ts +0 -0
- /package/{examples → dist/examples}/mail/basic.js +0 -0
- /package/{examples → dist/examples}/mail/templates/hello-name.d.ts +0 -0
- /package/{examples → dist/examples}/mail/templates/hello-name.js +0 -0
- /package/{examples → dist/examples}/pdf/basic.d.ts +0 -0
- /package/{examples → dist/examples}/pdf/basic.js +0 -0
- /package/{examples → dist/examples}/pdf/templates/hello-name.d.ts +0 -0
- /package/{examples → dist/examples}/pdf/templates/hello-name.js +0 -0
- /package/{examples → dist/examples}/reflection/basic.d.ts +0 -0
- /package/{examples → dist/examples}/reflection/basic.js +0 -0
- /package/{examples → dist/examples}/template/basic.d.ts +0 -0
- /package/{examples → dist/examples}/template/basic.js +0 -0
- /package/{examples → dist/examples}/template/templates/hello-jsx.d.ts +0 -0
- /package/{examples → dist/examples}/template/templates/hello-jsx.js +0 -0
- /package/{examples → dist/examples}/template/templates/hello-name.d.ts +0 -0
- /package/{examples → dist/examples}/template/templates/hello-name.js +0 -0
- /package/{file → dist/file}/index.d.ts +0 -0
- /package/{file → dist/file}/index.js +0 -0
- /package/{file → dist/file}/mime-type.d.ts +0 -0
- /package/{file → dist/file}/mime-type.js +0 -0
- /package/{file → dist/file}/mime-types.d.ts +0 -0
- /package/{file → dist/file}/mime-types.js +0 -0
- /package/{file → dist/file}/server/index.d.ts +0 -0
- /package/{file → dist/file}/server/index.js +0 -0
- /package/{file → dist/file}/server/temporary-file.d.ts +0 -0
- /package/{file → dist/file}/server/temporary-file.js +0 -0
- /package/{formats → dist/formats}/formats.d.ts +0 -0
- /package/{formats → dist/formats}/formats.js +0 -0
- /package/{formats → dist/formats}/index.d.ts +0 -0
- /package/{formats → dist/formats}/index.js +0 -0
- /package/{function → dist/function}/index.d.ts +0 -0
- /package/{function → dist/function}/index.js +0 -0
- /package/{function → dist/function}/log.d.ts +0 -0
- /package/{function → dist/function}/log.js +0 -0
- /package/{http → dist/http}/client/adapters/undici.adapter.d.ts +0 -0
- /package/{http → dist/http}/client/adapters/undici.adapter.js +0 -0
- /package/{http → dist/http}/client/http-client-options.d.ts +0 -0
- /package/{http → dist/http}/client/http-client-options.js +0 -0
- /package/{http → dist/http}/client/http-client-request.d.ts +0 -0
- /package/{http → dist/http}/client/http-client-request.js +0 -0
- /package/{http → dist/http}/client/http-client-response.d.ts +0 -0
- /package/{http → dist/http}/client/http-client-response.js +0 -0
- /package/{http → dist/http}/client/http-client.adapter.d.ts +0 -0
- /package/{http → dist/http}/client/http-client.adapter.js +0 -0
- /package/{http → dist/http}/client/http-client.d.ts +0 -0
- /package/{http → dist/http}/client/http-client.js +0 -0
- /package/{http → dist/http}/client/index.d.ts +0 -0
- /package/{http → dist/http}/client/index.js +0 -0
- /package/{http → dist/http}/client/middleware.d.ts +0 -0
- /package/{http → dist/http}/client/middleware.js +0 -0
- /package/{http → dist/http}/client/module.d.ts +0 -0
- /package/{http → dist/http}/client/module.js +0 -0
- /package/{http → dist/http}/client/tokens.d.ts +0 -0
- /package/{http → dist/http}/client/tokens.js +0 -0
- /package/{http → dist/http}/cookie-parser.d.ts +0 -0
- /package/{http → dist/http}/cookie-parser.js +0 -0
- /package/{http → dist/http}/http-body.d.ts +0 -0
- /package/{http → dist/http}/http-body.js +0 -0
- /package/{http → dist/http}/http-form.d.ts +0 -0
- /package/{http → dist/http}/http-form.js +0 -0
- /package/{http → dist/http}/http-headers.d.ts +0 -0
- /package/{http → dist/http}/http-headers.js +0 -0
- /package/{http → dist/http}/http-query.d.ts +0 -0
- /package/{http → dist/http}/http-query.js +0 -0
- /package/{http → dist/http}/http-url-parameters.d.ts +0 -0
- /package/{http → dist/http}/http-url-parameters.js +0 -0
- /package/{http → dist/http}/http-value-map.d.ts +0 -0
- /package/{http → dist/http}/http-value-map.js +0 -0
- /package/{http → dist/http}/http.error.d.ts +0 -0
- /package/{http → dist/http}/http.error.js +0 -0
- /package/{http → dist/http}/index.d.ts +0 -0
- /package/{http → dist/http}/index.js +0 -0
- /package/{http → dist/http}/server/http-server-request.d.ts +0 -0
- /package/{http → dist/http}/server/http-server-request.js +0 -0
- /package/{http → dist/http}/server/http-server-response.d.ts +0 -0
- /package/{http → dist/http}/server/http-server-response.js +0 -0
- /package/{http → dist/http}/server/http-server.d.ts +0 -0
- /package/{http → dist/http}/server/http-server.js +0 -0
- /package/{http → dist/http}/server/index.d.ts +0 -0
- /package/{http → dist/http}/server/index.js +0 -0
- /package/{http → dist/http}/server/node/index.d.ts +0 -0
- /package/{http → dist/http}/server/node/index.js +0 -0
- /package/{http → dist/http}/server/node/module.d.ts +0 -0
- /package/{http → dist/http}/server/node/module.js +0 -0
- /package/{http → dist/http}/server/node/node-http-server.d.ts +0 -0
- /package/{http → dist/http}/server/node/node-http-server.js +0 -0
- /package/{http → dist/http}/tokens.d.ts +0 -0
- /package/{http → dist/http}/tokens.js +0 -0
- /package/{http → dist/http}/types.d.ts +0 -0
- /package/{http → dist/http}/types.js +0 -0
- /package/{http → dist/http}/utils.d.ts +0 -0
- /package/{http → dist/http}/utils.js +0 -0
- /package/{image-service → dist/image-service}/image-service.d.ts +0 -0
- /package/{image-service → dist/image-service}/image-service.js +0 -0
- /package/{image-service → dist/image-service}/imgproxy/imgproxy-image-service.d.ts +0 -0
- /package/{image-service → dist/image-service}/imgproxy/imgproxy-image-service.js +0 -0
- /package/{image-service → dist/image-service}/imgproxy/index.d.ts +0 -0
- /package/{image-service → dist/image-service}/imgproxy/index.js +0 -0
- /package/{image-service → dist/image-service}/index.d.ts +0 -0
- /package/{image-service → dist/image-service}/index.js +0 -0
- /package/{import.d.ts → dist/import.d.ts} +0 -0
- /package/{import.js → dist/import.js} +0 -0
- /package/{index.d.ts → dist/index.d.ts} +0 -0
- /package/{index.js → dist/index.js} +0 -0
- /package/{injector → dist/injector}/decorators.d.ts +0 -0
- /package/{injector → dist/injector}/decorators.js +0 -0
- /package/{injector → dist/injector}/index.d.ts +0 -0
- /package/{injector → dist/injector}/index.js +0 -0
- /package/{injector → dist/injector}/inject.d.ts +0 -0
- /package/{injector → dist/injector}/inject.js +0 -0
- /package/{injector → dist/injector}/injector.d.ts +0 -0
- /package/{injector → dist/injector}/injector.js +0 -0
- /package/{injector → dist/injector}/interfaces.d.ts +0 -0
- /package/{injector → dist/injector}/interfaces.js +0 -0
- /package/{injector → dist/injector}/provider.d.ts +0 -0
- /package/{injector → dist/injector}/provider.js +0 -0
- /package/{injector → dist/injector}/registration.error.d.ts +0 -0
- /package/{injector → dist/injector}/registration.error.js +0 -0
- /package/{injector → dist/injector}/resolution.d.ts +0 -0
- /package/{injector → dist/injector}/resolution.js +0 -0
- /package/{injector → dist/injector}/resolve-chain.d.ts +0 -0
- /package/{injector → dist/injector}/resolve-chain.js +0 -0
- /package/{injector → dist/injector}/resolve.error.d.ts +0 -0
- /package/{injector → dist/injector}/resolve.error.js +0 -0
- /package/{injector → dist/injector}/symbols.d.ts +0 -0
- /package/{injector → dist/injector}/symbols.js +0 -0
- /package/{injector → dist/injector}/token.d.ts +0 -0
- /package/{injector → dist/injector}/token.js +0 -0
- /package/{injector → dist/injector}/type-info.d.ts +0 -0
- /package/{injector → dist/injector}/type-info.js +0 -0
- /package/{injector → dist/injector}/types.d.ts +0 -0
- /package/{injector → dist/injector}/types.js +0 -0
- /package/{interfaces.d.ts → dist/interfaces.d.ts} +0 -0
- /package/{interfaces.js → dist/interfaces.js} +0 -0
- /package/{intl → dist/intl}/index.d.ts +0 -0
- /package/{intl → dist/intl}/index.js +0 -0
- /package/{intl → dist/intl}/number-parser.d.ts +0 -0
- /package/{intl → dist/intl}/number-parser.js +0 -0
- /package/{json-path → dist/json-path}/index.d.ts +0 -0
- /package/{json-path → dist/json-path}/index.js +0 -0
- /package/{json-path → dist/json-path}/json-path.d.ts +0 -0
- /package/{json-path → dist/json-path}/json-path.js +0 -0
- /package/{jsx → dist/jsx}/index.d.ts +0 -0
- /package/{jsx → dist/jsx}/index.js +0 -0
- /package/{jsx → dist/jsx}/is-component-class.d.ts +0 -0
- /package/{jsx → dist/jsx}/is-component-class.js +0 -0
- /package/{jsx → dist/jsx}/render-to-string.d.ts +0 -0
- /package/{jsx → dist/jsx}/render-to-string.js +0 -0
- /package/{key-value-store → dist/key-value-store}/index.d.ts +0 -0
- /package/{key-value-store → dist/key-value-store}/index.js +0 -0
- /package/{key-value-store → dist/key-value-store}/key-value-store.provider.d.ts +0 -0
- /package/{key-value-store → dist/key-value-store}/key-value-store.provider.js +0 -0
- /package/{key-value-store → dist/key-value-store}/key-value.store.d.ts +0 -0
- /package/{key-value-store → dist/key-value-store}/key-value.store.js +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/drizzle/0000_shocking_slipstream.sql +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/drizzle/meta/0000_snapshot.json +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/drizzle/meta/_journal.json +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/drizzle.config.d.ts +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/drizzle.config.js +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/index.d.ts +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/index.js +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/key-value-store.service.d.ts +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/key-value-store.service.js +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/models/index.d.ts +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/models/index.js +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/models/key-value.model.d.ts +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/models/key-value.model.js +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/models/schemas.d.ts +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/models/schemas.js +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/module.d.ts +0 -0
- /package/{key-value-store → dist/key-value-store}/postgres/module.js +0 -0
- /package/{lock → dist/lock}/index.d.ts +0 -0
- /package/{lock → dist/lock}/index.js +0 -0
- /package/{lock → dist/lock}/lock.d.ts +0 -0
- /package/{lock → dist/lock}/lock.js +0 -0
- /package/{lock → dist/lock}/postgres/drizzle/0000_busy_tattoo.sql +0 -0
- /package/{lock → dist/lock}/postgres/drizzle/meta/0000_snapshot.json +0 -0
- /package/{lock → dist/lock}/postgres/drizzle/meta/_journal.json +0 -0
- /package/{lock → dist/lock}/postgres/drizzle.config.d.ts +0 -0
- /package/{lock → dist/lock}/postgres/drizzle.config.js +0 -0
- /package/{lock → dist/lock}/postgres/index.d.ts +0 -0
- /package/{lock → dist/lock}/postgres/index.js +0 -0
- /package/{lock → dist/lock}/postgres/lock.d.ts +0 -0
- /package/{lock → dist/lock}/postgres/lock.js +0 -0
- /package/{lock → dist/lock}/postgres/models/index.d.ts +0 -0
- /package/{lock → dist/lock}/postgres/models/index.js +0 -0
- /package/{lock → dist/lock}/postgres/models/lock.model.d.ts +0 -0
- /package/{lock → dist/lock}/postgres/models/lock.model.js +0 -0
- /package/{lock → dist/lock}/postgres/models/schemas.d.ts +0 -0
- /package/{lock → dist/lock}/postgres/models/schemas.js +0 -0
- /package/{lock → dist/lock}/postgres/module.d.ts +0 -0
- /package/{lock → dist/lock}/postgres/module.js +0 -0
- /package/{lock → dist/lock}/postgres/provider.d.ts +0 -0
- /package/{lock → dist/lock}/postgres/provider.js +0 -0
- /package/{lock → dist/lock}/provider.d.ts +0 -0
- /package/{lock → dist/lock}/provider.js +0 -0
- /package/{lock → dist/lock}/web/index.d.ts +0 -0
- /package/{lock → dist/lock}/web/index.js +0 -0
- /package/{lock → dist/lock}/web/module.d.ts +0 -0
- /package/{lock → dist/lock}/web/module.js +0 -0
- /package/{lock → dist/lock}/web/web-lock.d.ts +0 -0
- /package/{lock → dist/lock}/web/web-lock.js +0 -0
- /package/{lock → dist/lock}/web/web-lock.provider.d.ts +0 -0
- /package/{lock → dist/lock}/web/web-lock.provider.js +0 -0
- /package/{logger → dist/logger}/formatter.d.ts +0 -0
- /package/{logger → dist/logger}/formatter.js +0 -0
- /package/{logger → dist/logger}/formatters/index.d.ts +0 -0
- /package/{logger → dist/logger}/formatters/index.js +0 -0
- /package/{logger → dist/logger}/formatters/json.d.ts +0 -0
- /package/{logger → dist/logger}/formatters/json.js +0 -0
- /package/{logger → dist/logger}/formatters/pretty-print.d.ts +0 -0
- /package/{logger → dist/logger}/formatters/pretty-print.js +0 -0
- /package/{logger → dist/logger}/index.d.ts +0 -0
- /package/{logger → dist/logger}/index.js +0 -0
- /package/{logger → dist/logger}/level.d.ts +0 -0
- /package/{logger → dist/logger}/level.js +0 -0
- /package/{logger → dist/logger}/logger.d.ts +0 -0
- /package/{logger → dist/logger}/logger.js +0 -0
- /package/{logger → dist/logger}/manager.d.ts +0 -0
- /package/{logger → dist/logger}/manager.js +0 -0
- /package/{logger → dist/logger}/tokens.d.ts +0 -0
- /package/{logger → dist/logger}/tokens.js +0 -0
- /package/{logger → dist/logger}/transport.d.ts +0 -0
- /package/{logger → dist/logger}/transport.js +0 -0
- /package/{logger → dist/logger}/transports/console.d.ts +0 -0
- /package/{logger → dist/logger}/transports/console.js +0 -0
- /package/{logger → dist/logger}/transports/index.d.ts +0 -0
- /package/{logger → dist/logger}/transports/index.js +0 -0
- /package/{mail → dist/mail}/clients/index.d.ts +0 -0
- /package/{mail → dist/mail}/clients/index.js +0 -0
- /package/{mail → dist/mail}/clients/nodemailer.mail-client.d.ts +0 -0
- /package/{mail → dist/mail}/clients/nodemailer.mail-client.js +0 -0
- /package/{mail → dist/mail}/drizzle/0000_previous_malcolm_colcord.sql +0 -0
- /package/{mail → dist/mail}/drizzle/0001_flimsy_bloodscream.sql +0 -0
- /package/{mail → dist/mail}/drizzle/meta/0000_snapshot.json +0 -0
- /package/{mail → dist/mail}/drizzle/meta/0001_snapshot.json +0 -0
- /package/{mail → dist/mail}/drizzle/meta/_journal.json +0 -0
- /package/{mail → dist/mail}/drizzle.config.d.ts +0 -0
- /package/{mail → dist/mail}/drizzle.config.js +0 -0
- /package/{mail → dist/mail}/index.d.ts +0 -0
- /package/{mail → dist/mail}/index.js +0 -0
- /package/{mail → dist/mail}/mail.client.d.ts +0 -0
- /package/{mail → dist/mail}/mail.client.js +0 -0
- /package/{mail → dist/mail}/mail.service.d.ts +0 -0
- /package/{mail → dist/mail}/mail.service.js +0 -0
- /package/{mail → dist/mail}/models/index.d.ts +0 -0
- /package/{mail → dist/mail}/models/index.js +0 -0
- /package/{mail → dist/mail}/models/mail-address.model.d.ts +0 -0
- /package/{mail → dist/mail}/models/mail-address.model.js +0 -0
- /package/{mail → dist/mail}/models/mail-content.model.d.ts +0 -0
- /package/{mail → dist/mail}/models/mail-content.model.js +0 -0
- /package/{mail → dist/mail}/models/mail-data.model.d.ts +0 -0
- /package/{mail → dist/mail}/models/mail-data.model.js +0 -0
- /package/{mail → dist/mail}/models/mail-log.model.d.ts +0 -0
- /package/{mail → dist/mail}/models/mail-log.model.js +0 -0
- /package/{mail → dist/mail}/models/mail-send-result.model.d.ts +0 -0
- /package/{mail → dist/mail}/models/mail-send-result.model.js +0 -0
- /package/{mail → dist/mail}/models/mail-template.model.d.ts +0 -0
- /package/{mail → dist/mail}/models/mail-template.model.js +0 -0
- /package/{mail → dist/mail}/models/schemas.d.ts +0 -0
- /package/{mail → dist/mail}/models/schemas.js +0 -0
- /package/{mail → dist/mail}/module.d.ts +0 -0
- /package/{mail → dist/mail}/module.js +0 -0
- /package/{mail → dist/mail}/tokens.d.ts +0 -0
- /package/{mail → dist/mail}/tokens.js +0 -0
- /package/{memory → dist/memory}/finalization.d.ts +0 -0
- /package/{memory → dist/memory}/finalization.js +0 -0
- /package/{memory → dist/memory}/index.d.ts +0 -0
- /package/{memory → dist/memory}/index.js +0 -0
- /package/{memory → dist/memory}/observable-finalization-registry.d.ts +0 -0
- /package/{memory → dist/memory}/observable-finalization-registry.js +0 -0
- /package/{message-bus → dist/message-bus}/broadcast-channel/broadcast-channel-message-bus-provider.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/broadcast-channel/broadcast-channel-message-bus-provider.js +0 -0
- /package/{message-bus → dist/message-bus}/broadcast-channel/broadcast-channel-message-bus.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/broadcast-channel/broadcast-channel-message-bus.js +0 -0
- /package/{message-bus → dist/message-bus}/broadcast-channel/index.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/broadcast-channel/index.js +0 -0
- /package/{message-bus → dist/message-bus}/broadcast-channel/module.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/broadcast-channel/module.js +0 -0
- /package/{message-bus → dist/message-bus}/index.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/index.js +0 -0
- /package/{message-bus → dist/message-bus}/local/index.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/local/index.js +0 -0
- /package/{message-bus → dist/message-bus}/local/local-message-bus-provider.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/local/local-message-bus-provider.js +0 -0
- /package/{message-bus → dist/message-bus}/local/local-message-bus.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/local/local-message-bus.js +0 -0
- /package/{message-bus → dist/message-bus}/local/module.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/local/module.js +0 -0
- /package/{message-bus → dist/message-bus}/local/types.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/local/types.js +0 -0
- /package/{message-bus → dist/message-bus}/message-bus-base.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/message-bus-base.js +0 -0
- /package/{message-bus → dist/message-bus}/message-bus-provider.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/message-bus-provider.js +0 -0
- /package/{message-bus → dist/message-bus}/message-bus.d.ts +0 -0
- /package/{message-bus → dist/message-bus}/message-bus.js +0 -0
- /package/{module → dist/module}/index.d.ts +0 -0
- /package/{module → dist/module}/index.js +0 -0
- /package/{module → dist/module}/module.d.ts +0 -0
- /package/{module → dist/module}/module.js +0 -0
- /package/{module → dist/module}/modules/function.module.d.ts +0 -0
- /package/{module → dist/module}/modules/function.module.js +0 -0
- /package/{module → dist/module}/modules/index.d.ts +0 -0
- /package/{module → dist/module}/modules/index.js +0 -0
- /package/{module → dist/module}/modules/web-server.module.d.ts +0 -0
- /package/{module → dist/module}/modules/web-server.module.js +0 -0
- /package/{object-storage → dist/object-storage}/index.d.ts +0 -0
- /package/{object-storage → dist/object-storage}/index.js +0 -0
- /package/{object-storage → dist/object-storage}/object-storage-provider.d.ts +0 -0
- /package/{object-storage → dist/object-storage}/object-storage-provider.js +0 -0
- /package/{object-storage → dist/object-storage}/object-storage.d.ts +0 -0
- /package/{object-storage → dist/object-storage}/object-storage.js +0 -0
- /package/{object-storage → dist/object-storage}/object.d.ts +0 -0
- /package/{object-storage → dist/object-storage}/object.js +0 -0
- /package/{object-storage → dist/object-storage}/s3/index.d.ts +0 -0
- /package/{object-storage → dist/object-storage}/s3/index.js +0 -0
- /package/{object-storage → dist/object-storage}/s3/s3.object-storage-provider.d.ts +0 -0
- /package/{object-storage → dist/object-storage}/s3/s3.object-storage-provider.js +0 -0
- /package/{object-storage → dist/object-storage}/s3/s3.object-storage.d.ts +0 -0
- /package/{object-storage → dist/object-storage}/s3/s3.object-storage.js +0 -0
- /package/{object-storage → dist/object-storage}/s3/s3.object.d.ts +0 -0
- /package/{object-storage → dist/object-storage}/s3/s3.object.js +0 -0
- /package/{openid-connect → dist/openid-connect}/cached-oidc-configuration.service.d.ts +0 -0
- /package/{openid-connect → dist/openid-connect}/cached-oidc-configuration.service.js +0 -0
- /package/{openid-connect → dist/openid-connect}/index.d.ts +0 -0
- /package/{openid-connect → dist/openid-connect}/index.js +0 -0
- /package/{openid-connect → dist/openid-connect}/oidc-configuration.service.d.ts +0 -0
- /package/{openid-connect → dist/openid-connect}/oidc-configuration.service.js +0 -0
- /package/{openid-connect → dist/openid-connect}/oidc-state.model.d.ts +0 -0
- /package/{openid-connect → dist/openid-connect}/oidc-state.model.js +0 -0
- /package/{openid-connect → dist/openid-connect}/oidc.service-model.d.ts +0 -0
- /package/{openid-connect → dist/openid-connect}/oidc.service-model.js +0 -0
- /package/{openid-connect → dist/openid-connect}/oidc.service.d.ts +0 -0
- /package/{openid-connect → dist/openid-connect}/oidc.service.js +0 -0
- /package/{orm → dist/orm}/data-types/bytea.d.ts +0 -0
- /package/{orm → dist/orm}/data-types/bytea.js +0 -0
- /package/{orm → dist/orm}/data-types/common.d.ts +0 -0
- /package/{orm → dist/orm}/data-types/common.js +0 -0
- /package/{orm → dist/orm}/data-types/index.d.ts +0 -0
- /package/{orm → dist/orm}/data-types/index.js +0 -0
- /package/{orm → dist/orm}/data-types/numeric-date.d.ts +0 -0
- /package/{orm → dist/orm}/data-types/numeric-date.js +0 -0
- /package/{orm → dist/orm}/data-types/timestamp.d.ts +0 -0
- /package/{orm → dist/orm}/data-types/timestamp.js +0 -0
- /package/{orm → dist/orm}/data-types/tsvector.d.ts +0 -0
- /package/{orm → dist/orm}/data-types/tsvector.js +0 -0
- /package/{orm → dist/orm}/decorators.d.ts +0 -0
- /package/{orm → dist/orm}/decorators.js +0 -0
- /package/{orm → dist/orm}/entity.d.ts +0 -0
- /package/{orm → dist/orm}/entity.js +0 -0
- /package/{orm → dist/orm}/index.d.ts +0 -0
- /package/{orm → dist/orm}/index.js +0 -0
- /package/{orm → dist/orm}/query/base.d.ts +0 -0
- /package/{orm → dist/orm}/query/base.js +0 -0
- /package/{orm → dist/orm}/query/index.d.ts +0 -0
- /package/{orm → dist/orm}/query/index.js +0 -0
- /package/{orm → dist/orm}/query/parade.d.ts +0 -0
- /package/{orm → dist/orm}/query/parade.js +0 -0
- /package/{orm → dist/orm}/repository.types.d.ts +0 -0
- /package/{orm → dist/orm}/repository.types.js +0 -0
- /package/{orm → dist/orm}/schemas/index.d.ts +0 -0
- /package/{orm → dist/orm}/schemas/index.js +0 -0
- /package/{orm → dist/orm}/schemas/json.d.ts +0 -0
- /package/{orm → dist/orm}/schemas/json.js +0 -0
- /package/{orm → dist/orm}/schemas/numeric-date.d.ts +0 -0
- /package/{orm → dist/orm}/schemas/numeric-date.js +0 -0
- /package/{orm → dist/orm}/schemas/numeric.d.ts +0 -0
- /package/{orm → dist/orm}/schemas/numeric.js +0 -0
- /package/{orm → dist/orm}/schemas/timestamp.d.ts +0 -0
- /package/{orm → dist/orm}/schemas/timestamp.js +0 -0
- /package/{orm → dist/orm}/schemas/tsvector.d.ts +0 -0
- /package/{orm → dist/orm}/schemas/tsvector.js +0 -0
- /package/{orm → dist/orm}/schemas/uuid.d.ts +0 -0
- /package/{orm → dist/orm}/schemas/uuid.js +0 -0
- /package/{orm → dist/orm}/server/database-schema.d.ts +0 -0
- /package/{orm → dist/orm}/server/database-schema.js +0 -0
- /package/{orm → dist/orm}/server/database.d.ts +0 -0
- /package/{orm → dist/orm}/server/database.js +0 -0
- /package/{orm → dist/orm}/server/drizzle/index.d.ts +0 -0
- /package/{orm → dist/orm}/server/drizzle/index.js +0 -0
- /package/{orm → dist/orm}/server/drizzle/schema-converter.d.ts +0 -0
- /package/{orm → dist/orm}/server/drizzle/schema-converter.js +0 -0
- /package/{orm → dist/orm}/server/encryption.d.ts +0 -0
- /package/{orm → dist/orm}/server/encryption.js +0 -0
- /package/{orm → dist/orm}/server/index.d.ts +0 -0
- /package/{orm → dist/orm}/server/index.js +0 -0
- /package/{orm → dist/orm}/server/module.d.ts +0 -0
- /package/{orm → dist/orm}/server/module.js +0 -0
- /package/{orm → dist/orm}/server/query-converter.d.ts +0 -0
- /package/{orm → dist/orm}/server/query-converter.js +0 -0
- /package/{orm → dist/orm}/server/repository.d.ts +0 -0
- /package/{orm → dist/orm}/server/repository.js +0 -0
- /package/{orm → dist/orm}/server/tokens.d.ts +0 -0
- /package/{orm → dist/orm}/server/tokens.js +0 -0
- /package/{orm → dist/orm}/server/transaction.d.ts +0 -0
- /package/{orm → dist/orm}/server/transaction.js +0 -0
- /package/{orm → dist/orm}/server/transactional.d.ts +0 -0
- /package/{orm → dist/orm}/server/transactional.js +0 -0
- /package/{orm → dist/orm}/server/types.d.ts +0 -0
- /package/{orm → dist/orm}/server/types.js +0 -0
- /package/{orm → dist/orm}/sqls.d.ts +0 -0
- /package/{orm → dist/orm}/sqls.js +0 -0
- /package/{orm → dist/orm}/types.d.ts +0 -0
- /package/{orm → dist/orm}/types.js +0 -0
- /package/{orm → dist/orm}/utils.d.ts +0 -0
- /package/{orm → dist/orm}/utils.js +0 -0
- /package/{password → dist/password}/have-i-been-pwned.d.ts +0 -0
- /package/{password → dist/password}/have-i-been-pwned.js +0 -0
- /package/{password → dist/password}/index.d.ts +0 -0
- /package/{password → dist/password}/index.js +0 -0
- /package/{password → dist/password}/password-check-result.model.d.ts +0 -0
- /package/{password → dist/password}/password-check-result.model.js +0 -0
- /package/{password → dist/password}/password-check.d.ts +0 -0
- /package/{password → dist/password}/password-check.js +0 -0
- /package/{password → dist/password}/password-check.localization.d.ts +0 -0
- /package/{password → dist/password}/password-check.localization.js +0 -0
- /package/{pdf → dist/pdf}/index.d.ts +0 -0
- /package/{pdf → dist/pdf}/index.js +0 -0
- /package/{pdf → dist/pdf}/pdf.service.d.ts +0 -0
- /package/{pdf → dist/pdf}/pdf.service.js +0 -0
- /package/{pdf → dist/pdf}/utils.d.ts +0 -0
- /package/{pdf → dist/pdf}/utils.js +0 -0
- /package/{polyfills.d.ts → dist/polyfills.d.ts} +0 -0
- /package/{polyfills.js → dist/polyfills.js} +0 -0
- /package/{pool → dist/pool}/index.d.ts +0 -0
- /package/{pool → dist/pool}/index.js +0 -0
- /package/{pool → dist/pool}/pool.d.ts +0 -0
- /package/{pool → dist/pool}/pool.js +0 -0
- /package/{process → dist/process}/index.d.ts +0 -0
- /package/{process → dist/process}/index.js +0 -0
- /package/{process → dist/process}/spawn.d.ts +0 -0
- /package/{process → dist/process}/spawn.js +0 -0
- /package/{promise → dist/promise}/cancelable-promise.d.ts +0 -0
- /package/{promise → dist/promise}/cancelable-promise.js +0 -0
- /package/{promise → dist/promise}/custom-promise.d.ts +0 -0
- /package/{promise → dist/promise}/custom-promise.js +0 -0
- /package/{promise → dist/promise}/deferred-promise.d.ts +0 -0
- /package/{promise → dist/promise}/deferred-promise.js +0 -0
- /package/{promise → dist/promise}/index.d.ts +0 -0
- /package/{promise → dist/promise}/index.js +0 -0
- /package/{promise → dist/promise}/lazy-promise.d.ts +0 -0
- /package/{promise → dist/promise}/lazy-promise.js +0 -0
- /package/{promise → dist/promise}/types.d.ts +0 -0
- /package/{promise → dist/promise}/types.js +0 -0
- /package/{queue → dist/queue}/enqueue-batch.d.ts +0 -0
- /package/{queue → dist/queue}/enqueue-batch.js +0 -0
- /package/{queue → dist/queue}/index.d.ts +0 -0
- /package/{queue → dist/queue}/index.js +0 -0
- /package/{queue → dist/queue}/postgres/drizzle/0000_zippy_moondragon.sql +0 -0
- /package/{queue → dist/queue}/postgres/drizzle/0001_certain_wild_pack.sql +0 -0
- /package/{queue → dist/queue}/postgres/drizzle/0002_dear_meggan.sql +0 -0
- /package/{queue → dist/queue}/postgres/drizzle/meta/0000_snapshot.json +0 -0
- /package/{queue → dist/queue}/postgres/drizzle/meta/0001_snapshot.json +0 -0
- /package/{queue → dist/queue}/postgres/drizzle/meta/0002_snapshot.json +0 -0
- /package/{queue → dist/queue}/postgres/drizzle/meta/_journal.json +0 -0
- /package/{queue → dist/queue}/postgres/drizzle.config.d.ts +0 -0
- /package/{queue → dist/queue}/postgres/drizzle.config.js +0 -0
- /package/{queue → dist/queue}/postgres/index.d.ts +0 -0
- /package/{queue → dist/queue}/postgres/index.js +0 -0
- /package/{queue → dist/queue}/postgres/job.model.d.ts +0 -0
- /package/{queue → dist/queue}/postgres/job.model.js +0 -0
- /package/{queue → dist/queue}/postgres/module.d.ts +0 -0
- /package/{queue → dist/queue}/postgres/module.js +0 -0
- /package/{queue → dist/queue}/postgres/queue.d.ts +0 -0
- /package/{queue → dist/queue}/postgres/queue.js +0 -0
- /package/{queue → dist/queue}/postgres/queue.provider.d.ts +0 -0
- /package/{queue → dist/queue}/postgres/queue.provider.js +0 -0
- /package/{queue → dist/queue}/postgres/schemas.d.ts +0 -0
- /package/{queue → dist/queue}/postgres/schemas.js +0 -0
- /package/{queue → dist/queue}/provider.d.ts +0 -0
- /package/{queue → dist/queue}/provider.js +0 -0
- /package/{queue → dist/queue}/queue.d.ts +0 -0
- /package/{queue → dist/queue}/queue.js +0 -0
- /package/{random → dist/random}/index.d.ts +0 -0
- /package/{random → dist/random}/index.js +0 -0
- /package/{random → dist/random}/number-generator/index.d.ts +0 -0
- /package/{random → dist/random}/number-generator/index.js +0 -0
- /package/{random → dist/random}/number-generator/mulberry32.d.ts +0 -0
- /package/{random → dist/random}/number-generator/mulberry32.js +0 -0
- /package/{random → dist/random}/number-generator/random-number-generator-function.d.ts +0 -0
- /package/{random → dist/random}/number-generator/random-number-generator-function.js +0 -0
- /package/{random → dist/random}/number-generator/random-number-generator.d.ts +0 -0
- /package/{random → dist/random}/number-generator/random-number-generator.js +0 -0
- /package/{random → dist/random}/number-generator/seeded-random-number-generator.d.ts +0 -0
- /package/{random → dist/random}/number-generator/seeded-random-number-generator.js +0 -0
- /package/{random → dist/random}/number-generator/sfc32.d.ts +0 -0
- /package/{random → dist/random}/number-generator/sfc32.js +0 -0
- /package/{random → dist/random}/number-generator/utils.d.ts +0 -0
- /package/{random → dist/random}/number-generator/utils.js +0 -0
- /package/{random → dist/random}/series.d.ts +0 -0
- /package/{random → dist/random}/series.js +0 -0
- /package/{reflection → dist/reflection}/decorator-data.d.ts +0 -0
- /package/{reflection → dist/reflection}/decorator-data.js +0 -0
- /package/{reflection → dist/reflection}/decorators.d.ts +0 -0
- /package/{reflection → dist/reflection}/decorators.js +0 -0
- /package/{reflection → dist/reflection}/index.d.ts +0 -0
- /package/{reflection → dist/reflection}/index.js +0 -0
- /package/{reflection → dist/reflection}/registry.d.ts +0 -0
- /package/{reflection → dist/reflection}/registry.js +0 -0
- /package/{reflection → dist/reflection}/types.d.ts +0 -0
- /package/{reflection → dist/reflection}/types.js +0 -0
- /package/{reflection → dist/reflection}/utils.d.ts +0 -0
- /package/{reflection → dist/reflection}/utils.js +0 -0
- /package/{require.d.ts → dist/require.d.ts} +0 -0
- /package/{require.js → dist/require.js} +0 -0
- /package/{rpc → dist/rpc}/adapters/index.d.ts +0 -0
- /package/{rpc → dist/rpc}/adapters/index.js +0 -0
- /package/{rpc → dist/rpc}/adapters/readable-stream.adapter.d.ts +0 -0
- /package/{rpc → dist/rpc}/adapters/readable-stream.adapter.js +0 -0
- /package/{rpc → dist/rpc}/endpoints/index.d.ts +0 -0
- /package/{rpc → dist/rpc}/endpoints/index.js +0 -0
- /package/{rpc → dist/rpc}/endpoints/message-port.rpc-endpoint.d.ts +0 -0
- /package/{rpc → dist/rpc}/endpoints/message-port.rpc-endpoint.js +0 -0
- /package/{rpc → dist/rpc}/index.d.ts +0 -0
- /package/{rpc → dist/rpc}/index.js +0 -0
- /package/{rpc → dist/rpc}/model.d.ts +0 -0
- /package/{rpc → dist/rpc}/model.js +0 -0
- /package/{rpc → dist/rpc}/rpc.adapter.d.ts +0 -0
- /package/{rpc → dist/rpc}/rpc.adapter.js +0 -0
- /package/{rpc → dist/rpc}/rpc.d.ts +0 -0
- /package/{rpc → dist/rpc}/rpc.endpoint.d.ts +0 -0
- /package/{rpc → dist/rpc}/rpc.endpoint.js +0 -0
- /package/{rpc → dist/rpc}/rpc.error.d.ts +0 -0
- /package/{rpc → dist/rpc}/rpc.error.js +0 -0
- /package/{rpc → dist/rpc}/rpc.js +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/cast.d.ts +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/cast.js +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/index.d.ts +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/index.js +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/noop.d.ts +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/noop.js +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/reject-error.d.ts +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/reject-error.js +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/retry-backoff.d.ts +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/retry-backoff.js +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/slow-array.d.ts +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/slow-array.js +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/start-with-provider.d.ts +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/start-with-provider.js +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/teardown.d.ts +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/teardown.js +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/timing.d.ts +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/timing.js +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/untrack.d.ts +0 -0
- /package/{rxjs-utils → dist/rxjs-utils}/untrack.js +0 -0
- /package/{schema → dist/schema}/converters/index.d.ts +0 -0
- /package/{schema → dist/schema}/converters/index.js +0 -0
- /package/{schema → dist/schema}/converters/openapi-converter.d.ts +0 -0
- /package/{schema → dist/schema}/decorators/class.d.ts +0 -0
- /package/{schema → dist/schema}/decorators/class.js +0 -0
- /package/{schema → dist/schema}/decorators/description.d.ts +0 -0
- /package/{schema → dist/schema}/decorators/description.js +0 -0
- /package/{schema → dist/schema}/decorators/index.d.ts +0 -0
- /package/{schema → dist/schema}/decorators/index.js +0 -0
- /package/{schema → dist/schema}/decorators/schema.d.ts +0 -0
- /package/{schema → dist/schema}/decorators/schema.js +0 -0
- /package/{schema → dist/schema}/decorators/types.d.ts +0 -0
- /package/{schema → dist/schema}/decorators/types.js +0 -0
- /package/{schema → dist/schema}/decorators/utils.d.ts +0 -0
- /package/{schema → dist/schema}/decorators/utils.js +0 -0
- /package/{schema → dist/schema}/index.d.ts +0 -0
- /package/{schema → dist/schema}/index.js +0 -0
- /package/{schema → dist/schema}/schema.d.ts +0 -0
- /package/{schema → dist/schema}/schema.error.d.ts +0 -0
- /package/{schema → dist/schema}/schema.error.js +0 -0
- /package/{schema → dist/schema}/schema.js +0 -0
- /package/{schema → dist/schema}/schemas/any.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/any.js +0 -0
- /package/{schema → dist/schema}/schemas/array.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/array.js +0 -0
- /package/{schema → dist/schema}/schemas/bigint.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/bigint.js +0 -0
- /package/{schema → dist/schema}/schemas/boolean.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/boolean.js +0 -0
- /package/{schema → dist/schema}/schemas/date.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/date.js +0 -0
- /package/{schema → dist/schema}/schemas/defaulted.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/defaulted.js +0 -0
- /package/{schema → dist/schema}/schemas/deferred.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/deferred.js +0 -0
- /package/{schema → dist/schema}/schemas/enumeration.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/enumeration.js +0 -0
- /package/{schema → dist/schema}/schemas/function.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/function.js +0 -0
- /package/{schema → dist/schema}/schemas/index.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/index.js +0 -0
- /package/{schema → dist/schema}/schemas/instance.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/instance.js +0 -0
- /package/{schema → dist/schema}/schemas/literal.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/literal.js +0 -0
- /package/{schema → dist/schema}/schemas/never.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/never.js +0 -0
- /package/{schema → dist/schema}/schemas/nullable.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/nullable.js +0 -0
- /package/{schema → dist/schema}/schemas/number.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/number.js +0 -0
- /package/{schema → dist/schema}/schemas/one-or-many.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/one-or-many.js +0 -0
- /package/{schema → dist/schema}/schemas/optional.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/optional.js +0 -0
- /package/{schema → dist/schema}/schemas/readable-stream.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/readable-stream.js +0 -0
- /package/{schema → dist/schema}/schemas/regexp.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/regexp.js +0 -0
- /package/{schema → dist/schema}/schemas/simple.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/simple.js +0 -0
- /package/{schema → dist/schema}/schemas/symbol.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/symbol.js +0 -0
- /package/{schema → dist/schema}/schemas/transform.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/transform.js +0 -0
- /package/{schema → dist/schema}/schemas/uint8-array.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/uint8-array.js +0 -0
- /package/{schema → dist/schema}/schemas/union.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/union.js +0 -0
- /package/{schema → dist/schema}/schemas/unknown.d.ts +0 -0
- /package/{schema → dist/schema}/schemas/unknown.js +0 -0
- /package/{schema → dist/schema}/testable.d.ts +0 -0
- /package/{schema → dist/schema}/testable.js +0 -0
- /package/{schema → dist/schema}/types.d.ts +0 -0
- /package/{schema → dist/schema}/types.js +0 -0
- /package/{serializer → dist/serializer}/handlers/binary.d.ts +0 -0
- /package/{serializer → dist/serializer}/handlers/binary.js +0 -0
- /package/{serializer → dist/serializer}/handlers/date.d.ts +0 -0
- /package/{serializer → dist/serializer}/handlers/date.js +0 -0
- /package/{serializer → dist/serializer}/handlers/error.d.ts +0 -0
- /package/{serializer → dist/serializer}/handlers/error.js +0 -0
- /package/{serializer → dist/serializer}/handlers/index.d.ts +0 -0
- /package/{serializer → dist/serializer}/handlers/index.js +0 -0
- /package/{serializer → dist/serializer}/handlers/map.d.ts +0 -0
- /package/{serializer → dist/serializer}/handlers/map.js +0 -0
- /package/{serializer → dist/serializer}/handlers/regex.d.ts +0 -0
- /package/{serializer → dist/serializer}/handlers/regex.js +0 -0
- /package/{serializer → dist/serializer}/handlers/register.d.ts +0 -0
- /package/{serializer → dist/serializer}/handlers/register.js +0 -0
- /package/{serializer → dist/serializer}/handlers/set.d.ts +0 -0
- /package/{serializer → dist/serializer}/handlers/set.js +0 -0
- /package/{serializer → dist/serializer}/index.d.ts +0 -0
- /package/{serializer → dist/serializer}/index.js +0 -0
- /package/{serializer → dist/serializer}/serializable.d.ts +0 -0
- /package/{serializer → dist/serializer}/serializable.js +0 -0
- /package/{serializer → dist/serializer}/serializer.d.ts +0 -0
- /package/{serializer → dist/serializer}/serializer.js +0 -0
- /package/{serializer → dist/serializer}/types.d.ts +0 -0
- /package/{serializer → dist/serializer}/types.js +0 -0
- /package/{signals → dist/signals}/api.d.ts +0 -0
- /package/{signals → dist/signals}/api.js +0 -0
- /package/{signals → dist/signals}/computed-with-dependencies.d.ts +0 -0
- /package/{signals → dist/signals}/computed-with-dependencies.js +0 -0
- /package/{signals → dist/signals}/effect-with-dependencies.d.ts +0 -0
- /package/{signals → dist/signals}/effect-with-dependencies.js +0 -0
- /package/{signals → dist/signals}/implementation/api.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/api.js +0 -0
- /package/{signals → dist/signals}/implementation/asserts.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/asserts.js +0 -0
- /package/{signals → dist/signals}/implementation/computed.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/computed.js +0 -0
- /package/{signals → dist/signals}/implementation/configure.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/configure.js +0 -0
- /package/{signals → dist/signals}/implementation/effect.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/effect.js +0 -0
- /package/{signals → dist/signals}/implementation/equality.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/equality.js +0 -0
- /package/{signals → dist/signals}/implementation/errors.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/errors.js +0 -0
- /package/{signals → dist/signals}/implementation/graph.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/graph.js +0 -0
- /package/{signals → dist/signals}/implementation/index.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/index.js +0 -0
- /package/{signals → dist/signals}/implementation/signal.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/signal.js +0 -0
- /package/{signals → dist/signals}/implementation/to-observable.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/to-observable.js +0 -0
- /package/{signals → dist/signals}/implementation/to-signal.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/to-signal.js +0 -0
- /package/{signals → dist/signals}/implementation/untracked.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/untracked.js +0 -0
- /package/{signals → dist/signals}/implementation/watch.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/watch.js +0 -0
- /package/{signals → dist/signals}/implementation/writable-signal.d.ts +0 -0
- /package/{signals → dist/signals}/implementation/writable-signal.js +0 -0
- /package/{signals → dist/signals}/index.d.ts +0 -0
- /package/{signals → dist/signals}/index.js +0 -0
- /package/{signals → dist/signals}/notifier.d.ts +0 -0
- /package/{signals → dist/signals}/notifier.js +0 -0
- /package/{signals → dist/signals}/operators/combine.d.ts +0 -0
- /package/{signals → dist/signals}/operators/combine.js +0 -0
- /package/{signals → dist/signals}/operators/defer.d.ts +0 -0
- /package/{signals → dist/signals}/operators/defer.js +0 -0
- /package/{signals → dist/signals}/operators/derive-async.d.ts +0 -0
- /package/{signals → dist/signals}/operators/derive-async.js +0 -0
- /package/{signals → dist/signals}/operators/index.d.ts +0 -0
- /package/{signals → dist/signals}/operators/index.js +0 -0
- /package/{signals → dist/signals}/operators/map.d.ts +0 -0
- /package/{signals → dist/signals}/operators/map.js +0 -0
- /package/{signals → dist/signals}/operators/switchAll.d.ts +0 -0
- /package/{signals → dist/signals}/operators/switchAll.js +0 -0
- /package/{signals → dist/signals}/pipe.d.ts +0 -0
- /package/{signals → dist/signals}/pipe.js +0 -0
- /package/{signals → dist/signals}/symbol.d.ts +0 -0
- /package/{signals → dist/signals}/symbol.js +0 -0
- /package/{signals → dist/signals}/to-lazy-signal.d.ts +0 -0
- /package/{signals → dist/signals}/to-lazy-signal.js +0 -0
- /package/{signals → dist/signals}/types.d.ts +0 -0
- /package/{signals → dist/signals}/types.js +0 -0
- /package/{signals → dist/signals}/untracked-operator.d.ts +0 -0
- /package/{signals → dist/signals}/untracked-operator.js +0 -0
- /package/{sse → dist/sse}/data-stream-source.d.ts +0 -0
- /package/{sse → dist/sse}/data-stream-source.js +0 -0
- /package/{sse → dist/sse}/data-stream.d.ts +0 -0
- /package/{sse → dist/sse}/data-stream.js +0 -0
- /package/{sse → dist/sse}/index.d.ts +0 -0
- /package/{sse → dist/sse}/index.js +0 -0
- /package/{sse → dist/sse}/model.d.ts +0 -0
- /package/{sse → dist/sse}/model.js +0 -0
- /package/{sse → dist/sse}/server-sent-events-source.d.ts +0 -0
- /package/{sse → dist/sse}/server-sent-events-source.js +0 -0
- /package/{sse → dist/sse}/server-sent-events.d.ts +0 -0
- /package/{sse → dist/sse}/server-sent-events.js +0 -0
- /package/{supports.d.ts → dist/supports.d.ts} +0 -0
- /package/{supports.js → dist/supports.js} +0 -0
- /package/{templates → dist/templates}/index.d.ts +0 -0
- /package/{templates → dist/templates}/index.js +0 -0
- /package/{templates → dist/templates}/module.d.ts +0 -0
- /package/{templates → dist/templates}/module.js +0 -0
- /package/{templates → dist/templates}/providers/file.template-provider.d.ts +0 -0
- /package/{templates → dist/templates}/providers/file.template-provider.js +0 -0
- /package/{templates → dist/templates}/providers/index.d.ts +0 -0
- /package/{templates → dist/templates}/providers/index.js +0 -0
- /package/{templates → dist/templates}/providers/memory.template-provider.d.ts +0 -0
- /package/{templates → dist/templates}/providers/memory.template-provider.js +0 -0
- /package/{templates → dist/templates}/renderers/handlebars.template-renderer.d.ts +0 -0
- /package/{templates → dist/templates}/renderers/handlebars.template-renderer.js +0 -0
- /package/{templates → dist/templates}/renderers/index.d.ts +0 -0
- /package/{templates → dist/templates}/renderers/index.js +0 -0
- /package/{templates → dist/templates}/renderers/jsx.template-renderer.d.ts +0 -0
- /package/{templates → dist/templates}/renderers/jsx.template-renderer.js +0 -0
- /package/{templates → dist/templates}/renderers/mjml.template-renderer.d.ts +0 -0
- /package/{templates → dist/templates}/renderers/mjml.template-renderer.js +0 -0
- /package/{templates → dist/templates}/renderers/string.template-renderer.d.ts +0 -0
- /package/{templates → dist/templates}/renderers/string.template-renderer.js +0 -0
- /package/{templates → dist/templates}/resolvers/file.template-resolver.d.ts +0 -0
- /package/{templates → dist/templates}/resolvers/file.template-resolver.js +0 -0
- /package/{templates → dist/templates}/resolvers/index.d.ts +0 -0
- /package/{templates → dist/templates}/resolvers/index.js +0 -0
- /package/{templates → dist/templates}/resolvers/jsx.template-resolver.d.ts +0 -0
- /package/{templates → dist/templates}/resolvers/jsx.template-resolver.js +0 -0
- /package/{templates → dist/templates}/resolvers/string.template-resolver.d.ts +0 -0
- /package/{templates → dist/templates}/resolvers/string.template-resolver.js +0 -0
- /package/{templates → dist/templates}/template-renderer.provider.d.ts +0 -0
- /package/{templates → dist/templates}/template-renderer.provider.js +0 -0
- /package/{templates → dist/templates}/template-resolver.provider.d.ts +0 -0
- /package/{templates → dist/templates}/template-resolver.provider.js +0 -0
- /package/{templates → dist/templates}/template.model.d.ts +0 -0
- /package/{templates → dist/templates}/template.model.js +0 -0
- /package/{templates → dist/templates}/template.provider.d.ts +0 -0
- /package/{templates → dist/templates}/template.provider.js +0 -0
- /package/{templates → dist/templates}/template.renderer.d.ts +0 -0
- /package/{templates → dist/templates}/template.renderer.js +0 -0
- /package/{templates → dist/templates}/template.resolver.d.ts +0 -0
- /package/{templates → dist/templates}/template.resolver.js +0 -0
- /package/{templates → dist/templates}/template.service.d.ts +0 -0
- /package/{templates → dist/templates}/template.service.js +0 -0
- /package/{templates → dist/templates}/tokens.d.ts +0 -0
- /package/{templates → dist/templates}/tokens.js +0 -0
- /package/{templates → dist/templates}/types/index.d.ts +0 -0
- /package/{templates → dist/templates}/types/index.js +0 -0
- /package/{templates → dist/templates}/types/jsx.intrinsic-elements.d.ts +0 -0
- /package/{templates → dist/templates}/types/jsx.intrinsic-elements.js +0 -0
- /package/{test → dist/test}/drizzle/0000_natural_cannonball.sql +0 -0
- /package/{test → dist/test}/drizzle/meta/0000_snapshot.json +0 -0
- /package/{test → dist/test}/drizzle/meta/_journal.json +0 -0
- /package/{test → dist/test}/drizzle.config.d.ts +0 -0
- /package/{test → dist/test}/drizzle.config.js +0 -0
- /package/{test → dist/test}/index.d.ts +0 -0
- /package/{test → dist/test}/index.js +0 -0
- /package/{test → dist/test}/module.d.ts +0 -0
- /package/{test → dist/test}/module.js +0 -0
- /package/{test → dist/test}/schemas.d.ts +0 -0
- /package/{test → dist/test}/schemas.js +0 -0
- /package/{test → dist/test}/test.model.d.ts +0 -0
- /package/{test → dist/test}/test.model.js +0 -0
- /package/{test1.d.ts → dist/test1.d.ts} +0 -0
- /package/{test2.d.ts → dist/test2.d.ts} +0 -0
- /package/{test2.js → dist/test2.js} +0 -0
- /package/{test3.d.ts → dist/test3.d.ts} +0 -0
- /package/{test3.js → dist/test3.js} +0 -0
- /package/{test4.d.ts → dist/test4.d.ts} +0 -0
- /package/{test4.js → dist/test4.js} +0 -0
- /package/{test5.d.ts → dist/test5.d.ts} +0 -0
- /package/{test5.js → dist/test5.js} +0 -0
- /package/{test6.d.ts → dist/test6.d.ts} +0 -0
- /package/{test6.js → dist/test6.js} +0 -0
- /package/{text → dist/text}/common-localization.d.ts +0 -0
- /package/{text → dist/text}/common-localization.js +0 -0
- /package/{text → dist/text}/dynamic-text.model.d.ts +0 -0
- /package/{text → dist/text}/dynamic-text.model.js +0 -0
- /package/{text → dist/text}/index.d.ts +0 -0
- /package/{text → dist/text}/index.js +0 -0
- /package/{text → dist/text}/localizable-text.model.d.ts +0 -0
- /package/{text → dist/text}/localizable-text.model.js +0 -0
- /package/{text → dist/text}/localization.service.d.ts +0 -0
- /package/{text → dist/text}/localization.service.js +0 -0
- /package/{threading → dist/threading}/index.d.ts +0 -0
- /package/{threading → dist/threading}/index.js +0 -0
- /package/{threading → dist/threading}/thread-pool.d.ts +0 -0
- /package/{threading → dist/threading}/thread-pool.js +0 -0
- /package/{threading → dist/threading}/thread-worker.d.ts +0 -0
- /package/{threading → dist/threading}/thread-worker.js +0 -0
- /package/{tokens.d.ts → dist/tokens.d.ts} +0 -0
- /package/{tokens.js → dist/tokens.js} +0 -0
- /package/{types/geo-json.js → dist/tools/fetch-mime-types.d.ts} +0 -0
- /package/{types → dist/types}/geo-json.d.ts +0 -0
- /package/{types/index.js → dist/types/geo-json.js} +0 -0
- /package/{types → dist/types}/index.d.ts +0 -0
- /package/{types/tagged.js → dist/types/index.js} +0 -0
- /package/{types → dist/types}/tagged.d.ts +0 -0
- /package/{types/web-types.js → dist/types/tagged.js} +0 -0
- /package/{types → dist/types}/types.d.ts +0 -0
- /package/{types → dist/types}/types.js +0 -0
- /package/{types → dist/types}/web-types.d.ts +0 -0
- /package/{utils/async-iterable-helpers/parallel/types.js → dist/types/web-types.js} +0 -0
- /package/{utils → dist/utils}/alphabet.d.ts +0 -0
- /package/{utils → dist/utils}/alphabet.js +0 -0
- /package/{utils → dist/utils}/any-iterable-iterator.d.ts +0 -0
- /package/{utils → dist/utils}/any-iterable-iterator.js +0 -0
- /package/{utils → dist/utils}/array/array-backtracker.d.ts +0 -0
- /package/{utils → dist/utils}/array/array-backtracker.js +0 -0
- /package/{utils → dist/utils}/array/array.d.ts +0 -0
- /package/{utils → dist/utils}/array/array.js +0 -0
- /package/{utils → dist/utils}/array/index.d.ts +0 -0
- /package/{utils → dist/utils}/array/index.js +0 -0
- /package/{utils → dist/utils}/async-hook/async-hook.d.ts +0 -0
- /package/{utils → dist/utils}/async-hook/async-hook.js +0 -0
- /package/{utils → dist/utils}/async-hook/index.d.ts +0 -0
- /package/{utils → dist/utils}/async-hook/index.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/all.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/all.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/any.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/any.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/assert.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/assert.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/batch.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/batch.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/buffer.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/buffer.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/concat.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/concat.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/default-if-empty.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/default-if-empty.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/deferred.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/deferred.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/difference.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/difference.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/distinct.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/distinct.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/drain.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/drain.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/filter.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/filter.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/first-or-default.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/first-or-default.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/first.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/first.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/for-each.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/for-each.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/group-single.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/group-single.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/group-to-map.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/group-to-map.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/group-to-single-map.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/group-to-single-map.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/group.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/group.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/includes.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/includes.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/index.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/index.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/interrupt.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/interrupt.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/is-async-iterable.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/is-async-iterable.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/last-or-default.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/last-or-default.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/last.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/last.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/map-many.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/map-many.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/map.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/map.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/materialize.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/materialize.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/metadata.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/metadata.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/multiplex.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/multiplex.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/observable-iterable.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/observable-iterable.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/pairwise.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/pairwise.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/feed.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/feed.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/filter.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/filter.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/for-each.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/for-each.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/group.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/group.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/index.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/index.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/map.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/map.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/tap.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/tap.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/parallel/types.d.ts +0 -0
- /package/{utils/async-iterable-helpers → dist/utils/async-iterable-helpers/parallel}/types.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/reduce.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/reduce.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/retry.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/retry.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/single-or-default.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/single-or-default.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/single.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/single.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/skip.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/skip.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/sort.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/sort.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/take-until.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/take-until.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/take-while.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/take-while.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/take.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/take.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/tap.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/tap.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/throttle.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/throttle.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/to-array.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/to-array.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/to-async-iterable-iterator.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/to-async-iterable-iterator.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/to-async-iterator.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/to-async-iterator.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/to-set.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/to-set.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/to-sync-iterable.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/to-sync-iterable.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/types.d.ts +0 -0
- /package/{utils/iterable-helpers → dist/utils/async-iterable-helpers}/types.js +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/while.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterable-helpers/while.js +0 -0
- /package/{utils → dist/utils}/async-iterator-iterable-iterator.d.ts +0 -0
- /package/{utils → dist/utils}/async-iterator-iterable-iterator.js +0 -0
- /package/{utils → dist/utils}/backoff.d.ts +0 -0
- /package/{utils → dist/utils}/backoff.js +0 -0
- /package/{utils → dist/utils}/base64.d.ts +0 -0
- /package/{utils → dist/utils}/base64.js +0 -0
- /package/{utils → dist/utils}/benchmark.d.ts +0 -0
- /package/{utils → dist/utils}/benchmark.js +0 -0
- /package/{utils → dist/utils}/binary-search.d.ts +0 -0
- /package/{utils → dist/utils}/binary-search.js +0 -0
- /package/{utils → dist/utils}/binary.d.ts +0 -0
- /package/{utils → dist/utils}/binary.js +0 -0
- /package/{utils → dist/utils}/clone.d.ts +0 -0
- /package/{utils → dist/utils}/clone.js +0 -0
- /package/{utils → dist/utils}/comparison.d.ts +0 -0
- /package/{utils → dist/utils}/comparison.js +0 -0
- /package/{utils → dist/utils}/compression.d.ts +0 -0
- /package/{utils → dist/utils}/compression.js +0 -0
- /package/{utils → dist/utils}/config-parser.d.ts +0 -0
- /package/{utils → dist/utils}/config-parser.js +0 -0
- /package/{utils → dist/utils}/crc32.d.ts +0 -0
- /package/{utils → dist/utils}/crc32.js +0 -0
- /package/{utils → dist/utils}/cryptography.d.ts +0 -0
- /package/{utils → dist/utils}/cryptography.js +0 -0
- /package/{utils → dist/utils}/date-time.d.ts +0 -0
- /package/{utils → dist/utils}/date-time.js +0 -0
- /package/{utils → dist/utils}/encoding.d.ts +0 -0
- /package/{utils → dist/utils}/encoding.js +0 -0
- /package/{utils → dist/utils}/enum.d.ts +0 -0
- /package/{utils → dist/utils}/enum.js +0 -0
- /package/{utils → dist/utils}/equals.d.ts +0 -0
- /package/{utils → dist/utils}/equals.js +0 -0
- /package/{utils → dist/utils}/event-loop.d.ts +0 -0
- /package/{utils → dist/utils}/event-loop.js +0 -0
- /package/{utils → dist/utils}/factory-map.d.ts +0 -0
- /package/{utils → dist/utils}/factory-map.js +0 -0
- /package/{utils → dist/utils}/feedable-async-iterable.d.ts +0 -0
- /package/{utils → dist/utils}/feedable-async-iterable.js +0 -0
- /package/{utils → dist/utils}/file-reader.d.ts +0 -0
- /package/{utils → dist/utils}/file-reader.js +0 -0
- /package/{utils → dist/utils}/format-error.d.ts +0 -0
- /package/{utils → dist/utils}/format-error.js +0 -0
- /package/{utils → dist/utils}/format.d.ts +0 -0
- /package/{utils → dist/utils}/format.js +0 -0
- /package/{utils → dist/utils}/function/class.d.ts +0 -0
- /package/{utils → dist/utils}/function/class.js +0 -0
- /package/{utils → dist/utils}/function/index.d.ts +0 -0
- /package/{utils → dist/utils}/function/index.js +0 -0
- /package/{utils → dist/utils}/function/memoize.d.ts +0 -0
- /package/{utils → dist/utils}/function/memoize.js +0 -0
- /package/{utils → dist/utils}/function/throttle.d.ts +0 -0
- /package/{utils → dist/utils}/function/throttle.js +0 -0
- /package/{utils → dist/utils}/helpers.d.ts +0 -0
- /package/{utils → dist/utils}/helpers.js +0 -0
- /package/{utils → dist/utils}/html-link-utils.d.ts +0 -0
- /package/{utils → dist/utils}/html-link-utils.js +0 -0
- /package/{utils → dist/utils}/image.d.ts +0 -0
- /package/{utils → dist/utils}/image.js +0 -0
- /package/{utils → dist/utils}/index.d.ts +0 -0
- /package/{utils → dist/utils}/index.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/all.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/all.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/any.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/any.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/assert.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/assert.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/batch.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/batch.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/concat.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/concat.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/default-if-empty.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/default-if-empty.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/deferred.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/deferred.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/difference.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/difference.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/distinct.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/distinct.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/drain.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/drain.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/filter.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/filter.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/first-or-default.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/first-or-default.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/first.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/first.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/for-each.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/for-each.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/group-single.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/group-single.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/group-to-map.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/group-to-map.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/group-to-single-map.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/group-to-single-map.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/group.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/group.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/includes.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/includes.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/index.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/index.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/is-iterable.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/is-iterable.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/last-or-default.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/last-or-default.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/last.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/last.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/map-many.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/map-many.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/map.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/map.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/materialize.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/materialize.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/metadata.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/metadata.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/pairwise.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/pairwise.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/range.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/range.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/reduce.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/reduce.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/single-or-default.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/single-or-default.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/single.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/single.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/skip.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/skip.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/sort.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/sort.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/take-until.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/take-until.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/take-while.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/take-while.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/take.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/take.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/tap.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/tap.js +0 -0
- /package/{utils → dist/utils}/iterable-helpers/types.d.ts +0 -0
- /package/{utils/stream/stream-helper-types.js → dist/utils/iterable-helpers/types.js} +0 -0
- /package/{utils → dist/utils}/iterable-helpers/while.d.ts +0 -0
- /package/{utils → dist/utils}/iterable-helpers/while.js +0 -0
- /package/{utils → dist/utils}/jwt.d.ts +0 -0
- /package/{utils → dist/utils}/jwt.js +0 -0
- /package/{utils → dist/utils}/map.d.ts +0 -0
- /package/{utils → dist/utils}/map.js +0 -0
- /package/{utils → dist/utils}/math.d.ts +0 -0
- /package/{utils → dist/utils}/math.js +0 -0
- /package/{utils → dist/utils}/merge.d.ts +0 -0
- /package/{utils → dist/utils}/merge.js +0 -0
- /package/{utils → dist/utils}/middleware.d.ts +0 -0
- /package/{utils → dist/utils}/middleware.js +0 -0
- /package/{utils → dist/utils}/moving-metric.d.ts +0 -0
- /package/{utils → dist/utils}/moving-metric.js +0 -0
- /package/{utils → dist/utils}/noop.d.ts +0 -0
- /package/{utils → dist/utils}/noop.js +0 -0
- /package/{utils → dist/utils}/object/decycle.d.ts +0 -0
- /package/{utils → dist/utils}/object/decycle.js +0 -0
- /package/{utils → dist/utils}/object/dereference.d.ts +0 -0
- /package/{utils → dist/utils}/object/dereference.js +0 -0
- /package/{utils → dist/utils}/object/forward-ref.d.ts +0 -0
- /package/{utils → dist/utils}/object/forward-ref.js +0 -0
- /package/{utils → dist/utils}/object/index.d.ts +0 -0
- /package/{utils → dist/utils}/object/index.js +0 -0
- /package/{utils → dist/utils}/object/lazy-property.d.ts +0 -0
- /package/{utils → dist/utils}/object/lazy-property.js +0 -0
- /package/{utils → dist/utils}/object/merge.d.ts +0 -0
- /package/{utils → dist/utils}/object/merge.js +0 -0
- /package/{utils → dist/utils}/object/object.d.ts +0 -0
- /package/{utils → dist/utils}/object/object.js +0 -0
- /package/{utils → dist/utils}/object/property-name.d.ts +0 -0
- /package/{utils → dist/utils}/object/property-name.js +0 -0
- /package/{utils → dist/utils}/ordered-feedable-async-iterable.d.ts +0 -0
- /package/{utils → dist/utils}/ordered-feedable-async-iterable.js +0 -0
- /package/{utils → dist/utils}/patch-worker.d.ts +0 -0
- /package/{utils → dist/utils}/patch-worker.js +0 -0
- /package/{utils → dist/utils}/patterns.d.ts +0 -0
- /package/{utils → dist/utils}/patterns.js +0 -0
- /package/{utils → dist/utils}/periodic-reporter.d.ts +0 -0
- /package/{utils → dist/utils}/periodic-reporter.js +0 -0
- /package/{utils → dist/utils}/periodic-sampler.d.ts +0 -0
- /package/{utils → dist/utils}/periodic-sampler.js +0 -0
- /package/{utils → dist/utils}/provider-function-iterable.d.ts +0 -0
- /package/{utils → dist/utils}/provider-function-iterable.js +0 -0
- /package/{utils → dist/utils}/proxy.d.ts +0 -0
- /package/{utils → dist/utils}/proxy.js +0 -0
- /package/{utils → dist/utils}/random.d.ts +0 -0
- /package/{utils → dist/utils}/random.js +0 -0
- /package/{utils → dist/utils}/reactive-value-to-signal.d.ts +0 -0
- /package/{utils → dist/utils}/reactive-value-to-signal.js +0 -0
- /package/{utils → dist/utils}/reflection.d.ts +0 -0
- /package/{utils → dist/utils}/reflection.js +0 -0
- /package/{utils → dist/utils}/repl.d.ts +0 -0
- /package/{utils → dist/utils}/repl.js +0 -0
- /package/{utils → dist/utils}/set.d.ts +0 -0
- /package/{utils → dist/utils}/set.js +0 -0
- /package/{utils → dist/utils}/singleton.d.ts +0 -0
- /package/{utils → dist/utils}/singleton.js +0 -0
- /package/{utils → dist/utils}/sort.d.ts +0 -0
- /package/{utils → dist/utils}/sort.js +0 -0
- /package/{utils → dist/utils}/stream/finalize-stream.d.ts +0 -0
- /package/{utils → dist/utils}/stream/finalize-stream.js +0 -0
- /package/{utils → dist/utils}/stream/from-promise.d.ts +0 -0
- /package/{utils → dist/utils}/stream/from-promise.js +0 -0
- /package/{utils → dist/utils}/stream/index.d.ts +0 -0
- /package/{utils → dist/utils}/stream/index.js +0 -0
- /package/{utils → dist/utils}/stream/readable-stream-adapter.d.ts +0 -0
- /package/{utils → dist/utils}/stream/readable-stream-adapter.js +0 -0
- /package/{utils → dist/utils}/stream/size-limited-stream.d.ts +0 -0
- /package/{utils → dist/utils}/stream/size-limited-stream.js +0 -0
- /package/{utils → dist/utils}/stream/slice.d.ts +0 -0
- /package/{utils → dist/utils}/stream/slice.js +0 -0
- /package/{utils → dist/utils}/stream/stream-helper-types.d.ts +0 -0
- /package/{utils → dist/utils}/stream/stream-reader.d.ts +0 -0
- /package/{utils → dist/utils}/stream/stream-reader.js +0 -0
- /package/{utils → dist/utils}/stream/to-bytes-stream.d.ts +0 -0
- /package/{utils → dist/utils}/stream/to-bytes-stream.js +0 -0
- /package/{utils → dist/utils}/stream/to-readable-stream.d.ts +0 -0
- /package/{utils → dist/utils}/stream/to-readable-stream.js +0 -0
- /package/{utils → dist/utils}/string/casing.d.ts +0 -0
- /package/{utils → dist/utils}/string/casing.js +0 -0
- /package/{utils → dist/utils}/string/hypenate.d.ts +0 -0
- /package/{utils → dist/utils}/string/hypenate.js +0 -0
- /package/{utils → dist/utils}/string/index.d.ts +0 -0
- /package/{utils → dist/utils}/string/index.js +0 -0
- /package/{utils → dist/utils}/string/normalize.d.ts +0 -0
- /package/{utils → dist/utils}/string/normalize.js +0 -0
- /package/{utils → dist/utils}/string/title-case.d.ts +0 -0
- /package/{utils → dist/utils}/string/title-case.js +0 -0
- /package/{utils → dist/utils}/string/trim.d.ts +0 -0
- /package/{utils → dist/utils}/string/trim.js +0 -0
- /package/{utils → dist/utils}/throw.d.ts +0 -0
- /package/{utils → dist/utils}/throw.js +0 -0
- /package/{utils → dist/utils}/timer.d.ts +0 -0
- /package/{utils → dist/utils}/timer.js +0 -0
- /package/{utils → dist/utils}/timing.d.ts +0 -0
- /package/{utils → dist/utils}/timing.js +0 -0
- /package/{utils → dist/utils}/try-chain.d.ts +0 -0
- /package/{utils → dist/utils}/try-chain.js +0 -0
- /package/{utils → dist/utils}/try-ignore.d.ts +0 -0
- /package/{utils → dist/utils}/try-ignore.js +0 -0
- /package/{utils → dist/utils}/type/extends.d.ts +0 -0
- /package/{utils → dist/utils}/type/extends.js +0 -0
- /package/{utils → dist/utils}/type/index.d.ts +0 -0
- /package/{utils → dist/utils}/type/index.js +0 -0
- /package/{utils → dist/utils}/type-guards.d.ts +0 -0
- /package/{utils → dist/utils}/type-guards.js +0 -0
- /package/{utils → dist/utils}/type-of.d.ts +0 -0
- /package/{utils → dist/utils}/type-of.js +0 -0
- /package/{utils → dist/utils}/units.d.ts +0 -0
- /package/{utils → dist/utils}/units.js +0 -0
- /package/{utils → dist/utils}/url-builder.d.ts +0 -0
- /package/{utils → dist/utils}/url-builder.js +0 -0
- /package/{utils → dist/utils}/value-or-provider.d.ts +0 -0
- /package/{utils → dist/utils}/value-or-provider.js +0 -0
- /package/{utils → dist/utils}/z-base32.d.ts +0 -0
- /package/{utils → dist/utils}/z-base32.js +0 -0
|
@@ -0,0 +1,414 @@
|
|
|
1
|
+
# @tstdl/base/schema
|
|
2
|
+
|
|
3
|
+
A powerful, TypeScript-first schema declaration and validation library. Define data structures once with builder functions or class decorators and get static types, runtime validation, and serialization for free.
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [Features](#features)
|
|
8
|
+
- [Core Concepts](#core-concepts)
|
|
9
|
+
- [Standalone Schemas (Builder Functions)](#standalone-schemas-builder-functions)
|
|
10
|
+
- [Class-based Schemas (Decorators)](#class-based-schemas-decorators)
|
|
11
|
+
- [Usage](#usage)
|
|
12
|
+
- [Standalone Schemas & Validation](#standalone-schemas--validation)
|
|
13
|
+
- [Class-based Schemas](#class-based-schemas)
|
|
14
|
+
- [Type Coercion](#type-coercion)
|
|
15
|
+
- [Object Utilities](#object-utilities)
|
|
16
|
+
- [Recursive Schemas](#recursive-schemas)
|
|
17
|
+
- [OpenAPI Generation](#openapi-generation)
|
|
18
|
+
- [API Summary](#api-summary)
|
|
19
|
+
- [Static Schema Methods](#static-schema-methods)
|
|
20
|
+
- [Schema Builders](#schema-builders)
|
|
21
|
+
- [Object Utilities](#object-utilities)
|
|
22
|
+
- [Decorators](#decorators)
|
|
23
|
+
- [Converters](#converters)
|
|
24
|
+
|
|
25
|
+
## Features
|
|
26
|
+
|
|
27
|
+
- **Type Safety**: Automatically infers TypeScript types directly from your schemas.
|
|
28
|
+
- **Fluent API**: A simple and composable API for building complex schemas from primitives.
|
|
29
|
+
- **Decorator-Based**: Define schemas directly on your classes, making your models the single source of truth.
|
|
30
|
+
- **Runtime Validation**: Robust validation for any data, from API responses to user input.
|
|
31
|
+
- **Type Coercion**: Optional coercion of data to the correct types (e.g., string to number).
|
|
32
|
+
- **Detailed Error Reporting**: Get precise error messages with JSON paths to pinpoint invalid data.
|
|
33
|
+
- **Extensible**: Easily create custom schemas and transformations.
|
|
34
|
+
- **Function & Method Schemas**: Define schemas for function parameters and return types.
|
|
35
|
+
- **OpenAPI Generation**: Convert schemas to OpenAPI v3 schema objects for API documentation.
|
|
36
|
+
|
|
37
|
+
## Core Concepts
|
|
38
|
+
|
|
39
|
+
The library supports two complementary ways of defining schemas, which can be used interchangeably.
|
|
40
|
+
|
|
41
|
+
### Standalone Schemas (Builder Functions)
|
|
42
|
+
|
|
43
|
+
Use builder functions (`object`, `string`, `array`, etc.) to compose schema definitions. This approach is ideal for defining data shapes that don't have a corresponding class, such as API payloads, configuration objects, or function arguments.
|
|
44
|
+
|
|
45
|
+
```typescript
|
|
46
|
+
import { object, string, number, array } from '@tstdl/base/schema';
|
|
47
|
+
|
|
48
|
+
const productSchema = object({
|
|
49
|
+
id: string(),
|
|
50
|
+
name: string(),
|
|
51
|
+
price: number({ minimum: 0 }),
|
|
52
|
+
tags: array(string()),
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
// The inferred type is:
|
|
56
|
+
// type Product = {
|
|
57
|
+
// id: string;
|
|
58
|
+
// name: string;
|
|
59
|
+
// price: number;
|
|
60
|
+
// tags: string[];
|
|
61
|
+
// }
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
### Class-based Schemas (Decorators)
|
|
65
|
+
|
|
66
|
+
Use decorators (`@Class`, `@Property`, etc.) to derive schemas directly from your TypeScript classes. This turns your classes into the single source of truth for both static type information and runtime validation logic, eliminating redundant definitions and strengthening the link between your runtime models and their validation rules.
|
|
67
|
+
|
|
68
|
+
```typescript
|
|
69
|
+
import { Class, StringProperty, NumberProperty } from '@tstdl/base/schema';
|
|
70
|
+
|
|
71
|
+
@Class()
|
|
72
|
+
class User {
|
|
73
|
+
@StringProperty()
|
|
74
|
+
id: string;
|
|
75
|
+
|
|
76
|
+
@StringProperty()
|
|
77
|
+
name: string;
|
|
78
|
+
|
|
79
|
+
@NumberProperty({ minimum: 0, integer: true })
|
|
80
|
+
age: number;
|
|
81
|
+
}
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## Usage
|
|
85
|
+
|
|
86
|
+
### Standalone Schemas & Validation
|
|
87
|
+
|
|
88
|
+
The `Schema` class provides static methods for validation. `Schema.parse()` returns a typed value or throws a `SchemaError`, while `Schema.validate()` returns a boolean.
|
|
89
|
+
|
|
90
|
+
```typescript
|
|
91
|
+
import { Schema, object, string, number, array, optional, nullable, SchemaError } from '@tstdl/base/schema';
|
|
92
|
+
|
|
93
|
+
const addressSchema = object({
|
|
94
|
+
street: string(),
|
|
95
|
+
city: string(),
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
const userSchema = object({
|
|
99
|
+
id: string({ pattern: /^usr_/ }),
|
|
100
|
+
name: string(),
|
|
101
|
+
age: number({ minimum: 18 }),
|
|
102
|
+
email: optional(string()),
|
|
103
|
+
profile: nullable(object({ bio: string() })),
|
|
104
|
+
addresses: array(addressSchema),
|
|
105
|
+
});
|
|
106
|
+
|
|
107
|
+
// --- Valid Data ---
|
|
108
|
+
const validUser = {
|
|
109
|
+
id: 'usr_123',
|
|
110
|
+
name: 'Jane Doe',
|
|
111
|
+
age: 30,
|
|
112
|
+
profile: null,
|
|
113
|
+
addresses: [{ street: '123 Main St', city: 'Anytown' }],
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
// `parse` returns the typed value or throws an error on failure.
|
|
117
|
+
const parsedUser = Schema.parse(userSchema, validUser);
|
|
118
|
+
console.log(parsedUser.name); // 'Jane Doe'
|
|
119
|
+
|
|
120
|
+
// `validate` returns a boolean.
|
|
121
|
+
console.log(Schema.validate(userSchema, validUser)); // true
|
|
122
|
+
|
|
123
|
+
// --- Invalid Data ---
|
|
124
|
+
const invalidUser = { id: 'usr_456', name: 'John Doe', age: 17, addresses: [] };
|
|
125
|
+
|
|
126
|
+
try {
|
|
127
|
+
Schema.parse(userSchema, invalidUser);
|
|
128
|
+
}
|
|
129
|
+
catch (e) {
|
|
130
|
+
if (e instanceof SchemaError) {
|
|
131
|
+
console.error(e.message); // -> /age: Value must be more than or equal to 18.
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
// `assert` is a type guard that throws on failure.
|
|
136
|
+
try {
|
|
137
|
+
Schema.assert(userSchema, invalidUser);
|
|
138
|
+
// this line will not be reached
|
|
139
|
+
}
|
|
140
|
+
catch (e) {
|
|
141
|
+
console.error('Assertion failed.');
|
|
142
|
+
}
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### Class-based Schemas
|
|
146
|
+
|
|
147
|
+
Decorators allow you to derive schemas directly from your classes. The class itself becomes a valid `SchemaTestable`. This approach requires `experimentalDecorators` and `emitDecoratorMetadata` to be enabled in your `tsconfig.json`.
|
|
148
|
+
|
|
149
|
+
```typescript
|
|
150
|
+
import { Schema, Class, Property, StringProperty, NumberProperty, Array } from '@tstdl/base/schema';
|
|
151
|
+
|
|
152
|
+
// Note: To use decorators, you must enable `experimentalDecorators` and
|
|
153
|
+
// `emitDecoratorMetadata` in your tsconfig.json.
|
|
154
|
+
|
|
155
|
+
@Class()
|
|
156
|
+
class Pet {
|
|
157
|
+
@StringProperty()
|
|
158
|
+
name: string;
|
|
159
|
+
|
|
160
|
+
@StringProperty()
|
|
161
|
+
species: string;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
@Class()
|
|
165
|
+
class User {
|
|
166
|
+
@StringProperty()
|
|
167
|
+
id: string;
|
|
168
|
+
|
|
169
|
+
@StringProperty()
|
|
170
|
+
name: string;
|
|
171
|
+
|
|
172
|
+
@NumberProperty({ minimum: 0, integer: true })
|
|
173
|
+
age: number;
|
|
174
|
+
|
|
175
|
+
@Array(Pet) // Use the Pet class as a schema for items in the array
|
|
176
|
+
pets: Pet[];
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
const userData = {
|
|
180
|
+
id: 'user-1',
|
|
181
|
+
name: 'John Doe',
|
|
182
|
+
age: 42,
|
|
183
|
+
pets: [{ name: 'Fido', species: 'Dog' }],
|
|
184
|
+
};
|
|
185
|
+
|
|
186
|
+
// The User class itself is a valid schema
|
|
187
|
+
const user = Schema.parse(User, userData);
|
|
188
|
+
|
|
189
|
+
console.log(user instanceof User); // true
|
|
190
|
+
console.log(user.pets[0] instanceof Pet); // true
|
|
191
|
+
console.log(user.name); // 'John Doe'
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
### Type Coercion
|
|
195
|
+
|
|
196
|
+
The library can automatically convert types during parsing by enabling the `coerce` option. This is useful for handling data from sources like query parameters or form data where values are often strings.
|
|
197
|
+
|
|
198
|
+
```typescript
|
|
199
|
+
import { Schema, object, number, boolean } from '@tstdl/base/schema';
|
|
200
|
+
|
|
201
|
+
const settingsSchema = object({
|
|
202
|
+
port: number({ integer: true }),
|
|
203
|
+
isProduction: boolean(),
|
|
204
|
+
});
|
|
205
|
+
|
|
206
|
+
const rawSettings = {
|
|
207
|
+
port: '8080', // string instead of number
|
|
208
|
+
isProduction: '1', // string '1' instead of boolean
|
|
209
|
+
};
|
|
210
|
+
|
|
211
|
+
// With coercion enabled, the strings are converted to the correct types.
|
|
212
|
+
const settings = Schema.parse(settingsSchema, rawSettings, { coerce: true });
|
|
213
|
+
|
|
214
|
+
console.log(settings); // { port: 8080, isProduction: true }
|
|
215
|
+
console.log(typeof settings.port); // 'number'
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
### Object Utilities
|
|
219
|
+
|
|
220
|
+
Compose and transform object schemas with powerful utility functions.
|
|
221
|
+
|
|
222
|
+
```typescript
|
|
223
|
+
import { Schema, object, string, number, pick, omit, partial, assign } from '@tstdl/base/schema';
|
|
224
|
+
|
|
225
|
+
const baseUserSchema = object({
|
|
226
|
+
id: string(),
|
|
227
|
+
name: string(),
|
|
228
|
+
email: string(),
|
|
229
|
+
age: number(),
|
|
230
|
+
});
|
|
231
|
+
|
|
232
|
+
// `pick` creates a schema with only the specified properties.
|
|
233
|
+
const userPreviewSchema = pick(baseUserSchema, ['name', 'age']);
|
|
234
|
+
// type: { name: string; age: number; }
|
|
235
|
+
|
|
236
|
+
// `omit` creates a schema without the specified properties.
|
|
237
|
+
const userCreationSchema = omit(baseUserSchema, ['id']);
|
|
238
|
+
// type: { name: string; email: string; age: number; }
|
|
239
|
+
|
|
240
|
+
// `partial` makes all properties optional.
|
|
241
|
+
const userUpdateSchema = partial(baseUserSchema);
|
|
242
|
+
// type: { id?: string; name?: string; email?: string; age?: number; }
|
|
243
|
+
|
|
244
|
+
// `assign` merges multiple schemas.
|
|
245
|
+
const auditedUserSchema = assign(baseUserSchema, object({ createdAt: number() }));
|
|
246
|
+
// type: { id: string; name: string; email: string; age: number; createdAt: number; }
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
### Recursive Schemas
|
|
250
|
+
|
|
251
|
+
Use `deferred` to define schemas that reference themselves, perfect for tree-like data structures.
|
|
252
|
+
|
|
253
|
+
```typescript
|
|
254
|
+
import { Schema, object, string, array, optional, deferred } from '@tstdl/base/schema';
|
|
255
|
+
|
|
256
|
+
// Define a self-referencing schema for a category tree
|
|
257
|
+
const categorySchema = object({
|
|
258
|
+
name: string(),
|
|
259
|
+
children: optional(array(deferred(() => categorySchema))),
|
|
260
|
+
});
|
|
261
|
+
|
|
262
|
+
const data = {
|
|
263
|
+
name: 'Electronics',
|
|
264
|
+
children: [
|
|
265
|
+
{ name: 'Phones' },
|
|
266
|
+
{
|
|
267
|
+
name: 'Computers',
|
|
268
|
+
children: [{ name: 'Laptops' }, { name: 'Desktops' }],
|
|
269
|
+
},
|
|
270
|
+
],
|
|
271
|
+
};
|
|
272
|
+
|
|
273
|
+
const category = Schema.parse(categorySchema, data);
|
|
274
|
+
console.log(category.children?.[1].name); // 'Computers'
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
### OpenAPI Generation
|
|
278
|
+
|
|
279
|
+
Generate OpenAPI v3 compatible schemas from your schema definitions, which is invaluable for documenting your APIs.
|
|
280
|
+
|
|
281
|
+
```typescript
|
|
282
|
+
import { convertToOpenApiSchema } from '@tstdl/base/schema/converters';
|
|
283
|
+
import { object, string, integer, enumeration, optional } from '@tstdl/base/schema';
|
|
284
|
+
|
|
285
|
+
enum PetStatus {
|
|
286
|
+
Available = 'available',
|
|
287
|
+
Pending = 'pending',
|
|
288
|
+
Sold = 'sold',
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
const petSchema = object({
|
|
292
|
+
id: string({ description: 'The pet ID' }),
|
|
293
|
+
name: string(),
|
|
294
|
+
status: enumeration(PetStatus),
|
|
295
|
+
age: optional(integer({ minimum: 0 })),
|
|
296
|
+
});
|
|
297
|
+
|
|
298
|
+
const openApiSchema = convertToOpenApiSchema(petSchema);
|
|
299
|
+
console.log(JSON.stringify(openApiSchema, null, 2));
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
**Output:**
|
|
303
|
+
|
|
304
|
+
```json
|
|
305
|
+
{
|
|
306
|
+
"type": "object",
|
|
307
|
+
"properties": {
|
|
308
|
+
"id": {
|
|
309
|
+
"type": "string",
|
|
310
|
+
"nullable": false,
|
|
311
|
+
"description": "The pet ID"
|
|
312
|
+
},
|
|
313
|
+
"name": {
|
|
314
|
+
"type": "string",
|
|
315
|
+
"nullable": false
|
|
316
|
+
},
|
|
317
|
+
"status": {
|
|
318
|
+
"type": "string",
|
|
319
|
+
"format": "enum",
|
|
320
|
+
"enum": [
|
|
321
|
+
"available",
|
|
322
|
+
"pending",
|
|
323
|
+
"sold"
|
|
324
|
+
],
|
|
325
|
+
"nullable": false
|
|
326
|
+
},
|
|
327
|
+
"age": {
|
|
328
|
+
"type": "integer",
|
|
329
|
+
"minimum": 0,
|
|
330
|
+
"nullable": false
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
"required": [
|
|
334
|
+
"id",
|
|
335
|
+
"name",
|
|
336
|
+
"status"
|
|
337
|
+
],
|
|
338
|
+
"nullable": false
|
|
339
|
+
}
|
|
340
|
+
```
|
|
341
|
+
|
|
342
|
+
## API Summary
|
|
343
|
+
|
|
344
|
+
### Static Schema Methods
|
|
345
|
+
|
|
346
|
+
| Method | Arguments | Returns | Description |
|
|
347
|
+
| :--- | :--- | :--- | :--- |
|
|
348
|
+
| `Schema.parse(schema, value, options?)` | `schema: SchemaTestable<T>`, `value: any`, `options?: SchemaTestOptions` | `T` | Parses a value against a schema. Throws `SchemaError` on failure. |
|
|
349
|
+
| `Schema.validate(schema, value, options?)` | `schema: SchemaTestable<T>`, `value: any`, `options?: SchemaTestOptions` | `boolean` | Validates a value against a schema. Returns `true` or `false`. |
|
|
350
|
+
| `Schema.assert(schema, value, options?)` | `schema: SchemaTestable<T>`, `value: any`, `options?: SchemaTestOptions` | `void` | Asserts that a value conforms to a schema. Throws `SchemaError` on failure. |
|
|
351
|
+
| `Schema.test(schema, value, options?)` | `schema: SchemaTestable<T>`, `value: any`, `options?: SchemaTestOptions` | `SchemaTestResult<T>` | Tests a value against a schema. Returns a result object with value or error. |
|
|
352
|
+
|
|
353
|
+
### Schema Builders
|
|
354
|
+
|
|
355
|
+
| Builder | Description |
|
|
356
|
+
| :--- | :--- |
|
|
357
|
+
| `string(options?)` | Creates a schema for `string` values. |
|
|
358
|
+
| `number(options?)` | Creates a schema for `number` values. |
|
|
359
|
+
| `integer(options?)` | Shorthand for a `number` schema with `integer: true`. |
|
|
360
|
+
| `boolean(options?)` | Creates a schema for `boolean` values. |
|
|
361
|
+
| `bigint(options?)` | Creates a schema for `bigint` values. |
|
|
362
|
+
| `date(options?)` | Creates a schema for `Date` objects. |
|
|
363
|
+
| `symbol()` | Creates a schema for `symbol` values. |
|
|
364
|
+
| `literal(value)` | Creates a schema for an exact primitive value (e.g., `literal('success')`). |
|
|
365
|
+
| `enumeration(enum)` | Creates a schema for a TypeScript `enum` or an array of literal values. |
|
|
366
|
+
| `object(properties, options?)` | Creates a schema for objects with a defined set of properties. |
|
|
367
|
+
| `array(itemSchema, options?)` | Creates a schema for arrays where all elements match a given schema. |
|
|
368
|
+
| `union(...schemas)` | Creates a schema for values that can match one of several schemas. |
|
|
369
|
+
| `oneOrMany(schema)` | Creates a schema for a value that is either a single item or an array of items. |
|
|
370
|
+
| `record(keySchema, valueSchema)` | Creates a schema for objects with arbitrary keys (like a dictionary). |
|
|
371
|
+
| `optional(schema)` | Modifies a schema to allow `undefined` values. |
|
|
372
|
+
| `nullable(schema)` | Modifies a schema to allow `null` values. |
|
|
373
|
+
| `defaulted(schema, defaultValue)` | Provides a default value if the input is `null` or `undefined`. |
|
|
374
|
+
| `transform(schema, transformFn)` | Transforms a valid value after parsing. |
|
|
375
|
+
| `deferred(() => schema)` | Allows for the definition of recursive schemas. |
|
|
376
|
+
| `instance(Constructor)` | Validates that a value is an instance of a specific class. |
|
|
377
|
+
| `any()` | Allows any value (unsafe, use with caution). |
|
|
378
|
+
| `unknown()` | A safer alternative to `any()`, allows any value but requires type checking. |
|
|
379
|
+
| `never()` | A schema that allows no values. |
|
|
380
|
+
| `func(...)` | Creates a schema for a `function`. |
|
|
381
|
+
| `uint8Array()` | Creates a schema for `Uint8Array` instances. |
|
|
382
|
+
| `readableStream()` | Creates a schema for `ReadableStream` instances. |
|
|
383
|
+
| `regexp()` | Creates a schema for `RegExp` instances. |
|
|
384
|
+
|
|
385
|
+
### Object Utilities
|
|
386
|
+
|
|
387
|
+
| Utility | Arguments | Returns | Description |
|
|
388
|
+
| :--- | :--- | :--- | :--- |
|
|
389
|
+
| `assign(...schemas)` | `...schemas: ObjectSchemaOrType[]` | `ObjectSchema` | Merges multiple object schemas into a single new schema. |
|
|
390
|
+
| `pick(schema, keys)` | `schema: ObjectSchemaOrType`, `keys: OneOrMany<keyof T>` | `ObjectSchema` | Creates a new schema with only the specified properties from the original. |
|
|
391
|
+
| `omit(schema, keys)` | `schema: ObjectSchemaOrType`, `keys: OneOrMany<keyof T>` | `ObjectSchema` | Creates a new schema without the specified properties. |
|
|
392
|
+
| `partial(schema, keys?)` | `schema: ObjectSchemaOrType`, `keys?: OneOrMany<keyof T>` | `ObjectSchema` | Makes all (or specified) properties of an object schema optional. |
|
|
393
|
+
|
|
394
|
+
### Decorators
|
|
395
|
+
|
|
396
|
+
| Decorator | Target | Description |
|
|
397
|
+
| :--- | :--- | :--- |
|
|
398
|
+
| `@Class(options?)` | `class` | Marks a class as a schema source, enabling schema generation from its properties. |
|
|
399
|
+
| `@Property(schema?, options?)` | `property` | Marks a property to be included in the class schema. Type is often inferred. |
|
|
400
|
+
| `@StringProperty(options?)` | `property` | Shortcut for `@Property(string(options))`. |
|
|
401
|
+
| `@NumberProperty(options?)` | `property` | Shortcut for `@Property(number(options))`. |
|
|
402
|
+
| `@Integer(options?)` | `property` | Shortcut for `@Property(integer(options))`. |
|
|
403
|
+
| `@BooleanProperty(options?)` | `property` | Shortcut for `@Property(boolean(options))`. |
|
|
404
|
+
| `@DateProperty(options?)` | `property` | Shortcut for `@Property(date(options))`. |
|
|
405
|
+
| `@Enumeration(enum, options?)` | `property` | Shortcut for `@Property(enumeration(enum, options))`. |
|
|
406
|
+
| `@Array(schema, options?)` | `property` | Shortcut for `@Property(array(schema, options))`. |
|
|
407
|
+
| `@Method(...)` | `method` | Defines a schema for a class method, including its parameters and return type. |
|
|
408
|
+
| `@Parameter(...)` | `parameter` | Defines a schema and name for a specific method parameter. |
|
|
409
|
+
|
|
410
|
+
### Converters
|
|
411
|
+
|
|
412
|
+
| Function | Arguments | Returns | Description |
|
|
413
|
+
| :--- | :--- | :--- | :--- |
|
|
414
|
+
| `convertToOpenApiSchema(schema)` | `schema: SchemaTestable` | `object` | Converts a schema into an OpenAPI v3 compatible schema object. |
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './openapi-converter.js';
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import { NotSupportedError } from '#/errors/not-supported.error.js';
|
|
2
|
+
import type { Json, UndefinableJsonObject } from '#/types/index.js';
|
|
3
|
+
import { filterUndefinedObjectProperties, fromEntries, hasOwnProperty, objectEntries } from '#/utils/object/object.js';
|
|
4
|
+
import { isDefined, isNotNull, isNumber, isString } from '#/utils/type-guards.js';
|
|
5
|
+
import type { Schema, SchemaTestable } from '../schema.js';
|
|
6
|
+
import { ArraySchema } from '../schemas/array.js';
|
|
7
|
+
import { BooleanSchema } from '../schemas/boolean.js';
|
|
8
|
+
import { DateSchema } from '../schemas/date.js';
|
|
9
|
+
import { EnumerationSchema } from '../schemas/enumeration.js';
|
|
10
|
+
import { LiteralSchema } from '../schemas/literal.js';
|
|
11
|
+
import { nullable, NullableSchema } from '../schemas/nullable.js';
|
|
12
|
+
import { NumberSchema } from '../schemas/number.js';
|
|
13
|
+
import { ObjectSchema } from '../schemas/object.js';
|
|
14
|
+
import { OptionalSchema } from '../schemas/optional.js';
|
|
15
|
+
import { StringSchema } from '../schemas/string.js';
|
|
16
|
+
import { UnionSchema } from '../schemas/union.js';
|
|
17
|
+
import { schemaTestableToSchema } from '../testable.js';
|
|
18
|
+
|
|
19
|
+
export function convertToOpenApiSchema(testable: SchemaTestable): UndefinableJsonObject {
|
|
20
|
+
const schema = schemaTestableToSchema(testable);
|
|
21
|
+
|
|
22
|
+
const openApiSchema = convertToOpenApiSchemaBase(schema);
|
|
23
|
+
|
|
24
|
+
return filterUndefinedObjectProperties({
|
|
25
|
+
...openApiSchema,
|
|
26
|
+
nullable: hasOwnProperty(openApiSchema, 'nullable') ? undefined : false,
|
|
27
|
+
title: ((schema instanceof ObjectSchema) && (schema.name != 'Object')) ? schema.name : undefined,
|
|
28
|
+
description: isNotNull(schema.description) ? schema.description : undefined,
|
|
29
|
+
example: isDefined(schema.example) ? schema.example as Json : undefined,
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function convertToOpenApiSchemaBase(schema: Schema): UndefinableJsonObject {
|
|
34
|
+
if (schema instanceof ObjectSchema) {
|
|
35
|
+
const entries = objectEntries(schema.properties);
|
|
36
|
+
const convertedEntries = entries.map(([property, propertySchema]) => [property, convertToOpenApiSchema(stripOptional(propertySchema))]);
|
|
37
|
+
const required = entries
|
|
38
|
+
.filter(([, propertySchema]) => !(propertySchema instanceof OptionalSchema) && !((propertySchema instanceof NullableSchema) && (propertySchema.schema instanceof OptionalSchema)))
|
|
39
|
+
.map(([property]) => property);
|
|
40
|
+
|
|
41
|
+
return filterUndefinedObjectProperties({
|
|
42
|
+
type: 'object',
|
|
43
|
+
properties: fromEntries(convertedEntries),
|
|
44
|
+
required: (required.length > 0) ? required : undefined,
|
|
45
|
+
minProperties: isNumber(schema.minimumPropertiesCount) ? schema.minimumPropertiesCount : undefined,
|
|
46
|
+
maxProperties: isNumber(schema.maximumPropertiesCount) ? schema.maximumPropertiesCount : undefined,
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
if (schema instanceof StringSchema) {
|
|
51
|
+
return filterUndefinedObjectProperties({
|
|
52
|
+
type: 'string',
|
|
53
|
+
minLength: isNumber(schema.minimumLength) ? schema.minimumLength : undefined,
|
|
54
|
+
maxLength: isNumber(schema.maximumLength) ? schema.maximumLength : undefined,
|
|
55
|
+
pattern: isString(schema.pattern) ? schema.pattern : undefined,
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
if (schema instanceof DateSchema) {
|
|
60
|
+
return {
|
|
61
|
+
type: 'string',
|
|
62
|
+
format: 'date-time',
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
if (schema instanceof NumberSchema) {
|
|
67
|
+
return filterUndefinedObjectProperties({
|
|
68
|
+
type: schema.integer ? 'integer' : 'number',
|
|
69
|
+
minimum: isNumber(schema.minimum) ? schema.minimum : undefined,
|
|
70
|
+
maximum: isNumber(schema.maximum) ? schema.maximum : undefined,
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if (schema instanceof BooleanSchema) {
|
|
75
|
+
return {
|
|
76
|
+
type: 'boolean',
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
if (schema instanceof LiteralSchema) {
|
|
81
|
+
return {
|
|
82
|
+
type: typeof schema.value,
|
|
83
|
+
enum: [schema.value],
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if (schema instanceof ArraySchema) {
|
|
88
|
+
return filterUndefinedObjectProperties({
|
|
89
|
+
type: 'array',
|
|
90
|
+
items: convertToOpenApiSchema(schema.itemSchema),
|
|
91
|
+
minItems: isNumber(schema.minimum) ? schema.minimum : undefined,
|
|
92
|
+
maxItems: isNumber(schema.maximum) ? schema.maximum : undefined,
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
if (schema instanceof EnumerationSchema) {
|
|
97
|
+
const hasString = schema.allowedValues.some(isString);
|
|
98
|
+
const hasNumber = schema.allowedValues.some(isNumber);
|
|
99
|
+
|
|
100
|
+
if (schema.allowedValues.length == 0) {
|
|
101
|
+
throw new NotSupportedError('Enum must have at least one value.');
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
if (hasString && hasNumber) {
|
|
105
|
+
throw new NotSupportedError('Enum must be either string or number but not both.');
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
return {
|
|
109
|
+
type: hasString ? 'string' : 'number',
|
|
110
|
+
format: 'enum',
|
|
111
|
+
enum: schema.allowedValues,
|
|
112
|
+
};
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
if (schema instanceof NullableSchema) {
|
|
116
|
+
if (schema.schema instanceof EnumerationSchema) {
|
|
117
|
+
const enumSchema = convertToOpenApiSchema(schema.schema);
|
|
118
|
+
|
|
119
|
+
return {
|
|
120
|
+
...enumSchema,
|
|
121
|
+
nullable: true,
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
return {
|
|
126
|
+
...convertToOpenApiSchema(schema.schema),
|
|
127
|
+
nullable: true,
|
|
128
|
+
};
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
if (schema instanceof UnionSchema) {
|
|
132
|
+
return {
|
|
133
|
+
anyOf: schema.schemas.map((innerSchema) => convertToOpenApiSchema(innerSchema as SchemaTestable)),
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
throw new NotSupportedError(`Schema "${schema.name}" not supported.`);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
function stripOptional(schema: Schema): Schema {
|
|
141
|
+
if ((schema instanceof OptionalSchema)) {
|
|
142
|
+
return schema.schema;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
if ((schema instanceof NullableSchema) && (schema.schema instanceof OptionalSchema)) {
|
|
146
|
+
return nullable(schema.schema.schema);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
return schema;
|
|
150
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { createClassDecorator, type Decorator } from '#/reflection/index.js';
|
|
2
|
+
import type { SchemaTypeReflectionData } from './types.js';
|
|
3
|
+
|
|
4
|
+
export function Class(options: SchemaTypeReflectionData = {}): Decorator<'class'> {
|
|
5
|
+
return createClassDecorator({ data: { schema: options }, mergeData: true });
|
|
6
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/naming-convention */
|
|
2
|
+
|
|
3
|
+
import { createDecorator, type Decorator } from '#/reflection/index.js';
|
|
4
|
+
import type { SchemaTypeReflectionData } from './types.js';
|
|
5
|
+
|
|
6
|
+
export function Description(options: SchemaTypeReflectionData = {}): Decorator<'class' | 'property'> {
|
|
7
|
+
return createDecorator({
|
|
8
|
+
class: true,
|
|
9
|
+
property: true,
|
|
10
|
+
data: { schema: options },
|
|
11
|
+
mergeData: true
|
|
12
|
+
});
|
|
13
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/naming-convention */
|
|
2
|
+
|
|
3
|
+
import type { SetRequired } from 'type-fest';
|
|
4
|
+
|
|
5
|
+
import { createDecorator, type Decorator } from '#/reflection/index.js';
|
|
6
|
+
import type { TypedOmit } from '#/types/index.js';
|
|
7
|
+
import { filterUndefinedObjectProperties } from '#/utils/object/object.js';
|
|
8
|
+
import type { SchemaTestable } from '../schema.js';
|
|
9
|
+
import { isSchemaTestable } from '../testable.js';
|
|
10
|
+
import type { CombinedSchemaDecorator, SchemaReflectionData, SchemaTestableProvider } from './types.js';
|
|
11
|
+
|
|
12
|
+
export type SchemaDecoratorOptions = SchemaReflectionData;
|
|
13
|
+
export type SchemaDecoratorOptionsWithRequiredSchema = SetRequired<SchemaReflectionData, 'schema'>;
|
|
14
|
+
export type SchemaDecoratorOptionsWithoutSchema = TypedOmit<SchemaReflectionData, 'schema'>;
|
|
15
|
+
|
|
16
|
+
export function createSchemaDecorator(data: SchemaReflectionData = {}): CombinedSchemaDecorator {
|
|
17
|
+
return createDecorator({
|
|
18
|
+
property: true,
|
|
19
|
+
accessor: true,
|
|
20
|
+
method: true,
|
|
21
|
+
parameter: true,
|
|
22
|
+
data: { schema: filterUndefinedObjectProperties(data) },
|
|
23
|
+
mergeData: true,
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export function SchemaDecorator(schema: SchemaTestable, options?: SchemaDecoratorOptionsWithoutSchema): CombinedSchemaDecorator;
|
|
28
|
+
export function SchemaDecorator(options: SchemaDecoratorOptionsWithRequiredSchema): CombinedSchemaDecorator;
|
|
29
|
+
export function SchemaDecorator(schemaOrOptions?: SchemaTestable | SchemaDecoratorOptionsWithRequiredSchema, optionsOrNothing?: SchemaDecoratorOptionsWithoutSchema): CombinedSchemaDecorator {
|
|
30
|
+
if (isSchemaTestable(schemaOrOptions)) {
|
|
31
|
+
return createSchemaDecorator({ ...optionsOrNothing, schema: () => schemaOrOptions });
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
return createSchemaDecorator(schemaOrOptions);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export function Parameter(name: string, schema: SchemaTestable, options?: SchemaDecoratorOptionsWithoutSchema): Decorator<'parameter'>;
|
|
38
|
+
export function Parameter(name: string, options: SchemaDecoratorOptions): Decorator<'parameter'>;
|
|
39
|
+
export function Parameter(name: string, schemaOrOptions?: SchemaTestable | SchemaDecoratorOptions, optionsOrNothing?: SchemaDecoratorOptions): Decorator<'parameter'> {
|
|
40
|
+
if (isSchemaTestable(schemaOrOptions)) {
|
|
41
|
+
return createSchemaDecorator({ ...optionsOrNothing, schema: () => schemaOrOptions, parameter: { name } });
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
return createSchemaDecorator({ ...schemaOrOptions, parameter: { name } });
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export const Property = SchemaDecorator;
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* @deprecated use @Property instead
|
|
51
|
+
* @param schemaTestableProvider
|
|
52
|
+
* @param options
|
|
53
|
+
* @returns
|
|
54
|
+
*/
|
|
55
|
+
export function PropertySchema(schemaTestableProvider: SchemaTestableProvider, options?: SchemaDecoratorOptionsWithoutSchema): CombinedSchemaDecorator {
|
|
56
|
+
return SchemaDecorator({ ...options, schema: schemaTestableProvider });
|
|
57
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { Decorator } from '#/reflection/types.js';
|
|
2
|
+
import type { SchemaOptions, SchemaTestable } from '../schema.js';
|
|
3
|
+
import type { ObjectSchemaFactory, ObjectSchemaOptions } from '../schemas/object.js';
|
|
4
|
+
|
|
5
|
+
export type SchemaClassDecorator = Decorator<'class'>;
|
|
6
|
+
export type SchemaPropertyDecorator = Decorator<'property' | 'accessor'>;
|
|
7
|
+
export type SchemaMethodDecorator = Decorator<'method'>;
|
|
8
|
+
export type CombinedSchemaDecorator = Decorator<'property' | 'accessor' | 'parameter'>;
|
|
9
|
+
|
|
10
|
+
export type SchemaTypeReflectionData = Partial<Pick<ObjectSchemaOptions, 'mask' | 'unknownProperties' | 'unknownPropertiesKey' | 'description' | 'example'>> & {
|
|
11
|
+
schema?: SchemaTestable,
|
|
12
|
+
factory?: ObjectSchemaFactory<any>,
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export type SchemaTestableProvider = (data: SchemaReflectionData) => SchemaTestable;
|
|
16
|
+
|
|
17
|
+
export type SchemaReflectionData = Partial<Pick<SchemaOptions<any>, 'description' | 'example'>> & {
|
|
18
|
+
schema?: SchemaTestableProvider,
|
|
19
|
+
array?: boolean,
|
|
20
|
+
optional?: boolean,
|
|
21
|
+
nullable?: boolean,
|
|
22
|
+
method?: {
|
|
23
|
+
returnType?: SchemaTestableProvider,
|
|
24
|
+
},
|
|
25
|
+
parameter?: {
|
|
26
|
+
name?: string,
|
|
27
|
+
},
|
|
28
|
+
};
|