lakutata 2.0.70 → 2.0.72
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 +4 -8
- package/com/cacher.mjs +4 -8
- package/com/database.cjs +6 -10
- package/com/database.mjs +6 -10
- package/com/docker.cjs +19 -23
- package/com/docker.mjs +15 -19
- package/com/entrypoint.cjs +1 -5
- package/com/entrypoint.mjs +1 -5
- package/com/logger.cjs +4 -8
- package/com/logger.mjs +4 -8
- package/com/monitor.cjs +1 -5
- package/com/monitor.mjs +1 -5
- package/decorator/ctrl.cjs +1 -5
- package/decorator/ctrl.mjs +1 -5
- package/decorator/di.cjs +0 -4
- package/decorator/di.mjs +0 -4
- package/decorator/dto.cjs +0 -4
- package/decorator/dto.mjs +0 -4
- package/decorator/orm.cjs +17 -21
- package/decorator/orm.mjs +11 -15
- package/dtos.cjs +69 -0
- package/dtos.d.ts +19 -0
- package/dtos.mjs +59 -0
- package/helper.cjs +20 -20
- package/helper.d.ts +11 -1
- package/helper.mjs +4 -6
- package/lakutata.cjs +15 -19
- package/lakutata.d.ts +1 -1
- package/lakutata.mjs +5 -9
- package/orm.cjs +20 -24
- package/orm.mjs +22 -26
- package/package.json +6 -1
- package/provider/database.cjs +6 -10
- package/provider/database.mjs +6 -10
- package/provider/passwordHash.cjs +0 -4
- package/provider/passwordHash.mjs +0 -4
- package/src/components/Database.cjs +6 -10
- package/src/components/Database.mjs +6 -10
- package/src/components/Logger.cjs +4 -8
- package/src/components/Logger.mjs +4 -8
- package/src/components/cacher/Cacher.cjs +8 -12
- package/src/components/cacher/Cacher.mjs +12 -16
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +4 -6
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +4 -6
- package/src/components/cacher/options/FileCacheOptions.cjs +6 -10
- package/src/components/cacher/options/FileCacheOptions.mjs +0 -4
- package/src/components/cacher/options/MemcacheCacheOptions.cjs +0 -4
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +0 -4
- package/src/components/cacher/options/MongoCacheOptions.cjs +0 -4
- package/src/components/cacher/options/MongoCacheOptions.mjs +0 -4
- package/src/components/cacher/options/MysqlCacheOptions.cjs +0 -4
- package/src/components/cacher/options/MysqlCacheOptions.mjs +11 -15
- package/src/components/cacher/options/PostgresCacheOptions.cjs +0 -4
- package/src/components/cacher/options/PostgresCacheOptions.mjs +0 -4
- package/src/components/cacher/options/RedisCacheOptions.cjs +0 -4
- package/src/components/cacher/options/RedisCacheOptions.mjs +0 -4
- package/src/components/cacher/options/SqliteCacheOptions.cjs +0 -4
- package/src/components/cacher/options/SqliteCacheOptions.mjs +6 -10
- package/src/components/docker/ConnectionOptionsBuilder.cjs +15 -19
- package/src/components/docker/ConnectionOptionsBuilder.mjs +15 -19
- package/src/components/docker/Docker.cjs +15 -19
- package/src/components/docker/Docker.mjs +15 -19
- package/src/components/docker/lib/DockerContainer.cjs +22 -26
- package/src/components/docker/lib/DockerContainer.mjs +19 -23
- package/src/components/docker/lib/DockerContainerTTY.cjs +15 -19
- package/src/components/docker/lib/DockerContainerTTY.mjs +15 -19
- package/src/components/docker/lib/DockerImage.cjs +8 -12
- package/src/components/docker/lib/DockerImage.mjs +0 -4
- package/src/components/docker/options/DockerPruneOptions.cjs +0 -4
- package/src/components/docker/options/DockerPruneOptions.mjs +0 -4
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +0 -4
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +0 -4
- package/src/components/docker/options/container/ContainerCommitOptions.cjs +3 -7
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +0 -4
- package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +4 -8
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +0 -4
- package/src/components/docker/options/container/ContainerExecOptions.cjs +0 -4
- package/src/components/docker/options/container/ContainerExecOptions.mjs +2 -6
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +0 -4
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +0 -4
- package/src/components/docker/options/container/ContainerKillOptions.cjs +0 -4
- package/src/components/docker/options/container/ContainerKillOptions.mjs +2 -6
- package/src/components/docker/options/container/ContainerLogsOptions.cjs +0 -4
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +0 -4
- package/src/components/docker/options/container/ContainerRemoveOptions.cjs +0 -4
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +0 -4
- package/src/components/docker/options/container/ContainerSettingOptions.cjs +0 -4
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +0 -4
- package/src/components/docker/options/container/ContainerStopOptions.cjs +0 -4
- package/src/components/docker/options/container/ContainerStopOptions.mjs +0 -4
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +0 -4
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +0 -4
- package/src/components/docker/options/image/ImageBuildOptions.cjs +2 -6
- package/src/components/docker/options/image/ImageBuildOptions.mjs +2 -6
- package/src/components/docker/options/image/ImageExportOptions.cjs +0 -4
- package/src/components/docker/options/image/ImageExportOptions.mjs +0 -4
- package/src/components/docker/options/image/ImageImportOptions.cjs +0 -4
- package/src/components/docker/options/image/ImageImportOptions.mjs +0 -4
- package/src/components/docker/options/image/ImagePullOptions.cjs +0 -4
- package/src/components/docker/options/image/ImagePullOptions.mjs +0 -4
- package/src/components/docker/options/image/ImagePushOptions.cjs +0 -4
- package/src/components/docker/options/image/ImagePushOptions.mjs +0 -4
- package/src/components/docker/options/image/ImageRemoveOptions.cjs +3 -7
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +0 -4
- package/src/components/docker/options/image/ImageTagOptions.cjs +0 -4
- package/src/components/docker/options/image/ImageTagOptions.mjs +0 -4
- package/src/components/docker/options/network/NetworkCreateOptions.cjs +0 -4
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +0 -4
- package/src/components/entrypoint/Entrypoint.cjs +98 -102
- package/src/components/entrypoint/Entrypoint.mjs +53 -57
- package/src/components/entrypoint/lib/AccessControl.cjs +0 -4
- package/src/components/entrypoint/lib/AccessControl.mjs +0 -4
- package/src/components/entrypoint/lib/AccessControlRule.cjs +0 -4
- package/src/components/entrypoint/lib/AccessControlRule.mjs +0 -4
- package/src/components/entrypoint/lib/Controller.cjs +0 -4
- package/src/components/entrypoint/lib/Controller.mjs +0 -4
- package/src/components/monitor/AliveMonitor.cjs +0 -4
- package/src/components/monitor/AliveMonitor.mjs +0 -4
- package/src/components/monitor/CpuMonitor.cjs +1 -5
- package/src/components/monitor/CpuMonitor.mjs +1 -5
- package/src/components/monitor/EventLoopMonitor.cjs +0 -4
- package/src/components/monitor/EventLoopMonitor.mjs +0 -4
- package/src/components/monitor/HttpRequestMonitor.cjs +1 -5
- package/src/components/monitor/HttpRequestMonitor.mjs +1 -5
- package/src/components/monitor/MemoryMonitor.cjs +1 -5
- package/src/components/monitor/MemoryMonitor.mjs +1 -5
- package/src/decorators/ctrl/CLIAction.cjs +5 -9
- package/src/decorators/ctrl/CLIAction.mjs +1 -5
- package/src/decorators/ctrl/HTTPAction.cjs +8 -12
- package/src/decorators/ctrl/HTTPAction.mjs +1 -5
- package/src/decorators/ctrl/ServiceAction.cjs +1 -5
- package/src/decorators/ctrl/ServiceAction.mjs +5 -9
- package/src/decorators/ctrl/http/DELETE.cjs +1 -5
- package/src/decorators/ctrl/http/DELETE.mjs +1 -5
- package/src/decorators/ctrl/http/GET.cjs +1 -5
- package/src/decorators/ctrl/http/GET.mjs +1 -5
- package/src/decorators/ctrl/http/HEAD.cjs +1 -5
- package/src/decorators/ctrl/http/HEAD.mjs +1 -5
- package/src/decorators/ctrl/http/OPTIONS.cjs +1 -5
- package/src/decorators/ctrl/http/OPTIONS.mjs +4 -8
- package/src/decorators/ctrl/http/PATCH.cjs +1 -5
- package/src/decorators/ctrl/http/PATCH.mjs +1 -5
- package/src/decorators/ctrl/http/POST.cjs +1 -5
- package/src/decorators/ctrl/http/POST.mjs +1 -5
- package/src/decorators/ctrl/http/PUT.cjs +1 -5
- package/src/decorators/ctrl/http/PUT.mjs +1 -5
- package/src/decorators/di/Configurable.cjs +1 -5
- package/src/decorators/di/Configurable.mjs +0 -4
- package/src/decorators/di/Inject.cjs +8 -12
- package/src/decorators/di/Inject.mjs +7 -11
- package/src/decorators/dto/Accept.cjs +0 -4
- package/src/decorators/dto/Accept.mjs +0 -4
- package/src/decorators/dto/Expect.cjs +0 -4
- package/src/decorators/dto/Expect.mjs +4 -8
- package/src/decorators/dto/IndexSignature.cjs +0 -4
- package/src/decorators/dto/IndexSignature.mjs +4 -8
- package/src/decorators/dto/Return.cjs +0 -4
- package/src/decorators/dto/Return.mjs +0 -4
- package/src/decorators/orm/AfterInsert.cjs +11 -15
- package/src/decorators/orm/AfterInsert.mjs +17 -21
- package/src/decorators/orm/AfterLoad.cjs +15 -19
- package/src/decorators/orm/AfterLoad.mjs +20 -24
- package/src/decorators/orm/AfterRecover.cjs +15 -19
- package/src/decorators/orm/AfterRecover.mjs +16 -20
- package/src/decorators/orm/AfterRemove.cjs +15 -19
- package/src/decorators/orm/AfterRemove.mjs +16 -20
- package/src/decorators/orm/AfterSoftRemove.cjs +11 -15
- package/src/decorators/orm/AfterSoftRemove.mjs +16 -20
- package/src/decorators/orm/AfterUpdate.cjs +11 -15
- package/src/decorators/orm/AfterUpdate.mjs +17 -21
- package/src/decorators/orm/BeforeInsert.cjs +17 -21
- package/src/decorators/orm/BeforeInsert.mjs +15 -19
- package/src/decorators/orm/BeforeRecover.cjs +17 -21
- package/src/decorators/orm/BeforeRecover.mjs +13 -17
- package/src/decorators/orm/BeforeRemove.cjs +17 -21
- package/src/decorators/orm/BeforeRemove.mjs +13 -17
- package/src/decorators/orm/BeforeSoftRemove.cjs +17 -21
- package/src/decorators/orm/BeforeSoftRemove.mjs +13 -17
- package/src/decorators/orm/BeforeUpdate.cjs +15 -19
- package/src/decorators/orm/BeforeUpdate.mjs +15 -19
- package/src/decorators/orm/Check.cjs +11 -15
- package/src/decorators/orm/Check.mjs +11 -15
- package/src/decorators/orm/ChildEntity.cjs +16 -20
- package/src/decorators/orm/ChildEntity.mjs +13 -17
- package/src/decorators/orm/Column.cjs +28 -32
- package/src/decorators/orm/Column.mjs +11 -15
- package/src/decorators/orm/CreateDateColumn.cjs +13 -17
- package/src/decorators/orm/CreateDateColumn.mjs +11 -15
- package/src/decorators/orm/DeleteDateColumn.cjs +13 -17
- package/src/decorators/orm/DeleteDateColumn.mjs +11 -15
- package/src/decorators/orm/Entity.cjs +15 -19
- package/src/decorators/orm/Entity.mjs +15 -19
- package/src/decorators/orm/EventSubscriber.cjs +11 -15
- package/src/decorators/orm/EventSubscriber.mjs +11 -15
- package/src/decorators/orm/Exclusion.cjs +11 -15
- package/src/decorators/orm/Exclusion.mjs +15 -19
- package/src/decorators/orm/Generated.cjs +15 -19
- package/src/decorators/orm/Generated.mjs +11 -15
- package/src/decorators/orm/Index.cjs +16 -20
- package/src/decorators/orm/Index.mjs +29 -33
- package/src/decorators/orm/JoinColumn.cjs +15 -19
- package/src/decorators/orm/JoinColumn.mjs +11 -15
- package/src/decorators/orm/JoinTable.cjs +11 -15
- package/src/decorators/orm/JoinTable.mjs +15 -19
- package/src/decorators/orm/ManyToMany.cjs +18 -22
- package/src/decorators/orm/ManyToMany.mjs +22 -26
- package/src/decorators/orm/ManyToOne.cjs +21 -25
- package/src/decorators/orm/ManyToOne.mjs +22 -26
- package/src/decorators/orm/ObjectIdColumn.cjs +11 -15
- package/src/decorators/orm/ObjectIdColumn.mjs +11 -15
- package/src/decorators/orm/OneToMany.cjs +18 -22
- package/src/decorators/orm/OneToMany.mjs +11 -15
- package/src/decorators/orm/OneToOne.cjs +20 -24
- package/src/decorators/orm/OneToOne.mjs +11 -15
- package/src/decorators/orm/PrimaryColumn.cjs +15 -19
- package/src/decorators/orm/PrimaryColumn.mjs +11 -15
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +11 -15
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +13 -17
- package/src/decorators/orm/RelationId.cjs +16 -20
- package/src/decorators/orm/RelationId.mjs +17 -21
- package/src/decorators/orm/TableInheritance.cjs +13 -17
- package/src/decorators/orm/TableInheritance.mjs +11 -15
- package/src/decorators/orm/Tree.cjs +11 -15
- package/src/decorators/orm/Tree.mjs +11 -15
- package/src/decorators/orm/TreeChildren.cjs +11 -15
- package/src/decorators/orm/TreeChildren.mjs +20 -24
- package/src/decorators/orm/TreeLevelColumn.cjs +11 -15
- package/src/decorators/orm/TreeLevelColumn.mjs +11 -15
- package/src/decorators/orm/TreeParent.cjs +11 -15
- package/src/decorators/orm/TreeParent.mjs +11 -15
- package/src/decorators/orm/Unique.cjs +18 -22
- package/src/decorators/orm/Unique.mjs +11 -15
- package/src/decorators/orm/UpdateDateColumn.cjs +13 -17
- package/src/decorators/orm/UpdateDateColumn.mjs +17 -21
- package/src/decorators/orm/VersionColumn.cjs +11 -15
- package/src/decorators/orm/VersionColumn.mjs +11 -15
- package/src/decorators/orm/ViewColumn.cjs +11 -15
- package/src/decorators/orm/ViewColumn.mjs +11 -15
- package/src/decorators/orm/ViewEntity.cjs +11 -15
- package/src/decorators/orm/ViewEntity.mjs +11 -15
- package/src/decorators/orm/VirtualColumn.cjs +11 -15
- package/src/decorators/orm/VirtualColumn.mjs +11 -15
- package/src/dto/PaginationResultDTO.cjs +74 -0
- package/src/dto/PaginationResultDTO.mjs +68 -0
- package/src/dto/PaginationSearchDTO.cjs +69 -0
- package/src/dto/PaginationSearchDTO.mjs +63 -0
- package/src/lib/base/BaseObject.cjs +0 -4
- package/src/lib/base/BaseObject.mjs +0 -4
- package/src/lib/base/Context.cjs +0 -4
- package/src/lib/base/Context.mjs +5 -9
- package/src/lib/base/internal/ActionOptions.cjs +0 -4
- package/src/lib/base/internal/ActionOptions.mjs +6 -10
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +0 -4
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +0 -4
- 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 +11 -12
- package/src/lib/base/internal/DataValidator.mjs +116 -117
- package/src/lib/base/internal/FlexibleDTO.cjs +0 -4
- package/src/lib/base/internal/FlexibleDTO.mjs +4 -8
- package/src/lib/base/internal/GetActionDTOAndOptions.cjs +7 -11
- package/src/lib/base/internal/GetActionDTOAndOptions.mjs +0 -4
- package/src/lib/base/internal/MethodValidation.cjs +25 -29
- package/src/lib/base/internal/MethodValidation.mjs +0 -4
- package/src/lib/base/internal/ModuleConfigLoader.cjs +0 -4
- package/src/lib/base/internal/ModuleConfigLoader.mjs +21 -25
- package/src/lib/base/internal/ObjectConfiguration.cjs +0 -4
- package/src/lib/base/internal/ObjectConfiguration.mjs +12 -16
- package/src/lib/base/internal/ObjectSchemaValidation.cjs +0 -4
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +0 -4
- package/src/lib/base/internal/ObjectType.cjs +0 -4
- package/src/lib/base/internal/ObjectType.mjs +0 -4
- package/src/lib/context/CLIContext.cjs +0 -4
- package/src/lib/context/CLIContext.mjs +0 -4
- package/src/lib/context/HTTPContext.cjs +0 -4
- package/src/lib/context/HTTPContext.mjs +4 -8
- package/src/lib/context/ServiceContext.cjs +0 -4
- package/src/lib/context/ServiceContext.mjs +0 -4
- package/src/lib/core/Application.cjs +5 -9
- package/src/lib/core/Application.mjs +5 -9
- package/src/lib/core/Component.cjs +0 -4
- package/src/lib/core/Component.mjs +0 -4
- package/src/lib/core/Container.cjs +0 -4
- package/src/lib/core/Container.mjs +0 -4
- package/src/lib/core/DTO.cjs +0 -4
- package/src/lib/core/DTO.mjs +0 -4
- package/src/lib/core/Module.cjs +1 -5
- package/src/lib/core/Module.mjs +1 -5
- package/src/lib/core/Provider.cjs +0 -4
- package/src/lib/core/Provider.mjs +0 -4
- package/src/lib/helpers/IsSymbol.cjs +0 -4
- package/src/lib/helpers/IsSymbol.mjs +0 -4
- 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/Paginator.cjs +11 -0
- package/src/lib/helpers/Paginator.mjs +5 -0
- package/src/lib/helpers/RandomString.cjs +1 -1
- package/src/lib/helpers/RandomString.mjs +1 -1
- package/src/lib/helpers/Statistics.cjs +1 -1
- package/src/lib/helpers/Statistics.mjs +1 -1
- package/src/lib/ioc/DependencyInjectionContainer.cjs +28 -32
- package/src/lib/ioc/DependencyInjectionContainer.mjs +17 -21
- package/src/lib/ioc/Errors.cjs +0 -4
- package/src/lib/ioc/Errors.mjs +4 -8
- package/src/lib/ioc/ListModules.cjs +100 -104
- package/src/lib/ioc/ListModules.mjs +0 -4
- package/src/lib/ioc/LoadModules.cjs +27 -31
- package/src/lib/ioc/LoadModules.mjs +5 -9
- package/src/lib/ioc/Resolvers.cjs +6 -10
- package/src/lib/ioc/Resolvers.mjs +3 -7
- package/src/lib/ioc/Utils.cjs +0 -4
- package/src/lib/ioc/Utils.mjs +0 -4
- package/src/lib/validation/VLD.cjs +4096 -3158
- package/src/lib/validation/VLD.mjs +2807 -1887
- package/src/lib/validation/interfaces/BigIntSchema.cjs +1 -0
- package/src/lib/validation/interfaces/BigIntSchema.mjs +1 -0
- package/src/lib/validation/types/NoNestedArrays.cjs +1 -0
- package/src/lib/validation/types/NoNestedArrays.mjs +1 -0
- package/src/lib/validation/types/Primitives.cjs +1 -0
- package/src/lib/validation/types/Primitives.mjs +1 -0
- package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.cjs +1 -0
- package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.mjs +1 -0
- package/src/options/ApplicationOptions.cjs +0 -4
- package/src/options/ApplicationOptions.mjs +0 -4
- package/src/options/LoadAnonymousObjectOptions.cjs +0 -4
- package/src/options/LoadAnonymousObjectOptions.mjs +0 -4
- package/src/options/LoadNamedObjectOptions.cjs +0 -4
- package/src/options/LoadNamedObjectOptions.mjs +0 -4
- package/src/options/LoadObjectOptions.cjs +0 -4
- package/src/options/LoadObjectOptions.mjs +0 -4
- package/src/options/ModuleLoadObjectsOptions.cjs +0 -4
- package/src/options/ModuleLoadObjectsOptions.mjs +0 -4
- package/src/options/ModuleOptions.cjs +0 -4
- package/src/options/ModuleOptions.mjs +0 -4
- package/src/options/OverridableNamedObjectOptions.cjs +0 -4
- package/src/options/OverridableNamedObjectOptions.mjs +0 -4
- package/src/options/OverridableObjectOptions.cjs +0 -4
- package/src/options/OverridableObjectOptions.mjs +0 -4
- package/src/providers/Database.cjs +6 -10
- package/src/providers/Database.mjs +6 -10
- package/src/providers/PasswordHash.cjs +13 -17
- package/src/providers/PasswordHash.mjs +208 -212
- package/vendor/Package.10.cjs +9 -1
- package/vendor/Package.10.mjs +9 -1
- package/vendor/Package.102.cjs +48831 -0
- package/vendor/Package.102.mjs +48767 -0
- package/vendor/Package.11.cjs +86 -0
- package/vendor/Package.11.mjs +80 -0
- package/vendor/Package.12.cjs +3 -5
- package/vendor/Package.12.mjs +3 -5
- package/vendor/Package.122.cjs +1 -48833
- package/vendor/Package.122.mjs +1 -48771
- package/vendor/Package.13.cjs +1 -7
- package/vendor/Package.13.mjs +1 -7
- package/vendor/Package.14.cjs +2247 -1
- package/vendor/Package.14.mjs +2139 -1
- package/vendor/Package.15.cjs +14057 -1
- package/vendor/Package.15.mjs +14031 -1
- package/vendor/Package.16.cjs +1 -2247
- package/vendor/Package.16.mjs +1 -2139
- package/vendor/Package.17.cjs +46794 -12601
- package/vendor/Package.17.mjs +46762 -12584
- package/vendor/Package.18.cjs +1 -1
- package/vendor/Package.18.mjs +1 -1
- package/vendor/Package.2.cjs +1633 -2052
- package/vendor/Package.2.mjs +2147 -2566
- package/vendor/Package.62.cjs +2 -2
- package/vendor/Package.62.mjs +2 -2
- package/vendor/Package.8.cjs +2 -0
- package/vendor/Package.8.mjs +2 -0
- package/vendor/TypeDef.internal.5.d.ts +2422 -2041
- package/vendor/Package.132.cjs +0 -87
- package/vendor/Package.132.mjs +0 -79
- package/vendor/Package.19.cjs +0 -48247
- package/vendor/Package.19.mjs +0 -48204
- package/vendor/Package.20.cjs +0 -3
- package/vendor/Package.20.mjs +0 -1
|
@@ -24,12 +24,8 @@ require("../../../../vendor/Package.5.cjs");
|
|
|
24
24
|
|
|
25
25
|
require("../../validation/VLD.cjs");
|
|
26
26
|
|
|
27
|
-
require("../../../../vendor/Package.11.cjs");
|
|
28
|
-
|
|
29
27
|
require("url");
|
|
30
28
|
|
|
31
|
-
require("../../../../vendor/Package.10.cjs");
|
|
32
|
-
|
|
33
29
|
require("util");
|
|
34
30
|
|
|
35
31
|
require("../../../exceptions/dto/InvalidValueException.cjs");
|
|
@@ -66,81 +62,81 @@ require("../../helpers/ObjectParentConstructor.cjs");
|
|
|
66
62
|
|
|
67
63
|
require("../../helpers/ObjectPrototype.cjs");
|
|
68
64
|
|
|
69
|
-
function
|
|
65
|
+
function s(n, s, a, c) {
|
|
70
66
|
const i = [];
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
const u =
|
|
67
|
+
c.forEach((r => i.push(e.IsDTO(o.As(r)) ? o.As(r).Schema() : o.As(r))));
|
|
68
|
+
a.writable = false;
|
|
69
|
+
const u = a.value;
|
|
74
70
|
const p = e.DTO.Array().ordered(...i);
|
|
75
|
-
const
|
|
71
|
+
const l = Array.isArray(i) ? i.length : 1;
|
|
76
72
|
if (r.isAsyncFunction(u)) {
|
|
77
|
-
|
|
78
|
-
const n = r.length -
|
|
73
|
+
a.value = async function(...r) {
|
|
74
|
+
const n = r.length - l;
|
|
79
75
|
try {
|
|
80
76
|
r = await e.DTO.validateAsync(r, p.concat(e.DTO.Array().ordered(...new Array(n >= 0 ? n : 0).fill(e.DTO.Any()))));
|
|
81
77
|
} catch (e) {
|
|
82
78
|
throw new t.InvalidMethodAcceptException("Method [{propertyKey}] accept argument {reason}", {
|
|
83
|
-
propertyKey:
|
|
79
|
+
propertyKey: s,
|
|
84
80
|
reason: e.message
|
|
85
81
|
});
|
|
86
82
|
}
|
|
87
83
|
return u.apply(this, r);
|
|
88
84
|
};
|
|
89
85
|
} else {
|
|
90
|
-
|
|
91
|
-
const n = r.length -
|
|
86
|
+
a.value = function(...r) {
|
|
87
|
+
const n = r.length - l;
|
|
92
88
|
try {
|
|
93
89
|
r = e.DTO.validate(r, p.concat(e.DTO.Array().ordered(...new Array(n >= 0 ? n : 0).fill(e.DTO.Any()))));
|
|
94
90
|
} catch (e) {
|
|
95
91
|
throw new t.InvalidMethodAcceptException("Method [{propertyKey}] accept argument {reason}", {
|
|
96
|
-
propertyKey:
|
|
92
|
+
propertyKey: s,
|
|
97
93
|
reason: e.message
|
|
98
94
|
});
|
|
99
95
|
}
|
|
100
96
|
return u.apply(this, r);
|
|
101
97
|
};
|
|
102
98
|
}
|
|
103
|
-
return
|
|
99
|
+
return a;
|
|
104
100
|
}
|
|
105
101
|
|
|
106
|
-
function
|
|
107
|
-
const i = e.IsDTO(o.As(
|
|
108
|
-
|
|
109
|
-
const u =
|
|
102
|
+
function a(t, s, a, c) {
|
|
103
|
+
const i = e.IsDTO(o.As(c)) ? o.As(c).Schema() : o.As(c);
|
|
104
|
+
a.writable = false;
|
|
105
|
+
const u = a.value;
|
|
110
106
|
if (r.isAsyncFunction(u)) {
|
|
111
|
-
|
|
107
|
+
a.value = async function(...r) {
|
|
112
108
|
const t = await u.apply(this, r);
|
|
113
109
|
if (t === undefined) throw new n.InvalidMethodReturnException("Method [{propertyKey}] return undefined", {
|
|
114
|
-
propertyKey:
|
|
110
|
+
propertyKey: s
|
|
115
111
|
});
|
|
116
112
|
try {
|
|
117
113
|
return await e.DTO.validateAsync(t, i);
|
|
118
114
|
} catch (e) {
|
|
119
115
|
throw new n.InvalidMethodReturnException("Method [{propertyKey}] return value {reason}", {
|
|
120
|
-
propertyKey:
|
|
116
|
+
propertyKey: s,
|
|
121
117
|
reason: e.message
|
|
122
118
|
});
|
|
123
119
|
}
|
|
124
120
|
};
|
|
125
121
|
} else {
|
|
126
|
-
|
|
122
|
+
a.value = function(...r) {
|
|
127
123
|
const t = u.apply(this, r);
|
|
128
124
|
if (t === undefined) throw new n.InvalidMethodReturnException("Method [{propertyKey}] return undefined", {
|
|
129
|
-
propertyKey:
|
|
125
|
+
propertyKey: s
|
|
130
126
|
});
|
|
131
127
|
try {
|
|
132
128
|
return e.DTO.validate(t, i);
|
|
133
129
|
} catch (e) {
|
|
134
130
|
throw new n.InvalidMethodReturnException("Method [{propertyKey}] return value {reason}", {
|
|
135
|
-
propertyKey:
|
|
131
|
+
propertyKey: s,
|
|
136
132
|
reason: e.message
|
|
137
133
|
});
|
|
138
134
|
}
|
|
139
135
|
};
|
|
140
136
|
}
|
|
141
|
-
return
|
|
137
|
+
return a;
|
|
142
138
|
}
|
|
143
139
|
|
|
144
|
-
exports.SetMethodAcceptArgumentsValidator =
|
|
140
|
+
exports.SetMethodAcceptArgumentsValidator = s;
|
|
145
141
|
|
|
146
|
-
exports.SetMethodReturnValueValidator =
|
|
142
|
+
exports.SetMethodReturnValueValidator = a;
|
|
@@ -18,12 +18,8 @@ import "../../../../vendor/Package.5.mjs";
|
|
|
18
18
|
|
|
19
19
|
import "../../validation/VLD.mjs";
|
|
20
20
|
|
|
21
|
-
import "../../../../vendor/Package.11.mjs";
|
|
22
|
-
|
|
23
21
|
import "url";
|
|
24
22
|
|
|
25
|
-
import "../../../../vendor/Package.10.mjs";
|
|
26
|
-
|
|
27
23
|
import "util";
|
|
28
24
|
|
|
29
25
|
import "../../../exceptions/dto/InvalidValueException.mjs";
|
|
@@ -78,12 +78,8 @@ require("node:util/types");
|
|
|
78
78
|
|
|
79
79
|
require("../../validation/VLD.cjs");
|
|
80
80
|
|
|
81
|
-
require("../../../../vendor/Package.11.cjs");
|
|
82
|
-
|
|
83
81
|
require("url");
|
|
84
82
|
|
|
85
|
-
require("../../../../vendor/Package.10.cjs");
|
|
86
|
-
|
|
87
83
|
require("../../../exceptions/dto/InvalidValueException.cjs");
|
|
88
84
|
|
|
89
85
|
require("../../../../vendor/Package.9.cjs");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as
|
|
1
|
+
import { b as t, O as o, G as e, B as s } from "../../../../vendor/Package.3.mjs";
|
|
2
2
|
|
|
3
3
|
import { OverridableObjectTargetConfigNotFoundException as r } from "../../../exceptions/di/OverridableObjectTargetConfigNotFoundException.mjs";
|
|
4
4
|
|
|
@@ -72,12 +72,8 @@ import "node:util/types";
|
|
|
72
72
|
|
|
73
73
|
import "../../validation/VLD.mjs";
|
|
74
74
|
|
|
75
|
-
import "../../../../vendor/Package.11.mjs";
|
|
76
|
-
|
|
77
75
|
import "url";
|
|
78
76
|
|
|
79
|
-
import "../../../../vendor/Package.10.mjs";
|
|
80
|
-
|
|
81
77
|
import "../../../exceptions/dto/InvalidValueException.mjs";
|
|
82
78
|
|
|
83
79
|
import "../../../../vendor/Package.9.mjs";
|
|
@@ -158,37 +154,37 @@ class ModuleConfigLoader {
|
|
|
158
154
|
this.$module = e;
|
|
159
155
|
this.$presetLoadOptionsSet = p(r);
|
|
160
156
|
this.$bootstrap = s.bootstrap ? s.bootstrap : [];
|
|
161
|
-
s.objects?.anonymous?.forEach((
|
|
157
|
+
s.objects?.anonymous?.forEach((t => this.$loadOptions.push(t)));
|
|
162
158
|
if (s.objects && s.objects.named) {
|
|
163
|
-
const
|
|
164
|
-
Object.keys(
|
|
165
|
-
...
|
|
166
|
-
[
|
|
159
|
+
const o = s.objects.named;
|
|
160
|
+
Object.keys(o).forEach((e => this.$loadOptions.push({
|
|
161
|
+
...o[e],
|
|
162
|
+
[t]: e
|
|
167
163
|
})));
|
|
168
164
|
}
|
|
169
|
-
this.processOverridableNamedObjectOptions(
|
|
170
|
-
this.processOverridableNamedObjectOptions(
|
|
171
|
-
this.processOverridableNamedObjectOptions(
|
|
165
|
+
this.processOverridableNamedObjectOptions(o.Component, s.components);
|
|
166
|
+
this.processOverridableNamedObjectOptions(o.Provider, s.providers);
|
|
167
|
+
this.processOverridableNamedObjectOptions(o.Module, s.modules);
|
|
172
168
|
}
|
|
173
|
-
validateObjectType(
|
|
174
|
-
if (e(
|
|
175
|
-
return
|
|
169
|
+
validateObjectType(t, o) {
|
|
170
|
+
if (e(o) !== t) throw new m("{0} configuration only accepts object declarations of {1} types", [ t, t.toLowerCase() ]);
|
|
171
|
+
return o;
|
|
176
172
|
}
|
|
177
|
-
processOverridableNamedObjectOptions(
|
|
173
|
+
processOverridableNamedObjectOptions(o, e) {
|
|
178
174
|
if (!e) return;
|
|
179
175
|
Object.keys(e).forEach((m => {
|
|
180
176
|
const p = e[m];
|
|
181
|
-
p[
|
|
177
|
+
p[t] = m;
|
|
182
178
|
if (p.class) {
|
|
183
|
-
p.class = this.validateObjectType(
|
|
179
|
+
p.class = this.validateObjectType(o, p.class);
|
|
184
180
|
return this.$loadOptions.push(i(p)) ? void 0 : void 0;
|
|
185
181
|
}
|
|
186
|
-
for (const
|
|
187
|
-
if (typeof
|
|
188
|
-
if (
|
|
189
|
-
if (p[
|
|
190
|
-
this.$loadOptions.push(Object.assign({},
|
|
191
|
-
return this.$presetLoadOptionsSet.delete(
|
|
182
|
+
for (const o of this.$presetLoadOptionsSet) {
|
|
183
|
+
if (typeof o === "string") continue;
|
|
184
|
+
if (o instanceof s) continue;
|
|
185
|
+
if (p[t] === o[t]) {
|
|
186
|
+
this.$loadOptions.push(Object.assign({}, o, p));
|
|
187
|
+
return this.$presetLoadOptionsSet.delete(o) ? void 0 : void 0;
|
|
192
188
|
}
|
|
193
189
|
}
|
|
194
190
|
throw new r("No applicable configuration target found");
|
|
@@ -26,12 +26,8 @@ require("node:util/types");
|
|
|
26
26
|
|
|
27
27
|
require("../../validation/VLD.cjs");
|
|
28
28
|
|
|
29
|
-
require("../../../../vendor/Package.11.cjs");
|
|
30
|
-
|
|
31
29
|
require("url");
|
|
32
30
|
|
|
33
|
-
require("../../../../vendor/Package.10.cjs");
|
|
34
|
-
|
|
35
31
|
require("util");
|
|
36
32
|
|
|
37
33
|
require("../../../exceptions/dto/InvalidValueException.cjs");
|
|
@@ -20,12 +20,8 @@ import "node:util/types";
|
|
|
20
20
|
|
|
21
21
|
import "../../validation/VLD.mjs";
|
|
22
22
|
|
|
23
|
-
import "../../../../vendor/Package.11.mjs";
|
|
24
|
-
|
|
25
23
|
import "url";
|
|
26
24
|
|
|
27
|
-
import "../../../../vendor/Package.10.mjs";
|
|
28
|
-
|
|
29
25
|
import "util";
|
|
30
26
|
|
|
31
27
|
import "../../../exceptions/dto/InvalidValueException.mjs";
|
|
@@ -58,30 +54,30 @@ import "../../helpers/ObjectPrototype.mjs";
|
|
|
58
54
|
|
|
59
55
|
import "../../helpers/ObjectParentConstructor.mjs";
|
|
60
56
|
|
|
61
|
-
function
|
|
57
|
+
function s(s, m, i = e.Any(), p) {
|
|
62
58
|
let n;
|
|
63
|
-
if (Reflect.hasOwnMetadata(t, a(
|
|
64
|
-
n = Reflect.getOwnMetadata(t, a(
|
|
59
|
+
if (Reflect.hasOwnMetadata(t, a(s))) {
|
|
60
|
+
n = Reflect.getOwnMetadata(t, a(s));
|
|
65
61
|
} else {
|
|
66
62
|
n = new Map;
|
|
67
|
-
r(a(
|
|
63
|
+
r(a(s)).forEach((e => {
|
|
68
64
|
if (Reflect.hasOwnMetadata(t, e)) o(Reflect.getOwnMetadata(t, e)).forEach(((t, e) => n.set(e, t)));
|
|
69
65
|
}));
|
|
70
66
|
}
|
|
71
|
-
Reflect.defineMetadata(t, n, a(
|
|
72
|
-
Reflect.getOwnMetadata(t, a(
|
|
67
|
+
Reflect.defineMetadata(t, n, a(s));
|
|
68
|
+
Reflect.getOwnMetadata(t, a(s)).set(m, {
|
|
73
69
|
schema: i,
|
|
74
70
|
fn: p ? p : t => t
|
|
75
71
|
});
|
|
76
72
|
}
|
|
77
73
|
|
|
78
|
-
function
|
|
79
|
-
const
|
|
74
|
+
function m(e) {
|
|
75
|
+
const s = new Map;
|
|
80
76
|
r(a(e)).forEach((e => {
|
|
81
|
-
if (Reflect.hasOwnMetadata(t, e)) o(Reflect.getOwnMetadata(t, e)).forEach(((t, e) =>
|
|
77
|
+
if (Reflect.hasOwnMetadata(t, e)) o(Reflect.getOwnMetadata(t, e)).forEach(((t, e) => s.set(e, t)));
|
|
82
78
|
}));
|
|
83
|
-
o(Reflect.getOwnMetadata(t, a(e)))?.forEach(((t, e) =>
|
|
84
|
-
return
|
|
79
|
+
o(Reflect.getOwnMetadata(t, a(e)))?.forEach(((t, e) => s.set(e, t)));
|
|
80
|
+
return s;
|
|
85
81
|
}
|
|
86
82
|
|
|
87
|
-
export {
|
|
83
|
+
export { m as GetObjectConfigurableProperties, s as SetObjectConfigurableProperty };
|
|
@@ -26,12 +26,8 @@ require("node:util/types");
|
|
|
26
26
|
|
|
27
27
|
require("../../validation/VLD.cjs");
|
|
28
28
|
|
|
29
|
-
require("../../../../vendor/Package.11.cjs");
|
|
30
|
-
|
|
31
29
|
require("url");
|
|
32
30
|
|
|
33
|
-
require("../../../../vendor/Package.10.cjs");
|
|
34
|
-
|
|
35
31
|
require("util");
|
|
36
32
|
|
|
37
33
|
require("../../../exceptions/dto/InvalidValueException.cjs");
|
|
@@ -20,12 +20,8 @@ import "node:util/types";
|
|
|
20
20
|
|
|
21
21
|
import "../../validation/VLD.mjs";
|
|
22
22
|
|
|
23
|
-
import "../../../../vendor/Package.11.mjs";
|
|
24
|
-
|
|
25
23
|
import "url";
|
|
26
24
|
|
|
27
|
-
import "../../../../vendor/Package.10.mjs";
|
|
28
|
-
|
|
29
25
|
import "util";
|
|
30
26
|
|
|
31
27
|
import "../../../exceptions/dto/InvalidValueException.mjs";
|
|
@@ -24,12 +24,8 @@ require("node:util/types");
|
|
|
24
24
|
|
|
25
25
|
require("../../validation/VLD.cjs");
|
|
26
26
|
|
|
27
|
-
require("../../../../vendor/Package.11.cjs");
|
|
28
|
-
|
|
29
27
|
require("url");
|
|
30
28
|
|
|
31
|
-
require("../../../../vendor/Package.10.cjs");
|
|
32
|
-
|
|
33
29
|
require("util");
|
|
34
30
|
|
|
35
31
|
require("../../../exceptions/dto/InvalidValueException.cjs");
|
|
@@ -18,12 +18,8 @@ import "node:util/types";
|
|
|
18
18
|
|
|
19
19
|
import "../../validation/VLD.mjs";
|
|
20
20
|
|
|
21
|
-
import "../../../../vendor/Package.11.mjs";
|
|
22
|
-
|
|
23
21
|
import "url";
|
|
24
22
|
|
|
25
|
-
import "../../../../vendor/Package.10.mjs";
|
|
26
|
-
|
|
27
23
|
import "util";
|
|
28
24
|
|
|
29
25
|
import "../../../exceptions/dto/InvalidValueException.mjs";
|
|
@@ -24,12 +24,8 @@ require("node:util/types");
|
|
|
24
24
|
|
|
25
25
|
require("../validation/VLD.cjs");
|
|
26
26
|
|
|
27
|
-
require("../../../vendor/Package.11.cjs");
|
|
28
|
-
|
|
29
27
|
require("url");
|
|
30
28
|
|
|
31
|
-
require("../../../vendor/Package.10.cjs");
|
|
32
|
-
|
|
33
29
|
require("util");
|
|
34
30
|
|
|
35
31
|
require("../../exceptions/dto/InvalidValueException.cjs");
|
|
@@ -18,12 +18,8 @@ import "node:util/types";
|
|
|
18
18
|
|
|
19
19
|
import "../validation/VLD.mjs";
|
|
20
20
|
|
|
21
|
-
import "../../../vendor/Package.11.mjs";
|
|
22
|
-
|
|
23
21
|
import "url";
|
|
24
22
|
|
|
25
|
-
import "../../../vendor/Package.10.mjs";
|
|
26
|
-
|
|
27
23
|
import "util";
|
|
28
24
|
|
|
29
25
|
import "../../exceptions/dto/InvalidValueException.mjs";
|
|
@@ -24,12 +24,8 @@ require("node:util/types");
|
|
|
24
24
|
|
|
25
25
|
require("../validation/VLD.cjs");
|
|
26
26
|
|
|
27
|
-
require("../../../vendor/Package.11.cjs");
|
|
28
|
-
|
|
29
27
|
require("url");
|
|
30
28
|
|
|
31
|
-
require("../../../vendor/Package.10.cjs");
|
|
32
|
-
|
|
33
29
|
require("util");
|
|
34
30
|
|
|
35
31
|
require("../../exceptions/dto/InvalidValueException.cjs");
|
|
@@ -4,9 +4,9 @@ import { D as o } from "../../../vendor/Package.2.mjs";
|
|
|
4
4
|
|
|
5
5
|
import { Expect as r } from "../../decorators/dto/Expect.mjs";
|
|
6
6
|
|
|
7
|
-
import { BaseContext as s, ContextType as
|
|
7
|
+
import { BaseContext as s, ContextType as i } from "../base/Context.mjs";
|
|
8
8
|
|
|
9
|
-
import { IncomingMessage as
|
|
9
|
+
import { IncomingMessage as m, ServerResponse as p } from "node:http";
|
|
10
10
|
|
|
11
11
|
import "../base/internal/DataValidator.mjs";
|
|
12
12
|
|
|
@@ -18,12 +18,8 @@ import "node:util/types";
|
|
|
18
18
|
|
|
19
19
|
import "../validation/VLD.mjs";
|
|
20
20
|
|
|
21
|
-
import "../../../vendor/Package.11.mjs";
|
|
22
|
-
|
|
23
21
|
import "url";
|
|
24
22
|
|
|
25
|
-
import "../../../vendor/Package.10.mjs";
|
|
26
|
-
|
|
27
23
|
import "util";
|
|
28
24
|
|
|
29
25
|
import "../../exceptions/dto/InvalidValueException.mjs";
|
|
@@ -70,13 +66,13 @@ class HTTPContext extends s {
|
|
|
70
66
|
}
|
|
71
67
|
}
|
|
72
68
|
|
|
73
|
-
t([ r(o.String().valid(
|
|
69
|
+
t([ r(o.String().valid(i.HTTP).default(i.HTTP)), e("design:type", String) ], HTTPContext.prototype, "type", void 0);
|
|
74
70
|
|
|
75
71
|
t([ r(o.String().required()), e("design:type", String) ], HTTPContext.prototype, "route", void 0);
|
|
76
72
|
|
|
77
73
|
t([ r(o.String().required()), e("design:type", String) ], HTTPContext.prototype, "method", void 0);
|
|
78
74
|
|
|
79
|
-
t([ r(o.InstanceOf(
|
|
75
|
+
t([ r(o.InstanceOf(m)), e("design:type", m) ], HTTPContext.prototype, "request", void 0);
|
|
80
76
|
|
|
81
77
|
t([ r(o.InstanceOf(p)), e("design:type", p) ], HTTPContext.prototype, "response", void 0);
|
|
82
78
|
|
|
@@ -22,12 +22,8 @@ require("node:util/types");
|
|
|
22
22
|
|
|
23
23
|
require("../validation/VLD.cjs");
|
|
24
24
|
|
|
25
|
-
require("../../../vendor/Package.11.cjs");
|
|
26
|
-
|
|
27
25
|
require("url");
|
|
28
26
|
|
|
29
|
-
require("../../../vendor/Package.10.cjs");
|
|
30
|
-
|
|
31
27
|
require("util");
|
|
32
28
|
|
|
33
29
|
require("../../exceptions/dto/InvalidValueException.cjs");
|
|
@@ -16,12 +16,8 @@ import "node:util/types";
|
|
|
16
16
|
|
|
17
17
|
import "../validation/VLD.mjs";
|
|
18
18
|
|
|
19
|
-
import "../../../vendor/Package.11.mjs";
|
|
20
|
-
|
|
21
19
|
import "url";
|
|
22
20
|
|
|
23
|
-
import "../../../vendor/Package.10.mjs";
|
|
24
|
-
|
|
25
21
|
import "util";
|
|
26
22
|
|
|
27
23
|
import "../../exceptions/dto/InvalidValueException.mjs";
|
|
@@ -22,7 +22,7 @@ const o = require("../base/internal/BasicInfo.cjs");
|
|
|
22
22
|
|
|
23
23
|
const a = require("../../components/entrypoint/Entrypoint.cjs");
|
|
24
24
|
|
|
25
|
-
const p = require("../../../vendor/Package.
|
|
25
|
+
const p = require("../../../vendor/Package.15.cjs");
|
|
26
26
|
|
|
27
27
|
const u = require("../../decorators/dto/Accept.cjs");
|
|
28
28
|
|
|
@@ -92,12 +92,8 @@ require("node:util/types");
|
|
|
92
92
|
|
|
93
93
|
require("../validation/VLD.cjs");
|
|
94
94
|
|
|
95
|
-
require("../../../vendor/Package.11.cjs");
|
|
96
|
-
|
|
97
95
|
require("url");
|
|
98
96
|
|
|
99
|
-
require("../../../vendor/Package.10.cjs");
|
|
100
|
-
|
|
101
97
|
require("../../exceptions/dto/InvalidValueException.cjs");
|
|
102
98
|
|
|
103
99
|
require("../../../vendor/Package.9.cjs");
|
|
@@ -198,7 +194,7 @@ require("../helpers/NonceStr.cjs");
|
|
|
198
194
|
|
|
199
195
|
require("../helpers/RandomString.cjs");
|
|
200
196
|
|
|
201
|
-
require("../../../vendor/Package.
|
|
197
|
+
require("../../../vendor/Package.13.cjs");
|
|
202
198
|
|
|
203
199
|
require("crypto");
|
|
204
200
|
|
|
@@ -256,9 +252,9 @@ require("../../components/entrypoint/exceptions/InvalidActionGroupException.cjs"
|
|
|
256
252
|
|
|
257
253
|
require("worker_threads");
|
|
258
254
|
|
|
259
|
-
require("../../../vendor/Package.
|
|
255
|
+
require("../../../vendor/Package.11.cjs");
|
|
260
256
|
|
|
261
|
-
require("../../../vendor/Package.
|
|
257
|
+
require("../../../vendor/Package.122.cjs");
|
|
262
258
|
|
|
263
259
|
require("buffer");
|
|
264
260
|
|
|
@@ -266,7 +262,7 @@ require("module");
|
|
|
266
262
|
|
|
267
263
|
require("tty");
|
|
268
264
|
|
|
269
|
-
require("../../../vendor/Package.
|
|
265
|
+
require("../../../vendor/Package.16.cjs");
|
|
270
266
|
|
|
271
267
|
require("assert");
|
|
272
268
|
|
|
@@ -16,7 +16,7 @@ import { GetBasicInfo as c } from "../base/internal/BasicInfo.mjs";
|
|
|
16
16
|
|
|
17
17
|
import { Entrypoint as l } from "../../components/entrypoint/Entrypoint.mjs";
|
|
18
18
|
|
|
19
|
-
import { L as j } from "../../../vendor/Package.
|
|
19
|
+
import { L as j } from "../../../vendor/Package.15.mjs";
|
|
20
20
|
|
|
21
21
|
import { Accept as h } from "../../decorators/dto/Accept.mjs";
|
|
22
22
|
|
|
@@ -86,12 +86,8 @@ import "node:util/types";
|
|
|
86
86
|
|
|
87
87
|
import "../validation/VLD.mjs";
|
|
88
88
|
|
|
89
|
-
import "../../../vendor/Package.11.mjs";
|
|
90
|
-
|
|
91
89
|
import "url";
|
|
92
90
|
|
|
93
|
-
import "../../../vendor/Package.10.mjs";
|
|
94
|
-
|
|
95
91
|
import "../../exceptions/dto/InvalidValueException.mjs";
|
|
96
92
|
|
|
97
93
|
import "../../../vendor/Package.9.mjs";
|
|
@@ -192,7 +188,7 @@ import "../helpers/NonceStr.mjs";
|
|
|
192
188
|
|
|
193
189
|
import "../helpers/RandomString.mjs";
|
|
194
190
|
|
|
195
|
-
import "../../../vendor/Package.
|
|
191
|
+
import "../../../vendor/Package.13.mjs";
|
|
196
192
|
|
|
197
193
|
import "crypto";
|
|
198
194
|
|
|
@@ -250,9 +246,9 @@ import "../../components/entrypoint/exceptions/InvalidActionGroupException.mjs";
|
|
|
250
246
|
|
|
251
247
|
import "worker_threads";
|
|
252
248
|
|
|
253
|
-
import "../../../vendor/Package.
|
|
249
|
+
import "../../../vendor/Package.11.mjs";
|
|
254
250
|
|
|
255
|
-
import "../../../vendor/Package.
|
|
251
|
+
import "../../../vendor/Package.122.mjs";
|
|
256
252
|
|
|
257
253
|
import "buffer";
|
|
258
254
|
|
|
@@ -260,7 +256,7 @@ import "module";
|
|
|
260
256
|
|
|
261
257
|
import "tty";
|
|
262
258
|
|
|
263
|
-
import "../../../vendor/Package.
|
|
259
|
+
import "../../../vendor/Package.16.mjs";
|
|
264
260
|
|
|
265
261
|
import "assert";
|
|
266
262
|
|
|
@@ -72,12 +72,8 @@ require("node:util/types");
|
|
|
72
72
|
|
|
73
73
|
require("../validation/VLD.cjs");
|
|
74
74
|
|
|
75
|
-
require("../../../vendor/Package.11.cjs");
|
|
76
|
-
|
|
77
75
|
require("url");
|
|
78
76
|
|
|
79
|
-
require("../../../vendor/Package.10.cjs");
|
|
80
|
-
|
|
81
77
|
require("../../exceptions/dto/InvalidValueException.cjs");
|
|
82
78
|
|
|
83
79
|
require("../../../vendor/Package.9.cjs");
|
|
@@ -66,12 +66,8 @@ import "node:util/types";
|
|
|
66
66
|
|
|
67
67
|
import "../validation/VLD.mjs";
|
|
68
68
|
|
|
69
|
-
import "../../../vendor/Package.11.mjs";
|
|
70
|
-
|
|
71
69
|
import "url";
|
|
72
70
|
|
|
73
|
-
import "../../../vendor/Package.10.mjs";
|
|
74
|
-
|
|
75
71
|
import "../../exceptions/dto/InvalidValueException.mjs";
|
|
76
72
|
|
|
77
73
|
import "../../../vendor/Package.9.mjs";
|
|
@@ -74,10 +74,6 @@ require("node:util/types");
|
|
|
74
74
|
|
|
75
75
|
require("../validation/VLD.cjs");
|
|
76
76
|
|
|
77
|
-
require("../../../vendor/Package.11.cjs");
|
|
78
|
-
|
|
79
|
-
require("../../../vendor/Package.10.cjs");
|
|
80
|
-
|
|
81
77
|
require("../../exceptions/dto/InvalidValueException.cjs");
|
|
82
78
|
|
|
83
79
|
require("../../../vendor/Package.9.cjs");
|
|
@@ -68,10 +68,6 @@ import "node:util/types";
|
|
|
68
68
|
|
|
69
69
|
import "../validation/VLD.mjs";
|
|
70
70
|
|
|
71
|
-
import "../../../vendor/Package.11.mjs";
|
|
72
|
-
|
|
73
|
-
import "../../../vendor/Package.10.mjs";
|
|
74
|
-
|
|
75
71
|
import "../../exceptions/dto/InvalidValueException.mjs";
|
|
76
72
|
|
|
77
73
|
import "../../../vendor/Package.9.mjs";
|
package/src/lib/core/DTO.cjs
CHANGED
|
@@ -28,12 +28,8 @@ require("../helpers/IsHtml.cjs");
|
|
|
28
28
|
|
|
29
29
|
require("../helpers/IsXML.cjs");
|
|
30
30
|
|
|
31
|
-
require("../../../vendor/Package.11.cjs");
|
|
32
|
-
|
|
33
31
|
require("url");
|
|
34
32
|
|
|
35
|
-
require("../../../vendor/Package.10.cjs");
|
|
36
|
-
|
|
37
33
|
require("util");
|
|
38
34
|
|
|
39
35
|
require("../base/abstracts/Exception.cjs");
|
package/src/lib/core/DTO.mjs
CHANGED
|
@@ -22,12 +22,8 @@ import "../helpers/IsHtml.mjs";
|
|
|
22
22
|
|
|
23
23
|
import "../helpers/IsXML.mjs";
|
|
24
24
|
|
|
25
|
-
import "../../../vendor/Package.11.mjs";
|
|
26
|
-
|
|
27
25
|
import "url";
|
|
28
26
|
|
|
29
|
-
import "../../../vendor/Package.10.mjs";
|
|
30
|
-
|
|
31
27
|
import "util";
|
|
32
28
|
|
|
33
29
|
import "../base/abstracts/Exception.mjs";
|