lakutata 2.0.95 → 2.0.97
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 +30 -122
- package/com/cacher.mjs +22 -114
- package/com/database.cjs +24 -166
- package/com/database.mjs +24 -166
- package/com/docker.cjs +94 -276
- package/com/docker.mjs +39 -221
- package/com/entrypoint.cjs +33 -119
- package/com/entrypoint.mjs +20 -106
- package/com/logger.cjs +19 -123
- package/com/logger.mjs +19 -123
- package/com/monitor.cjs +24 -88
- package/com/monitor.mjs +20 -84
- package/decorator/asst.cjs +5 -7
- package/decorator/asst.mjs +5 -7
- package/decorator/ctrl.cjs +22 -58
- package/decorator/ctrl.mjs +10 -46
- package/decorator/di.cjs +12 -42
- package/decorator/di.mjs +8 -38
- package/decorator/dto.cjs +13 -43
- package/decorator/dto.mjs +9 -39
- package/decorator/orm.cjs +116 -112
- package/decorator/orm.mjs +70 -66
- package/dtos.cjs +8 -38
- package/dtos.mjs +8 -38
- package/helper.cjs +73 -127
- package/helper.mjs +12 -66
- package/lakutata.cjs +116 -328
- package/lakutata.mjs +60 -272
- package/orm.cjs +854 -173
- package/orm.mjs +866 -65
- package/package.json +1 -1
- package/provider/database.cjs +26 -166
- package/provider/database.mjs +26 -166
- package/provider/passwordHash.cjs +18 -82
- package/provider/passwordHash.mjs +18 -82
- package/src/components/Database.cjs +36 -178
- package/src/components/Database.mjs +68 -210
- package/src/components/Logger.cjs +50 -191
- package/src/components/Logger.mjs +46 -194
- package/src/components/cacher/Cacher.cjs +513 -164
- package/src/components/cacher/Cacher.mjs +503 -160
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +554 -28
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +538 -28
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +17 -47
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +17 -47
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +21 -51
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +22 -52
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +6 -30
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +18 -42
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +20 -50
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +23 -53
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +6 -30
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +27 -51
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +11 -41
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +18 -48
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.cjs +4 -6
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.mjs +4 -6
- 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 -6
- package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +4 -6
- package/src/components/cacher/options/FileCacheOptions.cjs +15 -45
- package/src/components/cacher/options/FileCacheOptions.mjs +15 -45
- package/src/components/cacher/options/MemcacheCacheOptions.cjs +16 -46
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +17 -47
- package/src/components/cacher/options/MongoCacheOptions.cjs +9 -39
- package/src/components/cacher/options/MongoCacheOptions.mjs +18 -48
- package/src/components/cacher/options/MysqlCacheOptions.cjs +9 -39
- package/src/components/cacher/options/MysqlCacheOptions.mjs +19 -49
- package/src/components/cacher/options/PostgresCacheOptions.cjs +21 -51
- package/src/components/cacher/options/PostgresCacheOptions.mjs +20 -50
- package/src/components/cacher/options/RedisCacheOptions.cjs +26 -56
- package/src/components/cacher/options/RedisCacheOptions.mjs +9 -39
- package/src/components/cacher/options/SqliteCacheOptions.cjs +15 -45
- package/src/components/cacher/options/SqliteCacheOptions.mjs +14 -44
- package/src/components/cacher/types/CacheStoreOptions.cjs +1 -1
- package/src/components/cacher/types/CacheStoreOptions.mjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.cjs +32 -214
- package/src/components/docker/ConnectionOptionsBuilder.mjs +37 -219
- package/src/components/docker/Docker.cjs +8727 -408
- package/src/components/docker/Docker.mjs +8903 -578
- package/src/components/docker/exceptions/DockerConnectionException.cjs +4 -6
- package/src/components/docker/exceptions/DockerConnectionException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImageBuildException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImageBuildException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImageImportException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImageImportException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImageNotFoundException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImageNotFoundException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImagePullException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImagePullException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImagePushException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImagePushException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.mjs +4 -6
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.cjs +4 -6
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.mjs +4 -6
- 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 +174 -330
- package/src/components/docker/lib/DockerContainer.mjs +184 -340
- package/src/components/docker/lib/DockerContainerTTY.cjs +52 -260
- package/src/components/docker/lib/DockerContainerTTY.mjs +48 -263
- package/src/components/docker/lib/DockerImage.cjs +69 -131
- package/src/components/docker/lib/DockerImage.mjs +54 -116
- 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 +14 -44
- package/src/components/docker/options/DockerPruneOptions.mjs +15 -45
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +9 -39
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +15 -45
- package/src/components/docker/options/container/ContainerCommitOptions.cjs +12 -42
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +12 -42
- package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +13 -43
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +12 -42
- package/src/components/docker/options/container/ContainerExecOptions.cjs +9 -39
- package/src/components/docker/options/container/ContainerExecOptions.mjs +11 -41
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +13 -43
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +12 -42
- package/src/components/docker/options/container/ContainerKillOptions.cjs +9 -39
- package/src/components/docker/options/container/ContainerKillOptions.mjs +12 -42
- package/src/components/docker/options/container/ContainerLogsOptions.cjs +15 -45
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +15 -45
- package/src/components/docker/options/container/ContainerRemoveOptions.cjs +9 -39
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +12 -42
- package/src/components/docker/options/container/ContainerSettingOptions.cjs +9 -39
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +43 -73
- package/src/components/docker/options/container/ContainerStopOptions.cjs +12 -42
- package/src/components/docker/options/container/ContainerStopOptions.mjs +9 -39
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +9 -39
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +12 -42
- package/src/components/docker/options/image/ImageBuildOptions.cjs +26 -56
- package/src/components/docker/options/image/ImageBuildOptions.mjs +25 -55
- package/src/components/docker/options/image/ImageExportOptions.cjs +14 -44
- package/src/components/docker/options/image/ImageExportOptions.mjs +14 -44
- package/src/components/docker/options/image/ImageImportOptions.cjs +13 -43
- package/src/components/docker/options/image/ImageImportOptions.mjs +12 -42
- package/src/components/docker/options/image/ImagePullOptions.cjs +9 -39
- package/src/components/docker/options/image/ImagePullOptions.mjs +16 -46
- package/src/components/docker/options/image/ImagePushOptions.cjs +15 -45
- package/src/components/docker/options/image/ImagePushOptions.mjs +15 -45
- package/src/components/docker/options/image/ImageRemoveOptions.cjs +12 -42
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +13 -43
- package/src/components/docker/options/image/ImageTagOptions.cjs +9 -39
- package/src/components/docker/options/image/ImageTagOptions.mjs +12 -42
- package/src/components/docker/options/network/NetworkCreateOptions.cjs +9 -39
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +20 -50
- 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 +1961 -322
- package/src/components/entrypoint/Entrypoint.mjs +1928 -281
- package/src/components/entrypoint/exceptions/AccessDenyException.cjs +4 -6
- package/src/components/entrypoint/exceptions/AccessDenyException.mjs +4 -6
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +4 -6
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +4 -6
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.cjs +4 -6
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.mjs +4 -6
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.cjs +4 -6
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.mjs +4 -6
- package/src/components/entrypoint/lib/AccessControl.cjs +71 -133
- package/src/components/entrypoint/lib/AccessControl.mjs +75 -137
- package/src/components/entrypoint/lib/AccessControlRule.cjs +19 -81
- package/src/components/entrypoint/lib/AccessControlRule.mjs +23 -85
- package/src/components/entrypoint/lib/Controller.cjs +42 -104
- package/src/components/entrypoint/lib/Controller.mjs +43 -105
- package/src/components/monitor/AliveMonitor.cjs +40 -104
- package/src/components/monitor/AliveMonitor.mjs +50 -114
- package/src/components/monitor/CpuMonitor.cjs +40 -104
- package/src/components/monitor/CpuMonitor.mjs +48 -112
- package/src/components/monitor/EventLoopMonitor.cjs +19 -83
- package/src/components/monitor/EventLoopMonitor.mjs +24 -88
- package/src/components/monitor/HttpRequestMonitor.cjs +41 -105
- package/src/components/monitor/HttpRequestMonitor.mjs +45 -109
- package/src/components/monitor/MemoryMonitor.cjs +87 -151
- package/src/components/monitor/MemoryMonitor.mjs +71 -135
- 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 +3 -3
- package/src/constants/DIMetadataKey.mjs +3 -3
- package/src/constants/DTOMetadataKey.cjs +3 -3
- package/src/constants/DTOMetadataKey.mjs +3 -3
- package/src/decorators/asst/After.cjs +4 -6
- package/src/decorators/asst/After.mjs +5 -7
- package/src/decorators/asst/Before.cjs +4 -6
- package/src/decorators/asst/Before.mjs +5 -7
- package/src/decorators/ctrl/CLIAction.cjs +15 -51
- package/src/decorators/ctrl/CLIAction.mjs +19 -55
- package/src/decorators/ctrl/HTTPAction.cjs +15 -51
- package/src/decorators/ctrl/HTTPAction.mjs +19 -55
- package/src/decorators/ctrl/ServiceAction.cjs +15 -51
- package/src/decorators/ctrl/ServiceAction.mjs +18 -54
- package/src/decorators/ctrl/http/DELETE.cjs +12 -48
- package/src/decorators/ctrl/http/DELETE.mjs +14 -50
- package/src/decorators/ctrl/http/GET.cjs +12 -48
- package/src/decorators/ctrl/http/GET.mjs +14 -50
- package/src/decorators/ctrl/http/HEAD.cjs +12 -48
- package/src/decorators/ctrl/http/HEAD.mjs +14 -50
- package/src/decorators/ctrl/http/OPTIONS.cjs +12 -48
- package/src/decorators/ctrl/http/OPTIONS.mjs +14 -50
- package/src/decorators/ctrl/http/PATCH.cjs +12 -48
- package/src/decorators/ctrl/http/PATCH.mjs +14 -50
- package/src/decorators/ctrl/http/POST.cjs +12 -48
- package/src/decorators/ctrl/http/POST.mjs +14 -50
- package/src/decorators/ctrl/http/PUT.cjs +12 -48
- package/src/decorators/ctrl/http/PUT.mjs +14 -50
- package/src/decorators/di/Autoload.cjs +3 -3
- package/src/decorators/di/Autoload.mjs +3 -3
- package/src/decorators/di/Configurable.cjs +10 -40
- package/src/decorators/di/Configurable.mjs +12 -42
- package/src/decorators/di/Inject.cjs +20 -50
- package/src/decorators/di/Inject.mjs +25 -55
- package/src/decorators/di/Lifetime.cjs +5 -7
- package/src/decorators/di/Lifetime.mjs +15 -17
- package/src/decorators/dto/Accept.cjs +10 -40
- package/src/decorators/dto/Accept.mjs +13 -43
- package/src/decorators/dto/Expect.cjs +11 -41
- package/src/decorators/dto/Expect.mjs +13 -43
- package/src/decorators/dto/IndexSignature.cjs +10 -40
- package/src/decorators/dto/IndexSignature.mjs +13 -43
- package/src/decorators/dto/Return.cjs +10 -40
- package/src/decorators/dto/Return.mjs +13 -43
- package/src/decorators/orm/AfterInsert.cjs +17 -95
- package/src/decorators/orm/AfterInsert.mjs +17 -95
- package/src/decorators/orm/AfterLoad.cjs +17 -95
- package/src/decorators/orm/AfterLoad.mjs +17 -95
- package/src/decorators/orm/AfterRecover.cjs +17 -95
- package/src/decorators/orm/AfterRecover.mjs +17 -95
- package/src/decorators/orm/AfterRemove.cjs +17 -95
- package/src/decorators/orm/AfterRemove.mjs +17 -95
- package/src/decorators/orm/AfterSoftRemove.cjs +17 -95
- package/src/decorators/orm/AfterSoftRemove.mjs +17 -95
- package/src/decorators/orm/AfterUpdate.cjs +17 -95
- package/src/decorators/orm/AfterUpdate.mjs +17 -95
- package/src/decorators/orm/BeforeInsert.cjs +17 -95
- package/src/decorators/orm/BeforeInsert.mjs +17 -95
- package/src/decorators/orm/BeforeRecover.cjs +17 -95
- package/src/decorators/orm/BeforeRecover.mjs +17 -95
- package/src/decorators/orm/BeforeRemove.cjs +17 -95
- package/src/decorators/orm/BeforeRemove.mjs +17 -95
- package/src/decorators/orm/BeforeSoftRemove.cjs +17 -95
- package/src/decorators/orm/BeforeSoftRemove.mjs +17 -95
- package/src/decorators/orm/BeforeUpdate.cjs +17 -95
- package/src/decorators/orm/BeforeUpdate.mjs +17 -95
- package/src/decorators/orm/Check.cjs +17 -95
- package/src/decorators/orm/Check.mjs +17 -95
- package/src/decorators/orm/ChildEntity.cjs +17 -95
- package/src/decorators/orm/ChildEntity.mjs +17 -95
- package/src/decorators/orm/Column.cjs +17 -95
- package/src/decorators/orm/Column.mjs +17 -95
- package/src/decorators/orm/CreateDateColumn.cjs +17 -95
- package/src/decorators/orm/CreateDateColumn.mjs +17 -95
- package/src/decorators/orm/DeleteDateColumn.cjs +17 -95
- package/src/decorators/orm/DeleteDateColumn.mjs +17 -95
- package/src/decorators/orm/Entity.cjs +17 -95
- package/src/decorators/orm/Entity.mjs +17 -95
- package/src/decorators/orm/EventSubscriber.cjs +17 -95
- package/src/decorators/orm/EventSubscriber.mjs +17 -95
- package/src/decorators/orm/Exclusion.cjs +17 -95
- package/src/decorators/orm/Exclusion.mjs +17 -95
- package/src/decorators/orm/Generated.cjs +17 -95
- package/src/decorators/orm/Generated.mjs +17 -95
- package/src/decorators/orm/Index.cjs +17 -95
- package/src/decorators/orm/Index.mjs +17 -95
- package/src/decorators/orm/JoinColumn.cjs +17 -95
- package/src/decorators/orm/JoinColumn.mjs +17 -95
- package/src/decorators/orm/JoinTable.cjs +17 -95
- package/src/decorators/orm/JoinTable.mjs +17 -95
- package/src/decorators/orm/ManyToMany.cjs +17 -95
- package/src/decorators/orm/ManyToMany.mjs +17 -95
- package/src/decorators/orm/ManyToOne.cjs +17 -95
- package/src/decorators/orm/ManyToOne.mjs +17 -95
- package/src/decorators/orm/ObjectIdColumn.cjs +17 -95
- package/src/decorators/orm/ObjectIdColumn.mjs +17 -95
- package/src/decorators/orm/OneToMany.cjs +17 -95
- package/src/decorators/orm/OneToMany.mjs +17 -95
- package/src/decorators/orm/OneToOne.cjs +17 -95
- package/src/decorators/orm/OneToOne.mjs +17 -95
- package/src/decorators/orm/PrimaryColumn.cjs +17 -95
- package/src/decorators/orm/PrimaryColumn.mjs +17 -95
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +17 -95
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +17 -95
- package/src/decorators/orm/RelationId.cjs +17 -95
- package/src/decorators/orm/RelationId.mjs +17 -95
- package/src/decorators/orm/TableInheritance.cjs +17 -95
- package/src/decorators/orm/TableInheritance.mjs +17 -95
- package/src/decorators/orm/Tree.cjs +17 -95
- package/src/decorators/orm/Tree.mjs +17 -95
- package/src/decorators/orm/TreeChildren.cjs +17 -95
- package/src/decorators/orm/TreeChildren.mjs +17 -95
- package/src/decorators/orm/TreeLevelColumn.cjs +17 -95
- package/src/decorators/orm/TreeLevelColumn.mjs +17 -95
- package/src/decorators/orm/TreeParent.cjs +17 -95
- package/src/decorators/orm/TreeParent.mjs +17 -95
- package/src/decorators/orm/Unique.cjs +17 -95
- package/src/decorators/orm/Unique.mjs +17 -95
- package/src/decorators/orm/UpdateDateColumn.cjs +17 -95
- package/src/decorators/orm/UpdateDateColumn.mjs +17 -95
- package/src/decorators/orm/VersionColumn.cjs +17 -95
- package/src/decorators/orm/VersionColumn.mjs +17 -95
- package/src/decorators/orm/ViewColumn.cjs +17 -95
- package/src/decorators/orm/ViewColumn.mjs +17 -95
- package/src/decorators/orm/ViewEntity.cjs +17 -95
- package/src/decorators/orm/ViewEntity.mjs +17 -95
- package/src/decorators/orm/VirtualColumn.cjs +17 -95
- package/src/decorators/orm/VirtualColumn.mjs +17 -95
- package/src/dto/PaginationResultDTO.cjs +9 -39
- package/src/dto/PaginationResultDTO.mjs +18 -48
- package/src/dto/PaginationSearchDTO.cjs +9 -39
- package/src/dto/PaginationSearchDTO.mjs +13 -43
- package/src/exceptions/DestroyRuntimeContainerException.cjs +4 -6
- package/src/exceptions/DestroyRuntimeContainerException.mjs +4 -6
- package/src/exceptions/InvalidActionPatternDepthException.cjs +4 -6
- package/src/exceptions/InvalidActionPatternDepthException.mjs +4 -6
- package/src/exceptions/InvalidAssistantFunctionTypeException.cjs +4 -6
- package/src/exceptions/InvalidAssistantFunctionTypeException.mjs +4 -6
- package/src/exceptions/InvalidObjectTypeException.cjs +4 -6
- package/src/exceptions/InvalidObjectTypeException.mjs +4 -6
- package/src/exceptions/MethodNotFoundException.cjs +4 -6
- package/src/exceptions/MethodNotFoundException.mjs +4 -6
- package/src/exceptions/alias/AliasExistsException.cjs +4 -6
- package/src/exceptions/alias/AliasExistsException.mjs +6 -8
- package/src/exceptions/alias/AliasNotFoundException.cjs +4 -6
- package/src/exceptions/alias/AliasNotFoundException.mjs +4 -6
- package/src/exceptions/alias/InvalidAliasNameException.cjs +4 -6
- package/src/exceptions/alias/InvalidAliasNameException.mjs +4 -6
- package/src/exceptions/di/DependencyInjectionException.cjs +4 -6
- package/src/exceptions/di/DependencyInjectionException.mjs +4 -6
- package/src/exceptions/di/LifetimeLockedException.cjs +4 -6
- package/src/exceptions/di/LifetimeLockedException.mjs +4 -6
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs +4 -6
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.mjs +4 -6
- package/src/exceptions/dto/InvalidMethodAcceptException.cjs +4 -6
- package/src/exceptions/dto/InvalidMethodAcceptException.mjs +4 -6
- package/src/exceptions/dto/InvalidMethodReturnException.cjs +4 -6
- package/src/exceptions/dto/InvalidMethodReturnException.mjs +4 -6
- package/src/exceptions/dto/InvalidValueException.cjs +4 -6
- package/src/exceptions/dto/InvalidValueException.mjs +4 -6
- 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 +51 -259
- package/src/lib/base/BaseObject.mjs +41 -256
- package/src/lib/base/Context.cjs +11 -41
- package/src/lib/base/Context.mjs +23 -53
- package/src/lib/base/EventEmitter.cjs +1398 -47
- package/src/lib/base/EventEmitter.mjs +1397 -46
- package/src/lib/base/abstracts/Exception.cjs +12 -14
- package/src/lib/base/abstracts/Exception.mjs +4 -6
- 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 +9 -39
- package/src/lib/base/internal/ActionOptions.mjs +9 -39
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +54 -116
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +54 -116
- package/src/lib/base/internal/BasicInfo.cjs +13 -15
- package/src/lib/base/internal/BasicInfo.mjs +15 -17
- 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 +3 -3
- package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +3 -3
- package/src/lib/base/internal/ConstructorSymbol.cjs +3 -3
- package/src/lib/base/internal/ConstructorSymbol.mjs +3 -3
- package/src/lib/base/internal/ControllerEntrypoint.cjs +16 -24
- package/src/lib/base/internal/ControllerEntrypoint.mjs +39 -47
- package/src/lib/base/internal/DataValidator.cjs +203 -27
- package/src/lib/base/internal/DataValidator.mjs +203 -27
- 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 +11 -41
- package/src/lib/base/internal/FlexibleDTO.mjs +13 -43
- package/src/lib/base/internal/GetActionDTOAndOptions.cjs +21 -51
- package/src/lib/base/internal/GetActionDTOAndOptions.mjs +23 -53
- 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 +15 -17
- package/src/lib/base/internal/MethodAssistantFunction.mjs +8 -10
- package/src/lib/base/internal/MethodValidation.cjs +55 -85
- package/src/lib/base/internal/MethodValidation.mjs +42 -72
- package/src/lib/base/internal/ModuleConfigLoader.cjs +81 -143
- package/src/lib/base/internal/ModuleConfigLoader.mjs +76 -138
- package/src/lib/base/internal/ObjectConfiguration.cjs +26 -56
- package/src/lib/base/internal/ObjectConfiguration.mjs +25 -55
- package/src/lib/base/internal/ObjectContainer.cjs +3 -3
- package/src/lib/base/internal/ObjectContainer.mjs +3 -3
- package/src/lib/base/internal/ObjectInjection.cjs +3 -3
- package/src/lib/base/internal/ObjectInjection.mjs +3 -3
- package/src/lib/base/internal/ObjectLifetime.cjs +5 -7
- package/src/lib/base/internal/ObjectLifetime.mjs +12 -14
- package/src/lib/base/internal/ObjectSchemaValidation.cjs +23 -121
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +14 -114
- package/src/lib/base/internal/ObjectType.cjs +27 -119
- package/src/lib/base/internal/ObjectType.mjs +20 -119
- 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 +831 -7
- package/src/lib/base/internal/PatternManager.mjs +835 -11
- package/src/lib/base/internal/StringifyPattern.cjs +5 -9
- package/src/lib/base/internal/StringifyPattern.mjs +5 -9
- package/src/lib/base/internal/ThrowWarning.cjs +1 -1
- package/src/lib/base/internal/ThrowWarning.mjs +1 -1
- package/src/lib/context/CLIContext.cjs +12 -42
- package/src/lib/context/CLIContext.mjs +15 -45
- package/src/lib/context/HTTPContext.cjs +15 -45
- package/src/lib/context/HTTPContext.mjs +14 -44
- package/src/lib/context/ServiceContext.cjs +12 -42
- package/src/lib/context/ServiceContext.mjs +18 -48
- package/src/lib/core/Alias.cjs +46 -48
- package/src/lib/core/Alias.mjs +24 -26
- package/src/lib/core/Application.cjs +486 -351
- package/src/lib/core/Application.mjs +531 -400
- package/src/lib/core/Component.cjs +24 -88
- package/src/lib/core/Component.mjs +28 -92
- package/src/lib/core/Container.cjs +50 -326
- package/src/lib/core/Container.mjs +45 -323
- package/src/lib/core/DTO.cjs +16 -194
- package/src/lib/core/DTO.mjs +12 -197
- package/src/lib/core/Module.cjs +39 -107
- package/src/lib/core/Module.mjs +53 -121
- package/src/lib/core/Provider.cjs +19 -81
- package/src/lib/core/Provider.mjs +25 -87
- package/src/lib/core/Time.cjs +5 -7
- package/src/lib/core/Time.mjs +5 -7
- 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 +5502 -17
- package/src/lib/helpers/Glob.mjs +5472 -17
- 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 +4 -10
- package/src/lib/helpers/IsGlobString.mjs +3 -11
- package/src/lib/helpers/IsHtml.cjs +5 -5
- package/src/lib/helpers/IsHtml.mjs +6 -6
- 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 +10 -44
- package/src/lib/helpers/IsSymbol.mjs +9 -45
- package/src/lib/helpers/IsXML.cjs +1711 -6
- package/src/lib/helpers/IsXML.mjs +1712 -7
- package/src/lib/helpers/MD5.cjs +4 -4
- package/src/lib/helpers/MD5.mjs +4 -4
- 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 +2 -6
- package/src/lib/helpers/NonceStr.mjs +4 -8
- package/src/lib/helpers/ObjectConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectHash.cjs +405 -7
- package/src/lib/helpers/ObjectHash.mjs +399 -7
- 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 +172 -11
- package/src/lib/helpers/RandomString.mjs +166 -11
- package/src/lib/helpers/SHA1.cjs +4 -4
- package/src/lib/helpers/SHA1.mjs +4 -4
- package/src/lib/helpers/SHA256.cjs +4 -4
- package/src/lib/helpers/SHA256.mjs +4 -4
- package/src/lib/helpers/SetToArray.cjs +1 -1
- package/src/lib/helpers/SetToArray.mjs +1 -1
- package/src/lib/helpers/SignedToHex.cjs +1 -1
- package/src/lib/helpers/SignedToHex.mjs +1 -1
- package/src/lib/helpers/SortArray.cjs +2 -6
- package/src/lib/helpers/SortArray.mjs +7 -11
- 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 +417 -38
- package/src/lib/helpers/URLBuilder.mjs +417 -38
- package/src/lib/helpers/UUID.cjs +340 -22
- package/src/lib/helpers/UUID.mjs +340 -22
- 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 +145 -197
- package/src/lib/ioc/DependencyInjectionContainer.mjs +102 -154
- package/src/lib/ioc/Errors.cjs +27 -57
- package/src/lib/ioc/Errors.mjs +25 -55
- 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 +5811 -99
- package/src/lib/ioc/ListModules.mjs +5779 -79
- package/src/lib/ioc/LoadModules.cjs +63 -93
- package/src/lib/ioc/LoadModules.mjs +65 -95
- package/src/lib/ioc/ParamParser.cjs +1 -1
- package/src/lib/ioc/ParamParser.mjs +1 -1
- package/src/lib/ioc/Resolvers.cjs +42 -72
- package/src/lib/ioc/Resolvers.mjs +44 -74
- package/src/lib/ioc/Utils.cjs +28 -58
- package/src/lib/ioc/Utils.mjs +34 -64
- package/src/lib/validation/VLD.cjs +11342 -98
- package/src/lib/validation/VLD.mjs +11298 -80
- 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 +22 -84
- package/src/options/ApplicationOptions.mjs +25 -87
- package/src/options/LoadAnonymousObjectOptions.cjs +20 -82
- package/src/options/LoadAnonymousObjectOptions.mjs +22 -84
- package/src/options/LoadNamedObjectOptions.cjs +20 -82
- package/src/options/LoadNamedObjectOptions.mjs +22 -84
- package/src/options/LoadObjectOptions.cjs +23 -96
- package/src/options/LoadObjectOptions.mjs +18 -98
- package/src/options/ModuleLoadObjectsOptions.cjs +20 -82
- package/src/options/ModuleLoadObjectsOptions.mjs +20 -82
- package/src/options/ModuleOptions.cjs +26 -88
- package/src/options/ModuleOptions.mjs +25 -87
- package/src/options/OverridableNamedObjectOptions.cjs +20 -82
- package/src/options/OverridableNamedObjectOptions.mjs +23 -85
- package/src/options/OverridableObjectOptions.cjs +20 -82
- package/src/options/OverridableObjectOptions.mjs +22 -84
- package/src/providers/Database.cjs +41 -181
- package/src/providers/Database.mjs +74 -214
- package/src/providers/PasswordHash.cjs +541 -89
- package/src/providers/PasswordHash.mjs +535 -89
- package/src/providers/migration/GenerateMigration.cjs +37 -389
- package/src/providers/migration/GenerateMigration.mjs +33 -386
- 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 +938 -206
- package/vendor/Package.internal.1.mjs +938 -202
- package/vendor/Package.internal.10.cjs +17 -227
- package/vendor/Package.internal.10.mjs +18 -226
- package/vendor/Package.internal.11.cjs +15 -1610
- package/vendor/Package.internal.11.mjs +16 -1579
- package/vendor/Package.internal.12.cjs +22 -357
- package/vendor/Package.internal.12.mjs +23 -358
- package/vendor/Package.internal.13.cjs +17 -786
- package/vendor/Package.internal.13.mjs +18 -787
- package/vendor/Package.internal.14.cjs +13 -977
- package/vendor/Package.internal.14.mjs +14 -966
- package/vendor/Package.internal.15.cjs +19 -43
- package/vendor/Package.internal.15.mjs +20 -44
- package/vendor/Package.internal.16.cjs +16 -262
- package/vendor/Package.internal.16.mjs +17 -263
- package/vendor/Package.internal.17.cjs +16 -428
- package/vendor/Package.internal.17.mjs +17 -429
- package/vendor/Package.internal.18.cjs +15 -556
- package/vendor/Package.internal.18.mjs +16 -551
- package/vendor/Package.internal.19.cjs +16 -218
- package/vendor/Package.internal.19.mjs +19 -221
- package/vendor/Package.internal.2.cjs +29 -86
- package/vendor/Package.internal.2.mjs +30 -83
- package/vendor/Package.internal.20.cjs +19 -989
- package/vendor/Package.internal.20.mjs +20 -990
- package/vendor/Package.internal.21.cjs +26 -9
- package/vendor/Package.internal.21.mjs +27 -8
- package/vendor/Package.internal.22.cjs +53 -120
- package/vendor/Package.internal.22.mjs +54 -119
- package/vendor/Package.internal.23.cjs +15 -140
- package/vendor/Package.internal.23.mjs +16 -139
- package/vendor/Package.internal.24.cjs +22 -5
- package/vendor/Package.internal.24.mjs +23 -4
- package/vendor/Package.internal.25.cjs +30 -19
- package/vendor/Package.internal.25.mjs +31 -18
- package/vendor/Package.internal.26.cjs +13 -472
- package/vendor/Package.internal.26.mjs +14 -467
- package/vendor/Package.internal.27.cjs +19 -73
- package/vendor/Package.internal.27.mjs +19 -67
- package/vendor/Package.internal.28.cjs +22 -2
- package/vendor/Package.internal.28.mjs +24 -2
- package/vendor/Package.internal.29.cjs +35 -37
- package/vendor/Package.internal.29.mjs +36 -36
- package/vendor/Package.internal.3.cjs +532 -14232
- package/vendor/Package.internal.3.mjs +529 -14211
- package/vendor/Package.internal.30.cjs +21 -21
- package/vendor/Package.internal.30.mjs +22 -20
- package/vendor/Package.internal.31.cjs +25 -10
- package/vendor/Package.internal.31.mjs +26 -9
- package/vendor/Package.internal.310.cjs +10 -0
- package/vendor/Package.internal.310.mjs +8 -0
- package/vendor/Package.internal.32.cjs +39 -188
- package/vendor/Package.internal.32.mjs +42 -191
- package/vendor/Package.internal.33.cjs +35 -58
- package/vendor/Package.internal.33.mjs +36 -57
- package/vendor/Package.internal.34.cjs +20 -161
- package/vendor/Package.internal.34.mjs +26 -167
- package/vendor/Package.internal.35.cjs +32 -2075
- package/vendor/Package.internal.35.mjs +28 -2065
- package/vendor/Package.internal.36.cjs +30 -510
- package/vendor/Package.internal.36.mjs +31 -503
- package/vendor/Package.internal.37.cjs +36 -408
- package/vendor/Package.internal.37.mjs +37 -403
- package/vendor/Package.internal.38.cjs +37 -2349
- package/vendor/Package.internal.38.mjs +38 -2338
- package/vendor/Package.internal.39.cjs +18 -56
- package/vendor/Package.internal.39.mjs +19 -63
- package/vendor/Package.internal.4.cjs +463 -961
- package/vendor/Package.internal.4.mjs +444 -960
- package/vendor/Package.internal.40.cjs +20 -146
- package/vendor/Package.internal.40.mjs +21 -145
- package/vendor/Package.internal.41.cjs +15 -630
- package/vendor/Package.internal.41.mjs +16 -631
- package/vendor/Package.internal.42.cjs +22 -238
- package/vendor/Package.internal.42.mjs +28 -244
- package/vendor/Package.internal.43.cjs +16 -220
- package/vendor/Package.internal.43.mjs +17 -215
- package/vendor/Package.internal.44.cjs +29 -2
- package/vendor/Package.internal.44.mjs +31 -2
- package/vendor/Package.internal.45.cjs +32 -353
- package/vendor/Package.internal.45.mjs +35 -350
- package/vendor/Package.internal.46.cjs +17 -34
- package/vendor/Package.internal.46.mjs +18 -33
- package/vendor/Package.internal.47.cjs +16 -49
- package/vendor/Package.internal.47.mjs +17 -48
- package/vendor/Package.internal.48.cjs +20 -20
- package/vendor/Package.internal.48.mjs +21 -19
- package/vendor/Package.internal.49.cjs +24 -88
- package/vendor/Package.internal.49.mjs +31 -87
- package/vendor/Package.internal.5.cjs +4275 -340
- package/vendor/Package.internal.5.mjs +4274 -341
- package/vendor/Package.internal.50.cjs +34 -80
- package/vendor/Package.internal.50.mjs +35 -79
- package/vendor/Package.internal.51.cjs +48306 -57
- package/vendor/Package.internal.51.mjs +48272 -51
- package/vendor/Package.internal.510.cjs +154 -0
- package/vendor/Package.internal.510.mjs +142 -0
- package/vendor/Package.internal.511.cjs +168 -0
- package/vendor/Package.internal.511.mjs +156 -0
- package/vendor/Package.internal.512.cjs +6 -0
- package/vendor/Package.internal.512.mjs +6 -0
- package/vendor/Package.internal.513.cjs +192 -0
- package/vendor/Package.internal.513.mjs +180 -0
- package/vendor/Package.internal.52.cjs +675 -18
- package/vendor/Package.internal.52.mjs +670 -17
- package/vendor/{Package.internal.176.cjs → Package.internal.522.cjs} +1 -1
- package/vendor/{Package.internal.176.mjs → Package.internal.522.mjs} +2 -2
- package/vendor/Package.internal.53.cjs +7095 -321
- package/vendor/Package.internal.53.mjs +7063 -319
- package/vendor/Package.internal.54.cjs +192 -2
- package/vendor/Package.internal.54.mjs +192 -2
- package/vendor/Package.internal.542.cjs +171 -0
- package/vendor/Package.internal.542.mjs +153 -0
- package/vendor/Package.internal.55.cjs +3945 -127
- package/vendor/Package.internal.55.mjs +3958 -126
- package/vendor/Package.internal.552.cjs +49615 -0
- package/vendor/Package.internal.552.mjs +49572 -0
- package/vendor/Package.internal.56.cjs +837 -18
- package/vendor/Package.internal.56.mjs +838 -19
- package/vendor/Package.internal.57.cjs +14793 -2
- package/vendor/Package.internal.57.mjs +14768 -2
- package/vendor/Package.internal.58.cjs +113 -175
- package/vendor/Package.internal.58.mjs +110 -184
- package/vendor/Package.internal.59.cjs +307 -3990
- package/vendor/Package.internal.59.mjs +307 -4008
- package/vendor/Package.internal.6.cjs +4 -6109
- package/vendor/Package.internal.6.mjs +4 -6103
- package/vendor/Package.internal.7.cjs +6543 -494
- package/vendor/Package.internal.7.mjs +6531 -494
- package/vendor/Package.internal.8.cjs +152 -33
- package/vendor/Package.internal.8.mjs +152 -31
- package/vendor/Package.internal.9.cjs +16 -2160
- package/vendor/Package.internal.9.mjs +17 -2133
- package/vendor/Package.internal.100.cjs +0 -4
- package/vendor/Package.internal.100.mjs +0 -2
- package/vendor/Package.internal.101.cjs +0 -112
- package/vendor/Package.internal.101.mjs +0 -98
- package/vendor/Package.internal.102.cjs +0 -88
- package/vendor/Package.internal.102.mjs +0 -84
- package/vendor/Package.internal.103.cjs +0 -58
- package/vendor/Package.internal.103.mjs +0 -52
- package/vendor/Package.internal.104.cjs +0 -20
- package/vendor/Package.internal.104.mjs +0 -18
- package/vendor/Package.internal.105.cjs +0 -96
- package/vendor/Package.internal.105.mjs +0 -96
- package/vendor/Package.internal.106.cjs +0 -113
- package/vendor/Package.internal.106.mjs +0 -113
- package/vendor/Package.internal.107.cjs +0 -2176
- package/vendor/Package.internal.107.mjs +0 -2174
- package/vendor/Package.internal.108.cjs +0 -2466
- package/vendor/Package.internal.108.mjs +0 -2434
- package/vendor/Package.internal.109.cjs +0 -1306
- package/vendor/Package.internal.109.mjs +0 -1292
- package/vendor/Package.internal.110.cjs +0 -33
- package/vendor/Package.internal.110.mjs +0 -31
- package/vendor/Package.internal.111.cjs +0 -20
- package/vendor/Package.internal.111.mjs +0 -18
- package/vendor/Package.internal.112.cjs +0 -21
- package/vendor/Package.internal.112.mjs +0 -21
- package/vendor/Package.internal.113.cjs +0 -52
- package/vendor/Package.internal.113.mjs +0 -52
- package/vendor/Package.internal.114.cjs +0 -141
- package/vendor/Package.internal.114.mjs +0 -141
- package/vendor/Package.internal.115.cjs +0 -2
- package/vendor/Package.internal.115.mjs +0 -1
- package/vendor/Package.internal.116.cjs +0 -6
- package/vendor/Package.internal.116.mjs +0 -4
- package/vendor/Package.internal.117.cjs +0 -4
- package/vendor/Package.internal.117.mjs +0 -2
- package/vendor/Package.internal.118.cjs +0 -4
- package/vendor/Package.internal.118.mjs +0 -2
- package/vendor/Package.internal.119.cjs +0 -4
- package/vendor/Package.internal.119.mjs +0 -2
- package/vendor/Package.internal.120.cjs +0 -49
- package/vendor/Package.internal.120.mjs +0 -47
- package/vendor/Package.internal.121.cjs +0 -14
- package/vendor/Package.internal.121.mjs +0 -14
- package/vendor/Package.internal.122.cjs +0 -12
- package/vendor/Package.internal.122.mjs +0 -12
- package/vendor/Package.internal.123.cjs +0 -20
- package/vendor/Package.internal.123.mjs +0 -18
- package/vendor/Package.internal.124.cjs +0 -118
- package/vendor/Package.internal.124.mjs +0 -116
- package/vendor/Package.internal.125.cjs +0 -18
- package/vendor/Package.internal.125.mjs +0 -16
- package/vendor/Package.internal.126.cjs +0 -19
- package/vendor/Package.internal.126.mjs +0 -17
- package/vendor/Package.internal.127.cjs +0 -8876
- package/vendor/Package.internal.127.mjs +0 -8874
- package/vendor/Package.internal.128.cjs +0 -899
- package/vendor/Package.internal.128.mjs +0 -897
- package/vendor/Package.internal.129.cjs +0 -6769
- package/vendor/Package.internal.129.mjs +0 -6775
- package/vendor/Package.internal.130.cjs +0 -473
- package/vendor/Package.internal.130.mjs +0 -459
- package/vendor/Package.internal.131.cjs +0 -617
- package/vendor/Package.internal.131.mjs +0 -611
- package/vendor/Package.internal.132.cjs +0 -97
- package/vendor/Package.internal.132.mjs +0 -89
- package/vendor/Package.internal.133.cjs +0 -4
- package/vendor/Package.internal.133.mjs +0 -2
- package/vendor/Package.internal.134.cjs +0 -3753
- package/vendor/Package.internal.134.mjs +0 -3751
- package/vendor/Package.internal.135.cjs +0 -561
- package/vendor/Package.internal.135.mjs +0 -559
- package/vendor/Package.internal.136.cjs +0 -4
- package/vendor/Package.internal.136.mjs +0 -2
- package/vendor/Package.internal.137.cjs +0 -4
- package/vendor/Package.internal.137.mjs +0 -2
- package/vendor/Package.internal.138.cjs +0 -4
- package/vendor/Package.internal.138.mjs +0 -2
- package/vendor/Package.internal.139.cjs +0 -4
- package/vendor/Package.internal.139.mjs +0 -2
- package/vendor/Package.internal.140.cjs +0 -4
- package/vendor/Package.internal.140.mjs +0 -2
- package/vendor/Package.internal.141.cjs +0 -4
- package/vendor/Package.internal.141.mjs +0 -2
- package/vendor/Package.internal.142.cjs +0 -4
- package/vendor/Package.internal.142.mjs +0 -2
- package/vendor/Package.internal.143.cjs +0 -4
- package/vendor/Package.internal.143.mjs +0 -2
- package/vendor/Package.internal.144.cjs +0 -4
- package/vendor/Package.internal.144.mjs +0 -2
- package/vendor/Package.internal.145.cjs +0 -4
- package/vendor/Package.internal.145.mjs +0 -2
- package/vendor/Package.internal.146.cjs +0 -4
- package/vendor/Package.internal.146.mjs +0 -2
- package/vendor/Package.internal.147.cjs +0 -408
- package/vendor/Package.internal.147.mjs +0 -400
- package/vendor/Package.internal.148.cjs +0 -104
- package/vendor/Package.internal.148.mjs +0 -104
- package/vendor/Package.internal.149.cjs +0 -27
- package/vendor/Package.internal.149.mjs +0 -27
- package/vendor/Package.internal.150.cjs +0 -4
- package/vendor/Package.internal.150.mjs +0 -2
- package/vendor/Package.internal.151.cjs +0 -4
- package/vendor/Package.internal.151.mjs +0 -2
- package/vendor/Package.internal.152.cjs +0 -723
- package/vendor/Package.internal.152.mjs +0 -723
- package/vendor/Package.internal.153.cjs +0 -1548
- package/vendor/Package.internal.153.mjs +0 -1540
- package/vendor/Package.internal.154.cjs +0 -364
- package/vendor/Package.internal.154.mjs +0 -364
- package/vendor/Package.internal.155.cjs +0 -107
- package/vendor/Package.internal.155.mjs +0 -107
- package/vendor/Package.internal.156.cjs +0 -636
- package/vendor/Package.internal.156.mjs +0 -622
- package/vendor/Package.internal.157.cjs +0 -543
- package/vendor/Package.internal.157.mjs +0 -533
- package/vendor/Package.internal.158.cjs +0 -605
- package/vendor/Package.internal.158.mjs +0 -605
- package/vendor/Package.internal.159.cjs +0 -139
- package/vendor/Package.internal.159.mjs +0 -131
- package/vendor/Package.internal.160.cjs +0 -119
- package/vendor/Package.internal.160.mjs +0 -111
- package/vendor/Package.internal.161.cjs +0 -1224
- package/vendor/Package.internal.161.mjs +0 -1214
- package/vendor/Package.internal.162.cjs +0 -90
- package/vendor/Package.internal.162.mjs +0 -98
- package/vendor/Package.internal.163.cjs +0 -4
- package/vendor/Package.internal.163.mjs +0 -2
- package/vendor/Package.internal.164.cjs +0 -4
- package/vendor/Package.internal.164.mjs +0 -2
- package/vendor/Package.internal.165.cjs +0 -55
- package/vendor/Package.internal.165.mjs +0 -55
- package/vendor/Package.internal.166.cjs +0 -10
- package/vendor/Package.internal.166.mjs +0 -10
- package/vendor/Package.internal.167.cjs +0 -12
- package/vendor/Package.internal.167.mjs +0 -6
- package/vendor/Package.internal.168.cjs +0 -165
- package/vendor/Package.internal.168.mjs +0 -163
- package/vendor/Package.internal.169.cjs +0 -23
- package/vendor/Package.internal.169.mjs +0 -15
- package/vendor/Package.internal.170.cjs +0 -251
- package/vendor/Package.internal.170.mjs +0 -249
- package/vendor/Package.internal.171.cjs +0 -949
- package/vendor/Package.internal.171.mjs +0 -947
- package/vendor/Package.internal.172.cjs +0 -27
- package/vendor/Package.internal.172.mjs +0 -27
- package/vendor/Package.internal.173.cjs +0 -80
- package/vendor/Package.internal.173.mjs +0 -72
- package/vendor/Package.internal.174.cjs +0 -655
- package/vendor/Package.internal.174.mjs +0 -653
- package/vendor/Package.internal.175.cjs +0 -77
- package/vendor/Package.internal.175.mjs +0 -75
- package/vendor/Package.internal.177.cjs +0 -70
- package/vendor/Package.internal.177.mjs +0 -68
- package/vendor/Package.internal.178.cjs +0 -112
- package/vendor/Package.internal.178.mjs +0 -110
- package/vendor/Package.internal.179.cjs +0 -102
- package/vendor/Package.internal.179.mjs +0 -100
- package/vendor/Package.internal.180.cjs +0 -45450
- package/vendor/Package.internal.180.mjs +0 -45432
- package/vendor/Package.internal.181.cjs +0 -8
- package/vendor/Package.internal.181.mjs +0 -6
- package/vendor/Package.internal.182.cjs +0 -30
- package/vendor/Package.internal.182.mjs +0 -28
- package/vendor/Package.internal.183.cjs +0 -317
- package/vendor/Package.internal.183.mjs +0 -315
- package/vendor/Package.internal.184.cjs +0 -943
- package/vendor/Package.internal.184.mjs +0 -951
- package/vendor/Package.internal.185.cjs +0 -1090
- package/vendor/Package.internal.185.mjs +0 -1090
- package/vendor/Package.internal.186.cjs +0 -165
- package/vendor/Package.internal.186.mjs +0 -165
- package/vendor/Package.internal.187.cjs +0 -15
- package/vendor/Package.internal.187.mjs +0 -13
- package/vendor/Package.internal.188.cjs +0 -14
- package/vendor/Package.internal.188.mjs +0 -12
- package/vendor/Package.internal.189.cjs +0 -49
- package/vendor/Package.internal.189.mjs +0 -47
- package/vendor/Package.internal.190.cjs +0 -493
- package/vendor/Package.internal.190.mjs +0 -471
- package/vendor/Package.internal.191.cjs +0 -4
- package/vendor/Package.internal.191.mjs +0 -2
- package/vendor/Package.internal.192.cjs +0 -4
- package/vendor/Package.internal.192.mjs +0 -2
- package/vendor/Package.internal.193.cjs +0 -4
- package/vendor/Package.internal.193.mjs +0 -2
- package/vendor/Package.internal.194.cjs +0 -4
- package/vendor/Package.internal.194.mjs +0 -2
- package/vendor/Package.internal.195.cjs +0 -4
- package/vendor/Package.internal.195.mjs +0 -2
- package/vendor/Package.internal.196.cjs +0 -4
- package/vendor/Package.internal.196.mjs +0 -2
- package/vendor/Package.internal.197.cjs +0 -4
- package/vendor/Package.internal.197.mjs +0 -2
- package/vendor/Package.internal.198.cjs +0 -4
- package/vendor/Package.internal.198.mjs +0 -2
- package/vendor/Package.internal.60.cjs +0 -4
- package/vendor/Package.internal.60.mjs +0 -2
- package/vendor/Package.internal.61.cjs +0 -321
- package/vendor/Package.internal.61.mjs +0 -321
- package/vendor/Package.internal.62.cjs +0 -365
- package/vendor/Package.internal.62.mjs +0 -363
- package/vendor/Package.internal.63.cjs +0 -403
- package/vendor/Package.internal.63.mjs +0 -395
- package/vendor/Package.internal.64.cjs +0 -127
- package/vendor/Package.internal.64.mjs +0 -125
- package/vendor/Package.internal.65.cjs +0 -31
- package/vendor/Package.internal.65.mjs +0 -29
- package/vendor/Package.internal.66.cjs +0 -87
- package/vendor/Package.internal.66.mjs +0 -85
- package/vendor/Package.internal.67.cjs +0 -61
- package/vendor/Package.internal.67.mjs +0 -59
- package/vendor/Package.internal.68.cjs +0 -34
- package/vendor/Package.internal.68.mjs +0 -32
- package/vendor/Package.internal.69.cjs +0 -4
- package/vendor/Package.internal.69.mjs +0 -2
- package/vendor/Package.internal.70.cjs +0 -684
- package/vendor/Package.internal.70.mjs +0 -662
- package/vendor/Package.internal.71.cjs +0 -13896
- package/vendor/Package.internal.71.mjs +0 -13870
- package/vendor/Package.internal.72.cjs +0 -37
- package/vendor/Package.internal.72.mjs +0 -31
- package/vendor/Package.internal.73.cjs +0 -4077
- package/vendor/Package.internal.73.mjs +0 -4077
- package/vendor/Package.internal.74.cjs +0 -1664
- package/vendor/Package.internal.74.mjs +0 -1664
- package/vendor/Package.internal.75.cjs +0 -259
- package/vendor/Package.internal.75.mjs +0 -257
- package/vendor/Package.internal.76.cjs +0 -4964
- package/vendor/Package.internal.76.mjs +0 -4948
- package/vendor/Package.internal.77.cjs +0 -1239
- package/vendor/Package.internal.77.mjs +0 -1225
- package/vendor/Package.internal.78.cjs +0 -340
- package/vendor/Package.internal.78.mjs +0 -326
- package/vendor/Package.internal.79.cjs +0 -34
- package/vendor/Package.internal.79.mjs +0 -32
- package/vendor/Package.internal.80.cjs +0 -88
- package/vendor/Package.internal.80.mjs +0 -88
- package/vendor/Package.internal.81.cjs +0 -55
- package/vendor/Package.internal.81.mjs +0 -55
- package/vendor/Package.internal.82.cjs +0 -15
- package/vendor/Package.internal.82.mjs +0 -13
- package/vendor/Package.internal.83.cjs +0 -1355
- package/vendor/Package.internal.83.mjs +0 -1355
- package/vendor/Package.internal.84.cjs +0 -12
- package/vendor/Package.internal.84.mjs +0 -6
- package/vendor/Package.internal.85.cjs +0 -4
- package/vendor/Package.internal.85.mjs +0 -2
- package/vendor/Package.internal.86.cjs +0 -351
- package/vendor/Package.internal.86.mjs +0 -351
- package/vendor/Package.internal.87.cjs +0 -80
- package/vendor/Package.internal.87.mjs +0 -80
- package/vendor/Package.internal.88.cjs +0 -1445
- package/vendor/Package.internal.88.mjs +0 -1433
- package/vendor/Package.internal.89.cjs +0 -144
- package/vendor/Package.internal.89.mjs +0 -142
- package/vendor/Package.internal.90.cjs +0 -1822
- package/vendor/Package.internal.90.mjs +0 -1814
- package/vendor/Package.internal.91.cjs +0 -130
- package/vendor/Package.internal.91.mjs +0 -124
- package/vendor/Package.internal.92.cjs +0 -208
- package/vendor/Package.internal.92.mjs +0 -208
- package/vendor/Package.internal.93.cjs +0 -1641
- package/vendor/Package.internal.93.mjs +0 -1641
- package/vendor/Package.internal.94.cjs +0 -74
- package/vendor/Package.internal.94.mjs +0 -74
- package/vendor/Package.internal.95.cjs +0 -28
- package/vendor/Package.internal.95.mjs +0 -28
- package/vendor/Package.internal.96.cjs +0 -69
- package/vendor/Package.internal.96.mjs +0 -67
- package/vendor/Package.internal.97.cjs +0 -123
- package/vendor/Package.internal.97.mjs +0 -121
- package/vendor/Package.internal.98.cjs +0 -16
- package/vendor/Package.internal.98.mjs +0 -8
- package/vendor/Package.internal.99.cjs +0 -4
- package/vendor/Package.internal.99.mjs +0 -2
|
@@ -1,316 +1,1963 @@
|
|
|
1
|
-
/* Build Date: Mon Nov 24 2025
|
|
2
|
-
import { _ as t, a as
|
|
1
|
+
/* Build Date: Mon Nov 24 2025 18:10:51 GMT+0800 (China Standard Time) */
|
|
2
|
+
import { _ as t, a as r } from "../../../vendor/Package.internal.3.mjs";
|
|
3
3
|
|
|
4
|
-
import { Component as
|
|
4
|
+
import { Component as e } from "../../lib/core/Component.mjs";
|
|
5
5
|
|
|
6
|
-
import { Configurable as
|
|
6
|
+
import { Configurable as n } from "../../decorators/di/Configurable.mjs";
|
|
7
7
|
|
|
8
|
-
import { BindControllerToComponent as
|
|
8
|
+
import { BindControllerToComponent as o, GetComponentControllerActionMap as a } from "../../lib/base/internal/ControllerEntrypoint.mjs";
|
|
9
9
|
|
|
10
|
-
import { PatternManager as
|
|
10
|
+
import { PatternManager as i } from "../../lib/base/internal/PatternManager.mjs";
|
|
11
11
|
|
|
12
|
-
import { Controller as
|
|
12
|
+
import { Controller as s } from "./lib/Controller.mjs";
|
|
13
13
|
|
|
14
14
|
import { As as c } from "../../lib/helpers/As.mjs";
|
|
15
15
|
|
|
16
|
-
import { ControllerActionNotFoundException as
|
|
16
|
+
import { ControllerActionNotFoundException as u } from "./exceptions/ControllerActionNotFoundException.mjs";
|
|
17
17
|
|
|
18
|
-
import { DestroyRuntimeContainerException as
|
|
18
|
+
import { DestroyRuntimeContainerException as p } from "../../exceptions/DestroyRuntimeContainerException.mjs";
|
|
19
19
|
|
|
20
20
|
import { GetObjectPropertyPaths as l } from "../../lib/helpers/GetObjectPropertyPaths.mjs";
|
|
21
21
|
|
|
22
|
-
import {
|
|
22
|
+
import { g as f, a as v, c as h } from "../../../vendor/Package.internal.2.mjs";
|
|
23
23
|
|
|
24
|
-
import { UniqueArray as
|
|
24
|
+
import { UniqueArray as m } from "../../lib/helpers/UniqueArray.mjs";
|
|
25
25
|
|
|
26
|
-
import {
|
|
26
|
+
import { D as d } from "../../../vendor/Package.internal.7.mjs";
|
|
27
27
|
|
|
28
|
-
import { Singleton as
|
|
28
|
+
import { Singleton as y } from "../../decorators/di/Lifetime.mjs";
|
|
29
29
|
|
|
30
|
-
import {
|
|
30
|
+
import { DuplicateActionNameException as b } from "./exceptions/DuplicateActionNameException.mjs";
|
|
31
|
+
|
|
32
|
+
import { AccessControl as j } from "./lib/AccessControl.mjs";
|
|
33
|
+
|
|
34
|
+
import { ContextType as g } from "../../lib/base/Context.mjs";
|
|
35
|
+
|
|
36
|
+
export { BaseContext } from "../../lib/base/Context.mjs";
|
|
37
|
+
|
|
38
|
+
import { AccessControlRule as A } from "./lib/AccessControlRule.mjs";
|
|
39
|
+
|
|
40
|
+
import { InvalidActionGroupException as w } from "./exceptions/InvalidActionGroupException.mjs";
|
|
41
|
+
|
|
42
|
+
export { CLIContext } from "../../lib/context/CLIContext.mjs";
|
|
43
|
+
|
|
44
|
+
export { HTTPContext } from "../../lib/context/HTTPContext.mjs";
|
|
45
|
+
|
|
46
|
+
export { ServiceContext } from "../../lib/context/ServiceContext.mjs";
|
|
47
|
+
|
|
48
|
+
import "../../../vendor/Package.internal.4.mjs";
|
|
49
|
+
|
|
50
|
+
import "../../lib/base/async-constructor/AsyncConstructor.mjs";
|
|
51
|
+
|
|
52
|
+
import "../../lib/base/async-constructor/Append.mjs";
|
|
53
|
+
|
|
54
|
+
import "../../lib/helpers/IsPromiseLike.mjs";
|
|
55
|
+
|
|
56
|
+
import "../../lib/helpers/IsPromise.mjs";
|
|
57
|
+
|
|
58
|
+
import "util/types";
|
|
59
|
+
|
|
60
|
+
import "../../exceptions/MethodNotFoundException.mjs";
|
|
61
|
+
|
|
62
|
+
import "../../lib/base/abstracts/Exception.mjs";
|
|
63
|
+
|
|
64
|
+
import "../../lib/base/internal/BasicInfo.mjs";
|
|
65
|
+
|
|
66
|
+
import "../../../vendor/Package.internal.5.mjs";
|
|
67
|
+
|
|
68
|
+
import "../../../vendor/Package.internal.6.mjs";
|
|
69
|
+
|
|
70
|
+
import "../../lib/base/internal/ThrowWarning.mjs";
|
|
71
|
+
|
|
72
|
+
import "../../lib/helpers/Templating.mjs";
|
|
73
|
+
|
|
74
|
+
import "../../lib/base/internal/CamelCase.mjs";
|
|
75
|
+
|
|
76
|
+
import "../../lib/helpers/NoCase.mjs";
|
|
77
|
+
|
|
78
|
+
import "../../lib/ioc/DependencyInjectionContainer.mjs";
|
|
79
|
+
|
|
80
|
+
import "util";
|
|
81
|
+
|
|
82
|
+
import "../../lib/ioc/Errors.mjs";
|
|
83
|
+
|
|
84
|
+
import "../../exceptions/di/DependencyInjectionException.mjs";
|
|
85
|
+
|
|
86
|
+
import "../../lib/base/internal/ConstructorSymbol.mjs";
|
|
87
|
+
|
|
88
|
+
import "../../constants/DIMetadataKey.mjs";
|
|
89
|
+
|
|
90
|
+
import "../../../vendor/Package.internal.1.mjs";
|
|
91
|
+
|
|
92
|
+
import "node:crypto";
|
|
93
|
+
|
|
94
|
+
import "../../lib/base/internal/DataValidator.mjs";
|
|
95
|
+
|
|
96
|
+
import "node:util/types";
|
|
97
|
+
|
|
98
|
+
import "../../lib/validation/VLD.mjs";
|
|
99
|
+
|
|
100
|
+
import "url";
|
|
101
|
+
|
|
102
|
+
import "../../exceptions/dto/InvalidValueException.mjs";
|
|
103
|
+
|
|
104
|
+
import "../../../vendor/Package.internal.8.mjs";
|
|
105
|
+
|
|
106
|
+
import "../../lib/helpers/IsHtml.mjs";
|
|
107
|
+
|
|
108
|
+
import "../../lib/helpers/IsXML.mjs";
|
|
109
|
+
|
|
110
|
+
import "../../constants/DTOMetadataKey.mjs";
|
|
111
|
+
|
|
112
|
+
import "../../lib/helpers/ObjectConstructor.mjs";
|
|
113
|
+
|
|
114
|
+
import "../../lib/helpers/ObjectParentConstructors.mjs";
|
|
115
|
+
|
|
116
|
+
import "../../lib/helpers/ObjectParentConstructor.mjs";
|
|
117
|
+
|
|
118
|
+
import "../../lib/helpers/ObjectPrototype.mjs";
|
|
119
|
+
|
|
120
|
+
import "../../lib/ioc/InjectionMode.mjs";
|
|
121
|
+
|
|
122
|
+
import "../../lib/ioc/Lifetime.mjs";
|
|
123
|
+
|
|
124
|
+
import "../../lib/ioc/ListModules.mjs";
|
|
125
|
+
|
|
126
|
+
import "os";
|
|
127
|
+
|
|
128
|
+
import "path";
|
|
129
|
+
|
|
130
|
+
import "stream";
|
|
131
|
+
|
|
132
|
+
import "events";
|
|
133
|
+
|
|
134
|
+
import "fs";
|
|
135
|
+
|
|
136
|
+
import "../../lib/ioc/Utils.mjs";
|
|
137
|
+
|
|
138
|
+
import "../../lib/ioc/FunctionTokenizer.mjs";
|
|
139
|
+
|
|
140
|
+
import "../../lib/ioc/LoadModules.mjs";
|
|
141
|
+
|
|
142
|
+
import "../../lib/ioc/Resolvers.mjs";
|
|
143
|
+
|
|
144
|
+
import "../../lib/ioc/ParamParser.mjs";
|
|
145
|
+
|
|
146
|
+
import "../../lib/base/internal/ObjectLifetime.mjs";
|
|
147
|
+
|
|
148
|
+
import "../../exceptions/di/LifetimeLockedException.mjs";
|
|
149
|
+
|
|
150
|
+
import "../../lib/base/internal/ObjectWeakRefs.mjs";
|
|
151
|
+
|
|
152
|
+
import "../../lib/base/internal/ConfigurableRecordsInjection.mjs";
|
|
153
|
+
|
|
154
|
+
import "../../lib/base/internal/ObjectConfiguration.mjs";
|
|
155
|
+
|
|
156
|
+
import "../../lib/base/internal/ObjectInjection.mjs";
|
|
157
|
+
|
|
158
|
+
import "../../lib/base/internal/ObjectContainer.mjs";
|
|
159
|
+
|
|
160
|
+
import "../../lib/helpers/DevNull.mjs";
|
|
161
|
+
|
|
162
|
+
import "../../decorators/dto/Expect.mjs";
|
|
163
|
+
|
|
164
|
+
import "../../decorators/dto/IndexSignature.mjs";
|
|
165
|
+
|
|
166
|
+
import "../../decorators/dto/Accept.mjs";
|
|
167
|
+
|
|
168
|
+
import "../../lib/base/internal/MethodValidation.mjs";
|
|
169
|
+
|
|
170
|
+
import "../../exceptions/dto/InvalidMethodAcceptException.mjs";
|
|
171
|
+
|
|
172
|
+
import "../../exceptions/dto/InvalidMethodReturnException.mjs";
|
|
173
|
+
|
|
174
|
+
import "../../lib/helpers/IsEmptyObject.mjs";
|
|
175
|
+
|
|
176
|
+
import "../../lib/base/EventEmitter.mjs";
|
|
177
|
+
|
|
178
|
+
import "../../lib/core/Provider.mjs";
|
|
179
|
+
|
|
180
|
+
import "../../lib/helpers/ObjectHash.mjs";
|
|
181
|
+
|
|
182
|
+
import "crypto";
|
|
183
|
+
|
|
184
|
+
import "../../lib/helpers/GetObjectNestingDepth.mjs";
|
|
185
|
+
|
|
186
|
+
import "../../exceptions/InvalidActionPatternDepthException.mjs";
|
|
187
|
+
|
|
188
|
+
import "../../lib/base/internal/StringifyPattern.mjs";
|
|
189
|
+
|
|
190
|
+
import "../../../vendor/Package.internal.54.mjs";
|
|
191
|
+
|
|
192
|
+
import "../../../vendor/Package.internal.542.mjs";
|
|
193
|
+
|
|
194
|
+
import "node:http";
|
|
195
|
+
|
|
196
|
+
import "./exceptions/AccessDenyException.mjs";
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
// -- Shims --
|
|
200
|
+
import cjsUrl from 'node:url';
|
|
201
|
+
import cjsPath from 'node:path';
|
|
202
|
+
import cjsModule from 'node:module';
|
|
203
|
+
const __filename = cjsUrl.fileURLToPath(import.meta.url);
|
|
204
|
+
const __dirname = cjsPath.dirname(__filename);
|
|
205
|
+
const require = cjsModule.createRequire(import.meta.url);
|
|
206
|
+
function _(t) {
|
|
207
|
+
return t != null && typeof t === "object" && Array.isArray(t) === false;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
const I = Object.freeze(Object.defineProperty({
|
|
211
|
+
__proto__: null,
|
|
212
|
+
default: _
|
|
213
|
+
}, Symbol.toStringTag, {
|
|
214
|
+
value: "Module"
|
|
215
|
+
}));
|
|
216
|
+
|
|
217
|
+
const O = f(I);
|
|
218
|
+
|
|
219
|
+
var C = function t(r) {
|
|
220
|
+
return r != null && typeof r === "object" && Array.isArray(r) === false;
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
const S = C;
|
|
224
|
+
|
|
225
|
+
var x = function(t, r, e) {
|
|
226
|
+
if (!S(e)) {
|
|
227
|
+
e = {
|
|
228
|
+
default: e
|
|
229
|
+
};
|
|
230
|
+
}
|
|
231
|
+
if (!T(t)) {
|
|
232
|
+
return typeof e.default !== "undefined" ? e.default : t;
|
|
233
|
+
}
|
|
234
|
+
if (typeof r === "number") {
|
|
235
|
+
r = String(r);
|
|
236
|
+
}
|
|
237
|
+
const n = Array.isArray(r);
|
|
238
|
+
const o = typeof r === "string";
|
|
239
|
+
const a = e.separator || ".";
|
|
240
|
+
const i = e.joinChar || (typeof a === "string" ? a : ".");
|
|
241
|
+
if (!o && !n) {
|
|
242
|
+
return t;
|
|
243
|
+
}
|
|
244
|
+
if (o && r in t) {
|
|
245
|
+
return E(r, t, e) ? t[r] : e.default;
|
|
246
|
+
}
|
|
247
|
+
let s = n ? r : M(r, a, e);
|
|
248
|
+
let c = s.length;
|
|
249
|
+
let u = 0;
|
|
250
|
+
do {
|
|
251
|
+
let r = s[u];
|
|
252
|
+
if (typeof r === "number") {
|
|
253
|
+
r = String(r);
|
|
254
|
+
}
|
|
255
|
+
while (r && r.slice(-1) === "\\") {
|
|
256
|
+
r = P([ r.slice(0, -1), s[++u] || "" ], i, e);
|
|
257
|
+
}
|
|
258
|
+
if (r in t) {
|
|
259
|
+
if (!E(r, t, e)) {
|
|
260
|
+
return e.default;
|
|
261
|
+
}
|
|
262
|
+
t = t[r];
|
|
263
|
+
} else {
|
|
264
|
+
let n = false;
|
|
265
|
+
let o = u + 1;
|
|
266
|
+
while (o < c) {
|
|
267
|
+
r = P([ r, s[o++] ], i, e);
|
|
268
|
+
if (n = r in t) {
|
|
269
|
+
if (!E(r, t, e)) {
|
|
270
|
+
return e.default;
|
|
271
|
+
}
|
|
272
|
+
t = t[r];
|
|
273
|
+
u = o - 1;
|
|
274
|
+
break;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
if (!n) {
|
|
278
|
+
return e.default;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
} while (++u < c && T(t));
|
|
282
|
+
if (u === c) {
|
|
283
|
+
return t;
|
|
284
|
+
}
|
|
285
|
+
return e.default;
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
function P(t, r, e) {
|
|
289
|
+
if (typeof e.join === "function") {
|
|
290
|
+
return e.join(t);
|
|
291
|
+
}
|
|
292
|
+
return t[0] + r + t[1];
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
function M(t, r, e) {
|
|
296
|
+
if (typeof e.split === "function") {
|
|
297
|
+
return e.split(t);
|
|
298
|
+
}
|
|
299
|
+
return t.split(r);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
function E(t, r, e) {
|
|
303
|
+
if (typeof e.isValid === "function") {
|
|
304
|
+
return e.isValid(t, r);
|
|
305
|
+
}
|
|
306
|
+
return true;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
function T(t) {
|
|
310
|
+
return S(t) || Array.isArray(t) || typeof t === "function";
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
var k = Object.prototype.toString;
|
|
314
|
+
|
|
315
|
+
var D = function t(r) {
|
|
316
|
+
if (r === void 0) return "undefined";
|
|
317
|
+
if (r === null) return "null";
|
|
318
|
+
var e = typeof r;
|
|
319
|
+
if (e === "boolean") return "boolean";
|
|
320
|
+
if (e === "string") return "string";
|
|
321
|
+
if (e === "number") return "number";
|
|
322
|
+
if (e === "symbol") return "symbol";
|
|
323
|
+
if (e === "function") {
|
|
324
|
+
return H(r) ? "generatorfunction" : "function";
|
|
325
|
+
}
|
|
326
|
+
if (G(r)) return "array";
|
|
327
|
+
if (V(r)) return "buffer";
|
|
328
|
+
if (R(r)) return "arguments";
|
|
329
|
+
if (F(r)) return "date";
|
|
330
|
+
if (N(r)) return "error";
|
|
331
|
+
if (z(r)) return "regexp";
|
|
332
|
+
switch (L(r)) {
|
|
333
|
+
case "Symbol":
|
|
334
|
+
return "symbol";
|
|
335
|
+
|
|
336
|
+
case "Promise":
|
|
337
|
+
return "promise";
|
|
338
|
+
|
|
339
|
+
case "WeakMap":
|
|
340
|
+
return "weakmap";
|
|
341
|
+
|
|
342
|
+
case "WeakSet":
|
|
343
|
+
return "weakset";
|
|
344
|
+
|
|
345
|
+
case "Map":
|
|
346
|
+
return "map";
|
|
347
|
+
|
|
348
|
+
case "Set":
|
|
349
|
+
return "set";
|
|
350
|
+
|
|
351
|
+
case "Int8Array":
|
|
352
|
+
return "int8array";
|
|
353
|
+
|
|
354
|
+
case "Uint8Array":
|
|
355
|
+
return "uint8array";
|
|
356
|
+
|
|
357
|
+
case "Uint8ClampedArray":
|
|
358
|
+
return "uint8clampedarray";
|
|
359
|
+
|
|
360
|
+
case "Int16Array":
|
|
361
|
+
return "int16array";
|
|
362
|
+
|
|
363
|
+
case "Uint16Array":
|
|
364
|
+
return "uint16array";
|
|
365
|
+
|
|
366
|
+
case "Int32Array":
|
|
367
|
+
return "int32array";
|
|
368
|
+
|
|
369
|
+
case "Uint32Array":
|
|
370
|
+
return "uint32array";
|
|
371
|
+
|
|
372
|
+
case "Float32Array":
|
|
373
|
+
return "float32array";
|
|
374
|
+
|
|
375
|
+
case "Float64Array":
|
|
376
|
+
return "float64array";
|
|
377
|
+
}
|
|
378
|
+
if (U(r)) {
|
|
379
|
+
return "generator";
|
|
380
|
+
}
|
|
381
|
+
e = k.call(r);
|
|
382
|
+
switch (e) {
|
|
383
|
+
case "[object Object]":
|
|
384
|
+
return "object";
|
|
385
|
+
|
|
386
|
+
case "[object Map Iterator]":
|
|
387
|
+
return "mapiterator";
|
|
388
|
+
|
|
389
|
+
case "[object Set Iterator]":
|
|
390
|
+
return "setiterator";
|
|
391
|
+
|
|
392
|
+
case "[object String Iterator]":
|
|
393
|
+
return "stringiterator";
|
|
394
|
+
|
|
395
|
+
case "[object Array Iterator]":
|
|
396
|
+
return "arrayiterator";
|
|
397
|
+
}
|
|
398
|
+
return e.slice(8, -1).toLowerCase().replace(/\s/g, "");
|
|
399
|
+
};
|
|
400
|
+
|
|
401
|
+
function L(t) {
|
|
402
|
+
return typeof t.constructor === "function" ? t.constructor.name : null;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
function G(t) {
|
|
406
|
+
if (Array.isArray) return Array.isArray(t);
|
|
407
|
+
return t instanceof Array;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
function N(t) {
|
|
411
|
+
return t instanceof Error || typeof t.message === "string" && t.constructor && typeof t.constructor.stackTraceLimit === "number";
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
function F(t) {
|
|
415
|
+
if (t instanceof Date) return true;
|
|
416
|
+
return typeof t.toDateString === "function" && typeof t.getDate === "function" && typeof t.setDate === "function";
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
function z(t) {
|
|
420
|
+
if (t instanceof RegExp) return true;
|
|
421
|
+
return typeof t.flags === "string" && typeof t.ignoreCase === "boolean" && typeof t.multiline === "boolean" && typeof t.global === "boolean";
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
function H(t, r) {
|
|
425
|
+
return L(t) === "GeneratorFunction";
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
function U(t) {
|
|
429
|
+
return typeof t.throw === "function" && typeof t.return === "function" && typeof t.next === "function";
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
function R(t) {
|
|
433
|
+
try {
|
|
434
|
+
if (typeof t.length === "number" && typeof t.callee === "function") {
|
|
435
|
+
return true;
|
|
436
|
+
}
|
|
437
|
+
} catch (t) {
|
|
438
|
+
if (t.message.indexOf("callee") !== -1) {
|
|
439
|
+
return true;
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
return false;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
function V(t) {
|
|
446
|
+
if (t.constructor && typeof t.constructor.isBuffer === "function") {
|
|
447
|
+
return t.constructor.isBuffer(t);
|
|
448
|
+
}
|
|
449
|
+
return false;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
const B = D;
|
|
453
|
+
|
|
454
|
+
var W = function t(r) {
|
|
455
|
+
switch (B(r)) {
|
|
456
|
+
case "boolean":
|
|
457
|
+
case "date":
|
|
458
|
+
case "function":
|
|
459
|
+
case "null":
|
|
460
|
+
case "number":
|
|
461
|
+
return true;
|
|
462
|
+
|
|
463
|
+
case "undefined":
|
|
464
|
+
return false;
|
|
465
|
+
|
|
466
|
+
case "regexp":
|
|
467
|
+
return r.source !== "(?:)" && r.source !== "";
|
|
468
|
+
|
|
469
|
+
case "buffer":
|
|
470
|
+
return r.toString() !== "";
|
|
471
|
+
|
|
472
|
+
case "error":
|
|
473
|
+
return r.message !== "";
|
|
474
|
+
|
|
475
|
+
case "string":
|
|
476
|
+
case "arguments":
|
|
477
|
+
return r.length !== 0;
|
|
478
|
+
|
|
479
|
+
case "file":
|
|
480
|
+
case "map":
|
|
481
|
+
case "set":
|
|
482
|
+
return r.size !== 0;
|
|
483
|
+
|
|
484
|
+
case "array":
|
|
485
|
+
case "object":
|
|
486
|
+
for (const e of Object.keys(r)) {
|
|
487
|
+
if (t(r[e])) {
|
|
488
|
+
return true;
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
return false;
|
|
492
|
+
|
|
493
|
+
default:
|
|
494
|
+
{
|
|
495
|
+
return true;
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
};
|
|
499
|
+
|
|
500
|
+
const $ = x;
|
|
501
|
+
|
|
502
|
+
const q = W;
|
|
503
|
+
|
|
504
|
+
var K = function(t, r, e) {
|
|
505
|
+
if (X(t) && (typeof r === "string" || Array.isArray(r))) {
|
|
506
|
+
return q($(t, r, e));
|
|
507
|
+
}
|
|
508
|
+
return false;
|
|
509
|
+
};
|
|
510
|
+
|
|
511
|
+
function X(t) {
|
|
512
|
+
return t != null && (typeof t === "object" || typeof t === "function" || Array.isArray(t));
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
var J = O;
|
|
516
|
+
|
|
517
|
+
var Q = K;
|
|
518
|
+
|
|
519
|
+
const Y = t => t === "__proto__" || t === "constructor" || t === "prototype";
|
|
520
|
+
|
|
521
|
+
const Z = t => {
|
|
522
|
+
if (Y(t)) {
|
|
523
|
+
throw new Error(`Cannot set unsafe key: "${t}"`);
|
|
524
|
+
}
|
|
525
|
+
};
|
|
526
|
+
|
|
527
|
+
var tt = function t(r, e) {
|
|
528
|
+
if (!J(r)) {
|
|
529
|
+
throw new TypeError("expected an object.");
|
|
530
|
+
}
|
|
531
|
+
var n = Array.isArray(e);
|
|
532
|
+
if (!n && r.hasOwnProperty(e)) {
|
|
533
|
+
delete r[e];
|
|
534
|
+
return true;
|
|
535
|
+
}
|
|
536
|
+
if (Q(r, e)) {
|
|
537
|
+
var o = n ? e.slice() : e.split(".");
|
|
538
|
+
var a = o.pop();
|
|
539
|
+
while (o.length && o[o.length - 1].slice(-1) === "\\") {
|
|
540
|
+
a = o.pop().slice(0, -1) + "." + a;
|
|
541
|
+
}
|
|
542
|
+
while (o.length) {
|
|
543
|
+
e = o.shift();
|
|
544
|
+
Z(e);
|
|
545
|
+
r = r[e];
|
|
546
|
+
}
|
|
547
|
+
return delete r[a];
|
|
548
|
+
}
|
|
549
|
+
return true;
|
|
550
|
+
};
|
|
551
|
+
|
|
552
|
+
const rt = v(tt);
|
|
553
|
+
|
|
554
|
+
function et() {
|
|
555
|
+
this.__data__ = [];
|
|
556
|
+
this.size = 0;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
var nt = et;
|
|
560
|
+
|
|
561
|
+
function ot(t, r) {
|
|
562
|
+
return t === r || t !== t && r !== r;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
var at = ot;
|
|
566
|
+
|
|
567
|
+
var it = at;
|
|
568
|
+
|
|
569
|
+
function st(t, r) {
|
|
570
|
+
var e = t.length;
|
|
571
|
+
while (e--) {
|
|
572
|
+
if (it(t[e][0], r)) {
|
|
573
|
+
return e;
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
return -1;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
var ct = st;
|
|
580
|
+
|
|
581
|
+
var ut = ct;
|
|
582
|
+
|
|
583
|
+
var pt = Array.prototype;
|
|
584
|
+
|
|
585
|
+
var lt = pt.splice;
|
|
586
|
+
|
|
587
|
+
function ft(t) {
|
|
588
|
+
var r = this.__data__, e = ut(r, t);
|
|
589
|
+
if (e < 0) {
|
|
590
|
+
return false;
|
|
591
|
+
}
|
|
592
|
+
var n = r.length - 1;
|
|
593
|
+
if (e == n) {
|
|
594
|
+
r.pop();
|
|
595
|
+
} else {
|
|
596
|
+
lt.call(r, e, 1);
|
|
597
|
+
}
|
|
598
|
+
--this.size;
|
|
599
|
+
return true;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
var vt = ft;
|
|
603
|
+
|
|
604
|
+
var ht = ct;
|
|
605
|
+
|
|
606
|
+
function mt(t) {
|
|
607
|
+
var r = this.__data__, e = ht(r, t);
|
|
608
|
+
return e < 0 ? undefined : r[e][1];
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
var dt = mt;
|
|
612
|
+
|
|
613
|
+
var yt = ct;
|
|
614
|
+
|
|
615
|
+
function bt(t) {
|
|
616
|
+
return yt(this.__data__, t) > -1;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
var jt = bt;
|
|
620
|
+
|
|
621
|
+
var gt = ct;
|
|
622
|
+
|
|
623
|
+
function At(t, r) {
|
|
624
|
+
var e = this.__data__, n = gt(e, t);
|
|
625
|
+
if (n < 0) {
|
|
626
|
+
++this.size;
|
|
627
|
+
e.push([ t, r ]);
|
|
628
|
+
} else {
|
|
629
|
+
e[n][1] = r;
|
|
630
|
+
}
|
|
631
|
+
return this;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
var wt = At;
|
|
635
|
+
|
|
636
|
+
var _t = nt, It = vt, Ot = dt, Ct = jt, St = wt;
|
|
637
|
+
|
|
638
|
+
function xt(t) {
|
|
639
|
+
var r = -1, e = t == null ? 0 : t.length;
|
|
640
|
+
this.clear();
|
|
641
|
+
while (++r < e) {
|
|
642
|
+
var n = t[r];
|
|
643
|
+
this.set(n[0], n[1]);
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
xt.prototype.clear = _t;
|
|
648
|
+
|
|
649
|
+
xt.prototype["delete"] = It;
|
|
650
|
+
|
|
651
|
+
xt.prototype.get = Ot;
|
|
652
|
+
|
|
653
|
+
xt.prototype.has = Ct;
|
|
654
|
+
|
|
655
|
+
xt.prototype.set = St;
|
|
656
|
+
|
|
657
|
+
var Pt = xt;
|
|
658
|
+
|
|
659
|
+
var Mt = Pt;
|
|
660
|
+
|
|
661
|
+
function Et() {
|
|
662
|
+
this.__data__ = new Mt;
|
|
663
|
+
this.size = 0;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
var Tt = Et;
|
|
667
|
+
|
|
668
|
+
function kt(t) {
|
|
669
|
+
var r = this.__data__, e = r["delete"](t);
|
|
670
|
+
this.size = r.size;
|
|
671
|
+
return e;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
var Dt = kt;
|
|
675
|
+
|
|
676
|
+
function Lt(t) {
|
|
677
|
+
return this.__data__.get(t);
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
var Gt = Lt;
|
|
681
|
+
|
|
682
|
+
function Nt(t) {
|
|
683
|
+
return this.__data__.has(t);
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
var Ft = Nt;
|
|
687
|
+
|
|
688
|
+
var zt = typeof h == "object" && h && h.Object === Object && h;
|
|
689
|
+
|
|
690
|
+
var Ht = zt;
|
|
691
|
+
|
|
692
|
+
var Ut = Ht;
|
|
693
|
+
|
|
694
|
+
var Rt = typeof self == "object" && self && self.Object === Object && self;
|
|
695
|
+
|
|
696
|
+
var Vt = Ut || Rt || Function("return this")();
|
|
697
|
+
|
|
698
|
+
var Bt = Vt;
|
|
699
|
+
|
|
700
|
+
var Wt = Bt;
|
|
701
|
+
|
|
702
|
+
var $t = Wt.Symbol;
|
|
703
|
+
|
|
704
|
+
var qt = $t;
|
|
705
|
+
|
|
706
|
+
var Kt = qt;
|
|
707
|
+
|
|
708
|
+
var Xt = Object.prototype;
|
|
709
|
+
|
|
710
|
+
var Jt = Xt.hasOwnProperty;
|
|
711
|
+
|
|
712
|
+
var Qt = Xt.toString;
|
|
713
|
+
|
|
714
|
+
var Yt = Kt ? Kt.toStringTag : undefined;
|
|
715
|
+
|
|
716
|
+
function Zt(t) {
|
|
717
|
+
var r = Jt.call(t, Yt), e = t[Yt];
|
|
718
|
+
try {
|
|
719
|
+
t[Yt] = undefined;
|
|
720
|
+
var n = true;
|
|
721
|
+
} catch (t) {}
|
|
722
|
+
var o = Qt.call(t);
|
|
723
|
+
if (n) {
|
|
724
|
+
if (r) {
|
|
725
|
+
t[Yt] = e;
|
|
726
|
+
} else {
|
|
727
|
+
delete t[Yt];
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
return o;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
var tr = Zt;
|
|
734
|
+
|
|
735
|
+
var rr = Object.prototype;
|
|
736
|
+
|
|
737
|
+
var er = rr.toString;
|
|
738
|
+
|
|
739
|
+
function nr(t) {
|
|
740
|
+
return er.call(t);
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
var or = nr;
|
|
744
|
+
|
|
745
|
+
var ar = qt, ir = tr, sr = or;
|
|
746
|
+
|
|
747
|
+
var cr = "[object Null]", ur = "[object Undefined]";
|
|
748
|
+
|
|
749
|
+
var pr = ar ? ar.toStringTag : undefined;
|
|
750
|
+
|
|
751
|
+
function lr(t) {
|
|
752
|
+
if (t == null) {
|
|
753
|
+
return t === undefined ? ur : cr;
|
|
754
|
+
}
|
|
755
|
+
return pr && pr in Object(t) ? ir(t) : sr(t);
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
var fr = lr;
|
|
759
|
+
|
|
760
|
+
function vr(t) {
|
|
761
|
+
var r = typeof t;
|
|
762
|
+
return t != null && (r == "object" || r == "function");
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
var hr = vr;
|
|
766
|
+
|
|
767
|
+
var mr = fr, dr = hr;
|
|
768
|
+
|
|
769
|
+
var yr = "[object AsyncFunction]", br = "[object Function]", jr = "[object GeneratorFunction]", gr = "[object Proxy]";
|
|
770
|
+
|
|
771
|
+
function Ar(t) {
|
|
772
|
+
if (!dr(t)) {
|
|
773
|
+
return false;
|
|
774
|
+
}
|
|
775
|
+
var r = mr(t);
|
|
776
|
+
return r == br || r == jr || r == yr || r == gr;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
var wr = Ar;
|
|
780
|
+
|
|
781
|
+
var _r = Bt;
|
|
782
|
+
|
|
783
|
+
var Ir = _r["__core-js_shared__"];
|
|
784
|
+
|
|
785
|
+
var Or = Ir;
|
|
786
|
+
|
|
787
|
+
var Cr = Or;
|
|
788
|
+
|
|
789
|
+
var Sr = function() {
|
|
790
|
+
var t = /[^.]+$/.exec(Cr && Cr.keys && Cr.keys.IE_PROTO || "");
|
|
791
|
+
return t ? "Symbol(src)_1." + t : "";
|
|
792
|
+
}();
|
|
793
|
+
|
|
794
|
+
function xr(t) {
|
|
795
|
+
return !!Sr && Sr in t;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
var Pr = xr;
|
|
799
|
+
|
|
800
|
+
var Mr = Function.prototype;
|
|
801
|
+
|
|
802
|
+
var Er = Mr.toString;
|
|
803
|
+
|
|
804
|
+
function Tr(t) {
|
|
805
|
+
if (t != null) {
|
|
806
|
+
try {
|
|
807
|
+
return Er.call(t);
|
|
808
|
+
} catch (t) {}
|
|
809
|
+
try {
|
|
810
|
+
return t + "";
|
|
811
|
+
} catch (t) {}
|
|
812
|
+
}
|
|
813
|
+
return "";
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
var kr = Tr;
|
|
817
|
+
|
|
818
|
+
var Dr = wr, Lr = Pr, Gr = hr, Nr = kr;
|
|
819
|
+
|
|
820
|
+
var Fr = /[\\^$.*+?()[\]{}|]/g;
|
|
821
|
+
|
|
822
|
+
var zr = /^\[object .+?Constructor\]$/;
|
|
823
|
+
|
|
824
|
+
var Hr = Function.prototype, Ur = Object.prototype;
|
|
825
|
+
|
|
826
|
+
var Rr = Hr.toString;
|
|
827
|
+
|
|
828
|
+
var Vr = Ur.hasOwnProperty;
|
|
829
|
+
|
|
830
|
+
var Br = RegExp("^" + Rr.call(Vr).replace(Fr, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$");
|
|
831
|
+
|
|
832
|
+
function Wr(t) {
|
|
833
|
+
if (!Gr(t) || Lr(t)) {
|
|
834
|
+
return false;
|
|
835
|
+
}
|
|
836
|
+
var r = Dr(t) ? Br : zr;
|
|
837
|
+
return r.test(Nr(t));
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
var $r = Wr;
|
|
841
|
+
|
|
842
|
+
function qr(t, r) {
|
|
843
|
+
return t == null ? undefined : t[r];
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
var Kr = qr;
|
|
847
|
+
|
|
848
|
+
var Xr = $r, Jr = Kr;
|
|
849
|
+
|
|
850
|
+
function Qr(t, r) {
|
|
851
|
+
var e = Jr(t, r);
|
|
852
|
+
return Xr(e) ? e : undefined;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
var Yr = Qr;
|
|
856
|
+
|
|
857
|
+
var Zr = Yr, te = Bt;
|
|
858
|
+
|
|
859
|
+
var re = Zr(te, "Map");
|
|
860
|
+
|
|
861
|
+
var ee = re;
|
|
862
|
+
|
|
863
|
+
var ne = Yr;
|
|
864
|
+
|
|
865
|
+
var oe = ne(Object, "create");
|
|
866
|
+
|
|
867
|
+
var ae = oe;
|
|
868
|
+
|
|
869
|
+
var ie = ae;
|
|
870
|
+
|
|
871
|
+
function se() {
|
|
872
|
+
this.__data__ = ie ? ie(null) : {};
|
|
873
|
+
this.size = 0;
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
var ce = se;
|
|
877
|
+
|
|
878
|
+
function ue(t) {
|
|
879
|
+
var r = this.has(t) && delete this.__data__[t];
|
|
880
|
+
this.size -= r ? 1 : 0;
|
|
881
|
+
return r;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
var pe = ue;
|
|
885
|
+
|
|
886
|
+
var le = ae;
|
|
887
|
+
|
|
888
|
+
var fe = "__lodash_hash_undefined__";
|
|
889
|
+
|
|
890
|
+
var ve = Object.prototype;
|
|
891
|
+
|
|
892
|
+
var he = ve.hasOwnProperty;
|
|
893
|
+
|
|
894
|
+
function me(t) {
|
|
895
|
+
var r = this.__data__;
|
|
896
|
+
if (le) {
|
|
897
|
+
var e = r[t];
|
|
898
|
+
return e === fe ? undefined : e;
|
|
899
|
+
}
|
|
900
|
+
return he.call(r, t) ? r[t] : undefined;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
var de = me;
|
|
904
|
+
|
|
905
|
+
var ye = ae;
|
|
906
|
+
|
|
907
|
+
var be = Object.prototype;
|
|
908
|
+
|
|
909
|
+
var je = be.hasOwnProperty;
|
|
910
|
+
|
|
911
|
+
function ge(t) {
|
|
912
|
+
var r = this.__data__;
|
|
913
|
+
return ye ? r[t] !== undefined : je.call(r, t);
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
var Ae = ge;
|
|
917
|
+
|
|
918
|
+
var we = ae;
|
|
919
|
+
|
|
920
|
+
var _e = "__lodash_hash_undefined__";
|
|
921
|
+
|
|
922
|
+
function Ie(t, r) {
|
|
923
|
+
var e = this.__data__;
|
|
924
|
+
this.size += this.has(t) ? 0 : 1;
|
|
925
|
+
e[t] = we && r === undefined ? _e : r;
|
|
926
|
+
return this;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
var Oe = Ie;
|
|
930
|
+
|
|
931
|
+
var Ce = ce, Se = pe, xe = de, Pe = Ae, Me = Oe;
|
|
932
|
+
|
|
933
|
+
function Ee(t) {
|
|
934
|
+
var r = -1, e = t == null ? 0 : t.length;
|
|
935
|
+
this.clear();
|
|
936
|
+
while (++r < e) {
|
|
937
|
+
var n = t[r];
|
|
938
|
+
this.set(n[0], n[1]);
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
Ee.prototype.clear = Ce;
|
|
943
|
+
|
|
944
|
+
Ee.prototype["delete"] = Se;
|
|
945
|
+
|
|
946
|
+
Ee.prototype.get = xe;
|
|
947
|
+
|
|
948
|
+
Ee.prototype.has = Pe;
|
|
949
|
+
|
|
950
|
+
Ee.prototype.set = Me;
|
|
951
|
+
|
|
952
|
+
var Te = Ee;
|
|
953
|
+
|
|
954
|
+
var ke = Te, De = Pt, Le = ee;
|
|
955
|
+
|
|
956
|
+
function Ge() {
|
|
957
|
+
this.size = 0;
|
|
958
|
+
this.__data__ = {
|
|
959
|
+
hash: new ke,
|
|
960
|
+
map: new (Le || De),
|
|
961
|
+
string: new ke
|
|
962
|
+
};
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
var Ne = Ge;
|
|
966
|
+
|
|
967
|
+
function Fe(t) {
|
|
968
|
+
var r = typeof t;
|
|
969
|
+
return r == "string" || r == "number" || r == "symbol" || r == "boolean" ? t !== "__proto__" : t === null;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
var ze = Fe;
|
|
973
|
+
|
|
974
|
+
var He = ze;
|
|
975
|
+
|
|
976
|
+
function Ue(t, r) {
|
|
977
|
+
var e = t.__data__;
|
|
978
|
+
return He(r) ? e[typeof r == "string" ? "string" : "hash"] : e.map;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
var Re = Ue;
|
|
982
|
+
|
|
983
|
+
var Ve = Re;
|
|
984
|
+
|
|
985
|
+
function Be(t) {
|
|
986
|
+
var r = Ve(this, t)["delete"](t);
|
|
987
|
+
this.size -= r ? 1 : 0;
|
|
988
|
+
return r;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
var We = Be;
|
|
992
|
+
|
|
993
|
+
var $e = Re;
|
|
994
|
+
|
|
995
|
+
function qe(t) {
|
|
996
|
+
return $e(this, t).get(t);
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
var Ke = qe;
|
|
1000
|
+
|
|
1001
|
+
var Xe = Re;
|
|
1002
|
+
|
|
1003
|
+
function Je(t) {
|
|
1004
|
+
return Xe(this, t).has(t);
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
var Qe = Je;
|
|
1008
|
+
|
|
1009
|
+
var Ye = Re;
|
|
1010
|
+
|
|
1011
|
+
function Ze(t, r) {
|
|
1012
|
+
var e = Ye(this, t), n = e.size;
|
|
1013
|
+
e.set(t, r);
|
|
1014
|
+
this.size += e.size == n ? 0 : 1;
|
|
1015
|
+
return this;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
var tn = Ze;
|
|
1019
|
+
|
|
1020
|
+
var rn = Ne, en = We, nn = Ke, on = Qe, an = tn;
|
|
1021
|
+
|
|
1022
|
+
function sn(t) {
|
|
1023
|
+
var r = -1, e = t == null ? 0 : t.length;
|
|
1024
|
+
this.clear();
|
|
1025
|
+
while (++r < e) {
|
|
1026
|
+
var n = t[r];
|
|
1027
|
+
this.set(n[0], n[1]);
|
|
1028
|
+
}
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
sn.prototype.clear = rn;
|
|
1032
|
+
|
|
1033
|
+
sn.prototype["delete"] = en;
|
|
1034
|
+
|
|
1035
|
+
sn.prototype.get = nn;
|
|
1036
|
+
|
|
1037
|
+
sn.prototype.has = on;
|
|
1038
|
+
|
|
1039
|
+
sn.prototype.set = an;
|
|
1040
|
+
|
|
1041
|
+
var cn = sn;
|
|
1042
|
+
|
|
1043
|
+
var un = Pt, pn = ee, ln = cn;
|
|
1044
|
+
|
|
1045
|
+
var fn = 200;
|
|
1046
|
+
|
|
1047
|
+
function vn(t, r) {
|
|
1048
|
+
var e = this.__data__;
|
|
1049
|
+
if (e instanceof un) {
|
|
1050
|
+
var n = e.__data__;
|
|
1051
|
+
if (!pn || n.length < fn - 1) {
|
|
1052
|
+
n.push([ t, r ]);
|
|
1053
|
+
this.size = ++e.size;
|
|
1054
|
+
return this;
|
|
1055
|
+
}
|
|
1056
|
+
e = this.__data__ = new ln(n);
|
|
1057
|
+
}
|
|
1058
|
+
e.set(t, r);
|
|
1059
|
+
this.size = e.size;
|
|
1060
|
+
return this;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
var hn = vn;
|
|
1064
|
+
|
|
1065
|
+
var mn = Pt, dn = Tt, yn = Dt, bn = Gt, jn = Ft, gn = hn;
|
|
1066
|
+
|
|
1067
|
+
function An(t) {
|
|
1068
|
+
var r = this.__data__ = new mn(t);
|
|
1069
|
+
this.size = r.size;
|
|
1070
|
+
}
|
|
31
1071
|
|
|
32
|
-
|
|
1072
|
+
An.prototype.clear = dn;
|
|
33
1073
|
|
|
34
|
-
|
|
1074
|
+
An.prototype["delete"] = yn;
|
|
35
1075
|
|
|
36
|
-
|
|
1076
|
+
An.prototype.get = bn;
|
|
37
1077
|
|
|
38
|
-
|
|
1078
|
+
An.prototype.has = jn;
|
|
39
1079
|
|
|
40
|
-
|
|
1080
|
+
An.prototype.set = gn;
|
|
41
1081
|
|
|
42
|
-
|
|
1082
|
+
var wn = An;
|
|
43
1083
|
|
|
44
|
-
|
|
1084
|
+
function _n(t, r) {
|
|
1085
|
+
var e = -1, n = t == null ? 0 : t.length;
|
|
1086
|
+
while (++e < n) {
|
|
1087
|
+
if (r(t[e], e, t) === false) {
|
|
1088
|
+
break;
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
return t;
|
|
1092
|
+
}
|
|
45
1093
|
|
|
46
|
-
|
|
1094
|
+
var In = _n;
|
|
47
1095
|
|
|
48
|
-
|
|
1096
|
+
var On = Yr;
|
|
49
1097
|
|
|
50
|
-
|
|
1098
|
+
var Cn = function() {
|
|
1099
|
+
try {
|
|
1100
|
+
var t = On(Object, "defineProperty");
|
|
1101
|
+
t({}, "", {});
|
|
1102
|
+
return t;
|
|
1103
|
+
} catch (t) {}
|
|
1104
|
+
}();
|
|
51
1105
|
|
|
52
|
-
|
|
1106
|
+
var Sn = Cn;
|
|
53
1107
|
|
|
54
|
-
|
|
1108
|
+
var xn = Sn;
|
|
55
1109
|
|
|
56
|
-
|
|
1110
|
+
function Pn(t, r, e) {
|
|
1111
|
+
if (r == "__proto__" && xn) {
|
|
1112
|
+
xn(t, r, {
|
|
1113
|
+
configurable: true,
|
|
1114
|
+
enumerable: true,
|
|
1115
|
+
value: e,
|
|
1116
|
+
writable: true
|
|
1117
|
+
});
|
|
1118
|
+
} else {
|
|
1119
|
+
t[r] = e;
|
|
1120
|
+
}
|
|
1121
|
+
}
|
|
57
1122
|
|
|
58
|
-
|
|
1123
|
+
var Mn = Pn;
|
|
59
1124
|
|
|
60
|
-
|
|
1125
|
+
var En = Mn, Tn = at;
|
|
61
1126
|
|
|
62
|
-
|
|
1127
|
+
var kn = Object.prototype;
|
|
63
1128
|
|
|
64
|
-
|
|
1129
|
+
var Dn = kn.hasOwnProperty;
|
|
65
1130
|
|
|
66
|
-
|
|
1131
|
+
function Ln(t, r, e) {
|
|
1132
|
+
var n = t[r];
|
|
1133
|
+
if (!(Dn.call(t, r) && Tn(n, e)) || e === undefined && !(r in t)) {
|
|
1134
|
+
En(t, r, e);
|
|
1135
|
+
}
|
|
1136
|
+
}
|
|
67
1137
|
|
|
68
|
-
|
|
1138
|
+
var Gn = Ln;
|
|
69
1139
|
|
|
70
|
-
|
|
1140
|
+
var Nn = Gn, Fn = Mn;
|
|
71
1141
|
|
|
72
|
-
|
|
1142
|
+
function zn(t, r, e, n) {
|
|
1143
|
+
var o = !e;
|
|
1144
|
+
e || (e = {});
|
|
1145
|
+
var a = -1, i = r.length;
|
|
1146
|
+
while (++a < i) {
|
|
1147
|
+
var s = r[a];
|
|
1148
|
+
var c = n ? n(e[s], t[s], s, e, t) : undefined;
|
|
1149
|
+
if (c === undefined) {
|
|
1150
|
+
c = t[s];
|
|
1151
|
+
}
|
|
1152
|
+
if (o) {
|
|
1153
|
+
Fn(e, s, c);
|
|
1154
|
+
} else {
|
|
1155
|
+
Nn(e, s, c);
|
|
1156
|
+
}
|
|
1157
|
+
}
|
|
1158
|
+
return e;
|
|
1159
|
+
}
|
|
73
1160
|
|
|
74
|
-
|
|
1161
|
+
var Hn = zn;
|
|
75
1162
|
|
|
76
|
-
|
|
1163
|
+
function Un(t, r) {
|
|
1164
|
+
var e = -1, n = Array(t);
|
|
1165
|
+
while (++e < t) {
|
|
1166
|
+
n[e] = r(e);
|
|
1167
|
+
}
|
|
1168
|
+
return n;
|
|
1169
|
+
}
|
|
77
1170
|
|
|
78
|
-
|
|
1171
|
+
var Rn = Un;
|
|
79
1172
|
|
|
80
|
-
|
|
1173
|
+
function Vn(t) {
|
|
1174
|
+
return t != null && typeof t == "object";
|
|
1175
|
+
}
|
|
81
1176
|
|
|
82
|
-
|
|
1177
|
+
var Bn = Vn;
|
|
83
1178
|
|
|
84
|
-
|
|
1179
|
+
var Wn = fr, $n = Bn;
|
|
85
1180
|
|
|
86
|
-
|
|
1181
|
+
var qn = "[object Arguments]";
|
|
87
1182
|
|
|
88
|
-
|
|
1183
|
+
function Kn(t) {
|
|
1184
|
+
return $n(t) && Wn(t) == qn;
|
|
1185
|
+
}
|
|
89
1186
|
|
|
90
|
-
|
|
1187
|
+
var Xn = Kn;
|
|
91
1188
|
|
|
92
|
-
|
|
1189
|
+
var Jn = Xn, Qn = Bn;
|
|
93
1190
|
|
|
94
|
-
|
|
1191
|
+
var Yn = Object.prototype;
|
|
95
1192
|
|
|
96
|
-
|
|
1193
|
+
var Zn = Yn.hasOwnProperty;
|
|
97
1194
|
|
|
98
|
-
|
|
1195
|
+
var to = Yn.propertyIsEnumerable;
|
|
99
1196
|
|
|
100
|
-
|
|
1197
|
+
var ro = Jn(function() {
|
|
1198
|
+
return arguments;
|
|
1199
|
+
}()) ? Jn : function(t) {
|
|
1200
|
+
return Qn(t) && Zn.call(t, "callee") && !to.call(t, "callee");
|
|
1201
|
+
};
|
|
101
1202
|
|
|
102
|
-
|
|
1203
|
+
var eo = ro;
|
|
103
1204
|
|
|
104
|
-
|
|
1205
|
+
var no = Array.isArray;
|
|
105
1206
|
|
|
106
|
-
|
|
1207
|
+
var oo = no;
|
|
107
1208
|
|
|
108
|
-
|
|
1209
|
+
var ao = {
|
|
1210
|
+
exports: {}
|
|
1211
|
+
};
|
|
109
1212
|
|
|
110
|
-
|
|
1213
|
+
function io() {
|
|
1214
|
+
return false;
|
|
1215
|
+
}
|
|
111
1216
|
|
|
112
|
-
|
|
1217
|
+
var so = io;
|
|
113
1218
|
|
|
114
|
-
|
|
1219
|
+
ao.exports;
|
|
115
1220
|
|
|
116
|
-
|
|
1221
|
+
(function(t, r) {
|
|
1222
|
+
var e = Bt, n = so;
|
|
1223
|
+
var o = r && !r.nodeType && r;
|
|
1224
|
+
var a = o && "object" == "object" && t && !t.nodeType && t;
|
|
1225
|
+
var i = a && a.exports === o;
|
|
1226
|
+
var s = i ? e.Buffer : undefined;
|
|
1227
|
+
var c = s ? s.isBuffer : undefined;
|
|
1228
|
+
var u = c || n;
|
|
1229
|
+
t.exports = u;
|
|
1230
|
+
})(ao, ao.exports);
|
|
117
1231
|
|
|
118
|
-
|
|
1232
|
+
var co = ao.exports;
|
|
119
1233
|
|
|
120
|
-
|
|
1234
|
+
var uo = 9007199254740991;
|
|
121
1235
|
|
|
122
|
-
|
|
1236
|
+
var po = /^(?:0|[1-9]\d*)$/;
|
|
123
1237
|
|
|
124
|
-
|
|
1238
|
+
function lo(t, r) {
|
|
1239
|
+
var e = typeof t;
|
|
1240
|
+
r = r == null ? uo : r;
|
|
1241
|
+
return !!r && (e == "number" || e != "symbol" && po.test(t)) && (t > -1 && t % 1 == 0 && t < r);
|
|
1242
|
+
}
|
|
125
1243
|
|
|
126
|
-
|
|
1244
|
+
var fo = lo;
|
|
127
1245
|
|
|
128
|
-
|
|
1246
|
+
var vo = 9007199254740991;
|
|
129
1247
|
|
|
130
|
-
|
|
1248
|
+
function ho(t) {
|
|
1249
|
+
return typeof t == "number" && t > -1 && t % 1 == 0 && t <= vo;
|
|
1250
|
+
}
|
|
131
1251
|
|
|
132
|
-
|
|
1252
|
+
var mo = ho;
|
|
133
1253
|
|
|
134
|
-
|
|
1254
|
+
var yo = fr, bo = mo, jo = Bn;
|
|
135
1255
|
|
|
136
|
-
|
|
1256
|
+
var go = "[object Arguments]", Ao = "[object Array]", wo = "[object Boolean]", _o = "[object Date]", Io = "[object Error]", Oo = "[object Function]", Co = "[object Map]", So = "[object Number]", xo = "[object Object]", Po = "[object RegExp]", Mo = "[object Set]", Eo = "[object String]", To = "[object WeakMap]";
|
|
137
1257
|
|
|
138
|
-
|
|
1258
|
+
var ko = "[object ArrayBuffer]", Do = "[object DataView]", Lo = "[object Float32Array]", Go = "[object Float64Array]", No = "[object Int8Array]", Fo = "[object Int16Array]", zo = "[object Int32Array]", Ho = "[object Uint8Array]", Uo = "[object Uint8ClampedArray]", Ro = "[object Uint16Array]", Vo = "[object Uint32Array]";
|
|
139
1259
|
|
|
140
|
-
|
|
1260
|
+
var Bo = {};
|
|
141
1261
|
|
|
142
|
-
|
|
1262
|
+
Bo[Lo] = Bo[Go] = Bo[No] = Bo[Fo] = Bo[zo] = Bo[Ho] = Bo[Uo] = Bo[Ro] = Bo[Vo] = true;
|
|
143
1263
|
|
|
144
|
-
|
|
1264
|
+
Bo[go] = Bo[Ao] = Bo[ko] = Bo[wo] = Bo[Do] = Bo[_o] = Bo[Io] = Bo[Oo] = Bo[Co] = Bo[So] = Bo[xo] = Bo[Po] = Bo[Mo] = Bo[Eo] = Bo[To] = false;
|
|
145
1265
|
|
|
146
|
-
|
|
1266
|
+
function Wo(t) {
|
|
1267
|
+
return jo(t) && bo(t.length) && !!Bo[yo(t)];
|
|
1268
|
+
}
|
|
147
1269
|
|
|
148
|
-
|
|
1270
|
+
var $o = Wo;
|
|
149
1271
|
|
|
150
|
-
|
|
1272
|
+
function qo(t) {
|
|
1273
|
+
return function(r) {
|
|
1274
|
+
return t(r);
|
|
1275
|
+
};
|
|
1276
|
+
}
|
|
151
1277
|
|
|
152
|
-
|
|
1278
|
+
var Ko = qo;
|
|
153
1279
|
|
|
154
|
-
|
|
1280
|
+
var Xo = {
|
|
1281
|
+
exports: {}
|
|
1282
|
+
};
|
|
155
1283
|
|
|
156
|
-
|
|
1284
|
+
Xo.exports;
|
|
157
1285
|
|
|
158
|
-
|
|
1286
|
+
(function(t, r) {
|
|
1287
|
+
var e = Ht;
|
|
1288
|
+
var n = r && !r.nodeType && r;
|
|
1289
|
+
var o = n && "object" == "object" && t && !t.nodeType && t;
|
|
1290
|
+
var a = o && o.exports === n;
|
|
1291
|
+
var i = a && e.process;
|
|
1292
|
+
var s = function() {
|
|
1293
|
+
try {
|
|
1294
|
+
var t = o && o.require && o.require("util").types;
|
|
1295
|
+
if (t) {
|
|
1296
|
+
return t;
|
|
1297
|
+
}
|
|
1298
|
+
return i && i.binding && i.binding("util");
|
|
1299
|
+
} catch (t) {}
|
|
1300
|
+
}();
|
|
1301
|
+
t.exports = s;
|
|
1302
|
+
})(Xo, Xo.exports);
|
|
159
1303
|
|
|
160
|
-
|
|
1304
|
+
var Jo = Xo.exports;
|
|
161
1305
|
|
|
162
|
-
|
|
1306
|
+
var Qo = $o, Yo = Ko, Zo = Jo;
|
|
163
1307
|
|
|
164
|
-
|
|
1308
|
+
var ta = Zo && Zo.isTypedArray;
|
|
165
1309
|
|
|
166
|
-
|
|
1310
|
+
var ra = ta ? Yo(ta) : Qo;
|
|
167
1311
|
|
|
168
|
-
|
|
1312
|
+
var ea = ra;
|
|
169
1313
|
|
|
170
|
-
|
|
1314
|
+
var na = Rn, oa = eo, aa = oo, ia = co, sa = fo, ca = ea;
|
|
171
1315
|
|
|
172
|
-
|
|
1316
|
+
var ua = Object.prototype;
|
|
173
1317
|
|
|
174
|
-
|
|
1318
|
+
var pa = ua.hasOwnProperty;
|
|
175
1319
|
|
|
176
|
-
|
|
1320
|
+
function la(t, r) {
|
|
1321
|
+
var e = aa(t), n = !e && oa(t), o = !e && !n && ia(t), a = !e && !n && !o && ca(t), i = e || n || o || a, s = i ? na(t.length, String) : [], c = s.length;
|
|
1322
|
+
for (var u in t) {
|
|
1323
|
+
if ((r || pa.call(t, u)) && !(i && (u == "length" || o && (u == "offset" || u == "parent") || a && (u == "buffer" || u == "byteLength" || u == "byteOffset") || sa(u, c)))) {
|
|
1324
|
+
s.push(u);
|
|
1325
|
+
}
|
|
1326
|
+
}
|
|
1327
|
+
return s;
|
|
1328
|
+
}
|
|
177
1329
|
|
|
178
|
-
|
|
1330
|
+
var fa = la;
|
|
179
1331
|
|
|
180
|
-
|
|
1332
|
+
var va = Object.prototype;
|
|
181
1333
|
|
|
182
|
-
|
|
1334
|
+
function ha(t) {
|
|
1335
|
+
var r = t && t.constructor, e = typeof r == "function" && r.prototype || va;
|
|
1336
|
+
return t === e;
|
|
1337
|
+
}
|
|
183
1338
|
|
|
184
|
-
|
|
1339
|
+
var ma = ha;
|
|
185
1340
|
|
|
186
|
-
|
|
1341
|
+
function da(t, r) {
|
|
1342
|
+
return function(e) {
|
|
1343
|
+
return t(r(e));
|
|
1344
|
+
};
|
|
1345
|
+
}
|
|
187
1346
|
|
|
188
|
-
|
|
1347
|
+
var ya = da;
|
|
189
1348
|
|
|
190
|
-
|
|
1349
|
+
var ba = ya;
|
|
191
1350
|
|
|
192
|
-
|
|
1351
|
+
var ja = ba(Object.keys, Object);
|
|
193
1352
|
|
|
194
|
-
|
|
1353
|
+
var ga = ja;
|
|
195
1354
|
|
|
196
|
-
|
|
1355
|
+
var Aa = ma, wa = ga;
|
|
197
1356
|
|
|
198
|
-
|
|
1357
|
+
var _a = Object.prototype;
|
|
199
1358
|
|
|
200
|
-
|
|
1359
|
+
var Ia = _a.hasOwnProperty;
|
|
201
1360
|
|
|
202
|
-
|
|
1361
|
+
function Oa(t) {
|
|
1362
|
+
if (!Aa(t)) {
|
|
1363
|
+
return wa(t);
|
|
1364
|
+
}
|
|
1365
|
+
var r = [];
|
|
1366
|
+
for (var e in Object(t)) {
|
|
1367
|
+
if (Ia.call(t, e) && e != "constructor") {
|
|
1368
|
+
r.push(e);
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
return r;
|
|
1372
|
+
}
|
|
203
1373
|
|
|
204
|
-
|
|
1374
|
+
var Ca = Oa;
|
|
205
1375
|
|
|
206
|
-
|
|
1376
|
+
var Sa = wr, xa = mo;
|
|
207
1377
|
|
|
208
|
-
|
|
1378
|
+
function Pa(t) {
|
|
1379
|
+
return t != null && xa(t.length) && !Sa(t);
|
|
1380
|
+
}
|
|
209
1381
|
|
|
210
|
-
|
|
1382
|
+
var Ma = Pa;
|
|
211
1383
|
|
|
212
|
-
|
|
1384
|
+
var Ea = fa, Ta = Ca, ka = Ma;
|
|
213
1385
|
|
|
214
|
-
|
|
1386
|
+
function Da(t) {
|
|
1387
|
+
return ka(t) ? Ea(t) : Ta(t);
|
|
1388
|
+
}
|
|
215
1389
|
|
|
216
|
-
|
|
1390
|
+
var La = Da;
|
|
217
1391
|
|
|
218
|
-
|
|
1392
|
+
var Ga = Hn, Na = La;
|
|
219
1393
|
|
|
220
|
-
|
|
1394
|
+
function Fa(t, r) {
|
|
1395
|
+
return t && Ga(r, Na(r), t);
|
|
1396
|
+
}
|
|
221
1397
|
|
|
222
|
-
|
|
1398
|
+
var za = Fa;
|
|
223
1399
|
|
|
224
|
-
|
|
1400
|
+
function Ha(t) {
|
|
1401
|
+
var r = [];
|
|
1402
|
+
if (t != null) {
|
|
1403
|
+
for (var e in Object(t)) {
|
|
1404
|
+
r.push(e);
|
|
1405
|
+
}
|
|
1406
|
+
}
|
|
1407
|
+
return r;
|
|
1408
|
+
}
|
|
225
1409
|
|
|
226
|
-
|
|
1410
|
+
var Ua = Ha;
|
|
227
1411
|
|
|
228
|
-
|
|
1412
|
+
var Ra = hr, Va = ma, Ba = Ua;
|
|
229
1413
|
|
|
230
|
-
|
|
1414
|
+
var Wa = Object.prototype;
|
|
231
1415
|
|
|
232
|
-
|
|
1416
|
+
var $a = Wa.hasOwnProperty;
|
|
233
1417
|
|
|
234
|
-
|
|
1418
|
+
function qa(t) {
|
|
1419
|
+
if (!Ra(t)) {
|
|
1420
|
+
return Ba(t);
|
|
1421
|
+
}
|
|
1422
|
+
var r = Va(t), e = [];
|
|
1423
|
+
for (var n in t) {
|
|
1424
|
+
if (!(n == "constructor" && (r || !$a.call(t, n)))) {
|
|
1425
|
+
e.push(n);
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
return e;
|
|
1429
|
+
}
|
|
235
1430
|
|
|
236
|
-
|
|
1431
|
+
var Ka = qa;
|
|
237
1432
|
|
|
238
|
-
|
|
1433
|
+
var Xa = fa, Ja = Ka, Qa = Ma;
|
|
239
1434
|
|
|
240
|
-
|
|
1435
|
+
function Ya(t) {
|
|
1436
|
+
return Qa(t) ? Xa(t, true) : Ja(t);
|
|
1437
|
+
}
|
|
241
1438
|
|
|
242
|
-
|
|
1439
|
+
var Za = Ya;
|
|
243
1440
|
|
|
244
|
-
|
|
1441
|
+
var ti = Hn, ri = Za;
|
|
245
1442
|
|
|
246
|
-
|
|
1443
|
+
function ei(t, r) {
|
|
1444
|
+
return t && ti(r, ri(r), t);
|
|
1445
|
+
}
|
|
247
1446
|
|
|
248
|
-
|
|
1447
|
+
var ni = ei;
|
|
249
1448
|
|
|
250
|
-
|
|
1449
|
+
var oi = {
|
|
1450
|
+
exports: {}
|
|
1451
|
+
};
|
|
251
1452
|
|
|
252
|
-
|
|
1453
|
+
oi.exports;
|
|
1454
|
+
|
|
1455
|
+
(function(t, r) {
|
|
1456
|
+
var e = Bt;
|
|
1457
|
+
var n = r && !r.nodeType && r;
|
|
1458
|
+
var o = n && "object" == "object" && t && !t.nodeType && t;
|
|
1459
|
+
var a = o && o.exports === n;
|
|
1460
|
+
var i = a ? e.Buffer : undefined, s = i ? i.allocUnsafe : undefined;
|
|
1461
|
+
function c(t, r) {
|
|
1462
|
+
if (r) {
|
|
1463
|
+
return t.slice();
|
|
1464
|
+
}
|
|
1465
|
+
var e = t.length, n = s ? s(e) : new t.constructor(e);
|
|
1466
|
+
t.copy(n);
|
|
1467
|
+
return n;
|
|
1468
|
+
}
|
|
1469
|
+
t.exports = c;
|
|
1470
|
+
})(oi, oi.exports);
|
|
1471
|
+
|
|
1472
|
+
var ai = oi.exports;
|
|
1473
|
+
|
|
1474
|
+
function ii(t, r) {
|
|
1475
|
+
var e = -1, n = t.length;
|
|
1476
|
+
r || (r = Array(n));
|
|
1477
|
+
while (++e < n) {
|
|
1478
|
+
r[e] = t[e];
|
|
1479
|
+
}
|
|
1480
|
+
return r;
|
|
1481
|
+
}
|
|
253
1482
|
|
|
254
|
-
|
|
1483
|
+
var si = ii;
|
|
255
1484
|
|
|
256
|
-
|
|
1485
|
+
function ci(t, r) {
|
|
1486
|
+
var e = -1, n = t == null ? 0 : t.length, o = 0, a = [];
|
|
1487
|
+
while (++e < n) {
|
|
1488
|
+
var i = t[e];
|
|
1489
|
+
if (r(i, e, t)) {
|
|
1490
|
+
a[o++] = i;
|
|
1491
|
+
}
|
|
1492
|
+
}
|
|
1493
|
+
return a;
|
|
1494
|
+
}
|
|
257
1495
|
|
|
258
|
-
|
|
1496
|
+
var ui = ci;
|
|
259
1497
|
|
|
260
|
-
|
|
1498
|
+
function pi() {
|
|
1499
|
+
return [];
|
|
1500
|
+
}
|
|
261
1501
|
|
|
262
|
-
|
|
1502
|
+
var li = pi;
|
|
263
1503
|
|
|
264
|
-
|
|
1504
|
+
var fi = ui, vi = li;
|
|
265
1505
|
|
|
266
|
-
|
|
1506
|
+
var hi = Object.prototype;
|
|
267
1507
|
|
|
268
|
-
|
|
1508
|
+
var mi = hi.propertyIsEnumerable;
|
|
269
1509
|
|
|
270
|
-
|
|
1510
|
+
var di = Object.getOwnPropertySymbols;
|
|
1511
|
+
|
|
1512
|
+
var yi = !di ? vi : function(t) {
|
|
1513
|
+
if (t == null) {
|
|
1514
|
+
return [];
|
|
1515
|
+
}
|
|
1516
|
+
t = Object(t);
|
|
1517
|
+
return fi(di(t), function(r) {
|
|
1518
|
+
return mi.call(t, r);
|
|
1519
|
+
});
|
|
1520
|
+
};
|
|
271
1521
|
|
|
272
|
-
|
|
1522
|
+
var bi = yi;
|
|
273
1523
|
|
|
274
|
-
|
|
1524
|
+
var ji = Hn, gi = bi;
|
|
275
1525
|
|
|
276
|
-
|
|
1526
|
+
function Ai(t, r) {
|
|
1527
|
+
return ji(t, gi(t), r);
|
|
1528
|
+
}
|
|
277
1529
|
|
|
278
|
-
|
|
1530
|
+
var wi = Ai;
|
|
279
1531
|
|
|
280
|
-
|
|
1532
|
+
function _i(t, r) {
|
|
1533
|
+
var e = -1, n = r.length, o = t.length;
|
|
1534
|
+
while (++e < n) {
|
|
1535
|
+
t[o + e] = r[e];
|
|
1536
|
+
}
|
|
1537
|
+
return t;
|
|
1538
|
+
}
|
|
281
1539
|
|
|
282
|
-
|
|
1540
|
+
var Ii = _i;
|
|
1541
|
+
|
|
1542
|
+
var Oi = ya;
|
|
1543
|
+
|
|
1544
|
+
var Ci = Oi(Object.getPrototypeOf, Object);
|
|
1545
|
+
|
|
1546
|
+
var Si = Ci;
|
|
1547
|
+
|
|
1548
|
+
var xi = Ii, Pi = Si, Mi = bi, Ei = li;
|
|
1549
|
+
|
|
1550
|
+
var Ti = Object.getOwnPropertySymbols;
|
|
1551
|
+
|
|
1552
|
+
var ki = !Ti ? Ei : function(t) {
|
|
1553
|
+
var r = [];
|
|
1554
|
+
while (t) {
|
|
1555
|
+
xi(r, Mi(t));
|
|
1556
|
+
t = Pi(t);
|
|
1557
|
+
}
|
|
1558
|
+
return r;
|
|
1559
|
+
};
|
|
1560
|
+
|
|
1561
|
+
var Di = ki;
|
|
1562
|
+
|
|
1563
|
+
var Li = Hn, Gi = Di;
|
|
1564
|
+
|
|
1565
|
+
function Ni(t, r) {
|
|
1566
|
+
return Li(t, Gi(t), r);
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
var Fi = Ni;
|
|
1570
|
+
|
|
1571
|
+
var zi = Ii, Hi = oo;
|
|
1572
|
+
|
|
1573
|
+
function Ui(t, r, e) {
|
|
1574
|
+
var n = r(t);
|
|
1575
|
+
return Hi(t) ? n : zi(n, e(t));
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
var Ri = Ui;
|
|
1579
|
+
|
|
1580
|
+
var Vi = Ri, Bi = bi, Wi = La;
|
|
283
1581
|
|
|
284
|
-
|
|
1582
|
+
function $i(t) {
|
|
1583
|
+
return Vi(t, Wi, Bi);
|
|
1584
|
+
}
|
|
285
1585
|
|
|
286
|
-
|
|
1586
|
+
var qi = $i;
|
|
287
1587
|
|
|
288
|
-
|
|
1588
|
+
var Ki = Ri, Xi = Di, Ji = Za;
|
|
289
1589
|
|
|
290
|
-
|
|
1590
|
+
function Qi(t) {
|
|
1591
|
+
return Ki(t, Ji, Xi);
|
|
1592
|
+
}
|
|
291
1593
|
|
|
292
|
-
|
|
1594
|
+
var Yi = Qi;
|
|
1595
|
+
|
|
1596
|
+
var Zi = Yr, ts = Bt;
|
|
1597
|
+
|
|
1598
|
+
var rs = Zi(ts, "DataView");
|
|
1599
|
+
|
|
1600
|
+
var es = rs;
|
|
1601
|
+
|
|
1602
|
+
var ns = Yr, os = Bt;
|
|
1603
|
+
|
|
1604
|
+
var as = ns(os, "Promise");
|
|
1605
|
+
|
|
1606
|
+
var is = as;
|
|
1607
|
+
|
|
1608
|
+
var ss = Yr, cs = Bt;
|
|
1609
|
+
|
|
1610
|
+
var us = ss(cs, "Set");
|
|
1611
|
+
|
|
1612
|
+
var ps = us;
|
|
1613
|
+
|
|
1614
|
+
var ls = Yr, fs = Bt;
|
|
1615
|
+
|
|
1616
|
+
var vs = ls(fs, "WeakMap");
|
|
1617
|
+
|
|
1618
|
+
var hs = vs;
|
|
1619
|
+
|
|
1620
|
+
var ms = es, ds = ee, ys = is, bs = ps, js = hs, gs = fr, As = kr;
|
|
1621
|
+
|
|
1622
|
+
var ws = "[object Map]", _s = "[object Object]", Is = "[object Promise]", Os = "[object Set]", Cs = "[object WeakMap]";
|
|
1623
|
+
|
|
1624
|
+
var Ss = "[object DataView]";
|
|
1625
|
+
|
|
1626
|
+
var xs = As(ms), Ps = As(ds), Ms = As(ys), Es = As(bs), Ts = As(js);
|
|
1627
|
+
|
|
1628
|
+
var ks = gs;
|
|
1629
|
+
|
|
1630
|
+
if (ms && ks(new ms(new ArrayBuffer(1))) != Ss || ds && ks(new ds) != ws || ys && ks(ys.resolve()) != Is || bs && ks(new bs) != Os || js && ks(new js) != Cs) {
|
|
1631
|
+
ks = function(t) {
|
|
1632
|
+
var r = gs(t), e = r == _s ? t.constructor : undefined, n = e ? As(e) : "";
|
|
1633
|
+
if (n) {
|
|
1634
|
+
switch (n) {
|
|
1635
|
+
case xs:
|
|
1636
|
+
return Ss;
|
|
1637
|
+
|
|
1638
|
+
case Ps:
|
|
1639
|
+
return ws;
|
|
1640
|
+
|
|
1641
|
+
case Ms:
|
|
1642
|
+
return Is;
|
|
1643
|
+
|
|
1644
|
+
case Es:
|
|
1645
|
+
return Os;
|
|
1646
|
+
|
|
1647
|
+
case Ts:
|
|
1648
|
+
return Cs;
|
|
1649
|
+
}
|
|
1650
|
+
}
|
|
1651
|
+
return r;
|
|
1652
|
+
};
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
var Ds = ks;
|
|
1656
|
+
|
|
1657
|
+
var Ls = Object.prototype;
|
|
1658
|
+
|
|
1659
|
+
var Gs = Ls.hasOwnProperty;
|
|
1660
|
+
|
|
1661
|
+
function Ns(t) {
|
|
1662
|
+
var r = t.length, e = new t.constructor(r);
|
|
1663
|
+
if (r && typeof t[0] == "string" && Gs.call(t, "index")) {
|
|
1664
|
+
e.index = t.index;
|
|
1665
|
+
e.input = t.input;
|
|
1666
|
+
}
|
|
1667
|
+
return e;
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
var Fs = Ns;
|
|
1671
|
+
|
|
1672
|
+
var zs = Bt;
|
|
1673
|
+
|
|
1674
|
+
var Hs = zs.Uint8Array;
|
|
1675
|
+
|
|
1676
|
+
var Us = Hs;
|
|
1677
|
+
|
|
1678
|
+
var Rs = Us;
|
|
1679
|
+
|
|
1680
|
+
function Vs(t) {
|
|
1681
|
+
var r = new t.constructor(t.byteLength);
|
|
1682
|
+
new Rs(r).set(new Rs(t));
|
|
1683
|
+
return r;
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
var Bs = Vs;
|
|
1687
|
+
|
|
1688
|
+
var Ws = Bs;
|
|
1689
|
+
|
|
1690
|
+
function $s(t, r) {
|
|
1691
|
+
var e = r ? Ws(t.buffer) : t.buffer;
|
|
1692
|
+
return new t.constructor(e, t.byteOffset, t.byteLength);
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
var qs = $s;
|
|
1696
|
+
|
|
1697
|
+
var Ks = /\w*$/;
|
|
1698
|
+
|
|
1699
|
+
function Xs(t) {
|
|
1700
|
+
var r = new t.constructor(t.source, Ks.exec(t));
|
|
1701
|
+
r.lastIndex = t.lastIndex;
|
|
1702
|
+
return r;
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
var Js = Xs;
|
|
1706
|
+
|
|
1707
|
+
var Qs = qt;
|
|
1708
|
+
|
|
1709
|
+
var Ys = Qs ? Qs.prototype : undefined, Zs = Ys ? Ys.valueOf : undefined;
|
|
1710
|
+
|
|
1711
|
+
function tc(t) {
|
|
1712
|
+
return Zs ? Object(Zs.call(t)) : {};
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
var rc = tc;
|
|
1716
|
+
|
|
1717
|
+
var ec = Bs;
|
|
1718
|
+
|
|
1719
|
+
function nc(t, r) {
|
|
1720
|
+
var e = r ? ec(t.buffer) : t.buffer;
|
|
1721
|
+
return new t.constructor(e, t.byteOffset, t.length);
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
var oc = nc;
|
|
1725
|
+
|
|
1726
|
+
var ac = Bs, ic = qs, sc = Js, cc = rc, uc = oc;
|
|
1727
|
+
|
|
1728
|
+
var pc = "[object Boolean]", lc = "[object Date]", fc = "[object Map]", vc = "[object Number]", hc = "[object RegExp]", mc = "[object Set]", dc = "[object String]", yc = "[object Symbol]";
|
|
1729
|
+
|
|
1730
|
+
var bc = "[object ArrayBuffer]", jc = "[object DataView]", gc = "[object Float32Array]", Ac = "[object Float64Array]", wc = "[object Int8Array]", _c = "[object Int16Array]", Ic = "[object Int32Array]", Oc = "[object Uint8Array]", Cc = "[object Uint8ClampedArray]", Sc = "[object Uint16Array]", xc = "[object Uint32Array]";
|
|
1731
|
+
|
|
1732
|
+
function Pc(t, r, e) {
|
|
1733
|
+
var n = t.constructor;
|
|
1734
|
+
switch (r) {
|
|
1735
|
+
case bc:
|
|
1736
|
+
return ac(t);
|
|
1737
|
+
|
|
1738
|
+
case pc:
|
|
1739
|
+
case lc:
|
|
1740
|
+
return new n(+t);
|
|
1741
|
+
|
|
1742
|
+
case jc:
|
|
1743
|
+
return ic(t, e);
|
|
1744
|
+
|
|
1745
|
+
case gc:
|
|
1746
|
+
case Ac:
|
|
1747
|
+
case wc:
|
|
1748
|
+
case _c:
|
|
1749
|
+
case Ic:
|
|
1750
|
+
case Oc:
|
|
1751
|
+
case Cc:
|
|
1752
|
+
case Sc:
|
|
1753
|
+
case xc:
|
|
1754
|
+
return uc(t, e);
|
|
1755
|
+
|
|
1756
|
+
case fc:
|
|
1757
|
+
return new n;
|
|
1758
|
+
|
|
1759
|
+
case vc:
|
|
1760
|
+
case dc:
|
|
1761
|
+
return new n(t);
|
|
1762
|
+
|
|
1763
|
+
case hc:
|
|
1764
|
+
return sc(t);
|
|
1765
|
+
|
|
1766
|
+
case mc:
|
|
1767
|
+
return new n;
|
|
1768
|
+
|
|
1769
|
+
case yc:
|
|
1770
|
+
return cc(t);
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
var Mc = Pc;
|
|
1775
|
+
|
|
1776
|
+
var Ec = hr;
|
|
1777
|
+
|
|
1778
|
+
var Tc = Object.create;
|
|
1779
|
+
|
|
1780
|
+
var kc = function() {
|
|
1781
|
+
function t() {}
|
|
1782
|
+
return function(r) {
|
|
1783
|
+
if (!Ec(r)) {
|
|
1784
|
+
return {};
|
|
1785
|
+
}
|
|
1786
|
+
if (Tc) {
|
|
1787
|
+
return Tc(r);
|
|
1788
|
+
}
|
|
1789
|
+
t.prototype = r;
|
|
1790
|
+
var e = new t;
|
|
1791
|
+
t.prototype = undefined;
|
|
1792
|
+
return e;
|
|
1793
|
+
};
|
|
1794
|
+
}();
|
|
1795
|
+
|
|
1796
|
+
var Dc = kc;
|
|
1797
|
+
|
|
1798
|
+
var Lc = Dc, Gc = Si, Nc = ma;
|
|
1799
|
+
|
|
1800
|
+
function Fc(t) {
|
|
1801
|
+
return typeof t.constructor == "function" && !Nc(t) ? Lc(Gc(t)) : {};
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
var zc = Fc;
|
|
1805
|
+
|
|
1806
|
+
var Hc = Ds, Uc = Bn;
|
|
1807
|
+
|
|
1808
|
+
var Rc = "[object Map]";
|
|
1809
|
+
|
|
1810
|
+
function Vc(t) {
|
|
1811
|
+
return Uc(t) && Hc(t) == Rc;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
var Bc = Vc;
|
|
1815
|
+
|
|
1816
|
+
var Wc = Bc, $c = Ko, qc = Jo;
|
|
1817
|
+
|
|
1818
|
+
var Kc = qc && qc.isMap;
|
|
1819
|
+
|
|
1820
|
+
var Xc = Kc ? $c(Kc) : Wc;
|
|
1821
|
+
|
|
1822
|
+
var Jc = Xc;
|
|
1823
|
+
|
|
1824
|
+
var Qc = Ds, Yc = Bn;
|
|
1825
|
+
|
|
1826
|
+
var Zc = "[object Set]";
|
|
1827
|
+
|
|
1828
|
+
function tu(t) {
|
|
1829
|
+
return Yc(t) && Qc(t) == Zc;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
var ru = tu;
|
|
1833
|
+
|
|
1834
|
+
var eu = ru, nu = Ko, ou = Jo;
|
|
1835
|
+
|
|
1836
|
+
var au = ou && ou.isSet;
|
|
1837
|
+
|
|
1838
|
+
var iu = au ? nu(au) : eu;
|
|
1839
|
+
|
|
1840
|
+
var su = iu;
|
|
1841
|
+
|
|
1842
|
+
var cu = wn, uu = In, pu = Gn, lu = za, fu = ni, vu = ai, hu = si, mu = wi, du = Fi, yu = qi, bu = Yi, ju = Ds, gu = Fs, Au = Mc, wu = zc, _u = oo, Iu = co, Ou = Jc, Cu = hr, Su = su, xu = La, Pu = Za;
|
|
1843
|
+
|
|
1844
|
+
var Mu = 1, Eu = 2, Tu = 4;
|
|
1845
|
+
|
|
1846
|
+
var ku = "[object Arguments]", Du = "[object Array]", Lu = "[object Boolean]", Gu = "[object Date]", Nu = "[object Error]", Fu = "[object Function]", zu = "[object GeneratorFunction]", Hu = "[object Map]", Uu = "[object Number]", Ru = "[object Object]", Vu = "[object RegExp]", Bu = "[object Set]", Wu = "[object String]", $u = "[object Symbol]", qu = "[object WeakMap]";
|
|
1847
|
+
|
|
1848
|
+
var Ku = "[object ArrayBuffer]", Xu = "[object DataView]", Ju = "[object Float32Array]", Qu = "[object Float64Array]", Yu = "[object Int8Array]", Zu = "[object Int16Array]", tp = "[object Int32Array]", rp = "[object Uint8Array]", ep = "[object Uint8ClampedArray]", np = "[object Uint16Array]", op = "[object Uint32Array]";
|
|
1849
|
+
|
|
1850
|
+
var ap = {};
|
|
1851
|
+
|
|
1852
|
+
ap[ku] = ap[Du] = ap[Ku] = ap[Xu] = ap[Lu] = ap[Gu] = ap[Ju] = ap[Qu] = ap[Yu] = ap[Zu] = ap[tp] = ap[Hu] = ap[Uu] = ap[Ru] = ap[Vu] = ap[Bu] = ap[Wu] = ap[$u] = ap[rp] = ap[ep] = ap[np] = ap[op] = true;
|
|
1853
|
+
|
|
1854
|
+
ap[Nu] = ap[Fu] = ap[qu] = false;
|
|
1855
|
+
|
|
1856
|
+
function ip(t, r, e, n, o, a) {
|
|
1857
|
+
var i, s = r & Mu, c = r & Eu, u = r & Tu;
|
|
1858
|
+
if (e) {
|
|
1859
|
+
i = o ? e(t, n, o, a) : e(t);
|
|
1860
|
+
}
|
|
1861
|
+
if (i !== undefined) {
|
|
1862
|
+
return i;
|
|
1863
|
+
}
|
|
1864
|
+
if (!Cu(t)) {
|
|
1865
|
+
return t;
|
|
1866
|
+
}
|
|
1867
|
+
var p = _u(t);
|
|
1868
|
+
if (p) {
|
|
1869
|
+
i = gu(t);
|
|
1870
|
+
if (!s) {
|
|
1871
|
+
return hu(t, i);
|
|
1872
|
+
}
|
|
1873
|
+
} else {
|
|
1874
|
+
var l = ju(t), f = l == Fu || l == zu;
|
|
1875
|
+
if (Iu(t)) {
|
|
1876
|
+
return vu(t, s);
|
|
1877
|
+
}
|
|
1878
|
+
if (l == Ru || l == ku || f && !o) {
|
|
1879
|
+
i = c || f ? {} : wu(t);
|
|
1880
|
+
if (!s) {
|
|
1881
|
+
return c ? du(t, fu(i, t)) : mu(t, lu(i, t));
|
|
1882
|
+
}
|
|
1883
|
+
} else {
|
|
1884
|
+
if (!ap[l]) {
|
|
1885
|
+
return o ? t : {};
|
|
1886
|
+
}
|
|
1887
|
+
i = Au(t, l, s);
|
|
1888
|
+
}
|
|
1889
|
+
}
|
|
1890
|
+
a || (a = new cu);
|
|
1891
|
+
var v = a.get(t);
|
|
1892
|
+
if (v) {
|
|
1893
|
+
return v;
|
|
1894
|
+
}
|
|
1895
|
+
a.set(t, i);
|
|
1896
|
+
if (Su(t)) {
|
|
1897
|
+
t.forEach(function(n) {
|
|
1898
|
+
i.add(ip(n, r, e, n, t, a));
|
|
1899
|
+
});
|
|
1900
|
+
} else if (Ou(t)) {
|
|
1901
|
+
t.forEach(function(n, o) {
|
|
1902
|
+
i.set(o, ip(n, r, e, o, t, a));
|
|
1903
|
+
});
|
|
1904
|
+
}
|
|
1905
|
+
var h = u ? c ? bu : yu : c ? Pu : xu;
|
|
1906
|
+
var m = p ? undefined : h(t);
|
|
1907
|
+
uu(m || t, function(n, o) {
|
|
1908
|
+
if (m) {
|
|
1909
|
+
o = n;
|
|
1910
|
+
n = t[o];
|
|
1911
|
+
}
|
|
1912
|
+
pu(i, o, ip(n, r, e, o, t, a));
|
|
1913
|
+
});
|
|
1914
|
+
return i;
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
var sp = ip;
|
|
1918
|
+
|
|
1919
|
+
var cp = sp;
|
|
1920
|
+
|
|
1921
|
+
var up = 1, pp = 4;
|
|
1922
|
+
|
|
1923
|
+
function lp(t) {
|
|
1924
|
+
return cp(t, up | pp);
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
var fp = lp;
|
|
1928
|
+
|
|
1929
|
+
const vp = v(fp);
|
|
1930
|
+
|
|
1931
|
+
const hp = t => t;
|
|
1932
|
+
|
|
1933
|
+
const mp = t => t;
|
|
1934
|
+
|
|
1935
|
+
const dp = t => t;
|
|
1936
|
+
|
|
1937
|
+
const yp = t => t;
|
|
1938
|
+
|
|
1939
|
+
let bp = class Entrypoint extends e {
|
|
293
1940
|
constructor() {
|
|
294
1941
|
super(...arguments);
|
|
295
1942
|
this.CLIActionPatternMap = new Map;
|
|
296
1943
|
this.HTTPActionPatternMap = new Map;
|
|
297
1944
|
this.ServiceActionPatternMap = new Map;
|
|
298
|
-
this.CLIActionPatternManager = new
|
|
299
|
-
this.HTTPActionPatternManager = new
|
|
300
|
-
this.ServiceActionPatternManager = new
|
|
1945
|
+
this.CLIActionPatternManager = new i;
|
|
1946
|
+
this.HTTPActionPatternManager = new i;
|
|
1947
|
+
this.ServiceActionPatternManager = new i;
|
|
301
1948
|
this.entrypointDestroyers = [];
|
|
302
1949
|
this.httpActionInfoMap = new Map;
|
|
303
1950
|
this.serviceActionInfoMap = new Map;
|
|
304
1951
|
this.cliActionInfoMap = new Map;
|
|
305
|
-
this.accessControl =
|
|
1952
|
+
this.accessControl = j;
|
|
306
1953
|
}
|
|
307
1954
|
async init() {
|
|
308
1955
|
await Promise.all(this.controllers.map(t => {
|
|
309
|
-
|
|
310
|
-
return new Promise((
|
|
1956
|
+
o(this, t);
|
|
1957
|
+
return new Promise((r, e) => this.container.register(t).then(r).catch(e));
|
|
311
1958
|
}));
|
|
312
|
-
const {CLI: t, HTTP:
|
|
313
|
-
t.forEach((t,
|
|
1959
|
+
const {CLI: t, HTTP: r, Service: e} = a(this);
|
|
1960
|
+
t.forEach((t, r) => {
|
|
314
1961
|
this.cliActionInfoMap.set(t.id, {
|
|
315
1962
|
id: t.id,
|
|
316
1963
|
command: t.pattern.command,
|
|
@@ -322,10 +1969,10 @@ let w = class Entrypoint extends o {
|
|
|
322
1969
|
method: t.method.toString(),
|
|
323
1970
|
jsonSchema: t.jsonSchema
|
|
324
1971
|
});
|
|
325
|
-
this.CLIActionPatternMap.set(
|
|
326
|
-
this.CLIActionPatternManager.add(
|
|
1972
|
+
this.CLIActionPatternMap.set(r, t);
|
|
1973
|
+
this.CLIActionPatternManager.add(r, t);
|
|
327
1974
|
});
|
|
328
|
-
|
|
1975
|
+
r.forEach((t, r) => {
|
|
329
1976
|
this.httpActionInfoMap.set(t.id, {
|
|
330
1977
|
id: t.id,
|
|
331
1978
|
route: t.pattern.route,
|
|
@@ -337,10 +1984,10 @@ let w = class Entrypoint extends o {
|
|
|
337
1984
|
method: t.method.toString(),
|
|
338
1985
|
jsonSchema: t.jsonSchema
|
|
339
1986
|
});
|
|
340
|
-
this.HTTPActionPatternMap.set(
|
|
341
|
-
this.HTTPActionPatternManager.add(
|
|
1987
|
+
this.HTTPActionPatternMap.set(r, t);
|
|
1988
|
+
this.HTTPActionPatternManager.add(r, t);
|
|
342
1989
|
});
|
|
343
|
-
|
|
1990
|
+
e.forEach((t, r) => {
|
|
344
1991
|
this.serviceActionInfoMap.set(t.id, {
|
|
345
1992
|
id: t.id,
|
|
346
1993
|
pattern: t.pattern,
|
|
@@ -352,41 +1999,41 @@ let w = class Entrypoint extends o {
|
|
|
352
1999
|
method: t.method.toString(),
|
|
353
2000
|
jsonSchema: t.jsonSchema
|
|
354
2001
|
});
|
|
355
|
-
this.ServiceActionPatternMap.set(
|
|
356
|
-
this.ServiceActionPatternManager.add(
|
|
2002
|
+
this.ServiceActionPatternMap.set(r, t);
|
|
2003
|
+
this.ServiceActionPatternManager.add(r, t);
|
|
357
2004
|
});
|
|
358
2005
|
this.register(this.service, t => this.registerServiceEntrypoint(t));
|
|
359
2006
|
this.register(this.cli, t => this.registerCLIEntrypoint(t));
|
|
360
2007
|
this.register(this.http, t => this.registerHTTPEntrypoint(t));
|
|
361
|
-
const
|
|
362
|
-
if (
|
|
2008
|
+
const n = this.findInvalidActionGroupIds(this.cliActionInfoMap, "cli");
|
|
2009
|
+
if (n.length) throw new w("Found {type} action groups are not defined in cliActionGroups: {groupIds}", {
|
|
363
2010
|
type: "CLI",
|
|
364
|
-
groupIds:
|
|
2011
|
+
groupIds: n
|
|
365
2012
|
});
|
|
366
|
-
const
|
|
367
|
-
if (
|
|
2013
|
+
const i = this.findInvalidActionGroupIds(this.httpActionInfoMap, "http");
|
|
2014
|
+
if (i.length) throw new w("Found {type} action groups are not defined in httpActionGroups: {groupIds}", {
|
|
368
2015
|
type: "HTTP",
|
|
369
|
-
groupIds:
|
|
2016
|
+
groupIds: i
|
|
370
2017
|
});
|
|
371
|
-
const
|
|
372
|
-
if (
|
|
2018
|
+
const s = this.findInvalidActionGroupIds(this.serviceActionInfoMap, "service");
|
|
2019
|
+
if (s.length) throw new w("Found {type} action groups are not defined in serviceActionGroups: {groupIds}", {
|
|
373
2020
|
type: "Service",
|
|
374
|
-
groupIds:
|
|
2021
|
+
groupIds: s
|
|
375
2022
|
});
|
|
376
2023
|
const c = this.findDuplicateActionNames(this.cliActionInfoMap);
|
|
377
2024
|
if (c.length) throw new b("Duplicate {type} action names found: {names}", {
|
|
378
2025
|
type: "CLI",
|
|
379
2026
|
names: c
|
|
380
2027
|
});
|
|
381
|
-
const
|
|
382
|
-
if (
|
|
2028
|
+
const u = this.findDuplicateActionNames(this.httpActionInfoMap);
|
|
2029
|
+
if (u.length) throw new b("Duplicate {type} action names found: {names}", {
|
|
383
2030
|
type: "HTTP",
|
|
384
|
-
names:
|
|
2031
|
+
names: u
|
|
385
2032
|
});
|
|
386
|
-
const
|
|
387
|
-
if (
|
|
2033
|
+
const p = this.findDuplicateActionNames(this.serviceActionInfoMap);
|
|
2034
|
+
if (p.length) throw new b("Duplicate {type} action names found: {names}", {
|
|
388
2035
|
type: "Service",
|
|
389
|
-
names:
|
|
2036
|
+
names: p
|
|
390
2037
|
});
|
|
391
2038
|
}
|
|
392
2039
|
get HTTP_ACTIONS() {
|
|
@@ -399,61 +2046,61 @@ let w = class Entrypoint extends o {
|
|
|
399
2046
|
return [ ...this.cliActionInfoMap.values() ];
|
|
400
2047
|
}
|
|
401
2048
|
async destroy() {
|
|
402
|
-
await Promise.all(this.entrypointDestroyers.map(t => new Promise((
|
|
2049
|
+
await Promise.all(this.entrypointDestroyers.map(t => new Promise((r, e) => Promise.resolve(t()).then(r).catch(e))));
|
|
403
2050
|
}
|
|
404
2051
|
getEntrypointActions(t) {
|
|
405
|
-
const
|
|
406
|
-
let
|
|
407
|
-
let
|
|
2052
|
+
const r = new Map;
|
|
2053
|
+
let e;
|
|
2054
|
+
let n;
|
|
408
2055
|
switch (t) {
|
|
409
2056
|
case "http":
|
|
410
2057
|
{
|
|
411
|
-
|
|
412
|
-
|
|
2058
|
+
n = c(this.HTTP_ACTIONS);
|
|
2059
|
+
e = this.httpActionGroups;
|
|
413
2060
|
}
|
|
414
2061
|
break;
|
|
415
2062
|
|
|
416
2063
|
case "cli":
|
|
417
2064
|
{
|
|
418
|
-
|
|
419
|
-
|
|
2065
|
+
n = c(this.CLI_ACTIONS);
|
|
2066
|
+
e = this.cliActionGroups;
|
|
420
2067
|
}
|
|
421
2068
|
break;
|
|
422
2069
|
|
|
423
2070
|
case "service":
|
|
424
2071
|
{
|
|
425
|
-
|
|
426
|
-
|
|
2072
|
+
n = c(this.SERVICE_ACTIONS);
|
|
2073
|
+
e = this.serviceActionGroups;
|
|
427
2074
|
}
|
|
428
2075
|
break;
|
|
429
2076
|
|
|
430
2077
|
default:
|
|
431
2078
|
{
|
|
432
|
-
|
|
433
|
-
|
|
2079
|
+
n = [];
|
|
2080
|
+
e = {};
|
|
434
2081
|
}
|
|
435
2082
|
}
|
|
436
|
-
|
|
437
|
-
t.groups.forEach(
|
|
438
|
-
if (!
|
|
439
|
-
id:
|
|
440
|
-
name:
|
|
2083
|
+
n.forEach(t => {
|
|
2084
|
+
t.groups.forEach(n => {
|
|
2085
|
+
if (!r.has(n)) r.set(n, {
|
|
2086
|
+
id: n,
|
|
2087
|
+
name: e[n],
|
|
441
2088
|
actions: []
|
|
442
2089
|
});
|
|
443
|
-
|
|
2090
|
+
r.get(n)?.actions.push(t);
|
|
444
2091
|
});
|
|
445
2092
|
});
|
|
446
2093
|
return {
|
|
447
|
-
groups: [ ...
|
|
448
|
-
actions:
|
|
2094
|
+
groups: [ ...r.values() ],
|
|
2095
|
+
actions: n
|
|
449
2096
|
};
|
|
450
2097
|
}
|
|
451
|
-
findInvalidActionGroupIds(t,
|
|
452
|
-
const
|
|
453
|
-
const
|
|
454
|
-
|
|
2098
|
+
findInvalidActionGroupIds(t, r) {
|
|
2099
|
+
const e = [ ...t.values() ];
|
|
2100
|
+
const n = new Set;
|
|
2101
|
+
e.forEach(t => {
|
|
455
2102
|
t.groups.forEach(t => {
|
|
456
|
-
switch (
|
|
2103
|
+
switch (r) {
|
|
457
2104
|
case "cli":
|
|
458
2105
|
if (this.cliActionGroups[t] !== undefined) return;
|
|
459
2106
|
break;
|
|
@@ -466,127 +2113,127 @@ let w = class Entrypoint extends o {
|
|
|
466
2113
|
if (this.serviceActionGroups[t] !== undefined) return;
|
|
467
2114
|
break;
|
|
468
2115
|
}
|
|
469
|
-
|
|
2116
|
+
n.add(t);
|
|
470
2117
|
});
|
|
471
2118
|
});
|
|
472
|
-
return [ ...
|
|
2119
|
+
return [ ...n ];
|
|
473
2120
|
}
|
|
474
2121
|
findDuplicateActionNames(t) {
|
|
475
|
-
const
|
|
476
|
-
const
|
|
477
|
-
const
|
|
478
|
-
|
|
479
|
-
return Array.from(
|
|
480
|
-
}
|
|
481
|
-
async runAccessControl(t,
|
|
482
|
-
const [
|
|
2122
|
+
const r = [ ...t.values() ].map(t => t.name);
|
|
2123
|
+
const e = new Set;
|
|
2124
|
+
const n = new Set;
|
|
2125
|
+
r.forEach(t => e.has(t) ? n.add(t) : e.add(t));
|
|
2126
|
+
return Array.from(n);
|
|
2127
|
+
}
|
|
2128
|
+
async runAccessControl(t, r, e, n, o) {
|
|
2129
|
+
const [a, i] = await this.accessControl.run(t, r, e, n, o, t => {
|
|
483
2130
|
switch (t) {
|
|
484
|
-
case
|
|
2131
|
+
case g.HTTP:
|
|
485
2132
|
return this.HTTP_ACTIONS;
|
|
486
2133
|
|
|
487
|
-
case
|
|
2134
|
+
case g.SERVICE:
|
|
488
2135
|
return this.SERVICE_ACTIONS;
|
|
489
2136
|
|
|
490
|
-
case
|
|
2137
|
+
case g.CLI:
|
|
491
2138
|
return this.CLI_ACTIONS;
|
|
492
2139
|
|
|
493
2140
|
default:
|
|
494
2141
|
return [];
|
|
495
2142
|
}
|
|
496
2143
|
});
|
|
497
|
-
if (!
|
|
2144
|
+
if (!a) throw i;
|
|
498
2145
|
}
|
|
499
|
-
async runControllerMethodWithoutAbortController(t,
|
|
500
|
-
const
|
|
501
|
-
const
|
|
502
|
-
context:
|
|
2146
|
+
async runControllerMethodWithoutAbortController(t, r, e) {
|
|
2147
|
+
const n = this.createScope();
|
|
2148
|
+
const o = await n.get(t.constructor, {
|
|
2149
|
+
context: r
|
|
503
2150
|
});
|
|
504
2151
|
try {
|
|
505
|
-
const
|
|
506
|
-
await this.runAccessControl(this.rules,
|
|
507
|
-
return await
|
|
2152
|
+
const a = vp(await e.validateAsync(r.data));
|
|
2153
|
+
await this.runAccessControl(this.rules, n, r, a, t);
|
|
2154
|
+
return await o.getMethod(c(t.method))(a);
|
|
508
2155
|
} catch (t) {
|
|
509
2156
|
throw t;
|
|
510
2157
|
} finally {
|
|
511
|
-
|
|
512
|
-
throw new
|
|
2158
|
+
n.destroy().catch(t => {
|
|
2159
|
+
throw new p(t.message);
|
|
513
2160
|
});
|
|
514
2161
|
}
|
|
515
2162
|
}
|
|
516
|
-
async runControllerMethodWithAbortController(t,
|
|
517
|
-
let
|
|
518
|
-
const
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
throw new
|
|
2163
|
+
async runControllerMethodWithAbortController(t, r, e, n) {
|
|
2164
|
+
let o = false;
|
|
2165
|
+
const a = () => {
|
|
2166
|
+
o = true;
|
|
2167
|
+
i.destroy().catch(t => {
|
|
2168
|
+
throw new p(t.message);
|
|
522
2169
|
});
|
|
523
2170
|
};
|
|
524
|
-
|
|
2171
|
+
n.signal.addEventListener("abort", a, {
|
|
525
2172
|
once: true
|
|
526
2173
|
});
|
|
527
|
-
const
|
|
528
|
-
const
|
|
529
|
-
context:
|
|
2174
|
+
const i = this.createScope();
|
|
2175
|
+
const s = await i.get(t.constructor, {
|
|
2176
|
+
context: r
|
|
530
2177
|
});
|
|
531
2178
|
try {
|
|
532
|
-
const
|
|
533
|
-
await this.runAccessControl(this.rules,
|
|
534
|
-
const
|
|
535
|
-
if (!
|
|
2179
|
+
const n = vp(await e.validateAsync(r.data));
|
|
2180
|
+
await this.runAccessControl(this.rules, i, r, n, t);
|
|
2181
|
+
const a = await s.getMethod(c(t.method))(n);
|
|
2182
|
+
if (!o) return a;
|
|
536
2183
|
} catch (t) {
|
|
537
|
-
if (!
|
|
2184
|
+
if (!o) n.signal.removeEventListener("abort", a);
|
|
538
2185
|
throw t;
|
|
539
2186
|
}
|
|
540
2187
|
}
|
|
541
|
-
async runControllerMethod(t,
|
|
542
|
-
if (
|
|
543
|
-
return await this.runControllerMethodWithoutAbortController(t,
|
|
2188
|
+
async runControllerMethod(t, r, e, n) {
|
|
2189
|
+
if (n) return await this.runControllerMethodWithAbortController(t, r, e, n);
|
|
2190
|
+
return await this.runControllerMethodWithoutAbortController(t, r, e);
|
|
544
2191
|
}
|
|
545
|
-
register(t,
|
|
546
|
-
(t ? Array.isArray(t) ? t : [ t ] : []).forEach(t =>
|
|
2192
|
+
register(t, r) {
|
|
2193
|
+
(t ? Array.isArray(t) ? t : [ t ] : []).forEach(t => r(t));
|
|
547
2194
|
}
|
|
548
2195
|
registerCLIEntrypoint(t) {
|
|
549
|
-
const
|
|
550
|
-
this.CLIActionPatternMap.forEach((t,
|
|
551
|
-
return t(this.getModule(),
|
|
552
|
-
const
|
|
2196
|
+
const r = new Map;
|
|
2197
|
+
this.CLIActionPatternMap.forEach((t, e) => r.set(e.command, t.jsonSchema));
|
|
2198
|
+
return t(this.getModule(), r, async (t, r) => {
|
|
2199
|
+
const e = {
|
|
553
2200
|
command: t.command
|
|
554
2201
|
};
|
|
555
|
-
const
|
|
556
|
-
if (!
|
|
557
|
-
return await this.runControllerMethod(
|
|
2202
|
+
const n = this.CLIActionPatternManager.find(e);
|
|
2203
|
+
if (!n) throw new u("Command not found");
|
|
2204
|
+
return await this.runControllerMethod(n, t, n.dtoConstructor, r);
|
|
558
2205
|
}, t => this.entrypointDestroyers.push(t));
|
|
559
2206
|
}
|
|
560
2207
|
registerHTTPEntrypoint(t) {
|
|
561
|
-
const
|
|
2208
|
+
const r = new Map;
|
|
562
2209
|
for (const t of this.HTTPActionPatternMap.keys()) {
|
|
563
|
-
const
|
|
564
|
-
|
|
565
|
-
|
|
2210
|
+
const e = r.get(t.route) || new Set;
|
|
2211
|
+
e.add(t.method);
|
|
2212
|
+
r.set(t.route, e);
|
|
566
2213
|
}
|
|
567
|
-
return t(this.getModule(),
|
|
568
|
-
const
|
|
2214
|
+
return t(this.getModule(), r, async (t, r) => {
|
|
2215
|
+
const e = {
|
|
569
2216
|
route: t.route,
|
|
570
2217
|
method: t.method
|
|
571
2218
|
};
|
|
572
|
-
const
|
|
573
|
-
if (!
|
|
574
|
-
return await this.runControllerMethod(
|
|
2219
|
+
const n = this.HTTPActionPatternManager.find(e);
|
|
2220
|
+
if (!n) throw new u("Route '{route}' not found", t);
|
|
2221
|
+
return await this.runControllerMethod(n, t, n.dtoConstructor, r);
|
|
575
2222
|
}, t => this.entrypointDestroyers.push(t));
|
|
576
2223
|
}
|
|
577
2224
|
registerServiceEntrypoint(t) {
|
|
578
|
-
return t(this.getModule(), async (t,
|
|
579
|
-
const
|
|
580
|
-
if (!
|
|
581
|
-
const
|
|
582
|
-
|
|
583
|
-
const
|
|
584
|
-
|
|
585
|
-
let
|
|
586
|
-
|
|
587
|
-
if (
|
|
2225
|
+
return t(this.getModule(), async (t, r) => {
|
|
2226
|
+
const e = this.ServiceActionPatternManager.find(t.input);
|
|
2227
|
+
if (!e) throw new u("Controller action not found");
|
|
2228
|
+
const n = l(e.pattern);
|
|
2229
|
+
n.forEach(r => rt(t.data, r));
|
|
2230
|
+
const o = m(n.map(t => t.substring(0, t.lastIndexOf("."))).filter(t => !!t));
|
|
2231
|
+
o.forEach(r => {
|
|
2232
|
+
let e = t.data;
|
|
2233
|
+
r.split(".").forEach(t => e = e[t] ? e[t] : undefined);
|
|
2234
|
+
if (e && !Object.keys(e).length) rt(t.data, r);
|
|
588
2235
|
});
|
|
589
|
-
return await this.runControllerMethod(
|
|
2236
|
+
return await this.runControllerMethod(e, t, e.dtoConstructor, r);
|
|
590
2237
|
}, t => this.entrypointDestroyers.push(t));
|
|
591
2238
|
}
|
|
592
2239
|
getHttpActionGroups() {
|
|
@@ -609,22 +2256,22 @@ let w = class Entrypoint extends o {
|
|
|
609
2256
|
}
|
|
610
2257
|
};
|
|
611
2258
|
|
|
612
|
-
t([
|
|
2259
|
+
t([ n(d.Array(d.Class(s)).optional().default([])), r("design:type", Array) ], bp.prototype, "controllers", void 0);
|
|
613
2260
|
|
|
614
|
-
t([
|
|
2261
|
+
t([ n(d.Array(d.Class(A)).optional().default([])), r("design:type", Array) ], bp.prototype, "rules", void 0);
|
|
615
2262
|
|
|
616
|
-
t([
|
|
2263
|
+
t([ n(d.Object().pattern(d.String(), d.String()).optional().default({})), r("design:type", Object) ], bp.prototype, "cliActionGroups", void 0);
|
|
617
2264
|
|
|
618
|
-
t([
|
|
2265
|
+
t([ n(d.Object().pattern(d.String(), d.String()).optional().default({})), r("design:type", Object) ], bp.prototype, "httpActionGroups", void 0);
|
|
619
2266
|
|
|
620
|
-
t([
|
|
2267
|
+
t([ n(d.Object().pattern(d.String(), d.String()).optional().default({})), r("design:type", Object) ], bp.prototype, "serviceActionGroups", void 0);
|
|
621
2268
|
|
|
622
|
-
t([
|
|
2269
|
+
t([ n(), r("design:type", Object) ], bp.prototype, "cli", void 0);
|
|
623
2270
|
|
|
624
|
-
t([
|
|
2271
|
+
t([ n(), r("design:type", Object) ], bp.prototype, "http", void 0);
|
|
625
2272
|
|
|
626
|
-
t([
|
|
2273
|
+
t([ n(), r("design:type", Object) ], bp.prototype, "service", void 0);
|
|
627
2274
|
|
|
628
|
-
|
|
2275
|
+
bp = t([ y() ], bp);
|
|
629
2276
|
|
|
630
|
-
export {
|
|
2277
|
+
export { hp as BuildCLIEntrypoint, yp as BuildEntrypoints, mp as BuildHTTPEntrypoint, dp as BuildServiceEntrypoint, g as ContextType, bp as Entrypoint };
|