@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,216 @@
|
|
|
1
|
+
# TypeScript Type Utilities (`@tstdl/base/types`)
|
|
2
|
+
|
|
3
|
+
A comprehensive collection of fundamental, advanced, and specialized TypeScript utility types designed to enhance type safety, improve developer experience, and provide standard definitions for common data structures.
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [Features](#features)
|
|
8
|
+
- [Core Concepts](#core-concepts)
|
|
9
|
+
- [General Utility Types](#general-utility-types)
|
|
10
|
+
- [Tagged Types](#tagged-types)
|
|
11
|
+
- [GeoJSON Types](#geojson-types)
|
|
12
|
+
- [Web Types](#web-types)
|
|
13
|
+
- [Usage](#usage)
|
|
14
|
+
- [General Utilities](#general-utilities)
|
|
15
|
+
- [Tagged Types](#tagged-types)
|
|
16
|
+
- [GeoJSON Types](#geojson-types)
|
|
17
|
+
- [API Summary](#api-summary)
|
|
18
|
+
- [General Utility Types](#general-utility-types-1)
|
|
19
|
+
- [Tagged Types](#tagged-types-1)
|
|
20
|
+
- [GeoJSON Types](#geojson-types-1)
|
|
21
|
+
- [Web Types](#web-types)
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
|
|
25
|
+
- **Rich Utility Belt**: A vast collection of utility types for advanced type manipulation, including `Writable`, `DeepPartial`, `Simplify`, `PickBy`, `OmitBy`, `Optionalize`, `Paths`, `PickDeep`, and many more.
|
|
26
|
+
- **Tagged (Branded) Types**: A robust implementation to create distinct nominal types from primitives (e.g., `string`, `number`) for improved type safety.
|
|
27
|
+
- **GeoJSON Types**: A complete set of type definitions for all standard GeoJSON objects, compliant with RFC 7946.
|
|
28
|
+
- **Web-related Types**: Standardized types for HTML input attributes like `InputType`, `InputMode`, and `InputAutocomplete`.
|
|
29
|
+
|
|
30
|
+
## Core Concepts
|
|
31
|
+
|
|
32
|
+
### General Utility Types
|
|
33
|
+
|
|
34
|
+
This module provides a rich set of utility types inspired by popular libraries like `type-fest`. These types allow you to manipulate, transform, and inspect other types in powerful ways. They help in creating more precise and expressive types, reducing boilerplate, and catching potential errors at compile time. For example, you can make all properties of an object writable, pick properties based on their type, or simplify complex inferred types for better readability in tooltips.
|
|
35
|
+
|
|
36
|
+
### Tagged Types
|
|
37
|
+
|
|
38
|
+
In many applications, primitives like `string` or `number` are used to represent different kinds of data, such as a user ID, a product ID, or an email address. While they are all strings, they are not semantically interchangeable. Assigning a `ProductId` to a variable expecting a `UserId` can lead to bugs.
|
|
39
|
+
|
|
40
|
+
**Tagged Types** solve this problem by creating new, distinct types that are not directly assignable to each other, even if they share the same underlying primitive type. This module provides a `Tagged<Type, TagName>` utility to easily create these types. This pattern is also known as "nominal typing" or "branded types" and significantly enhances type safety by catching logical errors at compile time.
|
|
41
|
+
|
|
42
|
+
### GeoJSON Types
|
|
43
|
+
|
|
44
|
+
GeoJSON is a standard format for encoding a variety of geographic data structures. This module provides a comprehensive set of TypeScript interfaces (`Point`, `LineString`, `Polygon`, `Feature`, `FeatureCollection`, etc.) that align with the official GeoJSON specification. These types ensure that your geospatial data structures are correctly typed and validated by the TypeScript compiler.
|
|
45
|
+
|
|
46
|
+
### Web Types
|
|
47
|
+
|
|
48
|
+
To streamline web development with TypeScript, this module includes standardized types for common HTML attributes. This includes literal unions for an `<input>` element's `type`, `inputmode`, and `autocomplete` attributes, as well as comprehensive interfaces for all valid attributes on `<input>` and `<textarea>` elements.
|
|
49
|
+
|
|
50
|
+
## Usage
|
|
51
|
+
|
|
52
|
+
### General Utilities
|
|
53
|
+
|
|
54
|
+
Here are some examples of how to use the general utility types to manipulate and refine your types.
|
|
55
|
+
|
|
56
|
+
```typescript
|
|
57
|
+
import type { Writable, Simplify, Optionalize, Paths, TypeFromPath } from '@tstdl/base/types';
|
|
58
|
+
|
|
59
|
+
// Making a readonly object writable
|
|
60
|
+
const user = { id: 1, name: 'John' } as const;
|
|
61
|
+
type WritableUser = Writable<typeof user>; // { id: number; name: string; }
|
|
62
|
+
const mutableUser: WritableUser = { id: 1, name: 'John' };
|
|
63
|
+
mutableUser.name = 'Jane'; // OK
|
|
64
|
+
|
|
65
|
+
// Simplifying a complex inferred type for cleaner tooltips
|
|
66
|
+
type Complex = Pick<{ a: 1 } & { b: 2 }, 'a' | 'b'>; // Inferred as Pick<{ a: 1; } & { b: 2; }, "a" | "b">
|
|
67
|
+
type Simple = Simplify<Complex>; // Inferred as { a: 1; b: 2; }
|
|
68
|
+
|
|
69
|
+
// Making properties with `| undefined` optional
|
|
70
|
+
type ProductWithUndefined = {
|
|
71
|
+
id: string;
|
|
72
|
+
description: string | undefined;
|
|
73
|
+
price: number;
|
|
74
|
+
};
|
|
75
|
+
type OptionalProduct = Optionalize<ProductWithUndefined>;
|
|
76
|
+
// type is { id: string; description?: string | undefined; price: number; }
|
|
77
|
+
const product: OptionalProduct = { id: 'p1', price: 100 }; // OK, description is optional
|
|
78
|
+
|
|
79
|
+
// Working with nested object paths
|
|
80
|
+
type UserProfile = {
|
|
81
|
+
id: number;
|
|
82
|
+
contact: {
|
|
83
|
+
email: string;
|
|
84
|
+
address: { city: string; zip: string; };
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
type UserPaths = Paths<UserProfile>; // "id" | "contact" | "contact.email" | "contact.address" | "contact.address.city" | "contact.address.zip"
|
|
89
|
+
const emailPath: UserPaths = 'contact.email';
|
|
90
|
+
|
|
91
|
+
type CityType = TypeFromPath<UserProfile, 'contact.address.city'>; // string
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Tagged Types
|
|
95
|
+
|
|
96
|
+
You can create distinct types for different kinds of IDs, even though they are all strings.
|
|
97
|
+
|
|
98
|
+
```typescript
|
|
99
|
+
import type { Tagged } from '@tstdl/base/types';
|
|
100
|
+
|
|
101
|
+
// Define distinct types for User and Product IDs
|
|
102
|
+
type UserId = Tagged<string, 'UserId'>;
|
|
103
|
+
type ProductId = Tagged<string, 'ProductId'>;
|
|
104
|
+
|
|
105
|
+
// Functions that operate on specific ID types
|
|
106
|
+
function getUser(id: UserId): void {
|
|
107
|
+
console.log(`Fetching user with ID: ${id}`);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
function getProduct(id: ProductId): void {
|
|
111
|
+
console.log(`Fetching product with ID: ${id}`);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// You must cast a primitive to the tagged type.
|
|
115
|
+
const userId = 'user-123' as UserId;
|
|
116
|
+
const productId = 'prod-456' as ProductId;
|
|
117
|
+
const plainString = 'some-string';
|
|
118
|
+
|
|
119
|
+
getUser(userId); // OK
|
|
120
|
+
getProduct(productId); // OK
|
|
121
|
+
|
|
122
|
+
// The following lines will cause a TypeScript compilation error,
|
|
123
|
+
// preventing logical mistakes.
|
|
124
|
+
// getUser(productId); // Error: Type 'ProductId' is not assignable to type 'UserId'.
|
|
125
|
+
// getUser(plainString); // Error: Type 'string' is not assignable to type 'UserId'.
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### GeoJSON Types
|
|
129
|
+
|
|
130
|
+
Define a GeoJSON `Feature` with a `Point` geometry.
|
|
131
|
+
|
|
132
|
+
```typescript
|
|
133
|
+
import type { Feature, Point } from '@tstdl/base/types';
|
|
134
|
+
|
|
135
|
+
// Define properties for your feature
|
|
136
|
+
interface ParkProperties {
|
|
137
|
+
name: string;
|
|
138
|
+
area: number; // in square meters
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// Create a GeoJSON Feature object
|
|
142
|
+
const parkFeature: Feature<Point, ParkProperties> = {
|
|
143
|
+
type: 'Feature',
|
|
144
|
+
geometry: {
|
|
145
|
+
type: 'Point',
|
|
146
|
+
coordinates: [-73.9654, 40.7829], // [longitude, latitude]
|
|
147
|
+
},
|
|
148
|
+
properties: {
|
|
149
|
+
name: 'Central Park',
|
|
150
|
+
area: 3410000,
|
|
151
|
+
},
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
function logLocation(feature: Feature<Point, ParkProperties>): void {
|
|
155
|
+
const [longitude, latitude] = feature.geometry.coordinates;
|
|
156
|
+
console.log(`${feature.properties.name} is at ${latitude}, ${longitude}`);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
logLocation(parkFeature);
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
## API Summary
|
|
163
|
+
|
|
164
|
+
### General Utility Types
|
|
165
|
+
|
|
166
|
+
This module provides a wide array of utility types for type manipulation. Below are some of the most common ones.
|
|
167
|
+
|
|
168
|
+
| Type | Description |
|
|
169
|
+
| --- | --- |
|
|
170
|
+
| `Writable<T>` | Makes all properties of `T` mutable (removes `readonly`). |
|
|
171
|
+
| `DeepWritable<T>` | Recursively makes all properties of `T` mutable. |
|
|
172
|
+
| `DeepPartial<T>` | Recursively makes all properties of `T` optional. |
|
|
173
|
+
| `DeepReadonly<T>` | Recursively makes all properties of `T` readonly. |
|
|
174
|
+
| `DeepNonNullable<T>` | Recursively removes `null` and `undefined` from all properties of `T`. |
|
|
175
|
+
| `Simplify<T>` | Flattens intersection types (`&`) into a single object type for better readability. |
|
|
176
|
+
| `Optionalize<T>` | Converts properties of `T` that can be `undefined` into optional properties (`?`). |
|
|
177
|
+
| `PickBy<T, V>` | Creates a type by picking properties from `T` whose values are assignable to `V`. |
|
|
178
|
+
| `OmitBy<T, V>` | Creates a type by omitting properties from `T` whose values are assignable to `V`. |
|
|
179
|
+
| `OneOrMany<T>` | Represents a single `T` or a `readonly T[]`. |
|
|
180
|
+
| `Json` | Represents any valid JSON value (`string \| number \| boolean \| null \| JsonObject \| JsonArray`). |
|
|
181
|
+
| `Paths<T>` | Creates a union of all possible dot-notation paths for keys in object `T`. |
|
|
182
|
+
| `TypeFromPath<T, Path>` | Infers the type of a property in `T` at a given `Path`. |
|
|
183
|
+
| `PickDeep<T, S>` | Picks properties from `T` recursively based on a selection shape `S`. |
|
|
184
|
+
| `OmitDeep<T, S>` | Omits properties from `T` recursively based on a selection shape `S`. |
|
|
185
|
+
| `Merge<T1, T2>` | Merges two types, with properties from `T2` overwriting those in `T1`. |
|
|
186
|
+
|
|
187
|
+
### Tagged Types
|
|
188
|
+
|
|
189
|
+
| Type | Description |
|
|
190
|
+
| --- | --- |
|
|
191
|
+
| `Tagged<Type, TagName>` | Creates a new, distinct ("branded") type from a base `Type`. |
|
|
192
|
+
| `Untagged<T>` | Extracts the base, untagged type from a `Tagged` type. |
|
|
193
|
+
| `GetTagMetadata<Type, TagName>` | Extracts the metadata from a `Tagged` type. |
|
|
194
|
+
| `HasTag<T, Token>` | Checks if a type `T` has a specific tag `Token`. Returns `true` or `false`. |
|
|
195
|
+
|
|
196
|
+
### GeoJSON Types
|
|
197
|
+
|
|
198
|
+
| Type | Description |
|
|
199
|
+
| --- | --- |
|
|
200
|
+
| `Position` | A tuple representing coordinates: `[longitude, latitude, elevation?]`. |
|
|
201
|
+
| `Point` | A GeoJSON geometry object with a single `Position`. |
|
|
202
|
+
| `LineString` | A GeoJSON geometry object with an array of `Position`s. |
|
|
203
|
+
| `Polygon` | A GeoJSON geometry object with an array of `Position` arrays (rings). |
|
|
204
|
+
| `Geometry` | A union of all possible GeoJSON geometry types. |
|
|
205
|
+
| `Feature<G, P>` | A GeoJSON object containing a `Geometry` object and properties. |
|
|
206
|
+
| `FeatureCollection<G, P>` | A GeoJSON object containing an array of `Feature` objects. |
|
|
207
|
+
|
|
208
|
+
### Web Types
|
|
209
|
+
|
|
210
|
+
| Type | Description |
|
|
211
|
+
| --- | --- |
|
|
212
|
+
| `InputType` | A literal union of all valid `type` attribute values for an HTML `<input>` element. |
|
|
213
|
+
| `InputMode` | A literal union of all valid `inputmode` attribute values for an HTML `<input>` element. |
|
|
214
|
+
| `InputAutocomplete` | A literal union of all valid `autocomplete` attribute values for an HTML `<input>` element. |
|
|
215
|
+
| `InputAttributes` | An object type representing all valid attributes for an HTML `<input>` element. |
|
|
216
|
+
| `TextAreaAttributes` | An object type representing all valid attributes for an HTML `<textarea>` element. |
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import type { JsonObject } from './types.js';
|
|
2
|
+
|
|
3
|
+
export type Position = [longitude: number, latitude: number, elevation?: number];
|
|
4
|
+
|
|
5
|
+
export type GeoJsonObject<Type extends string> = {
|
|
6
|
+
type: Type,
|
|
7
|
+
bbox?: [number, number, number, number] | [number, number, number, number, number, number],
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export type Point = GeoJsonObject<'Point'> & {
|
|
11
|
+
coordinates: Position,
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export type LineString = GeoJsonObject<'LineString'> & {
|
|
15
|
+
coordinates: Position[],
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export type Polygon = GeoJsonObject<'Polygon'> & {
|
|
19
|
+
coordinates: Position[][],
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export type MultiPoint = GeoJsonObject<'MultiPoint'> & {
|
|
23
|
+
coordinates: Position[],
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export type MultiLineString = GeoJsonObject<'MultiLineString'> & {
|
|
27
|
+
coordinates: Position[][],
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export type MultiPolygon = GeoJsonObject<'MultiPolygon'> & {
|
|
31
|
+
coordinates: Position[][][],
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export type GeometryCollection = GeoJsonObject<'GeometryCollection'> & {
|
|
35
|
+
geometries: Geometry[],
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export type Geometry = Point | LineString | Polygon | MultiPoint | MultiLineString | MultiPolygon | GeometryCollection;
|
|
39
|
+
|
|
40
|
+
export type Feature<G extends Geometry | null = null, P extends JsonObject | null = null> = GeoJsonObject<'Feature'> & {
|
|
41
|
+
id?: string | number,
|
|
42
|
+
geometry: G,
|
|
43
|
+
properties: P,
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export type FeatureCollection<G extends Geometry | null = null, P extends JsonObject | null = null> = GeoJsonObject<'FeatureCollection'> & {
|
|
47
|
+
features: Feature<G, P>[],
|
|
48
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { Record } from './types.js';
|
|
2
|
+
|
|
3
|
+
export declare const tag: unique symbol;
|
|
4
|
+
export declare const type: unique symbol;
|
|
5
|
+
|
|
6
|
+
export type TagContainer<Type, Token> = { readonly [tag]?: Token, readonly [type]?: Type };
|
|
7
|
+
|
|
8
|
+
export type Tag<Type, Token extends PropertyKey, TagMetadata> = TagContainer<Type, Record<Token, TagMetadata>>;
|
|
9
|
+
|
|
10
|
+
export type HasTag<T, Token = unknown> = T extends TagContainer<unknown, Token> ? true : false;
|
|
11
|
+
|
|
12
|
+
export type Tagged<Type = unknown, TagName extends PropertyKey = PropertyKey, TagMetadata = unknown> = Type & Tag<Type, TagName, TagMetadata>;
|
|
13
|
+
|
|
14
|
+
export type GetTagMetadata<Type extends Tag<unknown, TagName, unknown>, TagName extends PropertyKey> = NonNullable<Type[typeof tag]>[TagName];
|
|
15
|
+
|
|
16
|
+
export type UnwrapTagged<TaggedType extends Tag<unknown, PropertyKey, any>> = TaggedType extends Tagged<infer Type, PropertyKey, any> ? Type : never;
|
|
17
|
+
|
|
18
|
+
export type Untagged<T> = T extends Tagged ? UnwrapTagged<T> : T;
|
|
19
|
+
|
|
20
|
+
export type UntaggedDeep<T> =
|
|
21
|
+
Untagged<T> extends any[] | Record
|
|
22
|
+
? { [P in keyof Untagged<T>]: UntaggedDeep<Untagged<T>[P]> }
|
|
23
|
+
: Untagged<T>;
|
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/consistent-indexed-object-style */
|
|
2
|
+
|
|
3
|
+
import type { Observable } from 'rxjs';
|
|
4
|
+
import type { CamelCase, Except, IsEqual, LiteralUnion } from 'type-fest';
|
|
5
|
+
|
|
6
|
+
import type { Signal } from '#/signals/api.js';
|
|
7
|
+
|
|
8
|
+
export type ObjectLiteral = {}; // eslint-disable-line @typescript-eslint/no-empty-object-type
|
|
9
|
+
|
|
10
|
+
export type Function<P extends any[] = any[], R = any> = (...params: P) => R;
|
|
11
|
+
|
|
12
|
+
export type PrimitiveTypeMap = {
|
|
13
|
+
string: string,
|
|
14
|
+
number: number,
|
|
15
|
+
boolean: boolean,
|
|
16
|
+
bigint: bigint,
|
|
17
|
+
symbol: symbol,
|
|
18
|
+
object: object,
|
|
19
|
+
function: Function,
|
|
20
|
+
undefined: undefined,
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export type PrimitiveTypeString<T extends PrimitiveTypeMap[keyof PrimitiveTypeMap] = PrimitiveTypeMap[keyof PrimitiveTypeMap]> = Simplify<keyof PickBy<PrimitiveTypeMap, T>>;
|
|
24
|
+
export type PrimitiveType<T extends keyof PrimitiveTypeMap = keyof PrimitiveTypeMap> = Simplify<PrimitiveTypeMap[T]>;
|
|
25
|
+
|
|
26
|
+
export type Nested<T> = T | NestedObject<T> | NestedArray<T>;
|
|
27
|
+
export type NestedObject<T> = { [key: string]: Nested<T> };
|
|
28
|
+
export type NestedArray<T> = T[];
|
|
29
|
+
|
|
30
|
+
export type FilledArray<T> = [T, ...(T)[]];
|
|
31
|
+
export type FilledReadonlyArray<T> = readonly [T, ... (T)[]];
|
|
32
|
+
|
|
33
|
+
export type Primitive = string | number | boolean | bigint | symbol | null | undefined;
|
|
34
|
+
export type PrimitiveValue = Primitive | PrimitiveObject | PrimitiveArray;
|
|
35
|
+
export type PrimitiveObject = { [key: string]: PrimitiveValue };
|
|
36
|
+
export type PrimitiveArray = PrimitiveValue[];
|
|
37
|
+
export type BuiltIn = Primitive | RegExp | Date | Function;
|
|
38
|
+
export type IsPrimitive<T> = [T] extends [Primitive] ? true : false;
|
|
39
|
+
|
|
40
|
+
export type Json = JsonPrimitive | JsonObject | JsonArray;
|
|
41
|
+
export type JsonPrimitive = string | number | boolean | null;
|
|
42
|
+
export type JsonObject = { [key: string]: Json };
|
|
43
|
+
export type JsonArray = Json[] | readonly Json[];
|
|
44
|
+
|
|
45
|
+
export type UndefinableJson = JsonPrimitive | UndefinableJsonObject | UndefinableJsonArray;
|
|
46
|
+
export type UndefinableJsonInnerNode = UndefinableJsonPrimitive | UndefinableJsonObject | UndefinableJsonArray;
|
|
47
|
+
export type UndefinableJsonPrimitive = JsonPrimitive | undefined;
|
|
48
|
+
export type UndefinableJsonObject = { [key: string]: UndefinableJsonInnerNode };
|
|
49
|
+
export type UndefinableJsonArray = UndefinableJsonInnerNode[] | readonly UndefinableJsonInnerNode[];
|
|
50
|
+
|
|
51
|
+
export type ArrayItem<T extends readonly any[]> = T extends readonly (infer U)[] ? U : never;
|
|
52
|
+
|
|
53
|
+
export type Enumeration = EnumerationArray | EnumerationObject;
|
|
54
|
+
export type EnumerationArray = readonly [string | number, ...(string | number)[]];
|
|
55
|
+
export type EnumerationObject<V extends string | number = string | number> = Record<string, V>;
|
|
56
|
+
export type EnumerationKey<T extends EnumerationObject = EnumerationObject> = Extract<keyof T, string>;
|
|
57
|
+
export type EnumerationMap<T extends EnumerationObject = EnumerationObject> = SimplifyObject<{ [P in EnumerationKey<T>]: (T[P] extends number ? (`${T[P]}` extends `${infer U extends number}` ? U : never) : T[P]) | T[P] }>;
|
|
58
|
+
export type EnumerationValue<T extends Enumeration = Enumeration> = T extends EnumerationObject ? SimplifyDeep<EnumerationMap<T>[keyof EnumerationMap<T>]> : T extends EnumerationArray ? T[number] : never;
|
|
59
|
+
export type EnumerationEntry<T extends EnumerationObject = EnumerationObject> = { [P in EnumerationKey<T>]: [P, EnumerationMap<T>[P]] }[EnumerationKey<T>];
|
|
60
|
+
type EnumerationEntriesHelper<T extends EnumerationObject = EnumerationObject, Tuple = UnionToTuple<EnumerationKey<T>>> = { [P in keyof Tuple]: [Tuple[P], Tuple[P] extends EnumerationKey<T> ? EnumerationMap<T>[Tuple[P]] : never] };
|
|
61
|
+
export type EnumerationEntries<T extends EnumerationObject = EnumerationObject> = EnumerationEntriesHelper<T> extends (infer U)[] ? U[] : never;
|
|
62
|
+
|
|
63
|
+
export type Type<T = any, Arguments extends any[] = any> = Constructor<T, Arguments> & { prototype: T };
|
|
64
|
+
export type Constructor<T = any, Arguments extends any[] = any[]> = new (...args: Arguments) => T;
|
|
65
|
+
export type AbstractType<T = any, Arguments extends any[] = any[]> = AbstractConstructor<T, Arguments> & { prototype: T };
|
|
66
|
+
export type AbstractConstructor<T = any, Arguments extends any[] = any> = abstract new (...args: Arguments) => T;
|
|
67
|
+
export type ReturnTypeOrT<T> = T extends (...args: any) => infer R ? R : T;
|
|
68
|
+
|
|
69
|
+
export type Cast<X, Y> = X extends Y ? X : Y;
|
|
70
|
+
export type Record<K extends PropertyKey = PropertyKey, V = any> = { [P in K]: V };
|
|
71
|
+
export type DeepRecord<K extends PropertyKey = PropertyKey, V = any> = { [P in K]: V | DeepRecord<K, V> };
|
|
72
|
+
export type StringMap<T = any> = Record<string, T>;
|
|
73
|
+
export type NumberMap<T = any> = Record<number, T>;
|
|
74
|
+
export type StringNumberMap<T = any> = { [key: string]: T, [key: number]: T };
|
|
75
|
+
|
|
76
|
+
export type OneOrMany<T> = T | readonly T[];
|
|
77
|
+
export type WritableOneOrMany<T> = T | T[];
|
|
78
|
+
|
|
79
|
+
export type Entries<T> = Extract<{
|
|
80
|
+
[K in keyof T]: [K, T[K]];
|
|
81
|
+
}[keyof T], any[]>[];
|
|
82
|
+
|
|
83
|
+
type FromEntriesEntryValue<T extends readonly (readonly [any, any])[], K> = Extract<T[number], readonly [K, any]>[1];
|
|
84
|
+
|
|
85
|
+
export type FromEntries<T> = T extends readonly (readonly [infer Key, any])[]
|
|
86
|
+
? { [K in Cast<Key, PropertyKey>]: Fallback<FromEntriesEntryValue<T, K>, T[number][1]> }
|
|
87
|
+
: never;
|
|
88
|
+
|
|
89
|
+
export type Writable<T> = T extends readonly (infer U)[] ? U[] : { -readonly [P in keyof T]: T[P] };
|
|
90
|
+
export type DeepWritable<T> = T extends readonly (infer U)[] ? DeepWritable<U>[] : { -readonly [P in keyof T]: DeepWritable<T[P]> };
|
|
91
|
+
|
|
92
|
+
export type RequiredKeys<T> = { [K in keyof T]-?: ObjectLiteral extends Pick<T, K> ? never : K }[keyof T];
|
|
93
|
+
export type OptionalKeys<T> = { [K in keyof T]-?: ObjectLiteral extends Pick<T, K> ? K : never }[keyof T];
|
|
94
|
+
|
|
95
|
+
export type TypedOmit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
|
|
96
|
+
export type TypedExclude<T, U extends T> = T extends U ? never : T;
|
|
97
|
+
export type TypedExtract<T, U extends T> = T extends U ? T : never;
|
|
98
|
+
|
|
99
|
+
export type ReplaceIfUnknown<T, U> = IfUnknown<T, U, T>;
|
|
100
|
+
|
|
101
|
+
export type OmitNever<T extends Record> = { [K in keyof T as T[K] extends never ? never : K]: T[K] };
|
|
102
|
+
|
|
103
|
+
export type BaseType<T extends Exclude<Primitive, null | undefined>> =
|
|
104
|
+
T extends string ? string
|
|
105
|
+
: T extends number ? number
|
|
106
|
+
: T extends boolean ? boolean
|
|
107
|
+
: T extends bigint ? bigint
|
|
108
|
+
: T extends symbol ? symbol
|
|
109
|
+
: T extends null ? null
|
|
110
|
+
: T extends undefined ? undefined
|
|
111
|
+
: never;
|
|
112
|
+
|
|
113
|
+
export type SharedProperties<A, B, C = unknown, D = unknown, E = unknown, F = unknown, G = unknown, H = unknown, I = unknown, J = unknown> = OmitNever<Pick<
|
|
114
|
+
A & B & C & D & E & F & G & H & I & J,
|
|
115
|
+
keyof A & keyof B & keyof ReplaceIfUnknown<C, never> & keyof ReplaceIfUnknown<D, never> & keyof ReplaceIfUnknown<E, never> & keyof ReplaceIfUnknown<F, never> & keyof ReplaceIfUnknown<G, never> & keyof ReplaceIfUnknown<H, never> & keyof ReplaceIfUnknown<I, never> & keyof ReplaceIfUnknown<J, never>
|
|
116
|
+
>>;
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Omit properties from a type that extend from a specific type.
|
|
120
|
+
*/
|
|
121
|
+
export type OmitBy<T, V> = Omit<T, { [K in keyof T]: V extends Extract<T[K], V> ? K : never }[keyof T]>;
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* Normalize properties of a type that allow `undefined` to make them optional.
|
|
125
|
+
*/
|
|
126
|
+
export type Optionalize<T extends object> = SimplifyObject<OmitBy<T, undefined> & Partial<PickBy<T, undefined>>>;
|
|
127
|
+
|
|
128
|
+
export type OptionalizeDeep<T> = T extends BuiltIn ? T
|
|
129
|
+
: T extends (infer U)[] ? OptionalizeDeep<U>[]
|
|
130
|
+
: T extends readonly (infer U)[] ? readonly OptionalizeDeep<U>[]
|
|
131
|
+
: Optionalize<{ [P in keyof T]: OptionalizeDeep<T[P]> }>;
|
|
132
|
+
|
|
133
|
+
export type OptionalizeNull<T extends object> = SimplifyObject<OmitBy<T, null> & Partial<PickBy<T, null>>>;
|
|
134
|
+
|
|
135
|
+
export type OptionalizeNullDeep<T> = T extends BuiltIn ? T
|
|
136
|
+
: T extends (infer U)[] ? OptionalizeNullDeep<U>[]
|
|
137
|
+
: T extends readonly (infer U)[] ? readonly OptionalizeNullDeep<U>[]
|
|
138
|
+
: OptionalizeNull<{ [P in keyof T]: OptionalizeNullDeep<T[P]> }>;
|
|
139
|
+
|
|
140
|
+
export type OptionalizeNullable<T extends object> = SimplifyObject<OmitBy<T, null | undefined> & Partial<PickBy<T, null | undefined>>>;
|
|
141
|
+
|
|
142
|
+
export type OptionalizeNullableDeep<T> = T extends BuiltIn ? T
|
|
143
|
+
: T extends readonly (infer U)[] ? OptionalizeNullableDeep<U>[]
|
|
144
|
+
: T extends (infer U)[] ? OptionalizeNullableDeep<U>[]
|
|
145
|
+
: OptionalizeNullable<{ [P in keyof T]: OptionalizeNullableDeep<T[P]> }>;
|
|
146
|
+
|
|
147
|
+
export type Unoptionalize<T extends object> = SimplifyObject<OmitBy<T, undefined> & { [P in PropertiesOfType<T, undefined>]: T[P] | undefined }>;
|
|
148
|
+
|
|
149
|
+
export type Merge<T1, T2> = SimplifyObject<Except<T1, Extract<keyof T1, keyof T2>> & T2>;
|
|
150
|
+
|
|
151
|
+
export type Simplify<T> = T extends BuiltIn ? T
|
|
152
|
+
: T extends readonly any[] ? SimplifyArray<T>
|
|
153
|
+
: T extends Record ? SimplifyObject<T>
|
|
154
|
+
: T;
|
|
155
|
+
|
|
156
|
+
export type SimplifyObject<T extends Record> = { [K in keyof T]: T[K] } & {};
|
|
157
|
+
export type SimplifyArray<T extends readonly any[]> = { [I in keyof T]: Simplify<T[I]> };
|
|
158
|
+
|
|
159
|
+
export type SimplifyDeep<T> = T extends BuiltIn ? T
|
|
160
|
+
: T extends readonly any[] ? { [I in keyof T]: SimplifyDeep<T[I]> }
|
|
161
|
+
: T extends Record ? { [K in keyof T]: SimplifyDeep<T[K]> } & {}
|
|
162
|
+
: T;
|
|
163
|
+
|
|
164
|
+
export type SimplifiedLiteralUnion<Literal extends Primitive, Base extends Primitive = BaseType<Exclude<Literal, null | undefined>>> = If<IsEqual<Literal, Base>, Literal, LiteralUnion<Literal, Base>>;
|
|
165
|
+
|
|
166
|
+
export type UnionToIntersection<Union> = (Union extends unknown ? (distributedUnion: Union) => void : never) extends ((mergedIntersection: infer Intersection) => void) ? Intersection : never;
|
|
167
|
+
|
|
168
|
+
export type UnionToTuple<T, Tuple extends any[] = []> = UnionToIntersection<T extends any ? () => T : never> extends () => infer R ? UnionToTuple<Exclude<T, R>, [R, ...Tuple]> : Tuple;
|
|
169
|
+
|
|
170
|
+
export type UndefinableObject<T extends Record> = { [K in keyof T]: T[K] | undefined };
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Pick properties from a type that extend from a specific type.
|
|
174
|
+
*/
|
|
175
|
+
export type PickBy<T, V> = Pick<T, { [K in keyof T]: V extends Extract<T[K], V> ? K : never }[keyof T]>;
|
|
176
|
+
|
|
177
|
+
export type NonNullable<T> = T extends null ? never : T;
|
|
178
|
+
export type NonUndefinable<T> = T extends undefined ? never : T;
|
|
179
|
+
export type NonNullOrUndefinable<T> = T extends null | undefined ? never : T;
|
|
180
|
+
export type NoUnion<T> = [T] extends [boolean] ? boolean : [T] extends [UnionToIntersection<T>] ? T : never;
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Makes optional properties required and removes null and undefined
|
|
184
|
+
*/
|
|
185
|
+
export type DeepNonNullable<T> = T extends Record ? { [P in keyof T]-?: DeepNonNullable<T[P]> } : NonNullable<T>;
|
|
186
|
+
|
|
187
|
+
export type IfAny<T, Then, Else = never> = true extends (false & T) ? Then : Else;
|
|
188
|
+
export type IfUnknown<T, Then, Else = never> = unknown extends T ? Then : Else;
|
|
189
|
+
|
|
190
|
+
export type IsAny<T> = IfAny<T, true, false>;
|
|
191
|
+
export type IsUnknown<T> = IfUnknown<T, true, false>;
|
|
192
|
+
|
|
193
|
+
export type If<B extends boolean, Then, Else> = B extends true ? Then : Else;
|
|
194
|
+
export type Not<T extends boolean> = T extends true ? false : true;
|
|
195
|
+
|
|
196
|
+
export type Fallback<T, F> = [T] extends [never] ? F : T;
|
|
197
|
+
|
|
198
|
+
export type PartialProperty<T, P extends keyof T> = Omit<T, P> & Partial<Pick<T, P>>;
|
|
199
|
+
export type TypeOf<T extends object, P extends keyof T> = T[P];
|
|
200
|
+
export type PropertyOf<T extends object, P extends keyof T> = Property<Of<T>, P>;
|
|
201
|
+
export type Property<T extends object, P extends keyof T> = { [P2 in keyof T[P]]: T[P][P2] };
|
|
202
|
+
export type Of<T> = T;
|
|
203
|
+
export type PropertiesOfType<T, U> = keyof PickBy<T, U>;
|
|
204
|
+
|
|
205
|
+
export type Flatten<T> = T extends readonly (infer R)[] ? R : T;
|
|
206
|
+
export type DeepFlatten<T> = T extends readonly (infer R)[]
|
|
207
|
+
? DeepFlatten<R>
|
|
208
|
+
: T extends Record ? { [P in keyof T]: DeepFlatten<T[P]> }
|
|
209
|
+
: T;
|
|
210
|
+
|
|
211
|
+
export type DeepArray<T> = (T | DeepArray<T>)[];
|
|
212
|
+
|
|
213
|
+
export type DeepReadonly<T> = T extends BuiltIn ? T : T extends (any[] | readonly any[]) ? DeepReadonlyArray<T[number]> : DeepReadonlyObject<T>;
|
|
214
|
+
export type DeepReadonlyObject<T> = { readonly [P in keyof T]: DeepReadonly<T[P]> };
|
|
215
|
+
export type DeepReadonlyArray<T> = readonly DeepReadonly<T>[];
|
|
216
|
+
|
|
217
|
+
export type ReplaceKey<T, K extends keyof T, U> = SimplifyObject<{ [P in keyof T]: P extends K ? U : T[P] }>;
|
|
218
|
+
|
|
219
|
+
export type DeepPartial<T> = T extends BuiltIn
|
|
220
|
+
? T
|
|
221
|
+
: T extends any[] ? DeepPartialArray<T[number]>
|
|
222
|
+
: T extends readonly any[] ? Readonly<DeepPartialArray<T[number]>>
|
|
223
|
+
: DeepPartialObject<T>;
|
|
224
|
+
export type DeepPartialObject<T> = { [P in keyof T]?: DeepPartial<T[P]> };
|
|
225
|
+
export type DeepPartialArray<T> = DeepPartial<T>[];
|
|
226
|
+
|
|
227
|
+
export type TypedArray =
|
|
228
|
+
| Int8Array
|
|
229
|
+
| Uint8Array
|
|
230
|
+
| Uint8ClampedArray
|
|
231
|
+
| Int16Array
|
|
232
|
+
| Uint16Array
|
|
233
|
+
| Int32Array
|
|
234
|
+
| Uint32Array
|
|
235
|
+
| Float32Array
|
|
236
|
+
| Float64Array
|
|
237
|
+
| BigInt64Array
|
|
238
|
+
| BigUint64Array;
|
|
239
|
+
|
|
240
|
+
export type BinaryData<T extends ArrayBufferLike = ArrayBufferLike> = ArrayBufferView<T> | T;
|
|
241
|
+
|
|
242
|
+
export type Path<T extends Record> = T extends object
|
|
243
|
+
? { [K in keyof T]-?: K extends string | number ? `${K}` | `${K}.${Path<T[K]>}` : never }[keyof T]
|
|
244
|
+
: never;
|
|
245
|
+
|
|
246
|
+
export type TypeFromPath<T extends Record, P extends Path<T> | string> = {
|
|
247
|
+
[K in P]: K extends keyof T
|
|
248
|
+
? T[K]
|
|
249
|
+
: K extends `${infer P}.${infer S}`
|
|
250
|
+
? T[P] extends Record
|
|
251
|
+
? TypeFromPath<T[P], S>
|
|
252
|
+
: never
|
|
253
|
+
: never;
|
|
254
|
+
}[P];
|
|
255
|
+
|
|
256
|
+
export type ConstructorParameterDecorator = (target: object, propertyKey: undefined, parameterIndex: number) => void;
|
|
257
|
+
|
|
258
|
+
export type ReactiveValue<T> = T | Signal<T> | Observable<T>;
|
|
259
|
+
|
|
260
|
+
/* Type-fests PascalCase minus options. Fixes tsc bug for some reason */
|
|
261
|
+
export type PascalCase<Value> = CamelCase<Value> extends string ? Capitalize<CamelCase<Value>> : CamelCase<Value>;
|
|
262
|
+
|
|
263
|
+
type PickOmitDeepSelection<T> = T extends (infer U)[] ? (boolean | PickOmitDeepSelection<U>)
|
|
264
|
+
: T extends Record<any> ? (boolean | { [P in keyof T]?: PickOmitDeepSelection<T[P]> })
|
|
265
|
+
: boolean;
|
|
266
|
+
|
|
267
|
+
export type PickDeepSelection<T> = PickOmitDeepSelection<T>;
|
|
268
|
+
export type OmitDeepSelection<T> = PickOmitDeepSelection<T>;
|
|
269
|
+
|
|
270
|
+
export type PickDeep<T, S extends PickDeepSelection<T>> =
|
|
271
|
+
T extends Record<any> ? Simplify<{
|
|
272
|
+
[P in keyof S as S[P] extends (true | Record<any>) ? P : never]:
|
|
273
|
+
S[P] extends true
|
|
274
|
+
? T[Extract<P, keyof T>]
|
|
275
|
+
: T[Extract<P, keyof T>] extends (infer U)[]
|
|
276
|
+
? S[P] extends PickDeepSelection<U> ? PickDeep<U, S[P]>[] : never
|
|
277
|
+
: S[P] extends Record<any>
|
|
278
|
+
? S[P] extends PickDeepSelection<T[Extract<P, keyof T>]> ? PickDeep<T[Extract<P, keyof T>], S[P]> : never
|
|
279
|
+
: never
|
|
280
|
+
}> : T;
|
|
281
|
+
|
|
282
|
+
export type OmitDeep<T, S extends OmitDeepSelection<T>> = T extends Record<any> ? Simplify<{
|
|
283
|
+
[P in keyof T as true extends S[Extract<P, keyof S>] ? never : P]:
|
|
284
|
+
[S[Extract<P, keyof S>]] extends ([false] | [never]) ? T[P]
|
|
285
|
+
: S[Extract<P, keyof S>] extends Record<any>
|
|
286
|
+
? T[P] extends (infer U)[]
|
|
287
|
+
? S[Extract<P, keyof S>] extends OmitDeepSelection<U> ? OmitDeep<U, S[Extract<P, keyof S>]>[] : never
|
|
288
|
+
: S[Extract<P, keyof S>] extends OmitDeepSelection<T[P]> ? OmitDeep<T[P], S[Extract<P, keyof S>]> : never
|
|
289
|
+
: never
|
|
290
|
+
}> : T;
|