@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,118 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "bbffc0f2-678b-42e9-8121-1731a04b8987",
|
|
3
|
+
"prevId": "00000000-0000-0000-0000-000000000000",
|
|
4
|
+
"version": "7",
|
|
5
|
+
"dialect": "postgresql",
|
|
6
|
+
"tables": {
|
|
7
|
+
"test.test": {
|
|
8
|
+
"name": "test",
|
|
9
|
+
"schema": "test",
|
|
10
|
+
"columns": {
|
|
11
|
+
"id": {
|
|
12
|
+
"name": "id",
|
|
13
|
+
"type": "uuid",
|
|
14
|
+
"primaryKey": true,
|
|
15
|
+
"notNull": true,
|
|
16
|
+
"default": "gen_random_uuid()"
|
|
17
|
+
},
|
|
18
|
+
"title": {
|
|
19
|
+
"name": "title",
|
|
20
|
+
"type": "text",
|
|
21
|
+
"primaryKey": false,
|
|
22
|
+
"notNull": true
|
|
23
|
+
},
|
|
24
|
+
"content": {
|
|
25
|
+
"name": "content",
|
|
26
|
+
"type": "text",
|
|
27
|
+
"primaryKey": false,
|
|
28
|
+
"notNull": true
|
|
29
|
+
},
|
|
30
|
+
"tags": {
|
|
31
|
+
"name": "tags",
|
|
32
|
+
"type": "text",
|
|
33
|
+
"primaryKey": false,
|
|
34
|
+
"notNull": true
|
|
35
|
+
},
|
|
36
|
+
"language": {
|
|
37
|
+
"name": "language",
|
|
38
|
+
"type": "text",
|
|
39
|
+
"primaryKey": false,
|
|
40
|
+
"notNull": true
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"indexes": {
|
|
44
|
+
"test_parade_idx": {
|
|
45
|
+
"name": "test_parade_idx",
|
|
46
|
+
"columns": [
|
|
47
|
+
{
|
|
48
|
+
"expression": "id",
|
|
49
|
+
"isExpression": false,
|
|
50
|
+
"asc": true,
|
|
51
|
+
"nulls": "last"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"expression": "\"language\"",
|
|
55
|
+
"asc": true,
|
|
56
|
+
"isExpression": true,
|
|
57
|
+
"nulls": "last"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"expression": "\"title\"",
|
|
61
|
+
"asc": true,
|
|
62
|
+
"isExpression": true,
|
|
63
|
+
"nulls": "last"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"expression": "\"content\"",
|
|
67
|
+
"asc": true,
|
|
68
|
+
"isExpression": true,
|
|
69
|
+
"nulls": "last"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"expression": "\"tags\"",
|
|
73
|
+
"asc": true,
|
|
74
|
+
"isExpression": true,
|
|
75
|
+
"nulls": "last"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"expression": "((\"title\" || ' ' || \"content\" || ' ' || \"tags\")::pdb.simple('alias=search_text'))",
|
|
79
|
+
"asc": true,
|
|
80
|
+
"isExpression": true,
|
|
81
|
+
"nulls": "last"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"expression": "(('foo')::pdb.simple('alias=foo'))",
|
|
85
|
+
"asc": true,
|
|
86
|
+
"isExpression": true,
|
|
87
|
+
"nulls": "last"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"isUnique": false,
|
|
91
|
+
"concurrently": false,
|
|
92
|
+
"method": "bm25",
|
|
93
|
+
"with": {
|
|
94
|
+
"key_field": "'id'",
|
|
95
|
+
"mutable_segment_rows": 12
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"foreignKeys": {},
|
|
100
|
+
"compositePrimaryKeys": {},
|
|
101
|
+
"uniqueConstraints": {},
|
|
102
|
+
"policies": {},
|
|
103
|
+
"checkConstraints": {},
|
|
104
|
+
"isRLSEnabled": false
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"enums": {},
|
|
108
|
+
"schemas": {},
|
|
109
|
+
"sequences": {},
|
|
110
|
+
"roles": {},
|
|
111
|
+
"policies": {},
|
|
112
|
+
"views": {},
|
|
113
|
+
"_meta": {
|
|
114
|
+
"columns": {},
|
|
115
|
+
"schemas": {},
|
|
116
|
+
"tables": {}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { relative, resolve } from 'node:path';
|
|
2
|
+
|
|
3
|
+
import { defineConfig } from 'drizzle-kit';
|
|
4
|
+
|
|
5
|
+
export default defineConfig({
|
|
6
|
+
dialect: 'postgresql',
|
|
7
|
+
out: relative('./', resolve(__dirname, './drizzle/').replace('dist', 'source')),
|
|
8
|
+
schema: resolve(__dirname, './schemas.js'),
|
|
9
|
+
migrations: {
|
|
10
|
+
schema: 'test',
|
|
11
|
+
table: '_migrations',
|
|
12
|
+
},
|
|
13
|
+
});
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { inject, Injector } from '#/injector/index.js';
|
|
2
|
+
import { type DatabaseConfig, Database, migrate } from '#/orm/server/index.js';
|
|
3
|
+
|
|
4
|
+
export class TestModuleConfig {
|
|
5
|
+
database?: DatabaseConfig;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export function configureTest(config: TestModuleConfig): void {
|
|
9
|
+
Injector.register(TestModuleConfig, { useValue: config });
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export async function migrateTestSchema(): Promise<void> {
|
|
13
|
+
const connection = inject(TestModuleConfig, undefined, { optional: true })?.database?.connection;
|
|
14
|
+
const database = inject(Database, connection);
|
|
15
|
+
|
|
16
|
+
await migrate(
|
|
17
|
+
database,
|
|
18
|
+
{
|
|
19
|
+
migrationsSchema: 'test',
|
|
20
|
+
migrationsTable: '_migrations',
|
|
21
|
+
migrationsFolder: import.meta.resolve('./drizzle').replace('file://', ''),
|
|
22
|
+
}
|
|
23
|
+
);
|
|
24
|
+
}
|
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
import { sql } from 'drizzle-orm';
|
|
2
|
+
|
|
3
|
+
import { BaseEntity, ParadeCompoundIndex, ParadeExpressionIndex, ParadeIndex, type NewEntity } from '#/orm/index.js';
|
|
4
|
+
import { StringProperty } from '#/schema/index.js';
|
|
5
|
+
|
|
6
|
+
@ParadeExpressionIndex<Test>('foo', () => sql`'foo'`)
|
|
7
|
+
@ParadeCompoundIndex<Test>('search_text', (table) => [table.title, 'content', 'tags'])
|
|
8
|
+
@ParadeIndex<Test>({ columns: ['language'] })
|
|
9
|
+
export class Test extends BaseEntity {
|
|
10
|
+
@ParadeIndex()
|
|
11
|
+
@StringProperty()
|
|
12
|
+
title: string;
|
|
13
|
+
|
|
14
|
+
@ParadeIndex()
|
|
15
|
+
@StringProperty()
|
|
16
|
+
content: string;
|
|
17
|
+
|
|
18
|
+
@ParadeIndex()
|
|
19
|
+
@StringProperty()
|
|
20
|
+
tags: string;
|
|
21
|
+
|
|
22
|
+
@StringProperty()
|
|
23
|
+
language: string;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export const testData: NewEntity<Test>[] = [
|
|
27
|
+
{
|
|
28
|
+
title: 'Optimizing PostgreSQL Full-Text Search with GIN Indexes',
|
|
29
|
+
content: 'A deep dive into GIN index performance. We explore how to configure a GIN index and optimize database queries for efficient full-text search. Better performance is key.',
|
|
30
|
+
tags: ['postgresql', 'database', 'performance', 'full-text search', 'gin index'],
|
|
31
|
+
language: 'english',
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
title: 'Getting Started with Drizzle ORM and TypeScript',
|
|
35
|
+
content: 'Drizzle ORM is a powerful tool for TypeScript developers. This guide shows how to set up your first project, define a schema, and run queries against your database.',
|
|
36
|
+
tags: ['drizzle orm', 'typescript', 'orm', 'database', 'backend'],
|
|
37
|
+
language: 'english',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
title: 'Advanced Backend Patterns in Node.js',
|
|
41
|
+
content: 'Explore advanced backend architecture patterns for building scalable and maintainable Node.js applications. Topics include microservices, event-driven design, and performance optimization.',
|
|
42
|
+
tags: ['nodejs', 'backend', 'architecture', 'performance'],
|
|
43
|
+
language: 'english',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
title: 'Why weighted search matters for user experience',
|
|
47
|
+
content: 'Ranking search results is crucial. By applying weights to fields like titles, you can provide more relevant results to users, significantly improving their search experience on your platform.',
|
|
48
|
+
tags: ['search', 'ux', 'ranking', 'full-text search'],
|
|
49
|
+
language: 'english',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
title: 'Building a Multi-Language Search Engine',
|
|
53
|
+
content: 'Supporting multiple languages in a search system presents unique challenges. This article covers strategies for handling different text search configurations in PostgreSQL.',
|
|
54
|
+
tags: ['search', 'multi-language', 'postgresql', 'i18n'],
|
|
55
|
+
language: 'english',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
title: 'The Power of SQL for Modern Developers',
|
|
59
|
+
content: 'While ORMs are convenient, understanding raw SQL is a superpower. This post covers advanced SQL queries that can solve complex problems efficiently.',
|
|
60
|
+
tags: ['sql', 'database', 'developer', 'optimization'],
|
|
61
|
+
language: 'english',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
title: 'Migrating from a legacy ORM to Drizzle',
|
|
65
|
+
content: 'A case study on migrating a large-scale application to Drizzle ORM. Learn about the challenges, benefits, and the final performance improvements.',
|
|
66
|
+
tags: ['drizzle orm', 'migration', 'case study', 'performance'],
|
|
67
|
+
language: 'english',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
title: 'Database Schema Design Best Practices',
|
|
71
|
+
content: 'Good schema design is the foundation of a solid application. We cover normalization, indexing strategies, and common pitfalls to avoid.',
|
|
72
|
+
tags: ['database', 'schema design', 'best practices'],
|
|
73
|
+
language: 'english',
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
title: 'Introduction to WebAssembly for Backend',
|
|
77
|
+
content: 'WebAssembly (WASM) is not just for the browser. Learn how it can be used to improve backend performance for CPU-intensive tasks.',
|
|
78
|
+
tags: ['webassembly', 'wasm', 'backend', 'performance'],
|
|
79
|
+
language: 'english',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
title: 'Securing Your PostgreSQL Database',
|
|
83
|
+
content: 'A comprehensive checklist for securing your PostgreSQL instance, from network configuration to user roles and data encryption.',
|
|
84
|
+
tags: ['postgresql', 'security', 'database', 'devops'],
|
|
85
|
+
language: 'english',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
title: 'Real-time applications with WebSockets and Node.js',
|
|
89
|
+
content: 'Learn to build real-time features like chat and notifications using WebSockets. This guide provides a practical example with Node.js.',
|
|
90
|
+
tags: ['nodejs', 'websockets', 'real-time', 'backend'],
|
|
91
|
+
language: 'english',
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
title: 'Understanding PostgreSQL Extension: pg_trgm',
|
|
95
|
+
content: 'Beyond full-text search, pg_trgm offers powerful trigram matching for fuzzy string search. Ideal for finding similar names or correcting typos.',
|
|
96
|
+
tags: ['postgresql', 'fuzzy search', 'extension', 'database'],
|
|
97
|
+
language: 'english',
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
title: 'GraphQL vs REST: A Backend Perspective',
|
|
101
|
+
content: 'An analysis of GraphQL and REST APIs from the viewpoint of a backend developer, focusing on implementation complexity, performance, and caching.',
|
|
102
|
+
tags: ['graphql', 'rest', 'api', 'backend', 'architecture'],
|
|
103
|
+
language: 'english',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
title: 'Containerizing a TypeScript App with Docker',
|
|
107
|
+
content: 'A step-by-step guide to creating a Dockerfile for a TypeScript Node.js application, enabling consistent development and deployment environments.',
|
|
108
|
+
tags: ['docker', 'typescript', 'nodejs', 'devops'],
|
|
109
|
+
language: 'english',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
title: 'Automated Database Testing Strategies',
|
|
113
|
+
content: 'Testing database interactions is critical. This post explores strategies for automated testing, including unit tests, integration tests, and seeding data.',
|
|
114
|
+
tags: ['testing', 'database', 'automation', 'best practices'],
|
|
115
|
+
language: 'english',
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
title: 'The Perfect Weeknight Pasta Recipe',
|
|
119
|
+
content: 'A quick and delicious pasta recipe that you can make in under 30 minutes. Perfect for a busy weeknight. This recipe uses fresh tomatoes and basil.',
|
|
120
|
+
tags: ['recipe', 'pasta', 'cooking', 'quick meal'],
|
|
121
|
+
language: 'english',
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
title: 'Healthy and Hearty Vegetarian Chili',
|
|
125
|
+
content: 'This vegetarian chili recipe is packed with flavor and healthy ingredients. A great comfort food for a cold day. Explore the world of spices.',
|
|
126
|
+
tags: ['vegetarian', 'recipe', 'healthy', 'cooking'],
|
|
127
|
+
language: 'english',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
title: 'Baking the Ultimate Chocolate Chip Cookies',
|
|
131
|
+
content: 'Discover the secrets to baking soft, chewy, and delicious chocolate chip cookies every time. A classic recipe for all bakers.',
|
|
132
|
+
tags: ['baking', 'cookies', 'recipe', 'dessert'],
|
|
133
|
+
language: 'english',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
title: 'A Guide to Essential Kitchen Spices',
|
|
137
|
+
content: 'Every home cook needs a good collection of spices. This guide covers the essential spices that will elevate your cooking from good to great.',
|
|
138
|
+
tags: ['spices', 'cooking', 'kitchen', 'guide'],
|
|
139
|
+
language: 'english',
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
title: 'Simple Roasted Chicken and Vegetables',
|
|
143
|
+
content: 'A one-pan meal that is both easy and impressive. This roasted chicken recipe is a crowd-pleaser and perfect for a Sunday dinner.',
|
|
144
|
+
tags: ['chicken', 'recipe', 'dinner', 'one-pan meal'],
|
|
145
|
+
language: 'english',
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
title: 'Mastering Sourdough Bread: A Beginner\'s Guide',
|
|
149
|
+
content: 'Baking sourdough can be intimidating, but this guide breaks it down step-by-step. Learn about starters, fermentation, and shaping your first loaf.',
|
|
150
|
+
tags: ['baking', 'sourdough', 'bread', 'recipe'],
|
|
151
|
+
language: 'english',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
title: 'Fresh Summer Salad Recipes',
|
|
155
|
+
content: 'Beat the heat with these refreshing and healthy summer salad recipes. From a classic Greek salad to a zesty quinoa salad, there is something for everyone.',
|
|
156
|
+
tags: ['salad', 'recipe', 'healthy', 'summer'],
|
|
157
|
+
language: 'english',
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
title: 'How to Make Authentic Italian Pizza Dough',
|
|
161
|
+
content: 'The secret to great pizza is the dough. This authentic Italian recipe will give you a light, airy, and crispy crust. Your search for the perfect pizza is over.',
|
|
162
|
+
tags: ['pizza', 'recipe', 'italian', 'cooking'],
|
|
163
|
+
language: 'english',
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
title: 'The Art of Grilling: Perfect Steaks',
|
|
167
|
+
content: 'Learn how to grill the perfect steak with this comprehensive guide. We cover everything from choosing the right cut to seasoning and cooking temperatures.',
|
|
168
|
+
tags: ['grilling', 'steak', 'recipe', 'bbq'],
|
|
169
|
+
language: 'english',
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
title: 'Delicious Breakfast Smoothie Ideas',
|
|
173
|
+
content: 'Start your day right with these delicious and nutritious breakfast smoothie recipes. They are quick to make and packed with vitamins and energy.',
|
|
174
|
+
tags: ['smoothie', 'recipe', 'breakfast', 'healthy'],
|
|
175
|
+
language: 'english',
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
title: 'A Backpacker\'s Guide to Southeast Asia',
|
|
179
|
+
content: 'Explore the wonders of Southeast Asia on a budget. This guide covers top destinations, packing tips, and how to travel safely and affordably.',
|
|
180
|
+
tags: ['travel', 'backpacking', 'asia', 'budget travel'],
|
|
181
|
+
language: 'english',
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
title: 'The Most Beautiful Beaches in the World',
|
|
185
|
+
content: 'A visual journey to the most stunning beaches across the globe. From the white sands of the Maldives to the rugged coasts of Iceland, get ready for an adventure.',
|
|
186
|
+
tags: ['travel', 'beach', 'destination', 'vacation'],
|
|
187
|
+
language: 'english',
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
title: 'Hiking in the Rocky Mountains: A Complete Guide',
|
|
191
|
+
content: 'An adventure awaits in the Rocky Mountains. This guide details the best trails for all skill levels, essential gear, and wildlife safety.',
|
|
192
|
+
tags: ['hiking', 'mountains', 'travel', 'adventure', 'guide'],
|
|
193
|
+
language: 'english',
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
title: '48 Hours in Tokyo: A City Guide',
|
|
197
|
+
content: 'Making the most of a short trip to Tokyo. This guide provides a packed itinerary to experience the best of the city\'s culture, food, and attractions.',
|
|
198
|
+
tags: ['travel', 'city guide', 'tokyo', 'japan'],
|
|
199
|
+
language: 'english',
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
title: 'Essential Packing Tips for Every Traveler',
|
|
203
|
+
content: 'Packing smart can make or break a trip. Learn essential tips to pack lighter, stay organized, and be prepared for any travel situation.',
|
|
204
|
+
tags: ['travel tips', 'packing', 'guide'],
|
|
205
|
+
language: 'english',
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
title: 'Exploring the Ancient Ruins of Rome',
|
|
209
|
+
content: 'Step back in time with a tour of Rome\'s ancient ruins. A guide to the Colosseum, Roman Forum, and Palatine Hill, with tips to avoid the crowds.',
|
|
210
|
+
tags: ['travel', 'rome', 'italy', 'history', 'destination'],
|
|
211
|
+
language: 'english',
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
title: 'The Ultimate Road Trip Across the USA',
|
|
215
|
+
content: 'Planning an epic cross-country road trip? This guide covers classic routes, must-see stops, and tips for life on the road. A great adventure awaits.',
|
|
216
|
+
tags: ['road trip', 'travel', 'usa', 'adventure'],
|
|
217
|
+
language: 'english',
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
title: 'How to Find the Best Travel Deals',
|
|
221
|
+
content: 'Traveling doesn\'t have to be expensive. Learn the secrets to finding cheap flights, affordable accommodation, and saving money while you explore.',
|
|
222
|
+
tags: ['budget travel', 'travel tips', 'deals'],
|
|
223
|
+
language: 'english',
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
title: 'A Culinary Tour of Mexico City',
|
|
227
|
+
content: 'Explore the vibrant food scene of Mexico City. From street tacos to fine dining, this guide will take you on a delicious culinary adventure.',
|
|
228
|
+
tags: ['travel', 'food', 'mexico city', 'culinary'],
|
|
229
|
+
language: 'english',
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
title: 'Solo Travel: Why You Should Try It',
|
|
233
|
+
content: 'Traveling solo can be one of the most rewarding experiences. This post discusses the benefits of solo travel and provides tips for a safe and enjoyable journey.',
|
|
234
|
+
tags: ['solo travel', 'travel tips', 'adventure'],
|
|
235
|
+
language: 'english',
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
title: 'The Mysteries of Black Holes Explained',
|
|
239
|
+
content: 'What are black holes and how do they form? This article provides a simple explanation of one of the universe\'s most fascinating phenomena.',
|
|
240
|
+
tags: ['science', 'astronomy', 'space', 'black hole'],
|
|
241
|
+
language: 'english',
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
title: 'The Search for Extraterrestrial Life',
|
|
245
|
+
content: 'Are we alone in the universe? A look at the science behind the search for life beyond Earth, from the Drake equation to the latest discoveries.',
|
|
246
|
+
tags: ['science', 'space', 'aliens', 'astronomy'],
|
|
247
|
+
language: 'english',
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
title: 'Building Better Habits for Productivity',
|
|
251
|
+
content: 'Learn how to build and maintain effective habits that will boost your productivity and help you achieve your goals. A search for a better self.',
|
|
252
|
+
tags: ['lifestyle', 'productivity', 'habits', 'self-improvement'],
|
|
253
|
+
language: 'english',
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
title: 'An Introduction to Mindfulness and Meditation',
|
|
257
|
+
content: 'Discover the benefits of mindfulness and meditation for reducing stress and improving focus. This guide offers simple exercises to get you started.',
|
|
258
|
+
tags: ['mindfulness', 'meditation', 'wellness', 'lifestyle'],
|
|
259
|
+
language: 'english',
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
title: 'Quantum Computing: The Next Revolution',
|
|
263
|
+
content: 'An overview of quantum computing and its potential to revolutionize fields like medicine, materials science, and artificial intelligence.',
|
|
264
|
+
tags: ['science', 'technology', 'quantum computing', 'physics'],
|
|
265
|
+
language: 'english',
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
title: 'Minimalist Home Decor Ideas',
|
|
269
|
+
content: 'Create a calm and clutter-free living space with these minimalist home decor ideas. Less is more when it comes to a peaceful home.',
|
|
270
|
+
tags: ['home decor', 'minimalism', 'lifestyle', 'interior design'],
|
|
271
|
+
language: 'english',
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
title: 'The Science of Sleep: Why It\'s So Important',
|
|
275
|
+
content: 'Sleep is vital for our physical and mental health. This article explores the science behind sleep and offers tips for getting a better night\'s rest.',
|
|
276
|
+
tags: ['science', 'health', 'wellness', 'sleep'],
|
|
277
|
+
language: 'english',
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
title: 'Beginner\'s Guide to Personal Finance',
|
|
281
|
+
content: 'Take control of your finances with this guide to budgeting, saving, and investing. It\'s never too late to start building a secure financial future.',
|
|
282
|
+
tags: ['personal finance', 'budgeting', 'investing', 'lifestyle'],
|
|
283
|
+
language: 'english',
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
title: 'The Joy of Indoor Gardening',
|
|
287
|
+
content: 'Bring nature indoors with an indoor garden. This guide covers the best low-maintenance plants for beginners and how to care for them.',
|
|
288
|
+
tags: ['gardening', 'plants', 'home', 'lifestyle'],
|
|
289
|
+
language: 'english',
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
title: 'A Fitness Routine You Can Stick To',
|
|
293
|
+
content: 'Finding a fitness routine that works for you is key to long-term success. This post offers tips for creating a sustainable and enjoyable workout plan.',
|
|
294
|
+
tags: ['fitness', 'health', 'wellness', 'exercise'],
|
|
295
|
+
language: 'english',
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
title: 'Einführung in die Volltextsuche mit PostgreSQL',
|
|
299
|
+
content: 'Dieser Leitfaden erklärt die Grundlagen der Volltextsuche in einer PostgreSQL Datenbank. Wir behandeln Konfiguration und Abfragen.',
|
|
300
|
+
tags: ['postgresql', 'volltextsuche', 'datenbank', 'technologie'],
|
|
301
|
+
language: 'german',
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
title: 'Ein einfaches Rezept für Apfelstrudel',
|
|
305
|
+
content: 'Ein klassisches deutsches Rezept. Dieser Apfelstrudel ist köstlich und einfach zu backen. Perfekt für den Nachmittagskaffee.',
|
|
306
|
+
tags: ['rezept', 'backen', 'deutsch', 'kochen'],
|
|
307
|
+
language: 'german',
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
title: 'Búsqueda de texto completo en bases de datos',
|
|
311
|
+
content: 'Una guía para implementar la búsqueda de texto completo en su base de datos. Optimice sus consultas para obtener resultados rápidos y relevantes.',
|
|
312
|
+
tags: ['base de datos', 'búsqueda de texto', 'tecnología', 'español'],
|
|
313
|
+
language: 'spanish',
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
title: 'Receta de paella valenciana tradicional',
|
|
317
|
+
content: 'Aprende a cocinar una auténtica paella valenciana con esta receta paso a paso. Un plato delicioso para compartir con familia y amigos.',
|
|
318
|
+
tags: ['receta', 'paella', 'español', 'cocina'],
|
|
319
|
+
language: 'spanish',
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
title: 'Guía de viaje para Barcelona',
|
|
323
|
+
content: 'Descubre lo mejor de Barcelona con esta completa guía de viaje. Desde la Sagrada Familia hasta las playas, planifica tu aventura perfecta.',
|
|
324
|
+
tags: ['viaje', 'barcelona', 'españa', 'guía'],
|
|
325
|
+
language: 'spanish',
|
|
326
|
+
},
|
|
327
|
+
].map((item) => ({ ...item, tags: item.tags.join(', ') }));
|
package/source/test1.ts
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import '#/polyfills.js';
|
|
2
|
+
import { AiService } from './ai/ai.service.js';
|
|
3
|
+
import { configureAiService } from './ai/module.js';
|
|
4
|
+
|
|
5
|
+
import { Application, provideInitializer, provideModule, provideSignalHandler } from './application/index.js';
|
|
6
|
+
import { migrateAuditSchema } from './audit/index.js';
|
|
7
|
+
import { configureAuthenticationServer } from './authentication/server/module.js';
|
|
8
|
+
import type { CancellationSignal } from './cancellation/index.js';
|
|
9
|
+
import { inject, Injector, runInInjectionContext } from './injector/index.js';
|
|
10
|
+
import { configurePostgresKeyValueStore, migratePostgresKeyValueStoreSchema } from './key-value-store/postgres/module.js';
|
|
11
|
+
import { configurePostgresLock, migratePostgresLockSchema } from './lock/postgres/index.js';
|
|
12
|
+
import { PrettyPrintLogFormatter, provideConsoleLogTransport } from './logger/index.js';
|
|
13
|
+
import { configureOrm, injectRepository } from './orm/server/index.js';
|
|
14
|
+
import { configurePostgresQueue, migratePostgresQueueSchema } from './queue/postgres/index.js';
|
|
15
|
+
import { migrateTestSchema } from './test/module.js';
|
|
16
|
+
import { Test, testData } from './test/test.model.js';
|
|
17
|
+
import { timedBenchmarkAsync } from './utils/benchmark.js';
|
|
18
|
+
import * as configParser from './utils/config-parser.js';
|
|
19
|
+
import { string } from './utils/config-parser.js';
|
|
20
|
+
|
|
21
|
+
const config = {
|
|
22
|
+
database: {
|
|
23
|
+
host: configParser.string('DATABASE_HOST', '127.0.0.1'),
|
|
24
|
+
port: configParser.positiveInteger('DATABASE_PORT', 5432),
|
|
25
|
+
user: configParser.string('DATABASE_USER', 'tstdl'),
|
|
26
|
+
pass: configParser.string('DATABASE_PASS', 'wf7rq6glrk5jykne'),
|
|
27
|
+
database: configParser.string('DATABASE_NAME', 'tstdl'),
|
|
28
|
+
},
|
|
29
|
+
ai: {
|
|
30
|
+
apiKey: string('AI_API_KEY', undefined),
|
|
31
|
+
keyFile: string('AI_API_KEY_FILE', undefined),
|
|
32
|
+
vertex: {
|
|
33
|
+
project: string('AI_VERTEX_PROJECT', undefined),
|
|
34
|
+
location: string('AI_VERTEX_LOCATION', undefined),
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
async function bootstrap(): Promise<void> {
|
|
40
|
+
const injector = inject(Injector);
|
|
41
|
+
|
|
42
|
+
configureAiService({
|
|
43
|
+
vertex: {
|
|
44
|
+
project: '922353391551', // insolytics-application
|
|
45
|
+
location: 'europe-west4', // netherlands
|
|
46
|
+
},
|
|
47
|
+
keyFile: '/home/patrick/.secret-files/insolytic-application-service-key.json',
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
/*
|
|
51
|
+
configureOrm({
|
|
52
|
+
repositoryConfig: {
|
|
53
|
+
schema: 'test',
|
|
54
|
+
},
|
|
55
|
+
connection: {
|
|
56
|
+
host: config.database.host,
|
|
57
|
+
port: config.database.port,
|
|
58
|
+
user: config.database.user,
|
|
59
|
+
password: config.database.pass,
|
|
60
|
+
database: config.database.database,
|
|
61
|
+
},
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
configureAuthenticationServer({
|
|
65
|
+
serviceOptions: {
|
|
66
|
+
secret: '6fze56uz5e6ufrtzufrtu',
|
|
67
|
+
},
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
configurePostgresLock();
|
|
71
|
+
configurePostgresQueue();
|
|
72
|
+
configurePostgresKeyValueStore();
|
|
73
|
+
|
|
74
|
+
await runInInjectionContext(injector, migratePostgresKeyValueStoreSchema);
|
|
75
|
+
await runInInjectionContext(injector, migratePostgresLockSchema);
|
|
76
|
+
await runInInjectionContext(injector, migratePostgresQueueSchema);
|
|
77
|
+
await runInInjectionContext(injector, migrateAuditSchema);
|
|
78
|
+
await runInInjectionContext(injector, migrateTestSchema);
|
|
79
|
+
*/
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
async function main(_cancellationSignal: CancellationSignal): Promise<void> {
|
|
83
|
+
const aiService = inject(AiService);
|
|
84
|
+
|
|
85
|
+
const aiStream = aiService.generateStream({
|
|
86
|
+
generationOptions: {
|
|
87
|
+
includeThoughts: true,
|
|
88
|
+
thinkingBudget: 1000,
|
|
89
|
+
},
|
|
90
|
+
model: 'gemini-2.5-flash-lite',
|
|
91
|
+
contents: [{
|
|
92
|
+
role: 'user',
|
|
93
|
+
parts: [
|
|
94
|
+
{ text: 'Count from 1 to 1000. List *every* number.' },
|
|
95
|
+
],
|
|
96
|
+
}],
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
for await (const { text, usage } of aiStream) {
|
|
100
|
+
console.log({ text, usage });
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (1 + 1 == 2) process.exit(0);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
Application.run('Test', [
|
|
107
|
+
provideInitializer(bootstrap),
|
|
108
|
+
provideModule(main),
|
|
109
|
+
provideSignalHandler(),
|
|
110
|
+
provideConsoleLogTransport(PrettyPrintLogFormatter),
|
|
111
|
+
]);
|
package/source/test2.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { inject, Singleton } from '#/injector/index.js';
|
|
2
|
+
import { Application } from './application/application.js';
|
|
3
|
+
import { provideModule } from './application/providers.js';
|
|
4
|
+
import { PrettyPrintLogFormatter, provideConsoleLogTransport } from './logger/index.js';
|
|
5
|
+
import { object, string } from './schema/index.js';
|
|
6
|
+
|
|
7
|
+
const schema = object({
|
|
8
|
+
value: string({ lowercase: true })
|
|
9
|
+
})
|
|
10
|
+
|
|
11
|
+
function main() {
|
|
12
|
+
const value = schema.parse({ value: 'HELLO WORLD' });
|
|
13
|
+
console.log(value);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
Application.run('Test', [
|
|
17
|
+
provideModule(main),
|
|
18
|
+
provideConsoleLogTransport(PrettyPrintLogFormatter)
|
|
19
|
+
]);
|