lakutata 2.0.94 → 2.0.96
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 +56 -44
- package/com/cacher.mjs +56 -44
- package/com/database.cjs +74 -74
- package/com/database.mjs +74 -74
- package/com/docker.cjs +85 -85
- package/com/docker.mjs +85 -85
- package/com/entrypoint.cjs +44 -44
- package/com/entrypoint.mjs +44 -44
- package/com/logger.cjs +51 -51
- package/com/logger.mjs +51 -51
- package/com/monitor.cjs +32 -32
- package/com/monitor.mjs +32 -32
- package/decorator/asst.cjs +5 -5
- package/decorator/asst.mjs +5 -5
- package/decorator/ctrl.cjs +22 -22
- package/decorator/ctrl.mjs +22 -22
- package/decorator/di.cjs +17 -17
- package/decorator/di.mjs +17 -17
- package/decorator/dto.cjs +17 -17
- package/decorator/dto.mjs +17 -17
- package/decorator/orm.cjs +47 -47
- package/decorator/orm.mjs +47 -47
- package/dtos.cjs +17 -17
- package/dtos.mjs +17 -17
- package/helper.cjs +32 -32
- package/helper.mjs +32 -32
- package/lakutata.cjs +110 -110
- package/lakutata.mjs +110 -110
- package/orm.cjs +47 -47
- package/orm.mjs +48 -48
- package/package.json +1 -1
- package/provider/database.cjs +73 -73
- package/provider/database.mjs +73 -73
- package/provider/passwordHash.cjs +31 -31
- package/provider/passwordHash.mjs +31 -31
- package/src/components/Database.cjs +74 -74
- package/src/components/Database.mjs +74 -74
- package/src/components/Logger.cjs +51 -51
- package/src/components/Logger.mjs +51 -51
- package/src/components/cacher/Cacher.cjs +60 -48
- package/src/components/cacher/Cacher.mjs +60 -48
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +26 -12
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +32 -18
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +30 -16
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +39 -25
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +42 -28
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +38 -24
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +29 -15
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +27 -13
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +40 -26
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +30 -16
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +27 -13
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +27 -13
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +30 -16
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +30 -16
- 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 +4 -4
- package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +4 -4
- package/src/components/cacher/options/FileCacheOptions.cjs +17 -17
- package/src/components/cacher/options/FileCacheOptions.mjs +17 -17
- package/src/components/cacher/options/MemcacheCacheOptions.cjs +17 -17
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +17 -17
- package/src/components/cacher/options/MongoCacheOptions.cjs +17 -17
- package/src/components/cacher/options/MongoCacheOptions.mjs +17 -17
- package/src/components/cacher/options/MysqlCacheOptions.cjs +17 -17
- package/src/components/cacher/options/MysqlCacheOptions.mjs +17 -17
- package/src/components/cacher/options/PostgresCacheOptions.cjs +17 -17
- package/src/components/cacher/options/PostgresCacheOptions.mjs +17 -17
- package/src/components/cacher/options/RedisCacheOptions.cjs +17 -17
- package/src/components/cacher/options/RedisCacheOptions.mjs +17 -17
- package/src/components/cacher/options/SqliteCacheOptions.cjs +17 -17
- package/src/components/cacher/options/SqliteCacheOptions.mjs +17 -17
- package/src/components/cacher/types/CacheStoreOptions.cjs +1 -1
- package/src/components/cacher/types/CacheStoreOptions.mjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.cjs +85 -85
- package/src/components/docker/ConnectionOptionsBuilder.mjs +85 -85
- package/src/components/docker/Docker.cjs +85 -85
- package/src/components/docker/Docker.mjs +85 -85
- 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 +72 -72
- package/src/components/docker/lib/DockerContainer.mjs +72 -72
- package/src/components/docker/lib/DockerContainerTTY.cjs +72 -72
- package/src/components/docker/lib/DockerContainerTTY.mjs +72 -72
- package/src/components/docker/lib/DockerImage.cjs +30 -30
- package/src/components/docker/lib/DockerImage.mjs +30 -30
- 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 +17 -17
- package/src/components/docker/options/DockerPruneOptions.mjs +17 -17
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +17 -17
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerCommitOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerExecOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerExecOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerKillOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerKillOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerLogsOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerRemoveOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerSettingOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerStopOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerStopOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageBuildOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageBuildOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageExportOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageExportOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageImportOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageImportOptions.mjs +17 -17
- package/src/components/docker/options/image/ImagePullOptions.cjs +17 -17
- package/src/components/docker/options/image/ImagePullOptions.mjs +17 -17
- package/src/components/docker/options/image/ImagePushOptions.cjs +17 -17
- package/src/components/docker/options/image/ImagePushOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageRemoveOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageTagOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageTagOptions.mjs +17 -17
- package/src/components/docker/options/network/NetworkCreateOptions.cjs +17 -17
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +17 -17
- 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 +44 -44
- package/src/components/entrypoint/Entrypoint.mjs +44 -44
- 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 +30 -30
- package/src/components/entrypoint/lib/AccessControl.mjs +30 -30
- package/src/components/entrypoint/lib/AccessControlRule.cjs +30 -30
- package/src/components/entrypoint/lib/AccessControlRule.mjs +30 -30
- package/src/components/entrypoint/lib/Controller.cjs +30 -30
- package/src/components/entrypoint/lib/Controller.mjs +30 -30
- package/src/components/monitor/AliveMonitor.cjs +31 -31
- package/src/components/monitor/AliveMonitor.mjs +31 -31
- package/src/components/monitor/CpuMonitor.cjs +32 -32
- package/src/components/monitor/CpuMonitor.mjs +32 -32
- package/src/components/monitor/EventLoopMonitor.cjs +31 -31
- package/src/components/monitor/EventLoopMonitor.mjs +31 -31
- package/src/components/monitor/HttpRequestMonitor.cjs +32 -32
- package/src/components/monitor/HttpRequestMonitor.mjs +32 -32
- package/src/components/monitor/MemoryMonitor.cjs +32 -32
- package/src/components/monitor/MemoryMonitor.mjs +32 -32
- 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 +2 -2
- package/src/constants/DIMetadataKey.mjs +2 -2
- package/src/constants/DTOMetadataKey.cjs +2 -2
- package/src/constants/DTOMetadataKey.mjs +2 -2
- package/src/decorators/asst/After.cjs +4 -4
- package/src/decorators/asst/After.mjs +4 -4
- package/src/decorators/asst/Before.cjs +4 -4
- package/src/decorators/asst/Before.mjs +4 -4
- package/src/decorators/ctrl/CLIAction.cjs +22 -22
- package/src/decorators/ctrl/CLIAction.mjs +22 -22
- package/src/decorators/ctrl/HTTPAction.cjs +22 -22
- package/src/decorators/ctrl/HTTPAction.mjs +22 -22
- package/src/decorators/ctrl/ServiceAction.cjs +22 -22
- package/src/decorators/ctrl/ServiceAction.mjs +22 -22
- package/src/decorators/ctrl/http/DELETE.cjs +22 -22
- package/src/decorators/ctrl/http/DELETE.mjs +22 -22
- package/src/decorators/ctrl/http/GET.cjs +22 -22
- package/src/decorators/ctrl/http/GET.mjs +22 -22
- package/src/decorators/ctrl/http/HEAD.cjs +22 -22
- package/src/decorators/ctrl/http/HEAD.mjs +22 -22
- package/src/decorators/ctrl/http/OPTIONS.cjs +22 -22
- package/src/decorators/ctrl/http/OPTIONS.mjs +22 -22
- package/src/decorators/ctrl/http/PATCH.cjs +22 -22
- package/src/decorators/ctrl/http/PATCH.mjs +22 -22
- package/src/decorators/ctrl/http/POST.cjs +22 -22
- package/src/decorators/ctrl/http/POST.mjs +22 -22
- package/src/decorators/ctrl/http/PUT.cjs +22 -22
- package/src/decorators/ctrl/http/PUT.mjs +22 -22
- package/src/decorators/di/Autoload.cjs +2 -2
- package/src/decorators/di/Autoload.mjs +2 -2
- package/src/decorators/di/Configurable.cjs +17 -17
- package/src/decorators/di/Configurable.mjs +17 -17
- package/src/decorators/di/Inject.cjs +17 -17
- package/src/decorators/di/Inject.mjs +17 -17
- package/src/decorators/di/Lifetime.cjs +5 -5
- package/src/decorators/di/Lifetime.mjs +5 -5
- package/src/decorators/dto/Accept.cjs +17 -17
- package/src/decorators/dto/Accept.mjs +17 -17
- package/src/decorators/dto/Expect.cjs +17 -17
- package/src/decorators/dto/Expect.mjs +17 -17
- package/src/decorators/dto/IndexSignature.cjs +17 -17
- package/src/decorators/dto/IndexSignature.mjs +17 -17
- package/src/decorators/dto/Return.cjs +17 -17
- package/src/decorators/dto/Return.mjs +17 -17
- package/src/decorators/orm/AfterInsert.cjs +46 -46
- package/src/decorators/orm/AfterInsert.mjs +46 -46
- package/src/decorators/orm/AfterLoad.cjs +46 -46
- package/src/decorators/orm/AfterLoad.mjs +46 -46
- package/src/decorators/orm/AfterRecover.cjs +46 -46
- package/src/decorators/orm/AfterRecover.mjs +46 -46
- package/src/decorators/orm/AfterRemove.cjs +46 -46
- package/src/decorators/orm/AfterRemove.mjs +46 -46
- package/src/decorators/orm/AfterSoftRemove.cjs +46 -46
- package/src/decorators/orm/AfterSoftRemove.mjs +46 -46
- package/src/decorators/orm/AfterUpdate.cjs +46 -46
- package/src/decorators/orm/AfterUpdate.mjs +46 -46
- package/src/decorators/orm/BeforeInsert.cjs +46 -46
- package/src/decorators/orm/BeforeInsert.mjs +46 -46
- package/src/decorators/orm/BeforeRecover.cjs +46 -46
- package/src/decorators/orm/BeforeRecover.mjs +46 -46
- package/src/decorators/orm/BeforeRemove.cjs +46 -46
- package/src/decorators/orm/BeforeRemove.mjs +46 -46
- package/src/decorators/orm/BeforeSoftRemove.cjs +46 -46
- package/src/decorators/orm/BeforeSoftRemove.mjs +46 -46
- package/src/decorators/orm/BeforeUpdate.cjs +46 -46
- package/src/decorators/orm/BeforeUpdate.mjs +46 -46
- package/src/decorators/orm/Check.cjs +46 -46
- package/src/decorators/orm/Check.mjs +46 -46
- package/src/decorators/orm/ChildEntity.cjs +46 -46
- package/src/decorators/orm/ChildEntity.mjs +46 -46
- package/src/decorators/orm/Column.cjs +46 -46
- package/src/decorators/orm/Column.mjs +46 -46
- package/src/decorators/orm/CreateDateColumn.cjs +46 -46
- package/src/decorators/orm/CreateDateColumn.mjs +46 -46
- package/src/decorators/orm/DeleteDateColumn.cjs +46 -46
- package/src/decorators/orm/DeleteDateColumn.mjs +46 -46
- package/src/decorators/orm/Entity.cjs +46 -46
- package/src/decorators/orm/Entity.mjs +46 -46
- package/src/decorators/orm/EventSubscriber.cjs +46 -46
- package/src/decorators/orm/EventSubscriber.mjs +46 -46
- package/src/decorators/orm/Exclusion.cjs +46 -46
- package/src/decorators/orm/Exclusion.mjs +46 -46
- package/src/decorators/orm/Generated.cjs +46 -46
- package/src/decorators/orm/Generated.mjs +46 -46
- package/src/decorators/orm/Index.cjs +46 -46
- package/src/decorators/orm/Index.mjs +46 -46
- package/src/decorators/orm/JoinColumn.cjs +46 -46
- package/src/decorators/orm/JoinColumn.mjs +46 -46
- package/src/decorators/orm/JoinTable.cjs +46 -46
- package/src/decorators/orm/JoinTable.mjs +46 -46
- package/src/decorators/orm/ManyToMany.cjs +46 -46
- package/src/decorators/orm/ManyToMany.mjs +46 -46
- package/src/decorators/orm/ManyToOne.cjs +46 -46
- package/src/decorators/orm/ManyToOne.mjs +46 -46
- package/src/decorators/orm/ObjectIdColumn.cjs +46 -46
- package/src/decorators/orm/ObjectIdColumn.mjs +46 -46
- package/src/decorators/orm/OneToMany.cjs +46 -46
- package/src/decorators/orm/OneToMany.mjs +46 -46
- package/src/decorators/orm/OneToOne.cjs +46 -46
- package/src/decorators/orm/OneToOne.mjs +46 -46
- package/src/decorators/orm/PrimaryColumn.cjs +46 -46
- package/src/decorators/orm/PrimaryColumn.mjs +46 -46
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +46 -46
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +46 -46
- package/src/decorators/orm/RelationId.cjs +46 -46
- package/src/decorators/orm/RelationId.mjs +46 -46
- package/src/decorators/orm/TableInheritance.cjs +46 -46
- package/src/decorators/orm/TableInheritance.mjs +46 -46
- package/src/decorators/orm/Tree.cjs +46 -46
- package/src/decorators/orm/Tree.mjs +46 -46
- package/src/decorators/orm/TreeChildren.cjs +46 -46
- package/src/decorators/orm/TreeChildren.mjs +46 -46
- package/src/decorators/orm/TreeLevelColumn.cjs +46 -46
- package/src/decorators/orm/TreeLevelColumn.mjs +46 -46
- package/src/decorators/orm/TreeParent.cjs +46 -46
- package/src/decorators/orm/TreeParent.mjs +46 -46
- package/src/decorators/orm/Unique.cjs +46 -46
- package/src/decorators/orm/Unique.mjs +46 -46
- package/src/decorators/orm/UpdateDateColumn.cjs +46 -46
- package/src/decorators/orm/UpdateDateColumn.mjs +46 -46
- package/src/decorators/orm/VersionColumn.cjs +46 -46
- package/src/decorators/orm/VersionColumn.mjs +46 -46
- package/src/decorators/orm/ViewColumn.cjs +46 -46
- package/src/decorators/orm/ViewColumn.mjs +46 -46
- package/src/decorators/orm/ViewEntity.cjs +46 -46
- package/src/decorators/orm/ViewEntity.mjs +46 -46
- package/src/decorators/orm/VirtualColumn.cjs +46 -46
- package/src/decorators/orm/VirtualColumn.mjs +46 -46
- package/src/dto/PaginationResultDTO.cjs +17 -17
- package/src/dto/PaginationResultDTO.mjs +17 -17
- package/src/dto/PaginationSearchDTO.cjs +17 -17
- package/src/dto/PaginationSearchDTO.mjs +17 -17
- 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 +4 -4
- 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 +30 -30
- package/src/lib/base/BaseObject.mjs +30 -30
- package/src/lib/base/Context.cjs +17 -17
- package/src/lib/base/Context.mjs +17 -17
- package/src/lib/base/EventEmitter.cjs +2 -2
- package/src/lib/base/EventEmitter.mjs +2 -2
- package/src/lib/base/abstracts/Exception.cjs +4 -4
- package/src/lib/base/abstracts/Exception.mjs +4 -4
- 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 +17 -17
- package/src/lib/base/internal/ActionOptions.mjs +17 -17
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +30 -30
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +30 -30
- package/src/lib/base/internal/BasicInfo.cjs +4 -4
- package/src/lib/base/internal/BasicInfo.mjs +4 -4
- 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 +2 -2
- package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +2 -2
- package/src/lib/base/internal/ConstructorSymbol.cjs +2 -2
- package/src/lib/base/internal/ConstructorSymbol.mjs +2 -2
- package/src/lib/base/internal/ControllerEntrypoint.cjs +9 -9
- package/src/lib/base/internal/ControllerEntrypoint.mjs +9 -9
- package/src/lib/base/internal/DataValidator.cjs +13 -13
- package/src/lib/base/internal/DataValidator.mjs +13 -13
- 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 +17 -17
- package/src/lib/base/internal/FlexibleDTO.mjs +17 -17
- package/src/lib/base/internal/GetActionDTOAndOptions.cjs +17 -17
- package/src/lib/base/internal/GetActionDTOAndOptions.mjs +17 -17
- 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 +4 -4
- package/src/lib/base/internal/MethodAssistantFunction.mjs +4 -4
- package/src/lib/base/internal/MethodValidation.cjs +17 -17
- package/src/lib/base/internal/MethodValidation.mjs +17 -17
- package/src/lib/base/internal/ModuleConfigLoader.cjs +30 -30
- package/src/lib/base/internal/ModuleConfigLoader.mjs +30 -30
- package/src/lib/base/internal/ObjectConfiguration.cjs +17 -17
- package/src/lib/base/internal/ObjectConfiguration.mjs +17 -17
- package/src/lib/base/internal/ObjectContainer.cjs +2 -2
- package/src/lib/base/internal/ObjectContainer.mjs +2 -2
- package/src/lib/base/internal/ObjectInjection.cjs +2 -2
- package/src/lib/base/internal/ObjectInjection.mjs +2 -2
- package/src/lib/base/internal/ObjectLifetime.cjs +5 -5
- package/src/lib/base/internal/ObjectLifetime.mjs +5 -5
- package/src/lib/base/internal/ObjectSchemaValidation.cjs +17 -17
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +17 -17
- package/src/lib/base/internal/ObjectType.cjs +30 -30
- package/src/lib/base/internal/ObjectType.mjs +30 -30
- 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 +3 -3
- package/src/lib/base/internal/PatternManager.mjs +3 -3
- package/src/lib/base/internal/StringifyPattern.cjs +4 -4
- package/src/lib/base/internal/StringifyPattern.mjs +4 -4
- package/src/lib/base/internal/ThrowWarning.cjs +1 -1
- package/src/lib/base/internal/ThrowWarning.mjs +1 -1
- package/src/lib/context/CLIContext.cjs +17 -17
- package/src/lib/context/CLIContext.mjs +17 -17
- package/src/lib/context/HTTPContext.cjs +17 -17
- package/src/lib/context/HTTPContext.mjs +17 -17
- package/src/lib/context/ServiceContext.cjs +17 -17
- package/src/lib/context/ServiceContext.mjs +17 -17
- package/src/lib/core/Alias.cjs +4 -4
- package/src/lib/core/Alias.mjs +4 -4
- package/src/lib/core/Application.cjs +110 -110
- package/src/lib/core/Application.mjs +110 -110
- package/src/lib/core/Component.cjs +31 -31
- package/src/lib/core/Component.mjs +31 -31
- package/src/lib/core/Container.cjs +30 -30
- package/src/lib/core/Container.mjs +30 -30
- package/src/lib/core/DTO.cjs +17 -17
- package/src/lib/core/DTO.mjs +17 -17
- package/src/lib/core/Module.cjs +33 -33
- package/src/lib/core/Module.mjs +33 -33
- package/src/lib/core/Provider.cjs +30 -30
- package/src/lib/core/Provider.mjs +30 -30
- package/src/lib/core/Time.cjs +5 -5
- package/src/lib/core/Time.mjs +5 -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 +4 -4
- package/src/lib/helpers/Glob.mjs +4 -4
- 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 +3 -3
- package/src/lib/helpers/IsGlobString.mjs +3 -3
- package/src/lib/helpers/IsHtml.cjs +2 -2
- package/src/lib/helpers/IsHtml.mjs +2 -2
- 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 +17 -17
- package/src/lib/helpers/IsSymbol.mjs +17 -17
- package/src/lib/helpers/IsXML.cjs +3 -3
- package/src/lib/helpers/IsXML.mjs +3 -3
- package/src/lib/helpers/MD5.cjs +3 -3
- package/src/lib/helpers/MD5.mjs +3 -3
- 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 +3 -3
- package/src/lib/helpers/NonceStr.mjs +3 -3
- package/src/lib/helpers/ObjectConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectHash.cjs +2 -2
- package/src/lib/helpers/ObjectHash.mjs +2 -2
- 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 +3 -3
- package/src/lib/helpers/RandomString.mjs +3 -3
- package/src/lib/helpers/SHA1.cjs +3 -3
- package/src/lib/helpers/SHA1.mjs +3 -3
- package/src/lib/helpers/SHA256.cjs +3 -3
- package/src/lib/helpers/SHA256.mjs +3 -3
- 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 +4 -4
- package/src/lib/helpers/SortArray.mjs +4 -4
- 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 +4 -4
- package/src/lib/helpers/URLBuilder.mjs +4 -4
- 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 +30 -30
- package/src/lib/ioc/DependencyInjectionContainer.mjs +30 -30
- package/src/lib/ioc/Errors.cjs +17 -17
- package/src/lib/ioc/Errors.mjs +17 -17
- 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 +29 -29
- package/src/lib/ioc/ListModules.mjs +29 -29
- package/src/lib/ioc/LoadModules.cjs +17 -17
- package/src/lib/ioc/LoadModules.mjs +17 -17
- package/src/lib/ioc/ParamParser.cjs +1 -1
- package/src/lib/ioc/ParamParser.mjs +1 -1
- package/src/lib/ioc/Resolvers.cjs +17 -17
- package/src/lib/ioc/Resolvers.mjs +17 -17
- package/src/lib/ioc/Utils.cjs +17 -17
- package/src/lib/ioc/Utils.mjs +17 -17
- package/src/lib/validation/VLD.cjs +6 -6
- package/src/lib/validation/VLD.mjs +6 -6
- 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 +30 -30
- package/src/options/ApplicationOptions.mjs +30 -30
- package/src/options/LoadAnonymousObjectOptions.cjs +30 -30
- package/src/options/LoadAnonymousObjectOptions.mjs +30 -30
- package/src/options/LoadNamedObjectOptions.cjs +30 -30
- package/src/options/LoadNamedObjectOptions.mjs +30 -30
- package/src/options/LoadObjectOptions.cjs +30 -30
- package/src/options/LoadObjectOptions.mjs +30 -30
- package/src/options/ModuleLoadObjectsOptions.cjs +30 -30
- package/src/options/ModuleLoadObjectsOptions.mjs +30 -30
- package/src/options/ModuleOptions.cjs +30 -30
- package/src/options/ModuleOptions.mjs +30 -30
- package/src/options/OverridableNamedObjectOptions.cjs +30 -30
- package/src/options/OverridableNamedObjectOptions.mjs +30 -30
- package/src/options/OverridableObjectOptions.cjs +30 -30
- package/src/options/OverridableObjectOptions.mjs +30 -30
- package/src/providers/Database.cjs +73 -73
- package/src/providers/Database.mjs +73 -73
- package/src/providers/PasswordHash.cjs +31 -31
- package/src/providers/PasswordHash.mjs +31 -31
- package/src/providers/migration/GenerateMigration.cjs +110 -110
- package/src/providers/migration/GenerateMigration.mjs +110 -110
- 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.100.cjs +67 -2
- package/vendor/Package.internal.100.mjs +67 -2
- package/vendor/Package.internal.101.cjs +113 -102
- package/vendor/Package.internal.101.mjs +116 -93
- package/vendor/Package.internal.102.cjs +9 -81
- package/vendor/Package.internal.102.mjs +5 -81
- package/vendor/Package.internal.103.cjs +2 -56
- package/vendor/Package.internal.103.mjs +2 -52
- package/vendor/Package.internal.104.cjs +2 -18
- package/vendor/Package.internal.104.mjs +2 -18
- package/vendor/Package.internal.105.cjs +103 -87
- package/vendor/Package.internal.105.mjs +90 -88
- package/vendor/Package.internal.106.cjs +72 -97
- package/vendor/Package.internal.106.mjs +70 -99
- package/vendor/Package.internal.107.cjs +38 -2156
- package/vendor/Package.internal.107.mjs +37 -2159
- package/vendor/Package.internal.108.cjs +13 -2459
- package/vendor/Package.internal.108.mjs +13 -2429
- package/vendor/Package.internal.109.cjs +70 -1280
- package/vendor/Package.internal.109.mjs +73 -1269
- package/vendor/Package.internal.11.cjs +271 -372
- package/vendor/Package.internal.11.mjs +268 -367
- package/vendor/Package.internal.110.cjs +108 -28
- package/vendor/Package.internal.110.mjs +109 -27
- package/vendor/Package.internal.111.cjs +2169 -13
- package/vendor/Package.internal.111.mjs +2169 -13
- package/vendor/Package.internal.112.cjs +2456 -11
- package/vendor/Package.internal.112.mjs +2425 -12
- package/vendor/Package.internal.113.cjs +1289 -35
- package/vendor/Package.internal.113.mjs +1277 -37
- package/vendor/Package.internal.114.cjs +23 -131
- package/vendor/Package.internal.114.mjs +26 -136
- package/vendor/Package.internal.115.cjs +19 -1
- package/vendor/Package.internal.115.mjs +18 -1
- package/vendor/Package.internal.116.cjs +18 -3
- package/vendor/Package.internal.116.mjs +20 -3
- package/vendor/Package.internal.117.cjs +50 -2
- package/vendor/Package.internal.117.mjs +52 -2
- package/vendor/Package.internal.118.cjs +139 -2
- package/vendor/Package.internal.118.mjs +141 -2
- package/vendor/Package.internal.119.cjs +1 -3
- package/vendor/Package.internal.119.mjs +1 -2
- package/vendor/Package.internal.12.cjs +12469 -270
- package/vendor/Package.internal.12.mjs +12452 -271
- package/vendor/Package.internal.120.cjs +3 -46
- package/vendor/Package.internal.120.mjs +3 -46
- package/vendor/Package.internal.121.cjs +2 -12
- package/vendor/Package.internal.121.mjs +2 -14
- package/vendor/Package.internal.122.cjs +2 -10
- package/vendor/Package.internal.122.mjs +2 -12
- package/vendor/Package.internal.123.cjs +2 -18
- package/vendor/Package.internal.123.mjs +2 -18
- package/vendor/Package.internal.124.cjs +35 -104
- package/vendor/Package.internal.124.mjs +35 -104
- package/vendor/Package.internal.125.cjs +12 -16
- package/vendor/Package.internal.125.mjs +13 -15
- package/vendor/Package.internal.126.cjs +10 -17
- package/vendor/Package.internal.126.mjs +12 -17
- package/vendor/Package.internal.127.cjs +12 -8868
- package/vendor/Package.internal.127.mjs +12 -8868
- package/vendor/Package.internal.128.cjs +88 -869
- package/vendor/Package.internal.128.mjs +98 -879
- package/vendor/Package.internal.129.cjs +10 -6761
- package/vendor/Package.internal.129.mjs +10 -6769
- package/vendor/Package.internal.13.cjs +267 -701
- package/vendor/Package.internal.13.mjs +269 -703
- package/vendor/Package.internal.130.cjs +12 -466
- package/vendor/Package.internal.130.mjs +12 -454
- package/vendor/Package.internal.131.cjs +8819 -560
- package/vendor/Package.internal.131.mjs +8821 -558
- package/vendor/Package.internal.132.cjs +878 -76
- package/vendor/Package.internal.132.mjs +881 -73
- package/vendor/Package.internal.133.cjs +6767 -2
- package/vendor/Package.internal.133.mjs +6775 -2
- package/vendor/Package.internal.134.cjs +446 -3726
- package/vendor/Package.internal.134.mjs +440 -3732
- package/vendor/Package.internal.135.cjs +577 -521
- package/vendor/Package.internal.135.mjs +573 -521
- package/vendor/Package.internal.136.cjs +95 -2
- package/vendor/Package.internal.136.mjs +89 -2
- package/vendor/Package.internal.137.cjs +2 -2
- package/vendor/Package.internal.137.mjs +2 -2
- package/vendor/Package.internal.138.cjs +3751 -2
- package/vendor/Package.internal.138.mjs +3751 -2
- package/vendor/Package.internal.139.cjs +559 -2
- package/vendor/Package.internal.139.mjs +559 -2
- package/vendor/Package.internal.14.cjs +710 -905
- package/vendor/Package.internal.14.mjs +711 -894
- package/vendor/Package.internal.140.cjs +2 -2
- package/vendor/Package.internal.140.mjs +2 -2
- package/vendor/Package.internal.141.cjs +2 -2
- package/vendor/Package.internal.141.mjs +2 -2
- package/vendor/Package.internal.142.cjs +2 -2
- package/vendor/Package.internal.142.mjs +2 -2
- package/vendor/Package.internal.143.cjs +2 -2
- package/vendor/Package.internal.143.mjs +2 -2
- package/vendor/Package.internal.144.cjs +2 -2
- package/vendor/Package.internal.144.mjs +2 -2
- package/vendor/Package.internal.145.cjs +2 -2
- package/vendor/Package.internal.145.mjs +2 -2
- package/vendor/Package.internal.146.cjs +2 -2
- package/vendor/Package.internal.146.mjs +2 -2
- package/vendor/Package.internal.147.cjs +2 -406
- package/vendor/Package.internal.147.mjs +2 -400
- package/vendor/Package.internal.148.cjs +2 -102
- package/vendor/Package.internal.148.mjs +2 -104
- package/vendor/Package.internal.149.cjs +2 -25
- package/vendor/Package.internal.149.mjs +2 -27
- package/vendor/Package.internal.15.cjs +70 -40
- package/vendor/Package.internal.15.mjs +72 -44
- package/vendor/Package.internal.150.cjs +2 -2
- package/vendor/Package.internal.150.mjs +2 -2
- package/vendor/Package.internal.151.cjs +406 -2
- package/vendor/Package.internal.151.mjs +400 -2
- package/vendor/Package.internal.152.cjs +78 -697
- package/vendor/Package.internal.152.mjs +79 -698
- package/vendor/Package.internal.153.cjs +19 -1540
- package/vendor/Package.internal.153.mjs +21 -1534
- package/vendor/Package.internal.154.cjs +2 -362
- package/vendor/Package.internal.154.mjs +2 -364
- package/vendor/Package.internal.155.cjs +2 -105
- package/vendor/Package.internal.155.mjs +2 -107
- package/vendor/Package.internal.156.cjs +680 -593
- package/vendor/Package.internal.156.mjs +683 -582
- package/vendor/Package.internal.157.cjs +1444 -439
- package/vendor/Package.internal.157.mjs +1439 -432
- package/vendor/Package.internal.158.cjs +325 -566
- package/vendor/Package.internal.158.mjs +326 -567
- package/vendor/Package.internal.159.cjs +94 -126
- package/vendor/Package.internal.159.mjs +95 -119
- package/vendor/Package.internal.16.cjs +950 -232
- package/vendor/Package.internal.16.mjs +942 -236
- package/vendor/Package.internal.160.cjs +602 -85
- package/vendor/Package.internal.160.mjs +594 -83
- package/vendor/Package.internal.161.cjs +459 -1140
- package/vendor/Package.internal.161.mjs +460 -1141
- package/vendor/Package.internal.162.cjs +588 -73
- package/vendor/Package.internal.162.mjs +588 -81
- package/vendor/Package.internal.163.cjs +137 -2
- package/vendor/Package.internal.163.mjs +131 -2
- package/vendor/Package.internal.164.cjs +117 -2
- package/vendor/Package.internal.164.mjs +111 -2
- package/vendor/Package.internal.165.cjs +1204 -35
- package/vendor/Package.internal.165.mjs +1195 -36
- package/vendor/Package.internal.166.cjs +86 -6
- package/vendor/Package.internal.166.mjs +95 -7
- package/vendor/Package.internal.167.cjs +2 -10
- package/vendor/Package.internal.167.mjs +2 -6
- package/vendor/Package.internal.168.cjs +2 -163
- package/vendor/Package.internal.168.mjs +2 -163
- package/vendor/Package.internal.169.cjs +46 -14
- package/vendor/Package.internal.169.mjs +49 -9
- package/vendor/Package.internal.17.cjs +41 -429
- package/vendor/Package.internal.17.mjs +42 -430
- package/vendor/Package.internal.170.cjs +6 -247
- package/vendor/Package.internal.170.mjs +7 -246
- package/vendor/Package.internal.171.cjs +7 -944
- package/vendor/Package.internal.171.mjs +4 -945
- package/vendor/Package.internal.172.cjs +157 -19
- package/vendor/Package.internal.172.mjs +160 -24
- package/vendor/Package.internal.173.cjs +10 -67
- package/vendor/Package.internal.173.mjs +10 -67
- package/vendor/Package.internal.174.cjs +229 -633
- package/vendor/Package.internal.174.mjs +227 -631
- package/vendor/Package.internal.175.cjs +927 -55
- package/vendor/Package.internal.175.mjs +926 -54
- package/vendor/Package.internal.176.cjs +19 -1133
- package/vendor/Package.internal.176.mjs +25 -1031
- package/vendor/Package.internal.177.cjs +69 -59
- package/vendor/Package.internal.177.mjs +63 -59
- package/vendor/Package.internal.178.cjs +624 -81
- package/vendor/Package.internal.178.mjs +624 -81
- package/vendor/Package.internal.179.cjs +60 -85
- package/vendor/Package.internal.179.mjs +60 -85
- package/vendor/Package.internal.18.cjs +233 -528
- package/vendor/Package.internal.18.mjs +234 -523
- package/vendor/Package.internal.180.cjs +940 -45249
- package/vendor/Package.internal.180.mjs +869 -45268
- package/vendor/Package.internal.181.cjs +66 -4
- package/vendor/Package.internal.181.mjs +66 -4
- package/vendor/Package.internal.182.cjs +103 -21
- package/vendor/Package.internal.182.mjs +103 -21
- package/vendor/Package.internal.183.cjs +84 -299
- package/vendor/Package.internal.183.mjs +84 -299
- package/vendor/Package.internal.184.cjs +45316 -809
- package/vendor/Package.internal.184.mjs +45270 -789
- package/vendor/Package.internal.185.cjs +4 -1086
- package/vendor/Package.internal.185.mjs +4 -1088
- package/vendor/Package.internal.186.cjs +21 -156
- package/vendor/Package.internal.186.mjs +20 -157
- package/vendor/Package.internal.187.cjs +310 -8
- package/vendor/Package.internal.187.mjs +310 -8
- package/vendor/Package.internal.188.cjs +936 -7
- package/vendor/Package.internal.188.mjs +947 -8
- package/vendor/Package.internal.189.cjs +1072 -31
- package/vendor/Package.internal.189.mjs +1074 -31
- package/vendor/Package.internal.19.cjs +427 -217
- package/vendor/Package.internal.19.mjs +433 -223
- package/vendor/Package.internal.190.cjs +134 -462
- package/vendor/Package.internal.190.mjs +135 -441
- package/vendor/Package.internal.191.cjs +13 -2
- package/vendor/Package.internal.191.mjs +13 -2
- package/vendor/Package.internal.192.cjs +12 -2
- package/vendor/Package.internal.192.mjs +12 -2
- package/vendor/Package.internal.193.cjs +47 -2
- package/vendor/Package.internal.193.mjs +47 -2
- package/vendor/Package.internal.194.cjs +491 -2
- package/vendor/Package.internal.194.mjs +471 -2
- package/vendor/Package.internal.195.cjs +2 -2
- package/vendor/Package.internal.195.mjs +2 -2
- package/vendor/Package.internal.196.cjs +2 -2
- package/vendor/Package.internal.196.mjs +2 -2
- package/vendor/Package.internal.197.cjs +2 -2
- package/vendor/Package.internal.197.mjs +2 -2
- package/vendor/Package.internal.198.cjs +2 -2
- package/vendor/Package.internal.198.mjs +2 -2
- package/vendor/Package.internal.199.cjs +4 -0
- package/vendor/Package.internal.199.mjs +2 -0
- package/vendor/Package.internal.2.cjs +1 -1
- package/vendor/Package.internal.2.mjs +1 -1
- package/vendor/Package.internal.20.cjs +525 -957
- package/vendor/Package.internal.20.mjs +521 -959
- package/vendor/Package.internal.200.cjs +4 -0
- package/vendor/Package.internal.200.mjs +2 -0
- package/vendor/Package.internal.201.cjs +4 -0
- package/vendor/Package.internal.201.mjs +2 -0
- package/vendor/Package.internal.202.cjs +4 -0
- package/vendor/Package.internal.202.mjs +2 -0
- package/vendor/Package.internal.21.cjs +406 -8
- package/vendor/Package.internal.21.mjs +408 -8
- package/vendor/Package.internal.22.cjs +913 -123
- package/vendor/Package.internal.22.mjs +909 -123
- package/vendor/Package.internal.23.cjs +214 -136
- package/vendor/Package.internal.23.mjs +215 -135
- package/vendor/Package.internal.24.cjs +996 -5
- package/vendor/Package.internal.24.mjs +998 -5
- package/vendor/Package.internal.25.cjs +8 -20
- package/vendor/Package.internal.25.mjs +7 -19
- package/vendor/Package.internal.26.cjs +120 -473
- package/vendor/Package.internal.26.mjs +120 -469
- package/vendor/Package.internal.27.cjs +127 -60
- package/vendor/Package.internal.27.mjs +128 -57
- package/vendor/Package.internal.28.cjs +6 -2
- package/vendor/Package.internal.28.mjs +6 -2
- package/vendor/Package.internal.29.cjs +16 -35
- package/vendor/Package.internal.29.mjs +16 -35
- package/vendor/Package.internal.3.cjs +1 -1
- package/vendor/Package.internal.3.mjs +1 -1
- package/vendor/Package.internal.30.cjs +473 -21
- package/vendor/Package.internal.30.mjs +472 -24
- package/vendor/Package.internal.31.cjs +77 -9
- package/vendor/Package.internal.31.mjs +73 -9
- package/vendor/Package.internal.32.cjs +2 -189
- package/vendor/Package.internal.32.mjs +2 -191
- package/vendor/Package.internal.33.cjs +31 -53
- package/vendor/Package.internal.33.mjs +32 -54
- package/vendor/Package.internal.34.cjs +20 -160
- package/vendor/Package.internal.34.mjs +24 -166
- package/vendor/Package.internal.35.cjs +10 -2072
- package/vendor/Package.internal.35.mjs +10 -2068
- package/vendor/Package.internal.36.cjs +186 -517
- package/vendor/Package.internal.36.mjs +189 -512
- package/vendor/Package.internal.37.cjs +57 -413
- package/vendor/Package.internal.37.mjs +57 -409
- package/vendor/Package.internal.38.cjs +132 -2329
- package/vendor/Package.internal.38.mjs +133 -2318
- package/vendor/Package.internal.39.cjs +2063 -50
- package/vendor/Package.internal.39.mjs +2058 -57
- package/vendor/Package.internal.4.cjs +1 -1
- package/vendor/Package.internal.4.mjs +1 -1
- package/vendor/Package.internal.40.cjs +507 -137
- package/vendor/Package.internal.40.mjs +504 -140
- package/vendor/Package.internal.41.cjs +355 -573
- package/vendor/Package.internal.41.mjs +353 -577
- package/vendor/Package.internal.42.cjs +2315 -196
- package/vendor/Package.internal.42.mjs +2307 -200
- package/vendor/Package.internal.43.cjs +57 -222
- package/vendor/Package.internal.43.mjs +64 -217
- package/vendor/Package.internal.44.cjs +150 -2
- package/vendor/Package.internal.44.mjs +150 -2
- package/vendor/Package.internal.45.cjs +591 -317
- package/vendor/Package.internal.45.mjs +596 -316
- package/vendor/Package.internal.46.cjs +236 -31
- package/vendor/Package.internal.46.mjs +238 -31
- package/vendor/Package.internal.47.cjs +217 -46
- package/vendor/Package.internal.47.mjs +213 -46
- package/vendor/Package.internal.48.cjs +2 -23
- package/vendor/Package.internal.48.mjs +2 -23
- package/vendor/Package.internal.49.cjs +354 -87
- package/vendor/Package.internal.49.mjs +351 -82
- package/vendor/Package.internal.5.cjs +1 -1
- package/vendor/Package.internal.5.mjs +1 -1
- package/vendor/Package.internal.50.cjs +33 -79
- package/vendor/Package.internal.50.mjs +33 -79
- package/vendor/Package.internal.51.cjs +46 -81
- package/vendor/Package.internal.51.mjs +45 -68
- package/vendor/Package.internal.52.cjs +18 -21
- package/vendor/Package.internal.52.mjs +18 -21
- package/vendor/Package.internal.53.cjs +78 -335
- package/vendor/Package.internal.53.mjs +73 -336
- package/vendor/Package.internal.54.cjs +86 -2
- package/vendor/Package.internal.54.mjs +86 -2
- package/vendor/Package.internal.55.cjs +64 -172
- package/vendor/Package.internal.55.mjs +58 -174
- package/vendor/Package.internal.56.cjs +23 -22
- package/vendor/Package.internal.56.mjs +23 -24
- package/vendor/Package.internal.57.cjs +353 -2
- package/vendor/Package.internal.57.mjs +353 -2
- package/vendor/Package.internal.58.cjs +2 -198
- package/vendor/Package.internal.58.mjs +2 -200
- package/vendor/Package.internal.59.cjs +127 -3945
- package/vendor/Package.internal.59.mjs +126 -3958
- package/vendor/Package.internal.6.cjs +2 -2
- package/vendor/Package.internal.6.mjs +2 -2
- package/vendor/Package.internal.60.cjs +25 -2
- package/vendor/Package.internal.60.mjs +27 -2
- package/vendor/Package.internal.61.cjs +2 -319
- package/vendor/Package.internal.61.mjs +2 -321
- package/vendor/Package.internal.62.cjs +175 -340
- package/vendor/Package.internal.62.mjs +177 -340
- package/vendor/Package.internal.63.cjs +3959 -343
- package/vendor/Package.internal.63.mjs +3967 -335
- package/vendor/Package.internal.64.cjs +2 -125
- package/vendor/Package.internal.64.mjs +2 -125
- package/vendor/Package.internal.65.cjs +314 -24
- package/vendor/Package.internal.65.mjs +316 -24
- package/vendor/Package.internal.66.cjs +347 -69
- package/vendor/Package.internal.66.mjs +350 -72
- package/vendor/Package.internal.67.cjs +386 -44
- package/vendor/Package.internal.67.mjs +386 -50
- package/vendor/Package.internal.68.cjs +115 -22
- package/vendor/Package.internal.68.mjs +114 -21
- package/vendor/Package.internal.69.cjs +29 -2
- package/vendor/Package.internal.69.mjs +29 -2
- package/vendor/Package.internal.7.cjs +1 -1
- package/vendor/Package.internal.7.mjs +1 -1
- package/vendor/Package.internal.70.cjs +67 -664
- package/vendor/Package.internal.70.mjs +67 -644
- package/vendor/Package.internal.71.cjs +41 -13876
- package/vendor/Package.internal.71.mjs +41 -13852
- package/vendor/Package.internal.72.cjs +26 -29
- package/vendor/Package.internal.72.mjs +27 -26
- package/vendor/Package.internal.73.cjs +2 -4075
- package/vendor/Package.internal.73.mjs +2 -4077
- package/vendor/Package.internal.74.cjs +654 -1634
- package/vendor/Package.internal.74.mjs +633 -1635
- package/vendor/Package.internal.75.cjs +13834 -197
- package/vendor/Package.internal.75.mjs +13810 -197
- package/vendor/Package.internal.76.cjs +25 -4952
- package/vendor/Package.internal.76.mjs +23 -4940
- package/vendor/Package.internal.77.cjs +3975 -1137
- package/vendor/Package.internal.77.mjs +3979 -1127
- package/vendor/Package.internal.78.cjs +1635 -311
- package/vendor/Package.internal.78.mjs +1637 -299
- package/vendor/Package.internal.79.cjs +248 -23
- package/vendor/Package.internal.79.mjs +251 -26
- package/vendor/Package.internal.8.cjs +1 -1
- package/vendor/Package.internal.8.mjs +1 -1
- package/vendor/Package.internal.80.cjs +4941 -65
- package/vendor/Package.internal.80.mjs +4926 -66
- package/vendor/Package.internal.81.cjs +1221 -37
- package/vendor/Package.internal.81.mjs +1208 -38
- package/vendor/Package.internal.82.cjs +334 -9
- package/vendor/Package.internal.82.mjs +322 -9
- package/vendor/Package.internal.83.cjs +32 -1353
- package/vendor/Package.internal.83.mjs +32 -1355
- package/vendor/Package.internal.84.cjs +82 -6
- package/vendor/Package.internal.84.mjs +86 -4
- package/vendor/Package.internal.85.cjs +53 -2
- package/vendor/Package.internal.85.mjs +55 -2
- package/vendor/Package.internal.86.cjs +8 -344
- package/vendor/Package.internal.86.mjs +8 -346
- package/vendor/Package.internal.87.cjs +1351 -76
- package/vendor/Package.internal.87.mjs +1352 -77
- package/vendor/Package.internal.88.cjs +6 -1439
- package/vendor/Package.internal.88.mjs +4 -1431
- package/vendor/Package.internal.89.cjs +2 -142
- package/vendor/Package.internal.89.mjs +2 -142
- package/vendor/Package.internal.9.cjs +1 -1
- package/vendor/Package.internal.9.mjs +1 -1
- package/vendor/Package.internal.90.cjs +274 -1745
- package/vendor/Package.internal.90.mjs +275 -1738
- package/vendor/Package.internal.91.cjs +67 -117
- package/vendor/Package.internal.91.mjs +69 -113
- package/vendor/Package.internal.92.cjs +1388 -151
- package/vendor/Package.internal.92.mjs +1377 -152
- package/vendor/Package.internal.93.cjs +94 -1591
- package/vendor/Package.internal.93.mjs +94 -1593
- package/vendor/Package.internal.94.cjs +1802 -54
- package/vendor/Package.internal.94.mjs +1799 -59
- package/vendor/Package.internal.95.cjs +126 -24
- package/vendor/Package.internal.95.mjs +121 -25
- package/vendor/Package.internal.96.cjs +189 -50
- package/vendor/Package.internal.96.mjs +194 -53
- package/vendor/Package.internal.97.cjs +1611 -93
- package/vendor/Package.internal.97.mjs +1615 -95
- package/vendor/Package.internal.98.cjs +66 -8
- package/vendor/Package.internal.98.mjs +71 -5
- package/vendor/Package.internal.99.cjs +26 -2
- package/vendor/Package.internal.99.mjs +28 -2
|
@@ -1,990 +1,795 @@
|
|
|
1
|
-
/* Build Date: Mon Nov 24 2025
|
|
1
|
+
/* Build Date: Mon Nov 24 2025 18:02:01 GMT+0800 (China Standard Time) */
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
|
-
const t = require("
|
|
4
|
+
const t = require("./Package.internal.11.cjs");
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
const u = o(e);
|
|
23
|
-
|
|
24
|
-
const c = o(s);
|
|
25
|
-
|
|
26
|
-
const l = o(n);
|
|
27
|
-
|
|
28
|
-
exports.out$1 = {};
|
|
29
|
-
|
|
30
|
-
var d = {};
|
|
31
|
-
|
|
32
|
-
var h = {};
|
|
33
|
-
|
|
34
|
-
var _ = {};
|
|
35
|
-
|
|
36
|
-
var f = {};
|
|
37
|
-
|
|
38
|
-
exports.out = {};
|
|
39
|
-
|
|
40
|
-
var S = {};
|
|
41
|
-
|
|
42
|
-
Object.defineProperty(S, "__esModule", {
|
|
43
|
-
value: true
|
|
44
|
-
});
|
|
45
|
-
|
|
46
|
-
S.read = void 0;
|
|
47
|
-
|
|
48
|
-
function p(t, e, r) {
|
|
49
|
-
e.fs.lstat(t, (s, i) => {
|
|
50
|
-
if (s !== null) {
|
|
51
|
-
y(r, s);
|
|
52
|
-
return;
|
|
53
|
-
}
|
|
54
|
-
if (!i.isSymbolicLink() || !e.followSymbolicLink) {
|
|
55
|
-
m(r, i);
|
|
56
|
-
return;
|
|
6
|
+
var e = class {
|
|
7
|
+
_eventListeners;
|
|
8
|
+
_maxListeners;
|
|
9
|
+
constructor() {
|
|
10
|
+
this._eventListeners = new Map;
|
|
11
|
+
this._maxListeners = 100;
|
|
12
|
+
}
|
|
13
|
+
maxListeners() {
|
|
14
|
+
return this._maxListeners;
|
|
15
|
+
}
|
|
16
|
+
addListener(t, e) {
|
|
17
|
+
this.on(t, e);
|
|
18
|
+
}
|
|
19
|
+
on(t, e) {
|
|
20
|
+
if (!this._eventListeners.has(t)) {
|
|
21
|
+
this._eventListeners.set(t, []);
|
|
57
22
|
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
return;
|
|
63
|
-
}
|
|
64
|
-
m(r, i);
|
|
65
|
-
return;
|
|
66
|
-
}
|
|
67
|
-
if (e.markSymbolicLink) {
|
|
68
|
-
s.isSymbolicLink = () => true;
|
|
23
|
+
const s = this._eventListeners.get(t);
|
|
24
|
+
if (s) {
|
|
25
|
+
if (s.length >= this._maxListeners) {
|
|
26
|
+
console.warn(`MaxListenersExceededWarning: Possible event memory leak detected. ${s.length + 1} ${t} listeners added. Use setMaxListeners() to increase limit.`);
|
|
69
27
|
}
|
|
70
|
-
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
function y(t, e) {
|
|
78
|
-
t(e);
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
function m(t, e) {
|
|
82
|
-
t(null, e);
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
var g = {};
|
|
86
|
-
|
|
87
|
-
Object.defineProperty(g, "__esModule", {
|
|
88
|
-
value: true
|
|
89
|
-
});
|
|
90
|
-
|
|
91
|
-
g.read = void 0;
|
|
92
|
-
|
|
93
|
-
function b(t, e) {
|
|
94
|
-
const r = e.fs.lstatSync(t);
|
|
95
|
-
if (!r.isSymbolicLink() || !e.followSymbolicLink) {
|
|
96
|
-
return r;
|
|
28
|
+
s.push(e);
|
|
29
|
+
}
|
|
30
|
+
return this;
|
|
31
|
+
}
|
|
32
|
+
removeListener(t, e) {
|
|
33
|
+
this.off(t, e);
|
|
97
34
|
}
|
|
98
|
-
|
|
99
|
-
const
|
|
100
|
-
|
|
101
|
-
|
|
35
|
+
off(t, e) {
|
|
36
|
+
const s = this._eventListeners.get(t) ?? [];
|
|
37
|
+
const i = s.indexOf(e);
|
|
38
|
+
if (i !== -1) {
|
|
39
|
+
s.splice(i, 1);
|
|
102
40
|
}
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
if (!e.throwErrorOnBrokenSymbolicLink) {
|
|
106
|
-
return r;
|
|
41
|
+
if (s.length === 0) {
|
|
42
|
+
this._eventListeners.delete(t);
|
|
107
43
|
}
|
|
108
|
-
throw t;
|
|
109
44
|
}
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
var v = {};
|
|
117
|
-
|
|
118
|
-
(function(t) {
|
|
119
|
-
Object.defineProperty(t, "__esModule", {
|
|
120
|
-
value: true
|
|
121
|
-
});
|
|
122
|
-
t.createFileSystemAdapter = t.FILE_SYSTEM_ADAPTER = void 0;
|
|
123
|
-
const e = u.default;
|
|
124
|
-
t.FILE_SYSTEM_ADAPTER = {
|
|
125
|
-
lstat: e.lstat,
|
|
126
|
-
stat: e.stat,
|
|
127
|
-
lstatSync: e.lstatSync,
|
|
128
|
-
statSync: e.statSync
|
|
129
|
-
};
|
|
130
|
-
function r(e) {
|
|
131
|
-
if (e === undefined) {
|
|
132
|
-
return t.FILE_SYSTEM_ADAPTER;
|
|
133
|
-
}
|
|
134
|
-
return Object.assign(Object.assign({}, t.FILE_SYSTEM_ADAPTER), e);
|
|
135
|
-
}
|
|
136
|
-
t.createFileSystemAdapter = r;
|
|
137
|
-
})(v);
|
|
138
|
-
|
|
139
|
-
Object.defineProperty(E, "__esModule", {
|
|
140
|
-
value: true
|
|
141
|
-
});
|
|
142
|
-
|
|
143
|
-
const P = v;
|
|
144
|
-
|
|
145
|
-
let k = class Settings {
|
|
146
|
-
constructor(t = {}) {
|
|
147
|
-
this._options = t;
|
|
148
|
-
this.followSymbolicLink = this._getValue(this._options.followSymbolicLink, true);
|
|
149
|
-
this.fs = P.createFileSystemAdapter(this._options.fs);
|
|
150
|
-
this.markSymbolicLink = this._getValue(this._options.markSymbolicLink, false);
|
|
151
|
-
this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, true);
|
|
152
|
-
}
|
|
153
|
-
_getValue(t, e) {
|
|
154
|
-
return t !== null && t !== void 0 ? t : e;
|
|
45
|
+
once(t, e) {
|
|
46
|
+
const s = (...i) => {
|
|
47
|
+
e(...i);
|
|
48
|
+
this.off(t, s);
|
|
49
|
+
};
|
|
50
|
+
this.on(t, s);
|
|
155
51
|
}
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
exports.out.statSync = exports.out.stat = exports.out.Settings = void 0;
|
|
165
|
-
|
|
166
|
-
const F = S;
|
|
167
|
-
|
|
168
|
-
const w = g;
|
|
169
|
-
|
|
170
|
-
const L = E;
|
|
171
|
-
|
|
172
|
-
exports.out.Settings = L.default;
|
|
173
|
-
|
|
174
|
-
function O(t, e, r) {
|
|
175
|
-
if (typeof e === "function") {
|
|
176
|
-
F.read(t, D(), e);
|
|
177
|
-
return;
|
|
52
|
+
emit(t, ...e) {
|
|
53
|
+
const s = this._eventListeners.get(t);
|
|
54
|
+
if (s && s.length > 0) {
|
|
55
|
+
for (const t of s) {
|
|
56
|
+
t(...e);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
178
59
|
}
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
exports.out.stat = O;
|
|
183
|
-
|
|
184
|
-
function T(t, e) {
|
|
185
|
-
const r = D(e);
|
|
186
|
-
return w.read(t, r);
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
exports.out.statSync = T;
|
|
190
|
-
|
|
191
|
-
function D(t = {}) {
|
|
192
|
-
if (t instanceof L.default) {
|
|
193
|
-
return t;
|
|
60
|
+
listeners(t) {
|
|
61
|
+
return this._eventListeners.get(t) ?? [];
|
|
194
62
|
}
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
value: true
|
|
202
|
-
});
|
|
203
|
-
|
|
204
|
-
j.IS_SUPPORT_READDIR_WITH_FILE_TYPES = void 0;
|
|
205
|
-
|
|
206
|
-
const A = process.versions.node.split(".");
|
|
207
|
-
|
|
208
|
-
if (A[0] === undefined || A[1] === undefined) {
|
|
209
|
-
throw new Error(`Unexpected behavior. The 'process.versions.node' variable has invalid value: ${process.versions.node}`);
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
const I = Number.parseInt(A[0], 10);
|
|
213
|
-
|
|
214
|
-
const M = Number.parseInt(A[1], 10);
|
|
215
|
-
|
|
216
|
-
const R = 10;
|
|
217
|
-
|
|
218
|
-
const x = 10;
|
|
219
|
-
|
|
220
|
-
const V = I > R;
|
|
221
|
-
|
|
222
|
-
const q = I === R && M >= x;
|
|
223
|
-
|
|
224
|
-
j.IS_SUPPORT_READDIR_WITH_FILE_TYPES = V || q;
|
|
225
|
-
|
|
226
|
-
var B = {};
|
|
227
|
-
|
|
228
|
-
var Y = {};
|
|
229
|
-
|
|
230
|
-
Object.defineProperty(Y, "__esModule", {
|
|
231
|
-
value: true
|
|
232
|
-
});
|
|
233
|
-
|
|
234
|
-
Y.createDirentFromStats = void 0;
|
|
235
|
-
|
|
236
|
-
class DirentFromStats {
|
|
237
|
-
constructor(t, e) {
|
|
238
|
-
this.name = t;
|
|
239
|
-
this.isBlockDevice = e.isBlockDevice.bind(e);
|
|
240
|
-
this.isCharacterDevice = e.isCharacterDevice.bind(e);
|
|
241
|
-
this.isDirectory = e.isDirectory.bind(e);
|
|
242
|
-
this.isFIFO = e.isFIFO.bind(e);
|
|
243
|
-
this.isFile = e.isFile.bind(e);
|
|
244
|
-
this.isSocket = e.isSocket.bind(e);
|
|
245
|
-
this.isSymbolicLink = e.isSymbolicLink.bind(e);
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
function $(t, e) {
|
|
250
|
-
return new DirentFromStats(t, e);
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
Y.createDirentFromStats = $;
|
|
254
|
-
|
|
255
|
-
Object.defineProperty(B, "__esModule", {
|
|
256
|
-
value: true
|
|
257
|
-
});
|
|
258
|
-
|
|
259
|
-
B.fs = void 0;
|
|
260
|
-
|
|
261
|
-
const W = Y;
|
|
262
|
-
|
|
263
|
-
B.fs = W;
|
|
264
|
-
|
|
265
|
-
var Q = {};
|
|
266
|
-
|
|
267
|
-
Object.defineProperty(Q, "__esModule", {
|
|
268
|
-
value: true
|
|
269
|
-
});
|
|
270
|
-
|
|
271
|
-
Q.joinPathSegments = void 0;
|
|
272
|
-
|
|
273
|
-
function N(t, e, r) {
|
|
274
|
-
if (t.endsWith(r)) {
|
|
275
|
-
return t + e;
|
|
63
|
+
removeAllListeners(t) {
|
|
64
|
+
if (t) {
|
|
65
|
+
this._eventListeners.delete(t);
|
|
66
|
+
} else {
|
|
67
|
+
this._eventListeners.clear();
|
|
68
|
+
}
|
|
276
69
|
}
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
Q.joinPathSegments = N;
|
|
281
|
-
|
|
282
|
-
Object.defineProperty(f, "__esModule", {
|
|
283
|
-
value: true
|
|
284
|
-
});
|
|
285
|
-
|
|
286
|
-
f.readdir = f.readdirWithFileTypes = f.read = void 0;
|
|
287
|
-
|
|
288
|
-
const U = exports.out;
|
|
289
|
-
|
|
290
|
-
const H = r.runParallel_1;
|
|
291
|
-
|
|
292
|
-
const C = j;
|
|
293
|
-
|
|
294
|
-
const z = B;
|
|
295
|
-
|
|
296
|
-
const G = Q;
|
|
297
|
-
|
|
298
|
-
function J(t, e, r) {
|
|
299
|
-
if (!e.stats && C.IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
|
|
300
|
-
K(t, e, r);
|
|
301
|
-
return;
|
|
70
|
+
setMaxListeners(t) {
|
|
71
|
+
this._maxListeners = t;
|
|
302
72
|
}
|
|
303
|
-
|
|
304
|
-
}
|
|
73
|
+
};
|
|
305
74
|
|
|
306
|
-
|
|
75
|
+
var s = e;
|
|
307
76
|
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
}));
|
|
321
|
-
if (!e.followSymbolicLinks) {
|
|
322
|
-
et(r, n);
|
|
323
|
-
return;
|
|
77
|
+
var i = class extends s {
|
|
78
|
+
_hookHandlers;
|
|
79
|
+
constructor() {
|
|
80
|
+
super();
|
|
81
|
+
this._hookHandlers = new Map;
|
|
82
|
+
}
|
|
83
|
+
addHandler(t, e) {
|
|
84
|
+
const s = this._hookHandlers.get(t);
|
|
85
|
+
if (s) {
|
|
86
|
+
s.push(e);
|
|
87
|
+
} else {
|
|
88
|
+
this._hookHandlers.set(t, [ e ]);
|
|
324
89
|
}
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
90
|
+
}
|
|
91
|
+
removeHandler(t, e) {
|
|
92
|
+
const s = this._hookHandlers.get(t);
|
|
93
|
+
if (s) {
|
|
94
|
+
const t = s.indexOf(e);
|
|
95
|
+
if (t !== -1) {
|
|
96
|
+
s.splice(t, 1);
|
|
330
97
|
}
|
|
331
|
-
et(r, e);
|
|
332
|
-
});
|
|
333
|
-
});
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
f.readdirWithFileTypes = K;
|
|
337
|
-
|
|
338
|
-
function X(t, e) {
|
|
339
|
-
return r => {
|
|
340
|
-
if (!t.dirent.isSymbolicLink()) {
|
|
341
|
-
r(null, t);
|
|
342
|
-
return;
|
|
343
98
|
}
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
99
|
+
}
|
|
100
|
+
trigger(t, e) {
|
|
101
|
+
const s = this._hookHandlers.get(t);
|
|
102
|
+
if (s) {
|
|
103
|
+
for (const i of s) {
|
|
104
|
+
try {
|
|
105
|
+
i(e);
|
|
106
|
+
} catch (e) {
|
|
107
|
+
this.emit("error", new Error(`Error in hook handler for event "${t}": ${e.message}`));
|
|
349
108
|
}
|
|
350
|
-
r(null, t);
|
|
351
|
-
return;
|
|
352
109
|
}
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
get handlers() {
|
|
113
|
+
return new Map(this._hookHandlers);
|
|
114
|
+
}
|
|
115
|
+
};
|
|
358
116
|
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
117
|
+
var r = i;
|
|
118
|
+
|
|
119
|
+
var o = class extends s {
|
|
120
|
+
enabled=true;
|
|
121
|
+
hits=0;
|
|
122
|
+
misses=0;
|
|
123
|
+
sets=0;
|
|
124
|
+
deletes=0;
|
|
125
|
+
errors=0;
|
|
126
|
+
constructor(t) {
|
|
127
|
+
super();
|
|
128
|
+
if (t !== void 0) {
|
|
129
|
+
this.enabled = t;
|
|
364
130
|
}
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
131
|
+
this.reset();
|
|
132
|
+
}
|
|
133
|
+
hit() {
|
|
134
|
+
if (this.enabled) {
|
|
135
|
+
this.hits++;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
miss() {
|
|
139
|
+
if (this.enabled) {
|
|
140
|
+
this.misses++;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
set() {
|
|
144
|
+
if (this.enabled) {
|
|
145
|
+
this.sets++;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
delete() {
|
|
149
|
+
if (this.enabled) {
|
|
150
|
+
this.deletes++;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
hitsOrMisses(t) {
|
|
154
|
+
for (const e of t) {
|
|
155
|
+
if (e === void 0) {
|
|
156
|
+
this.miss();
|
|
157
|
+
} else {
|
|
158
|
+
this.hit();
|
|
389
159
|
}
|
|
390
|
-
|
|
391
|
-
});
|
|
392
|
-
});
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
f.readdir = Z;
|
|
396
|
-
|
|
397
|
-
function tt(t, e) {
|
|
398
|
-
t(e);
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
function et(t, e) {
|
|
402
|
-
t(null, e);
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
var rt = {};
|
|
406
|
-
|
|
407
|
-
Object.defineProperty(rt, "__esModule", {
|
|
408
|
-
value: true
|
|
409
|
-
});
|
|
410
|
-
|
|
411
|
-
rt.readdir = rt.readdirWithFileTypes = rt.read = void 0;
|
|
412
|
-
|
|
413
|
-
const st = exports.out;
|
|
414
|
-
|
|
415
|
-
const it = j;
|
|
416
|
-
|
|
417
|
-
const nt = B;
|
|
418
|
-
|
|
419
|
-
const ot = Q;
|
|
420
|
-
|
|
421
|
-
function at(t, e) {
|
|
422
|
-
if (!e.stats && it.IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
|
|
423
|
-
return ut(t, e);
|
|
160
|
+
}
|
|
424
161
|
}
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
162
|
+
reset() {
|
|
163
|
+
this.hits = 0;
|
|
164
|
+
this.misses = 0;
|
|
165
|
+
this.sets = 0;
|
|
166
|
+
this.deletes = 0;
|
|
167
|
+
this.errors = 0;
|
|
168
|
+
}
|
|
169
|
+
};
|
|
429
170
|
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
171
|
+
var a = o;
|
|
172
|
+
|
|
173
|
+
var n = [ "sqlite", "postgres", "mysql", "mongo", "redis", "valkey", "etcd" ];
|
|
174
|
+
|
|
175
|
+
exports.Keyv = class Keyv extends s {
|
|
176
|
+
opts;
|
|
177
|
+
iterator;
|
|
178
|
+
hooks=new r;
|
|
179
|
+
stats=new a(false);
|
|
180
|
+
_ttl;
|
|
181
|
+
_namespace;
|
|
182
|
+
_store=new Map;
|
|
183
|
+
_serialize=t.defaultSerialize;
|
|
184
|
+
_deserialize=t.defaultDeserialize;
|
|
185
|
+
_compression;
|
|
186
|
+
_useKeyPrefix=true;
|
|
187
|
+
_throwOnErrors=false;
|
|
188
|
+
constructor(e, s) {
|
|
189
|
+
super();
|
|
190
|
+
s ??= {};
|
|
191
|
+
e ??= {};
|
|
192
|
+
this.opts = {
|
|
193
|
+
namespace: "keyv",
|
|
194
|
+
serialize: t.defaultSerialize,
|
|
195
|
+
deserialize: t.defaultDeserialize,
|
|
196
|
+
emitErrors: true,
|
|
197
|
+
store: new Map,
|
|
198
|
+
...s
|
|
439
199
|
};
|
|
440
|
-
if (
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
200
|
+
if (e && e.get) {
|
|
201
|
+
this.opts.store = e;
|
|
202
|
+
} else {
|
|
203
|
+
this.opts = {
|
|
204
|
+
...this.opts,
|
|
205
|
+
...e
|
|
206
|
+
};
|
|
207
|
+
}
|
|
208
|
+
this._store = this.opts.store ?? new Map;
|
|
209
|
+
this._compression = this.opts.compression;
|
|
210
|
+
this._serialize = this.opts.serialize;
|
|
211
|
+
this._deserialize = this.opts.deserialize;
|
|
212
|
+
if (this.opts.namespace) {
|
|
213
|
+
this._namespace = this.opts.namespace;
|
|
214
|
+
}
|
|
215
|
+
if (this._store) {
|
|
216
|
+
if (!this._isValidStorageAdapter(this._store)) {
|
|
217
|
+
throw new Error("Invalid storage adapter");
|
|
218
|
+
}
|
|
219
|
+
if (typeof this._store.on === "function") {
|
|
220
|
+
this._store.on("error", t => this.emit("error", t));
|
|
221
|
+
}
|
|
222
|
+
this._store.namespace = this._namespace;
|
|
223
|
+
if (typeof this._store[Symbol.iterator] === "function" && this._store instanceof Map) {
|
|
224
|
+
this.iterator = this.generateIterator(this._store);
|
|
225
|
+
} else if ("iterator" in this._store && this._store.opts && this._checkIterableAdapter()) {
|
|
226
|
+
this.iterator = this.generateIterator(this._store.iterator.bind(this._store));
|
|
448
227
|
}
|
|
449
228
|
}
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
const n = {
|
|
462
|
-
name: r,
|
|
463
|
-
path: s,
|
|
464
|
-
dirent: nt.fs.createDirentFromStats(r, i)
|
|
465
|
-
};
|
|
466
|
-
if (e.stats) {
|
|
467
|
-
n.stats = i;
|
|
229
|
+
if (this.opts.stats) {
|
|
230
|
+
this.stats.enabled = this.opts.stats;
|
|
231
|
+
}
|
|
232
|
+
if (this.opts.ttl) {
|
|
233
|
+
this._ttl = this.opts.ttl;
|
|
234
|
+
}
|
|
235
|
+
if (this.opts.useKeyPrefix !== void 0) {
|
|
236
|
+
this._useKeyPrefix = this.opts.useKeyPrefix;
|
|
237
|
+
}
|
|
238
|
+
if (this.opts.throwOnErrors !== void 0) {
|
|
239
|
+
this._throwOnErrors = this.opts.throwOnErrors;
|
|
468
240
|
}
|
|
469
|
-
return n;
|
|
470
|
-
});
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
rt.readdir = ct;
|
|
474
|
-
|
|
475
|
-
var lt = {};
|
|
476
|
-
|
|
477
|
-
var dt = {};
|
|
478
|
-
|
|
479
|
-
(function(t) {
|
|
480
|
-
Object.defineProperty(t, "__esModule", {
|
|
481
|
-
value: true
|
|
482
|
-
});
|
|
483
|
-
t.createFileSystemAdapter = t.FILE_SYSTEM_ADAPTER = void 0;
|
|
484
|
-
const e = u.default;
|
|
485
|
-
t.FILE_SYSTEM_ADAPTER = {
|
|
486
|
-
lstat: e.lstat,
|
|
487
|
-
stat: e.stat,
|
|
488
|
-
lstatSync: e.lstatSync,
|
|
489
|
-
statSync: e.statSync,
|
|
490
|
-
readdir: e.readdir,
|
|
491
|
-
readdirSync: e.readdirSync
|
|
492
|
-
};
|
|
493
|
-
function r(e) {
|
|
494
|
-
if (e === undefined) {
|
|
495
|
-
return t.FILE_SYSTEM_ADAPTER;
|
|
496
|
-
}
|
|
497
|
-
return Object.assign(Object.assign({}, t.FILE_SYSTEM_ADAPTER), e);
|
|
498
|
-
}
|
|
499
|
-
t.createFileSystemAdapter = r;
|
|
500
|
-
})(dt);
|
|
501
|
-
|
|
502
|
-
Object.defineProperty(lt, "__esModule", {
|
|
503
|
-
value: true
|
|
504
|
-
});
|
|
505
|
-
|
|
506
|
-
const ht = c.default;
|
|
507
|
-
|
|
508
|
-
const _t = exports.out;
|
|
509
|
-
|
|
510
|
-
const ft = dt;
|
|
511
|
-
|
|
512
|
-
let St = class Settings {
|
|
513
|
-
constructor(t = {}) {
|
|
514
|
-
this._options = t;
|
|
515
|
-
this.followSymbolicLinks = this._getValue(this._options.followSymbolicLinks, false);
|
|
516
|
-
this.fs = ft.createFileSystemAdapter(this._options.fs);
|
|
517
|
-
this.pathSegmentSeparator = this._getValue(this._options.pathSegmentSeparator, ht.sep);
|
|
518
|
-
this.stats = this._getValue(this._options.stats, false);
|
|
519
|
-
this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, true);
|
|
520
|
-
this.fsStatSettings = new _t.Settings({
|
|
521
|
-
followSymbolicLink: this.followSymbolicLinks,
|
|
522
|
-
fs: this.fs,
|
|
523
|
-
throwErrorOnBrokenSymbolicLink: this.throwErrorOnBrokenSymbolicLink
|
|
524
|
-
});
|
|
525
241
|
}
|
|
526
|
-
|
|
527
|
-
return
|
|
242
|
+
get store() {
|
|
243
|
+
return this._store;
|
|
528
244
|
}
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
function gt(t, e, r) {
|
|
548
|
-
if (typeof e === "function") {
|
|
549
|
-
pt.read(t, Et(), e);
|
|
550
|
-
return;
|
|
245
|
+
set store(t) {
|
|
246
|
+
if (this._isValidStorageAdapter(t)) {
|
|
247
|
+
this._store = t;
|
|
248
|
+
this.opts.store = t;
|
|
249
|
+
if (typeof t.on === "function") {
|
|
250
|
+
t.on("error", t => this.emit("error", t));
|
|
251
|
+
}
|
|
252
|
+
if (this._namespace) {
|
|
253
|
+
this._store.namespace = this._namespace;
|
|
254
|
+
}
|
|
255
|
+
if (typeof t[Symbol.iterator] === "function" && t instanceof Map) {
|
|
256
|
+
this.iterator = this.generateIterator(t);
|
|
257
|
+
} else if ("iterator" in t && t.opts && this._checkIterableAdapter()) {
|
|
258
|
+
this.iterator = this.generateIterator(t.iterator?.bind(t));
|
|
259
|
+
}
|
|
260
|
+
} else {
|
|
261
|
+
throw new Error("Invalid storage adapter");
|
|
262
|
+
}
|
|
551
263
|
}
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
_.scandir = gt;
|
|
556
|
-
|
|
557
|
-
function bt(t, e) {
|
|
558
|
-
const r = Et(e);
|
|
559
|
-
return yt.read(t, r);
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
_.scandirSync = bt;
|
|
563
|
-
|
|
564
|
-
function Et(t = {}) {
|
|
565
|
-
if (t instanceof mt.default) {
|
|
566
|
-
return t;
|
|
264
|
+
get compression() {
|
|
265
|
+
return this._compression;
|
|
567
266
|
}
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
var vt = {};
|
|
572
|
-
|
|
573
|
-
Object.defineProperty(vt, "__esModule", {
|
|
574
|
-
value: true
|
|
575
|
-
});
|
|
576
|
-
|
|
577
|
-
vt.joinPathSegments = vt.replacePathSegmentSeparator = vt.isAppliedFilter = vt.isFatalError = void 0;
|
|
578
|
-
|
|
579
|
-
function Pt(t, e) {
|
|
580
|
-
if (t.errorFilter === null) {
|
|
581
|
-
return true;
|
|
267
|
+
set compression(t) {
|
|
268
|
+
this._compression = t;
|
|
582
269
|
}
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
vt.isFatalError = Pt;
|
|
587
|
-
|
|
588
|
-
function kt(t, e) {
|
|
589
|
-
return t === null || t(e);
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
vt.isAppliedFilter = kt;
|
|
593
|
-
|
|
594
|
-
function Ft(t, e) {
|
|
595
|
-
return t.split(/[/\\]/).join(e);
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
vt.replacePathSegmentSeparator = Ft;
|
|
599
|
-
|
|
600
|
-
function wt(t, e, r) {
|
|
601
|
-
if (t === "") {
|
|
602
|
-
return e;
|
|
270
|
+
get namespace() {
|
|
271
|
+
return this._namespace;
|
|
603
272
|
}
|
|
604
|
-
|
|
605
|
-
|
|
273
|
+
set namespace(t) {
|
|
274
|
+
this._namespace = t;
|
|
275
|
+
this.opts.namespace = t;
|
|
276
|
+
this._store.namespace = t;
|
|
277
|
+
if (this.opts.store) {
|
|
278
|
+
this.opts.store.namespace = t;
|
|
279
|
+
}
|
|
606
280
|
}
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
vt.joinPathSegments = wt;
|
|
611
|
-
|
|
612
|
-
var Lt = {};
|
|
613
|
-
|
|
614
|
-
Object.defineProperty(Lt, "__esModule", {
|
|
615
|
-
value: true
|
|
616
|
-
});
|
|
617
|
-
|
|
618
|
-
const Ot = vt;
|
|
619
|
-
|
|
620
|
-
class Reader {
|
|
621
|
-
constructor(t, e) {
|
|
622
|
-
this._root = t;
|
|
623
|
-
this._settings = e;
|
|
624
|
-
this._root = Ot.replacePathSegmentSeparator(t, e.pathSegmentSeparator);
|
|
281
|
+
get ttl() {
|
|
282
|
+
return this._ttl;
|
|
625
283
|
}
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
Object.defineProperty(h, "__esModule", {
|
|
631
|
-
value: true
|
|
632
|
-
});
|
|
633
|
-
|
|
634
|
-
const Tt = a.default;
|
|
635
|
-
|
|
636
|
-
const Dt = _;
|
|
637
|
-
|
|
638
|
-
const jt = i.queueExports;
|
|
639
|
-
|
|
640
|
-
const At = vt;
|
|
641
|
-
|
|
642
|
-
const It = Lt;
|
|
643
|
-
|
|
644
|
-
class AsyncReader extends It.default {
|
|
645
|
-
constructor(t, e) {
|
|
646
|
-
super(t, e);
|
|
647
|
-
this._settings = e;
|
|
648
|
-
this._scandir = Dt.scandir;
|
|
649
|
-
this._emitter = new Tt.EventEmitter;
|
|
650
|
-
this._queue = jt(this._worker.bind(this), this._settings.concurrency);
|
|
651
|
-
this._isFatalError = false;
|
|
652
|
-
this._isDestroyed = false;
|
|
653
|
-
this._queue.drain = () => {
|
|
654
|
-
if (!this._isFatalError) {
|
|
655
|
-
this._emitter.emit("end");
|
|
656
|
-
}
|
|
657
|
-
};
|
|
284
|
+
set ttl(t) {
|
|
285
|
+
this.opts.ttl = t;
|
|
286
|
+
this._ttl = t;
|
|
658
287
|
}
|
|
659
|
-
|
|
660
|
-
this.
|
|
661
|
-
this._isDestroyed = false;
|
|
662
|
-
setImmediate(() => {
|
|
663
|
-
this._pushToQueue(this._root, this._settings.basePath);
|
|
664
|
-
});
|
|
665
|
-
return this._emitter;
|
|
288
|
+
get serialize() {
|
|
289
|
+
return this._serialize;
|
|
666
290
|
}
|
|
667
|
-
|
|
668
|
-
|
|
291
|
+
set serialize(t) {
|
|
292
|
+
this.opts.serialize = t;
|
|
293
|
+
this._serialize = t;
|
|
669
294
|
}
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
throw new Error("The reader is already destroyed");
|
|
673
|
-
}
|
|
674
|
-
this._isDestroyed = true;
|
|
675
|
-
this._queue.killAndDrain();
|
|
295
|
+
get deserialize() {
|
|
296
|
+
return this._deserialize;
|
|
676
297
|
}
|
|
677
|
-
|
|
678
|
-
this.
|
|
298
|
+
set deserialize(t) {
|
|
299
|
+
this.opts.deserialize = t;
|
|
300
|
+
this._deserialize = t;
|
|
679
301
|
}
|
|
680
|
-
|
|
681
|
-
this.
|
|
302
|
+
get useKeyPrefix() {
|
|
303
|
+
return this._useKeyPrefix;
|
|
682
304
|
}
|
|
683
|
-
|
|
684
|
-
this.
|
|
305
|
+
set useKeyPrefix(t) {
|
|
306
|
+
this._useKeyPrefix = t;
|
|
307
|
+
this.opts.useKeyPrefix = t;
|
|
685
308
|
}
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
directory: t,
|
|
689
|
-
base: e
|
|
690
|
-
};
|
|
691
|
-
this._queue.push(r, t => {
|
|
692
|
-
if (t !== null) {
|
|
693
|
-
this._handleError(t);
|
|
694
|
-
}
|
|
695
|
-
});
|
|
309
|
+
get throwOnErrors() {
|
|
310
|
+
return this._throwOnErrors;
|
|
696
311
|
}
|
|
697
|
-
|
|
698
|
-
this.
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
for (const e of
|
|
704
|
-
this.
|
|
312
|
+
set throwOnErrors(t) {
|
|
313
|
+
this._throwOnErrors = t;
|
|
314
|
+
this.opts.throwOnErrors = t;
|
|
315
|
+
}
|
|
316
|
+
generateIterator(t) {
|
|
317
|
+
const e = async function*() {
|
|
318
|
+
for await (const [e, s] of typeof t === "function" ? t(this._store.namespace) : t) {
|
|
319
|
+
const t = await this.deserializeData(s);
|
|
320
|
+
if (this._useKeyPrefix && this._store.namespace && !e.includes(this._store.namespace)) {
|
|
321
|
+
continue;
|
|
322
|
+
}
|
|
323
|
+
if (typeof t.expires === "number" && Date.now() > t.expires) {
|
|
324
|
+
this.delete(e);
|
|
325
|
+
continue;
|
|
326
|
+
}
|
|
327
|
+
yield [ this._getKeyUnprefix(e), t.value ];
|
|
705
328
|
}
|
|
706
|
-
|
|
707
|
-
|
|
329
|
+
};
|
|
330
|
+
return e.bind(this);
|
|
708
331
|
}
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
return;
|
|
712
|
-
}
|
|
713
|
-
this._isFatalError = true;
|
|
714
|
-
this._isDestroyed = true;
|
|
715
|
-
this._emitter.emit("error", t);
|
|
332
|
+
_checkIterableAdapter() {
|
|
333
|
+
return n.includes(this._store.opts.dialect) || n.some(t => this._store.opts.url.includes(t));
|
|
716
334
|
}
|
|
717
|
-
|
|
718
|
-
if (this.
|
|
719
|
-
return;
|
|
335
|
+
_getKeyPrefix(t) {
|
|
336
|
+
if (!this._useKeyPrefix) {
|
|
337
|
+
return t;
|
|
720
338
|
}
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
t.path = At.joinPathSegments(e, t.name, this._settings.pathSegmentSeparator);
|
|
339
|
+
if (!this._namespace) {
|
|
340
|
+
return t;
|
|
724
341
|
}
|
|
725
|
-
|
|
726
|
-
|
|
342
|
+
return `${this._namespace}:${t}`;
|
|
343
|
+
}
|
|
344
|
+
_getKeyPrefixArray(t) {
|
|
345
|
+
if (!this._useKeyPrefix) {
|
|
346
|
+
return t;
|
|
727
347
|
}
|
|
728
|
-
if (
|
|
729
|
-
|
|
348
|
+
if (!this._namespace) {
|
|
349
|
+
return t;
|
|
730
350
|
}
|
|
351
|
+
return t.map(t => `${this._namespace}:${t}`);
|
|
731
352
|
}
|
|
732
|
-
|
|
733
|
-
this.
|
|
734
|
-
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
const
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
353
|
+
_getKeyUnprefix(t) {
|
|
354
|
+
if (!this._useKeyPrefix) {
|
|
355
|
+
return t;
|
|
356
|
+
}
|
|
357
|
+
return t.split(":").splice(1).join(":");
|
|
358
|
+
}
|
|
359
|
+
_isValidStorageAdapter(t) {
|
|
360
|
+
return t instanceof Map || typeof t.get === "function" && typeof t.set === "function" && typeof t.delete === "function" && typeof t.clear === "function";
|
|
361
|
+
}
|
|
362
|
+
async get(t, e) {
|
|
363
|
+
const {store: s} = this.opts;
|
|
364
|
+
const i = Array.isArray(t);
|
|
365
|
+
const r = i ? this._getKeyPrefixArray(t) : this._getKeyPrefix(t);
|
|
366
|
+
const o = t => typeof t.expires === "number" && Date.now() > t.expires;
|
|
367
|
+
if (i) {
|
|
368
|
+
if (e?.raw === true) {
|
|
369
|
+
return this.getMany(t, {
|
|
370
|
+
raw: true
|
|
371
|
+
});
|
|
372
|
+
}
|
|
373
|
+
return this.getMany(t, {
|
|
374
|
+
raw: false
|
|
375
|
+
});
|
|
376
|
+
}
|
|
377
|
+
this.hooks.trigger("preGet", {
|
|
378
|
+
key: r
|
|
755
379
|
});
|
|
756
|
-
|
|
757
|
-
|
|
380
|
+
let a;
|
|
381
|
+
try {
|
|
382
|
+
a = await s.get(r);
|
|
383
|
+
} catch (t) {
|
|
384
|
+
if (this.throwOnErrors) {
|
|
385
|
+
throw t;
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
const n = typeof a === "string" || this.opts.compression ? await this.deserializeData(a) : a;
|
|
389
|
+
if (n === void 0 || n === null) {
|
|
390
|
+
this.hooks.trigger("postGet", {
|
|
391
|
+
key: r,
|
|
392
|
+
value: void 0
|
|
393
|
+
});
|
|
394
|
+
this.stats.miss();
|
|
395
|
+
return void 0;
|
|
396
|
+
}
|
|
397
|
+
if (o(n)) {
|
|
398
|
+
await this.delete(t);
|
|
399
|
+
this.hooks.trigger("postGet", {
|
|
400
|
+
key: r,
|
|
401
|
+
value: void 0
|
|
402
|
+
});
|
|
403
|
+
this.stats.miss();
|
|
404
|
+
return void 0;
|
|
405
|
+
}
|
|
406
|
+
this.hooks.trigger("postGet", {
|
|
407
|
+
key: r,
|
|
408
|
+
value: n
|
|
758
409
|
});
|
|
759
|
-
this.
|
|
760
|
-
|
|
410
|
+
this.stats.hit();
|
|
411
|
+
return e?.raw ? n : n.value;
|
|
412
|
+
}
|
|
413
|
+
async getMany(t, e) {
|
|
414
|
+
const {store: s} = this.opts;
|
|
415
|
+
const i = this._getKeyPrefixArray(t);
|
|
416
|
+
const r = t => typeof t.expires === "number" && Date.now() > t.expires;
|
|
417
|
+
this.hooks.trigger("preGetMany", {
|
|
418
|
+
keys: i
|
|
761
419
|
});
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
function xt(t, e) {
|
|
773
|
-
t(null, e);
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
var Vt = {};
|
|
777
|
-
|
|
778
|
-
Object.defineProperty(Vt, "__esModule", {
|
|
779
|
-
value: true
|
|
780
|
-
});
|
|
781
|
-
|
|
782
|
-
const qt = l.default;
|
|
783
|
-
|
|
784
|
-
const Bt = h;
|
|
785
|
-
|
|
786
|
-
class StreamProvider {
|
|
787
|
-
constructor(t, e) {
|
|
788
|
-
this._root = t;
|
|
789
|
-
this._settings = e;
|
|
790
|
-
this._reader = new Bt.default(this._root, this._settings);
|
|
791
|
-
this._stream = new qt.Readable({
|
|
792
|
-
objectMode: true,
|
|
793
|
-
read: () => {},
|
|
794
|
-
destroy: () => {
|
|
795
|
-
if (!this._reader.isDestroyed) {
|
|
796
|
-
this._reader.destroy();
|
|
420
|
+
if (s.getMany === void 0) {
|
|
421
|
+
const t = i.map(async t => {
|
|
422
|
+
const i = await s.get(t);
|
|
423
|
+
const o = typeof i === "string" || this.opts.compression ? await this.deserializeData(i) : i;
|
|
424
|
+
if (o === void 0 || o === null) {
|
|
425
|
+
return void 0;
|
|
426
|
+
}
|
|
427
|
+
if (r(o)) {
|
|
428
|
+
await this.delete(t);
|
|
429
|
+
return void 0;
|
|
797
430
|
}
|
|
431
|
+
return e?.raw ? o : o.value;
|
|
432
|
+
});
|
|
433
|
+
const o = await Promise.allSettled(t);
|
|
434
|
+
const a = o.map(t => t.value);
|
|
435
|
+
this.hooks.trigger("postGetMany", a);
|
|
436
|
+
if (a.length > 0) {
|
|
437
|
+
this.stats.hit();
|
|
798
438
|
}
|
|
799
|
-
|
|
439
|
+
return a;
|
|
440
|
+
}
|
|
441
|
+
const o = await s.getMany(i);
|
|
442
|
+
const a = [];
|
|
443
|
+
const n = [];
|
|
444
|
+
for (const s in o) {
|
|
445
|
+
let i = o[s];
|
|
446
|
+
if (typeof i === "string") {
|
|
447
|
+
i = await this.deserializeData(i);
|
|
448
|
+
}
|
|
449
|
+
if (i === void 0 || i === null) {
|
|
450
|
+
a.push(void 0);
|
|
451
|
+
continue;
|
|
452
|
+
}
|
|
453
|
+
if (r(i)) {
|
|
454
|
+
n.push(t[s]);
|
|
455
|
+
a.push(void 0);
|
|
456
|
+
continue;
|
|
457
|
+
}
|
|
458
|
+
const h = e?.raw ? i : i.value;
|
|
459
|
+
a.push(h);
|
|
460
|
+
}
|
|
461
|
+
if (n.length > 0) {
|
|
462
|
+
await this.deleteMany(n);
|
|
463
|
+
}
|
|
464
|
+
this.hooks.trigger("postGetMany", a);
|
|
465
|
+
if (a.length > 0) {
|
|
466
|
+
this.stats.hit();
|
|
467
|
+
}
|
|
468
|
+
return a;
|
|
800
469
|
}
|
|
801
|
-
|
|
802
|
-
this.
|
|
803
|
-
|
|
470
|
+
async getRaw(t) {
|
|
471
|
+
const {store: e} = this.opts;
|
|
472
|
+
const s = this._getKeyPrefix(t);
|
|
473
|
+
this.hooks.trigger("preGetRaw", {
|
|
474
|
+
key: s
|
|
804
475
|
});
|
|
805
|
-
|
|
806
|
-
|
|
476
|
+
const i = await e.get(s);
|
|
477
|
+
if (i === void 0 || i === null) {
|
|
478
|
+
this.hooks.trigger("postGetRaw", {
|
|
479
|
+
key: s,
|
|
480
|
+
value: void 0
|
|
481
|
+
});
|
|
482
|
+
this.stats.miss();
|
|
483
|
+
return void 0;
|
|
484
|
+
}
|
|
485
|
+
const r = typeof i === "string" || this.opts.compression ? await this.deserializeData(i) : i;
|
|
486
|
+
if (r !== void 0 && r.expires !== void 0 && r.expires !== null && r.expires < Date.now()) {
|
|
487
|
+
this.hooks.trigger("postGetRaw", {
|
|
488
|
+
key: s,
|
|
489
|
+
value: void 0
|
|
490
|
+
});
|
|
491
|
+
this.stats.miss();
|
|
492
|
+
await this.delete(t);
|
|
493
|
+
return void 0;
|
|
494
|
+
}
|
|
495
|
+
this.stats.hit();
|
|
496
|
+
this.hooks.trigger("postGetRaw", {
|
|
497
|
+
key: s,
|
|
498
|
+
value: r
|
|
807
499
|
});
|
|
808
|
-
|
|
809
|
-
|
|
500
|
+
return r;
|
|
501
|
+
}
|
|
502
|
+
async getManyRaw(t) {
|
|
503
|
+
const {store: e} = this.opts;
|
|
504
|
+
const s = this._getKeyPrefixArray(t);
|
|
505
|
+
if (t.length === 0) {
|
|
506
|
+
const e = Array.from({
|
|
507
|
+
length: t.length
|
|
508
|
+
}).fill(void 0);
|
|
509
|
+
this.stats.misses += t.length;
|
|
510
|
+
this.hooks.trigger("postGetManyRaw", {
|
|
511
|
+
keys: s,
|
|
512
|
+
values: e
|
|
513
|
+
});
|
|
514
|
+
return e;
|
|
515
|
+
}
|
|
516
|
+
let i = [];
|
|
517
|
+
if (e.getMany === void 0) {
|
|
518
|
+
const t = s.map(async t => {
|
|
519
|
+
const s = await e.get(t);
|
|
520
|
+
if (s !== void 0 && s !== null) {
|
|
521
|
+
return this.deserializeData(s);
|
|
522
|
+
}
|
|
523
|
+
return void 0;
|
|
524
|
+
});
|
|
525
|
+
const r = await Promise.allSettled(t);
|
|
526
|
+
i = r.map(t => t.value);
|
|
527
|
+
} else {
|
|
528
|
+
const t = await e.getMany(s);
|
|
529
|
+
for (const e of t) {
|
|
530
|
+
if (e !== void 0 && e !== null) {
|
|
531
|
+
i.push(await this.deserializeData(e));
|
|
532
|
+
} else {
|
|
533
|
+
i.push(void 0);
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
const r = [];
|
|
538
|
+
const o = t => typeof t.expires === "number" && Date.now() > t.expires;
|
|
539
|
+
for (const [t, e] of i.entries()) {
|
|
540
|
+
if (e !== void 0 && o(e)) {
|
|
541
|
+
r.push(s[t]);
|
|
542
|
+
i[t] = void 0;
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
if (r.length > 0) {
|
|
546
|
+
await this.deleteMany(r);
|
|
547
|
+
}
|
|
548
|
+
this.stats.hitsOrMisses(i);
|
|
549
|
+
this.hooks.trigger("postGetManyRaw", {
|
|
550
|
+
keys: s,
|
|
551
|
+
values: i
|
|
810
552
|
});
|
|
811
|
-
|
|
812
|
-
return this._stream;
|
|
553
|
+
return i;
|
|
813
554
|
}
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
const
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
555
|
+
async set(t, e, s) {
|
|
556
|
+
const i = {
|
|
557
|
+
key: t,
|
|
558
|
+
value: e,
|
|
559
|
+
ttl: s
|
|
560
|
+
};
|
|
561
|
+
this.hooks.trigger("preSet", i);
|
|
562
|
+
const r = this._getKeyPrefix(i.key);
|
|
563
|
+
i.ttl ??= this._ttl;
|
|
564
|
+
if (i.ttl === 0) {
|
|
565
|
+
i.ttl = void 0;
|
|
566
|
+
}
|
|
567
|
+
const {store: o} = this.opts;
|
|
568
|
+
const a = typeof i.ttl === "number" ? Date.now() + i.ttl : void 0;
|
|
569
|
+
if (typeof i.value === "symbol") {
|
|
570
|
+
this.emit("error", "symbol cannot be serialized");
|
|
571
|
+
throw new Error("symbol cannot be serialized");
|
|
572
|
+
}
|
|
573
|
+
const n = {
|
|
574
|
+
value: i.value,
|
|
575
|
+
expires: a
|
|
576
|
+
};
|
|
577
|
+
const h = await this.serializeData(n);
|
|
578
|
+
let l = true;
|
|
579
|
+
try {
|
|
580
|
+
const t = await o.set(r, h, i.ttl);
|
|
581
|
+
if (typeof t === "boolean") {
|
|
582
|
+
l = t;
|
|
583
|
+
}
|
|
584
|
+
} catch (t) {
|
|
585
|
+
l = false;
|
|
586
|
+
this.emit("error", t);
|
|
587
|
+
if (this._throwOnErrors) {
|
|
588
|
+
throw t;
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
this.hooks.trigger("postSet", {
|
|
592
|
+
key: r,
|
|
593
|
+
value: h,
|
|
594
|
+
ttl: s
|
|
848
595
|
});
|
|
596
|
+
this.stats.set();
|
|
597
|
+
return l;
|
|
849
598
|
}
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
599
|
+
async setMany(t) {
|
|
600
|
+
let e = [];
|
|
601
|
+
try {
|
|
602
|
+
if (this._store.setMany === void 0) {
|
|
603
|
+
const s = [];
|
|
604
|
+
for (const e of t) {
|
|
605
|
+
s.push(this.set(e.key, e.value, e.ttl));
|
|
606
|
+
}
|
|
607
|
+
const i = await Promise.all(s);
|
|
608
|
+
e = i;
|
|
609
|
+
} else {
|
|
610
|
+
const s = await Promise.all(t.map(async ({key: t, value: e, ttl: s}) => {
|
|
611
|
+
s ??= this._ttl;
|
|
612
|
+
if (s === 0) {
|
|
613
|
+
s = void 0;
|
|
614
|
+
}
|
|
615
|
+
const i = typeof s === "number" ? Date.now() + s : void 0;
|
|
616
|
+
if (typeof e === "symbol") {
|
|
617
|
+
this.emit("error", "symbol cannot be serialized");
|
|
618
|
+
throw new Error("symbol cannot be serialized");
|
|
619
|
+
}
|
|
620
|
+
const r = {
|
|
621
|
+
value: e,
|
|
622
|
+
expires: i
|
|
623
|
+
};
|
|
624
|
+
const o = await this.serializeData(r);
|
|
625
|
+
const a = this._getKeyPrefix(t);
|
|
626
|
+
return {
|
|
627
|
+
key: a,
|
|
628
|
+
value: o,
|
|
629
|
+
ttl: s
|
|
630
|
+
};
|
|
631
|
+
}));
|
|
632
|
+
e = await this._store.setMany(s);
|
|
633
|
+
}
|
|
634
|
+
} catch (s) {
|
|
635
|
+
this.emit("error", s);
|
|
636
|
+
if (this._throwOnErrors) {
|
|
637
|
+
throw s;
|
|
638
|
+
}
|
|
639
|
+
e = t.map(() => false);
|
|
853
640
|
}
|
|
641
|
+
return e;
|
|
854
642
|
}
|
|
855
|
-
|
|
643
|
+
async delete(t) {
|
|
644
|
+
const {store: e} = this.opts;
|
|
645
|
+
if (Array.isArray(t)) {
|
|
646
|
+
return this.deleteMany(t);
|
|
647
|
+
}
|
|
648
|
+
const s = this._getKeyPrefix(t);
|
|
649
|
+
this.hooks.trigger("preDelete", {
|
|
650
|
+
key: s
|
|
651
|
+
});
|
|
652
|
+
let i = true;
|
|
856
653
|
try {
|
|
857
|
-
const
|
|
858
|
-
|
|
859
|
-
|
|
654
|
+
const t = await e.delete(s);
|
|
655
|
+
if (typeof t === "boolean") {
|
|
656
|
+
i = t;
|
|
860
657
|
}
|
|
861
658
|
} catch (t) {
|
|
862
|
-
|
|
659
|
+
i = false;
|
|
660
|
+
this.emit("error", t);
|
|
661
|
+
if (this._throwOnErrors) {
|
|
662
|
+
throw t;
|
|
663
|
+
}
|
|
863
664
|
}
|
|
665
|
+
this.hooks.trigger("postDelete", {
|
|
666
|
+
key: s,
|
|
667
|
+
value: i
|
|
668
|
+
});
|
|
669
|
+
this.stats.delete();
|
|
670
|
+
return i;
|
|
864
671
|
}
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
672
|
+
async deleteMany(t) {
|
|
673
|
+
try {
|
|
674
|
+
const {store: e} = this.opts;
|
|
675
|
+
const s = this._getKeyPrefixArray(t);
|
|
676
|
+
this.hooks.trigger("preDelete", {
|
|
677
|
+
key: s
|
|
678
|
+
});
|
|
679
|
+
if (e.deleteMany !== void 0) {
|
|
680
|
+
return await e.deleteMany(s);
|
|
681
|
+
}
|
|
682
|
+
const i = s.map(async t => e.delete(t));
|
|
683
|
+
const r = await Promise.all(i);
|
|
684
|
+
const o = r.every(Boolean);
|
|
685
|
+
this.hooks.trigger("postDelete", {
|
|
686
|
+
key: s,
|
|
687
|
+
value: o
|
|
688
|
+
});
|
|
689
|
+
return o;
|
|
690
|
+
} catch (t) {
|
|
691
|
+
this.emit("error", t);
|
|
692
|
+
if (this._throwOnErrors) {
|
|
693
|
+
throw t;
|
|
694
|
+
}
|
|
695
|
+
return false;
|
|
868
696
|
}
|
|
869
|
-
throw t;
|
|
870
697
|
}
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
698
|
+
async clear() {
|
|
699
|
+
this.emit("clear");
|
|
700
|
+
const {store: t} = this.opts;
|
|
701
|
+
try {
|
|
702
|
+
await t.clear();
|
|
703
|
+
} catch (t) {
|
|
704
|
+
this.emit("error", t);
|
|
705
|
+
if (this._throwOnErrors) {
|
|
706
|
+
throw t;
|
|
707
|
+
}
|
|
875
708
|
}
|
|
876
|
-
|
|
877
|
-
|
|
709
|
+
}
|
|
710
|
+
async has(t) {
|
|
711
|
+
if (Array.isArray(t)) {
|
|
712
|
+
return this.hasMany(t);
|
|
878
713
|
}
|
|
879
|
-
|
|
880
|
-
|
|
714
|
+
const e = this._getKeyPrefix(t);
|
|
715
|
+
const {store: s} = this.opts;
|
|
716
|
+
if (s.has !== void 0 && !(s instanceof Map)) {
|
|
717
|
+
return s.has(e);
|
|
881
718
|
}
|
|
719
|
+
let i;
|
|
720
|
+
try {
|
|
721
|
+
i = await s.get(e);
|
|
722
|
+
} catch (t) {
|
|
723
|
+
this.emit("error", t);
|
|
724
|
+
if (this._throwOnErrors) {
|
|
725
|
+
throw t;
|
|
726
|
+
}
|
|
727
|
+
return false;
|
|
728
|
+
}
|
|
729
|
+
if (i) {
|
|
730
|
+
const t = await this.deserializeData(i);
|
|
731
|
+
if (t) {
|
|
732
|
+
if (t.expires === void 0 || t.expires === null) {
|
|
733
|
+
return true;
|
|
734
|
+
}
|
|
735
|
+
return t.expires > Date.now();
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
return false;
|
|
882
739
|
}
|
|
883
|
-
|
|
884
|
-
this.
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
const Ut = $t;
|
|
895
|
-
|
|
896
|
-
class SyncProvider {
|
|
897
|
-
constructor(t, e) {
|
|
898
|
-
this._root = t;
|
|
899
|
-
this._settings = e;
|
|
900
|
-
this._reader = new Ut.default(this._root, this._settings);
|
|
740
|
+
async hasMany(t) {
|
|
741
|
+
const e = this._getKeyPrefixArray(t);
|
|
742
|
+
const {store: s} = this.opts;
|
|
743
|
+
if (s.hasMany !== void 0) {
|
|
744
|
+
return s.hasMany(e);
|
|
745
|
+
}
|
|
746
|
+
const i = [];
|
|
747
|
+
for (const e of t) {
|
|
748
|
+
i.push(await this.has(e));
|
|
749
|
+
}
|
|
750
|
+
return i;
|
|
901
751
|
}
|
|
902
|
-
|
|
903
|
-
|
|
752
|
+
async disconnect() {
|
|
753
|
+
const {store: t} = this.opts;
|
|
754
|
+
this.emit("disconnect");
|
|
755
|
+
if (typeof t.disconnect === "function") {
|
|
756
|
+
return t.disconnect();
|
|
757
|
+
}
|
|
904
758
|
}
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
Object.defineProperty(Ht, "__esModule", {
|
|
912
|
-
value: true
|
|
913
|
-
});
|
|
914
|
-
|
|
915
|
-
const Ct = c.default;
|
|
916
|
-
|
|
917
|
-
const zt = _;
|
|
918
|
-
|
|
919
|
-
class Settings {
|
|
920
|
-
constructor(t = {}) {
|
|
921
|
-
this._options = t;
|
|
922
|
-
this.basePath = this._getValue(this._options.basePath, undefined);
|
|
923
|
-
this.concurrency = this._getValue(this._options.concurrency, Number.POSITIVE_INFINITY);
|
|
924
|
-
this.deepFilter = this._getValue(this._options.deepFilter, null);
|
|
925
|
-
this.entryFilter = this._getValue(this._options.entryFilter, null);
|
|
926
|
-
this.errorFilter = this._getValue(this._options.errorFilter, null);
|
|
927
|
-
this.pathSegmentSeparator = this._getValue(this._options.pathSegmentSeparator, Ct.sep);
|
|
928
|
-
this.fsScandirSettings = new zt.Settings({
|
|
929
|
-
followSymbolicLinks: this._options.followSymbolicLinks,
|
|
930
|
-
fs: this._options.fs,
|
|
931
|
-
pathSegmentSeparator: this._options.pathSegmentSeparator,
|
|
932
|
-
stats: this._options.stats,
|
|
933
|
-
throwErrorOnBrokenSymbolicLink: this._options.throwErrorOnBrokenSymbolicLink
|
|
934
|
-
});
|
|
759
|
+
emit(t, ...e) {
|
|
760
|
+
if (t === "error" && !this.opts.emitErrors) {
|
|
761
|
+
return;
|
|
762
|
+
}
|
|
763
|
+
super.emit(t, ...e);
|
|
935
764
|
}
|
|
936
|
-
|
|
937
|
-
|
|
765
|
+
async serializeData(t) {
|
|
766
|
+
if (!this._serialize) {
|
|
767
|
+
return t;
|
|
768
|
+
}
|
|
769
|
+
if (this._compression?.compress) {
|
|
770
|
+
return this._serialize({
|
|
771
|
+
value: await this._compression.compress(t.value),
|
|
772
|
+
expires: t.expires
|
|
773
|
+
});
|
|
774
|
+
}
|
|
775
|
+
return this._serialize(t);
|
|
938
776
|
}
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
const Xt = Ht;
|
|
956
|
-
|
|
957
|
-
exports.out$1.Settings = Xt.default;
|
|
958
|
-
|
|
959
|
-
function Zt(t, e, r) {
|
|
960
|
-
if (typeof e === "function") {
|
|
961
|
-
new Gt.default(t, re()).read(e);
|
|
962
|
-
return;
|
|
777
|
+
async deserializeData(t) {
|
|
778
|
+
if (!this._deserialize) {
|
|
779
|
+
return t;
|
|
780
|
+
}
|
|
781
|
+
if (this._compression?.decompress && typeof t === "string") {
|
|
782
|
+
const e = await this._deserialize(t);
|
|
783
|
+
return {
|
|
784
|
+
value: await this._compression.decompress(e?.value),
|
|
785
|
+
expires: e?.expires
|
|
786
|
+
};
|
|
787
|
+
}
|
|
788
|
+
if (typeof t === "string") {
|
|
789
|
+
return this._deserialize(t);
|
|
790
|
+
}
|
|
791
|
+
return void 0;
|
|
963
792
|
}
|
|
964
|
-
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
exports.out$1.walk = Zt;
|
|
968
|
-
|
|
969
|
-
function te(t, e) {
|
|
970
|
-
const r = re(e);
|
|
971
|
-
const s = new Kt.default(t, r);
|
|
972
|
-
return s.read();
|
|
973
|
-
}
|
|
974
|
-
|
|
975
|
-
exports.out$1.walkSync = te;
|
|
976
|
-
|
|
977
|
-
function ee(t, e) {
|
|
978
|
-
const r = re(e);
|
|
979
|
-
const s = new Jt.default(t, r);
|
|
980
|
-
return s.read();
|
|
981
|
-
}
|
|
982
|
-
|
|
983
|
-
exports.out$1.walkStream = ee;
|
|
793
|
+
};
|
|
984
794
|
|
|
985
|
-
|
|
986
|
-
if (t instanceof Xt.default) {
|
|
987
|
-
return t;
|
|
988
|
-
}
|
|
989
|
-
return new Xt.default(t);
|
|
990
|
-
}
|
|
795
|
+
exports.index_default = exports.Keyv;
|