@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,2680 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "bbddb1b8-fa09-4465-8016-5a9b7915023d",
|
|
3
|
+
"prevId": "00000000-0000-0000-0000-000000000000",
|
|
4
|
+
"version": "7",
|
|
5
|
+
"dialect": "postgresql",
|
|
6
|
+
"tables": {
|
|
7
|
+
"document_management.document": {
|
|
8
|
+
"name": "document",
|
|
9
|
+
"schema": "document_management",
|
|
10
|
+
"columns": {
|
|
11
|
+
"id": {
|
|
12
|
+
"name": "id",
|
|
13
|
+
"type": "uuid",
|
|
14
|
+
"primaryKey": true,
|
|
15
|
+
"notNull": true,
|
|
16
|
+
"default": "gen_random_uuid()"
|
|
17
|
+
},
|
|
18
|
+
"tenant_id": {
|
|
19
|
+
"name": "tenant_id",
|
|
20
|
+
"type": "uuid",
|
|
21
|
+
"primaryKey": false,
|
|
22
|
+
"notNull": true
|
|
23
|
+
},
|
|
24
|
+
"type_id": {
|
|
25
|
+
"name": "type_id",
|
|
26
|
+
"type": "uuid",
|
|
27
|
+
"primaryKey": false,
|
|
28
|
+
"notNull": false
|
|
29
|
+
},
|
|
30
|
+
"title": {
|
|
31
|
+
"name": "title",
|
|
32
|
+
"type": "text",
|
|
33
|
+
"primaryKey": false,
|
|
34
|
+
"notNull": false
|
|
35
|
+
},
|
|
36
|
+
"subtitle": {
|
|
37
|
+
"name": "subtitle",
|
|
38
|
+
"type": "text",
|
|
39
|
+
"primaryKey": false,
|
|
40
|
+
"notNull": false
|
|
41
|
+
},
|
|
42
|
+
"pages": {
|
|
43
|
+
"name": "pages",
|
|
44
|
+
"type": "integer",
|
|
45
|
+
"primaryKey": false,
|
|
46
|
+
"notNull": false
|
|
47
|
+
},
|
|
48
|
+
"date": {
|
|
49
|
+
"name": "date",
|
|
50
|
+
"type": "date",
|
|
51
|
+
"primaryKey": false,
|
|
52
|
+
"notNull": false
|
|
53
|
+
},
|
|
54
|
+
"summary": {
|
|
55
|
+
"name": "summary",
|
|
56
|
+
"type": "text",
|
|
57
|
+
"primaryKey": false,
|
|
58
|
+
"notNull": false
|
|
59
|
+
},
|
|
60
|
+
"approval": {
|
|
61
|
+
"name": "approval",
|
|
62
|
+
"type": "document_approval",
|
|
63
|
+
"typeSchema": "document_management",
|
|
64
|
+
"primaryKey": false,
|
|
65
|
+
"notNull": true
|
|
66
|
+
},
|
|
67
|
+
"comment": {
|
|
68
|
+
"name": "comment",
|
|
69
|
+
"type": "text",
|
|
70
|
+
"primaryKey": false,
|
|
71
|
+
"notNull": false
|
|
72
|
+
},
|
|
73
|
+
"original_file_name": {
|
|
74
|
+
"name": "original_file_name",
|
|
75
|
+
"type": "text",
|
|
76
|
+
"primaryKey": false,
|
|
77
|
+
"notNull": false
|
|
78
|
+
},
|
|
79
|
+
"mime_type": {
|
|
80
|
+
"name": "mime_type",
|
|
81
|
+
"type": "text",
|
|
82
|
+
"primaryKey": false,
|
|
83
|
+
"notNull": true
|
|
84
|
+
},
|
|
85
|
+
"hash": {
|
|
86
|
+
"name": "hash",
|
|
87
|
+
"type": "text",
|
|
88
|
+
"primaryKey": false,
|
|
89
|
+
"notNull": true
|
|
90
|
+
},
|
|
91
|
+
"size": {
|
|
92
|
+
"name": "size",
|
|
93
|
+
"type": "integer",
|
|
94
|
+
"primaryKey": false,
|
|
95
|
+
"notNull": true
|
|
96
|
+
},
|
|
97
|
+
"create_user_id": {
|
|
98
|
+
"name": "create_user_id",
|
|
99
|
+
"type": "uuid",
|
|
100
|
+
"primaryKey": false,
|
|
101
|
+
"notNull": false
|
|
102
|
+
},
|
|
103
|
+
"revision": {
|
|
104
|
+
"name": "revision",
|
|
105
|
+
"type": "integer",
|
|
106
|
+
"primaryKey": false,
|
|
107
|
+
"notNull": true
|
|
108
|
+
},
|
|
109
|
+
"revision_timestamp": {
|
|
110
|
+
"name": "revision_timestamp",
|
|
111
|
+
"type": "timestamp with time zone",
|
|
112
|
+
"primaryKey": false,
|
|
113
|
+
"notNull": true
|
|
114
|
+
},
|
|
115
|
+
"create_timestamp": {
|
|
116
|
+
"name": "create_timestamp",
|
|
117
|
+
"type": "timestamp with time zone",
|
|
118
|
+
"primaryKey": false,
|
|
119
|
+
"notNull": true
|
|
120
|
+
},
|
|
121
|
+
"delete_timestamp": {
|
|
122
|
+
"name": "delete_timestamp",
|
|
123
|
+
"type": "timestamp with time zone",
|
|
124
|
+
"primaryKey": false,
|
|
125
|
+
"notNull": false
|
|
126
|
+
},
|
|
127
|
+
"attributes": {
|
|
128
|
+
"name": "attributes",
|
|
129
|
+
"type": "jsonb",
|
|
130
|
+
"primaryKey": false,
|
|
131
|
+
"notNull": true,
|
|
132
|
+
"default": "'{}'::jsonb"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"indexes": {},
|
|
136
|
+
"foreignKeys": {
|
|
137
|
+
"document_type_id_type_id_fk": {
|
|
138
|
+
"name": "document_type_id_type_id_fk",
|
|
139
|
+
"tableFrom": "document",
|
|
140
|
+
"tableTo": "type",
|
|
141
|
+
"schemaTo": "document_management",
|
|
142
|
+
"columnsFrom": [
|
|
143
|
+
"type_id"
|
|
144
|
+
],
|
|
145
|
+
"columnsTo": [
|
|
146
|
+
"id"
|
|
147
|
+
],
|
|
148
|
+
"onDelete": "no action",
|
|
149
|
+
"onUpdate": "no action"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"compositePrimaryKeys": {},
|
|
153
|
+
"uniqueConstraints": {
|
|
154
|
+
"document_tenant_id_id_unique": {
|
|
155
|
+
"name": "document_tenant_id_id_unique",
|
|
156
|
+
"nullsNotDistinct": false,
|
|
157
|
+
"columns": [
|
|
158
|
+
"tenant_id",
|
|
159
|
+
"id"
|
|
160
|
+
]
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"policies": {},
|
|
164
|
+
"checkConstraints": {},
|
|
165
|
+
"isRLSEnabled": false
|
|
166
|
+
},
|
|
167
|
+
"document_management.assignment_scope": {
|
|
168
|
+
"name": "assignment_scope",
|
|
169
|
+
"schema": "document_management",
|
|
170
|
+
"columns": {
|
|
171
|
+
"id": {
|
|
172
|
+
"name": "id",
|
|
173
|
+
"type": "uuid",
|
|
174
|
+
"primaryKey": true,
|
|
175
|
+
"notNull": true,
|
|
176
|
+
"default": "gen_random_uuid()"
|
|
177
|
+
},
|
|
178
|
+
"tenant_id": {
|
|
179
|
+
"name": "tenant_id",
|
|
180
|
+
"type": "uuid",
|
|
181
|
+
"primaryKey": false,
|
|
182
|
+
"notNull": true
|
|
183
|
+
},
|
|
184
|
+
"task_id": {
|
|
185
|
+
"name": "task_id",
|
|
186
|
+
"type": "uuid",
|
|
187
|
+
"primaryKey": false,
|
|
188
|
+
"notNull": true
|
|
189
|
+
},
|
|
190
|
+
"collection_id": {
|
|
191
|
+
"name": "collection_id",
|
|
192
|
+
"type": "uuid",
|
|
193
|
+
"primaryKey": false,
|
|
194
|
+
"notNull": true
|
|
195
|
+
},
|
|
196
|
+
"revision": {
|
|
197
|
+
"name": "revision",
|
|
198
|
+
"type": "integer",
|
|
199
|
+
"primaryKey": false,
|
|
200
|
+
"notNull": true
|
|
201
|
+
},
|
|
202
|
+
"revision_timestamp": {
|
|
203
|
+
"name": "revision_timestamp",
|
|
204
|
+
"type": "timestamp with time zone",
|
|
205
|
+
"primaryKey": false,
|
|
206
|
+
"notNull": true
|
|
207
|
+
},
|
|
208
|
+
"create_timestamp": {
|
|
209
|
+
"name": "create_timestamp",
|
|
210
|
+
"type": "timestamp with time zone",
|
|
211
|
+
"primaryKey": false,
|
|
212
|
+
"notNull": true
|
|
213
|
+
},
|
|
214
|
+
"delete_timestamp": {
|
|
215
|
+
"name": "delete_timestamp",
|
|
216
|
+
"type": "timestamp with time zone",
|
|
217
|
+
"primaryKey": false,
|
|
218
|
+
"notNull": false
|
|
219
|
+
},
|
|
220
|
+
"attributes": {
|
|
221
|
+
"name": "attributes",
|
|
222
|
+
"type": "jsonb",
|
|
223
|
+
"primaryKey": false,
|
|
224
|
+
"notNull": true,
|
|
225
|
+
"default": "'{}'::jsonb"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
"indexes": {},
|
|
229
|
+
"foreignKeys": {
|
|
230
|
+
"assignment_scope_task_id_assignment_task_id_fk": {
|
|
231
|
+
"name": "assignment_scope_task_id_assignment_task_id_fk",
|
|
232
|
+
"tableFrom": "assignment_scope",
|
|
233
|
+
"tableTo": "assignment_task",
|
|
234
|
+
"schemaTo": "document_management",
|
|
235
|
+
"columnsFrom": [
|
|
236
|
+
"task_id"
|
|
237
|
+
],
|
|
238
|
+
"columnsTo": [
|
|
239
|
+
"id"
|
|
240
|
+
],
|
|
241
|
+
"onDelete": "no action",
|
|
242
|
+
"onUpdate": "no action"
|
|
243
|
+
},
|
|
244
|
+
"assignment_scope_collection_id_collection_id_fk": {
|
|
245
|
+
"name": "assignment_scope_collection_id_collection_id_fk",
|
|
246
|
+
"tableFrom": "assignment_scope",
|
|
247
|
+
"tableTo": "collection",
|
|
248
|
+
"schemaTo": "document_management",
|
|
249
|
+
"columnsFrom": [
|
|
250
|
+
"collection_id"
|
|
251
|
+
],
|
|
252
|
+
"columnsTo": [
|
|
253
|
+
"id"
|
|
254
|
+
],
|
|
255
|
+
"onDelete": "no action",
|
|
256
|
+
"onUpdate": "no action"
|
|
257
|
+
},
|
|
258
|
+
"assignment_scope_tenantId_collectionId_fkey": {
|
|
259
|
+
"name": "assignment_scope_tenantId_collectionId_fkey",
|
|
260
|
+
"tableFrom": "assignment_scope",
|
|
261
|
+
"tableTo": "collection",
|
|
262
|
+
"schemaTo": "document_management",
|
|
263
|
+
"columnsFrom": [
|
|
264
|
+
"tenant_id",
|
|
265
|
+
"collection_id"
|
|
266
|
+
],
|
|
267
|
+
"columnsTo": [
|
|
268
|
+
"tenant_id",
|
|
269
|
+
"id"
|
|
270
|
+
],
|
|
271
|
+
"onDelete": "no action",
|
|
272
|
+
"onUpdate": "no action"
|
|
273
|
+
},
|
|
274
|
+
"assignment_scope_tenantId_taskId_fkey": {
|
|
275
|
+
"name": "assignment_scope_tenantId_taskId_fkey",
|
|
276
|
+
"tableFrom": "assignment_scope",
|
|
277
|
+
"tableTo": "assignment_task",
|
|
278
|
+
"schemaTo": "document_management",
|
|
279
|
+
"columnsFrom": [
|
|
280
|
+
"tenant_id",
|
|
281
|
+
"task_id"
|
|
282
|
+
],
|
|
283
|
+
"columnsTo": [
|
|
284
|
+
"tenant_id",
|
|
285
|
+
"id"
|
|
286
|
+
],
|
|
287
|
+
"onDelete": "no action",
|
|
288
|
+
"onUpdate": "no action"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
"compositePrimaryKeys": {},
|
|
292
|
+
"uniqueConstraints": {
|
|
293
|
+
"assignment_scope_task_id_collection_id_unique": {
|
|
294
|
+
"name": "assignment_scope_task_id_collection_id_unique",
|
|
295
|
+
"nullsNotDistinct": false,
|
|
296
|
+
"columns": [
|
|
297
|
+
"task_id",
|
|
298
|
+
"collection_id"
|
|
299
|
+
]
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"policies": {},
|
|
303
|
+
"checkConstraints": {},
|
|
304
|
+
"isRLSEnabled": false
|
|
305
|
+
},
|
|
306
|
+
"document_management.assignment_task": {
|
|
307
|
+
"name": "assignment_task",
|
|
308
|
+
"schema": "document_management",
|
|
309
|
+
"columns": {
|
|
310
|
+
"id": {
|
|
311
|
+
"name": "id",
|
|
312
|
+
"type": "uuid",
|
|
313
|
+
"primaryKey": true,
|
|
314
|
+
"notNull": true,
|
|
315
|
+
"default": "gen_random_uuid()"
|
|
316
|
+
},
|
|
317
|
+
"tenant_id": {
|
|
318
|
+
"name": "tenant_id",
|
|
319
|
+
"type": "uuid",
|
|
320
|
+
"primaryKey": false,
|
|
321
|
+
"notNull": true
|
|
322
|
+
},
|
|
323
|
+
"document_id": {
|
|
324
|
+
"name": "document_id",
|
|
325
|
+
"type": "uuid",
|
|
326
|
+
"primaryKey": false,
|
|
327
|
+
"notNull": true
|
|
328
|
+
},
|
|
329
|
+
"target": {
|
|
330
|
+
"name": "target",
|
|
331
|
+
"type": "assignment_target",
|
|
332
|
+
"typeSchema": "document_management",
|
|
333
|
+
"primaryKey": false,
|
|
334
|
+
"notNull": true
|
|
335
|
+
},
|
|
336
|
+
"revision": {
|
|
337
|
+
"name": "revision",
|
|
338
|
+
"type": "integer",
|
|
339
|
+
"primaryKey": false,
|
|
340
|
+
"notNull": true
|
|
341
|
+
},
|
|
342
|
+
"revision_timestamp": {
|
|
343
|
+
"name": "revision_timestamp",
|
|
344
|
+
"type": "timestamp with time zone",
|
|
345
|
+
"primaryKey": false,
|
|
346
|
+
"notNull": true
|
|
347
|
+
},
|
|
348
|
+
"create_timestamp": {
|
|
349
|
+
"name": "create_timestamp",
|
|
350
|
+
"type": "timestamp with time zone",
|
|
351
|
+
"primaryKey": false,
|
|
352
|
+
"notNull": true
|
|
353
|
+
},
|
|
354
|
+
"delete_timestamp": {
|
|
355
|
+
"name": "delete_timestamp",
|
|
356
|
+
"type": "timestamp with time zone",
|
|
357
|
+
"primaryKey": false,
|
|
358
|
+
"notNull": false
|
|
359
|
+
},
|
|
360
|
+
"attributes": {
|
|
361
|
+
"name": "attributes",
|
|
362
|
+
"type": "jsonb",
|
|
363
|
+
"primaryKey": false,
|
|
364
|
+
"notNull": true,
|
|
365
|
+
"default": "'{}'::jsonb"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
"indexes": {},
|
|
369
|
+
"foreignKeys": {
|
|
370
|
+
"assignment_task_document_id_document_id_fk": {
|
|
371
|
+
"name": "assignment_task_document_id_document_id_fk",
|
|
372
|
+
"tableFrom": "assignment_task",
|
|
373
|
+
"tableTo": "document",
|
|
374
|
+
"schemaTo": "document_management",
|
|
375
|
+
"columnsFrom": [
|
|
376
|
+
"document_id"
|
|
377
|
+
],
|
|
378
|
+
"columnsTo": [
|
|
379
|
+
"id"
|
|
380
|
+
],
|
|
381
|
+
"onDelete": "no action",
|
|
382
|
+
"onUpdate": "no action"
|
|
383
|
+
},
|
|
384
|
+
"assignment_task_tenantId_documentId_fkey": {
|
|
385
|
+
"name": "assignment_task_tenantId_documentId_fkey",
|
|
386
|
+
"tableFrom": "assignment_task",
|
|
387
|
+
"tableTo": "document",
|
|
388
|
+
"schemaTo": "document_management",
|
|
389
|
+
"columnsFrom": [
|
|
390
|
+
"tenant_id",
|
|
391
|
+
"document_id"
|
|
392
|
+
],
|
|
393
|
+
"columnsTo": [
|
|
394
|
+
"tenant_id",
|
|
395
|
+
"id"
|
|
396
|
+
],
|
|
397
|
+
"onDelete": "no action",
|
|
398
|
+
"onUpdate": "no action"
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
"compositePrimaryKeys": {},
|
|
402
|
+
"uniqueConstraints": {
|
|
403
|
+
"assignment_task_document_id_unique": {
|
|
404
|
+
"name": "assignment_task_document_id_unique",
|
|
405
|
+
"nullsNotDistinct": false,
|
|
406
|
+
"columns": [
|
|
407
|
+
"document_id"
|
|
408
|
+
]
|
|
409
|
+
},
|
|
410
|
+
"assignment_task_tenant_id_id_unique": {
|
|
411
|
+
"name": "assignment_task_tenant_id_id_unique",
|
|
412
|
+
"nullsNotDistinct": false,
|
|
413
|
+
"columns": [
|
|
414
|
+
"tenant_id",
|
|
415
|
+
"id"
|
|
416
|
+
]
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
"policies": {},
|
|
420
|
+
"checkConstraints": {},
|
|
421
|
+
"isRLSEnabled": false
|
|
422
|
+
},
|
|
423
|
+
"document_management.category": {
|
|
424
|
+
"name": "category",
|
|
425
|
+
"schema": "document_management",
|
|
426
|
+
"columns": {
|
|
427
|
+
"id": {
|
|
428
|
+
"name": "id",
|
|
429
|
+
"type": "uuid",
|
|
430
|
+
"primaryKey": true,
|
|
431
|
+
"notNull": true,
|
|
432
|
+
"default": "gen_random_uuid()"
|
|
433
|
+
},
|
|
434
|
+
"tenant_id": {
|
|
435
|
+
"name": "tenant_id",
|
|
436
|
+
"type": "uuid",
|
|
437
|
+
"primaryKey": false,
|
|
438
|
+
"notNull": false
|
|
439
|
+
},
|
|
440
|
+
"parent_id": {
|
|
441
|
+
"name": "parent_id",
|
|
442
|
+
"type": "uuid",
|
|
443
|
+
"primaryKey": false,
|
|
444
|
+
"notNull": false
|
|
445
|
+
},
|
|
446
|
+
"label": {
|
|
447
|
+
"name": "label",
|
|
448
|
+
"type": "text",
|
|
449
|
+
"primaryKey": false,
|
|
450
|
+
"notNull": true
|
|
451
|
+
},
|
|
452
|
+
"revision": {
|
|
453
|
+
"name": "revision",
|
|
454
|
+
"type": "integer",
|
|
455
|
+
"primaryKey": false,
|
|
456
|
+
"notNull": true
|
|
457
|
+
},
|
|
458
|
+
"revision_timestamp": {
|
|
459
|
+
"name": "revision_timestamp",
|
|
460
|
+
"type": "timestamp with time zone",
|
|
461
|
+
"primaryKey": false,
|
|
462
|
+
"notNull": true
|
|
463
|
+
},
|
|
464
|
+
"create_timestamp": {
|
|
465
|
+
"name": "create_timestamp",
|
|
466
|
+
"type": "timestamp with time zone",
|
|
467
|
+
"primaryKey": false,
|
|
468
|
+
"notNull": true
|
|
469
|
+
},
|
|
470
|
+
"delete_timestamp": {
|
|
471
|
+
"name": "delete_timestamp",
|
|
472
|
+
"type": "timestamp with time zone",
|
|
473
|
+
"primaryKey": false,
|
|
474
|
+
"notNull": false
|
|
475
|
+
},
|
|
476
|
+
"attributes": {
|
|
477
|
+
"name": "attributes",
|
|
478
|
+
"type": "jsonb",
|
|
479
|
+
"primaryKey": false,
|
|
480
|
+
"notNull": true,
|
|
481
|
+
"default": "'{}'::jsonb"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
"indexes": {},
|
|
485
|
+
"foreignKeys": {
|
|
486
|
+
"category_parent_id_category_id_fk": {
|
|
487
|
+
"name": "category_parent_id_category_id_fk",
|
|
488
|
+
"tableFrom": "category",
|
|
489
|
+
"tableTo": "category",
|
|
490
|
+
"schemaTo": "document_management",
|
|
491
|
+
"columnsFrom": [
|
|
492
|
+
"parent_id"
|
|
493
|
+
],
|
|
494
|
+
"columnsTo": [
|
|
495
|
+
"id"
|
|
496
|
+
],
|
|
497
|
+
"onDelete": "no action",
|
|
498
|
+
"onUpdate": "no action"
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
"compositePrimaryKeys": {},
|
|
502
|
+
"uniqueConstraints": {
|
|
503
|
+
"category_label_unique": {
|
|
504
|
+
"name": "category_label_unique",
|
|
505
|
+
"nullsNotDistinct": false,
|
|
506
|
+
"columns": [
|
|
507
|
+
"label"
|
|
508
|
+
]
|
|
509
|
+
},
|
|
510
|
+
"category_tenant_id_parent_id_label_unique": {
|
|
511
|
+
"name": "category_tenant_id_parent_id_label_unique",
|
|
512
|
+
"nullsNotDistinct": false,
|
|
513
|
+
"columns": [
|
|
514
|
+
"tenant_id",
|
|
515
|
+
"parent_id",
|
|
516
|
+
"label"
|
|
517
|
+
]
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
"policies": {},
|
|
521
|
+
"checkConstraints": {},
|
|
522
|
+
"isRLSEnabled": false
|
|
523
|
+
},
|
|
524
|
+
"document_management.collection": {
|
|
525
|
+
"name": "collection",
|
|
526
|
+
"schema": "document_management",
|
|
527
|
+
"columns": {
|
|
528
|
+
"id": {
|
|
529
|
+
"name": "id",
|
|
530
|
+
"type": "uuid",
|
|
531
|
+
"primaryKey": true,
|
|
532
|
+
"notNull": true,
|
|
533
|
+
"default": "gen_random_uuid()"
|
|
534
|
+
},
|
|
535
|
+
"tenant_id": {
|
|
536
|
+
"name": "tenant_id",
|
|
537
|
+
"type": "uuid",
|
|
538
|
+
"primaryKey": false,
|
|
539
|
+
"notNull": true
|
|
540
|
+
},
|
|
541
|
+
"parent_id": {
|
|
542
|
+
"name": "parent_id",
|
|
543
|
+
"type": "uuid",
|
|
544
|
+
"primaryKey": false,
|
|
545
|
+
"notNull": false
|
|
546
|
+
},
|
|
547
|
+
"revision": {
|
|
548
|
+
"name": "revision",
|
|
549
|
+
"type": "integer",
|
|
550
|
+
"primaryKey": false,
|
|
551
|
+
"notNull": true
|
|
552
|
+
},
|
|
553
|
+
"revision_timestamp": {
|
|
554
|
+
"name": "revision_timestamp",
|
|
555
|
+
"type": "timestamp with time zone",
|
|
556
|
+
"primaryKey": false,
|
|
557
|
+
"notNull": true
|
|
558
|
+
},
|
|
559
|
+
"create_timestamp": {
|
|
560
|
+
"name": "create_timestamp",
|
|
561
|
+
"type": "timestamp with time zone",
|
|
562
|
+
"primaryKey": false,
|
|
563
|
+
"notNull": true
|
|
564
|
+
},
|
|
565
|
+
"delete_timestamp": {
|
|
566
|
+
"name": "delete_timestamp",
|
|
567
|
+
"type": "timestamp with time zone",
|
|
568
|
+
"primaryKey": false,
|
|
569
|
+
"notNull": false
|
|
570
|
+
},
|
|
571
|
+
"attributes": {
|
|
572
|
+
"name": "attributes",
|
|
573
|
+
"type": "jsonb",
|
|
574
|
+
"primaryKey": false,
|
|
575
|
+
"notNull": true,
|
|
576
|
+
"default": "'{}'::jsonb"
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
"indexes": {},
|
|
580
|
+
"foreignKeys": {
|
|
581
|
+
"collection_parent_id_collection_id_fk": {
|
|
582
|
+
"name": "collection_parent_id_collection_id_fk",
|
|
583
|
+
"tableFrom": "collection",
|
|
584
|
+
"tableTo": "collection",
|
|
585
|
+
"schemaTo": "document_management",
|
|
586
|
+
"columnsFrom": [
|
|
587
|
+
"parent_id"
|
|
588
|
+
],
|
|
589
|
+
"columnsTo": [
|
|
590
|
+
"id"
|
|
591
|
+
],
|
|
592
|
+
"onDelete": "no action",
|
|
593
|
+
"onUpdate": "no action"
|
|
594
|
+
}
|
|
595
|
+
},
|
|
596
|
+
"compositePrimaryKeys": {},
|
|
597
|
+
"uniqueConstraints": {
|
|
598
|
+
"collection_tenant_id_id_unique": {
|
|
599
|
+
"name": "collection_tenant_id_id_unique",
|
|
600
|
+
"nullsNotDistinct": false,
|
|
601
|
+
"columns": [
|
|
602
|
+
"tenant_id",
|
|
603
|
+
"id"
|
|
604
|
+
]
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"policies": {},
|
|
608
|
+
"checkConstraints": {},
|
|
609
|
+
"isRLSEnabled": false
|
|
610
|
+
},
|
|
611
|
+
"document_management.collection_assignment": {
|
|
612
|
+
"name": "collection_assignment",
|
|
613
|
+
"schema": "document_management",
|
|
614
|
+
"columns": {
|
|
615
|
+
"id": {
|
|
616
|
+
"name": "id",
|
|
617
|
+
"type": "uuid",
|
|
618
|
+
"primaryKey": true,
|
|
619
|
+
"notNull": true,
|
|
620
|
+
"default": "gen_random_uuid()"
|
|
621
|
+
},
|
|
622
|
+
"tenant_id": {
|
|
623
|
+
"name": "tenant_id",
|
|
624
|
+
"type": "uuid",
|
|
625
|
+
"primaryKey": false,
|
|
626
|
+
"notNull": true
|
|
627
|
+
},
|
|
628
|
+
"collection_id": {
|
|
629
|
+
"name": "collection_id",
|
|
630
|
+
"type": "uuid",
|
|
631
|
+
"primaryKey": false,
|
|
632
|
+
"notNull": true
|
|
633
|
+
},
|
|
634
|
+
"document_id": {
|
|
635
|
+
"name": "document_id",
|
|
636
|
+
"type": "uuid",
|
|
637
|
+
"primaryKey": false,
|
|
638
|
+
"notNull": true
|
|
639
|
+
},
|
|
640
|
+
"archive_timestamp": {
|
|
641
|
+
"name": "archive_timestamp",
|
|
642
|
+
"type": "timestamp with time zone",
|
|
643
|
+
"primaryKey": false,
|
|
644
|
+
"notNull": false
|
|
645
|
+
},
|
|
646
|
+
"revision": {
|
|
647
|
+
"name": "revision",
|
|
648
|
+
"type": "integer",
|
|
649
|
+
"primaryKey": false,
|
|
650
|
+
"notNull": true
|
|
651
|
+
},
|
|
652
|
+
"revision_timestamp": {
|
|
653
|
+
"name": "revision_timestamp",
|
|
654
|
+
"type": "timestamp with time zone",
|
|
655
|
+
"primaryKey": false,
|
|
656
|
+
"notNull": true
|
|
657
|
+
},
|
|
658
|
+
"create_timestamp": {
|
|
659
|
+
"name": "create_timestamp",
|
|
660
|
+
"type": "timestamp with time zone",
|
|
661
|
+
"primaryKey": false,
|
|
662
|
+
"notNull": true
|
|
663
|
+
},
|
|
664
|
+
"delete_timestamp": {
|
|
665
|
+
"name": "delete_timestamp",
|
|
666
|
+
"type": "timestamp with time zone",
|
|
667
|
+
"primaryKey": false,
|
|
668
|
+
"notNull": false
|
|
669
|
+
},
|
|
670
|
+
"attributes": {
|
|
671
|
+
"name": "attributes",
|
|
672
|
+
"type": "jsonb",
|
|
673
|
+
"primaryKey": false,
|
|
674
|
+
"notNull": true,
|
|
675
|
+
"default": "'{}'::jsonb"
|
|
676
|
+
}
|
|
677
|
+
},
|
|
678
|
+
"indexes": {
|
|
679
|
+
"collection_assignment_collection_id_idx": {
|
|
680
|
+
"name": "collection_assignment_collection_id_idx",
|
|
681
|
+
"columns": [
|
|
682
|
+
{
|
|
683
|
+
"expression": "collection_id",
|
|
684
|
+
"isExpression": false,
|
|
685
|
+
"asc": true,
|
|
686
|
+
"nulls": "last"
|
|
687
|
+
}
|
|
688
|
+
],
|
|
689
|
+
"isUnique": false,
|
|
690
|
+
"concurrently": false,
|
|
691
|
+
"method": "btree",
|
|
692
|
+
"with": {}
|
|
693
|
+
}
|
|
694
|
+
},
|
|
695
|
+
"foreignKeys": {
|
|
696
|
+
"collection_assignment_collection_id_collection_id_fk": {
|
|
697
|
+
"name": "collection_assignment_collection_id_collection_id_fk",
|
|
698
|
+
"tableFrom": "collection_assignment",
|
|
699
|
+
"tableTo": "collection",
|
|
700
|
+
"schemaTo": "document_management",
|
|
701
|
+
"columnsFrom": [
|
|
702
|
+
"collection_id"
|
|
703
|
+
],
|
|
704
|
+
"columnsTo": [
|
|
705
|
+
"id"
|
|
706
|
+
],
|
|
707
|
+
"onDelete": "no action",
|
|
708
|
+
"onUpdate": "no action"
|
|
709
|
+
},
|
|
710
|
+
"collection_assignment_document_id_document_id_fk": {
|
|
711
|
+
"name": "collection_assignment_document_id_document_id_fk",
|
|
712
|
+
"tableFrom": "collection_assignment",
|
|
713
|
+
"tableTo": "document",
|
|
714
|
+
"schemaTo": "document_management",
|
|
715
|
+
"columnsFrom": [
|
|
716
|
+
"document_id"
|
|
717
|
+
],
|
|
718
|
+
"columnsTo": [
|
|
719
|
+
"id"
|
|
720
|
+
],
|
|
721
|
+
"onDelete": "no action",
|
|
722
|
+
"onUpdate": "no action"
|
|
723
|
+
},
|
|
724
|
+
"collection_assignment_tenantId_documentId_fkey": {
|
|
725
|
+
"name": "collection_assignment_tenantId_documentId_fkey",
|
|
726
|
+
"tableFrom": "collection_assignment",
|
|
727
|
+
"tableTo": "document",
|
|
728
|
+
"schemaTo": "document_management",
|
|
729
|
+
"columnsFrom": [
|
|
730
|
+
"tenant_id",
|
|
731
|
+
"document_id"
|
|
732
|
+
],
|
|
733
|
+
"columnsTo": [
|
|
734
|
+
"tenant_id",
|
|
735
|
+
"id"
|
|
736
|
+
],
|
|
737
|
+
"onDelete": "no action",
|
|
738
|
+
"onUpdate": "no action"
|
|
739
|
+
},
|
|
740
|
+
"collection_assignment_tenantId_collectionId_fkey": {
|
|
741
|
+
"name": "collection_assignment_tenantId_collectionId_fkey",
|
|
742
|
+
"tableFrom": "collection_assignment",
|
|
743
|
+
"tableTo": "collection",
|
|
744
|
+
"schemaTo": "document_management",
|
|
745
|
+
"columnsFrom": [
|
|
746
|
+
"tenant_id",
|
|
747
|
+
"collection_id"
|
|
748
|
+
],
|
|
749
|
+
"columnsTo": [
|
|
750
|
+
"tenant_id",
|
|
751
|
+
"id"
|
|
752
|
+
],
|
|
753
|
+
"onDelete": "no action",
|
|
754
|
+
"onUpdate": "no action"
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
"compositePrimaryKeys": {},
|
|
758
|
+
"uniqueConstraints": {
|
|
759
|
+
"ca_tenant_id_collection_id_document_id_unique": {
|
|
760
|
+
"name": "ca_tenant_id_collection_id_document_id_unique",
|
|
761
|
+
"nullsNotDistinct": false,
|
|
762
|
+
"columns": [
|
|
763
|
+
"tenant_id",
|
|
764
|
+
"collection_id",
|
|
765
|
+
"document_id"
|
|
766
|
+
]
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
"policies": {},
|
|
770
|
+
"checkConstraints": {},
|
|
771
|
+
"isRLSEnabled": false
|
|
772
|
+
},
|
|
773
|
+
"document_management.property": {
|
|
774
|
+
"name": "property",
|
|
775
|
+
"schema": "document_management",
|
|
776
|
+
"columns": {
|
|
777
|
+
"id": {
|
|
778
|
+
"name": "id",
|
|
779
|
+
"type": "uuid",
|
|
780
|
+
"primaryKey": true,
|
|
781
|
+
"notNull": true,
|
|
782
|
+
"default": "gen_random_uuid()"
|
|
783
|
+
},
|
|
784
|
+
"tenant_id": {
|
|
785
|
+
"name": "tenant_id",
|
|
786
|
+
"type": "uuid",
|
|
787
|
+
"primaryKey": false,
|
|
788
|
+
"notNull": false
|
|
789
|
+
},
|
|
790
|
+
"label": {
|
|
791
|
+
"name": "label",
|
|
792
|
+
"type": "text",
|
|
793
|
+
"primaryKey": false,
|
|
794
|
+
"notNull": true
|
|
795
|
+
},
|
|
796
|
+
"data_type": {
|
|
797
|
+
"name": "data_type",
|
|
798
|
+
"type": "property_data_type",
|
|
799
|
+
"typeSchema": "document_management",
|
|
800
|
+
"primaryKey": false,
|
|
801
|
+
"notNull": true
|
|
802
|
+
},
|
|
803
|
+
"revision": {
|
|
804
|
+
"name": "revision",
|
|
805
|
+
"type": "integer",
|
|
806
|
+
"primaryKey": false,
|
|
807
|
+
"notNull": true
|
|
808
|
+
},
|
|
809
|
+
"revision_timestamp": {
|
|
810
|
+
"name": "revision_timestamp",
|
|
811
|
+
"type": "timestamp with time zone",
|
|
812
|
+
"primaryKey": false,
|
|
813
|
+
"notNull": true
|
|
814
|
+
},
|
|
815
|
+
"create_timestamp": {
|
|
816
|
+
"name": "create_timestamp",
|
|
817
|
+
"type": "timestamp with time zone",
|
|
818
|
+
"primaryKey": false,
|
|
819
|
+
"notNull": true
|
|
820
|
+
},
|
|
821
|
+
"delete_timestamp": {
|
|
822
|
+
"name": "delete_timestamp",
|
|
823
|
+
"type": "timestamp with time zone",
|
|
824
|
+
"primaryKey": false,
|
|
825
|
+
"notNull": false
|
|
826
|
+
},
|
|
827
|
+
"attributes": {
|
|
828
|
+
"name": "attributes",
|
|
829
|
+
"type": "jsonb",
|
|
830
|
+
"primaryKey": false,
|
|
831
|
+
"notNull": true,
|
|
832
|
+
"default": "'{}'::jsonb"
|
|
833
|
+
}
|
|
834
|
+
},
|
|
835
|
+
"indexes": {},
|
|
836
|
+
"foreignKeys": {},
|
|
837
|
+
"compositePrimaryKeys": {},
|
|
838
|
+
"uniqueConstraints": {
|
|
839
|
+
"property_label_unique": {
|
|
840
|
+
"name": "property_label_unique",
|
|
841
|
+
"nullsNotDistinct": false,
|
|
842
|
+
"columns": [
|
|
843
|
+
"label"
|
|
844
|
+
]
|
|
845
|
+
},
|
|
846
|
+
"property_tenant_id_label_unique": {
|
|
847
|
+
"name": "property_tenant_id_label_unique",
|
|
848
|
+
"nullsNotDistinct": false,
|
|
849
|
+
"columns": [
|
|
850
|
+
"tenant_id",
|
|
851
|
+
"label"
|
|
852
|
+
]
|
|
853
|
+
}
|
|
854
|
+
},
|
|
855
|
+
"policies": {},
|
|
856
|
+
"checkConstraints": {},
|
|
857
|
+
"isRLSEnabled": false
|
|
858
|
+
},
|
|
859
|
+
"document_management.property_value": {
|
|
860
|
+
"name": "property_value",
|
|
861
|
+
"schema": "document_management",
|
|
862
|
+
"columns": {
|
|
863
|
+
"id": {
|
|
864
|
+
"name": "id",
|
|
865
|
+
"type": "uuid",
|
|
866
|
+
"primaryKey": true,
|
|
867
|
+
"notNull": true,
|
|
868
|
+
"default": "gen_random_uuid()"
|
|
869
|
+
},
|
|
870
|
+
"tenant_id": {
|
|
871
|
+
"name": "tenant_id",
|
|
872
|
+
"type": "uuid",
|
|
873
|
+
"primaryKey": false,
|
|
874
|
+
"notNull": true
|
|
875
|
+
},
|
|
876
|
+
"document_id": {
|
|
877
|
+
"name": "document_id",
|
|
878
|
+
"type": "uuid",
|
|
879
|
+
"primaryKey": false,
|
|
880
|
+
"notNull": true
|
|
881
|
+
},
|
|
882
|
+
"property_id": {
|
|
883
|
+
"name": "property_id",
|
|
884
|
+
"type": "uuid",
|
|
885
|
+
"primaryKey": false,
|
|
886
|
+
"notNull": true
|
|
887
|
+
},
|
|
888
|
+
"text": {
|
|
889
|
+
"name": "text",
|
|
890
|
+
"type": "text",
|
|
891
|
+
"primaryKey": false,
|
|
892
|
+
"notNull": false
|
|
893
|
+
},
|
|
894
|
+
"integer": {
|
|
895
|
+
"name": "integer",
|
|
896
|
+
"type": "integer",
|
|
897
|
+
"primaryKey": false,
|
|
898
|
+
"notNull": false
|
|
899
|
+
},
|
|
900
|
+
"decimal": {
|
|
901
|
+
"name": "decimal",
|
|
902
|
+
"type": "double precision",
|
|
903
|
+
"primaryKey": false,
|
|
904
|
+
"notNull": false
|
|
905
|
+
},
|
|
906
|
+
"boolean": {
|
|
907
|
+
"name": "boolean",
|
|
908
|
+
"type": "boolean",
|
|
909
|
+
"primaryKey": false,
|
|
910
|
+
"notNull": false
|
|
911
|
+
},
|
|
912
|
+
"date": {
|
|
913
|
+
"name": "date",
|
|
914
|
+
"type": "date",
|
|
915
|
+
"primaryKey": false,
|
|
916
|
+
"notNull": false
|
|
917
|
+
},
|
|
918
|
+
"revision": {
|
|
919
|
+
"name": "revision",
|
|
920
|
+
"type": "integer",
|
|
921
|
+
"primaryKey": false,
|
|
922
|
+
"notNull": true
|
|
923
|
+
},
|
|
924
|
+
"revision_timestamp": {
|
|
925
|
+
"name": "revision_timestamp",
|
|
926
|
+
"type": "timestamp with time zone",
|
|
927
|
+
"primaryKey": false,
|
|
928
|
+
"notNull": true
|
|
929
|
+
},
|
|
930
|
+
"create_timestamp": {
|
|
931
|
+
"name": "create_timestamp",
|
|
932
|
+
"type": "timestamp with time zone",
|
|
933
|
+
"primaryKey": false,
|
|
934
|
+
"notNull": true
|
|
935
|
+
},
|
|
936
|
+
"delete_timestamp": {
|
|
937
|
+
"name": "delete_timestamp",
|
|
938
|
+
"type": "timestamp with time zone",
|
|
939
|
+
"primaryKey": false,
|
|
940
|
+
"notNull": false
|
|
941
|
+
},
|
|
942
|
+
"attributes": {
|
|
943
|
+
"name": "attributes",
|
|
944
|
+
"type": "jsonb",
|
|
945
|
+
"primaryKey": false,
|
|
946
|
+
"notNull": true,
|
|
947
|
+
"default": "'{}'::jsonb"
|
|
948
|
+
}
|
|
949
|
+
},
|
|
950
|
+
"indexes": {},
|
|
951
|
+
"foreignKeys": {
|
|
952
|
+
"property_value_document_id_document_id_fk": {
|
|
953
|
+
"name": "property_value_document_id_document_id_fk",
|
|
954
|
+
"tableFrom": "property_value",
|
|
955
|
+
"tableTo": "document",
|
|
956
|
+
"schemaTo": "document_management",
|
|
957
|
+
"columnsFrom": [
|
|
958
|
+
"document_id"
|
|
959
|
+
],
|
|
960
|
+
"columnsTo": [
|
|
961
|
+
"id"
|
|
962
|
+
],
|
|
963
|
+
"onDelete": "no action",
|
|
964
|
+
"onUpdate": "no action"
|
|
965
|
+
},
|
|
966
|
+
"property_value_property_id_property_id_fk": {
|
|
967
|
+
"name": "property_value_property_id_property_id_fk",
|
|
968
|
+
"tableFrom": "property_value",
|
|
969
|
+
"tableTo": "property",
|
|
970
|
+
"schemaTo": "document_management",
|
|
971
|
+
"columnsFrom": [
|
|
972
|
+
"property_id"
|
|
973
|
+
],
|
|
974
|
+
"columnsTo": [
|
|
975
|
+
"id"
|
|
976
|
+
],
|
|
977
|
+
"onDelete": "no action",
|
|
978
|
+
"onUpdate": "no action"
|
|
979
|
+
},
|
|
980
|
+
"property_value_tenantId_documentId_fkey": {
|
|
981
|
+
"name": "property_value_tenantId_documentId_fkey",
|
|
982
|
+
"tableFrom": "property_value",
|
|
983
|
+
"tableTo": "document",
|
|
984
|
+
"schemaTo": "document_management",
|
|
985
|
+
"columnsFrom": [
|
|
986
|
+
"tenant_id",
|
|
987
|
+
"document_id"
|
|
988
|
+
],
|
|
989
|
+
"columnsTo": [
|
|
990
|
+
"tenant_id",
|
|
991
|
+
"id"
|
|
992
|
+
],
|
|
993
|
+
"onDelete": "no action",
|
|
994
|
+
"onUpdate": "no action"
|
|
995
|
+
}
|
|
996
|
+
},
|
|
997
|
+
"compositePrimaryKeys": {},
|
|
998
|
+
"uniqueConstraints": {
|
|
999
|
+
"property_value_tenant_id_document_id_property_id_unique": {
|
|
1000
|
+
"name": "property_value_tenant_id_document_id_property_id_unique",
|
|
1001
|
+
"nullsNotDistinct": false,
|
|
1002
|
+
"columns": [
|
|
1003
|
+
"tenant_id",
|
|
1004
|
+
"document_id",
|
|
1005
|
+
"property_id"
|
|
1006
|
+
]
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
1009
|
+
"policies": {},
|
|
1010
|
+
"checkConstraints": {
|
|
1011
|
+
"only_one_value": {
|
|
1012
|
+
"name": "only_one_value",
|
|
1013
|
+
"value": "num_nonnulls(\"document_management\".\"property_value\".\"text\", \"document_management\".\"property_value\".\"integer\", \"document_management\".\"property_value\".\"decimal\", \"document_management\".\"property_value\".\"boolean\", \"document_management\".\"property_value\".\"date\") = 1"
|
|
1014
|
+
}
|
|
1015
|
+
},
|
|
1016
|
+
"isRLSEnabled": false
|
|
1017
|
+
},
|
|
1018
|
+
"document_management.request": {
|
|
1019
|
+
"name": "request",
|
|
1020
|
+
"schema": "document_management",
|
|
1021
|
+
"columns": {
|
|
1022
|
+
"id": {
|
|
1023
|
+
"name": "id",
|
|
1024
|
+
"type": "uuid",
|
|
1025
|
+
"primaryKey": true,
|
|
1026
|
+
"notNull": true,
|
|
1027
|
+
"default": "gen_random_uuid()"
|
|
1028
|
+
},
|
|
1029
|
+
"tenant_id": {
|
|
1030
|
+
"name": "tenant_id",
|
|
1031
|
+
"type": "uuid",
|
|
1032
|
+
"primaryKey": false,
|
|
1033
|
+
"notNull": true
|
|
1034
|
+
},
|
|
1035
|
+
"type_id": {
|
|
1036
|
+
"name": "type_id",
|
|
1037
|
+
"type": "uuid",
|
|
1038
|
+
"primaryKey": false,
|
|
1039
|
+
"notNull": false
|
|
1040
|
+
},
|
|
1041
|
+
"document_id": {
|
|
1042
|
+
"name": "document_id",
|
|
1043
|
+
"type": "uuid",
|
|
1044
|
+
"primaryKey": false,
|
|
1045
|
+
"notNull": false
|
|
1046
|
+
},
|
|
1047
|
+
"comment": {
|
|
1048
|
+
"name": "comment",
|
|
1049
|
+
"type": "text",
|
|
1050
|
+
"primaryKey": false,
|
|
1051
|
+
"notNull": false
|
|
1052
|
+
},
|
|
1053
|
+
"state": {
|
|
1054
|
+
"name": "state",
|
|
1055
|
+
"type": "request_state",
|
|
1056
|
+
"typeSchema": "document_management",
|
|
1057
|
+
"primaryKey": false,
|
|
1058
|
+
"notNull": true
|
|
1059
|
+
},
|
|
1060
|
+
"revision": {
|
|
1061
|
+
"name": "revision",
|
|
1062
|
+
"type": "integer",
|
|
1063
|
+
"primaryKey": false,
|
|
1064
|
+
"notNull": true
|
|
1065
|
+
},
|
|
1066
|
+
"revision_timestamp": {
|
|
1067
|
+
"name": "revision_timestamp",
|
|
1068
|
+
"type": "timestamp with time zone",
|
|
1069
|
+
"primaryKey": false,
|
|
1070
|
+
"notNull": true
|
|
1071
|
+
},
|
|
1072
|
+
"create_timestamp": {
|
|
1073
|
+
"name": "create_timestamp",
|
|
1074
|
+
"type": "timestamp with time zone",
|
|
1075
|
+
"primaryKey": false,
|
|
1076
|
+
"notNull": true
|
|
1077
|
+
},
|
|
1078
|
+
"delete_timestamp": {
|
|
1079
|
+
"name": "delete_timestamp",
|
|
1080
|
+
"type": "timestamp with time zone",
|
|
1081
|
+
"primaryKey": false,
|
|
1082
|
+
"notNull": false
|
|
1083
|
+
},
|
|
1084
|
+
"attributes": {
|
|
1085
|
+
"name": "attributes",
|
|
1086
|
+
"type": "jsonb",
|
|
1087
|
+
"primaryKey": false,
|
|
1088
|
+
"notNull": true,
|
|
1089
|
+
"default": "'{}'::jsonb"
|
|
1090
|
+
}
|
|
1091
|
+
},
|
|
1092
|
+
"indexes": {
|
|
1093
|
+
"request_type_id_idx": {
|
|
1094
|
+
"name": "request_type_id_idx",
|
|
1095
|
+
"columns": [
|
|
1096
|
+
{
|
|
1097
|
+
"expression": "type_id",
|
|
1098
|
+
"isExpression": false,
|
|
1099
|
+
"asc": true,
|
|
1100
|
+
"nulls": "last"
|
|
1101
|
+
}
|
|
1102
|
+
],
|
|
1103
|
+
"isUnique": false,
|
|
1104
|
+
"concurrently": false,
|
|
1105
|
+
"method": "btree",
|
|
1106
|
+
"with": {}
|
|
1107
|
+
},
|
|
1108
|
+
"request_state_idx": {
|
|
1109
|
+
"name": "request_state_idx",
|
|
1110
|
+
"columns": [
|
|
1111
|
+
{
|
|
1112
|
+
"expression": "state",
|
|
1113
|
+
"isExpression": false,
|
|
1114
|
+
"asc": true,
|
|
1115
|
+
"nulls": "last"
|
|
1116
|
+
}
|
|
1117
|
+
],
|
|
1118
|
+
"isUnique": false,
|
|
1119
|
+
"concurrently": false,
|
|
1120
|
+
"method": "btree",
|
|
1121
|
+
"with": {}
|
|
1122
|
+
}
|
|
1123
|
+
},
|
|
1124
|
+
"foreignKeys": {
|
|
1125
|
+
"request_type_id_type_id_fk": {
|
|
1126
|
+
"name": "request_type_id_type_id_fk",
|
|
1127
|
+
"tableFrom": "request",
|
|
1128
|
+
"tableTo": "type",
|
|
1129
|
+
"schemaTo": "document_management",
|
|
1130
|
+
"columnsFrom": [
|
|
1131
|
+
"type_id"
|
|
1132
|
+
],
|
|
1133
|
+
"columnsTo": [
|
|
1134
|
+
"id"
|
|
1135
|
+
],
|
|
1136
|
+
"onDelete": "no action",
|
|
1137
|
+
"onUpdate": "no action"
|
|
1138
|
+
},
|
|
1139
|
+
"request_document_id_document_id_fk": {
|
|
1140
|
+
"name": "request_document_id_document_id_fk",
|
|
1141
|
+
"tableFrom": "request",
|
|
1142
|
+
"tableTo": "document",
|
|
1143
|
+
"schemaTo": "document_management",
|
|
1144
|
+
"columnsFrom": [
|
|
1145
|
+
"document_id"
|
|
1146
|
+
],
|
|
1147
|
+
"columnsTo": [
|
|
1148
|
+
"id"
|
|
1149
|
+
],
|
|
1150
|
+
"onDelete": "no action",
|
|
1151
|
+
"onUpdate": "no action"
|
|
1152
|
+
},
|
|
1153
|
+
"request_tenantId_documentId_fkey": {
|
|
1154
|
+
"name": "request_tenantId_documentId_fkey",
|
|
1155
|
+
"tableFrom": "request",
|
|
1156
|
+
"tableTo": "document",
|
|
1157
|
+
"schemaTo": "document_management",
|
|
1158
|
+
"columnsFrom": [
|
|
1159
|
+
"tenant_id",
|
|
1160
|
+
"document_id"
|
|
1161
|
+
],
|
|
1162
|
+
"columnsTo": [
|
|
1163
|
+
"tenant_id",
|
|
1164
|
+
"id"
|
|
1165
|
+
],
|
|
1166
|
+
"onDelete": "no action",
|
|
1167
|
+
"onUpdate": "no action"
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
"compositePrimaryKeys": {},
|
|
1171
|
+
"uniqueConstraints": {
|
|
1172
|
+
"request_document_id_unique": {
|
|
1173
|
+
"name": "request_document_id_unique",
|
|
1174
|
+
"nullsNotDistinct": false,
|
|
1175
|
+
"columns": [
|
|
1176
|
+
"document_id"
|
|
1177
|
+
]
|
|
1178
|
+
},
|
|
1179
|
+
"request_tenant_id_id_unique": {
|
|
1180
|
+
"name": "request_tenant_id_id_unique",
|
|
1181
|
+
"nullsNotDistinct": false,
|
|
1182
|
+
"columns": [
|
|
1183
|
+
"tenant_id",
|
|
1184
|
+
"id"
|
|
1185
|
+
]
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1188
|
+
"policies": {},
|
|
1189
|
+
"checkConstraints": {},
|
|
1190
|
+
"isRLSEnabled": false
|
|
1191
|
+
},
|
|
1192
|
+
"document_management.request_collection_assignment": {
|
|
1193
|
+
"name": "request_collection_assignment",
|
|
1194
|
+
"schema": "document_management",
|
|
1195
|
+
"columns": {
|
|
1196
|
+
"id": {
|
|
1197
|
+
"name": "id",
|
|
1198
|
+
"type": "uuid",
|
|
1199
|
+
"primaryKey": true,
|
|
1200
|
+
"notNull": true,
|
|
1201
|
+
"default": "gen_random_uuid()"
|
|
1202
|
+
},
|
|
1203
|
+
"tenant_id": {
|
|
1204
|
+
"name": "tenant_id",
|
|
1205
|
+
"type": "uuid",
|
|
1206
|
+
"primaryKey": false,
|
|
1207
|
+
"notNull": true
|
|
1208
|
+
},
|
|
1209
|
+
"request_id": {
|
|
1210
|
+
"name": "request_id",
|
|
1211
|
+
"type": "uuid",
|
|
1212
|
+
"primaryKey": false,
|
|
1213
|
+
"notNull": true
|
|
1214
|
+
},
|
|
1215
|
+
"collection_id": {
|
|
1216
|
+
"name": "collection_id",
|
|
1217
|
+
"type": "uuid",
|
|
1218
|
+
"primaryKey": false,
|
|
1219
|
+
"notNull": true
|
|
1220
|
+
},
|
|
1221
|
+
"revision": {
|
|
1222
|
+
"name": "revision",
|
|
1223
|
+
"type": "integer",
|
|
1224
|
+
"primaryKey": false,
|
|
1225
|
+
"notNull": true
|
|
1226
|
+
},
|
|
1227
|
+
"revision_timestamp": {
|
|
1228
|
+
"name": "revision_timestamp",
|
|
1229
|
+
"type": "timestamp with time zone",
|
|
1230
|
+
"primaryKey": false,
|
|
1231
|
+
"notNull": true
|
|
1232
|
+
},
|
|
1233
|
+
"create_timestamp": {
|
|
1234
|
+
"name": "create_timestamp",
|
|
1235
|
+
"type": "timestamp with time zone",
|
|
1236
|
+
"primaryKey": false,
|
|
1237
|
+
"notNull": true
|
|
1238
|
+
},
|
|
1239
|
+
"delete_timestamp": {
|
|
1240
|
+
"name": "delete_timestamp",
|
|
1241
|
+
"type": "timestamp with time zone",
|
|
1242
|
+
"primaryKey": false,
|
|
1243
|
+
"notNull": false
|
|
1244
|
+
},
|
|
1245
|
+
"attributes": {
|
|
1246
|
+
"name": "attributes",
|
|
1247
|
+
"type": "jsonb",
|
|
1248
|
+
"primaryKey": false,
|
|
1249
|
+
"notNull": true,
|
|
1250
|
+
"default": "'{}'::jsonb"
|
|
1251
|
+
}
|
|
1252
|
+
},
|
|
1253
|
+
"indexes": {
|
|
1254
|
+
"request_collection_assignment_collection_id_idx": {
|
|
1255
|
+
"name": "request_collection_assignment_collection_id_idx",
|
|
1256
|
+
"columns": [
|
|
1257
|
+
{
|
|
1258
|
+
"expression": "collection_id",
|
|
1259
|
+
"isExpression": false,
|
|
1260
|
+
"asc": true,
|
|
1261
|
+
"nulls": "last"
|
|
1262
|
+
}
|
|
1263
|
+
],
|
|
1264
|
+
"isUnique": false,
|
|
1265
|
+
"concurrently": false,
|
|
1266
|
+
"method": "btree",
|
|
1267
|
+
"with": {}
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
"foreignKeys": {
|
|
1271
|
+
"request_collection_assignment_request_id_request_id_fk": {
|
|
1272
|
+
"name": "request_collection_assignment_request_id_request_id_fk",
|
|
1273
|
+
"tableFrom": "request_collection_assignment",
|
|
1274
|
+
"tableTo": "request",
|
|
1275
|
+
"schemaTo": "document_management",
|
|
1276
|
+
"columnsFrom": [
|
|
1277
|
+
"request_id"
|
|
1278
|
+
],
|
|
1279
|
+
"columnsTo": [
|
|
1280
|
+
"id"
|
|
1281
|
+
],
|
|
1282
|
+
"onDelete": "no action",
|
|
1283
|
+
"onUpdate": "no action"
|
|
1284
|
+
},
|
|
1285
|
+
"request_collection_assignment_collection_id_collection_id_fk": {
|
|
1286
|
+
"name": "request_collection_assignment_collection_id_collection_id_fk",
|
|
1287
|
+
"tableFrom": "request_collection_assignment",
|
|
1288
|
+
"tableTo": "collection",
|
|
1289
|
+
"schemaTo": "document_management",
|
|
1290
|
+
"columnsFrom": [
|
|
1291
|
+
"collection_id"
|
|
1292
|
+
],
|
|
1293
|
+
"columnsTo": [
|
|
1294
|
+
"id"
|
|
1295
|
+
],
|
|
1296
|
+
"onDelete": "no action",
|
|
1297
|
+
"onUpdate": "no action"
|
|
1298
|
+
},
|
|
1299
|
+
"request_collection_assignment_tenantId_collectionId_fkey": {
|
|
1300
|
+
"name": "request_collection_assignment_tenantId_collectionId_fkey",
|
|
1301
|
+
"tableFrom": "request_collection_assignment",
|
|
1302
|
+
"tableTo": "collection",
|
|
1303
|
+
"schemaTo": "document_management",
|
|
1304
|
+
"columnsFrom": [
|
|
1305
|
+
"tenant_id",
|
|
1306
|
+
"collection_id"
|
|
1307
|
+
],
|
|
1308
|
+
"columnsTo": [
|
|
1309
|
+
"tenant_id",
|
|
1310
|
+
"id"
|
|
1311
|
+
],
|
|
1312
|
+
"onDelete": "no action",
|
|
1313
|
+
"onUpdate": "no action"
|
|
1314
|
+
},
|
|
1315
|
+
"request_collection_assignment_tenantId_requestId_fkey": {
|
|
1316
|
+
"name": "request_collection_assignment_tenantId_requestId_fkey",
|
|
1317
|
+
"tableFrom": "request_collection_assignment",
|
|
1318
|
+
"tableTo": "request",
|
|
1319
|
+
"schemaTo": "document_management",
|
|
1320
|
+
"columnsFrom": [
|
|
1321
|
+
"tenant_id",
|
|
1322
|
+
"request_id"
|
|
1323
|
+
],
|
|
1324
|
+
"columnsTo": [
|
|
1325
|
+
"tenant_id",
|
|
1326
|
+
"id"
|
|
1327
|
+
],
|
|
1328
|
+
"onDelete": "no action",
|
|
1329
|
+
"onUpdate": "no action"
|
|
1330
|
+
}
|
|
1331
|
+
},
|
|
1332
|
+
"compositePrimaryKeys": {},
|
|
1333
|
+
"uniqueConstraints": {
|
|
1334
|
+
"rca_tenant_id_request_id_collection_id_unique": {
|
|
1335
|
+
"name": "rca_tenant_id_request_id_collection_id_unique",
|
|
1336
|
+
"nullsNotDistinct": false,
|
|
1337
|
+
"columns": [
|
|
1338
|
+
"tenant_id",
|
|
1339
|
+
"request_id",
|
|
1340
|
+
"collection_id"
|
|
1341
|
+
]
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1344
|
+
"policies": {},
|
|
1345
|
+
"checkConstraints": {},
|
|
1346
|
+
"isRLSEnabled": false
|
|
1347
|
+
},
|
|
1348
|
+
"document_management.request_template": {
|
|
1349
|
+
"name": "request_template",
|
|
1350
|
+
"schema": "document_management",
|
|
1351
|
+
"columns": {
|
|
1352
|
+
"id": {
|
|
1353
|
+
"name": "id",
|
|
1354
|
+
"type": "uuid",
|
|
1355
|
+
"primaryKey": true,
|
|
1356
|
+
"notNull": true,
|
|
1357
|
+
"default": "gen_random_uuid()"
|
|
1358
|
+
},
|
|
1359
|
+
"tenant_id": {
|
|
1360
|
+
"name": "tenant_id",
|
|
1361
|
+
"type": "uuid",
|
|
1362
|
+
"primaryKey": false,
|
|
1363
|
+
"notNull": false
|
|
1364
|
+
},
|
|
1365
|
+
"requests_template_id": {
|
|
1366
|
+
"name": "requests_template_id",
|
|
1367
|
+
"type": "uuid",
|
|
1368
|
+
"primaryKey": false,
|
|
1369
|
+
"notNull": true
|
|
1370
|
+
},
|
|
1371
|
+
"type_id": {
|
|
1372
|
+
"name": "type_id",
|
|
1373
|
+
"type": "uuid",
|
|
1374
|
+
"primaryKey": false,
|
|
1375
|
+
"notNull": true
|
|
1376
|
+
},
|
|
1377
|
+
"comment": {
|
|
1378
|
+
"name": "comment",
|
|
1379
|
+
"type": "text",
|
|
1380
|
+
"primaryKey": false,
|
|
1381
|
+
"notNull": false
|
|
1382
|
+
},
|
|
1383
|
+
"revision": {
|
|
1384
|
+
"name": "revision",
|
|
1385
|
+
"type": "integer",
|
|
1386
|
+
"primaryKey": false,
|
|
1387
|
+
"notNull": true
|
|
1388
|
+
},
|
|
1389
|
+
"revision_timestamp": {
|
|
1390
|
+
"name": "revision_timestamp",
|
|
1391
|
+
"type": "timestamp with time zone",
|
|
1392
|
+
"primaryKey": false,
|
|
1393
|
+
"notNull": true
|
|
1394
|
+
},
|
|
1395
|
+
"create_timestamp": {
|
|
1396
|
+
"name": "create_timestamp",
|
|
1397
|
+
"type": "timestamp with time zone",
|
|
1398
|
+
"primaryKey": false,
|
|
1399
|
+
"notNull": true
|
|
1400
|
+
},
|
|
1401
|
+
"delete_timestamp": {
|
|
1402
|
+
"name": "delete_timestamp",
|
|
1403
|
+
"type": "timestamp with time zone",
|
|
1404
|
+
"primaryKey": false,
|
|
1405
|
+
"notNull": false
|
|
1406
|
+
},
|
|
1407
|
+
"attributes": {
|
|
1408
|
+
"name": "attributes",
|
|
1409
|
+
"type": "jsonb",
|
|
1410
|
+
"primaryKey": false,
|
|
1411
|
+
"notNull": true,
|
|
1412
|
+
"default": "'{}'::jsonb"
|
|
1413
|
+
}
|
|
1414
|
+
},
|
|
1415
|
+
"indexes": {},
|
|
1416
|
+
"foreignKeys": {
|
|
1417
|
+
"request_template_requests_template_id_requests_template_id_fk": {
|
|
1418
|
+
"name": "request_template_requests_template_id_requests_template_id_fk",
|
|
1419
|
+
"tableFrom": "request_template",
|
|
1420
|
+
"tableTo": "requests_template",
|
|
1421
|
+
"schemaTo": "document_management",
|
|
1422
|
+
"columnsFrom": [
|
|
1423
|
+
"requests_template_id"
|
|
1424
|
+
],
|
|
1425
|
+
"columnsTo": [
|
|
1426
|
+
"id"
|
|
1427
|
+
],
|
|
1428
|
+
"onDelete": "no action",
|
|
1429
|
+
"onUpdate": "no action"
|
|
1430
|
+
},
|
|
1431
|
+
"request_template_type_id_type_id_fk": {
|
|
1432
|
+
"name": "request_template_type_id_type_id_fk",
|
|
1433
|
+
"tableFrom": "request_template",
|
|
1434
|
+
"tableTo": "type",
|
|
1435
|
+
"schemaTo": "document_management",
|
|
1436
|
+
"columnsFrom": [
|
|
1437
|
+
"type_id"
|
|
1438
|
+
],
|
|
1439
|
+
"columnsTo": [
|
|
1440
|
+
"id"
|
|
1441
|
+
],
|
|
1442
|
+
"onDelete": "no action",
|
|
1443
|
+
"onUpdate": "no action"
|
|
1444
|
+
}
|
|
1445
|
+
},
|
|
1446
|
+
"compositePrimaryKeys": {},
|
|
1447
|
+
"uniqueConstraints": {},
|
|
1448
|
+
"policies": {},
|
|
1449
|
+
"checkConstraints": {},
|
|
1450
|
+
"isRLSEnabled": false
|
|
1451
|
+
},
|
|
1452
|
+
"document_management.requests_template": {
|
|
1453
|
+
"name": "requests_template",
|
|
1454
|
+
"schema": "document_management",
|
|
1455
|
+
"columns": {
|
|
1456
|
+
"id": {
|
|
1457
|
+
"name": "id",
|
|
1458
|
+
"type": "uuid",
|
|
1459
|
+
"primaryKey": true,
|
|
1460
|
+
"notNull": true,
|
|
1461
|
+
"default": "gen_random_uuid()"
|
|
1462
|
+
},
|
|
1463
|
+
"tenant_id": {
|
|
1464
|
+
"name": "tenant_id",
|
|
1465
|
+
"type": "uuid",
|
|
1466
|
+
"primaryKey": false,
|
|
1467
|
+
"notNull": false
|
|
1468
|
+
},
|
|
1469
|
+
"label": {
|
|
1470
|
+
"name": "label",
|
|
1471
|
+
"type": "text",
|
|
1472
|
+
"primaryKey": false,
|
|
1473
|
+
"notNull": true
|
|
1474
|
+
},
|
|
1475
|
+
"description": {
|
|
1476
|
+
"name": "description",
|
|
1477
|
+
"type": "text",
|
|
1478
|
+
"primaryKey": false,
|
|
1479
|
+
"notNull": false
|
|
1480
|
+
},
|
|
1481
|
+
"revision": {
|
|
1482
|
+
"name": "revision",
|
|
1483
|
+
"type": "integer",
|
|
1484
|
+
"primaryKey": false,
|
|
1485
|
+
"notNull": true
|
|
1486
|
+
},
|
|
1487
|
+
"revision_timestamp": {
|
|
1488
|
+
"name": "revision_timestamp",
|
|
1489
|
+
"type": "timestamp with time zone",
|
|
1490
|
+
"primaryKey": false,
|
|
1491
|
+
"notNull": true
|
|
1492
|
+
},
|
|
1493
|
+
"create_timestamp": {
|
|
1494
|
+
"name": "create_timestamp",
|
|
1495
|
+
"type": "timestamp with time zone",
|
|
1496
|
+
"primaryKey": false,
|
|
1497
|
+
"notNull": true
|
|
1498
|
+
},
|
|
1499
|
+
"delete_timestamp": {
|
|
1500
|
+
"name": "delete_timestamp",
|
|
1501
|
+
"type": "timestamp with time zone",
|
|
1502
|
+
"primaryKey": false,
|
|
1503
|
+
"notNull": false
|
|
1504
|
+
},
|
|
1505
|
+
"attributes": {
|
|
1506
|
+
"name": "attributes",
|
|
1507
|
+
"type": "jsonb",
|
|
1508
|
+
"primaryKey": false,
|
|
1509
|
+
"notNull": true,
|
|
1510
|
+
"default": "'{}'::jsonb"
|
|
1511
|
+
}
|
|
1512
|
+
},
|
|
1513
|
+
"indexes": {},
|
|
1514
|
+
"foreignKeys": {},
|
|
1515
|
+
"compositePrimaryKeys": {},
|
|
1516
|
+
"uniqueConstraints": {},
|
|
1517
|
+
"policies": {},
|
|
1518
|
+
"checkConstraints": {},
|
|
1519
|
+
"isRLSEnabled": false
|
|
1520
|
+
},
|
|
1521
|
+
"document_management.tag": {
|
|
1522
|
+
"name": "tag",
|
|
1523
|
+
"schema": "document_management",
|
|
1524
|
+
"columns": {
|
|
1525
|
+
"id": {
|
|
1526
|
+
"name": "id",
|
|
1527
|
+
"type": "uuid",
|
|
1528
|
+
"primaryKey": true,
|
|
1529
|
+
"notNull": true,
|
|
1530
|
+
"default": "gen_random_uuid()"
|
|
1531
|
+
},
|
|
1532
|
+
"tenant_id": {
|
|
1533
|
+
"name": "tenant_id",
|
|
1534
|
+
"type": "uuid",
|
|
1535
|
+
"primaryKey": false,
|
|
1536
|
+
"notNull": false
|
|
1537
|
+
},
|
|
1538
|
+
"label": {
|
|
1539
|
+
"name": "label",
|
|
1540
|
+
"type": "text",
|
|
1541
|
+
"primaryKey": false,
|
|
1542
|
+
"notNull": true
|
|
1543
|
+
},
|
|
1544
|
+
"revision": {
|
|
1545
|
+
"name": "revision",
|
|
1546
|
+
"type": "integer",
|
|
1547
|
+
"primaryKey": false,
|
|
1548
|
+
"notNull": true
|
|
1549
|
+
},
|
|
1550
|
+
"revision_timestamp": {
|
|
1551
|
+
"name": "revision_timestamp",
|
|
1552
|
+
"type": "timestamp with time zone",
|
|
1553
|
+
"primaryKey": false,
|
|
1554
|
+
"notNull": true
|
|
1555
|
+
},
|
|
1556
|
+
"create_timestamp": {
|
|
1557
|
+
"name": "create_timestamp",
|
|
1558
|
+
"type": "timestamp with time zone",
|
|
1559
|
+
"primaryKey": false,
|
|
1560
|
+
"notNull": true
|
|
1561
|
+
},
|
|
1562
|
+
"delete_timestamp": {
|
|
1563
|
+
"name": "delete_timestamp",
|
|
1564
|
+
"type": "timestamp with time zone",
|
|
1565
|
+
"primaryKey": false,
|
|
1566
|
+
"notNull": false
|
|
1567
|
+
},
|
|
1568
|
+
"attributes": {
|
|
1569
|
+
"name": "attributes",
|
|
1570
|
+
"type": "jsonb",
|
|
1571
|
+
"primaryKey": false,
|
|
1572
|
+
"notNull": true,
|
|
1573
|
+
"default": "'{}'::jsonb"
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1576
|
+
"indexes": {},
|
|
1577
|
+
"foreignKeys": {},
|
|
1578
|
+
"compositePrimaryKeys": {},
|
|
1579
|
+
"uniqueConstraints": {
|
|
1580
|
+
"tag_tenant_id_label_unique": {
|
|
1581
|
+
"name": "tag_tenant_id_label_unique",
|
|
1582
|
+
"nullsNotDistinct": false,
|
|
1583
|
+
"columns": [
|
|
1584
|
+
"tenant_id",
|
|
1585
|
+
"label"
|
|
1586
|
+
]
|
|
1587
|
+
}
|
|
1588
|
+
},
|
|
1589
|
+
"policies": {},
|
|
1590
|
+
"checkConstraints": {},
|
|
1591
|
+
"isRLSEnabled": false
|
|
1592
|
+
},
|
|
1593
|
+
"document_management.tag_assignment": {
|
|
1594
|
+
"name": "tag_assignment",
|
|
1595
|
+
"schema": "document_management",
|
|
1596
|
+
"columns": {
|
|
1597
|
+
"id": {
|
|
1598
|
+
"name": "id",
|
|
1599
|
+
"type": "uuid",
|
|
1600
|
+
"primaryKey": true,
|
|
1601
|
+
"notNull": true,
|
|
1602
|
+
"default": "gen_random_uuid()"
|
|
1603
|
+
},
|
|
1604
|
+
"tenant_id": {
|
|
1605
|
+
"name": "tenant_id",
|
|
1606
|
+
"type": "uuid",
|
|
1607
|
+
"primaryKey": false,
|
|
1608
|
+
"notNull": true
|
|
1609
|
+
},
|
|
1610
|
+
"document_id": {
|
|
1611
|
+
"name": "document_id",
|
|
1612
|
+
"type": "uuid",
|
|
1613
|
+
"primaryKey": false,
|
|
1614
|
+
"notNull": true
|
|
1615
|
+
},
|
|
1616
|
+
"tag_id": {
|
|
1617
|
+
"name": "tag_id",
|
|
1618
|
+
"type": "uuid",
|
|
1619
|
+
"primaryKey": false,
|
|
1620
|
+
"notNull": true
|
|
1621
|
+
},
|
|
1622
|
+
"revision": {
|
|
1623
|
+
"name": "revision",
|
|
1624
|
+
"type": "integer",
|
|
1625
|
+
"primaryKey": false,
|
|
1626
|
+
"notNull": true
|
|
1627
|
+
},
|
|
1628
|
+
"revision_timestamp": {
|
|
1629
|
+
"name": "revision_timestamp",
|
|
1630
|
+
"type": "timestamp with time zone",
|
|
1631
|
+
"primaryKey": false,
|
|
1632
|
+
"notNull": true
|
|
1633
|
+
},
|
|
1634
|
+
"create_timestamp": {
|
|
1635
|
+
"name": "create_timestamp",
|
|
1636
|
+
"type": "timestamp with time zone",
|
|
1637
|
+
"primaryKey": false,
|
|
1638
|
+
"notNull": true
|
|
1639
|
+
},
|
|
1640
|
+
"delete_timestamp": {
|
|
1641
|
+
"name": "delete_timestamp",
|
|
1642
|
+
"type": "timestamp with time zone",
|
|
1643
|
+
"primaryKey": false,
|
|
1644
|
+
"notNull": false
|
|
1645
|
+
},
|
|
1646
|
+
"attributes": {
|
|
1647
|
+
"name": "attributes",
|
|
1648
|
+
"type": "jsonb",
|
|
1649
|
+
"primaryKey": false,
|
|
1650
|
+
"notNull": true,
|
|
1651
|
+
"default": "'{}'::jsonb"
|
|
1652
|
+
}
|
|
1653
|
+
},
|
|
1654
|
+
"indexes": {},
|
|
1655
|
+
"foreignKeys": {
|
|
1656
|
+
"tag_assignment_document_id_document_id_fk": {
|
|
1657
|
+
"name": "tag_assignment_document_id_document_id_fk",
|
|
1658
|
+
"tableFrom": "tag_assignment",
|
|
1659
|
+
"tableTo": "document",
|
|
1660
|
+
"schemaTo": "document_management",
|
|
1661
|
+
"columnsFrom": [
|
|
1662
|
+
"document_id"
|
|
1663
|
+
],
|
|
1664
|
+
"columnsTo": [
|
|
1665
|
+
"id"
|
|
1666
|
+
],
|
|
1667
|
+
"onDelete": "no action",
|
|
1668
|
+
"onUpdate": "no action"
|
|
1669
|
+
},
|
|
1670
|
+
"tag_assignment_tag_id_tag_id_fk": {
|
|
1671
|
+
"name": "tag_assignment_tag_id_tag_id_fk",
|
|
1672
|
+
"tableFrom": "tag_assignment",
|
|
1673
|
+
"tableTo": "tag",
|
|
1674
|
+
"schemaTo": "document_management",
|
|
1675
|
+
"columnsFrom": [
|
|
1676
|
+
"tag_id"
|
|
1677
|
+
],
|
|
1678
|
+
"columnsTo": [
|
|
1679
|
+
"id"
|
|
1680
|
+
],
|
|
1681
|
+
"onDelete": "no action",
|
|
1682
|
+
"onUpdate": "no action"
|
|
1683
|
+
},
|
|
1684
|
+
"tag_assignment_tenantId_documentId_fkey": {
|
|
1685
|
+
"name": "tag_assignment_tenantId_documentId_fkey",
|
|
1686
|
+
"tableFrom": "tag_assignment",
|
|
1687
|
+
"tableTo": "document",
|
|
1688
|
+
"schemaTo": "document_management",
|
|
1689
|
+
"columnsFrom": [
|
|
1690
|
+
"tenant_id",
|
|
1691
|
+
"document_id"
|
|
1692
|
+
],
|
|
1693
|
+
"columnsTo": [
|
|
1694
|
+
"tenant_id",
|
|
1695
|
+
"id"
|
|
1696
|
+
],
|
|
1697
|
+
"onDelete": "no action",
|
|
1698
|
+
"onUpdate": "no action"
|
|
1699
|
+
}
|
|
1700
|
+
},
|
|
1701
|
+
"compositePrimaryKeys": {},
|
|
1702
|
+
"uniqueConstraints": {
|
|
1703
|
+
"tag_assignment_tenant_id_document_id_tag_id_unique": {
|
|
1704
|
+
"name": "tag_assignment_tenant_id_document_id_tag_id_unique",
|
|
1705
|
+
"nullsNotDistinct": false,
|
|
1706
|
+
"columns": [
|
|
1707
|
+
"tenant_id",
|
|
1708
|
+
"document_id",
|
|
1709
|
+
"tag_id"
|
|
1710
|
+
]
|
|
1711
|
+
}
|
|
1712
|
+
},
|
|
1713
|
+
"policies": {},
|
|
1714
|
+
"checkConstraints": {},
|
|
1715
|
+
"isRLSEnabled": false
|
|
1716
|
+
},
|
|
1717
|
+
"document_management.type": {
|
|
1718
|
+
"name": "type",
|
|
1719
|
+
"schema": "document_management",
|
|
1720
|
+
"columns": {
|
|
1721
|
+
"id": {
|
|
1722
|
+
"name": "id",
|
|
1723
|
+
"type": "uuid",
|
|
1724
|
+
"primaryKey": true,
|
|
1725
|
+
"notNull": true,
|
|
1726
|
+
"default": "gen_random_uuid()"
|
|
1727
|
+
},
|
|
1728
|
+
"tenant_id": {
|
|
1729
|
+
"name": "tenant_id",
|
|
1730
|
+
"type": "uuid",
|
|
1731
|
+
"primaryKey": false,
|
|
1732
|
+
"notNull": false
|
|
1733
|
+
},
|
|
1734
|
+
"category_id": {
|
|
1735
|
+
"name": "category_id",
|
|
1736
|
+
"type": "uuid",
|
|
1737
|
+
"primaryKey": false,
|
|
1738
|
+
"notNull": true
|
|
1739
|
+
},
|
|
1740
|
+
"label": {
|
|
1741
|
+
"name": "label",
|
|
1742
|
+
"type": "text",
|
|
1743
|
+
"primaryKey": false,
|
|
1744
|
+
"notNull": true
|
|
1745
|
+
},
|
|
1746
|
+
"revision": {
|
|
1747
|
+
"name": "revision",
|
|
1748
|
+
"type": "integer",
|
|
1749
|
+
"primaryKey": false,
|
|
1750
|
+
"notNull": true
|
|
1751
|
+
},
|
|
1752
|
+
"revision_timestamp": {
|
|
1753
|
+
"name": "revision_timestamp",
|
|
1754
|
+
"type": "timestamp with time zone",
|
|
1755
|
+
"primaryKey": false,
|
|
1756
|
+
"notNull": true
|
|
1757
|
+
},
|
|
1758
|
+
"create_timestamp": {
|
|
1759
|
+
"name": "create_timestamp",
|
|
1760
|
+
"type": "timestamp with time zone",
|
|
1761
|
+
"primaryKey": false,
|
|
1762
|
+
"notNull": true
|
|
1763
|
+
},
|
|
1764
|
+
"delete_timestamp": {
|
|
1765
|
+
"name": "delete_timestamp",
|
|
1766
|
+
"type": "timestamp with time zone",
|
|
1767
|
+
"primaryKey": false,
|
|
1768
|
+
"notNull": false
|
|
1769
|
+
},
|
|
1770
|
+
"attributes": {
|
|
1771
|
+
"name": "attributes",
|
|
1772
|
+
"type": "jsonb",
|
|
1773
|
+
"primaryKey": false,
|
|
1774
|
+
"notNull": true,
|
|
1775
|
+
"default": "'{}'::jsonb"
|
|
1776
|
+
}
|
|
1777
|
+
},
|
|
1778
|
+
"indexes": {},
|
|
1779
|
+
"foreignKeys": {
|
|
1780
|
+
"type_category_id_category_id_fk": {
|
|
1781
|
+
"name": "type_category_id_category_id_fk",
|
|
1782
|
+
"tableFrom": "type",
|
|
1783
|
+
"tableTo": "category",
|
|
1784
|
+
"schemaTo": "document_management",
|
|
1785
|
+
"columnsFrom": [
|
|
1786
|
+
"category_id"
|
|
1787
|
+
],
|
|
1788
|
+
"columnsTo": [
|
|
1789
|
+
"id"
|
|
1790
|
+
],
|
|
1791
|
+
"onDelete": "no action",
|
|
1792
|
+
"onUpdate": "no action"
|
|
1793
|
+
}
|
|
1794
|
+
},
|
|
1795
|
+
"compositePrimaryKeys": {},
|
|
1796
|
+
"uniqueConstraints": {
|
|
1797
|
+
"type_tenant_id_category_id_label_unique": {
|
|
1798
|
+
"name": "type_tenant_id_category_id_label_unique",
|
|
1799
|
+
"nullsNotDistinct": false,
|
|
1800
|
+
"columns": [
|
|
1801
|
+
"tenant_id",
|
|
1802
|
+
"category_id",
|
|
1803
|
+
"label"
|
|
1804
|
+
]
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
"policies": {},
|
|
1808
|
+
"checkConstraints": {},
|
|
1809
|
+
"isRLSEnabled": false
|
|
1810
|
+
},
|
|
1811
|
+
"document_management.type_property": {
|
|
1812
|
+
"name": "type_property",
|
|
1813
|
+
"schema": "document_management",
|
|
1814
|
+
"columns": {
|
|
1815
|
+
"id": {
|
|
1816
|
+
"name": "id",
|
|
1817
|
+
"type": "uuid",
|
|
1818
|
+
"primaryKey": true,
|
|
1819
|
+
"notNull": true,
|
|
1820
|
+
"default": "gen_random_uuid()"
|
|
1821
|
+
},
|
|
1822
|
+
"tenant_id": {
|
|
1823
|
+
"name": "tenant_id",
|
|
1824
|
+
"type": "uuid",
|
|
1825
|
+
"primaryKey": false,
|
|
1826
|
+
"notNull": false
|
|
1827
|
+
},
|
|
1828
|
+
"type_id": {
|
|
1829
|
+
"name": "type_id",
|
|
1830
|
+
"type": "uuid",
|
|
1831
|
+
"primaryKey": false,
|
|
1832
|
+
"notNull": true
|
|
1833
|
+
},
|
|
1834
|
+
"property_id": {
|
|
1835
|
+
"name": "property_id",
|
|
1836
|
+
"type": "uuid",
|
|
1837
|
+
"primaryKey": false,
|
|
1838
|
+
"notNull": true
|
|
1839
|
+
},
|
|
1840
|
+
"revision": {
|
|
1841
|
+
"name": "revision",
|
|
1842
|
+
"type": "integer",
|
|
1843
|
+
"primaryKey": false,
|
|
1844
|
+
"notNull": true
|
|
1845
|
+
},
|
|
1846
|
+
"revision_timestamp": {
|
|
1847
|
+
"name": "revision_timestamp",
|
|
1848
|
+
"type": "timestamp with time zone",
|
|
1849
|
+
"primaryKey": false,
|
|
1850
|
+
"notNull": true
|
|
1851
|
+
},
|
|
1852
|
+
"create_timestamp": {
|
|
1853
|
+
"name": "create_timestamp",
|
|
1854
|
+
"type": "timestamp with time zone",
|
|
1855
|
+
"primaryKey": false,
|
|
1856
|
+
"notNull": true
|
|
1857
|
+
},
|
|
1858
|
+
"delete_timestamp": {
|
|
1859
|
+
"name": "delete_timestamp",
|
|
1860
|
+
"type": "timestamp with time zone",
|
|
1861
|
+
"primaryKey": false,
|
|
1862
|
+
"notNull": false
|
|
1863
|
+
},
|
|
1864
|
+
"attributes": {
|
|
1865
|
+
"name": "attributes",
|
|
1866
|
+
"type": "jsonb",
|
|
1867
|
+
"primaryKey": false,
|
|
1868
|
+
"notNull": true,
|
|
1869
|
+
"default": "'{}'::jsonb"
|
|
1870
|
+
}
|
|
1871
|
+
},
|
|
1872
|
+
"indexes": {},
|
|
1873
|
+
"foreignKeys": {
|
|
1874
|
+
"type_property_type_id_type_id_fk": {
|
|
1875
|
+
"name": "type_property_type_id_type_id_fk",
|
|
1876
|
+
"tableFrom": "type_property",
|
|
1877
|
+
"tableTo": "type",
|
|
1878
|
+
"schemaTo": "document_management",
|
|
1879
|
+
"columnsFrom": [
|
|
1880
|
+
"type_id"
|
|
1881
|
+
],
|
|
1882
|
+
"columnsTo": [
|
|
1883
|
+
"id"
|
|
1884
|
+
],
|
|
1885
|
+
"onDelete": "no action",
|
|
1886
|
+
"onUpdate": "no action"
|
|
1887
|
+
},
|
|
1888
|
+
"type_property_property_id_property_id_fk": {
|
|
1889
|
+
"name": "type_property_property_id_property_id_fk",
|
|
1890
|
+
"tableFrom": "type_property",
|
|
1891
|
+
"tableTo": "property",
|
|
1892
|
+
"schemaTo": "document_management",
|
|
1893
|
+
"columnsFrom": [
|
|
1894
|
+
"property_id"
|
|
1895
|
+
],
|
|
1896
|
+
"columnsTo": [
|
|
1897
|
+
"id"
|
|
1898
|
+
],
|
|
1899
|
+
"onDelete": "no action",
|
|
1900
|
+
"onUpdate": "no action"
|
|
1901
|
+
}
|
|
1902
|
+
},
|
|
1903
|
+
"compositePrimaryKeys": {},
|
|
1904
|
+
"uniqueConstraints": {
|
|
1905
|
+
"type_property_tenant_id_type_id_property_id_unique": {
|
|
1906
|
+
"name": "type_property_tenant_id_type_id_property_id_unique",
|
|
1907
|
+
"nullsNotDistinct": false,
|
|
1908
|
+
"columns": [
|
|
1909
|
+
"tenant_id",
|
|
1910
|
+
"type_id",
|
|
1911
|
+
"property_id"
|
|
1912
|
+
]
|
|
1913
|
+
}
|
|
1914
|
+
},
|
|
1915
|
+
"policies": {},
|
|
1916
|
+
"checkConstraints": {},
|
|
1917
|
+
"isRLSEnabled": false
|
|
1918
|
+
},
|
|
1919
|
+
"document_management.document_type_validation": {
|
|
1920
|
+
"name": "document_type_validation",
|
|
1921
|
+
"schema": "document_management",
|
|
1922
|
+
"columns": {
|
|
1923
|
+
"id": {
|
|
1924
|
+
"name": "id",
|
|
1925
|
+
"type": "uuid",
|
|
1926
|
+
"primaryKey": true,
|
|
1927
|
+
"notNull": true,
|
|
1928
|
+
"default": "gen_random_uuid()"
|
|
1929
|
+
},
|
|
1930
|
+
"tenant_id": {
|
|
1931
|
+
"name": "tenant_id",
|
|
1932
|
+
"type": "uuid",
|
|
1933
|
+
"primaryKey": false,
|
|
1934
|
+
"notNull": false
|
|
1935
|
+
},
|
|
1936
|
+
"type_id": {
|
|
1937
|
+
"name": "type_id",
|
|
1938
|
+
"type": "uuid",
|
|
1939
|
+
"primaryKey": false,
|
|
1940
|
+
"notNull": true
|
|
1941
|
+
},
|
|
1942
|
+
"validation_id": {
|
|
1943
|
+
"name": "validation_id",
|
|
1944
|
+
"type": "uuid",
|
|
1945
|
+
"primaryKey": false,
|
|
1946
|
+
"notNull": true
|
|
1947
|
+
},
|
|
1948
|
+
"revision": {
|
|
1949
|
+
"name": "revision",
|
|
1950
|
+
"type": "integer",
|
|
1951
|
+
"primaryKey": false,
|
|
1952
|
+
"notNull": true
|
|
1953
|
+
},
|
|
1954
|
+
"revision_timestamp": {
|
|
1955
|
+
"name": "revision_timestamp",
|
|
1956
|
+
"type": "timestamp with time zone",
|
|
1957
|
+
"primaryKey": false,
|
|
1958
|
+
"notNull": true
|
|
1959
|
+
},
|
|
1960
|
+
"create_timestamp": {
|
|
1961
|
+
"name": "create_timestamp",
|
|
1962
|
+
"type": "timestamp with time zone",
|
|
1963
|
+
"primaryKey": false,
|
|
1964
|
+
"notNull": true
|
|
1965
|
+
},
|
|
1966
|
+
"delete_timestamp": {
|
|
1967
|
+
"name": "delete_timestamp",
|
|
1968
|
+
"type": "timestamp with time zone",
|
|
1969
|
+
"primaryKey": false,
|
|
1970
|
+
"notNull": false
|
|
1971
|
+
},
|
|
1972
|
+
"attributes": {
|
|
1973
|
+
"name": "attributes",
|
|
1974
|
+
"type": "jsonb",
|
|
1975
|
+
"primaryKey": false,
|
|
1976
|
+
"notNull": true,
|
|
1977
|
+
"default": "'{}'::jsonb"
|
|
1978
|
+
}
|
|
1979
|
+
},
|
|
1980
|
+
"indexes": {
|
|
1981
|
+
"document_type_validation_type_id_idx": {
|
|
1982
|
+
"name": "document_type_validation_type_id_idx",
|
|
1983
|
+
"columns": [
|
|
1984
|
+
{
|
|
1985
|
+
"expression": "type_id",
|
|
1986
|
+
"isExpression": false,
|
|
1987
|
+
"asc": true,
|
|
1988
|
+
"nulls": "last"
|
|
1989
|
+
}
|
|
1990
|
+
],
|
|
1991
|
+
"isUnique": false,
|
|
1992
|
+
"concurrently": false,
|
|
1993
|
+
"method": "btree",
|
|
1994
|
+
"with": {}
|
|
1995
|
+
}
|
|
1996
|
+
},
|
|
1997
|
+
"foreignKeys": {
|
|
1998
|
+
"document_type_validation_type_id_type_id_fk": {
|
|
1999
|
+
"name": "document_type_validation_type_id_type_id_fk",
|
|
2000
|
+
"tableFrom": "document_type_validation",
|
|
2001
|
+
"tableTo": "type",
|
|
2002
|
+
"schemaTo": "document_management",
|
|
2003
|
+
"columnsFrom": [
|
|
2004
|
+
"type_id"
|
|
2005
|
+
],
|
|
2006
|
+
"columnsTo": [
|
|
2007
|
+
"id"
|
|
2008
|
+
],
|
|
2009
|
+
"onDelete": "no action",
|
|
2010
|
+
"onUpdate": "no action"
|
|
2011
|
+
},
|
|
2012
|
+
"document_type_validation_validation_id_validation_definition_id_fk": {
|
|
2013
|
+
"name": "document_type_validation_validation_id_validation_definition_id_fk",
|
|
2014
|
+
"tableFrom": "document_type_validation",
|
|
2015
|
+
"tableTo": "validation_definition",
|
|
2016
|
+
"schemaTo": "document_management",
|
|
2017
|
+
"columnsFrom": [
|
|
2018
|
+
"validation_id"
|
|
2019
|
+
],
|
|
2020
|
+
"columnsTo": [
|
|
2021
|
+
"id"
|
|
2022
|
+
],
|
|
2023
|
+
"onDelete": "no action",
|
|
2024
|
+
"onUpdate": "no action"
|
|
2025
|
+
}
|
|
2026
|
+
},
|
|
2027
|
+
"compositePrimaryKeys": {},
|
|
2028
|
+
"uniqueConstraints": {
|
|
2029
|
+
"document_type_validation_tenant_id_type_id_validation_id_unique": {
|
|
2030
|
+
"name": "document_type_validation_tenant_id_type_id_validation_id_unique",
|
|
2031
|
+
"nullsNotDistinct": false,
|
|
2032
|
+
"columns": [
|
|
2033
|
+
"tenant_id",
|
|
2034
|
+
"type_id",
|
|
2035
|
+
"validation_id"
|
|
2036
|
+
]
|
|
2037
|
+
}
|
|
2038
|
+
},
|
|
2039
|
+
"policies": {},
|
|
2040
|
+
"checkConstraints": {},
|
|
2041
|
+
"isRLSEnabled": false
|
|
2042
|
+
},
|
|
2043
|
+
"document_management.validation_definition": {
|
|
2044
|
+
"name": "validation_definition",
|
|
2045
|
+
"schema": "document_management",
|
|
2046
|
+
"columns": {
|
|
2047
|
+
"id": {
|
|
2048
|
+
"name": "id",
|
|
2049
|
+
"type": "uuid",
|
|
2050
|
+
"primaryKey": true,
|
|
2051
|
+
"notNull": true,
|
|
2052
|
+
"default": "gen_random_uuid()"
|
|
2053
|
+
},
|
|
2054
|
+
"tenant_id": {
|
|
2055
|
+
"name": "tenant_id",
|
|
2056
|
+
"type": "uuid",
|
|
2057
|
+
"primaryKey": false,
|
|
2058
|
+
"notNull": false
|
|
2059
|
+
},
|
|
2060
|
+
"identifier": {
|
|
2061
|
+
"name": "identifier",
|
|
2062
|
+
"type": "text",
|
|
2063
|
+
"primaryKey": false,
|
|
2064
|
+
"notNull": true
|
|
2065
|
+
},
|
|
2066
|
+
"label": {
|
|
2067
|
+
"name": "label",
|
|
2068
|
+
"type": "text",
|
|
2069
|
+
"primaryKey": false,
|
|
2070
|
+
"notNull": true
|
|
2071
|
+
},
|
|
2072
|
+
"description": {
|
|
2073
|
+
"name": "description",
|
|
2074
|
+
"type": "text",
|
|
2075
|
+
"primaryKey": false,
|
|
2076
|
+
"notNull": false
|
|
2077
|
+
},
|
|
2078
|
+
"configuration": {
|
|
2079
|
+
"name": "configuration",
|
|
2080
|
+
"type": "jsonb",
|
|
2081
|
+
"primaryKey": false,
|
|
2082
|
+
"notNull": true
|
|
2083
|
+
},
|
|
2084
|
+
"revision": {
|
|
2085
|
+
"name": "revision",
|
|
2086
|
+
"type": "integer",
|
|
2087
|
+
"primaryKey": false,
|
|
2088
|
+
"notNull": true
|
|
2089
|
+
},
|
|
2090
|
+
"revision_timestamp": {
|
|
2091
|
+
"name": "revision_timestamp",
|
|
2092
|
+
"type": "timestamp with time zone",
|
|
2093
|
+
"primaryKey": false,
|
|
2094
|
+
"notNull": true
|
|
2095
|
+
},
|
|
2096
|
+
"create_timestamp": {
|
|
2097
|
+
"name": "create_timestamp",
|
|
2098
|
+
"type": "timestamp with time zone",
|
|
2099
|
+
"primaryKey": false,
|
|
2100
|
+
"notNull": true
|
|
2101
|
+
},
|
|
2102
|
+
"delete_timestamp": {
|
|
2103
|
+
"name": "delete_timestamp",
|
|
2104
|
+
"type": "timestamp with time zone",
|
|
2105
|
+
"primaryKey": false,
|
|
2106
|
+
"notNull": false
|
|
2107
|
+
},
|
|
2108
|
+
"attributes": {
|
|
2109
|
+
"name": "attributes",
|
|
2110
|
+
"type": "jsonb",
|
|
2111
|
+
"primaryKey": false,
|
|
2112
|
+
"notNull": true,
|
|
2113
|
+
"default": "'{}'::jsonb"
|
|
2114
|
+
}
|
|
2115
|
+
},
|
|
2116
|
+
"indexes": {},
|
|
2117
|
+
"foreignKeys": {},
|
|
2118
|
+
"compositePrimaryKeys": {},
|
|
2119
|
+
"uniqueConstraints": {},
|
|
2120
|
+
"policies": {},
|
|
2121
|
+
"checkConstraints": {},
|
|
2122
|
+
"isRLSEnabled": false
|
|
2123
|
+
},
|
|
2124
|
+
"document_management.validation_execution": {
|
|
2125
|
+
"name": "validation_execution",
|
|
2126
|
+
"schema": "document_management",
|
|
2127
|
+
"columns": {
|
|
2128
|
+
"id": {
|
|
2129
|
+
"name": "id",
|
|
2130
|
+
"type": "uuid",
|
|
2131
|
+
"primaryKey": true,
|
|
2132
|
+
"notNull": true,
|
|
2133
|
+
"default": "gen_random_uuid()"
|
|
2134
|
+
},
|
|
2135
|
+
"tenant_id": {
|
|
2136
|
+
"name": "tenant_id",
|
|
2137
|
+
"type": "uuid",
|
|
2138
|
+
"primaryKey": false,
|
|
2139
|
+
"notNull": true
|
|
2140
|
+
},
|
|
2141
|
+
"workflow_id": {
|
|
2142
|
+
"name": "workflow_id",
|
|
2143
|
+
"type": "uuid",
|
|
2144
|
+
"primaryKey": false,
|
|
2145
|
+
"notNull": true
|
|
2146
|
+
},
|
|
2147
|
+
"definition_id": {
|
|
2148
|
+
"name": "definition_id",
|
|
2149
|
+
"type": "uuid",
|
|
2150
|
+
"primaryKey": false,
|
|
2151
|
+
"notNull": true
|
|
2152
|
+
},
|
|
2153
|
+
"state": {
|
|
2154
|
+
"name": "state",
|
|
2155
|
+
"type": "validation_execution_state",
|
|
2156
|
+
"typeSchema": "document_management",
|
|
2157
|
+
"primaryKey": false,
|
|
2158
|
+
"notNull": true
|
|
2159
|
+
},
|
|
2160
|
+
"result_status": {
|
|
2161
|
+
"name": "result_status",
|
|
2162
|
+
"type": "validation_result_status",
|
|
2163
|
+
"typeSchema": "document_management",
|
|
2164
|
+
"primaryKey": false,
|
|
2165
|
+
"notNull": false
|
|
2166
|
+
},
|
|
2167
|
+
"result_message": {
|
|
2168
|
+
"name": "result_message",
|
|
2169
|
+
"type": "text",
|
|
2170
|
+
"primaryKey": false,
|
|
2171
|
+
"notNull": false
|
|
2172
|
+
},
|
|
2173
|
+
"started_at": {
|
|
2174
|
+
"name": "started_at",
|
|
2175
|
+
"type": "timestamp with time zone",
|
|
2176
|
+
"primaryKey": false,
|
|
2177
|
+
"notNull": false
|
|
2178
|
+
},
|
|
2179
|
+
"completed_at": {
|
|
2180
|
+
"name": "completed_at",
|
|
2181
|
+
"type": "timestamp with time zone",
|
|
2182
|
+
"primaryKey": false,
|
|
2183
|
+
"notNull": false
|
|
2184
|
+
},
|
|
2185
|
+
"revision": {
|
|
2186
|
+
"name": "revision",
|
|
2187
|
+
"type": "integer",
|
|
2188
|
+
"primaryKey": false,
|
|
2189
|
+
"notNull": true
|
|
2190
|
+
},
|
|
2191
|
+
"revision_timestamp": {
|
|
2192
|
+
"name": "revision_timestamp",
|
|
2193
|
+
"type": "timestamp with time zone",
|
|
2194
|
+
"primaryKey": false,
|
|
2195
|
+
"notNull": true
|
|
2196
|
+
},
|
|
2197
|
+
"create_timestamp": {
|
|
2198
|
+
"name": "create_timestamp",
|
|
2199
|
+
"type": "timestamp with time zone",
|
|
2200
|
+
"primaryKey": false,
|
|
2201
|
+
"notNull": true
|
|
2202
|
+
},
|
|
2203
|
+
"delete_timestamp": {
|
|
2204
|
+
"name": "delete_timestamp",
|
|
2205
|
+
"type": "timestamp with time zone",
|
|
2206
|
+
"primaryKey": false,
|
|
2207
|
+
"notNull": false
|
|
2208
|
+
},
|
|
2209
|
+
"attributes": {
|
|
2210
|
+
"name": "attributes",
|
|
2211
|
+
"type": "jsonb",
|
|
2212
|
+
"primaryKey": false,
|
|
2213
|
+
"notNull": true,
|
|
2214
|
+
"default": "'{}'::jsonb"
|
|
2215
|
+
}
|
|
2216
|
+
},
|
|
2217
|
+
"indexes": {},
|
|
2218
|
+
"foreignKeys": {
|
|
2219
|
+
"validation_execution_workflow_id_workflow_id_fk": {
|
|
2220
|
+
"name": "validation_execution_workflow_id_workflow_id_fk",
|
|
2221
|
+
"tableFrom": "validation_execution",
|
|
2222
|
+
"tableTo": "workflow",
|
|
2223
|
+
"schemaTo": "document_management",
|
|
2224
|
+
"columnsFrom": [
|
|
2225
|
+
"workflow_id"
|
|
2226
|
+
],
|
|
2227
|
+
"columnsTo": [
|
|
2228
|
+
"id"
|
|
2229
|
+
],
|
|
2230
|
+
"onDelete": "no action",
|
|
2231
|
+
"onUpdate": "no action"
|
|
2232
|
+
},
|
|
2233
|
+
"validation_execution_definition_id_validation_definition_id_fk": {
|
|
2234
|
+
"name": "validation_execution_definition_id_validation_definition_id_fk",
|
|
2235
|
+
"tableFrom": "validation_execution",
|
|
2236
|
+
"tableTo": "validation_definition",
|
|
2237
|
+
"schemaTo": "document_management",
|
|
2238
|
+
"columnsFrom": [
|
|
2239
|
+
"definition_id"
|
|
2240
|
+
],
|
|
2241
|
+
"columnsTo": [
|
|
2242
|
+
"id"
|
|
2243
|
+
],
|
|
2244
|
+
"onDelete": "no action",
|
|
2245
|
+
"onUpdate": "no action"
|
|
2246
|
+
},
|
|
2247
|
+
"validation_execution_tenantId_workflowId_fkey": {
|
|
2248
|
+
"name": "validation_execution_tenantId_workflowId_fkey",
|
|
2249
|
+
"tableFrom": "validation_execution",
|
|
2250
|
+
"tableTo": "workflow",
|
|
2251
|
+
"schemaTo": "document_management",
|
|
2252
|
+
"columnsFrom": [
|
|
2253
|
+
"tenant_id",
|
|
2254
|
+
"workflow_id"
|
|
2255
|
+
],
|
|
2256
|
+
"columnsTo": [
|
|
2257
|
+
"tenant_id",
|
|
2258
|
+
"id"
|
|
2259
|
+
],
|
|
2260
|
+
"onDelete": "no action",
|
|
2261
|
+
"onUpdate": "no action"
|
|
2262
|
+
}
|
|
2263
|
+
},
|
|
2264
|
+
"compositePrimaryKeys": {},
|
|
2265
|
+
"uniqueConstraints": {
|
|
2266
|
+
"validation_execution_tenant_id_workflow_id_definition_id_unique": {
|
|
2267
|
+
"name": "validation_execution_tenant_id_workflow_id_definition_id_unique",
|
|
2268
|
+
"nullsNotDistinct": false,
|
|
2269
|
+
"columns": [
|
|
2270
|
+
"tenant_id",
|
|
2271
|
+
"workflow_id",
|
|
2272
|
+
"definition_id"
|
|
2273
|
+
]
|
|
2274
|
+
},
|
|
2275
|
+
"validation_execution_tenant_id_id_unique": {
|
|
2276
|
+
"name": "validation_execution_tenant_id_id_unique",
|
|
2277
|
+
"nullsNotDistinct": false,
|
|
2278
|
+
"columns": [
|
|
2279
|
+
"tenant_id",
|
|
2280
|
+
"id"
|
|
2281
|
+
]
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
"policies": {},
|
|
2285
|
+
"checkConstraints": {},
|
|
2286
|
+
"isRLSEnabled": false
|
|
2287
|
+
},
|
|
2288
|
+
"document_management.validation_execution_related_document": {
|
|
2289
|
+
"name": "validation_execution_related_document",
|
|
2290
|
+
"schema": "document_management",
|
|
2291
|
+
"columns": {
|
|
2292
|
+
"id": {
|
|
2293
|
+
"name": "id",
|
|
2294
|
+
"type": "uuid",
|
|
2295
|
+
"primaryKey": true,
|
|
2296
|
+
"notNull": true,
|
|
2297
|
+
"default": "gen_random_uuid()"
|
|
2298
|
+
},
|
|
2299
|
+
"tenant_id": {
|
|
2300
|
+
"name": "tenant_id",
|
|
2301
|
+
"type": "uuid",
|
|
2302
|
+
"primaryKey": false,
|
|
2303
|
+
"notNull": true
|
|
2304
|
+
},
|
|
2305
|
+
"execution_id": {
|
|
2306
|
+
"name": "execution_id",
|
|
2307
|
+
"type": "uuid",
|
|
2308
|
+
"primaryKey": false,
|
|
2309
|
+
"notNull": true
|
|
2310
|
+
},
|
|
2311
|
+
"document_id": {
|
|
2312
|
+
"name": "document_id",
|
|
2313
|
+
"type": "uuid",
|
|
2314
|
+
"primaryKey": false,
|
|
2315
|
+
"notNull": true
|
|
2316
|
+
},
|
|
2317
|
+
"revision": {
|
|
2318
|
+
"name": "revision",
|
|
2319
|
+
"type": "integer",
|
|
2320
|
+
"primaryKey": false,
|
|
2321
|
+
"notNull": true
|
|
2322
|
+
},
|
|
2323
|
+
"revision_timestamp": {
|
|
2324
|
+
"name": "revision_timestamp",
|
|
2325
|
+
"type": "timestamp with time zone",
|
|
2326
|
+
"primaryKey": false,
|
|
2327
|
+
"notNull": true
|
|
2328
|
+
},
|
|
2329
|
+
"create_timestamp": {
|
|
2330
|
+
"name": "create_timestamp",
|
|
2331
|
+
"type": "timestamp with time zone",
|
|
2332
|
+
"primaryKey": false,
|
|
2333
|
+
"notNull": true
|
|
2334
|
+
},
|
|
2335
|
+
"delete_timestamp": {
|
|
2336
|
+
"name": "delete_timestamp",
|
|
2337
|
+
"type": "timestamp with time zone",
|
|
2338
|
+
"primaryKey": false,
|
|
2339
|
+
"notNull": false
|
|
2340
|
+
},
|
|
2341
|
+
"attributes": {
|
|
2342
|
+
"name": "attributes",
|
|
2343
|
+
"type": "jsonb",
|
|
2344
|
+
"primaryKey": false,
|
|
2345
|
+
"notNull": true,
|
|
2346
|
+
"default": "'{}'::jsonb"
|
|
2347
|
+
}
|
|
2348
|
+
},
|
|
2349
|
+
"indexes": {},
|
|
2350
|
+
"foreignKeys": {
|
|
2351
|
+
"validation_execution_related_document_execution_id_validation_execution_id_fk": {
|
|
2352
|
+
"name": "validation_execution_related_document_execution_id_validation_execution_id_fk",
|
|
2353
|
+
"tableFrom": "validation_execution_related_document",
|
|
2354
|
+
"tableTo": "validation_execution",
|
|
2355
|
+
"schemaTo": "document_management",
|
|
2356
|
+
"columnsFrom": [
|
|
2357
|
+
"execution_id"
|
|
2358
|
+
],
|
|
2359
|
+
"columnsTo": [
|
|
2360
|
+
"id"
|
|
2361
|
+
],
|
|
2362
|
+
"onDelete": "no action",
|
|
2363
|
+
"onUpdate": "no action"
|
|
2364
|
+
},
|
|
2365
|
+
"validation_execution_related_document_document_id_document_id_fk": {
|
|
2366
|
+
"name": "validation_execution_related_document_document_id_document_id_fk",
|
|
2367
|
+
"tableFrom": "validation_execution_related_document",
|
|
2368
|
+
"tableTo": "document",
|
|
2369
|
+
"schemaTo": "document_management",
|
|
2370
|
+
"columnsFrom": [
|
|
2371
|
+
"document_id"
|
|
2372
|
+
],
|
|
2373
|
+
"columnsTo": [
|
|
2374
|
+
"id"
|
|
2375
|
+
],
|
|
2376
|
+
"onDelete": "no action",
|
|
2377
|
+
"onUpdate": "no action"
|
|
2378
|
+
},
|
|
2379
|
+
"validation_execution_related_document_tenantId_documentId_fkey": {
|
|
2380
|
+
"name": "validation_execution_related_document_tenantId_documentId_fkey",
|
|
2381
|
+
"tableFrom": "validation_execution_related_document",
|
|
2382
|
+
"tableTo": "document",
|
|
2383
|
+
"schemaTo": "document_management",
|
|
2384
|
+
"columnsFrom": [
|
|
2385
|
+
"tenant_id",
|
|
2386
|
+
"document_id"
|
|
2387
|
+
],
|
|
2388
|
+
"columnsTo": [
|
|
2389
|
+
"tenant_id",
|
|
2390
|
+
"id"
|
|
2391
|
+
],
|
|
2392
|
+
"onDelete": "no action",
|
|
2393
|
+
"onUpdate": "no action"
|
|
2394
|
+
},
|
|
2395
|
+
"validation_execution_related_document_tenantId_executionId_fkey": {
|
|
2396
|
+
"name": "validation_execution_related_document_tenantId_executionId_fkey",
|
|
2397
|
+
"tableFrom": "validation_execution_related_document",
|
|
2398
|
+
"tableTo": "validation_execution",
|
|
2399
|
+
"schemaTo": "document_management",
|
|
2400
|
+
"columnsFrom": [
|
|
2401
|
+
"tenant_id",
|
|
2402
|
+
"execution_id"
|
|
2403
|
+
],
|
|
2404
|
+
"columnsTo": [
|
|
2405
|
+
"tenant_id",
|
|
2406
|
+
"id"
|
|
2407
|
+
],
|
|
2408
|
+
"onDelete": "no action",
|
|
2409
|
+
"onUpdate": "no action"
|
|
2410
|
+
}
|
|
2411
|
+
},
|
|
2412
|
+
"compositePrimaryKeys": {},
|
|
2413
|
+
"uniqueConstraints": {
|
|
2414
|
+
"verd_tenant_id_execution_id_document_id_unique": {
|
|
2415
|
+
"name": "verd_tenant_id_execution_id_document_id_unique",
|
|
2416
|
+
"nullsNotDistinct": false,
|
|
2417
|
+
"columns": [
|
|
2418
|
+
"tenant_id",
|
|
2419
|
+
"execution_id",
|
|
2420
|
+
"document_id"
|
|
2421
|
+
]
|
|
2422
|
+
}
|
|
2423
|
+
},
|
|
2424
|
+
"policies": {},
|
|
2425
|
+
"checkConstraints": {},
|
|
2426
|
+
"isRLSEnabled": false
|
|
2427
|
+
},
|
|
2428
|
+
"document_management.workflow": {
|
|
2429
|
+
"name": "workflow",
|
|
2430
|
+
"schema": "document_management",
|
|
2431
|
+
"columns": {
|
|
2432
|
+
"id": {
|
|
2433
|
+
"name": "id",
|
|
2434
|
+
"type": "uuid",
|
|
2435
|
+
"primaryKey": true,
|
|
2436
|
+
"notNull": true,
|
|
2437
|
+
"default": "gen_random_uuid()"
|
|
2438
|
+
},
|
|
2439
|
+
"tenant_id": {
|
|
2440
|
+
"name": "tenant_id",
|
|
2441
|
+
"type": "uuid",
|
|
2442
|
+
"primaryKey": false,
|
|
2443
|
+
"notNull": true
|
|
2444
|
+
},
|
|
2445
|
+
"document_id": {
|
|
2446
|
+
"name": "document_id",
|
|
2447
|
+
"type": "uuid",
|
|
2448
|
+
"primaryKey": false,
|
|
2449
|
+
"notNull": true
|
|
2450
|
+
},
|
|
2451
|
+
"step": {
|
|
2452
|
+
"name": "step",
|
|
2453
|
+
"type": "workflow_step",
|
|
2454
|
+
"typeSchema": "document_management",
|
|
2455
|
+
"primaryKey": false,
|
|
2456
|
+
"notNull": true
|
|
2457
|
+
},
|
|
2458
|
+
"state": {
|
|
2459
|
+
"name": "state",
|
|
2460
|
+
"type": "workflow_state",
|
|
2461
|
+
"typeSchema": "document_management",
|
|
2462
|
+
"primaryKey": false,
|
|
2463
|
+
"notNull": true
|
|
2464
|
+
},
|
|
2465
|
+
"fail_reason": {
|
|
2466
|
+
"name": "fail_reason",
|
|
2467
|
+
"type": "workflow_fail_reason",
|
|
2468
|
+
"typeSchema": "document_management",
|
|
2469
|
+
"primaryKey": false,
|
|
2470
|
+
"notNull": false
|
|
2471
|
+
},
|
|
2472
|
+
"complete_timestamp": {
|
|
2473
|
+
"name": "complete_timestamp",
|
|
2474
|
+
"type": "timestamp with time zone",
|
|
2475
|
+
"primaryKey": false,
|
|
2476
|
+
"notNull": false
|
|
2477
|
+
},
|
|
2478
|
+
"complete_user_id": {
|
|
2479
|
+
"name": "complete_user_id",
|
|
2480
|
+
"type": "uuid",
|
|
2481
|
+
"primaryKey": false,
|
|
2482
|
+
"notNull": false
|
|
2483
|
+
},
|
|
2484
|
+
"revision": {
|
|
2485
|
+
"name": "revision",
|
|
2486
|
+
"type": "integer",
|
|
2487
|
+
"primaryKey": false,
|
|
2488
|
+
"notNull": true
|
|
2489
|
+
},
|
|
2490
|
+
"revision_timestamp": {
|
|
2491
|
+
"name": "revision_timestamp",
|
|
2492
|
+
"type": "timestamp with time zone",
|
|
2493
|
+
"primaryKey": false,
|
|
2494
|
+
"notNull": true
|
|
2495
|
+
},
|
|
2496
|
+
"create_timestamp": {
|
|
2497
|
+
"name": "create_timestamp",
|
|
2498
|
+
"type": "timestamp with time zone",
|
|
2499
|
+
"primaryKey": false,
|
|
2500
|
+
"notNull": true
|
|
2501
|
+
},
|
|
2502
|
+
"delete_timestamp": {
|
|
2503
|
+
"name": "delete_timestamp",
|
|
2504
|
+
"type": "timestamp with time zone",
|
|
2505
|
+
"primaryKey": false,
|
|
2506
|
+
"notNull": false
|
|
2507
|
+
},
|
|
2508
|
+
"attributes": {
|
|
2509
|
+
"name": "attributes",
|
|
2510
|
+
"type": "jsonb",
|
|
2511
|
+
"primaryKey": false,
|
|
2512
|
+
"notNull": true,
|
|
2513
|
+
"default": "'{}'::jsonb"
|
|
2514
|
+
}
|
|
2515
|
+
},
|
|
2516
|
+
"indexes": {
|
|
2517
|
+
"workflow_document_id_idx": {
|
|
2518
|
+
"name": "workflow_document_id_idx",
|
|
2519
|
+
"columns": [
|
|
2520
|
+
{
|
|
2521
|
+
"expression": "document_id",
|
|
2522
|
+
"isExpression": false,
|
|
2523
|
+
"asc": true,
|
|
2524
|
+
"nulls": "last"
|
|
2525
|
+
}
|
|
2526
|
+
],
|
|
2527
|
+
"isUnique": true,
|
|
2528
|
+
"where": "\"document_management\".\"workflow\".\"state\" <> 'completed'",
|
|
2529
|
+
"concurrently": false,
|
|
2530
|
+
"method": "btree",
|
|
2531
|
+
"with": {}
|
|
2532
|
+
}
|
|
2533
|
+
},
|
|
2534
|
+
"foreignKeys": {
|
|
2535
|
+
"workflow_document_id_document_id_fk": {
|
|
2536
|
+
"name": "workflow_document_id_document_id_fk",
|
|
2537
|
+
"tableFrom": "workflow",
|
|
2538
|
+
"tableTo": "document",
|
|
2539
|
+
"schemaTo": "document_management",
|
|
2540
|
+
"columnsFrom": [
|
|
2541
|
+
"document_id"
|
|
2542
|
+
],
|
|
2543
|
+
"columnsTo": [
|
|
2544
|
+
"id"
|
|
2545
|
+
],
|
|
2546
|
+
"onDelete": "no action",
|
|
2547
|
+
"onUpdate": "no action"
|
|
2548
|
+
},
|
|
2549
|
+
"workflow_tenantId_documentId_fkey": {
|
|
2550
|
+
"name": "workflow_tenantId_documentId_fkey",
|
|
2551
|
+
"tableFrom": "workflow",
|
|
2552
|
+
"tableTo": "document",
|
|
2553
|
+
"schemaTo": "document_management",
|
|
2554
|
+
"columnsFrom": [
|
|
2555
|
+
"tenant_id",
|
|
2556
|
+
"document_id"
|
|
2557
|
+
],
|
|
2558
|
+
"columnsTo": [
|
|
2559
|
+
"tenant_id",
|
|
2560
|
+
"id"
|
|
2561
|
+
],
|
|
2562
|
+
"onDelete": "no action",
|
|
2563
|
+
"onUpdate": "no action"
|
|
2564
|
+
}
|
|
2565
|
+
},
|
|
2566
|
+
"compositePrimaryKeys": {},
|
|
2567
|
+
"uniqueConstraints": {
|
|
2568
|
+
"workflow_tenant_id_id_unique": {
|
|
2569
|
+
"name": "workflow_tenant_id_id_unique",
|
|
2570
|
+
"nullsNotDistinct": false,
|
|
2571
|
+
"columns": [
|
|
2572
|
+
"tenant_id",
|
|
2573
|
+
"id"
|
|
2574
|
+
]
|
|
2575
|
+
}
|
|
2576
|
+
},
|
|
2577
|
+
"policies": {},
|
|
2578
|
+
"checkConstraints": {},
|
|
2579
|
+
"isRLSEnabled": false
|
|
2580
|
+
}
|
|
2581
|
+
},
|
|
2582
|
+
"enums": {
|
|
2583
|
+
"document_management.document_approval": {
|
|
2584
|
+
"name": "document_approval",
|
|
2585
|
+
"schema": "document_management",
|
|
2586
|
+
"values": [
|
|
2587
|
+
"pending",
|
|
2588
|
+
"approved",
|
|
2589
|
+
"rejected"
|
|
2590
|
+
]
|
|
2591
|
+
},
|
|
2592
|
+
"document_management.assignment_target": {
|
|
2593
|
+
"name": "assignment_target",
|
|
2594
|
+
"schema": "document_management",
|
|
2595
|
+
"values": [
|
|
2596
|
+
"collection",
|
|
2597
|
+
"request"
|
|
2598
|
+
]
|
|
2599
|
+
},
|
|
2600
|
+
"document_management.property_data_type": {
|
|
2601
|
+
"name": "property_data_type",
|
|
2602
|
+
"schema": "document_management",
|
|
2603
|
+
"values": [
|
|
2604
|
+
"text",
|
|
2605
|
+
"integer",
|
|
2606
|
+
"decimal",
|
|
2607
|
+
"boolean",
|
|
2608
|
+
"date"
|
|
2609
|
+
]
|
|
2610
|
+
},
|
|
2611
|
+
"document_management.request_state": {
|
|
2612
|
+
"name": "request_state",
|
|
2613
|
+
"schema": "document_management",
|
|
2614
|
+
"values": [
|
|
2615
|
+
"open",
|
|
2616
|
+
"fulfilled",
|
|
2617
|
+
"closed"
|
|
2618
|
+
]
|
|
2619
|
+
},
|
|
2620
|
+
"document_management.validation_execution_state": {
|
|
2621
|
+
"name": "validation_execution_state",
|
|
2622
|
+
"schema": "document_management",
|
|
2623
|
+
"values": [
|
|
2624
|
+
"pending",
|
|
2625
|
+
"running",
|
|
2626
|
+
"completed",
|
|
2627
|
+
"error"
|
|
2628
|
+
]
|
|
2629
|
+
},
|
|
2630
|
+
"document_management.validation_result_status": {
|
|
2631
|
+
"name": "validation_result_status",
|
|
2632
|
+
"schema": "document_management",
|
|
2633
|
+
"values": [
|
|
2634
|
+
"passed",
|
|
2635
|
+
"failed",
|
|
2636
|
+
"warning"
|
|
2637
|
+
]
|
|
2638
|
+
},
|
|
2639
|
+
"document_management.workflow_fail_reason": {
|
|
2640
|
+
"name": "workflow_fail_reason",
|
|
2641
|
+
"schema": "document_management",
|
|
2642
|
+
"values": [
|
|
2643
|
+
"no-suitable-collection",
|
|
2644
|
+
"no-suitable-request"
|
|
2645
|
+
]
|
|
2646
|
+
},
|
|
2647
|
+
"document_management.workflow_state": {
|
|
2648
|
+
"name": "workflow_state",
|
|
2649
|
+
"schema": "document_management",
|
|
2650
|
+
"values": [
|
|
2651
|
+
"pending",
|
|
2652
|
+
"running",
|
|
2653
|
+
"review",
|
|
2654
|
+
"completed",
|
|
2655
|
+
"error",
|
|
2656
|
+
"failed"
|
|
2657
|
+
]
|
|
2658
|
+
},
|
|
2659
|
+
"document_management.workflow_step": {
|
|
2660
|
+
"name": "workflow_step",
|
|
2661
|
+
"schema": "document_management",
|
|
2662
|
+
"values": [
|
|
2663
|
+
"classification",
|
|
2664
|
+
"extraction",
|
|
2665
|
+
"assignment",
|
|
2666
|
+
"validation"
|
|
2667
|
+
]
|
|
2668
|
+
}
|
|
2669
|
+
},
|
|
2670
|
+
"schemas": {},
|
|
2671
|
+
"sequences": {},
|
|
2672
|
+
"roles": {},
|
|
2673
|
+
"policies": {},
|
|
2674
|
+
"views": {},
|
|
2675
|
+
"_meta": {
|
|
2676
|
+
"columns": {},
|
|
2677
|
+
"schemas": {},
|
|
2678
|
+
"tables": {}
|
|
2679
|
+
}
|
|
2680
|
+
}
|