lakutata 2.0.34 → 2.0.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/com/cacher.cjs +229 -0
- package/com/cacher.d.ts +514 -0
- package/com/cacher.mjs +203 -0
- package/com/database.cjs +11 -5
- package/com/database.mjs +11 -5
- package/com/docker.cjs +26 -18
- package/com/docker.mjs +22 -14
- package/com/entrypoint.cjs +4 -2
- package/com/entrypoint.mjs +4 -2
- package/com/logger.cjs +9 -3
- package/com/logger.mjs +9 -3
- package/decorator/ctrl.cjs +4 -2
- package/decorator/ctrl.mjs +4 -2
- package/decorator/di.cjs +3 -1
- package/decorator/di.mjs +3 -1
- package/decorator/dto.cjs +3 -1
- package/decorator/dto.mjs +3 -1
- package/decorator/orm.cjs +27 -21
- package/decorator/orm.mjs +11 -5
- package/helper.cjs +17 -15
- package/helper.mjs +4 -2
- package/lakutata.cjs +14 -8
- package/lakutata.mjs +10 -4
- package/orm.cjs +25 -19
- package/orm.mjs +22 -16
- package/package.json +6 -1
- package/provider/database.cjs +11 -5
- package/provider/database.mjs +11 -5
- package/provider/passwordHash.cjs +3 -1
- package/provider/passwordHash.mjs +3 -1
- package/src/components/Database.cjs +11 -5
- package/src/components/Database.mjs +11 -5
- package/src/components/Logger.cjs +9 -3
- package/src/components/Logger.mjs +9 -3
- package/src/components/cacher/Cacher.cjs +734 -0
- package/src/components/cacher/Cacher.mjs +720 -0
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +3094 -0
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +3066 -0
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +33 -0
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +35 -0
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +38 -0
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +40 -0
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +31 -0
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +33 -0
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +40 -0
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +42 -0
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +43 -0
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +45 -0
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +35 -0
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +37 -0
- package/src/components/cacher/options/CacherOptions.cjs +95 -0
- package/src/components/cacher/options/CacherOptions.mjs +89 -0
- package/src/components/cacher/options/FileCacheOptions.cjs +79 -0
- package/src/components/cacher/options/FileCacheOptions.mjs +73 -0
- package/src/components/cacher/options/MemcacheCacheOptions.cjs +81 -0
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +75 -0
- package/src/components/cacher/options/MongoCacheOptions.cjs +85 -0
- package/src/components/cacher/options/MongoCacheOptions.mjs +79 -0
- package/src/components/cacher/options/MysqlCacheOptions.cjs +85 -0
- package/src/components/cacher/options/MysqlCacheOptions.mjs +79 -0
- package/src/components/cacher/options/PostgresCacheOptions.cjs +89 -0
- package/src/components/cacher/options/PostgresCacheOptions.mjs +83 -0
- package/src/components/cacher/options/RedisCacheOptions.cjs +101 -0
- package/src/components/cacher/options/RedisCacheOptions.mjs +95 -0
- package/src/components/cacher/options/SqliteCacheOptions.cjs +79 -0
- package/src/components/cacher/options/SqliteCacheOptions.mjs +73 -0
- package/src/components/cacher/types/CacheStoreOptions.cjs +1 -0
- package/src/components/cacher/types/CacheStoreOptions.mjs +1 -0
- package/src/components/docker/ConnectionOptionsBuilder.cjs +22 -14
- package/src/components/docker/ConnectionOptionsBuilder.mjs +22 -14
- package/src/components/docker/Docker.cjs +22 -14
- package/src/components/docker/Docker.mjs +22 -14
- package/src/components/docker/lib/DockerContainer.cjs +34 -26
- package/src/components/docker/lib/DockerContainer.mjs +26 -18
- package/src/components/docker/lib/DockerContainerTTY.cjs +18 -10
- package/src/components/docker/lib/DockerContainerTTY.mjs +18 -10
- package/src/components/docker/lib/DockerImage.cjs +11 -9
- package/src/components/docker/lib/DockerImage.mjs +3 -1
- package/src/components/docker/options/DockerPruneOptions.cjs +3 -1
- package/src/components/docker/options/DockerPruneOptions.mjs +3 -1
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +3 -1
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +3 -1
- package/src/components/docker/options/container/ContainerCommitOptions.cjs +3 -1
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +3 -1
- package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +3 -1
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +3 -1
- package/src/components/docker/options/container/ContainerExecOptions.cjs +3 -1
- package/src/components/docker/options/container/ContainerExecOptions.mjs +5 -3
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +3 -1
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +3 -1
- package/src/components/docker/options/container/ContainerKillOptions.cjs +3 -1
- package/src/components/docker/options/container/ContainerKillOptions.mjs +3 -1
- package/src/components/docker/options/container/ContainerLogsOptions.cjs +3 -1
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +3 -1
- package/src/components/docker/options/container/ContainerRemoveOptions.cjs +3 -1
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +3 -1
- package/src/components/docker/options/container/ContainerSettingOptions.cjs +3 -1
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +3 -1
- package/src/components/docker/options/container/ContainerStopOptions.cjs +3 -1
- package/src/components/docker/options/container/ContainerStopOptions.mjs +3 -1
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +3 -1
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +3 -1
- package/src/components/docker/options/image/ImageBuildOptions.cjs +3 -1
- package/src/components/docker/options/image/ImageBuildOptions.mjs +5 -3
- package/src/components/docker/options/image/ImageExportOptions.cjs +3 -1
- package/src/components/docker/options/image/ImageExportOptions.mjs +3 -1
- package/src/components/docker/options/image/ImageImportOptions.cjs +3 -1
- package/src/components/docker/options/image/ImageImportOptions.mjs +3 -1
- package/src/components/docker/options/image/ImagePullOptions.cjs +3 -1
- package/src/components/docker/options/image/ImagePullOptions.mjs +3 -1
- package/src/components/docker/options/image/ImagePushOptions.cjs +3 -1
- package/src/components/docker/options/image/ImagePushOptions.mjs +3 -1
- package/src/components/docker/options/image/ImageRemoveOptions.cjs +3 -1
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +3 -1
- package/src/components/docker/options/image/ImageTagOptions.cjs +3 -1
- package/src/components/docker/options/image/ImageTagOptions.mjs +3 -1
- package/src/components/docker/options/network/NetworkCreateOptions.cjs +3 -1
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +3 -1
- package/src/components/entrypoint/Entrypoint.cjs +4 -2
- package/src/components/entrypoint/Entrypoint.mjs +49 -47
- package/src/components/entrypoint/lib/Controller.cjs +3 -1
- package/src/components/entrypoint/lib/Controller.mjs +3 -1
- package/src/decorators/ctrl/CLIAction.cjs +6 -4
- package/src/decorators/ctrl/CLIAction.mjs +4 -2
- package/src/decorators/ctrl/HTTPAction.cjs +4 -2
- package/src/decorators/ctrl/HTTPAction.mjs +9 -7
- package/src/decorators/ctrl/ServiceAction.cjs +8 -6
- package/src/decorators/ctrl/ServiceAction.mjs +4 -2
- package/src/decorators/ctrl/http/DELETE.cjs +4 -2
- package/src/decorators/ctrl/http/DELETE.mjs +4 -2
- package/src/decorators/ctrl/http/GET.cjs +4 -2
- package/src/decorators/ctrl/http/GET.mjs +4 -2
- package/src/decorators/ctrl/http/HEAD.cjs +4 -2
- package/src/decorators/ctrl/http/HEAD.mjs +4 -2
- package/src/decorators/ctrl/http/OPTIONS.cjs +4 -2
- package/src/decorators/ctrl/http/OPTIONS.mjs +4 -2
- package/src/decorators/ctrl/http/PATCH.cjs +4 -2
- package/src/decorators/ctrl/http/PATCH.mjs +4 -2
- package/src/decorators/ctrl/http/POST.cjs +4 -2
- package/src/decorators/ctrl/http/POST.mjs +4 -2
- package/src/decorators/ctrl/http/PUT.cjs +4 -2
- package/src/decorators/ctrl/http/PUT.mjs +4 -2
- package/src/decorators/di/Configurable.cjs +3 -1
- package/src/decorators/di/Configurable.mjs +3 -1
- package/src/decorators/di/Inject.cjs +11 -9
- package/src/decorators/di/Inject.mjs +10 -8
- package/src/decorators/dto/Accept.cjs +3 -1
- package/src/decorators/dto/Accept.mjs +3 -1
- package/src/decorators/dto/Expect.cjs +3 -1
- package/src/decorators/dto/Expect.mjs +3 -1
- package/src/decorators/dto/IndexSignature.cjs +3 -1
- package/src/decorators/dto/IndexSignature.mjs +3 -1
- package/src/decorators/dto/Return.cjs +3 -1
- package/src/decorators/dto/Return.mjs +3 -1
- package/src/decorators/orm/AfterInsert.cjs +11 -5
- package/src/decorators/orm/AfterInsert.mjs +17 -11
- package/src/decorators/orm/AfterLoad.cjs +15 -9
- package/src/decorators/orm/AfterLoad.mjs +20 -14
- package/src/decorators/orm/AfterRecover.cjs +15 -9
- package/src/decorators/orm/AfterRecover.mjs +16 -10
- package/src/decorators/orm/AfterRemove.cjs +15 -9
- package/src/decorators/orm/AfterRemove.mjs +16 -10
- package/src/decorators/orm/AfterSoftRemove.cjs +11 -5
- package/src/decorators/orm/AfterSoftRemove.mjs +16 -10
- package/src/decorators/orm/AfterUpdate.cjs +11 -5
- package/src/decorators/orm/AfterUpdate.mjs +18 -12
- package/src/decorators/orm/BeforeInsert.cjs +17 -11
- package/src/decorators/orm/BeforeInsert.mjs +15 -9
- package/src/decorators/orm/BeforeRecover.cjs +18 -12
- package/src/decorators/orm/BeforeRecover.mjs +13 -7
- package/src/decorators/orm/BeforeRemove.cjs +18 -12
- package/src/decorators/orm/BeforeRemove.mjs +13 -7
- package/src/decorators/orm/BeforeSoftRemove.cjs +17 -11
- package/src/decorators/orm/BeforeSoftRemove.mjs +13 -7
- package/src/decorators/orm/BeforeUpdate.cjs +15 -9
- package/src/decorators/orm/BeforeUpdate.mjs +16 -10
- package/src/decorators/orm/Check.cjs +11 -5
- package/src/decorators/orm/Check.mjs +11 -5
- package/src/decorators/orm/ChildEntity.cjs +16 -10
- package/src/decorators/orm/ChildEntity.mjs +13 -7
- package/src/decorators/orm/Column.cjs +28 -22
- package/src/decorators/orm/Column.mjs +11 -5
- package/src/decorators/orm/CreateDateColumn.cjs +13 -7
- package/src/decorators/orm/CreateDateColumn.mjs +11 -5
- package/src/decorators/orm/DeleteDateColumn.cjs +13 -7
- package/src/decorators/orm/DeleteDateColumn.mjs +11 -5
- package/src/decorators/orm/Entity.cjs +15 -9
- package/src/decorators/orm/Entity.mjs +17 -11
- package/src/decorators/orm/EventSubscriber.cjs +11 -5
- package/src/decorators/orm/EventSubscriber.mjs +11 -5
- package/src/decorators/orm/Exclusion.cjs +11 -5
- package/src/decorators/orm/Exclusion.mjs +17 -11
- package/src/decorators/orm/Generated.cjs +13 -7
- package/src/decorators/orm/Generated.mjs +17 -11
- package/src/decorators/orm/Index.cjs +19 -13
- package/src/decorators/orm/Index.mjs +29 -23
- package/src/decorators/orm/JoinColumn.cjs +15 -9
- package/src/decorators/orm/JoinColumn.mjs +11 -5
- package/src/decorators/orm/JoinTable.cjs +11 -5
- package/src/decorators/orm/JoinTable.mjs +15 -9
- package/src/decorators/orm/ManyToMany.cjs +18 -12
- package/src/decorators/orm/ManyToMany.mjs +22 -16
- package/src/decorators/orm/ManyToOne.cjs +21 -15
- package/src/decorators/orm/ManyToOne.mjs +22 -16
- package/src/decorators/orm/ObjectIdColumn.cjs +11 -5
- package/src/decorators/orm/ObjectIdColumn.mjs +17 -11
- package/src/decorators/orm/OneToMany.cjs +19 -13
- package/src/decorators/orm/OneToMany.mjs +11 -5
- package/src/decorators/orm/OneToOne.cjs +20 -14
- package/src/decorators/orm/OneToOne.mjs +18 -12
- package/src/decorators/orm/PrimaryColumn.cjs +15 -9
- package/src/decorators/orm/PrimaryColumn.mjs +30 -24
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +11 -5
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +13 -7
- package/src/decorators/orm/RelationId.cjs +16 -10
- package/src/decorators/orm/RelationId.mjs +17 -11
- package/src/decorators/orm/TableInheritance.cjs +13 -7
- package/src/decorators/orm/TableInheritance.mjs +15 -9
- package/src/decorators/orm/Tree.cjs +11 -5
- package/src/decorators/orm/Tree.mjs +11 -5
- package/src/decorators/orm/TreeChildren.cjs +11 -5
- package/src/decorators/orm/TreeChildren.mjs +22 -16
- package/src/decorators/orm/TreeLevelColumn.cjs +11 -5
- package/src/decorators/orm/TreeLevelColumn.mjs +11 -5
- package/src/decorators/orm/TreeParent.cjs +17 -11
- package/src/decorators/orm/TreeParent.mjs +11 -5
- package/src/decorators/orm/Unique.cjs +18 -12
- package/src/decorators/orm/Unique.mjs +11 -5
- package/src/decorators/orm/UpdateDateColumn.cjs +13 -7
- package/src/decorators/orm/UpdateDateColumn.mjs +17 -11
- package/src/decorators/orm/VersionColumn.cjs +11 -5
- package/src/decorators/orm/VersionColumn.mjs +11 -5
- package/src/decorators/orm/ViewColumn.cjs +11 -5
- package/src/decorators/orm/ViewColumn.mjs +11 -5
- package/src/decorators/orm/ViewEntity.cjs +13 -7
- package/src/decorators/orm/ViewEntity.mjs +11 -5
- package/src/decorators/orm/VirtualColumn.cjs +11 -5
- package/src/decorators/orm/VirtualColumn.mjs +15 -9
- package/src/lib/base/BaseObject.cjs +3 -1
- package/src/lib/base/BaseObject.mjs +3 -1
- package/src/lib/base/Context.cjs +3 -1
- package/src/lib/base/Context.mjs +3 -1
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +3 -1
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +3 -1
- package/src/lib/base/internal/ControllerEntrypoint.cjs +1 -1
- package/src/lib/base/internal/ControllerEntrypoint.mjs +1 -1
- package/src/lib/base/internal/DataValidator.cjs +16 -14
- package/src/lib/base/internal/DataValidator.mjs +3 -1
- package/src/lib/base/internal/FlexibleDTO.cjs +3 -1
- package/src/lib/base/internal/FlexibleDTO.mjs +3 -1
- package/src/lib/base/internal/MethodValidation.cjs +18 -16
- package/src/lib/base/internal/MethodValidation.mjs +3 -1
- package/src/lib/base/internal/ModuleConfigLoader.cjs +3 -1
- package/src/lib/base/internal/ModuleConfigLoader.mjs +24 -22
- package/src/lib/base/internal/ObjectConfiguration.cjs +3 -1
- package/src/lib/base/internal/ObjectConfiguration.mjs +3 -1
- package/src/lib/base/internal/ObjectSchemaValidation.cjs +3 -1
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +3 -1
- package/src/lib/base/internal/ObjectType.cjs +3 -1
- package/src/lib/base/internal/ObjectType.mjs +3 -1
- package/src/lib/context/CLIContext.cjs +3 -1
- package/src/lib/context/CLIContext.mjs +3 -1
- package/src/lib/context/HTTPContext.cjs +3 -1
- package/src/lib/context/HTTPContext.mjs +3 -1
- package/src/lib/context/ServiceContext.cjs +3 -1
- package/src/lib/context/ServiceContext.mjs +3 -1
- package/src/lib/core/Application.cjs +19 -13
- package/src/lib/core/Application.mjs +15 -9
- package/src/lib/core/Component.cjs +3 -1
- package/src/lib/core/Component.mjs +3 -1
- package/src/lib/core/Container.cjs +2 -0
- package/src/lib/core/Container.mjs +2 -0
- package/src/lib/core/DTO.cjs +3 -1
- package/src/lib/core/DTO.mjs +3 -1
- package/src/lib/core/Module.cjs +4 -2
- package/src/lib/core/Module.mjs +4 -2
- package/src/lib/core/Provider.cjs +3 -1
- package/src/lib/core/Provider.mjs +3 -1
- package/src/lib/helpers/IsSymbol.cjs +3 -1
- package/src/lib/helpers/IsSymbol.mjs +3 -1
- package/src/lib/helpers/NonceStr.cjs +1 -1
- package/src/lib/helpers/NonceStr.mjs +1 -1
- package/src/lib/helpers/ObjectHash.cjs +1 -1
- package/src/lib/helpers/ObjectHash.mjs +1 -1
- package/src/lib/helpers/RandomString.cjs +1 -1
- package/src/lib/helpers/RandomString.mjs +1 -1
- package/src/lib/ioc/DependencyInjectionContainer.cjs +3 -1
- package/src/lib/ioc/DependencyInjectionContainer.mjs +13 -11
- package/src/lib/ioc/Errors.cjs +3 -1
- package/src/lib/ioc/Errors.mjs +3 -1
- package/src/lib/ioc/ListModules.cjs +104 -102
- package/src/lib/ioc/ListModules.mjs +4 -2
- package/src/lib/ioc/LoadModules.cjs +2 -0
- package/src/lib/ioc/LoadModules.mjs +2 -0
- package/src/lib/ioc/Resolvers.cjs +9 -7
- package/src/lib/ioc/Resolvers.mjs +3 -1
- package/src/lib/ioc/Utils.cjs +3 -1
- package/src/lib/ioc/Utils.mjs +3 -1
- package/src/lib/validation/VLD.cjs +3 -1
- package/src/lib/validation/VLD.mjs +3 -1
- package/src/options/ApplicationOptions.cjs +3 -1
- package/src/options/ApplicationOptions.mjs +3 -1
- package/src/options/LoadAnonymousObjectOptions.cjs +3 -1
- package/src/options/LoadAnonymousObjectOptions.mjs +3 -1
- package/src/options/LoadNamedObjectOptions.cjs +3 -1
- package/src/options/LoadNamedObjectOptions.mjs +3 -1
- package/src/options/LoadObjectOptions.cjs +3 -1
- package/src/options/LoadObjectOptions.mjs +3 -1
- package/src/options/ModuleLoadObjectsOptions.cjs +3 -1
- package/src/options/ModuleLoadObjectsOptions.mjs +3 -1
- package/src/options/ModuleOptions.cjs +3 -1
- package/src/options/ModuleOptions.mjs +3 -1
- package/src/options/OverridableNamedObjectOptions.cjs +3 -1
- package/src/options/OverridableNamedObjectOptions.mjs +3 -1
- package/src/options/OverridableObjectOptions.cjs +3 -1
- package/src/options/OverridableObjectOptions.mjs +3 -1
- package/src/providers/Database.cjs +11 -5
- package/src/providers/Database.mjs +11 -5
- package/src/providers/PasswordHash.cjs +17 -15
- package/src/providers/PasswordHash.mjs +212 -210
- package/vendor/Package.10.cjs +0 -2
- package/vendor/Package.10.mjs +0 -2
- package/vendor/Package.11.cjs +1 -9
- package/vendor/Package.11.mjs +1 -9
- package/vendor/Package.12.cjs +5 -79
- package/vendor/Package.12.mjs +5 -73
- package/vendor/{Package.112.cjs → Package.122.cjs} +5501 -5501
- package/vendor/{Package.112.mjs → Package.122.mjs} +5507 -5507
- package/vendor/Package.13.cjs +7 -1
- package/vendor/Package.13.mjs +7 -1
- package/vendor/Package.132.cjs +87 -0
- package/vendor/Package.132.mjs +79 -0
- package/vendor/Package.14.cjs +1 -14055
- package/vendor/Package.14.mjs +1 -14029
- package/vendor/Package.15.cjs +1 -48245
- package/vendor/Package.15.mjs +1 -48209
- package/vendor/Package.16.cjs +14063 -0
- package/vendor/Package.16.mjs +14035 -0
- package/vendor/Package.17.cjs +3 -0
- package/vendor/Package.17.mjs +1 -0
- package/vendor/Package.18.cjs +48255 -0
- package/vendor/Package.18.mjs +48215 -0
- package/vendor/Package.19.cjs +3 -0
- package/vendor/Package.19.mjs +1 -0
- package/vendor/Package.610.cjs +175 -0
- package/vendor/Package.610.mjs +157 -0
- package/vendor/Package.611.cjs +196 -0
- package/vendor/Package.611.mjs +180 -0
- package/vendor/Package.62.cjs +1 -1
- package/vendor/Package.62.mjs +1 -1
- package/vendor/Package.65.cjs +716 -0
- package/vendor/Package.65.mjs +710 -0
- package/vendor/Package.66.cjs +680 -0
- package/vendor/Package.66.mjs +652 -0
- package/vendor/Package.67.cjs +143 -0
- package/vendor/Package.67.mjs +127 -0
- package/vendor/Package.68.cjs +341 -0
- package/vendor/Package.68.mjs +327 -0
- package/vendor/Package.69.cjs +157 -0
- package/vendor/Package.69.mjs +139 -0
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, Symbol.toStringTag, {
|
|
4
|
+
value: "Module"
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
const e = require("../../../../vendor/Package.1.cjs");
|
|
8
|
+
|
|
9
|
+
const t = require("../../../../vendor/Package.2.cjs");
|
|
10
|
+
|
|
11
|
+
const r = require("../../../decorators/dto/Expect.cjs");
|
|
12
|
+
|
|
13
|
+
require("../../../lib/base/internal/DataValidator.cjs");
|
|
14
|
+
|
|
15
|
+
require("../../../../vendor/Package.4.cjs");
|
|
16
|
+
|
|
17
|
+
require("../../../../vendor/Package.5.cjs");
|
|
18
|
+
|
|
19
|
+
require("node:util/types");
|
|
20
|
+
|
|
21
|
+
require("../../../lib/validation/VLD.cjs");
|
|
22
|
+
|
|
23
|
+
require("../../../../vendor/Package.11.cjs");
|
|
24
|
+
|
|
25
|
+
require("url");
|
|
26
|
+
|
|
27
|
+
require("../../../../vendor/Package.10.cjs");
|
|
28
|
+
|
|
29
|
+
require("util");
|
|
30
|
+
|
|
31
|
+
require("../../../exceptions/dto/InvalidValueException.cjs");
|
|
32
|
+
|
|
33
|
+
require("../../../lib/base/abstracts/Exception.cjs");
|
|
34
|
+
|
|
35
|
+
require("../../../lib/base/internal/BasicInfo.cjs");
|
|
36
|
+
|
|
37
|
+
require("../../../lib/helpers/As.cjs");
|
|
38
|
+
|
|
39
|
+
require("../../../../vendor/Package.6.cjs");
|
|
40
|
+
|
|
41
|
+
require("../../../../vendor/Package.7.cjs");
|
|
42
|
+
|
|
43
|
+
require("../../../lib/base/internal/ThrowWarning.cjs");
|
|
44
|
+
|
|
45
|
+
require("../../../lib/helpers/Templating.cjs");
|
|
46
|
+
|
|
47
|
+
require("../../../lib/base/internal/CamelCase.cjs");
|
|
48
|
+
|
|
49
|
+
require("../../../lib/helpers/NoCase.cjs");
|
|
50
|
+
|
|
51
|
+
require("../../../../vendor/Package.9.cjs");
|
|
52
|
+
|
|
53
|
+
require("../../../lib/helpers/IsHtml.cjs");
|
|
54
|
+
|
|
55
|
+
require("../../../lib/helpers/IsXML.cjs");
|
|
56
|
+
|
|
57
|
+
require("../../../constants/DTOMetadataKey.cjs");
|
|
58
|
+
|
|
59
|
+
require("../../../lib/helpers/ObjectConstructor.cjs");
|
|
60
|
+
|
|
61
|
+
require("../../../lib/helpers/ObjectParentConstructors.cjs");
|
|
62
|
+
|
|
63
|
+
require("../../../lib/helpers/ObjectParentConstructor.cjs");
|
|
64
|
+
|
|
65
|
+
require("../../../lib/helpers/ObjectPrototype.cjs");
|
|
66
|
+
|
|
67
|
+
class PostgresCacheOptions extends t.DTO {}
|
|
68
|
+
|
|
69
|
+
e.__decorate([ r.Expect(t.DTO.String().allow("postgres").only().required()), e.__metadata("design:type", String) ], PostgresCacheOptions.prototype, "type", void 0);
|
|
70
|
+
|
|
71
|
+
e.__decorate([ r.Expect(t.DTO.String().required()), e.__metadata("design:type", String) ], PostgresCacheOptions.prototype, "host", void 0);
|
|
72
|
+
|
|
73
|
+
e.__decorate([ r.Expect(t.DTO.String().required()), e.__metadata("design:type", String) ], PostgresCacheOptions.prototype, "database", void 0);
|
|
74
|
+
|
|
75
|
+
e.__decorate([ r.Expect(t.DTO.String().required()), e.__metadata("design:type", String) ], PostgresCacheOptions.prototype, "table", void 0);
|
|
76
|
+
|
|
77
|
+
e.__decorate([ r.Expect(t.DTO.Number().positive().port().optional().default(5432)), e.__metadata("design:type", Number) ], PostgresCacheOptions.prototype, "port", void 0);
|
|
78
|
+
|
|
79
|
+
e.__decorate([ r.Expect(t.DTO.String().optional().default("public")), e.__metadata("design:type", String) ], PostgresCacheOptions.prototype, "schema", void 0);
|
|
80
|
+
|
|
81
|
+
e.__decorate([ r.Expect(t.DTO.String().required()), e.__metadata("design:type", String) ], PostgresCacheOptions.prototype, "username", void 0);
|
|
82
|
+
|
|
83
|
+
e.__decorate([ r.Expect(t.DTO.String().required()), e.__metadata("design:type", String) ], PostgresCacheOptions.prototype, "password", void 0);
|
|
84
|
+
|
|
85
|
+
e.__decorate([ r.Expect(t.DTO.Number().positive().integer().optional()), e.__metadata("design:type", Number) ], PostgresCacheOptions.prototype, "maxPoolSize", void 0);
|
|
86
|
+
|
|
87
|
+
e.__decorate([ r.Expect(t.DTO.String().optional()), e.__metadata("design:type", String) ], PostgresCacheOptions.prototype, "namespace", void 0);
|
|
88
|
+
|
|
89
|
+
exports.PostgresCacheOptions = PostgresCacheOptions;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { _ as t, a as e } from "../../../../vendor/Package.1.mjs";
|
|
2
|
+
|
|
3
|
+
import { D as o } from "../../../../vendor/Package.2.mjs";
|
|
4
|
+
|
|
5
|
+
import { Expect as r } from "../../../decorators/dto/Expect.mjs";
|
|
6
|
+
|
|
7
|
+
import "../../../lib/base/internal/DataValidator.mjs";
|
|
8
|
+
|
|
9
|
+
import "../../../../vendor/Package.4.mjs";
|
|
10
|
+
|
|
11
|
+
import "../../../../vendor/Package.5.mjs";
|
|
12
|
+
|
|
13
|
+
import "node:util/types";
|
|
14
|
+
|
|
15
|
+
import "../../../lib/validation/VLD.mjs";
|
|
16
|
+
|
|
17
|
+
import "../../../../vendor/Package.11.mjs";
|
|
18
|
+
|
|
19
|
+
import "url";
|
|
20
|
+
|
|
21
|
+
import "../../../../vendor/Package.10.mjs";
|
|
22
|
+
|
|
23
|
+
import "util";
|
|
24
|
+
|
|
25
|
+
import "../../../exceptions/dto/InvalidValueException.mjs";
|
|
26
|
+
|
|
27
|
+
import "../../../lib/base/abstracts/Exception.mjs";
|
|
28
|
+
|
|
29
|
+
import "../../../lib/base/internal/BasicInfo.mjs";
|
|
30
|
+
|
|
31
|
+
import "../../../lib/helpers/As.mjs";
|
|
32
|
+
|
|
33
|
+
import "../../../../vendor/Package.6.mjs";
|
|
34
|
+
|
|
35
|
+
import "../../../../vendor/Package.7.mjs";
|
|
36
|
+
|
|
37
|
+
import "../../../lib/base/internal/ThrowWarning.mjs";
|
|
38
|
+
|
|
39
|
+
import "../../../lib/helpers/Templating.mjs";
|
|
40
|
+
|
|
41
|
+
import "../../../lib/base/internal/CamelCase.mjs";
|
|
42
|
+
|
|
43
|
+
import "../../../lib/helpers/NoCase.mjs";
|
|
44
|
+
|
|
45
|
+
import "../../../../vendor/Package.9.mjs";
|
|
46
|
+
|
|
47
|
+
import "../../../lib/helpers/IsHtml.mjs";
|
|
48
|
+
|
|
49
|
+
import "../../../lib/helpers/IsXML.mjs";
|
|
50
|
+
|
|
51
|
+
import "../../../constants/DTOMetadataKey.mjs";
|
|
52
|
+
|
|
53
|
+
import "../../../lib/helpers/ObjectConstructor.mjs";
|
|
54
|
+
|
|
55
|
+
import "../../../lib/helpers/ObjectParentConstructors.mjs";
|
|
56
|
+
|
|
57
|
+
import "../../../lib/helpers/ObjectParentConstructor.mjs";
|
|
58
|
+
|
|
59
|
+
import "../../../lib/helpers/ObjectPrototype.mjs";
|
|
60
|
+
|
|
61
|
+
class PostgresCacheOptions extends o {}
|
|
62
|
+
|
|
63
|
+
t([ r(o.String().allow("postgres").only().required()), e("design:type", String) ], PostgresCacheOptions.prototype, "type", void 0);
|
|
64
|
+
|
|
65
|
+
t([ r(o.String().required()), e("design:type", String) ], PostgresCacheOptions.prototype, "host", void 0);
|
|
66
|
+
|
|
67
|
+
t([ r(o.String().required()), e("design:type", String) ], PostgresCacheOptions.prototype, "database", void 0);
|
|
68
|
+
|
|
69
|
+
t([ r(o.String().required()), e("design:type", String) ], PostgresCacheOptions.prototype, "table", void 0);
|
|
70
|
+
|
|
71
|
+
t([ r(o.Number().positive().port().optional().default(5432)), e("design:type", Number) ], PostgresCacheOptions.prototype, "port", void 0);
|
|
72
|
+
|
|
73
|
+
t([ r(o.String().optional().default("public")), e("design:type", String) ], PostgresCacheOptions.prototype, "schema", void 0);
|
|
74
|
+
|
|
75
|
+
t([ r(o.String().required()), e("design:type", String) ], PostgresCacheOptions.prototype, "username", void 0);
|
|
76
|
+
|
|
77
|
+
t([ r(o.String().required()), e("design:type", String) ], PostgresCacheOptions.prototype, "password", void 0);
|
|
78
|
+
|
|
79
|
+
t([ r(o.Number().positive().integer().optional()), e("design:type", Number) ], PostgresCacheOptions.prototype, "maxPoolSize", void 0);
|
|
80
|
+
|
|
81
|
+
t([ r(o.String().optional()), e("design:type", String) ], PostgresCacheOptions.prototype, "namespace", void 0);
|
|
82
|
+
|
|
83
|
+
export { PostgresCacheOptions };
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, Symbol.toStringTag, {
|
|
4
|
+
value: "Module"
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
const e = require("../../../../vendor/Package.1.cjs");
|
|
8
|
+
|
|
9
|
+
const t = require("../../../../vendor/Package.2.cjs");
|
|
10
|
+
|
|
11
|
+
const o = require("../../../decorators/dto/Expect.cjs");
|
|
12
|
+
|
|
13
|
+
require("../../../lib/base/internal/DataValidator.cjs");
|
|
14
|
+
|
|
15
|
+
require("../../../../vendor/Package.4.cjs");
|
|
16
|
+
|
|
17
|
+
require("../../../../vendor/Package.5.cjs");
|
|
18
|
+
|
|
19
|
+
require("node:util/types");
|
|
20
|
+
|
|
21
|
+
require("../../../lib/validation/VLD.cjs");
|
|
22
|
+
|
|
23
|
+
require("../../../../vendor/Package.11.cjs");
|
|
24
|
+
|
|
25
|
+
require("url");
|
|
26
|
+
|
|
27
|
+
require("../../../../vendor/Package.10.cjs");
|
|
28
|
+
|
|
29
|
+
require("util");
|
|
30
|
+
|
|
31
|
+
require("../../../exceptions/dto/InvalidValueException.cjs");
|
|
32
|
+
|
|
33
|
+
require("../../../lib/base/abstracts/Exception.cjs");
|
|
34
|
+
|
|
35
|
+
require("../../../lib/base/internal/BasicInfo.cjs");
|
|
36
|
+
|
|
37
|
+
require("../../../lib/helpers/As.cjs");
|
|
38
|
+
|
|
39
|
+
require("../../../../vendor/Package.6.cjs");
|
|
40
|
+
|
|
41
|
+
require("../../../../vendor/Package.7.cjs");
|
|
42
|
+
|
|
43
|
+
require("../../../lib/base/internal/ThrowWarning.cjs");
|
|
44
|
+
|
|
45
|
+
require("../../../lib/helpers/Templating.cjs");
|
|
46
|
+
|
|
47
|
+
require("../../../lib/base/internal/CamelCase.cjs");
|
|
48
|
+
|
|
49
|
+
require("../../../lib/helpers/NoCase.cjs");
|
|
50
|
+
|
|
51
|
+
require("../../../../vendor/Package.9.cjs");
|
|
52
|
+
|
|
53
|
+
require("../../../lib/helpers/IsHtml.cjs");
|
|
54
|
+
|
|
55
|
+
require("../../../lib/helpers/IsXML.cjs");
|
|
56
|
+
|
|
57
|
+
require("../../../constants/DTOMetadataKey.cjs");
|
|
58
|
+
|
|
59
|
+
require("../../../lib/helpers/ObjectConstructor.cjs");
|
|
60
|
+
|
|
61
|
+
require("../../../lib/helpers/ObjectParentConstructors.cjs");
|
|
62
|
+
|
|
63
|
+
require("../../../lib/helpers/ObjectParentConstructor.cjs");
|
|
64
|
+
|
|
65
|
+
require("../../../lib/helpers/ObjectPrototype.cjs");
|
|
66
|
+
|
|
67
|
+
class RedisCacheOptions extends t.DTO {}
|
|
68
|
+
|
|
69
|
+
e.__decorate([ o.Expect(t.DTO.String().allow("redis").only().required()), e.__metadata("design:type", String) ], RedisCacheOptions.prototype, "type", void 0);
|
|
70
|
+
|
|
71
|
+
e.__decorate([ o.Expect(t.DTO.String().required()), e.__metadata("design:type", String) ], RedisCacheOptions.prototype, "host", void 0);
|
|
72
|
+
|
|
73
|
+
e.__decorate([ o.Expect(t.DTO.Number().positive().port().optional().default(6379)), e.__metadata("design:type", Number) ], RedisCacheOptions.prototype, "port", void 0);
|
|
74
|
+
|
|
75
|
+
e.__decorate([ o.Expect(t.DTO.Number().positive().allow(0).default(0).optional()), e.__metadata("design:type", Number) ], RedisCacheOptions.prototype, "database", void 0);
|
|
76
|
+
|
|
77
|
+
e.__decorate([ o.Expect(t.DTO.Boolean().optional().default(false)), e.__metadata("design:type", Boolean) ], RedisCacheOptions.prototype, "tls", void 0);
|
|
78
|
+
|
|
79
|
+
e.__decorate([ o.Expect(t.DTO.Number().positive().allow(0).optional()), e.__metadata("design:type", Number) ], RedisCacheOptions.prototype, "keepAlive", void 0);
|
|
80
|
+
|
|
81
|
+
e.__decorate([ o.Expect(t.DTO.String().optional()), e.__metadata("design:type", String) ], RedisCacheOptions.prototype, "username", void 0);
|
|
82
|
+
|
|
83
|
+
e.__decorate([ o.Expect(t.DTO.String().optional()), e.__metadata("design:type", String) ], RedisCacheOptions.prototype, "password", void 0);
|
|
84
|
+
|
|
85
|
+
e.__decorate([ o.Expect(t.DTO.Boolean().optional().default(true)), e.__metadata("design:type", Boolean) ], RedisCacheOptions.prototype, "reconnect", void 0);
|
|
86
|
+
|
|
87
|
+
e.__decorate([ o.Expect(t.DTO.String().optional()), e.__metadata("design:type", String) ], RedisCacheOptions.prototype, "namespace", void 0);
|
|
88
|
+
|
|
89
|
+
e.__decorate([ o.Expect(t.DTO.String().optional()), e.__metadata("design:type", String) ], RedisCacheOptions.prototype, "keyPrefixSeparator", void 0);
|
|
90
|
+
|
|
91
|
+
e.__decorate([ o.Expect(t.DTO.Number().positive().allow(0).optional()), e.__metadata("design:type", Number) ], RedisCacheOptions.prototype, "clearBatchSize", void 0);
|
|
92
|
+
|
|
93
|
+
e.__decorate([ o.Expect(t.DTO.Boolean().optional()), e.__metadata("design:type", Boolean) ], RedisCacheOptions.prototype, "useUnlink", void 0);
|
|
94
|
+
|
|
95
|
+
e.__decorate([ o.Expect(t.DTO.Boolean().optional()), e.__metadata("design:type", Boolean) ], RedisCacheOptions.prototype, "noNamespaceAffectsAll", void 0);
|
|
96
|
+
|
|
97
|
+
e.__decorate([ o.Expect(t.DTO.Number().positive().optional()), e.__metadata("design:type", Number) ], RedisCacheOptions.prototype, "connectTimeout", void 0);
|
|
98
|
+
|
|
99
|
+
e.__decorate([ o.Expect(t.DTO.Boolean().optional().default(true)), e.__metadata("design:type", Boolean) ], RedisCacheOptions.prototype, "throwOnConnectError", void 0);
|
|
100
|
+
|
|
101
|
+
exports.RedisCacheOptions = RedisCacheOptions;
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { _ as e, a as o } from "../../../../vendor/Package.1.mjs";
|
|
2
|
+
|
|
3
|
+
import { D as t } from "../../../../vendor/Package.2.mjs";
|
|
4
|
+
|
|
5
|
+
import { Expect as i } from "../../../decorators/dto/Expect.mjs";
|
|
6
|
+
|
|
7
|
+
import "../../../lib/base/internal/DataValidator.mjs";
|
|
8
|
+
|
|
9
|
+
import "../../../../vendor/Package.4.mjs";
|
|
10
|
+
|
|
11
|
+
import "../../../../vendor/Package.5.mjs";
|
|
12
|
+
|
|
13
|
+
import "node:util/types";
|
|
14
|
+
|
|
15
|
+
import "../../../lib/validation/VLD.mjs";
|
|
16
|
+
|
|
17
|
+
import "../../../../vendor/Package.11.mjs";
|
|
18
|
+
|
|
19
|
+
import "url";
|
|
20
|
+
|
|
21
|
+
import "../../../../vendor/Package.10.mjs";
|
|
22
|
+
|
|
23
|
+
import "util";
|
|
24
|
+
|
|
25
|
+
import "../../../exceptions/dto/InvalidValueException.mjs";
|
|
26
|
+
|
|
27
|
+
import "../../../lib/base/abstracts/Exception.mjs";
|
|
28
|
+
|
|
29
|
+
import "../../../lib/base/internal/BasicInfo.mjs";
|
|
30
|
+
|
|
31
|
+
import "../../../lib/helpers/As.mjs";
|
|
32
|
+
|
|
33
|
+
import "../../../../vendor/Package.6.mjs";
|
|
34
|
+
|
|
35
|
+
import "../../../../vendor/Package.7.mjs";
|
|
36
|
+
|
|
37
|
+
import "../../../lib/base/internal/ThrowWarning.mjs";
|
|
38
|
+
|
|
39
|
+
import "../../../lib/helpers/Templating.mjs";
|
|
40
|
+
|
|
41
|
+
import "../../../lib/base/internal/CamelCase.mjs";
|
|
42
|
+
|
|
43
|
+
import "../../../lib/helpers/NoCase.mjs";
|
|
44
|
+
|
|
45
|
+
import "../../../../vendor/Package.9.mjs";
|
|
46
|
+
|
|
47
|
+
import "../../../lib/helpers/IsHtml.mjs";
|
|
48
|
+
|
|
49
|
+
import "../../../lib/helpers/IsXML.mjs";
|
|
50
|
+
|
|
51
|
+
import "../../../constants/DTOMetadataKey.mjs";
|
|
52
|
+
|
|
53
|
+
import "../../../lib/helpers/ObjectConstructor.mjs";
|
|
54
|
+
|
|
55
|
+
import "../../../lib/helpers/ObjectParentConstructors.mjs";
|
|
56
|
+
|
|
57
|
+
import "../../../lib/helpers/ObjectParentConstructor.mjs";
|
|
58
|
+
|
|
59
|
+
import "../../../lib/helpers/ObjectPrototype.mjs";
|
|
60
|
+
|
|
61
|
+
class RedisCacheOptions extends t {}
|
|
62
|
+
|
|
63
|
+
e([ i(t.String().allow("redis").only().required()), o("design:type", String) ], RedisCacheOptions.prototype, "type", void 0);
|
|
64
|
+
|
|
65
|
+
e([ i(t.String().required()), o("design:type", String) ], RedisCacheOptions.prototype, "host", void 0);
|
|
66
|
+
|
|
67
|
+
e([ i(t.Number().positive().port().optional().default(6379)), o("design:type", Number) ], RedisCacheOptions.prototype, "port", void 0);
|
|
68
|
+
|
|
69
|
+
e([ i(t.Number().positive().allow(0).default(0).optional()), o("design:type", Number) ], RedisCacheOptions.prototype, "database", void 0);
|
|
70
|
+
|
|
71
|
+
e([ i(t.Boolean().optional().default(false)), o("design:type", Boolean) ], RedisCacheOptions.prototype, "tls", void 0);
|
|
72
|
+
|
|
73
|
+
e([ i(t.Number().positive().allow(0).optional()), o("design:type", Number) ], RedisCacheOptions.prototype, "keepAlive", void 0);
|
|
74
|
+
|
|
75
|
+
e([ i(t.String().optional()), o("design:type", String) ], RedisCacheOptions.prototype, "username", void 0);
|
|
76
|
+
|
|
77
|
+
e([ i(t.String().optional()), o("design:type", String) ], RedisCacheOptions.prototype, "password", void 0);
|
|
78
|
+
|
|
79
|
+
e([ i(t.Boolean().optional().default(true)), o("design:type", Boolean) ], RedisCacheOptions.prototype, "reconnect", void 0);
|
|
80
|
+
|
|
81
|
+
e([ i(t.String().optional()), o("design:type", String) ], RedisCacheOptions.prototype, "namespace", void 0);
|
|
82
|
+
|
|
83
|
+
e([ i(t.String().optional()), o("design:type", String) ], RedisCacheOptions.prototype, "keyPrefixSeparator", void 0);
|
|
84
|
+
|
|
85
|
+
e([ i(t.Number().positive().allow(0).optional()), o("design:type", Number) ], RedisCacheOptions.prototype, "clearBatchSize", void 0);
|
|
86
|
+
|
|
87
|
+
e([ i(t.Boolean().optional()), o("design:type", Boolean) ], RedisCacheOptions.prototype, "useUnlink", void 0);
|
|
88
|
+
|
|
89
|
+
e([ i(t.Boolean().optional()), o("design:type", Boolean) ], RedisCacheOptions.prototype, "noNamespaceAffectsAll", void 0);
|
|
90
|
+
|
|
91
|
+
e([ i(t.Number().positive().optional()), o("design:type", Number) ], RedisCacheOptions.prototype, "connectTimeout", void 0);
|
|
92
|
+
|
|
93
|
+
e([ i(t.Boolean().optional().default(true)), o("design:type", Boolean) ], RedisCacheOptions.prototype, "throwOnConnectError", void 0);
|
|
94
|
+
|
|
95
|
+
export { RedisCacheOptions };
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, Symbol.toStringTag, {
|
|
4
|
+
value: "Module"
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
const e = require("../../../../vendor/Package.1.cjs");
|
|
8
|
+
|
|
9
|
+
const r = require("../../../../vendor/Package.2.cjs");
|
|
10
|
+
|
|
11
|
+
const t = require("../../../decorators/dto/Expect.cjs");
|
|
12
|
+
|
|
13
|
+
require("../../../lib/base/internal/DataValidator.cjs");
|
|
14
|
+
|
|
15
|
+
require("../../../../vendor/Package.4.cjs");
|
|
16
|
+
|
|
17
|
+
require("../../../../vendor/Package.5.cjs");
|
|
18
|
+
|
|
19
|
+
require("node:util/types");
|
|
20
|
+
|
|
21
|
+
require("../../../lib/validation/VLD.cjs");
|
|
22
|
+
|
|
23
|
+
require("../../../../vendor/Package.11.cjs");
|
|
24
|
+
|
|
25
|
+
require("url");
|
|
26
|
+
|
|
27
|
+
require("../../../../vendor/Package.10.cjs");
|
|
28
|
+
|
|
29
|
+
require("util");
|
|
30
|
+
|
|
31
|
+
require("../../../exceptions/dto/InvalidValueException.cjs");
|
|
32
|
+
|
|
33
|
+
require("../../../lib/base/abstracts/Exception.cjs");
|
|
34
|
+
|
|
35
|
+
require("../../../lib/base/internal/BasicInfo.cjs");
|
|
36
|
+
|
|
37
|
+
require("../../../lib/helpers/As.cjs");
|
|
38
|
+
|
|
39
|
+
require("../../../../vendor/Package.6.cjs");
|
|
40
|
+
|
|
41
|
+
require("../../../../vendor/Package.7.cjs");
|
|
42
|
+
|
|
43
|
+
require("../../../lib/base/internal/ThrowWarning.cjs");
|
|
44
|
+
|
|
45
|
+
require("../../../lib/helpers/Templating.cjs");
|
|
46
|
+
|
|
47
|
+
require("../../../lib/base/internal/CamelCase.cjs");
|
|
48
|
+
|
|
49
|
+
require("../../../lib/helpers/NoCase.cjs");
|
|
50
|
+
|
|
51
|
+
require("../../../../vendor/Package.9.cjs");
|
|
52
|
+
|
|
53
|
+
require("../../../lib/helpers/IsHtml.cjs");
|
|
54
|
+
|
|
55
|
+
require("../../../lib/helpers/IsXML.cjs");
|
|
56
|
+
|
|
57
|
+
require("../../../constants/DTOMetadataKey.cjs");
|
|
58
|
+
|
|
59
|
+
require("../../../lib/helpers/ObjectConstructor.cjs");
|
|
60
|
+
|
|
61
|
+
require("../../../lib/helpers/ObjectParentConstructors.cjs");
|
|
62
|
+
|
|
63
|
+
require("../../../lib/helpers/ObjectParentConstructor.cjs");
|
|
64
|
+
|
|
65
|
+
require("../../../lib/helpers/ObjectPrototype.cjs");
|
|
66
|
+
|
|
67
|
+
class SqliteCacheOptions extends r.DTO {}
|
|
68
|
+
|
|
69
|
+
e.__decorate([ t.Expect(r.DTO.String().allow("sqlite").only().required()), e.__metadata("design:type", String) ], SqliteCacheOptions.prototype, "type", void 0);
|
|
70
|
+
|
|
71
|
+
e.__decorate([ t.Expect(r.DTO.String().required()), e.__metadata("design:type", String) ], SqliteCacheOptions.prototype, "database", void 0);
|
|
72
|
+
|
|
73
|
+
e.__decorate([ t.Expect(r.DTO.String().required()), e.__metadata("design:type", String) ], SqliteCacheOptions.prototype, "table", void 0);
|
|
74
|
+
|
|
75
|
+
e.__decorate([ t.Expect(r.DTO.Number().positive().integer().optional().default(1e4)), e.__metadata("design:type", Number) ], SqliteCacheOptions.prototype, "busyTimeout", void 0);
|
|
76
|
+
|
|
77
|
+
e.__decorate([ t.Expect(r.DTO.String().optional()), e.__metadata("design:type", String) ], SqliteCacheOptions.prototype, "namespace", void 0);
|
|
78
|
+
|
|
79
|
+
exports.SqliteCacheOptions = SqliteCacheOptions;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { _ as e, a as t } from "../../../../vendor/Package.1.mjs";
|
|
2
|
+
|
|
3
|
+
import { D as i } from "../../../../vendor/Package.2.mjs";
|
|
4
|
+
|
|
5
|
+
import { Expect as o } from "../../../decorators/dto/Expect.mjs";
|
|
6
|
+
|
|
7
|
+
import "../../../lib/base/internal/DataValidator.mjs";
|
|
8
|
+
|
|
9
|
+
import "../../../../vendor/Package.4.mjs";
|
|
10
|
+
|
|
11
|
+
import "../../../../vendor/Package.5.mjs";
|
|
12
|
+
|
|
13
|
+
import "node:util/types";
|
|
14
|
+
|
|
15
|
+
import "../../../lib/validation/VLD.mjs";
|
|
16
|
+
|
|
17
|
+
import "../../../../vendor/Package.11.mjs";
|
|
18
|
+
|
|
19
|
+
import "url";
|
|
20
|
+
|
|
21
|
+
import "../../../../vendor/Package.10.mjs";
|
|
22
|
+
|
|
23
|
+
import "util";
|
|
24
|
+
|
|
25
|
+
import "../../../exceptions/dto/InvalidValueException.mjs";
|
|
26
|
+
|
|
27
|
+
import "../../../lib/base/abstracts/Exception.mjs";
|
|
28
|
+
|
|
29
|
+
import "../../../lib/base/internal/BasicInfo.mjs";
|
|
30
|
+
|
|
31
|
+
import "../../../lib/helpers/As.mjs";
|
|
32
|
+
|
|
33
|
+
import "../../../../vendor/Package.6.mjs";
|
|
34
|
+
|
|
35
|
+
import "../../../../vendor/Package.7.mjs";
|
|
36
|
+
|
|
37
|
+
import "../../../lib/base/internal/ThrowWarning.mjs";
|
|
38
|
+
|
|
39
|
+
import "../../../lib/helpers/Templating.mjs";
|
|
40
|
+
|
|
41
|
+
import "../../../lib/base/internal/CamelCase.mjs";
|
|
42
|
+
|
|
43
|
+
import "../../../lib/helpers/NoCase.mjs";
|
|
44
|
+
|
|
45
|
+
import "../../../../vendor/Package.9.mjs";
|
|
46
|
+
|
|
47
|
+
import "../../../lib/helpers/IsHtml.mjs";
|
|
48
|
+
|
|
49
|
+
import "../../../lib/helpers/IsXML.mjs";
|
|
50
|
+
|
|
51
|
+
import "../../../constants/DTOMetadataKey.mjs";
|
|
52
|
+
|
|
53
|
+
import "../../../lib/helpers/ObjectConstructor.mjs";
|
|
54
|
+
|
|
55
|
+
import "../../../lib/helpers/ObjectParentConstructors.mjs";
|
|
56
|
+
|
|
57
|
+
import "../../../lib/helpers/ObjectParentConstructor.mjs";
|
|
58
|
+
|
|
59
|
+
import "../../../lib/helpers/ObjectPrototype.mjs";
|
|
60
|
+
|
|
61
|
+
class SqliteCacheOptions extends i {}
|
|
62
|
+
|
|
63
|
+
e([ o(i.String().allow("sqlite").only().required()), t("design:type", String) ], SqliteCacheOptions.prototype, "type", void 0);
|
|
64
|
+
|
|
65
|
+
e([ o(i.String().required()), t("design:type", String) ], SqliteCacheOptions.prototype, "database", void 0);
|
|
66
|
+
|
|
67
|
+
e([ o(i.String().required()), t("design:type", String) ], SqliteCacheOptions.prototype, "table", void 0);
|
|
68
|
+
|
|
69
|
+
e([ o(i.Number().positive().integer().optional().default(1e4)), t("design:type", Number) ], SqliteCacheOptions.prototype, "busyTimeout", void 0);
|
|
70
|
+
|
|
71
|
+
e([ o(i.String().optional()), t("design:type", String) ], SqliteCacheOptions.prototype, "namespace", void 0);
|
|
72
|
+
|
|
73
|
+
export { SqliteCacheOptions };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -74,10 +74,12 @@ require("node:util/types");
|
|
|
74
74
|
|
|
75
75
|
require("../../lib/validation/VLD.cjs");
|
|
76
76
|
|
|
77
|
-
require("../../../vendor/Package.
|
|
77
|
+
require("../../../vendor/Package.11.cjs");
|
|
78
78
|
|
|
79
79
|
require("url");
|
|
80
80
|
|
|
81
|
+
require("../../../vendor/Package.10.cjs");
|
|
82
|
+
|
|
81
83
|
require("../../exceptions/dto/InvalidValueException.cjs");
|
|
82
84
|
|
|
83
85
|
require("../../../vendor/Package.9.cjs");
|
|
@@ -204,7 +206,7 @@ require("../../lib/helpers/UniqueArray.cjs");
|
|
|
204
206
|
|
|
205
207
|
require("./options/container/ContainerCommitOptions.cjs");
|
|
206
208
|
|
|
207
|
-
require("../../../vendor/Package.
|
|
209
|
+
require("../../../vendor/Package.18.cjs");
|
|
208
210
|
|
|
209
211
|
require("querystring");
|
|
210
212
|
|
|
@@ -216,26 +218,18 @@ require("net");
|
|
|
216
218
|
|
|
217
219
|
require("child_process");
|
|
218
220
|
|
|
219
|
-
require("../../../vendor/Package.
|
|
221
|
+
require("../../../vendor/Package.15.cjs");
|
|
220
222
|
|
|
221
223
|
require("crypto");
|
|
222
224
|
|
|
223
|
-
require("../../../vendor/Package.
|
|
225
|
+
require("../../../vendor/Package.17.cjs");
|
|
224
226
|
|
|
225
|
-
require("
|
|
227
|
+
require("assert");
|
|
226
228
|
|
|
227
|
-
require("../../../vendor/Package.
|
|
229
|
+
require("../../../vendor/Package.14.cjs");
|
|
228
230
|
|
|
229
231
|
require("buffer");
|
|
230
232
|
|
|
231
|
-
require("module");
|
|
232
|
-
|
|
233
|
-
require("tty");
|
|
234
|
-
|
|
235
|
-
require("assert");
|
|
236
|
-
|
|
237
|
-
require("string_decoder");
|
|
238
|
-
|
|
239
233
|
require("tls");
|
|
240
234
|
|
|
241
235
|
require("dns");
|
|
@@ -244,6 +238,20 @@ require("zlib");
|
|
|
244
238
|
|
|
245
239
|
require("../../../vendor/Package.62.cjs");
|
|
246
240
|
|
|
241
|
+
require("../../../vendor/Package.132.cjs");
|
|
242
|
+
|
|
243
|
+
require("module");
|
|
244
|
+
|
|
245
|
+
require("tty");
|
|
246
|
+
|
|
247
|
+
require("../../../vendor/Package.16.cjs");
|
|
248
|
+
|
|
249
|
+
require("worker_threads");
|
|
250
|
+
|
|
251
|
+
require("string_decoder");
|
|
252
|
+
|
|
253
|
+
require("../../../vendor/Package.19.cjs");
|
|
254
|
+
|
|
247
255
|
require("constants");
|
|
248
256
|
|
|
249
257
|
require("process");
|
|
@@ -68,10 +68,12 @@ import "node:util/types";
|
|
|
68
68
|
|
|
69
69
|
import "../../lib/validation/VLD.mjs";
|
|
70
70
|
|
|
71
|
-
import "../../../vendor/Package.
|
|
71
|
+
import "../../../vendor/Package.11.mjs";
|
|
72
72
|
|
|
73
73
|
import "url";
|
|
74
74
|
|
|
75
|
+
import "../../../vendor/Package.10.mjs";
|
|
76
|
+
|
|
75
77
|
import "../../exceptions/dto/InvalidValueException.mjs";
|
|
76
78
|
|
|
77
79
|
import "../../../vendor/Package.9.mjs";
|
|
@@ -198,7 +200,7 @@ import "../../lib/helpers/UniqueArray.mjs";
|
|
|
198
200
|
|
|
199
201
|
import "./options/container/ContainerCommitOptions.mjs";
|
|
200
202
|
|
|
201
|
-
import "../../../vendor/Package.
|
|
203
|
+
import "../../../vendor/Package.18.mjs";
|
|
202
204
|
|
|
203
205
|
import "querystring";
|
|
204
206
|
|
|
@@ -210,26 +212,18 @@ import "net";
|
|
|
210
212
|
|
|
211
213
|
import "child_process";
|
|
212
214
|
|
|
213
|
-
import "../../../vendor/Package.
|
|
215
|
+
import "../../../vendor/Package.15.mjs";
|
|
214
216
|
|
|
215
217
|
import "crypto";
|
|
216
218
|
|
|
217
|
-
import "../../../vendor/Package.
|
|
219
|
+
import "../../../vendor/Package.17.mjs";
|
|
218
220
|
|
|
219
|
-
import "
|
|
221
|
+
import "assert";
|
|
220
222
|
|
|
221
|
-
import "../../../vendor/Package.
|
|
223
|
+
import "../../../vendor/Package.14.mjs";
|
|
222
224
|
|
|
223
225
|
import "buffer";
|
|
224
226
|
|
|
225
|
-
import "module";
|
|
226
|
-
|
|
227
|
-
import "tty";
|
|
228
|
-
|
|
229
|
-
import "assert";
|
|
230
|
-
|
|
231
|
-
import "string_decoder";
|
|
232
|
-
|
|
233
227
|
import "tls";
|
|
234
228
|
|
|
235
229
|
import "dns";
|
|
@@ -238,6 +232,20 @@ import "zlib";
|
|
|
238
232
|
|
|
239
233
|
import "../../../vendor/Package.62.mjs";
|
|
240
234
|
|
|
235
|
+
import "../../../vendor/Package.132.mjs";
|
|
236
|
+
|
|
237
|
+
import "module";
|
|
238
|
+
|
|
239
|
+
import "tty";
|
|
240
|
+
|
|
241
|
+
import "../../../vendor/Package.16.mjs";
|
|
242
|
+
|
|
243
|
+
import "worker_threads";
|
|
244
|
+
|
|
245
|
+
import "string_decoder";
|
|
246
|
+
|
|
247
|
+
import "../../../vendor/Package.19.mjs";
|
|
248
|
+
|
|
241
249
|
import "constants";
|
|
242
250
|
|
|
243
251
|
import "process";
|