lakutata 2.0.98 → 2.0.100
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 +5 -7
- package/com/cacher.mjs +5 -7
- package/com/database.cjs +4 -6
- package/com/database.mjs +4 -6
- package/com/docker.cjs +18 -20
- package/com/docker.mjs +6 -8
- package/com/entrypoint.cjs +6 -8
- package/com/entrypoint.mjs +6 -8
- package/com/logger.cjs +5 -7
- package/com/logger.mjs +5 -7
- package/com/monitor.cjs +5 -7
- package/com/monitor.mjs +5 -7
- package/decorator/asst.cjs +4 -4
- package/decorator/asst.mjs +4 -4
- package/decorator/ctrl.cjs +5 -5
- package/decorator/ctrl.mjs +5 -5
- package/decorator/di.cjs +4 -4
- package/decorator/di.mjs +4 -4
- package/decorator/dto.cjs +4 -4
- package/decorator/dto.mjs +4 -4
- package/decorator/orm.cjs +1 -1
- package/decorator/orm.mjs +1 -1
- package/dtos.cjs +4 -4
- package/dtos.mjs +4 -4
- package/helper.cjs +21 -23
- package/helper.mjs +5 -7
- package/lakutata.cjs +7 -9
- package/lakutata.mjs +7 -9
- package/orm.cjs +1 -1
- package/orm.mjs +1 -1
- package/package.json +1 -1
- package/provider/database.cjs +4 -6
- package/provider/database.mjs +4 -6
- package/provider/passwordHash.cjs +4 -6
- package/provider/passwordHash.mjs +4 -6
- package/src/components/Database.cjs +4 -6
- package/src/components/Database.mjs +4 -6
- package/src/components/Logger.cjs +4 -6
- package/src/components/Logger.mjs +4 -6
- package/src/components/cacher/Cacher.cjs +10 -12
- package/src/components/cacher/Cacher.mjs +4 -6
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +2 -2
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +2 -2
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +6 -6
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +6 -6
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +19 -19
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +16 -16
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +6 -6
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +17 -17
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +14 -14
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +6 -6
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +6 -6
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +26 -26
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +10 -10
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +10 -10
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.cjs +4 -4
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.mjs +4 -4
- package/src/components/cacher/interfaces/CacherOptions.cjs +1 -1
- package/src/components/cacher/interfaces/CacherOptions.mjs +1 -1
- package/src/components/cacher/lib/IsDriverPackageInstalled.cjs +5 -5
- package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +5 -5
- package/src/components/cacher/options/FileCacheOptions.cjs +4 -4
- package/src/components/cacher/options/FileCacheOptions.mjs +4 -4
- package/src/components/cacher/options/MemcacheCacheOptions.cjs +4 -4
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +4 -4
- package/src/components/cacher/options/MongoCacheOptions.cjs +4 -4
- package/src/components/cacher/options/MongoCacheOptions.mjs +4 -4
- package/src/components/cacher/options/MysqlCacheOptions.cjs +4 -4
- package/src/components/cacher/options/MysqlCacheOptions.mjs +15 -15
- package/src/components/cacher/options/PostgresCacheOptions.cjs +4 -4
- package/src/components/cacher/options/PostgresCacheOptions.mjs +4 -4
- package/src/components/cacher/options/RedisCacheOptions.cjs +4 -4
- package/src/components/cacher/options/RedisCacheOptions.mjs +4 -4
- package/src/components/cacher/options/SqliteCacheOptions.cjs +4 -4
- package/src/components/cacher/options/SqliteCacheOptions.mjs +10 -10
- package/src/components/cacher/types/CacheStoreOptions.cjs +1 -1
- package/src/components/cacher/types/CacheStoreOptions.mjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.cjs +6 -8
- package/src/components/docker/ConnectionOptionsBuilder.mjs +6 -8
- package/src/components/docker/Docker.cjs +3 -5
- package/src/components/docker/Docker.mjs +3 -5
- package/src/components/docker/exceptions/DockerConnectionException.cjs +4 -4
- package/src/components/docker/exceptions/DockerConnectionException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageBuildException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageBuildException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageImportException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageImportException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageNotFoundException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageNotFoundException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImagePullException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImagePullException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImagePushException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImagePushException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.mjs +4 -4
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.cjs +4 -4
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.mjs +4 -4
- package/src/components/docker/interfaces/IDockerConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerKeyObject.cjs +1 -1
- package/src/components/docker/interfaces/IDockerKeyObject.mjs +1 -1
- package/src/components/docker/interfaces/IDockerSSHConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerSSHConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerSocketConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerSocketConnectionOptions.mjs +1 -1
- package/src/components/docker/lib/DockerContainer.cjs +9 -11
- package/src/components/docker/lib/DockerContainer.mjs +9 -11
- package/src/components/docker/lib/DockerContainerTTY.cjs +5 -7
- package/src/components/docker/lib/DockerContainerTTY.mjs +5 -7
- package/src/components/docker/lib/DockerImage.cjs +3 -5
- package/src/components/docker/lib/DockerImage.mjs +7 -9
- package/src/components/docker/lib/ParseEnvToRecord.cjs +1 -1
- package/src/components/docker/lib/ParseEnvToRecord.mjs +1 -1
- package/src/components/docker/lib/ParseRepositoryTag.cjs +1 -1
- package/src/components/docker/lib/ParseRepositoryTag.mjs +1 -1
- package/src/components/docker/options/DockerPruneOptions.cjs +4 -4
- package/src/components/docker/options/DockerPruneOptions.mjs +4 -4
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +4 -4
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +4 -4
- package/src/components/docker/options/container/ContainerCommitOptions.cjs +4 -4
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +4 -4
- package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +4 -4
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +4 -4
- package/src/components/docker/options/container/ContainerExecOptions.cjs +4 -4
- package/src/components/docker/options/container/ContainerExecOptions.mjs +4 -4
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +4 -4
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +4 -4
- package/src/components/docker/options/container/ContainerKillOptions.cjs +4 -4
- package/src/components/docker/options/container/ContainerKillOptions.mjs +8 -8
- package/src/components/docker/options/container/ContainerLogsOptions.cjs +4 -4
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +4 -4
- package/src/components/docker/options/container/ContainerRemoveOptions.cjs +4 -4
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +8 -8
- package/src/components/docker/options/container/ContainerSettingOptions.cjs +4 -4
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +4 -4
- package/src/components/docker/options/container/ContainerStopOptions.cjs +4 -4
- package/src/components/docker/options/container/ContainerStopOptions.mjs +7 -7
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +4 -4
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +4 -4
- package/src/components/docker/options/image/ImageBuildOptions.cjs +21 -21
- package/src/components/docker/options/image/ImageBuildOptions.mjs +4 -4
- package/src/components/docker/options/image/ImageExportOptions.cjs +4 -4
- package/src/components/docker/options/image/ImageExportOptions.mjs +10 -10
- package/src/components/docker/options/image/ImageImportOptions.cjs +4 -4
- package/src/components/docker/options/image/ImageImportOptions.mjs +4 -4
- package/src/components/docker/options/image/ImagePullOptions.cjs +4 -4
- package/src/components/docker/options/image/ImagePullOptions.mjs +4 -4
- package/src/components/docker/options/image/ImagePushOptions.cjs +4 -4
- package/src/components/docker/options/image/ImagePushOptions.mjs +4 -4
- package/src/components/docker/options/image/ImageRemoveOptions.cjs +4 -4
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +4 -4
- package/src/components/docker/options/image/ImageTagOptions.cjs +4 -4
- package/src/components/docker/options/image/ImageTagOptions.mjs +4 -4
- package/src/components/docker/options/network/NetworkCreateOptions.cjs +4 -4
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +11 -11
- package/src/components/docker/types/ContainerBind.cjs +1 -1
- package/src/components/docker/types/ContainerBind.mjs +1 -1
- package/src/components/docker/types/ContainerCapability.cjs +1 -1
- package/src/components/docker/types/ContainerCapability.mjs +1 -1
- package/src/components/docker/types/ContainerConfig.cjs +1 -1
- package/src/components/docker/types/ContainerConfig.mjs +1 -1
- package/src/components/docker/types/ContainerDevice.cjs +1 -1
- package/src/components/docker/types/ContainerDevice.mjs +1 -1
- package/src/components/docker/types/ContainerNetwork.cjs +1 -1
- package/src/components/docker/types/ContainerNetwork.mjs +1 -1
- package/src/components/docker/types/ContainerPort.cjs +1 -1
- package/src/components/docker/types/ContainerPort.mjs +1 -1
- package/src/components/docker/types/ContainerRestartPolicy.cjs +1 -1
- package/src/components/docker/types/ContainerRestartPolicy.mjs +1 -1
- package/src/components/docker/types/ContainerState.cjs +1 -1
- package/src/components/docker/types/ContainerState.mjs +1 -1
- package/src/components/docker/types/ContainerStats.cjs +1 -1
- package/src/components/docker/types/ContainerStats.mjs +1 -1
- package/src/components/docker/types/DockerOutputCallback.cjs +1 -1
- package/src/components/docker/types/DockerOutputCallback.mjs +1 -1
- package/src/components/docker/types/ImageConfig.cjs +1 -1
- package/src/components/docker/types/ImageConfig.mjs +1 -1
- package/src/components/docker/types/ImageExposePort.cjs +1 -1
- package/src/components/docker/types/ImageExposePort.mjs +1 -1
- package/src/components/docker/types/NetworkInfo.cjs +1 -1
- package/src/components/docker/types/NetworkInfo.mjs +1 -1
- package/src/components/entrypoint/Entrypoint.cjs +57 -59
- package/src/components/entrypoint/Entrypoint.mjs +5 -7
- package/src/components/entrypoint/exceptions/AccessDenyException.cjs +4 -4
- package/src/components/entrypoint/exceptions/AccessDenyException.mjs +4 -4
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +4 -4
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +4 -4
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.cjs +4 -4
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.mjs +4 -4
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.cjs +4 -4
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.mjs +4 -4
- package/src/components/entrypoint/lib/AccessControl.cjs +10 -12
- package/src/components/entrypoint/lib/AccessControl.mjs +16 -18
- package/src/components/entrypoint/lib/AccessControlRule.cjs +4 -6
- package/src/components/entrypoint/lib/AccessControlRule.mjs +4 -6
- package/src/components/entrypoint/lib/Controller.cjs +4 -6
- package/src/components/entrypoint/lib/Controller.mjs +4 -6
- package/src/components/monitor/AliveMonitor.cjs +4 -6
- package/src/components/monitor/AliveMonitor.mjs +4 -6
- package/src/components/monitor/CpuMonitor.cjs +5 -7
- package/src/components/monitor/CpuMonitor.mjs +5 -7
- package/src/components/monitor/EventLoopMonitor.cjs +4 -6
- package/src/components/monitor/EventLoopMonitor.mjs +4 -6
- package/src/components/monitor/HttpRequestMonitor.cjs +5 -7
- package/src/components/monitor/HttpRequestMonitor.mjs +5 -7
- package/src/components/monitor/MemoryMonitor.cjs +5 -7
- package/src/components/monitor/MemoryMonitor.mjs +5 -7
- package/src/components/monitor/interfaces/ICpuMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/ICpuMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IMemoryMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IMemoryMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IMonitor.cjs +1 -1
- package/src/components/monitor/interfaces/IMonitor.mjs +1 -1
- package/src/constants/DIMetadataKey.cjs +1 -1
- package/src/constants/DIMetadataKey.mjs +1 -1
- package/src/constants/DTOMetadataKey.cjs +1 -1
- package/src/constants/DTOMetadataKey.mjs +1 -1
- package/src/decorators/asst/After.cjs +5 -5
- package/src/decorators/asst/After.mjs +8 -8
- package/src/decorators/asst/Before.cjs +5 -5
- package/src/decorators/asst/Before.mjs +8 -8
- package/src/decorators/ctrl/CLIAction.cjs +5 -5
- package/src/decorators/ctrl/CLIAction.mjs +11 -11
- package/src/decorators/ctrl/HTTPAction.cjs +5 -5
- package/src/decorators/ctrl/HTTPAction.mjs +9 -9
- package/src/decorators/ctrl/ServiceAction.cjs +7 -7
- package/src/decorators/ctrl/ServiceAction.mjs +9 -9
- package/src/decorators/ctrl/http/DELETE.cjs +5 -5
- package/src/decorators/ctrl/http/DELETE.mjs +5 -5
- package/src/decorators/ctrl/http/GET.cjs +5 -5
- package/src/decorators/ctrl/http/GET.mjs +5 -5
- package/src/decorators/ctrl/http/HEAD.cjs +5 -5
- package/src/decorators/ctrl/http/HEAD.mjs +5 -5
- package/src/decorators/ctrl/http/OPTIONS.cjs +5 -5
- package/src/decorators/ctrl/http/OPTIONS.mjs +8 -8
- package/src/decorators/ctrl/http/PATCH.cjs +5 -5
- package/src/decorators/ctrl/http/PATCH.mjs +8 -8
- package/src/decorators/ctrl/http/POST.cjs +5 -5
- package/src/decorators/ctrl/http/POST.mjs +8 -8
- package/src/decorators/ctrl/http/PUT.cjs +5 -5
- package/src/decorators/ctrl/http/PUT.mjs +8 -8
- package/src/decorators/di/Autoload.cjs +1 -1
- package/src/decorators/di/Autoload.mjs +1 -1
- package/src/decorators/di/Configurable.cjs +3 -3
- package/src/decorators/di/Configurable.mjs +3 -3
- package/src/decorators/di/Inject.cjs +9 -9
- package/src/decorators/di/Inject.mjs +14 -14
- package/src/decorators/di/Lifetime.cjs +4 -4
- package/src/decorators/di/Lifetime.mjs +10 -10
- package/src/decorators/dto/Accept.cjs +4 -4
- package/src/decorators/dto/Accept.mjs +4 -4
- package/src/decorators/dto/Expect.cjs +4 -4
- package/src/decorators/dto/Expect.mjs +8 -8
- package/src/decorators/dto/IndexSignature.cjs +4 -4
- package/src/decorators/dto/IndexSignature.mjs +8 -8
- package/src/decorators/dto/Return.cjs +4 -4
- package/src/decorators/dto/Return.mjs +4 -4
- package/src/decorators/orm/AfterInsert.cjs +1 -1
- package/src/decorators/orm/AfterInsert.mjs +1 -1
- package/src/decorators/orm/AfterLoad.cjs +1 -1
- package/src/decorators/orm/AfterLoad.mjs +1 -1
- package/src/decorators/orm/AfterRecover.cjs +1 -1
- package/src/decorators/orm/AfterRecover.mjs +1 -1
- package/src/decorators/orm/AfterRemove.cjs +1 -1
- package/src/decorators/orm/AfterRemove.mjs +1 -1
- package/src/decorators/orm/AfterSoftRemove.cjs +1 -1
- package/src/decorators/orm/AfterSoftRemove.mjs +1 -1
- package/src/decorators/orm/AfterUpdate.cjs +1 -1
- package/src/decorators/orm/AfterUpdate.mjs +1 -1
- package/src/decorators/orm/BeforeInsert.cjs +1 -1
- package/src/decorators/orm/BeforeInsert.mjs +1 -1
- package/src/decorators/orm/BeforeRecover.cjs +1 -1
- package/src/decorators/orm/BeforeRecover.mjs +1 -1
- package/src/decorators/orm/BeforeRemove.cjs +1 -1
- package/src/decorators/orm/BeforeRemove.mjs +1 -1
- package/src/decorators/orm/BeforeSoftRemove.cjs +1 -1
- package/src/decorators/orm/BeforeSoftRemove.mjs +1 -1
- package/src/decorators/orm/BeforeUpdate.cjs +1 -1
- package/src/decorators/orm/BeforeUpdate.mjs +1 -1
- package/src/decorators/orm/Check.cjs +1 -1
- package/src/decorators/orm/Check.mjs +1 -1
- package/src/decorators/orm/ChildEntity.cjs +1 -1
- package/src/decorators/orm/ChildEntity.mjs +1 -1
- package/src/decorators/orm/Column.cjs +1 -1
- package/src/decorators/orm/Column.mjs +1 -1
- package/src/decorators/orm/CreateDateColumn.cjs +1 -1
- package/src/decorators/orm/CreateDateColumn.mjs +1 -1
- package/src/decorators/orm/DeleteDateColumn.cjs +1 -1
- package/src/decorators/orm/DeleteDateColumn.mjs +1 -1
- package/src/decorators/orm/Entity.cjs +1 -1
- package/src/decorators/orm/Entity.mjs +1 -1
- package/src/decorators/orm/EventSubscriber.cjs +1 -1
- package/src/decorators/orm/EventSubscriber.mjs +1 -1
- package/src/decorators/orm/Exclusion.cjs +1 -1
- package/src/decorators/orm/Exclusion.mjs +1 -1
- package/src/decorators/orm/Generated.cjs +1 -1
- package/src/decorators/orm/Generated.mjs +1 -1
- package/src/decorators/orm/Index.cjs +1 -1
- package/src/decorators/orm/Index.mjs +1 -1
- package/src/decorators/orm/JoinColumn.cjs +1 -1
- package/src/decorators/orm/JoinColumn.mjs +1 -1
- package/src/decorators/orm/JoinTable.cjs +1 -1
- package/src/decorators/orm/JoinTable.mjs +1 -1
- package/src/decorators/orm/ManyToMany.cjs +1 -1
- package/src/decorators/orm/ManyToMany.mjs +1 -1
- package/src/decorators/orm/ManyToOne.cjs +1 -1
- package/src/decorators/orm/ManyToOne.mjs +1 -1
- package/src/decorators/orm/ObjectIdColumn.cjs +1 -1
- package/src/decorators/orm/ObjectIdColumn.mjs +1 -1
- package/src/decorators/orm/OneToMany.cjs +1 -1
- package/src/decorators/orm/OneToMany.mjs +1 -1
- package/src/decorators/orm/OneToOne.cjs +1 -1
- package/src/decorators/orm/OneToOne.mjs +1 -1
- package/src/decorators/orm/PrimaryColumn.cjs +1 -1
- package/src/decorators/orm/PrimaryColumn.mjs +1 -1
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +1 -1
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +1 -1
- package/src/decorators/orm/RelationId.cjs +1 -1
- package/src/decorators/orm/RelationId.mjs +1 -1
- package/src/decorators/orm/TableInheritance.cjs +1 -1
- package/src/decorators/orm/TableInheritance.mjs +1 -1
- package/src/decorators/orm/Tree.cjs +1 -1
- package/src/decorators/orm/Tree.mjs +1 -1
- package/src/decorators/orm/TreeChildren.cjs +1 -1
- package/src/decorators/orm/TreeChildren.mjs +1 -1
- package/src/decorators/orm/TreeLevelColumn.cjs +1 -1
- package/src/decorators/orm/TreeLevelColumn.mjs +1 -1
- package/src/decorators/orm/TreeParent.cjs +1 -1
- package/src/decorators/orm/TreeParent.mjs +1 -1
- package/src/decorators/orm/Unique.cjs +1 -1
- package/src/decorators/orm/Unique.mjs +1 -1
- package/src/decorators/orm/UpdateDateColumn.cjs +1 -1
- package/src/decorators/orm/UpdateDateColumn.mjs +1 -1
- package/src/decorators/orm/VersionColumn.cjs +1 -1
- package/src/decorators/orm/VersionColumn.mjs +1 -1
- package/src/decorators/orm/ViewColumn.cjs +1 -1
- package/src/decorators/orm/ViewColumn.mjs +1 -1
- package/src/decorators/orm/ViewEntity.cjs +1 -1
- package/src/decorators/orm/ViewEntity.mjs +1 -1
- package/src/decorators/orm/VirtualColumn.cjs +1 -1
- package/src/decorators/orm/VirtualColumn.mjs +1 -1
- package/src/dto/PaginationResultDTO.cjs +4 -4
- package/src/dto/PaginationResultDTO.mjs +13 -13
- package/src/dto/PaginationSearchDTO.cjs +4 -4
- package/src/dto/PaginationSearchDTO.mjs +9 -9
- package/src/exceptions/DestroyRuntimeContainerException.cjs +4 -4
- package/src/exceptions/DestroyRuntimeContainerException.mjs +4 -4
- package/src/exceptions/InvalidActionPatternDepthException.cjs +4 -4
- package/src/exceptions/InvalidActionPatternDepthException.mjs +4 -4
- package/src/exceptions/InvalidAssistantFunctionTypeException.cjs +4 -4
- package/src/exceptions/InvalidAssistantFunctionTypeException.mjs +4 -4
- package/src/exceptions/InvalidObjectTypeException.cjs +4 -4
- package/src/exceptions/InvalidObjectTypeException.mjs +4 -4
- package/src/exceptions/MethodNotFoundException.cjs +4 -4
- package/src/exceptions/MethodNotFoundException.mjs +4 -4
- package/src/exceptions/alias/AliasExistsException.cjs +4 -4
- package/src/exceptions/alias/AliasExistsException.mjs +6 -6
- package/src/exceptions/alias/AliasNotFoundException.cjs +4 -4
- package/src/exceptions/alias/AliasNotFoundException.mjs +4 -4
- package/src/exceptions/alias/InvalidAliasNameException.cjs +4 -4
- package/src/exceptions/alias/InvalidAliasNameException.mjs +4 -4
- package/src/exceptions/di/DependencyInjectionException.cjs +4 -4
- package/src/exceptions/di/DependencyInjectionException.mjs +4 -4
- package/src/exceptions/di/LifetimeLockedException.cjs +4 -4
- package/src/exceptions/di/LifetimeLockedException.mjs +4 -4
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs +4 -4
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.mjs +4 -4
- package/src/exceptions/dto/InvalidMethodAcceptException.cjs +4 -4
- package/src/exceptions/dto/InvalidMethodAcceptException.mjs +4 -4
- package/src/exceptions/dto/InvalidMethodReturnException.cjs +4 -4
- package/src/exceptions/dto/InvalidMethodReturnException.mjs +4 -4
- package/src/exceptions/dto/InvalidValueException.cjs +4 -4
- package/src/exceptions/dto/InvalidValueException.mjs +4 -4
- package/src/interfaces/IBaseObjectConstructor.cjs +1 -1
- package/src/interfaces/IBaseObjectConstructor.mjs +1 -1
- package/src/interfaces/IConstructor.cjs +1 -1
- package/src/interfaces/IConstructor.mjs +1 -1
- package/src/interfaces/IPatRun.cjs +1 -1
- package/src/interfaces/IPatRun.mjs +1 -1
- package/src/lib/base/BaseObject.cjs +1 -3
- package/src/lib/base/BaseObject.mjs +1 -3
- package/src/lib/base/Context.cjs +4 -4
- package/src/lib/base/Context.mjs +11 -11
- package/src/lib/base/EventEmitter.cjs +1 -1
- package/src/lib/base/EventEmitter.mjs +1 -1
- package/src/lib/base/abstracts/Exception.cjs +119 -9
- package/src/lib/base/abstracts/Exception.mjs +124 -14
- package/src/lib/base/async-constructor/Append.cjs +1 -1
- package/src/lib/base/async-constructor/Append.mjs +1 -1
- package/src/lib/base/async-constructor/AsyncConstructor.cjs +1 -1
- package/src/lib/base/async-constructor/AsyncConstructor.mjs +1 -1
- package/src/lib/base/internal/ActionOptions.cjs +4 -4
- package/src/lib/base/internal/ActionOptions.mjs +4 -4
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +3 -5
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +3 -5
- package/src/lib/base/internal/BasicInfo.cjs +7 -35
- package/src/lib/base/internal/BasicInfo.mjs +4 -34
- package/src/lib/base/internal/CamelCase.cjs +1 -1
- package/src/lib/base/internal/CamelCase.mjs +1 -1
- package/src/lib/base/internal/ConfigurableRecordsInjection.cjs +1 -1
- package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +1 -1
- package/src/lib/base/internal/ConstructorSymbol.cjs +1 -1
- package/src/lib/base/internal/ConstructorSymbol.mjs +1 -1
- package/src/lib/base/internal/ControllerEntrypoint.cjs +14 -14
- package/src/lib/base/internal/ControllerEntrypoint.mjs +5 -5
- package/src/lib/base/internal/DataValidator.cjs +3 -3
- package/src/lib/base/internal/DataValidator.mjs +12 -12
- package/src/lib/base/internal/DatabaseSymbol.cjs +1 -1
- package/src/lib/base/internal/DatabaseSymbol.mjs +1 -1
- package/src/lib/base/internal/FlexibleDTO.cjs +4 -4
- package/src/lib/base/internal/FlexibleDTO.mjs +8 -8
- package/src/lib/base/internal/GetActionDTOAndOptions.cjs +4 -4
- package/src/lib/base/internal/GetActionDTOAndOptions.mjs +4 -4
- package/src/lib/base/internal/IEEE754.cjs +1 -1
- package/src/lib/base/internal/IEEE754.mjs +1 -1
- package/src/lib/base/internal/MethodAssistantFunction.cjs +3 -3
- package/src/lib/base/internal/MethodAssistantFunction.mjs +3 -3
- package/src/lib/base/internal/MethodValidation.cjs +3 -3
- package/src/lib/base/internal/MethodValidation.mjs +3 -3
- package/src/lib/base/internal/ModuleConfigLoader.cjs +3 -5
- package/src/lib/base/internal/ModuleConfigLoader.mjs +19 -21
- package/src/lib/base/internal/ObjectConfiguration.cjs +3 -3
- package/src/lib/base/internal/ObjectConfiguration.mjs +3 -3
- package/src/lib/base/internal/ObjectContainer.cjs +1 -1
- package/src/lib/base/internal/ObjectContainer.mjs +1 -1
- package/src/lib/base/internal/ObjectInjection.cjs +1 -1
- package/src/lib/base/internal/ObjectInjection.mjs +1 -1
- package/src/lib/base/internal/ObjectLifetime.cjs +4 -4
- package/src/lib/base/internal/ObjectLifetime.mjs +4 -4
- package/src/lib/base/internal/ObjectSchemaValidation.cjs +3 -3
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +3 -3
- package/src/lib/base/internal/ObjectType.cjs +4 -6
- package/src/lib/base/internal/ObjectType.mjs +4 -6
- package/src/lib/base/internal/ObjectWeakRefs.cjs +1 -1
- package/src/lib/base/internal/ObjectWeakRefs.mjs +1 -1
- package/src/lib/base/internal/PatternManager.cjs +1 -1
- package/src/lib/base/internal/PatternManager.mjs +1 -1
- package/src/lib/base/internal/StringifyPattern.cjs +2 -2
- package/src/lib/base/internal/StringifyPattern.mjs +2 -2
- package/src/lib/base/internal/ThrowWarning.cjs +1 -1
- package/src/lib/base/internal/ThrowWarning.mjs +1 -1
- package/src/lib/context/CLIContext.cjs +4 -4
- package/src/lib/context/CLIContext.mjs +4 -4
- package/src/lib/context/HTTPContext.cjs +4 -4
- package/src/lib/context/HTTPContext.mjs +9 -9
- package/src/lib/context/ServiceContext.cjs +4 -4
- package/src/lib/context/ServiceContext.mjs +4 -4
- package/src/lib/core/Alias.cjs +46 -46
- package/src/lib/core/Alias.mjs +32 -32
- package/src/lib/core/Application.cjs +6 -8
- package/src/lib/core/Application.mjs +6 -8
- package/src/lib/core/Component.cjs +4 -6
- package/src/lib/core/Component.mjs +4 -6
- package/src/lib/core/Container.cjs +1 -3
- package/src/lib/core/Container.mjs +1 -3
- package/src/lib/core/DTO.cjs +3 -3
- package/src/lib/core/DTO.mjs +3 -3
- package/src/lib/core/Module.cjs +8 -10
- package/src/lib/core/Module.mjs +3 -5
- package/src/lib/core/Provider.cjs +4 -6
- package/src/lib/core/Provider.mjs +4 -6
- package/src/lib/core/Time.cjs +52 -5
- package/src/lib/core/Time.mjs +52 -5
- package/src/lib/helpers/ArrayToSet.cjs +1 -1
- package/src/lib/helpers/ArrayToSet.mjs +1 -1
- package/src/lib/helpers/As.cjs +1 -1
- package/src/lib/helpers/As.mjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToIterable.cjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToIterable.mjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToStream.cjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToStream.mjs +1 -1
- package/src/lib/helpers/Delay.cjs +1 -1
- package/src/lib/helpers/Delay.mjs +1 -1
- package/src/lib/helpers/DevNull.cjs +1 -1
- package/src/lib/helpers/DevNull.mjs +1 -1
- package/src/lib/helpers/GetObjectNestingDepth.cjs +1 -1
- package/src/lib/helpers/GetObjectNestingDepth.mjs +1 -1
- package/src/lib/helpers/GetObjectPropertyPaths.cjs +1 -1
- package/src/lib/helpers/GetObjectPropertyPaths.mjs +1 -1
- package/src/lib/helpers/Glob.cjs +1 -1
- package/src/lib/helpers/Glob.mjs +1 -1
- package/src/lib/helpers/GraceExit.cjs +1 -1
- package/src/lib/helpers/GraceExit.mjs +1 -1
- package/src/lib/helpers/HexToIEEE754.cjs +1 -1
- package/src/lib/helpers/HexToIEEE754.mjs +1 -1
- package/src/lib/helpers/HexToSigned.cjs +1 -1
- package/src/lib/helpers/HexToSigned.mjs +1 -1
- package/src/lib/helpers/HexToUnsigned.cjs +1 -1
- package/src/lib/helpers/HexToUnsigned.mjs +1 -1
- package/src/lib/helpers/IEEE754ToHex.cjs +1 -1
- package/src/lib/helpers/IEEE754ToHex.mjs +1 -1
- package/src/lib/helpers/IPToolkit.cjs +1 -1
- package/src/lib/helpers/IPToolkit.mjs +1 -1
- package/src/lib/helpers/IsAbortError.cjs +1 -1
- package/src/lib/helpers/IsAbortError.mjs +1 -1
- package/src/lib/helpers/IsEmptyObject.cjs +1 -1
- package/src/lib/helpers/IsEmptyObject.mjs +1 -1
- package/src/lib/helpers/IsExists.cjs +1 -1
- package/src/lib/helpers/IsExists.mjs +1 -1
- package/src/lib/helpers/IsGlobString.cjs +1 -1
- package/src/lib/helpers/IsGlobString.mjs +1 -1
- package/src/lib/helpers/IsHtml.cjs +1 -1
- package/src/lib/helpers/IsHtml.mjs +1 -1
- package/src/lib/helpers/IsNativeFunction.cjs +1 -1
- package/src/lib/helpers/IsNativeFunction.mjs +1 -1
- package/src/lib/helpers/IsPath.cjs +1 -1
- package/src/lib/helpers/IsPath.mjs +1 -1
- package/src/lib/helpers/IsPromise.cjs +1 -1
- package/src/lib/helpers/IsPromise.mjs +1 -1
- package/src/lib/helpers/IsPromiseLike.cjs +1 -1
- package/src/lib/helpers/IsPromiseLike.mjs +1 -1
- package/src/lib/helpers/IsSymbol.cjs +4 -4
- package/src/lib/helpers/IsSymbol.mjs +4 -4
- package/src/lib/helpers/IsXML.cjs +1 -1
- package/src/lib/helpers/IsXML.mjs +1 -1
- package/src/lib/helpers/MD5.cjs +2 -2
- package/src/lib/helpers/MD5.mjs +2 -2
- package/src/lib/helpers/MergeArray.cjs +1 -1
- package/src/lib/helpers/MergeArray.mjs +1 -1
- package/src/lib/helpers/MergeMap.cjs +1 -1
- package/src/lib/helpers/MergeMap.mjs +1 -1
- package/src/lib/helpers/MergeSet.cjs +1 -1
- package/src/lib/helpers/MergeSet.mjs +1 -1
- package/src/lib/helpers/NoCase.cjs +1 -1
- package/src/lib/helpers/NoCase.mjs +1 -1
- package/src/lib/helpers/NonceStr.cjs +1 -1
- package/src/lib/helpers/NonceStr.mjs +1 -1
- package/src/lib/helpers/ObjectConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectHash.cjs +1 -1
- package/src/lib/helpers/ObjectHash.mjs +1 -1
- package/src/lib/helpers/ObjectParentConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectParentConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectParentConstructors.cjs +1 -1
- package/src/lib/helpers/ObjectParentConstructors.mjs +1 -1
- package/src/lib/helpers/ObjectPath.cjs +1 -1
- package/src/lib/helpers/ObjectPath.mjs +1 -1
- package/src/lib/helpers/ObjectPrototype.cjs +1 -1
- package/src/lib/helpers/ObjectPrototype.mjs +1 -1
- package/src/lib/helpers/ObjectToMap.cjs +1 -1
- package/src/lib/helpers/ObjectToMap.mjs +1 -1
- package/src/lib/helpers/Paginator.cjs +1 -1
- package/src/lib/helpers/Paginator.mjs +1 -1
- package/src/lib/helpers/RandomString.cjs +1 -1
- package/src/lib/helpers/RandomString.mjs +1 -1
- package/src/lib/helpers/SHA1.cjs +2 -2
- package/src/lib/helpers/SHA1.mjs +2 -2
- package/src/lib/helpers/SHA256.cjs +2 -2
- package/src/lib/helpers/SHA256.mjs +2 -2
- package/src/lib/helpers/SetToArray.cjs +1 -1
- package/src/lib/helpers/SetToArray.mjs +1 -1
- package/src/lib/helpers/SignedToHex.cjs +1 -1
- package/src/lib/helpers/SignedToHex.mjs +1 -1
- package/src/lib/helpers/SortArray.cjs +2 -2
- package/src/lib/helpers/SortArray.mjs +2 -2
- package/src/lib/helpers/SortKeys.cjs +1 -1
- package/src/lib/helpers/SortKeys.mjs +1 -1
- package/src/lib/helpers/SortObject.cjs +1 -1
- package/src/lib/helpers/SortObject.mjs +1 -1
- package/src/lib/helpers/Statistics.cjs +2 -2
- package/src/lib/helpers/Statistics.mjs +2 -2
- package/src/lib/helpers/Templating.cjs +1 -1
- package/src/lib/helpers/Templating.mjs +1 -1
- package/src/lib/helpers/URLBuilder.cjs +1 -1
- package/src/lib/helpers/URLBuilder.mjs +1 -1
- package/src/lib/helpers/UUID.cjs +2 -2
- package/src/lib/helpers/UUID.mjs +2 -2
- package/src/lib/helpers/UniqueArray.cjs +1 -1
- package/src/lib/helpers/UniqueArray.mjs +1 -1
- package/src/lib/helpers/UnsignedToHex.cjs +1 -1
- package/src/lib/helpers/UnsignedToHex.mjs +1 -1
- package/src/lib/ioc/DependencyInjectionContainer.cjs +12 -12
- package/src/lib/ioc/DependencyInjectionContainer.mjs +7 -7
- package/src/lib/ioc/Errors.cjs +3 -3
- package/src/lib/ioc/Errors.mjs +8 -8
- package/src/lib/ioc/FunctionTokenizer.cjs +1 -1
- package/src/lib/ioc/FunctionTokenizer.mjs +1 -1
- package/src/lib/ioc/InjectionMode.cjs +1 -1
- package/src/lib/ioc/InjectionMode.mjs +1 -1
- package/src/lib/ioc/Lifetime.cjs +1 -1
- package/src/lib/ioc/Lifetime.mjs +1 -1
- package/src/lib/ioc/ListModules.cjs +107 -107
- package/src/lib/ioc/ListModules.mjs +4 -4
- package/src/lib/ioc/LoadModules.cjs +3 -3
- package/src/lib/ioc/LoadModules.mjs +39 -39
- package/src/lib/ioc/ParamParser.cjs +1 -1
- package/src/lib/ioc/ParamParser.mjs +1 -1
- package/src/lib/ioc/Resolvers.cjs +4 -4
- package/src/lib/ioc/Resolvers.mjs +7 -7
- package/src/lib/ioc/Utils.cjs +7 -7
- package/src/lib/ioc/Utils.mjs +3 -3
- package/src/lib/validation/VLD.cjs +3 -3
- package/src/lib/validation/VLD.mjs +3 -3
- package/src/lib/validation/interfaces/AlternativesSchema.cjs +1 -1
- package/src/lib/validation/interfaces/AlternativesSchema.mjs +1 -1
- package/src/lib/validation/interfaces/AnySchema.cjs +1 -1
- package/src/lib/validation/interfaces/AnySchema.mjs +1 -1
- package/src/lib/validation/interfaces/ArraySchema.cjs +1 -1
- package/src/lib/validation/interfaces/ArraySchema.mjs +1 -1
- package/src/lib/validation/interfaces/Base64Options.cjs +1 -1
- package/src/lib/validation/interfaces/Base64Options.mjs +1 -1
- package/src/lib/validation/interfaces/BaseValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/BaseValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/BigIntSchema.cjs +1 -1
- package/src/lib/validation/interfaces/BigIntSchema.mjs +1 -1
- package/src/lib/validation/interfaces/BinarySchema.cjs +1 -1
- package/src/lib/validation/interfaces/BinarySchema.mjs +1 -1
- package/src/lib/validation/interfaces/BooleanSchema.cjs +1 -1
- package/src/lib/validation/interfaces/BooleanSchema.mjs +1 -1
- package/src/lib/validation/interfaces/CustomHelpers.cjs +1 -1
- package/src/lib/validation/interfaces/CustomHelpers.mjs +1 -1
- package/src/lib/validation/interfaces/DataUriOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DataUriOptions.mjs +1 -1
- package/src/lib/validation/interfaces/DateSchema.cjs +1 -1
- package/src/lib/validation/interfaces/DateSchema.mjs +1 -1
- package/src/lib/validation/interfaces/DependencyOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DependencyOptions.mjs +1 -1
- package/src/lib/validation/interfaces/DomainOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DomainOptions.mjs +1 -1
- package/src/lib/validation/interfaces/EmailOptions.cjs +1 -1
- package/src/lib/validation/interfaces/EmailOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorFormattingOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorFormattingOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorReport.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorReport.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ExtensionFlag.cjs +1 -1
- package/src/lib/validation/interfaces/ExtensionFlag.mjs +1 -1
- package/src/lib/validation/interfaces/ExternalHelpers.cjs +1 -1
- package/src/lib/validation/interfaces/ExternalHelpers.mjs +1 -1
- package/src/lib/validation/interfaces/FunctionSchema.cjs +1 -1
- package/src/lib/validation/interfaces/FunctionSchema.mjs +1 -1
- package/src/lib/validation/interfaces/GuidOptions.cjs +1 -1
- package/src/lib/validation/interfaces/GuidOptions.mjs +1 -1
- package/src/lib/validation/interfaces/HexOptions.cjs +1 -1
- package/src/lib/validation/interfaces/HexOptions.mjs +1 -1
- package/src/lib/validation/interfaces/HierarchySeparatorOptions.cjs +1 -1
- package/src/lib/validation/interfaces/HierarchySeparatorOptions.mjs +1 -1
- package/src/lib/validation/interfaces/IpOptions.cjs +1 -1
- package/src/lib/validation/interfaces/IpOptions.mjs +1 -1
- package/src/lib/validation/interfaces/LanguageMessageTemplate.cjs +1 -1
- package/src/lib/validation/interfaces/LanguageMessageTemplate.mjs +1 -1
- package/src/lib/validation/interfaces/LinkSchema.cjs +1 -1
- package/src/lib/validation/interfaces/LinkSchema.mjs +1 -1
- package/src/lib/validation/interfaces/NumberSchema.cjs +1 -1
- package/src/lib/validation/interfaces/NumberSchema.mjs +1 -1
- package/src/lib/validation/interfaces/ObjectPatternOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ObjectPatternOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ObjectSchema.cjs +1 -1
- package/src/lib/validation/interfaces/ObjectSchema.mjs +1 -1
- package/src/lib/validation/interfaces/Reference.cjs +1 -1
- package/src/lib/validation/interfaces/Reference.mjs +1 -1
- package/src/lib/validation/interfaces/ReferenceOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ReferenceOptions.mjs +1 -1
- package/src/lib/validation/interfaces/RenameOptions.cjs +1 -1
- package/src/lib/validation/interfaces/RenameOptions.mjs +1 -1
- package/src/lib/validation/interfaces/State.cjs +1 -1
- package/src/lib/validation/interfaces/State.mjs +1 -1
- package/src/lib/validation/interfaces/StringRegexOptions.cjs +1 -1
- package/src/lib/validation/interfaces/StringRegexOptions.mjs +1 -1
- package/src/lib/validation/interfaces/StringSchema.cjs +1 -1
- package/src/lib/validation/interfaces/StringSchema.mjs +1 -1
- package/src/lib/validation/interfaces/SwitchCases.cjs +1 -1
- package/src/lib/validation/interfaces/SwitchCases.mjs +1 -1
- package/src/lib/validation/interfaces/SwitchDefault.cjs +1 -1
- package/src/lib/validation/interfaces/SwitchDefault.mjs +1 -1
- package/src/lib/validation/interfaces/SymbolSchema.cjs +1 -1
- package/src/lib/validation/interfaces/SymbolSchema.mjs +1 -1
- package/src/lib/validation/interfaces/TopLevelDomainOptions.cjs +1 -1
- package/src/lib/validation/interfaces/TopLevelDomainOptions.mjs +1 -1
- package/src/lib/validation/interfaces/UriOptions.cjs +1 -1
- package/src/lib/validation/interfaces/UriOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/WhenOptions.cjs +1 -1
- package/src/lib/validation/interfaces/WhenOptions.mjs +1 -1
- package/src/lib/validation/interfaces/WhenSchemaOptions.cjs +1 -1
- package/src/lib/validation/interfaces/WhenSchemaOptions.mjs +1 -1
- package/src/lib/validation/types/CustomValidator.cjs +1 -1
- package/src/lib/validation/types/CustomValidator.mjs +1 -1
- package/src/lib/validation/types/ExtensionBoundSchema.cjs +1 -1
- package/src/lib/validation/types/ExtensionBoundSchema.mjs +1 -1
- package/src/lib/validation/types/ExternalValidationFunction.cjs +1 -1
- package/src/lib/validation/types/ExternalValidationFunction.mjs +1 -1
- package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.cjs +1 -1
- package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.mjs +1 -1
- package/src/lib/validation/types/IsPrimitiveSubset.cjs +1 -1
- package/src/lib/validation/types/IsPrimitiveSubset.mjs +1 -1
- package/src/lib/validation/types/IsUnion.cjs +1 -1
- package/src/lib/validation/types/IsUnion.mjs +1 -1
- package/src/lib/validation/types/LanguageMessages.cjs +1 -1
- package/src/lib/validation/types/LanguageMessages.mjs +1 -1
- package/src/lib/validation/types/NoNestedArrays.cjs +1 -1
- package/src/lib/validation/types/NoNestedArrays.mjs +1 -1
- package/src/lib/validation/types/NullableType.cjs +1 -1
- package/src/lib/validation/types/NullableType.mjs +1 -1
- package/src/lib/validation/types/ObjectPropertiesSchema.cjs +1 -1
- package/src/lib/validation/types/ObjectPropertiesSchema.mjs +1 -1
- package/src/lib/validation/types/PartialSchemaMap.cjs +1 -1
- package/src/lib/validation/types/PartialSchemaMap.mjs +1 -1
- package/src/lib/validation/types/PresenceMode.cjs +1 -1
- package/src/lib/validation/types/PresenceMode.mjs +1 -1
- package/src/lib/validation/types/Primitives.cjs +1 -1
- package/src/lib/validation/types/Primitives.mjs +1 -1
- package/src/lib/validation/types/Schema.cjs +1 -1
- package/src/lib/validation/types/Schema.mjs +1 -1
- package/src/lib/validation/types/SchemaFunction.cjs +1 -1
- package/src/lib/validation/types/SchemaFunction.mjs +1 -1
- package/src/lib/validation/types/SchemaLike.cjs +1 -1
- package/src/lib/validation/types/SchemaLike.mjs +1 -1
- package/src/lib/validation/types/SchemaLikeWithoutArray.cjs +1 -1
- package/src/lib/validation/types/SchemaLikeWithoutArray.mjs +1 -1
- package/src/lib/validation/types/SchemaMap.cjs +1 -1
- package/src/lib/validation/types/SchemaMap.mjs +1 -1
- package/src/lib/validation/types/StrictSchemaMap.cjs +1 -1
- package/src/lib/validation/types/StrictSchemaMap.mjs +1 -1
- package/src/lib/validation/types/Types.cjs +1 -1
- package/src/lib/validation/types/Types.mjs +1 -1
- package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.cjs +1 -1
- package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.mjs +1 -1
- package/src/options/ApplicationOptions.cjs +4 -6
- package/src/options/ApplicationOptions.mjs +4 -6
- package/src/options/LoadAnonymousObjectOptions.cjs +4 -6
- package/src/options/LoadAnonymousObjectOptions.mjs +4 -6
- package/src/options/LoadNamedObjectOptions.cjs +4 -6
- package/src/options/LoadNamedObjectOptions.mjs +4 -6
- package/src/options/LoadObjectOptions.cjs +4 -6
- package/src/options/LoadObjectOptions.mjs +4 -6
- package/src/options/ModuleLoadObjectsOptions.cjs +4 -6
- package/src/options/ModuleLoadObjectsOptions.mjs +4 -6
- package/src/options/ModuleOptions.cjs +4 -6
- package/src/options/ModuleOptions.mjs +4 -6
- package/src/options/OverridableNamedObjectOptions.cjs +4 -6
- package/src/options/OverridableNamedObjectOptions.mjs +8 -10
- package/src/options/OverridableObjectOptions.cjs +4 -6
- package/src/options/OverridableObjectOptions.mjs +4 -6
- package/src/providers/Database.cjs +3 -5
- package/src/providers/Database.mjs +3 -5
- package/src/providers/PasswordHash.cjs +8 -10
- package/src/providers/PasswordHash.mjs +180 -182
- package/src/providers/migration/GenerateMigration.cjs +7 -9
- package/src/providers/migration/GenerateMigration.mjs +7 -9
- package/src/types/ActionPattern.cjs +1 -1
- package/src/types/ActionPattern.mjs +1 -1
- package/src/types/ClassDecorator.cjs +1 -1
- package/src/types/ClassDecorator.mjs +1 -1
- package/src/types/ComponentOptions.cjs +1 -1
- package/src/types/ComponentOptions.mjs +1 -1
- package/src/types/JSONSchema.cjs +1 -1
- package/src/types/JSONSchema.mjs +1 -1
- package/src/types/MethodDecorator.cjs +1 -1
- package/src/types/MethodDecorator.mjs +1 -1
- package/src/types/ModuleOptions.cjs +1 -1
- package/src/types/ModuleOptions.mjs +1 -1
- package/src/types/ObjectOptions.cjs +1 -1
- package/src/types/ObjectOptions.mjs +1 -1
- package/src/types/ParameterDecorator.cjs +1 -1
- package/src/types/ParameterDecorator.mjs +1 -1
- package/src/types/PropertyDecorator.cjs +1 -1
- package/src/types/PropertyDecorator.mjs +1 -1
- package/src/types/ProviderOptions.cjs +1 -1
- package/src/types/ProviderOptions.mjs +1 -1
- package/vendor/Package.internal.1.cjs +1 -1
- package/vendor/Package.internal.1.mjs +1 -1
- package/vendor/Package.internal.10.cjs +1 -1
- package/vendor/Package.internal.10.mjs +1 -1
- package/vendor/Package.internal.11.cjs +1 -1
- package/vendor/Package.internal.11.mjs +1 -1
- package/vendor/Package.internal.12.cjs +1 -1
- package/vendor/Package.internal.12.mjs +1 -1
- package/vendor/Package.internal.13.cjs +1 -1
- package/vendor/Package.internal.13.mjs +1 -1
- package/vendor/Package.internal.14.cjs +1 -1
- package/vendor/Package.internal.14.mjs +1 -1
- package/vendor/Package.internal.15.cjs +1 -1
- package/vendor/Package.internal.15.mjs +1 -1
- package/vendor/Package.internal.16.cjs +1 -1
- package/vendor/Package.internal.16.mjs +1 -1
- package/vendor/Package.internal.17.cjs +1 -1
- package/vendor/Package.internal.17.mjs +1 -1
- package/vendor/Package.internal.18.cjs +1 -1
- package/vendor/Package.internal.18.mjs +1 -1
- package/vendor/Package.internal.19.cjs +1 -1
- package/vendor/Package.internal.19.mjs +1 -1
- package/vendor/Package.internal.2.cjs +1 -1
- package/vendor/Package.internal.2.mjs +1 -1
- package/vendor/Package.internal.20.cjs +1 -1
- package/vendor/Package.internal.20.mjs +1 -1
- package/vendor/Package.internal.21.cjs +1 -1
- package/vendor/Package.internal.21.mjs +1 -1
- package/vendor/Package.internal.22.cjs +1 -1
- package/vendor/Package.internal.22.mjs +1 -1
- package/vendor/Package.internal.23.cjs +1 -1
- package/vendor/Package.internal.23.mjs +1 -1
- package/vendor/Package.internal.24.cjs +1 -1
- package/vendor/Package.internal.24.mjs +1 -1
- package/vendor/Package.internal.25.cjs +1 -1
- package/vendor/Package.internal.25.mjs +1 -1
- package/vendor/Package.internal.26.cjs +1 -1
- package/vendor/Package.internal.26.mjs +1 -1
- package/vendor/Package.internal.27.cjs +1 -1
- package/vendor/Package.internal.27.mjs +1 -1
- package/vendor/Package.internal.28.cjs +1 -1
- package/vendor/Package.internal.28.mjs +1 -1
- package/vendor/Package.internal.29.cjs +1 -1
- package/vendor/Package.internal.29.mjs +1 -1
- package/vendor/Package.internal.3.cjs +1 -1
- package/vendor/Package.internal.3.mjs +1 -1
- package/vendor/Package.internal.30.cjs +1 -1
- package/vendor/Package.internal.30.mjs +1 -1
- package/vendor/Package.internal.31.cjs +1 -1
- package/vendor/Package.internal.31.mjs +1 -1
- package/vendor/Package.internal.310.cjs +1 -1
- package/vendor/Package.internal.310.mjs +1 -1
- package/vendor/Package.internal.32.cjs +1 -1
- package/vendor/Package.internal.32.mjs +1 -1
- package/vendor/Package.internal.33.cjs +1 -1
- package/vendor/Package.internal.33.mjs +1 -1
- package/vendor/Package.internal.34.cjs +1 -1
- package/vendor/Package.internal.34.mjs +1 -1
- package/vendor/Package.internal.35.cjs +1 -1
- package/vendor/Package.internal.35.mjs +1 -1
- package/vendor/Package.internal.36.cjs +1 -1
- package/vendor/Package.internal.36.mjs +1 -1
- package/vendor/Package.internal.37.cjs +1 -1
- package/vendor/Package.internal.37.mjs +1 -1
- package/vendor/Package.internal.38.cjs +1 -1
- package/vendor/Package.internal.38.mjs +1 -1
- package/vendor/Package.internal.39.cjs +1 -1
- package/vendor/Package.internal.39.mjs +1 -1
- package/vendor/Package.internal.4.cjs +1 -1
- package/vendor/Package.internal.4.mjs +1 -1
- package/vendor/Package.internal.40.cjs +1 -1
- package/vendor/Package.internal.40.mjs +1 -1
- package/vendor/Package.internal.41.cjs +1 -1
- package/vendor/Package.internal.41.mjs +1 -1
- package/vendor/Package.internal.42.cjs +1 -1
- package/vendor/Package.internal.42.mjs +1 -1
- package/vendor/Package.internal.43.cjs +1 -1
- package/vendor/Package.internal.43.mjs +1 -1
- package/vendor/Package.internal.44.cjs +1 -1
- package/vendor/Package.internal.44.mjs +1 -1
- package/vendor/Package.internal.45.cjs +1 -1
- package/vendor/Package.internal.45.mjs +1 -1
- package/vendor/Package.internal.46.cjs +1 -1
- package/vendor/Package.internal.46.mjs +1 -1
- package/vendor/Package.internal.47.cjs +1 -1
- package/vendor/Package.internal.47.mjs +1 -1
- package/vendor/Package.internal.48.cjs +1 -1
- package/vendor/Package.internal.48.mjs +1 -1
- package/vendor/Package.internal.49.cjs +1 -1
- package/vendor/Package.internal.49.mjs +1 -1
- package/vendor/Package.internal.5.cjs +192 -156
- package/vendor/Package.internal.5.mjs +283 -251
- package/vendor/Package.internal.50.cjs +1 -1
- package/vendor/Package.internal.50.mjs +1 -1
- package/vendor/Package.internal.51.cjs +1 -1
- package/vendor/Package.internal.51.mjs +1 -1
- package/vendor/Package.internal.512.cjs +1 -1
- package/vendor/Package.internal.512.mjs +1 -1
- package/vendor/Package.internal.52.cjs +1 -1
- package/vendor/Package.internal.52.mjs +1 -1
- package/vendor/{Package.internal.513.cjs → Package.internal.5210.cjs} +1 -1
- package/vendor/{Package.internal.513.mjs → Package.internal.5210.mjs} +1 -1
- package/vendor/Package.internal.522.cjs +132 -1079
- package/vendor/Package.internal.522.mjs +132 -973
- package/vendor/Package.internal.523.cjs +4019 -0
- package/vendor/Package.internal.523.mjs +4027 -0
- package/vendor/Package.internal.524.cjs +846 -0
- package/vendor/Package.internal.524.mjs +846 -0
- package/vendor/{Package.internal.57.cjs → Package.internal.525.cjs} +2 -2
- package/vendor/{Package.internal.57.mjs → Package.internal.525.mjs} +2 -2
- package/vendor/{Package.internal.58.cjs → Package.internal.526.cjs} +2 -2
- package/vendor/{Package.internal.58.mjs → Package.internal.526.mjs} +2 -2
- package/vendor/{Package.internal.59.cjs → Package.internal.527.cjs} +1 -1
- package/vendor/{Package.internal.59.mjs → Package.internal.527.mjs} +1 -1
- package/vendor/{Package.internal.510.cjs → Package.internal.528.cjs} +1 -1
- package/vendor/{Package.internal.510.mjs → Package.internal.528.mjs} +1 -1
- package/vendor/{Package.internal.511.cjs → Package.internal.529.cjs} +1 -1
- package/vendor/{Package.internal.511.mjs → Package.internal.529.mjs} +1 -1
- package/vendor/Package.internal.53.cjs +878 -6866
- package/vendor/Package.internal.53.mjs +836 -6900
- package/vendor/Package.internal.54.cjs +7080 -145
- package/vendor/Package.internal.54.mjs +7050 -145
- package/vendor/Package.internal.55.cjs +129 -3977
- package/vendor/Package.internal.55.mjs +121 -3995
- package/vendor/Package.internal.56.cjs +49496 -727
- package/vendor/Package.internal.56.mjs +49453 -727
- package/vendor/Package.internal.6.cjs +1 -1
- package/vendor/Package.internal.6.mjs +1 -1
- package/vendor/Package.internal.7.cjs +1 -1
- package/vendor/Package.internal.7.mjs +1 -1
- package/vendor/Package.internal.8.cjs +1 -1
- package/vendor/Package.internal.8.mjs +1 -1
- package/vendor/Package.internal.9.cjs +1 -1
- package/vendor/Package.internal.9.mjs +1 -1
- package/vendor/TypeDef.internal.102.d.ts +1 -1
- package/vendor/Package.internal.542.cjs +0 -171
- package/vendor/Package.internal.542.mjs +0 -153
- package/vendor/Package.internal.552.cjs +0 -49615
- package/vendor/Package.internal.552.mjs +0 -49572
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Build Date: Wed Nov 26 2025
|
|
1
|
+
/* Build Date: Wed Nov 26 2025 14:26:45 GMT+0800 (China Standard Time) */
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, {
|
|
@@ -43,12 +43,10 @@ require("../../exceptions/dto/InvalidValueException.cjs");
|
|
|
43
43
|
|
|
44
44
|
require("../base/abstracts/Exception.cjs");
|
|
45
45
|
|
|
46
|
-
require("
|
|
46
|
+
require("../../../vendor/Package.internal.5.cjs");
|
|
47
47
|
|
|
48
48
|
require("../helpers/As.cjs");
|
|
49
49
|
|
|
50
|
-
require("../../../vendor/Package.internal.5.cjs");
|
|
51
|
-
|
|
52
50
|
require("../../../vendor/Package.internal.6.cjs");
|
|
53
51
|
|
|
54
52
|
require("../base/internal/ThrowWarning.cjs");
|
|
@@ -59,6 +57,8 @@ require("../base/internal/CamelCase.cjs");
|
|
|
59
57
|
|
|
60
58
|
require("../helpers/NoCase.cjs");
|
|
61
59
|
|
|
60
|
+
require("../helpers/DevNull.cjs");
|
|
61
|
+
|
|
62
62
|
require("../helpers/IsHtml.cjs");
|
|
63
63
|
|
|
64
64
|
require("../helpers/IsXML.cjs");
|
|
@@ -113,21 +113,21 @@ const g = c(o);
|
|
|
113
113
|
|
|
114
114
|
var y = {};
|
|
115
115
|
|
|
116
|
-
var S = {};
|
|
117
|
-
|
|
118
116
|
var v = {};
|
|
119
117
|
|
|
120
|
-
|
|
118
|
+
var S = {};
|
|
119
|
+
|
|
120
|
+
Object.defineProperty(S, "__esModule", {
|
|
121
121
|
value: true
|
|
122
122
|
});
|
|
123
123
|
|
|
124
|
-
|
|
124
|
+
S.splitWhen = S.flatten = void 0;
|
|
125
125
|
|
|
126
126
|
function m(t) {
|
|
127
127
|
return t.reduce((t, e) => [].concat(t, e), []);
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
-
|
|
130
|
+
S.flatten = m;
|
|
131
131
|
|
|
132
132
|
function A(t, e) {
|
|
133
133
|
const r = [ [] ];
|
|
@@ -143,7 +143,7 @@ function A(t, e) {
|
|
|
143
143
|
return r;
|
|
144
144
|
}
|
|
145
145
|
|
|
146
|
-
|
|
146
|
+
S.splitWhen = A;
|
|
147
147
|
|
|
148
148
|
var b = {};
|
|
149
149
|
|
|
@@ -565,7 +565,7 @@ function ut(t, e, r, n) {
|
|
|
565
565
|
continue;
|
|
566
566
|
}
|
|
567
567
|
if (r.isPadded) {
|
|
568
|
-
c =
|
|
568
|
+
c = vt(e, r, n);
|
|
569
569
|
}
|
|
570
570
|
u.string = c + u.pattern + _t(u.count);
|
|
571
571
|
i.push(u);
|
|
@@ -627,7 +627,7 @@ function yt(t) {
|
|
|
627
627
|
return /^-?(0+)\d/.test(t);
|
|
628
628
|
}
|
|
629
629
|
|
|
630
|
-
function
|
|
630
|
+
function vt(t, e, r) {
|
|
631
631
|
if (!e.isPadded) {
|
|
632
632
|
return t;
|
|
633
633
|
}
|
|
@@ -654,11 +654,11 @@ st.cache = {};
|
|
|
654
654
|
|
|
655
655
|
st.clearCache = () => st.cache = {};
|
|
656
656
|
|
|
657
|
-
var
|
|
657
|
+
var St = st;
|
|
658
658
|
|
|
659
659
|
const mt = h.default;
|
|
660
660
|
|
|
661
|
-
const At =
|
|
661
|
+
const At = St;
|
|
662
662
|
|
|
663
663
|
const bt = t => t !== null && typeof t === "object" && !Array.isArray(t);
|
|
664
664
|
|
|
@@ -1337,13 +1337,13 @@ const ge = qt;
|
|
|
1337
1337
|
|
|
1338
1338
|
const ye = Xt;
|
|
1339
1339
|
|
|
1340
|
-
const
|
|
1340
|
+
const ve = de;
|
|
1341
1341
|
|
|
1342
|
-
const
|
|
1342
|
+
const Se = (t, e = {}) => {
|
|
1343
1343
|
let r = [];
|
|
1344
1344
|
if (Array.isArray(t)) {
|
|
1345
1345
|
for (const n of t) {
|
|
1346
|
-
const t =
|
|
1346
|
+
const t = Se.create(n, e);
|
|
1347
1347
|
if (Array.isArray(t)) {
|
|
1348
1348
|
r.push(...t);
|
|
1349
1349
|
} else {
|
|
@@ -1351,7 +1351,7 @@ const ve = (t, e = {}) => {
|
|
|
1351
1351
|
}
|
|
1352
1352
|
}
|
|
1353
1353
|
} else {
|
|
1354
|
-
r = [].concat(
|
|
1354
|
+
r = [].concat(Se.create(t, e));
|
|
1355
1355
|
}
|
|
1356
1356
|
if (e && e.expand === true && e.nodupes === true) {
|
|
1357
1357
|
r = [ ...new Set(r) ];
|
|
@@ -1359,25 +1359,25 @@ const ve = (t, e = {}) => {
|
|
|
1359
1359
|
return r;
|
|
1360
1360
|
};
|
|
1361
1361
|
|
|
1362
|
-
|
|
1362
|
+
Se.parse = (t, e = {}) => ve(t, e);
|
|
1363
1363
|
|
|
1364
|
-
|
|
1364
|
+
Se.stringify = (t, e = {}) => {
|
|
1365
1365
|
if (typeof t === "string") {
|
|
1366
|
-
return _e(
|
|
1366
|
+
return _e(Se.parse(t, e), e);
|
|
1367
1367
|
}
|
|
1368
1368
|
return _e(t, e);
|
|
1369
1369
|
};
|
|
1370
1370
|
|
|
1371
|
-
|
|
1371
|
+
Se.compile = (t, e = {}) => {
|
|
1372
1372
|
if (typeof t === "string") {
|
|
1373
|
-
t =
|
|
1373
|
+
t = Se.parse(t, e);
|
|
1374
1374
|
}
|
|
1375
1375
|
return ge(t, e);
|
|
1376
1376
|
};
|
|
1377
1377
|
|
|
1378
|
-
|
|
1378
|
+
Se.expand = (t, e = {}) => {
|
|
1379
1379
|
if (typeof t === "string") {
|
|
1380
|
-
t =
|
|
1380
|
+
t = Se.parse(t, e);
|
|
1381
1381
|
}
|
|
1382
1382
|
let r = ye(t, e);
|
|
1383
1383
|
if (e.noempty === true) {
|
|
@@ -1389,14 +1389,14 @@ ve.expand = (t, e = {}) => {
|
|
|
1389
1389
|
return r;
|
|
1390
1390
|
};
|
|
1391
1391
|
|
|
1392
|
-
|
|
1392
|
+
Se.create = (t, e = {}) => {
|
|
1393
1393
|
if (t === "" || t.length < 3) {
|
|
1394
1394
|
return [ t ];
|
|
1395
1395
|
}
|
|
1396
|
-
return e.expand !== true ?
|
|
1396
|
+
return e.expand !== true ? Se.compile(t, e) : Se.expand(t, e);
|
|
1397
1397
|
};
|
|
1398
1398
|
|
|
1399
|
-
var me =
|
|
1399
|
+
var me = Se;
|
|
1400
1400
|
|
|
1401
1401
|
var Ae = {};
|
|
1402
1402
|
|
|
@@ -1655,8 +1655,8 @@ const ur = (t, e) => {
|
|
|
1655
1655
|
let _ = false;
|
|
1656
1656
|
let g = false;
|
|
1657
1657
|
let y = false;
|
|
1658
|
-
let S = false;
|
|
1659
1658
|
let v = false;
|
|
1659
|
+
let S = false;
|
|
1660
1660
|
let m = false;
|
|
1661
1661
|
let A = false;
|
|
1662
1662
|
let b = 0;
|
|
@@ -1677,7 +1677,7 @@ const ur = (t, e) => {
|
|
|
1677
1677
|
R = w();
|
|
1678
1678
|
let t;
|
|
1679
1679
|
if (R === Ve) {
|
|
1680
|
-
|
|
1680
|
+
v = P.backslashes = true;
|
|
1681
1681
|
R = w();
|
|
1682
1682
|
if (R === ze) {
|
|
1683
1683
|
y = true;
|
|
@@ -1688,7 +1688,7 @@ const ur = (t, e) => {
|
|
|
1688
1688
|
b++;
|
|
1689
1689
|
while (x() !== true && (R = w())) {
|
|
1690
1690
|
if (R === Ve) {
|
|
1691
|
-
|
|
1691
|
+
v = P.backslashes = true;
|
|
1692
1692
|
w();
|
|
1693
1693
|
continue;
|
|
1694
1694
|
}
|
|
@@ -1757,7 +1757,7 @@ const ur = (t, e) => {
|
|
|
1757
1757
|
if (s === true) {
|
|
1758
1758
|
while (x() !== true && (R = w())) {
|
|
1759
1759
|
if (R === Ve) {
|
|
1760
|
-
|
|
1760
|
+
v = P.backslashes = true;
|
|
1761
1761
|
R = w();
|
|
1762
1762
|
continue;
|
|
1763
1763
|
}
|
|
@@ -1792,7 +1792,7 @@ const ur = (t, e) => {
|
|
|
1792
1792
|
if (R === tr) {
|
|
1793
1793
|
while (x() !== true && (t = w())) {
|
|
1794
1794
|
if (t === Ve) {
|
|
1795
|
-
|
|
1795
|
+
v = P.backslashes = true;
|
|
1796
1796
|
w();
|
|
1797
1797
|
continue;
|
|
1798
1798
|
}
|
|
@@ -1809,7 +1809,7 @@ const ur = (t, e) => {
|
|
|
1809
1809
|
break;
|
|
1810
1810
|
}
|
|
1811
1811
|
if (r.nonegate !== true && R === Ye && c === l) {
|
|
1812
|
-
|
|
1812
|
+
S = P.negated = true;
|
|
1813
1813
|
l++;
|
|
1814
1814
|
continue;
|
|
1815
1815
|
}
|
|
@@ -1818,7 +1818,7 @@ const ur = (t, e) => {
|
|
|
1818
1818
|
if (s === true) {
|
|
1819
1819
|
while (x() !== true && (R = w())) {
|
|
1820
1820
|
if (R === Je) {
|
|
1821
|
-
|
|
1821
|
+
v = P.backslashes = true;
|
|
1822
1822
|
R = w();
|
|
1823
1823
|
continue;
|
|
1824
1824
|
}
|
|
@@ -1867,7 +1867,7 @@ const ur = (t, e) => {
|
|
|
1867
1867
|
}
|
|
1868
1868
|
if (r.unescape === true) {
|
|
1869
1869
|
if (k) k = Ue.removeBackslashes(k);
|
|
1870
|
-
if (T &&
|
|
1870
|
+
if (T && v === true) {
|
|
1871
1871
|
T = Ue.removeBackslashes(T);
|
|
1872
1872
|
}
|
|
1873
1873
|
}
|
|
@@ -1882,7 +1882,7 @@ const ur = (t, e) => {
|
|
|
1882
1882
|
isGlob: d,
|
|
1883
1883
|
isExtglob: _,
|
|
1884
1884
|
isGlobstar: g,
|
|
1885
|
-
negated:
|
|
1885
|
+
negated: S,
|
|
1886
1886
|
negatedExtglob: m
|
|
1887
1887
|
};
|
|
1888
1888
|
if (r.tokens === true) {
|
|
@@ -1950,9 +1950,9 @@ const yr = (t, e) => {
|
|
|
1950
1950
|
return r;
|
|
1951
1951
|
};
|
|
1952
1952
|
|
|
1953
|
-
const
|
|
1953
|
+
const vr = (t, e) => `Missing ${t}: "${e}" - use "\\\\${e}" to match literal characters`;
|
|
1954
1954
|
|
|
1955
|
-
const
|
|
1955
|
+
const Sr = (t, e) => {
|
|
1956
1956
|
if (typeof t !== "string") {
|
|
1957
1957
|
throw new TypeError("Expected a string");
|
|
1958
1958
|
}
|
|
@@ -1975,10 +1975,10 @@ const vr = (t, e) => {
|
|
|
1975
1975
|
const u = fr.isWindows(e);
|
|
1976
1976
|
const c = lr.globChars(u);
|
|
1977
1977
|
const l = lr.extglobChars(c);
|
|
1978
|
-
const {DOT_LITERAL: f, PLUS_LITERAL: p, SLASH_LITERAL: h, ONE_CHAR: d, DOTS_SLASH: _, NO_DOT: g, NO_DOT_SLASH: y, NO_DOTS_SLASH:
|
|
1978
|
+
const {DOT_LITERAL: f, PLUS_LITERAL: p, SLASH_LITERAL: h, ONE_CHAR: d, DOTS_SLASH: _, NO_DOT: g, NO_DOT_SLASH: y, NO_DOTS_SLASH: v, QMARK: S, QMARK_NO_DOT: m, STAR: A, START_ANCHOR: b} = c;
|
|
1979
1979
|
const E = t => `(${a}(?:(?!${b}${t.dot ? _ : f}).)*?)`;
|
|
1980
1980
|
const R = r.dot ? "" : g;
|
|
1981
|
-
const P = r.dot ?
|
|
1981
|
+
const P = r.dot ? S : m;
|
|
1982
1982
|
let x = r.bash === true ? E(r) : A;
|
|
1983
1983
|
if (r.capture) {
|
|
1984
1984
|
x = `(${x})`;
|
|
@@ -2105,7 +2105,7 @@ const vr = (t, e) => {
|
|
|
2105
2105
|
n = t.close = `)$))${i}`;
|
|
2106
2106
|
}
|
|
2107
2107
|
if (t.inner.includes("*") && (s = D()) && /^\.[^\\/.]+$/.test(s)) {
|
|
2108
|
-
const r =
|
|
2108
|
+
const r = Sr(s, {
|
|
2109
2109
|
...e,
|
|
2110
2110
|
fastpaths: false
|
|
2111
2111
|
}).output;
|
|
@@ -2132,12 +2132,12 @@ const vr = (t, e) => {
|
|
|
2132
2132
|
}
|
|
2133
2133
|
if (s === "?") {
|
|
2134
2134
|
if (e) {
|
|
2135
|
-
return e + s + (i ?
|
|
2135
|
+
return e + s + (i ? S.repeat(i.length) : "");
|
|
2136
2136
|
}
|
|
2137
2137
|
if (o === 0) {
|
|
2138
|
-
return P + (i ?
|
|
2138
|
+
return P + (i ? S.repeat(i.length) : "");
|
|
2139
2139
|
}
|
|
2140
|
-
return
|
|
2140
|
+
return S.repeat(r.length);
|
|
2141
2141
|
}
|
|
2142
2142
|
if (s === ".") {
|
|
2143
2143
|
return f.repeat(r.length);
|
|
@@ -2272,7 +2272,7 @@ const vr = (t, e) => {
|
|
|
2272
2272
|
}
|
|
2273
2273
|
if (L === ")") {
|
|
2274
2274
|
if (C.parens === 0 && r.strictBrackets === true) {
|
|
2275
|
-
throw new SyntaxError(
|
|
2275
|
+
throw new SyntaxError(vr("opening", "("));
|
|
2276
2276
|
}
|
|
2277
2277
|
const t = w[w.length - 1];
|
|
2278
2278
|
if (t && C.parens === t.parens + 1) {
|
|
@@ -2290,7 +2290,7 @@ const vr = (t, e) => {
|
|
|
2290
2290
|
if (L === "[") {
|
|
2291
2291
|
if (r.nobracket === true || !D().includes("]")) {
|
|
2292
2292
|
if (r.nobracket !== true && r.strictBrackets === true) {
|
|
2293
|
-
throw new SyntaxError(
|
|
2293
|
+
throw new SyntaxError(vr("closing", "]"));
|
|
2294
2294
|
}
|
|
2295
2295
|
L = `\\${L}`;
|
|
2296
2296
|
} else {
|
|
@@ -2313,7 +2313,7 @@ const vr = (t, e) => {
|
|
|
2313
2313
|
}
|
|
2314
2314
|
if (C.brackets === 0) {
|
|
2315
2315
|
if (r.strictBrackets === true) {
|
|
2316
|
-
throw new SyntaxError(
|
|
2316
|
+
throw new SyntaxError(vr("opening", "["));
|
|
2317
2317
|
}
|
|
2318
2318
|
G({
|
|
2319
2319
|
type: "text",
|
|
@@ -2501,7 +2501,7 @@ const vr = (t, e) => {
|
|
|
2501
2501
|
G({
|
|
2502
2502
|
type: "qmark",
|
|
2503
2503
|
value: L,
|
|
2504
|
-
output:
|
|
2504
|
+
output: S
|
|
2505
2505
|
});
|
|
2506
2506
|
continue;
|
|
2507
2507
|
}
|
|
@@ -2707,8 +2707,8 @@ const vr = (t, e) => {
|
|
|
2707
2707
|
C.output += y;
|
|
2708
2708
|
k.output += y;
|
|
2709
2709
|
} else if (r.dot === true) {
|
|
2710
|
-
C.output +=
|
|
2711
|
-
k.output +=
|
|
2710
|
+
C.output += v;
|
|
2711
|
+
k.output += v;
|
|
2712
2712
|
} else {
|
|
2713
2713
|
C.output += R;
|
|
2714
2714
|
k.output += R;
|
|
@@ -2721,17 +2721,17 @@ const vr = (t, e) => {
|
|
|
2721
2721
|
G(n);
|
|
2722
2722
|
}
|
|
2723
2723
|
while (C.brackets > 0) {
|
|
2724
|
-
if (r.strictBrackets === true) throw new SyntaxError(
|
|
2724
|
+
if (r.strictBrackets === true) throw new SyntaxError(vr("closing", "]"));
|
|
2725
2725
|
C.output = fr.escapeLast(C.output, "[");
|
|
2726
2726
|
B("brackets");
|
|
2727
2727
|
}
|
|
2728
2728
|
while (C.parens > 0) {
|
|
2729
|
-
if (r.strictBrackets === true) throw new SyntaxError(
|
|
2729
|
+
if (r.strictBrackets === true) throw new SyntaxError(vr("closing", ")"));
|
|
2730
2730
|
C.output = fr.escapeLast(C.output, "(");
|
|
2731
2731
|
B("parens");
|
|
2732
2732
|
}
|
|
2733
2733
|
while (C.braces > 0) {
|
|
2734
|
-
if (r.strictBrackets === true) throw new SyntaxError(
|
|
2734
|
+
if (r.strictBrackets === true) throw new SyntaxError(vr("closing", "}"));
|
|
2735
2735
|
C.output = fr.escapeLast(C.output, "{");
|
|
2736
2736
|
B("braces");
|
|
2737
2737
|
}
|
|
@@ -2754,7 +2754,7 @@ const vr = (t, e) => {
|
|
|
2754
2754
|
return C;
|
|
2755
2755
|
};
|
|
2756
2756
|
|
|
2757
|
-
|
|
2757
|
+
Sr.fastpaths = (t, e) => {
|
|
2758
2758
|
const r = {
|
|
2759
2759
|
...e
|
|
2760
2760
|
};
|
|
@@ -2769,43 +2769,43 @@ vr.fastpaths = (t, e) => {
|
|
|
2769
2769
|
const _ = r.dot ? f : l;
|
|
2770
2770
|
const g = r.dot ? p : l;
|
|
2771
2771
|
const y = r.capture ? "" : "?:";
|
|
2772
|
-
const
|
|
2772
|
+
const v = {
|
|
2773
2773
|
negated: false,
|
|
2774
2774
|
prefix: ""
|
|
2775
2775
|
};
|
|
2776
|
-
let
|
|
2776
|
+
let S = r.bash === true ? ".*?" : h;
|
|
2777
2777
|
if (r.capture) {
|
|
2778
|
-
|
|
2778
|
+
S = `(${S})`;
|
|
2779
2779
|
}
|
|
2780
2780
|
const m = t => {
|
|
2781
|
-
if (t.noglobstar === true) return
|
|
2781
|
+
if (t.noglobstar === true) return S;
|
|
2782
2782
|
return `(${y}(?:(?!${d}${t.dot ? c : o}).)*?)`;
|
|
2783
2783
|
};
|
|
2784
2784
|
const A = t => {
|
|
2785
2785
|
switch (t) {
|
|
2786
2786
|
case "*":
|
|
2787
|
-
return `${_}${u}${
|
|
2787
|
+
return `${_}${u}${S}`;
|
|
2788
2788
|
|
|
2789
2789
|
case ".*":
|
|
2790
|
-
return `${o}${u}${
|
|
2790
|
+
return `${o}${u}${S}`;
|
|
2791
2791
|
|
|
2792
2792
|
case "*.*":
|
|
2793
|
-
return `${_}${
|
|
2793
|
+
return `${_}${S}${o}${u}${S}`;
|
|
2794
2794
|
|
|
2795
2795
|
case "*/*":
|
|
2796
|
-
return `${_}${
|
|
2796
|
+
return `${_}${S}${a}${u}${g}${S}`;
|
|
2797
2797
|
|
|
2798
2798
|
case "**":
|
|
2799
2799
|
return _ + m(r);
|
|
2800
2800
|
|
|
2801
2801
|
case "**/*":
|
|
2802
|
-
return `(?:${_}${m(r)}${a})?${g}${u}${
|
|
2802
|
+
return `(?:${_}${m(r)}${a})?${g}${u}${S}`;
|
|
2803
2803
|
|
|
2804
2804
|
case "**/*.*":
|
|
2805
|
-
return `(?:${_}${m(r)}${a})?${g}${
|
|
2805
|
+
return `(?:${_}${m(r)}${a})?${g}${S}${o}${u}${S}`;
|
|
2806
2806
|
|
|
2807
2807
|
case "**/.*":
|
|
2808
|
-
return `(?:${_}${m(r)}${a})?${o}${u}${
|
|
2808
|
+
return `(?:${_}${m(r)}${a})?${o}${u}${S}`;
|
|
2809
2809
|
|
|
2810
2810
|
default:
|
|
2811
2811
|
{
|
|
@@ -2817,7 +2817,7 @@ vr.fastpaths = (t, e) => {
|
|
|
2817
2817
|
}
|
|
2818
2818
|
}
|
|
2819
2819
|
};
|
|
2820
|
-
const b = fr.removePrefix(t,
|
|
2820
|
+
const b = fr.removePrefix(t, v);
|
|
2821
2821
|
let E = A(b);
|
|
2822
2822
|
if (E && r.strictSlashes !== true) {
|
|
2823
2823
|
E += `${a}?`;
|
|
@@ -2825,7 +2825,7 @@ vr.fastpaths = (t, e) => {
|
|
|
2825
2825
|
return E;
|
|
2826
2826
|
};
|
|
2827
2827
|
|
|
2828
|
-
var mr =
|
|
2828
|
+
var mr = Sr;
|
|
2829
2829
|
|
|
2830
2830
|
const Ar = p.default;
|
|
2831
2831
|
|
|
@@ -3405,13 +3405,13 @@ function yn(t, e) {
|
|
|
3405
3405
|
|
|
3406
3406
|
q.matchAny = yn;
|
|
3407
3407
|
|
|
3408
|
-
function
|
|
3408
|
+
function vn(t) {
|
|
3409
3409
|
return t.replace(Qr, "/");
|
|
3410
3410
|
}
|
|
3411
3411
|
|
|
3412
|
-
q.removeDuplicateSlashes =
|
|
3412
|
+
q.removeDuplicateSlashes = vn;
|
|
3413
3413
|
|
|
3414
|
-
function
|
|
3414
|
+
function Sn(t) {
|
|
3415
3415
|
const e = [];
|
|
3416
3416
|
const r = [];
|
|
3417
3417
|
for (const n of t) {
|
|
@@ -3424,7 +3424,7 @@ function vn(t) {
|
|
|
3424
3424
|
return [ e, r ];
|
|
3425
3425
|
}
|
|
3426
3426
|
|
|
3427
|
-
q.partitionAbsoluteAndRelative =
|
|
3427
|
+
q.partitionAbsoluteAndRelative = Sn;
|
|
3428
3428
|
|
|
3429
3429
|
function mn(t) {
|
|
3430
3430
|
return Ir.isAbsolute(t);
|
|
@@ -3598,39 +3598,39 @@ function Hn(t) {
|
|
|
3598
3598
|
|
|
3599
3599
|
kn.isEmpty = Hn;
|
|
3600
3600
|
|
|
3601
|
-
Object.defineProperty(
|
|
3601
|
+
Object.defineProperty(v, "__esModule", {
|
|
3602
3602
|
value: true
|
|
3603
3603
|
});
|
|
3604
3604
|
|
|
3605
|
-
|
|
3605
|
+
v.string = v.stream = v.pattern = v.path = v.fs = v.errno = v.array = void 0;
|
|
3606
3606
|
|
|
3607
|
-
const Mn =
|
|
3607
|
+
const Mn = S;
|
|
3608
3608
|
|
|
3609
|
-
|
|
3609
|
+
v.array = Mn;
|
|
3610
3610
|
|
|
3611
3611
|
const $n = b;
|
|
3612
3612
|
|
|
3613
|
-
|
|
3613
|
+
v.errno = $n;
|
|
3614
3614
|
|
|
3615
3615
|
const Dn = R;
|
|
3616
3616
|
|
|
3617
|
-
|
|
3617
|
+
v.fs = Dn;
|
|
3618
3618
|
|
|
3619
3619
|
const Fn = C;
|
|
3620
3620
|
|
|
3621
|
-
|
|
3621
|
+
v.path = Fn;
|
|
3622
3622
|
|
|
3623
3623
|
const In = q;
|
|
3624
3624
|
|
|
3625
|
-
|
|
3625
|
+
v.pattern = In;
|
|
3626
3626
|
|
|
3627
3627
|
const Nn = An;
|
|
3628
3628
|
|
|
3629
|
-
|
|
3629
|
+
v.stream = Nn;
|
|
3630
3630
|
|
|
3631
3631
|
const jn = kn;
|
|
3632
3632
|
|
|
3633
|
-
|
|
3633
|
+
v.string = jn;
|
|
3634
3634
|
|
|
3635
3635
|
Object.defineProperty(y, "__esModule", {
|
|
3636
3636
|
value: true
|
|
@@ -3638,7 +3638,7 @@ Object.defineProperty(y, "__esModule", {
|
|
|
3638
3638
|
|
|
3639
3639
|
y.convertPatternGroupToTask = y.convertPatternGroupsToTasks = y.groupPatternsByBaseDirectory = y.getNegativePatternsAsPositive = y.getPositivePatterns = y.convertPatternsToTasks = y.generate = void 0;
|
|
3640
3640
|
|
|
3641
|
-
const Bn =
|
|
3641
|
+
const Bn = v;
|
|
3642
3642
|
|
|
3643
3643
|
function Gn(t, e) {
|
|
3644
3644
|
const r = qn(t, e);
|
|
@@ -3881,22 +3881,22 @@ ns.Settings = gs.default;
|
|
|
3881
3881
|
|
|
3882
3882
|
function ys(t, e, r) {
|
|
3883
3883
|
if (typeof e === "function") {
|
|
3884
|
-
ds.read(t,
|
|
3884
|
+
ds.read(t, Ss(), e);
|
|
3885
3885
|
return;
|
|
3886
3886
|
}
|
|
3887
|
-
ds.read(t,
|
|
3887
|
+
ds.read(t, Ss(e), r);
|
|
3888
3888
|
}
|
|
3889
3889
|
|
|
3890
3890
|
ns.stat = ys;
|
|
3891
3891
|
|
|
3892
|
-
function
|
|
3893
|
-
const r =
|
|
3892
|
+
function vs(t, e) {
|
|
3893
|
+
const r = Ss(e);
|
|
3894
3894
|
return _s.read(t, r);
|
|
3895
3895
|
}
|
|
3896
3896
|
|
|
3897
|
-
ns.statSync =
|
|
3897
|
+
ns.statSync = vs;
|
|
3898
3898
|
|
|
3899
|
-
function
|
|
3899
|
+
function Ss(t = {}) {
|
|
3900
3900
|
if (t instanceof gs.default) {
|
|
3901
3901
|
return t;
|
|
3902
3902
|
}
|
|
@@ -4356,11 +4356,11 @@ function yi(t) {
|
|
|
4356
4356
|
};
|
|
4357
4357
|
}
|
|
4358
4358
|
|
|
4359
|
-
var
|
|
4359
|
+
var vi = yi;
|
|
4360
4360
|
|
|
4361
4361
|
gi.exports;
|
|
4362
4362
|
|
|
4363
|
-
var
|
|
4363
|
+
var Si = vi;
|
|
4364
4364
|
|
|
4365
4365
|
function mi(t, e, r) {
|
|
4366
4366
|
if (typeof t === "function") {
|
|
@@ -4371,7 +4371,7 @@ function mi(t, e, r) {
|
|
|
4371
4371
|
if (!(r >= 1)) {
|
|
4372
4372
|
throw new Error("fastqueue concurrency must be equal to or greater than 1");
|
|
4373
4373
|
}
|
|
4374
|
-
var n =
|
|
4374
|
+
var n = Si(bi);
|
|
4375
4375
|
var s = null;
|
|
4376
4376
|
var i = null;
|
|
4377
4377
|
var o = 0;
|
|
@@ -4403,8 +4403,8 @@ function mi(t, e, r) {
|
|
|
4403
4403
|
getQueue: p,
|
|
4404
4404
|
unshift: g,
|
|
4405
4405
|
empty: Ai,
|
|
4406
|
-
kill:
|
|
4407
|
-
killAndDrain:
|
|
4406
|
+
kill: v,
|
|
4407
|
+
killAndDrain: S,
|
|
4408
4408
|
error: m
|
|
4409
4409
|
};
|
|
4410
4410
|
return u;
|
|
@@ -4513,12 +4513,12 @@ function mi(t, e, r) {
|
|
|
4513
4513
|
u.drain();
|
|
4514
4514
|
}
|
|
4515
4515
|
}
|
|
4516
|
-
function
|
|
4516
|
+
function v() {
|
|
4517
4517
|
s = null;
|
|
4518
4518
|
i = null;
|
|
4519
4519
|
u.drain = Ai;
|
|
4520
4520
|
}
|
|
4521
|
-
function
|
|
4521
|
+
function S() {
|
|
4522
4522
|
s = null;
|
|
4523
4523
|
i = null;
|
|
4524
4524
|
u.drain();
|
|
@@ -5053,7 +5053,7 @@ const uo = p.default;
|
|
|
5053
5053
|
|
|
5054
5054
|
const co = ns;
|
|
5055
5055
|
|
|
5056
|
-
const lo =
|
|
5056
|
+
const lo = v;
|
|
5057
5057
|
|
|
5058
5058
|
class Reader {
|
|
5059
5059
|
constructor(t) {
|
|
@@ -5150,15 +5150,15 @@ Object.defineProperty(Zn, "__esModule", {
|
|
|
5150
5150
|
|
|
5151
5151
|
const yo = zn;
|
|
5152
5152
|
|
|
5153
|
-
const
|
|
5153
|
+
const vo = ao;
|
|
5154
5154
|
|
|
5155
|
-
const
|
|
5155
|
+
const So = fo;
|
|
5156
5156
|
|
|
5157
|
-
class ReaderAsync extends
|
|
5157
|
+
class ReaderAsync extends vo.default {
|
|
5158
5158
|
constructor() {
|
|
5159
5159
|
super(...arguments);
|
|
5160
5160
|
this._walkAsync = yo.walk;
|
|
5161
|
-
this._readerStream = new
|
|
5161
|
+
this._readerStream = new So.default(this._settings);
|
|
5162
5162
|
}
|
|
5163
5163
|
dynamic(t, e) {
|
|
5164
5164
|
return new Promise((r, n) => {
|
|
@@ -5196,7 +5196,7 @@ Object.defineProperty(Eo, "__esModule", {
|
|
|
5196
5196
|
value: true
|
|
5197
5197
|
});
|
|
5198
5198
|
|
|
5199
|
-
const Ro =
|
|
5199
|
+
const Ro = v;
|
|
5200
5200
|
|
|
5201
5201
|
class Matcher {
|
|
5202
5202
|
constructor(t, e, r) {
|
|
@@ -5282,7 +5282,7 @@ Object.defineProperty(Ao, "__esModule", {
|
|
|
5282
5282
|
value: true
|
|
5283
5283
|
});
|
|
5284
5284
|
|
|
5285
|
-
const xo =
|
|
5285
|
+
const xo = v;
|
|
5286
5286
|
|
|
5287
5287
|
const Co = bo;
|
|
5288
5288
|
|
|
@@ -5349,7 +5349,7 @@ Object.defineProperty(wo, "__esModule", {
|
|
|
5349
5349
|
value: true
|
|
5350
5350
|
});
|
|
5351
5351
|
|
|
5352
|
-
const To =
|
|
5352
|
+
const To = v;
|
|
5353
5353
|
|
|
5354
5354
|
class EntryFilter {
|
|
5355
5355
|
constructor(t, e) {
|
|
@@ -5442,7 +5442,7 @@ Object.defineProperty(Oo, "__esModule", {
|
|
|
5442
5442
|
value: true
|
|
5443
5443
|
});
|
|
5444
5444
|
|
|
5445
|
-
const ko =
|
|
5445
|
+
const ko = v;
|
|
5446
5446
|
|
|
5447
5447
|
class ErrorFilter {
|
|
5448
5448
|
constructor(t) {
|
|
@@ -5464,7 +5464,7 @@ Object.defineProperty(Lo, "__esModule", {
|
|
|
5464
5464
|
value: true
|
|
5465
5465
|
});
|
|
5466
5466
|
|
|
5467
|
-
const Ho =
|
|
5467
|
+
const Ho = v;
|
|
5468
5468
|
|
|
5469
5469
|
class EntryTransformer {
|
|
5470
5470
|
constructor(t) {
|
|
@@ -5770,7 +5770,7 @@ const ra = Wo;
|
|
|
5770
5770
|
|
|
5771
5771
|
const na = zo;
|
|
5772
5772
|
|
|
5773
|
-
const sa =
|
|
5773
|
+
const sa = v;
|
|
5774
5774
|
|
|
5775
5775
|
async function ia(t, e) {
|
|
5776
5776
|
aa(t);
|