lakutata 2.0.89 → 2.0.91
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 +1 -1
- package/com/cacher.mjs +1 -1
- package/com/database.cjs +1 -1
- package/com/database.mjs +1 -1
- package/com/docker.cjs +1 -1
- package/com/docker.mjs +1 -1
- package/com/entrypoint.cjs +1 -1
- package/com/entrypoint.mjs +1 -1
- package/com/logger.cjs +1 -1
- package/com/logger.mjs +1 -1
- package/com/monitor.cjs +1 -1
- package/com/monitor.mjs +1 -1
- package/decorator/asst.cjs +1 -1
- package/decorator/asst.mjs +1 -1
- package/decorator/ctrl.cjs +1 -1
- package/decorator/ctrl.mjs +1 -1
- package/decorator/di.cjs +1 -1
- package/decorator/di.mjs +1 -1
- package/decorator/dto.cjs +1 -1
- package/decorator/dto.mjs +1 -1
- package/decorator/orm.cjs +1 -1
- package/decorator/orm.mjs +1 -1
- package/dtos.cjs +1 -1
- package/dtos.mjs +1 -1
- package/helper.cjs +1 -1
- package/helper.mjs +1 -1
- package/lakutata.cjs +1 -1
- package/lakutata.mjs +1 -1
- package/orm.cjs +1 -1
- package/orm.mjs +1 -1
- package/package.json +1 -1
- package/provider/database.cjs +1 -1
- package/provider/database.mjs +1 -1
- package/provider/passwordHash.cjs +1 -1
- package/provider/passwordHash.mjs +1 -1
- package/src/components/Database.cjs +1 -1
- package/src/components/Database.mjs +1 -1
- package/src/components/Logger.cjs +1 -1
- package/src/components/Logger.mjs +1 -1
- package/src/components/cacher/Cacher.cjs +1 -1
- package/src/components/cacher/Cacher.mjs +1 -1
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +1 -1
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.cjs +1 -1
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.mjs +1 -1
- 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 +1 -1
- package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +1 -1
- package/src/components/cacher/options/FileCacheOptions.cjs +1 -1
- package/src/components/cacher/options/FileCacheOptions.mjs +1 -1
- package/src/components/cacher/options/MemcacheCacheOptions.cjs +1 -1
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +1 -1
- package/src/components/cacher/options/MongoCacheOptions.cjs +1 -1
- package/src/components/cacher/options/MongoCacheOptions.mjs +1 -1
- package/src/components/cacher/options/MysqlCacheOptions.cjs +1 -1
- package/src/components/cacher/options/MysqlCacheOptions.mjs +1 -1
- package/src/components/cacher/options/PostgresCacheOptions.cjs +1 -1
- package/src/components/cacher/options/PostgresCacheOptions.mjs +1 -1
- package/src/components/cacher/options/RedisCacheOptions.cjs +1 -1
- package/src/components/cacher/options/RedisCacheOptions.mjs +1 -1
- package/src/components/cacher/options/SqliteCacheOptions.cjs +1 -1
- package/src/components/cacher/options/SqliteCacheOptions.mjs +1 -1
- package/src/components/cacher/types/CacheStoreOptions.cjs +1 -1
- package/src/components/cacher/types/CacheStoreOptions.mjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.cjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.mjs +1 -1
- package/src/components/docker/Docker.cjs +1 -1
- package/src/components/docker/Docker.mjs +1 -1
- package/src/components/docker/exceptions/DockerConnectionException.cjs +1 -1
- package/src/components/docker/exceptions/DockerConnectionException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImageBuildException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImageBuildException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImageImportException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImageImportException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImageNotFoundException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImageNotFoundException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImagePullException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImagePullException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImagePushException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImagePushException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.mjs +1 -1
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.cjs +1 -1
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.mjs +1 -1
- 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 +1 -1
- package/src/components/docker/lib/DockerContainer.mjs +1 -1
- package/src/components/docker/lib/DockerContainerTTY.cjs +1 -1
- package/src/components/docker/lib/DockerContainerTTY.mjs +1 -1
- package/src/components/docker/lib/DockerImage.cjs +1 -1
- package/src/components/docker/lib/DockerImage.mjs +1 -1
- 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 +1 -1
- package/src/components/docker/options/DockerPruneOptions.mjs +1 -1
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +1 -1
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerCommitOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerExecOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerExecOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerKillOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerKillOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerLogsOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerRemoveOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerSettingOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerStopOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerStopOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +1 -1
- package/src/components/docker/options/image/ImageBuildOptions.cjs +1 -1
- package/src/components/docker/options/image/ImageBuildOptions.mjs +1 -1
- package/src/components/docker/options/image/ImageExportOptions.cjs +1 -1
- package/src/components/docker/options/image/ImageExportOptions.mjs +1 -1
- package/src/components/docker/options/image/ImageImportOptions.cjs +1 -1
- package/src/components/docker/options/image/ImageImportOptions.mjs +1 -1
- package/src/components/docker/options/image/ImagePullOptions.cjs +1 -1
- package/src/components/docker/options/image/ImagePullOptions.mjs +1 -1
- package/src/components/docker/options/image/ImagePushOptions.cjs +1 -1
- package/src/components/docker/options/image/ImagePushOptions.mjs +1 -1
- package/src/components/docker/options/image/ImageRemoveOptions.cjs +1 -1
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +1 -1
- package/src/components/docker/options/image/ImageTagOptions.cjs +1 -1
- package/src/components/docker/options/image/ImageTagOptions.mjs +1 -1
- package/src/components/docker/options/network/NetworkCreateOptions.cjs +1 -1
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +1 -1
- 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 +1 -1
- package/src/components/entrypoint/Entrypoint.mjs +1 -1
- package/src/components/entrypoint/exceptions/AccessDenyException.cjs +1 -1
- package/src/components/entrypoint/exceptions/AccessDenyException.mjs +1 -1
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +1 -1
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +1 -1
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.cjs +1 -1
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.mjs +1 -1
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.cjs +1 -1
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.mjs +1 -1
- package/src/components/entrypoint/lib/AccessControl.cjs +1 -1
- package/src/components/entrypoint/lib/AccessControl.mjs +1 -1
- package/src/components/entrypoint/lib/AccessControlRule.cjs +1 -1
- package/src/components/entrypoint/lib/AccessControlRule.mjs +1 -1
- package/src/components/entrypoint/lib/Controller.cjs +1 -1
- package/src/components/entrypoint/lib/Controller.mjs +1 -1
- package/src/components/monitor/AliveMonitor.cjs +1 -1
- package/src/components/monitor/AliveMonitor.mjs +1 -1
- package/src/components/monitor/CpuMonitor.cjs +1 -1
- package/src/components/monitor/CpuMonitor.mjs +1 -1
- package/src/components/monitor/EventLoopMonitor.cjs +1 -1
- package/src/components/monitor/EventLoopMonitor.mjs +1 -1
- package/src/components/monitor/HttpRequestMonitor.cjs +1 -1
- package/src/components/monitor/HttpRequestMonitor.mjs +1 -1
- package/src/components/monitor/MemoryMonitor.cjs +1 -1
- package/src/components/monitor/MemoryMonitor.mjs +1 -1
- package/src/components/monitor/interfaces/ICpuMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/ICpuMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IMemoryMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IMemoryMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IMonitor.cjs +1 -1
- package/src/components/monitor/interfaces/IMonitor.mjs +1 -1
- package/src/constants/DIMetadataKey.cjs +1 -1
- package/src/constants/DIMetadataKey.mjs +1 -1
- package/src/constants/DTOMetadataKey.cjs +1 -1
- package/src/constants/DTOMetadataKey.mjs +1 -1
- package/src/decorators/asst/After.cjs +1 -1
- package/src/decorators/asst/After.mjs +1 -1
- package/src/decorators/asst/Before.cjs +1 -1
- package/src/decorators/asst/Before.mjs +1 -1
- package/src/decorators/ctrl/CLIAction.cjs +1 -1
- package/src/decorators/ctrl/CLIAction.mjs +1 -1
- package/src/decorators/ctrl/HTTPAction.cjs +1 -1
- package/src/decorators/ctrl/HTTPAction.mjs +1 -1
- package/src/decorators/ctrl/ServiceAction.cjs +1 -1
- package/src/decorators/ctrl/ServiceAction.mjs +1 -1
- package/src/decorators/ctrl/http/DELETE.cjs +1 -1
- package/src/decorators/ctrl/http/DELETE.mjs +1 -1
- package/src/decorators/ctrl/http/GET.cjs +1 -1
- package/src/decorators/ctrl/http/GET.mjs +1 -1
- package/src/decorators/ctrl/http/HEAD.cjs +1 -1
- package/src/decorators/ctrl/http/HEAD.mjs +1 -1
- package/src/decorators/ctrl/http/OPTIONS.cjs +1 -1
- package/src/decorators/ctrl/http/OPTIONS.mjs +1 -1
- package/src/decorators/ctrl/http/PATCH.cjs +1 -1
- package/src/decorators/ctrl/http/PATCH.mjs +1 -1
- package/src/decorators/ctrl/http/POST.cjs +1 -1
- package/src/decorators/ctrl/http/POST.mjs +1 -1
- package/src/decorators/ctrl/http/PUT.cjs +1 -1
- package/src/decorators/ctrl/http/PUT.mjs +1 -1
- package/src/decorators/di/Autoload.cjs +1 -1
- package/src/decorators/di/Autoload.mjs +1 -1
- package/src/decorators/di/Configurable.cjs +1 -1
- package/src/decorators/di/Configurable.mjs +1 -1
- package/src/decorators/di/Inject.cjs +1 -1
- package/src/decorators/di/Inject.mjs +1 -1
- package/src/decorators/di/Lifetime.cjs +1 -1
- package/src/decorators/di/Lifetime.mjs +1 -1
- package/src/decorators/dto/Accept.cjs +1 -1
- package/src/decorators/dto/Accept.mjs +1 -1
- package/src/decorators/dto/Expect.cjs +1 -1
- package/src/decorators/dto/Expect.mjs +1 -1
- package/src/decorators/dto/IndexSignature.cjs +1 -1
- package/src/decorators/dto/IndexSignature.mjs +1 -1
- package/src/decorators/dto/Return.cjs +1 -1
- package/src/decorators/dto/Return.mjs +1 -1
- package/src/decorators/orm/AfterInsert.cjs +1 -1
- package/src/decorators/orm/AfterInsert.mjs +1 -1
- package/src/decorators/orm/AfterLoad.cjs +1 -1
- package/src/decorators/orm/AfterLoad.mjs +1 -1
- package/src/decorators/orm/AfterRecover.cjs +1 -1
- package/src/decorators/orm/AfterRecover.mjs +1 -1
- package/src/decorators/orm/AfterRemove.cjs +1 -1
- package/src/decorators/orm/AfterRemove.mjs +1 -1
- package/src/decorators/orm/AfterSoftRemove.cjs +1 -1
- package/src/decorators/orm/AfterSoftRemove.mjs +1 -1
- package/src/decorators/orm/AfterUpdate.cjs +1 -1
- package/src/decorators/orm/AfterUpdate.mjs +1 -1
- package/src/decorators/orm/BeforeInsert.cjs +1 -1
- package/src/decorators/orm/BeforeInsert.mjs +1 -1
- package/src/decorators/orm/BeforeRecover.cjs +1 -1
- package/src/decorators/orm/BeforeRecover.mjs +1 -1
- package/src/decorators/orm/BeforeRemove.cjs +1 -1
- package/src/decorators/orm/BeforeRemove.mjs +1 -1
- package/src/decorators/orm/BeforeSoftRemove.cjs +1 -1
- package/src/decorators/orm/BeforeSoftRemove.mjs +1 -1
- package/src/decorators/orm/BeforeUpdate.cjs +1 -1
- package/src/decorators/orm/BeforeUpdate.mjs +1 -1
- package/src/decorators/orm/Check.cjs +1 -1
- package/src/decorators/orm/Check.mjs +1 -1
- package/src/decorators/orm/ChildEntity.cjs +1 -1
- package/src/decorators/orm/ChildEntity.mjs +1 -1
- package/src/decorators/orm/Column.cjs +1 -1
- package/src/decorators/orm/Column.mjs +1 -1
- package/src/decorators/orm/CreateDateColumn.cjs +1 -1
- package/src/decorators/orm/CreateDateColumn.mjs +1 -1
- package/src/decorators/orm/DeleteDateColumn.cjs +1 -1
- package/src/decorators/orm/DeleteDateColumn.mjs +1 -1
- package/src/decorators/orm/Entity.cjs +1 -1
- package/src/decorators/orm/Entity.mjs +1 -1
- package/src/decorators/orm/EventSubscriber.cjs +1 -1
- package/src/decorators/orm/EventSubscriber.mjs +1 -1
- package/src/decorators/orm/Exclusion.cjs +1 -1
- package/src/decorators/orm/Exclusion.mjs +1 -1
- package/src/decorators/orm/Generated.cjs +1 -1
- package/src/decorators/orm/Generated.mjs +1 -1
- package/src/decorators/orm/Index.cjs +1 -1
- package/src/decorators/orm/Index.mjs +1 -1
- package/src/decorators/orm/JoinColumn.cjs +1 -1
- package/src/decorators/orm/JoinColumn.mjs +1 -1
- package/src/decorators/orm/JoinTable.cjs +1 -1
- package/src/decorators/orm/JoinTable.mjs +1 -1
- package/src/decorators/orm/ManyToMany.cjs +1 -1
- package/src/decorators/orm/ManyToMany.mjs +1 -1
- package/src/decorators/orm/ManyToOne.cjs +1 -1
- package/src/decorators/orm/ManyToOne.mjs +1 -1
- package/src/decorators/orm/ObjectIdColumn.cjs +1 -1
- package/src/decorators/orm/ObjectIdColumn.mjs +1 -1
- package/src/decorators/orm/OneToMany.cjs +1 -1
- package/src/decorators/orm/OneToMany.mjs +1 -1
- package/src/decorators/orm/OneToOne.cjs +1 -1
- package/src/decorators/orm/OneToOne.mjs +1 -1
- package/src/decorators/orm/PrimaryColumn.cjs +1 -1
- package/src/decorators/orm/PrimaryColumn.mjs +1 -1
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +1 -1
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +1 -1
- package/src/decorators/orm/RelationId.cjs +1 -1
- package/src/decorators/orm/RelationId.mjs +1 -1
- package/src/decorators/orm/TableInheritance.cjs +1 -1
- package/src/decorators/orm/TableInheritance.mjs +1 -1
- package/src/decorators/orm/Tree.cjs +1 -1
- package/src/decorators/orm/Tree.mjs +1 -1
- package/src/decorators/orm/TreeChildren.cjs +1 -1
- package/src/decorators/orm/TreeChildren.mjs +1 -1
- package/src/decorators/orm/TreeLevelColumn.cjs +1 -1
- package/src/decorators/orm/TreeLevelColumn.mjs +1 -1
- package/src/decorators/orm/TreeParent.cjs +1 -1
- package/src/decorators/orm/TreeParent.mjs +1 -1
- package/src/decorators/orm/Unique.cjs +1 -1
- package/src/decorators/orm/Unique.mjs +1 -1
- package/src/decorators/orm/UpdateDateColumn.cjs +1 -1
- package/src/decorators/orm/UpdateDateColumn.mjs +1 -1
- package/src/decorators/orm/VersionColumn.cjs +1 -1
- package/src/decorators/orm/VersionColumn.mjs +1 -1
- package/src/decorators/orm/ViewColumn.cjs +1 -1
- package/src/decorators/orm/ViewColumn.mjs +1 -1
- package/src/decorators/orm/ViewEntity.cjs +1 -1
- package/src/decorators/orm/ViewEntity.mjs +1 -1
- package/src/decorators/orm/VirtualColumn.cjs +1 -1
- package/src/decorators/orm/VirtualColumn.mjs +1 -1
- package/src/dto/PaginationResultDTO.cjs +1 -1
- package/src/dto/PaginationResultDTO.mjs +1 -1
- package/src/dto/PaginationSearchDTO.cjs +1 -1
- package/src/dto/PaginationSearchDTO.mjs +1 -1
- package/src/exceptions/DestroyRuntimeContainerException.cjs +1 -1
- package/src/exceptions/DestroyRuntimeContainerException.mjs +1 -1
- package/src/exceptions/InvalidActionPatternDepthException.cjs +1 -1
- package/src/exceptions/InvalidActionPatternDepthException.mjs +1 -1
- package/src/exceptions/InvalidAssistantFunctionTypeException.cjs +1 -1
- package/src/exceptions/InvalidAssistantFunctionTypeException.mjs +1 -1
- package/src/exceptions/InvalidObjectTypeException.cjs +1 -1
- package/src/exceptions/InvalidObjectTypeException.mjs +1 -1
- package/src/exceptions/MethodNotFoundException.cjs +1 -1
- package/src/exceptions/MethodNotFoundException.mjs +1 -1
- package/src/exceptions/alias/AliasExistsException.cjs +1 -1
- package/src/exceptions/alias/AliasExistsException.mjs +1 -1
- package/src/exceptions/alias/AliasNotFoundException.cjs +1 -1
- package/src/exceptions/alias/AliasNotFoundException.mjs +1 -1
- package/src/exceptions/alias/InvalidAliasNameException.cjs +1 -1
- package/src/exceptions/alias/InvalidAliasNameException.mjs +1 -1
- package/src/exceptions/di/DependencyInjectionException.cjs +1 -1
- package/src/exceptions/di/DependencyInjectionException.mjs +1 -1
- package/src/exceptions/di/LifetimeLockedException.cjs +1 -1
- package/src/exceptions/di/LifetimeLockedException.mjs +1 -1
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs +1 -1
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.mjs +1 -1
- package/src/exceptions/dto/InvalidMethodAcceptException.cjs +1 -1
- package/src/exceptions/dto/InvalidMethodAcceptException.mjs +1 -1
- package/src/exceptions/dto/InvalidMethodReturnException.cjs +1 -1
- package/src/exceptions/dto/InvalidMethodReturnException.mjs +1 -1
- package/src/exceptions/dto/InvalidValueException.cjs +1 -1
- package/src/exceptions/dto/InvalidValueException.mjs +1 -1
- package/src/interfaces/IBaseObjectConstructor.cjs +1 -1
- package/src/interfaces/IBaseObjectConstructor.mjs +1 -1
- package/src/interfaces/IConstructor.cjs +1 -1
- package/src/interfaces/IConstructor.mjs +1 -1
- package/src/interfaces/IPatRun.cjs +1 -1
- package/src/interfaces/IPatRun.mjs +1 -1
- package/src/lib/base/BaseObject.cjs +1 -1
- package/src/lib/base/BaseObject.mjs +1 -1
- package/src/lib/base/Context.cjs +1 -1
- package/src/lib/base/Context.mjs +1 -1
- package/src/lib/base/EventEmitter.cjs +1 -1
- package/src/lib/base/EventEmitter.mjs +1 -1
- package/src/lib/base/abstracts/Exception.cjs +1 -1
- package/src/lib/base/abstracts/Exception.mjs +1 -1
- 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 +1 -1
- package/src/lib/base/internal/ActionOptions.mjs +1 -1
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +1 -1
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +1 -1
- package/src/lib/base/internal/BasicInfo.cjs +1 -1
- package/src/lib/base/internal/BasicInfo.mjs +1 -1
- package/src/lib/base/internal/CamelCase.cjs +1 -1
- package/src/lib/base/internal/CamelCase.mjs +1 -1
- package/src/lib/base/internal/ConfigurableRecordsInjection.cjs +1 -1
- package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +1 -1
- package/src/lib/base/internal/ConstructorSymbol.cjs +1 -1
- package/src/lib/base/internal/ConstructorSymbol.mjs +1 -1
- package/src/lib/base/internal/ControllerEntrypoint.cjs +1 -1
- package/src/lib/base/internal/ControllerEntrypoint.mjs +1 -1
- package/src/lib/base/internal/DataValidator.cjs +1 -1
- package/src/lib/base/internal/DataValidator.mjs +1 -1
- 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 +1 -1
- package/src/lib/base/internal/FlexibleDTO.mjs +1 -1
- package/src/lib/base/internal/GetActionDTOAndOptions.cjs +1 -1
- package/src/lib/base/internal/GetActionDTOAndOptions.mjs +1 -1
- 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 +1 -1
- package/src/lib/base/internal/MethodAssistantFunction.mjs +1 -1
- package/src/lib/base/internal/MethodValidation.cjs +1 -1
- package/src/lib/base/internal/MethodValidation.mjs +1 -1
- package/src/lib/base/internal/ModuleConfigLoader.cjs +1 -1
- package/src/lib/base/internal/ModuleConfigLoader.mjs +1 -1
- package/src/lib/base/internal/ObjectConfiguration.cjs +1 -1
- package/src/lib/base/internal/ObjectConfiguration.mjs +1 -1
- package/src/lib/base/internal/ObjectContainer.cjs +1 -1
- package/src/lib/base/internal/ObjectContainer.mjs +1 -1
- package/src/lib/base/internal/ObjectInjection.cjs +1 -1
- package/src/lib/base/internal/ObjectInjection.mjs +1 -1
- package/src/lib/base/internal/ObjectLifetime.cjs +1 -1
- package/src/lib/base/internal/ObjectLifetime.mjs +1 -1
- package/src/lib/base/internal/ObjectSchemaValidation.cjs +1 -1
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +1 -1
- package/src/lib/base/internal/ObjectType.cjs +1 -1
- package/src/lib/base/internal/ObjectType.mjs +1 -1
- package/src/lib/base/internal/ObjectWeakRefs.cjs +1 -1
- package/src/lib/base/internal/ObjectWeakRefs.mjs +1 -1
- package/src/lib/base/internal/PatternManager.cjs +1 -1
- package/src/lib/base/internal/PatternManager.mjs +1 -1
- package/src/lib/base/internal/StringifyPattern.cjs +1 -1
- package/src/lib/base/internal/StringifyPattern.mjs +1 -1
- package/src/lib/base/internal/ThrowWarning.cjs +1 -1
- package/src/lib/base/internal/ThrowWarning.mjs +1 -1
- package/src/lib/context/CLIContext.cjs +1 -1
- package/src/lib/context/CLIContext.mjs +1 -1
- package/src/lib/context/HTTPContext.cjs +1 -1
- package/src/lib/context/HTTPContext.mjs +1 -1
- package/src/lib/context/ServiceContext.cjs +1 -1
- package/src/lib/context/ServiceContext.mjs +1 -1
- package/src/lib/core/Alias.cjs +1 -1
- package/src/lib/core/Alias.mjs +1 -1
- package/src/lib/core/Application.cjs +1 -1
- package/src/lib/core/Application.mjs +1 -1
- package/src/lib/core/Component.cjs +1 -1
- package/src/lib/core/Component.mjs +1 -1
- package/src/lib/core/Container.cjs +1 -1
- package/src/lib/core/Container.mjs +1 -1
- package/src/lib/core/DTO.cjs +1 -1
- package/src/lib/core/DTO.mjs +1 -1
- package/src/lib/core/Module.cjs +1 -1
- package/src/lib/core/Module.mjs +1 -1
- package/src/lib/core/Provider.cjs +1 -1
- package/src/lib/core/Provider.mjs +1 -1
- package/src/lib/core/Time.cjs +1 -1
- package/src/lib/core/Time.mjs +1 -1
- package/src/lib/helpers/ArrayToSet.cjs +1 -1
- package/src/lib/helpers/ArrayToSet.mjs +1 -1
- package/src/lib/helpers/As.cjs +1 -1
- package/src/lib/helpers/As.mjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToIterable.cjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToIterable.mjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToStream.cjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToStream.mjs +1 -1
- package/src/lib/helpers/Delay.cjs +1 -1
- package/src/lib/helpers/Delay.mjs +1 -1
- package/src/lib/helpers/DevNull.cjs +1 -1
- package/src/lib/helpers/DevNull.mjs +1 -1
- package/src/lib/helpers/GetObjectNestingDepth.cjs +1 -1
- package/src/lib/helpers/GetObjectNestingDepth.mjs +1 -1
- package/src/lib/helpers/GetObjectPropertyPaths.cjs +1 -1
- package/src/lib/helpers/GetObjectPropertyPaths.mjs +1 -1
- package/src/lib/helpers/Glob.cjs +1 -1
- package/src/lib/helpers/Glob.mjs +1 -1
- package/src/lib/helpers/GraceExit.cjs +1 -1
- package/src/lib/helpers/GraceExit.mjs +1 -1
- package/src/lib/helpers/HexToIEEE754.cjs +1 -1
- package/src/lib/helpers/HexToIEEE754.mjs +1 -1
- package/src/lib/helpers/HexToSigned.cjs +1 -1
- package/src/lib/helpers/HexToSigned.mjs +1 -1
- package/src/lib/helpers/HexToUnsigned.cjs +1 -1
- package/src/lib/helpers/HexToUnsigned.mjs +1 -1
- package/src/lib/helpers/IEEE754ToHex.cjs +1 -1
- package/src/lib/helpers/IEEE754ToHex.mjs +1 -1
- package/src/lib/helpers/IPToolkit.cjs +1 -1
- package/src/lib/helpers/IPToolkit.mjs +1 -1
- package/src/lib/helpers/IsAbortError.cjs +1 -1
- package/src/lib/helpers/IsAbortError.mjs +1 -1
- package/src/lib/helpers/IsEmptyObject.cjs +1 -1
- package/src/lib/helpers/IsEmptyObject.mjs +1 -1
- package/src/lib/helpers/IsExists.cjs +1 -1
- package/src/lib/helpers/IsExists.mjs +1 -1
- package/src/lib/helpers/IsGlobString.cjs +1 -1
- package/src/lib/helpers/IsGlobString.mjs +1 -1
- package/src/lib/helpers/IsHtml.cjs +1 -1
- package/src/lib/helpers/IsHtml.mjs +1 -1
- package/src/lib/helpers/IsNativeFunction.cjs +1 -1
- package/src/lib/helpers/IsNativeFunction.mjs +1 -1
- package/src/lib/helpers/IsPath.cjs +1 -1
- package/src/lib/helpers/IsPath.mjs +1 -1
- package/src/lib/helpers/IsPromise.cjs +1 -1
- package/src/lib/helpers/IsPromise.mjs +1 -1
- package/src/lib/helpers/IsPromiseLike.cjs +1 -1
- package/src/lib/helpers/IsPromiseLike.mjs +1 -1
- package/src/lib/helpers/IsSymbol.cjs +1 -1
- package/src/lib/helpers/IsSymbol.mjs +1 -1
- package/src/lib/helpers/IsXML.cjs +1 -1
- package/src/lib/helpers/IsXML.mjs +1 -1
- package/src/lib/helpers/MD5.cjs +1 -1
- package/src/lib/helpers/MD5.mjs +1 -1
- package/src/lib/helpers/MergeArray.cjs +1 -1
- package/src/lib/helpers/MergeArray.mjs +1 -1
- package/src/lib/helpers/MergeMap.cjs +1 -1
- package/src/lib/helpers/MergeMap.mjs +1 -1
- package/src/lib/helpers/MergeSet.cjs +1 -1
- package/src/lib/helpers/MergeSet.mjs +1 -1
- package/src/lib/helpers/NoCase.cjs +1 -1
- package/src/lib/helpers/NoCase.mjs +1 -1
- package/src/lib/helpers/NonceStr.cjs +1 -1
- package/src/lib/helpers/NonceStr.mjs +1 -1
- package/src/lib/helpers/ObjectConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectHash.cjs +1 -1
- package/src/lib/helpers/ObjectHash.mjs +1 -1
- package/src/lib/helpers/ObjectParentConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectParentConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectParentConstructors.cjs +1 -1
- package/src/lib/helpers/ObjectParentConstructors.mjs +1 -1
- package/src/lib/helpers/ObjectPath.cjs +1 -1
- package/src/lib/helpers/ObjectPath.mjs +1 -1
- package/src/lib/helpers/ObjectPrototype.cjs +1 -1
- package/src/lib/helpers/ObjectPrototype.mjs +1 -1
- package/src/lib/helpers/ObjectToMap.cjs +1 -1
- package/src/lib/helpers/ObjectToMap.mjs +1 -1
- package/src/lib/helpers/Paginator.cjs +1 -1
- package/src/lib/helpers/Paginator.mjs +1 -1
- package/src/lib/helpers/RandomString.cjs +1 -1
- package/src/lib/helpers/RandomString.mjs +1 -1
- package/src/lib/helpers/SHA1.cjs +1 -1
- package/src/lib/helpers/SHA1.mjs +1 -1
- package/src/lib/helpers/SHA256.cjs +1 -1
- package/src/lib/helpers/SHA256.mjs +1 -1
- 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 +1 -1
- package/src/lib/helpers/SortArray.mjs +1 -1
- 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 +1 -1
- package/src/lib/helpers/Statistics.mjs +1 -1
- package/src/lib/helpers/Templating.cjs +1 -1
- package/src/lib/helpers/Templating.mjs +1 -1
- package/src/lib/helpers/URLBuilder.cjs +1 -1
- package/src/lib/helpers/URLBuilder.mjs +1 -1
- package/src/lib/helpers/UUID.cjs +1 -1
- package/src/lib/helpers/UUID.mjs +1 -1
- 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 +1 -1
- package/src/lib/ioc/DependencyInjectionContainer.mjs +1 -1
- package/src/lib/ioc/Errors.cjs +1 -1
- package/src/lib/ioc/Errors.mjs +1 -1
- 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 +1 -1
- package/src/lib/ioc/ListModules.mjs +1 -1
- package/src/lib/ioc/LoadModules.cjs +1 -1
- package/src/lib/ioc/LoadModules.mjs +1 -1
- package/src/lib/ioc/ParamParser.cjs +1 -1
- package/src/lib/ioc/ParamParser.mjs +1 -1
- package/src/lib/ioc/Resolvers.cjs +1 -1
- package/src/lib/ioc/Resolvers.mjs +1 -1
- package/src/lib/ioc/Utils.cjs +1 -1
- package/src/lib/ioc/Utils.mjs +1 -1
- package/src/lib/validation/VLD.cjs +1 -1
- package/src/lib/validation/VLD.mjs +1 -1
- 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 +1 -1
- package/src/options/ApplicationOptions.mjs +1 -1
- package/src/options/LoadAnonymousObjectOptions.cjs +1 -1
- package/src/options/LoadAnonymousObjectOptions.mjs +1 -1
- package/src/options/LoadNamedObjectOptions.cjs +1 -1
- package/src/options/LoadNamedObjectOptions.mjs +1 -1
- package/src/options/LoadObjectOptions.cjs +1 -1
- package/src/options/LoadObjectOptions.mjs +1 -1
- package/src/options/ModuleLoadObjectsOptions.cjs +1 -1
- package/src/options/ModuleLoadObjectsOptions.mjs +1 -1
- package/src/options/ModuleOptions.cjs +1 -1
- package/src/options/ModuleOptions.mjs +1 -1
- package/src/options/OverridableNamedObjectOptions.cjs +1 -1
- package/src/options/OverridableNamedObjectOptions.mjs +1 -1
- package/src/options/OverridableObjectOptions.cjs +1 -1
- package/src/options/OverridableObjectOptions.mjs +1 -1
- package/src/providers/Database.cjs +1 -1
- package/src/providers/Database.mjs +1 -1
- package/src/providers/PasswordHash.cjs +1 -1
- package/src/providers/PasswordHash.mjs +1 -1
- package/src/providers/migration/GenerateMigration.cjs +1 -1
- package/src/providers/migration/GenerateMigration.mjs +1 -1
- package/src/types/ActionPattern.cjs +1 -1
- package/src/types/ActionPattern.mjs +1 -1
- package/src/types/ClassDecorator.cjs +1 -1
- package/src/types/ClassDecorator.mjs +1 -1
- package/src/types/ComponentOptions.cjs +1 -1
- package/src/types/ComponentOptions.mjs +1 -1
- package/src/types/JSONSchema.cjs +1 -1
- package/src/types/JSONSchema.mjs +1 -1
- package/src/types/MethodDecorator.cjs +1 -1
- package/src/types/MethodDecorator.mjs +1 -1
- package/src/types/ModuleOptions.cjs +1 -1
- package/src/types/ModuleOptions.mjs +1 -1
- package/src/types/ObjectOptions.cjs +1 -1
- package/src/types/ObjectOptions.mjs +1 -1
- package/src/types/ParameterDecorator.cjs +1 -1
- package/src/types/ParameterDecorator.mjs +1 -1
- package/src/types/PropertyDecorator.cjs +1 -1
- package/src/types/PropertyDecorator.mjs +1 -1
- package/src/types/ProviderOptions.cjs +1 -1
- package/src/types/ProviderOptions.mjs +1 -1
- package/vendor/Package.internal.1.cjs +1 -1
- package/vendor/Package.internal.1.mjs +1 -1
- package/vendor/Package.internal.10.cjs +1 -1
- package/vendor/Package.internal.10.mjs +1 -1
- package/vendor/Package.internal.100.cjs +1 -1
- package/vendor/Package.internal.100.mjs +1 -1
- package/vendor/Package.internal.101.cjs +1 -1
- package/vendor/Package.internal.101.mjs +1 -1
- package/vendor/Package.internal.102.cjs +1 -1
- package/vendor/Package.internal.102.mjs +1 -1
- package/vendor/Package.internal.103.cjs +1 -1
- package/vendor/Package.internal.103.mjs +1 -1
- package/vendor/Package.internal.104.cjs +1 -1
- package/vendor/Package.internal.104.mjs +1 -1
- package/vendor/Package.internal.105.cjs +1 -1
- package/vendor/Package.internal.105.mjs +1 -1
- package/vendor/Package.internal.106.cjs +1 -1
- package/vendor/Package.internal.106.mjs +1 -1
- package/vendor/Package.internal.107.cjs +1 -1
- package/vendor/Package.internal.107.mjs +1 -1
- package/vendor/Package.internal.108.cjs +1 -1
- package/vendor/Package.internal.108.mjs +1 -1
- package/vendor/Package.internal.109.cjs +1 -1
- package/vendor/Package.internal.109.mjs +1 -1
- package/vendor/Package.internal.11.cjs +1 -1
- package/vendor/Package.internal.11.mjs +1 -1
- package/vendor/Package.internal.110.cjs +1 -1
- package/vendor/Package.internal.110.mjs +1 -1
- package/vendor/Package.internal.111.cjs +1 -1
- package/vendor/Package.internal.111.mjs +1 -1
- package/vendor/Package.internal.112.cjs +1 -1
- package/vendor/Package.internal.112.mjs +1 -1
- package/vendor/Package.internal.113.cjs +1 -1
- package/vendor/Package.internal.113.mjs +1 -1
- package/vendor/Package.internal.114.cjs +1 -1
- package/vendor/Package.internal.114.mjs +1 -1
- package/vendor/Package.internal.115.cjs +1 -1
- package/vendor/Package.internal.115.mjs +1 -1
- package/vendor/Package.internal.116.cjs +1 -1
- package/vendor/Package.internal.116.mjs +1 -1
- package/vendor/Package.internal.117.cjs +1 -1
- package/vendor/Package.internal.117.mjs +1 -1
- package/vendor/Package.internal.118.cjs +1 -1
- package/vendor/Package.internal.118.mjs +1 -1
- package/vendor/Package.internal.119.cjs +1 -1
- package/vendor/Package.internal.119.mjs +1 -1
- package/vendor/Package.internal.12.cjs +1 -1
- package/vendor/Package.internal.12.mjs +1 -1
- package/vendor/Package.internal.120.cjs +1 -1
- package/vendor/Package.internal.120.mjs +1 -1
- package/vendor/Package.internal.121.cjs +1 -1
- package/vendor/Package.internal.121.mjs +1 -1
- package/vendor/Package.internal.122.cjs +1 -1
- package/vendor/Package.internal.122.mjs +1 -1
- package/vendor/Package.internal.123.cjs +1 -1
- package/vendor/Package.internal.123.mjs +1 -1
- package/vendor/Package.internal.124.cjs +1 -1
- package/vendor/Package.internal.124.mjs +1 -1
- package/vendor/Package.internal.125.cjs +1 -1
- package/vendor/Package.internal.125.mjs +1 -1
- package/vendor/Package.internal.126.cjs +1 -1
- package/vendor/Package.internal.126.mjs +1 -1
- package/vendor/Package.internal.127.cjs +1 -1
- package/vendor/Package.internal.127.mjs +1 -1
- package/vendor/Package.internal.128.cjs +1 -1
- package/vendor/Package.internal.128.mjs +1 -1
- package/vendor/Package.internal.129.cjs +1 -1
- package/vendor/Package.internal.129.mjs +1 -1
- package/vendor/Package.internal.13.cjs +1 -1
- package/vendor/Package.internal.13.mjs +1 -1
- package/vendor/Package.internal.130.cjs +1 -1
- package/vendor/Package.internal.130.mjs +1 -1
- package/vendor/Package.internal.131.cjs +1 -1
- package/vendor/Package.internal.131.mjs +1 -1
- package/vendor/Package.internal.132.cjs +1 -1
- package/vendor/Package.internal.132.mjs +1 -1
- package/vendor/Package.internal.133.cjs +1 -1
- package/vendor/Package.internal.133.mjs +1 -1
- package/vendor/Package.internal.134.cjs +1 -1
- package/vendor/Package.internal.134.mjs +1 -1
- package/vendor/Package.internal.135.cjs +1 -1
- package/vendor/Package.internal.135.mjs +1 -1
- package/vendor/Package.internal.136.cjs +1 -1
- package/vendor/Package.internal.136.mjs +1 -1
- package/vendor/Package.internal.137.cjs +1 -1
- package/vendor/Package.internal.137.mjs +1 -1
- package/vendor/Package.internal.138.cjs +1 -1
- package/vendor/Package.internal.138.mjs +1 -1
- package/vendor/Package.internal.139.cjs +1 -1
- package/vendor/Package.internal.139.mjs +1 -1
- package/vendor/Package.internal.14.cjs +1 -1
- package/vendor/Package.internal.14.mjs +1 -1
- package/vendor/Package.internal.140.cjs +1 -1
- package/vendor/Package.internal.140.mjs +1 -1
- package/vendor/Package.internal.141.cjs +1 -1
- package/vendor/Package.internal.141.mjs +1 -1
- package/vendor/Package.internal.142.cjs +1 -1
- package/vendor/Package.internal.142.mjs +1 -1
- package/vendor/Package.internal.143.cjs +1 -1
- package/vendor/Package.internal.143.mjs +1 -1
- package/vendor/Package.internal.144.cjs +1 -1
- package/vendor/Package.internal.144.mjs +1 -1
- package/vendor/Package.internal.145.cjs +1 -1
- package/vendor/Package.internal.145.mjs +1 -1
- package/vendor/Package.internal.146.cjs +1 -1
- package/vendor/Package.internal.146.mjs +1 -1
- package/vendor/Package.internal.147.cjs +1 -1
- package/vendor/Package.internal.147.mjs +1 -1
- package/vendor/Package.internal.148.cjs +1 -1
- package/vendor/Package.internal.148.mjs +1 -1
- package/vendor/Package.internal.149.cjs +1 -1
- package/vendor/Package.internal.149.mjs +1 -1
- package/vendor/Package.internal.15.cjs +1 -1
- package/vendor/Package.internal.15.mjs +1 -1
- package/vendor/Package.internal.150.cjs +1 -1
- package/vendor/Package.internal.150.mjs +1 -1
- package/vendor/Package.internal.151.cjs +1 -1
- package/vendor/Package.internal.151.mjs +1 -1
- package/vendor/Package.internal.152.cjs +1 -1
- package/vendor/Package.internal.152.mjs +1 -1
- package/vendor/Package.internal.153.cjs +1 -1
- package/vendor/Package.internal.153.mjs +1 -1
- package/vendor/Package.internal.154.cjs +1 -1
- package/vendor/Package.internal.154.mjs +1 -1
- package/vendor/Package.internal.155.cjs +1 -1
- package/vendor/Package.internal.155.mjs +1 -1
- package/vendor/Package.internal.156.cjs +1 -1
- package/vendor/Package.internal.156.mjs +1 -1
- package/vendor/Package.internal.157.cjs +1 -1
- package/vendor/Package.internal.157.mjs +1 -1
- package/vendor/Package.internal.158.cjs +1 -1
- package/vendor/Package.internal.158.mjs +1 -1
- package/vendor/Package.internal.159.cjs +1 -1
- package/vendor/Package.internal.159.mjs +1 -1
- package/vendor/Package.internal.16.cjs +1 -1
- package/vendor/Package.internal.16.mjs +1 -1
- package/vendor/Package.internal.160.cjs +1 -1
- package/vendor/Package.internal.160.mjs +1 -1
- package/vendor/Package.internal.161.cjs +1 -1
- package/vendor/Package.internal.161.mjs +1 -1
- package/vendor/Package.internal.162.cjs +1 -1
- package/vendor/Package.internal.162.mjs +1 -1
- package/vendor/Package.internal.163.cjs +1 -1
- package/vendor/Package.internal.163.mjs +1 -1
- package/vendor/Package.internal.164.cjs +1 -1
- package/vendor/Package.internal.164.mjs +1 -1
- package/vendor/Package.internal.165.cjs +1 -1
- package/vendor/Package.internal.165.mjs +1 -1
- package/vendor/Package.internal.166.cjs +1 -1
- package/vendor/Package.internal.166.mjs +1 -1
- package/vendor/Package.internal.167.cjs +1 -1
- package/vendor/Package.internal.167.mjs +1 -1
- package/vendor/Package.internal.168.cjs +1 -1
- package/vendor/Package.internal.168.mjs +1 -1
- package/vendor/Package.internal.169.cjs +1 -1
- package/vendor/Package.internal.169.mjs +1 -1
- package/vendor/Package.internal.17.cjs +1 -1
- package/vendor/Package.internal.17.mjs +1 -1
- package/vendor/Package.internal.170.cjs +1 -1
- package/vendor/Package.internal.170.mjs +1 -1
- package/vendor/Package.internal.171.cjs +1 -1
- package/vendor/Package.internal.171.mjs +1 -1
- package/vendor/Package.internal.172.cjs +1 -1
- package/vendor/Package.internal.172.mjs +1 -1
- package/vendor/Package.internal.173.cjs +1 -1
- package/vendor/Package.internal.173.mjs +1 -1
- package/vendor/Package.internal.174.cjs +1 -1
- package/vendor/Package.internal.174.mjs +1 -1
- package/vendor/Package.internal.175.cjs +1 -1
- package/vendor/Package.internal.175.mjs +1 -1
- package/vendor/Package.internal.176.cjs +1 -1
- package/vendor/Package.internal.176.mjs +1 -1
- package/vendor/Package.internal.177.cjs +1 -1
- package/vendor/Package.internal.177.mjs +1 -1
- package/vendor/Package.internal.178.cjs +1 -1
- package/vendor/Package.internal.178.mjs +1 -1
- package/vendor/Package.internal.179.cjs +1 -1
- package/vendor/Package.internal.179.mjs +1 -1
- package/vendor/Package.internal.18.cjs +1 -1
- package/vendor/Package.internal.18.mjs +1 -1
- package/vendor/Package.internal.180.cjs +1 -1
- package/vendor/Package.internal.180.mjs +1 -1
- package/vendor/Package.internal.181.cjs +1 -1
- package/vendor/Package.internal.181.mjs +1 -1
- package/vendor/Package.internal.182.cjs +1 -1
- package/vendor/Package.internal.182.mjs +1 -1
- package/vendor/Package.internal.183.cjs +1 -1
- package/vendor/Package.internal.183.mjs +1 -1
- package/vendor/Package.internal.184.cjs +1 -1
- package/vendor/Package.internal.184.mjs +1 -1
- package/vendor/Package.internal.185.cjs +1 -1
- package/vendor/Package.internal.185.mjs +1 -1
- package/vendor/Package.internal.186.cjs +1 -1
- package/vendor/Package.internal.186.mjs +1 -1
- package/vendor/Package.internal.187.cjs +1 -1
- package/vendor/Package.internal.187.mjs +1 -1
- package/vendor/Package.internal.188.cjs +1 -1
- package/vendor/Package.internal.188.mjs +1 -1
- package/vendor/Package.internal.189.cjs +1 -1
- package/vendor/Package.internal.189.mjs +1 -1
- package/vendor/Package.internal.19.cjs +1 -1
- package/vendor/Package.internal.19.mjs +1 -1
- package/vendor/Package.internal.190.cjs +1 -1
- package/vendor/Package.internal.190.mjs +1 -1
- package/vendor/Package.internal.191.cjs +1 -1
- package/vendor/Package.internal.191.mjs +1 -1
- package/vendor/Package.internal.192.cjs +1 -1
- package/vendor/Package.internal.192.mjs +1 -1
- package/vendor/Package.internal.193.cjs +1 -1
- package/vendor/Package.internal.193.mjs +1 -1
- package/vendor/Package.internal.194.cjs +1 -1
- package/vendor/Package.internal.194.mjs +1 -1
- package/vendor/Package.internal.195.cjs +1 -1
- package/vendor/Package.internal.195.mjs +1 -1
- package/vendor/Package.internal.196.cjs +1 -1
- package/vendor/Package.internal.196.mjs +1 -1
- package/vendor/Package.internal.197.cjs +1 -1
- package/vendor/Package.internal.197.mjs +1 -1
- package/vendor/Package.internal.198.cjs +1 -1
- package/vendor/Package.internal.198.mjs +1 -1
- package/vendor/Package.internal.2.cjs +1 -1
- package/vendor/Package.internal.2.mjs +1 -1
- package/vendor/Package.internal.20.cjs +1 -1
- package/vendor/Package.internal.20.mjs +1 -1
- package/vendor/Package.internal.21.cjs +1 -1
- package/vendor/Package.internal.21.mjs +1 -1
- package/vendor/Package.internal.22.cjs +1 -1
- package/vendor/Package.internal.22.mjs +1 -1
- package/vendor/Package.internal.23.cjs +1 -1
- package/vendor/Package.internal.23.mjs +1 -1
- package/vendor/Package.internal.24.cjs +1 -1
- package/vendor/Package.internal.24.mjs +1 -1
- package/vendor/Package.internal.25.cjs +1 -1
- package/vendor/Package.internal.25.mjs +1 -1
- package/vendor/Package.internal.26.cjs +1 -1
- package/vendor/Package.internal.26.mjs +1 -1
- package/vendor/Package.internal.27.cjs +1 -1
- package/vendor/Package.internal.27.mjs +1 -1
- package/vendor/Package.internal.28.cjs +1 -1
- package/vendor/Package.internal.28.mjs +1 -1
- package/vendor/Package.internal.29.cjs +1 -1
- package/vendor/Package.internal.29.mjs +1 -1
- package/vendor/Package.internal.3.cjs +305 -568
- package/vendor/Package.internal.3.mjs +415 -678
- package/vendor/Package.internal.30.cjs +1 -1
- package/vendor/Package.internal.30.mjs +1 -1
- package/vendor/Package.internal.31.cjs +1 -1
- package/vendor/Package.internal.31.mjs +1 -1
- package/vendor/Package.internal.32.cjs +1 -1
- package/vendor/Package.internal.32.mjs +1 -1
- package/vendor/Package.internal.33.cjs +1 -1
- package/vendor/Package.internal.33.mjs +1 -1
- package/vendor/Package.internal.34.cjs +1 -1
- package/vendor/Package.internal.34.mjs +1 -1
- package/vendor/Package.internal.35.cjs +1 -1
- package/vendor/Package.internal.35.mjs +1 -1
- package/vendor/Package.internal.36.cjs +1 -1
- package/vendor/Package.internal.36.mjs +1 -1
- package/vendor/Package.internal.37.cjs +1 -1
- package/vendor/Package.internal.37.mjs +1 -1
- package/vendor/Package.internal.38.cjs +1 -1
- package/vendor/Package.internal.38.mjs +1 -1
- package/vendor/Package.internal.39.cjs +1 -1
- package/vendor/Package.internal.39.mjs +1 -1
- package/vendor/Package.internal.4.cjs +1 -1
- package/vendor/Package.internal.4.mjs +1 -1
- package/vendor/Package.internal.40.cjs +1 -1
- package/vendor/Package.internal.40.mjs +1 -1
- package/vendor/Package.internal.41.cjs +1 -1
- package/vendor/Package.internal.41.mjs +1 -1
- package/vendor/Package.internal.42.cjs +1 -1
- package/vendor/Package.internal.42.mjs +1 -1
- package/vendor/Package.internal.43.cjs +1 -1
- package/vendor/Package.internal.43.mjs +1 -1
- package/vendor/Package.internal.44.cjs +1 -1
- package/vendor/Package.internal.44.mjs +1 -1
- package/vendor/Package.internal.45.cjs +1 -1
- package/vendor/Package.internal.45.mjs +1 -1
- package/vendor/Package.internal.46.cjs +1 -1
- package/vendor/Package.internal.46.mjs +1 -1
- package/vendor/Package.internal.47.cjs +1 -1
- package/vendor/Package.internal.47.mjs +1 -1
- package/vendor/Package.internal.48.cjs +1 -1
- package/vendor/Package.internal.48.mjs +1 -1
- package/vendor/Package.internal.49.cjs +1 -1
- package/vendor/Package.internal.49.mjs +1 -1
- package/vendor/Package.internal.5.cjs +1 -1
- package/vendor/Package.internal.5.mjs +1 -1
- package/vendor/Package.internal.50.cjs +1 -1
- package/vendor/Package.internal.50.mjs +1 -1
- package/vendor/Package.internal.51.cjs +1 -1
- package/vendor/Package.internal.51.mjs +1 -1
- package/vendor/Package.internal.52.cjs +1 -1
- package/vendor/Package.internal.52.mjs +1 -1
- package/vendor/Package.internal.53.cjs +1 -1
- package/vendor/Package.internal.53.mjs +1 -1
- package/vendor/Package.internal.54.cjs +1 -1
- package/vendor/Package.internal.54.mjs +1 -1
- package/vendor/Package.internal.55.cjs +1 -1
- package/vendor/Package.internal.55.mjs +1 -1
- package/vendor/Package.internal.56.cjs +1 -1
- package/vendor/Package.internal.56.mjs +1 -1
- package/vendor/Package.internal.57.cjs +1 -1
- package/vendor/Package.internal.57.mjs +1 -1
- package/vendor/Package.internal.58.cjs +1 -1
- package/vendor/Package.internal.58.mjs +1 -1
- package/vendor/Package.internal.59.cjs +1 -1
- package/vendor/Package.internal.59.mjs +1 -1
- package/vendor/Package.internal.6.cjs +1 -1
- package/vendor/Package.internal.6.mjs +1 -1
- package/vendor/Package.internal.60.cjs +1 -1
- package/vendor/Package.internal.60.mjs +1 -1
- package/vendor/Package.internal.61.cjs +1 -1
- package/vendor/Package.internal.61.mjs +1 -1
- package/vendor/Package.internal.62.cjs +1 -1
- package/vendor/Package.internal.62.mjs +1 -1
- package/vendor/Package.internal.63.cjs +1 -1
- package/vendor/Package.internal.63.mjs +1 -1
- package/vendor/Package.internal.64.cjs +1 -1
- package/vendor/Package.internal.64.mjs +1 -1
- package/vendor/Package.internal.65.cjs +1 -1
- package/vendor/Package.internal.65.mjs +1 -1
- package/vendor/Package.internal.66.cjs +1 -1
- package/vendor/Package.internal.66.mjs +1 -1
- package/vendor/Package.internal.67.cjs +1 -1
- package/vendor/Package.internal.67.mjs +1 -1
- package/vendor/Package.internal.68.cjs +1 -1
- package/vendor/Package.internal.68.mjs +1 -1
- package/vendor/Package.internal.69.cjs +1 -1
- package/vendor/Package.internal.69.mjs +1 -1
- package/vendor/Package.internal.7.cjs +1 -1
- package/vendor/Package.internal.7.mjs +1 -1
- package/vendor/Package.internal.70.cjs +1 -1
- package/vendor/Package.internal.70.mjs +1 -1
- package/vendor/Package.internal.71.cjs +1 -1
- package/vendor/Package.internal.71.mjs +1 -1
- package/vendor/Package.internal.72.cjs +1 -1
- package/vendor/Package.internal.72.mjs +1 -1
- package/vendor/Package.internal.73.cjs +1 -1
- package/vendor/Package.internal.73.mjs +1 -1
- package/vendor/Package.internal.74.cjs +1 -1
- package/vendor/Package.internal.74.mjs +1 -1
- package/vendor/Package.internal.75.cjs +1 -1
- package/vendor/Package.internal.75.mjs +1 -1
- package/vendor/Package.internal.76.cjs +1032 -629
- package/vendor/Package.internal.76.mjs +1025 -630
- package/vendor/Package.internal.77.cjs +1 -1
- package/vendor/Package.internal.77.mjs +1 -1
- package/vendor/Package.internal.78.cjs +1 -1
- package/vendor/Package.internal.78.mjs +1 -1
- package/vendor/Package.internal.79.cjs +1 -1
- package/vendor/Package.internal.79.mjs +1 -1
- package/vendor/Package.internal.8.cjs +1 -1
- package/vendor/Package.internal.8.mjs +1 -1
- package/vendor/Package.internal.80.cjs +1 -1
- package/vendor/Package.internal.80.mjs +1 -1
- package/vendor/Package.internal.81.cjs +1 -1
- package/vendor/Package.internal.81.mjs +1 -1
- package/vendor/Package.internal.82.cjs +1 -1
- package/vendor/Package.internal.82.mjs +1 -1
- package/vendor/Package.internal.83.cjs +1 -1
- package/vendor/Package.internal.83.mjs +1 -1
- package/vendor/Package.internal.84.cjs +1 -1
- package/vendor/Package.internal.84.mjs +1 -1
- package/vendor/Package.internal.85.cjs +1 -1
- package/vendor/Package.internal.85.mjs +1 -1
- package/vendor/Package.internal.86.cjs +1 -1
- package/vendor/Package.internal.86.mjs +1 -1
- package/vendor/Package.internal.87.cjs +1 -1
- package/vendor/Package.internal.87.mjs +1 -1
- package/vendor/Package.internal.88.cjs +1 -1
- package/vendor/Package.internal.88.mjs +1 -1
- package/vendor/Package.internal.89.cjs +1 -1
- package/vendor/Package.internal.89.mjs +1 -1
- package/vendor/Package.internal.9.cjs +1 -1
- package/vendor/Package.internal.9.mjs +1 -1
- package/vendor/Package.internal.90.cjs +1 -1
- package/vendor/Package.internal.90.mjs +1 -1
- package/vendor/Package.internal.91.cjs +1 -1
- package/vendor/Package.internal.91.mjs +1 -1
- package/vendor/Package.internal.92.cjs +1 -1
- package/vendor/Package.internal.92.mjs +1 -1
- package/vendor/Package.internal.93.cjs +1 -1
- package/vendor/Package.internal.93.mjs +1 -1
- package/vendor/Package.internal.94.cjs +1 -1
- package/vendor/Package.internal.94.mjs +1 -1
- package/vendor/Package.internal.95.cjs +1 -1
- package/vendor/Package.internal.95.mjs +1 -1
- package/vendor/Package.internal.96.cjs +1 -1
- package/vendor/Package.internal.96.mjs +1 -1
- package/vendor/Package.internal.97.cjs +1 -1
- package/vendor/Package.internal.97.mjs +1 -1
- package/vendor/Package.internal.98.cjs +1 -1
- package/vendor/Package.internal.98.mjs +1 -1
- package/vendor/Package.internal.99.cjs +1 -1
- package/vendor/Package.internal.99.mjs +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Build Date: Sun Nov 23 2025 18:
|
|
1
|
+
/* Build Date: Sun Nov 23 2025 22:18:33 GMT+0800 (China Standard Time) */
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
const e = require("process");
|
|
@@ -23,9 +23,9 @@ const c = require("./Package.internal.6.cjs");
|
|
|
23
23
|
|
|
24
24
|
const d = require("path");
|
|
25
25
|
|
|
26
|
-
const
|
|
26
|
+
const h = require("./Package.internal.7.cjs");
|
|
27
27
|
|
|
28
|
-
const
|
|
28
|
+
const u = require("zlib");
|
|
29
29
|
|
|
30
30
|
const f = require("http2");
|
|
31
31
|
|
|
@@ -59,7 +59,7 @@ const w = S(o);
|
|
|
59
59
|
|
|
60
60
|
const k = S(d);
|
|
61
61
|
|
|
62
|
-
const M = S(
|
|
62
|
+
const M = S(u);
|
|
63
63
|
|
|
64
64
|
const P = S(f);
|
|
65
65
|
|
|
@@ -67,13 +67,13 @@ const I = S(p);
|
|
|
67
67
|
|
|
68
68
|
const A = S(g);
|
|
69
69
|
|
|
70
|
-
const
|
|
70
|
+
const L = S(m);
|
|
71
71
|
|
|
72
|
-
const
|
|
72
|
+
const N = S(C);
|
|
73
73
|
|
|
74
74
|
exports.src = {};
|
|
75
75
|
|
|
76
|
-
var
|
|
76
|
+
var O = {};
|
|
77
77
|
|
|
78
78
|
var D = {};
|
|
79
79
|
|
|
@@ -162,8 +162,8 @@ const H = {
|
|
|
162
162
|
};
|
|
163
163
|
let c = l;
|
|
164
164
|
let d = r.LogVerbosity.ERROR;
|
|
165
|
-
const
|
|
166
|
-
switch (
|
|
165
|
+
const h = (n = (t = process.env.GRPC_NODE_VERBOSITY) !== null && t !== void 0 ? t : process.env.GRPC_VERBOSITY) !== null && n !== void 0 ? n : "";
|
|
166
|
+
switch (h.toUpperCase()) {
|
|
167
167
|
case "DEBUG":
|
|
168
168
|
d = r.LogVerbosity.DEBUG;
|
|
169
169
|
break;
|
|
@@ -180,8 +180,8 @@ const H = {
|
|
|
180
180
|
d = r.LogVerbosity.NONE;
|
|
181
181
|
break;
|
|
182
182
|
}
|
|
183
|
-
const
|
|
184
|
-
e.getLogger =
|
|
183
|
+
const u = () => c;
|
|
184
|
+
e.getLogger = u;
|
|
185
185
|
const f = e => {
|
|
186
186
|
c = e;
|
|
187
187
|
};
|
|
@@ -451,11 +451,11 @@ D.Metadata = Metadata;
|
|
|
451
451
|
|
|
452
452
|
const ie = e => Buffer.isBuffer(e) ? e.toString("base64") : e;
|
|
453
453
|
|
|
454
|
-
Object.defineProperty(
|
|
454
|
+
Object.defineProperty(O, "__esModule", {
|
|
455
455
|
value: true
|
|
456
456
|
});
|
|
457
457
|
|
|
458
|
-
|
|
458
|
+
O.CallCredentials = void 0;
|
|
459
459
|
|
|
460
460
|
const se = D;
|
|
461
461
|
|
|
@@ -503,7 +503,7 @@ class CallCredentials {
|
|
|
503
503
|
}
|
|
504
504
|
}
|
|
505
505
|
|
|
506
|
-
|
|
506
|
+
O.CallCredentials = CallCredentials;
|
|
507
507
|
|
|
508
508
|
class ComposedCallCredentials extends CallCredentials {
|
|
509
509
|
constructor(e) {
|
|
@@ -588,7 +588,7 @@ Object.defineProperty(le, "__esModule", {
|
|
|
588
588
|
|
|
589
589
|
le.CIPHER_SUITES = void 0;
|
|
590
590
|
|
|
591
|
-
le.getDefaultRootsData =
|
|
591
|
+
le.getDefaultRootsData = ue;
|
|
592
592
|
|
|
593
593
|
const ce = b.default;
|
|
594
594
|
|
|
@@ -596,14 +596,14 @@ le.CIPHER_SUITES = process.env.GRPC_SSL_CIPHER_SUITES;
|
|
|
596
596
|
|
|
597
597
|
const de = process.env.GRPC_DEFAULT_SSL_ROOTS_FILE_PATH;
|
|
598
598
|
|
|
599
|
-
let
|
|
599
|
+
let he = null;
|
|
600
600
|
|
|
601
|
-
function
|
|
601
|
+
function ue() {
|
|
602
602
|
if (de) {
|
|
603
|
-
if (
|
|
604
|
-
|
|
603
|
+
if (he === null) {
|
|
604
|
+
he = ce.readFileSync(de);
|
|
605
605
|
}
|
|
606
|
-
return
|
|
606
|
+
return he;
|
|
607
607
|
}
|
|
608
608
|
return null;
|
|
609
609
|
}
|
|
@@ -785,15 +785,15 @@ oe.createCertificateProviderChannelCredentials = Fe;
|
|
|
785
785
|
|
|
786
786
|
const Pe = T.default;
|
|
787
787
|
|
|
788
|
-
const Ie =
|
|
788
|
+
const Ie = O;
|
|
789
789
|
|
|
790
790
|
const Ae = le;
|
|
791
791
|
|
|
792
|
-
const
|
|
792
|
+
const Le = fe;
|
|
793
793
|
|
|
794
|
-
const
|
|
794
|
+
const Ne = ye;
|
|
795
795
|
|
|
796
|
-
const
|
|
796
|
+
const Oe = x;
|
|
797
797
|
|
|
798
798
|
const De = B;
|
|
799
799
|
|
|
@@ -871,13 +871,13 @@ function Be(e, t, n, i) {
|
|
|
871
871
|
};
|
|
872
872
|
let o = n;
|
|
873
873
|
if ("grpc.http_connect_target" in i) {
|
|
874
|
-
const e = (0,
|
|
874
|
+
const e = (0, Le.parseUri)(i["grpc.http_connect_target"]);
|
|
875
875
|
if (e) {
|
|
876
876
|
o = e;
|
|
877
877
|
}
|
|
878
878
|
}
|
|
879
|
-
const l = (0,
|
|
880
|
-
const c = (0,
|
|
879
|
+
const l = (0, Ne.getDefaultAuthority)(o);
|
|
880
|
+
const c = (0, Le.splitHostPort)(l);
|
|
881
881
|
const d = (s = c === null || c === void 0 ? void 0 : c.host) !== null && s !== void 0 ? s : l;
|
|
882
882
|
a.host = d;
|
|
883
883
|
if (t.checkServerIdentity) {
|
|
@@ -1058,7 +1058,7 @@ class CertificateProviderChannelCredentialsImpl extends ChannelCredentials {
|
|
|
1058
1058
|
ciphers: Ae.CIPHER_SUITES
|
|
1059
1059
|
});
|
|
1060
1060
|
} catch (e) {
|
|
1061
|
-
(0,
|
|
1061
|
+
(0, Oe.log)(De.LogVerbosity.ERROR, "Failed to createSecureContext with error " + e.message);
|
|
1062
1062
|
return null;
|
|
1063
1063
|
}
|
|
1064
1064
|
}
|
|
@@ -1176,17 +1176,17 @@ function We() {
|
|
|
1176
1176
|
je.isLoadBalancerNameRegistered = l;
|
|
1177
1177
|
je.parseLoadBalancingConfig = c;
|
|
1178
1178
|
je.getDefaultConfig = d;
|
|
1179
|
-
je.selectLbConfigFromList =
|
|
1179
|
+
je.selectLbConfigFromList = h;
|
|
1180
1180
|
const e = x;
|
|
1181
1181
|
const t = B;
|
|
1182
1182
|
function n(e, t) {
|
|
1183
|
-
var n, i, s, r, a, o, l, c, d,
|
|
1183
|
+
var n, i, s, r, a, o, l, c, d, h;
|
|
1184
1184
|
return {
|
|
1185
1185
|
createSubchannel: (i = (n = t.createSubchannel) === null || n === void 0 ? void 0 : n.bind(t)) !== null && i !== void 0 ? i : e.createSubchannel.bind(e),
|
|
1186
1186
|
updateState: (r = (s = t.updateState) === null || s === void 0 ? void 0 : s.bind(t)) !== null && r !== void 0 ? r : e.updateState.bind(e),
|
|
1187
1187
|
requestReresolution: (o = (a = t.requestReresolution) === null || a === void 0 ? void 0 : a.bind(t)) !== null && o !== void 0 ? o : e.requestReresolution.bind(e),
|
|
1188
1188
|
addChannelzChild: (c = (l = t.addChannelzChild) === null || l === void 0 ? void 0 : l.bind(t)) !== null && c !== void 0 ? c : e.addChannelzChild.bind(e),
|
|
1189
|
-
removeChannelzChild: (
|
|
1189
|
+
removeChannelzChild: (h = (d = t.removeChannelzChild) === null || d === void 0 ? void 0 : d.bind(t)) !== null && h !== void 0 ? h : e.removeChannelzChild.bind(e)
|
|
1190
1190
|
};
|
|
1191
1191
|
}
|
|
1192
1192
|
const i = {};
|
|
@@ -1233,7 +1233,7 @@ function We() {
|
|
|
1233
1233
|
}
|
|
1234
1234
|
return new i[s].LoadBalancingConfig;
|
|
1235
1235
|
}
|
|
1236
|
-
function
|
|
1236
|
+
function h(n, r = false) {
|
|
1237
1237
|
for (const i of n) {
|
|
1238
1238
|
try {
|
|
1239
1239
|
return c(i);
|
|
@@ -1500,7 +1500,7 @@ function Ge() {
|
|
|
1500
1500
|
}
|
|
1501
1501
|
return t;
|
|
1502
1502
|
}
|
|
1503
|
-
function
|
|
1503
|
+
function h(e) {
|
|
1504
1504
|
if (!("serviceConfig" in e)) {
|
|
1505
1505
|
throw new Error("Invalid service config choice: missing service config");
|
|
1506
1506
|
}
|
|
@@ -1550,12 +1550,12 @@ function Ge() {
|
|
|
1550
1550
|
}
|
|
1551
1551
|
return t;
|
|
1552
1552
|
}
|
|
1553
|
-
function
|
|
1553
|
+
function u(t, n) {
|
|
1554
1554
|
if (!Array.isArray(t)) {
|
|
1555
1555
|
throw new Error("Invalid service config list");
|
|
1556
1556
|
}
|
|
1557
1557
|
for (const s of t) {
|
|
1558
|
-
const t =
|
|
1558
|
+
const t = h(s);
|
|
1559
1559
|
if (typeof t.percentage === "number" && n > t.percentage) {
|
|
1560
1560
|
continue;
|
|
1561
1561
|
}
|
|
@@ -1590,7 +1590,7 @@ function Ge() {
|
|
|
1590
1590
|
if (n.length > 0 && n[0].startsWith("grpc_config=")) {
|
|
1591
1591
|
const e = n.join("").substring("grpc_config=".length);
|
|
1592
1592
|
const i = JSON.parse(e);
|
|
1593
|
-
return
|
|
1593
|
+
return u(i, t);
|
|
1594
1594
|
}
|
|
1595
1595
|
}
|
|
1596
1596
|
return null;
|
|
@@ -1958,9 +1958,9 @@ const ct = et();
|
|
|
1958
1958
|
|
|
1959
1959
|
const dt = B;
|
|
1960
1960
|
|
|
1961
|
-
const
|
|
1961
|
+
const ht = D;
|
|
1962
1962
|
|
|
1963
|
-
const
|
|
1963
|
+
const ut = x;
|
|
1964
1964
|
|
|
1965
1965
|
const ft = B;
|
|
1966
1966
|
|
|
@@ -1971,7 +1971,7 @@ const gt = it();
|
|
|
1971
1971
|
const mt = "resolving_load_balancer";
|
|
1972
1972
|
|
|
1973
1973
|
function vt(e) {
|
|
1974
|
-
|
|
1974
|
+
ut.trace(ft.LogVerbosity.DEBUG, mt, e);
|
|
1975
1975
|
}
|
|
1976
1976
|
|
|
1977
1977
|
const Ct = [ "SERVICE_AND_METHOD", "SERVICE", "EMPTY" ];
|
|
@@ -2124,7 +2124,7 @@ class ResolvingLoadBalancer {
|
|
|
2124
2124
|
this.handleResolutionFailure({
|
|
2125
2125
|
code: dt.Status.UNAVAILABLE,
|
|
2126
2126
|
details: "All load balancer options in service config are not compatible",
|
|
2127
|
-
metadata: new
|
|
2127
|
+
metadata: new ht.Metadata
|
|
2128
2128
|
});
|
|
2129
2129
|
} else {
|
|
2130
2130
|
a = this.childLoadBalancer.updateAddressList(e, r, Object.assign(Object.assign({}, this.channelOptions), t), i);
|
|
@@ -2269,11 +2269,11 @@ wt.subchannelAddressEqual = Pt;
|
|
|
2269
2269
|
|
|
2270
2270
|
wt.subchannelAddressToString = It;
|
|
2271
2271
|
|
|
2272
|
-
wt.stringToSubchannelAddress =
|
|
2272
|
+
wt.stringToSubchannelAddress = Lt;
|
|
2273
2273
|
|
|
2274
|
-
wt.endpointEqual =
|
|
2274
|
+
wt.endpointEqual = Nt;
|
|
2275
2275
|
|
|
2276
|
-
wt.endpointToString =
|
|
2276
|
+
wt.endpointToString = Ot;
|
|
2277
2277
|
|
|
2278
2278
|
wt.endpointHasAddress = Dt;
|
|
2279
2279
|
|
|
@@ -2311,7 +2311,7 @@ function It(e) {
|
|
|
2311
2311
|
|
|
2312
2312
|
const At = 443;
|
|
2313
2313
|
|
|
2314
|
-
function
|
|
2314
|
+
function Lt(e, t) {
|
|
2315
2315
|
if ((0, kt.isIP)(e)) {
|
|
2316
2316
|
return {
|
|
2317
2317
|
host: e,
|
|
@@ -2324,7 +2324,7 @@ function Nt(e, t) {
|
|
|
2324
2324
|
}
|
|
2325
2325
|
}
|
|
2326
2326
|
|
|
2327
|
-
function
|
|
2327
|
+
function Nt(e, t) {
|
|
2328
2328
|
if (e.addresses.length !== t.addresses.length) {
|
|
2329
2329
|
return false;
|
|
2330
2330
|
}
|
|
@@ -2336,7 +2336,7 @@ function Ot(e, t) {
|
|
|
2336
2336
|
return true;
|
|
2337
2337
|
}
|
|
2338
2338
|
|
|
2339
|
-
function
|
|
2339
|
+
function Ot(e) {
|
|
2340
2340
|
return "[" + e.addresses.map(It).join(", ") + "]";
|
|
2341
2341
|
}
|
|
2342
2342
|
|
|
@@ -3103,7 +3103,7 @@ function tn() {
|
|
|
3103
3103
|
function d(e) {
|
|
3104
3104
|
return typeof e === "function";
|
|
3105
3105
|
}
|
|
3106
|
-
function
|
|
3106
|
+
function h(e) {
|
|
3107
3107
|
var t;
|
|
3108
3108
|
return ((t = e.stack) === null || t === void 0 ? void 0 : t.split("\n").slice(1).join("\n")) || "no stack trace available";
|
|
3109
3109
|
}
|
|
@@ -3193,9 +3193,9 @@ function tn() {
|
|
|
3193
3193
|
};
|
|
3194
3194
|
}
|
|
3195
3195
|
}
|
|
3196
|
-
makeUnaryRequest(t, n, s, d,
|
|
3196
|
+
makeUnaryRequest(t, n, s, d, u, f, p) {
|
|
3197
3197
|
var g, m;
|
|
3198
|
-
const v = this.checkOptionalUnaryResponseArguments(
|
|
3198
|
+
const v = this.checkOptionalUnaryResponseArguments(u, f, p);
|
|
3199
3199
|
const C = {
|
|
3200
3200
|
path: t,
|
|
3201
3201
|
requestStream: false,
|
|
@@ -3244,7 +3244,7 @@ function tn() {
|
|
|
3244
3244
|
R = true;
|
|
3245
3245
|
if (t.code === i.Status.OK) {
|
|
3246
3246
|
if (E === null) {
|
|
3247
|
-
const n =
|
|
3247
|
+
const n = h(_);
|
|
3248
3248
|
S.callback((0, e.callErrorFromStatus)({
|
|
3249
3249
|
code: i.Status.UNIMPLEMENTED,
|
|
3250
3250
|
details: "No message received",
|
|
@@ -3254,7 +3254,7 @@ function tn() {
|
|
|
3254
3254
|
S.callback(null, E);
|
|
3255
3255
|
}
|
|
3256
3256
|
} else {
|
|
3257
|
-
const n =
|
|
3257
|
+
const n = h(_);
|
|
3258
3258
|
S.callback((0, e.callErrorFromStatus)(t, n));
|
|
3259
3259
|
}
|
|
3260
3260
|
_ = null;
|
|
@@ -3265,9 +3265,9 @@ function tn() {
|
|
|
3265
3265
|
b.halfClose();
|
|
3266
3266
|
return y;
|
|
3267
3267
|
}
|
|
3268
|
-
makeClientStreamRequest(t, n, s, d,
|
|
3268
|
+
makeClientStreamRequest(t, n, s, d, u, f) {
|
|
3269
3269
|
var p, g;
|
|
3270
|
-
const m = this.checkOptionalUnaryResponseArguments(d,
|
|
3270
|
+
const m = this.checkOptionalUnaryResponseArguments(d, u, f);
|
|
3271
3271
|
const v = {
|
|
3272
3272
|
path: t,
|
|
3273
3273
|
requestStream: true,
|
|
@@ -3316,7 +3316,7 @@ function tn() {
|
|
|
3316
3316
|
E = true;
|
|
3317
3317
|
if (t.code === i.Status.OK) {
|
|
3318
3318
|
if (b === null) {
|
|
3319
|
-
const n =
|
|
3319
|
+
const n = h(R);
|
|
3320
3320
|
C.callback((0, e.callErrorFromStatus)({
|
|
3321
3321
|
code: i.Status.UNIMPLEMENTED,
|
|
3322
3322
|
details: "No message received",
|
|
@@ -3326,7 +3326,7 @@ function tn() {
|
|
|
3326
3326
|
C.callback(null, b);
|
|
3327
3327
|
}
|
|
3328
3328
|
} else {
|
|
3329
|
-
const n =
|
|
3329
|
+
const n = h(R);
|
|
3330
3330
|
C.callback((0, e.callErrorFromStatus)(t, n));
|
|
3331
3331
|
}
|
|
3332
3332
|
R = null;
|
|
@@ -3358,9 +3358,9 @@ function tn() {
|
|
|
3358
3358
|
options: i
|
|
3359
3359
|
};
|
|
3360
3360
|
}
|
|
3361
|
-
makeServerStreamRequest(t, n, s, d,
|
|
3361
|
+
makeServerStreamRequest(t, n, s, d, u, f) {
|
|
3362
3362
|
var p, g;
|
|
3363
|
-
const m = this.checkMetadataAndOptions(
|
|
3363
|
+
const m = this.checkMetadataAndOptions(u, f);
|
|
3364
3364
|
const v = {
|
|
3365
3365
|
path: t,
|
|
3366
3366
|
requestStream: false,
|
|
@@ -3404,7 +3404,7 @@ function tn() {
|
|
|
3404
3404
|
b = true;
|
|
3405
3405
|
S.push(null);
|
|
3406
3406
|
if (t.code !== i.Status.OK) {
|
|
3407
|
-
const n =
|
|
3407
|
+
const n = h(E);
|
|
3408
3408
|
S.emit("error", (0, e.callErrorFromStatus)(t, n));
|
|
3409
3409
|
}
|
|
3410
3410
|
E = null;
|
|
@@ -3415,9 +3415,9 @@ function tn() {
|
|
|
3415
3415
|
T.halfClose();
|
|
3416
3416
|
return S;
|
|
3417
3417
|
}
|
|
3418
|
-
makeBidiStreamRequest(t, n, s, d,
|
|
3418
|
+
makeBidiStreamRequest(t, n, s, d, u) {
|
|
3419
3419
|
var f, p;
|
|
3420
|
-
const g = this.checkMetadataAndOptions(d,
|
|
3420
|
+
const g = this.checkMetadataAndOptions(d, u);
|
|
3421
3421
|
const m = {
|
|
3422
3422
|
path: t,
|
|
3423
3423
|
requestStream: true,
|
|
@@ -3460,7 +3460,7 @@ function tn() {
|
|
|
3460
3460
|
T = true;
|
|
3461
3461
|
C.push(null);
|
|
3462
3462
|
if (t.code !== i.Status.OK) {
|
|
3463
|
-
const n =
|
|
3463
|
+
const n = h(b);
|
|
3464
3464
|
C.emit("error", (0, e.callErrorFromStatus)(t, n));
|
|
3465
3465
|
}
|
|
3466
3466
|
b = null;
|
|
@@ -3659,7 +3659,7 @@ function dn() {
|
|
|
3659
3659
|
const n = c.protobufjs;
|
|
3660
3660
|
const i = c.descriptorExports;
|
|
3661
3661
|
const s = ln();
|
|
3662
|
-
const r =
|
|
3662
|
+
const r = h.umdExports;
|
|
3663
3663
|
e.Long = r;
|
|
3664
3664
|
function a(e) {
|
|
3665
3665
|
return "@type" in e && typeof e["@type"] === "string";
|
|
@@ -3679,7 +3679,7 @@ function dn() {
|
|
|
3679
3679
|
oneofs: true,
|
|
3680
3680
|
json: true
|
|
3681
3681
|
};
|
|
3682
|
-
function
|
|
3682
|
+
function u(e, t) {
|
|
3683
3683
|
if (e === "") {
|
|
3684
3684
|
return t;
|
|
3685
3685
|
} else {
|
|
@@ -3693,7 +3693,7 @@ function dn() {
|
|
|
3693
3693
|
return e instanceof n.Namespace || e instanceof n.Root;
|
|
3694
3694
|
}
|
|
3695
3695
|
function g(e, t) {
|
|
3696
|
-
const n =
|
|
3696
|
+
const n = u(t, e.name);
|
|
3697
3697
|
if (f(e)) {
|
|
3698
3698
|
return [ [ n, e ] ];
|
|
3699
3699
|
} else {
|
|
@@ -3836,11 +3836,11 @@ function dn() {
|
|
|
3836
3836
|
return rn;
|
|
3837
3837
|
}
|
|
3838
3838
|
|
|
3839
|
-
var
|
|
3839
|
+
var hn;
|
|
3840
3840
|
|
|
3841
|
-
function
|
|
3842
|
-
if (
|
|
3843
|
-
|
|
3841
|
+
function un() {
|
|
3842
|
+
if (hn) return Bt;
|
|
3843
|
+
hn = 1;
|
|
3844
3844
|
Object.defineProperty(Bt, "__esModule", {
|
|
3845
3845
|
value: true
|
|
3846
3846
|
});
|
|
@@ -3873,13 +3873,13 @@ function hn() {
|
|
|
3873
3873
|
server_id: e.id
|
|
3874
3874
|
};
|
|
3875
3875
|
}
|
|
3876
|
-
function
|
|
3876
|
+
function h(e) {
|
|
3877
3877
|
return {
|
|
3878
3878
|
socket_id: e.id,
|
|
3879
3879
|
name: e.name
|
|
3880
3880
|
};
|
|
3881
3881
|
}
|
|
3882
|
-
const
|
|
3882
|
+
const u = 32;
|
|
3883
3883
|
const f = 100;
|
|
3884
3884
|
class ChannelzTraceStub {
|
|
3885
3885
|
constructor() {
|
|
@@ -3912,8 +3912,8 @@ function hn() {
|
|
|
3912
3912
|
childChannel: (n === null || n === void 0 ? void 0 : n.kind) === "channel" ? n : undefined,
|
|
3913
3913
|
childSubchannel: (n === null || n === void 0 ? void 0 : n.kind) === "subchannel" ? n : undefined
|
|
3914
3914
|
});
|
|
3915
|
-
if (this.events.length >=
|
|
3916
|
-
this.events = this.events.slice(
|
|
3915
|
+
if (this.events.length >= u * 2) {
|
|
3916
|
+
this.events = this.events.slice(u);
|
|
3917
3917
|
}
|
|
3918
3918
|
this.eventsLogged += 1;
|
|
3919
3919
|
}
|
|
@@ -4181,7 +4181,7 @@ function hn() {
|
|
|
4181
4181
|
const t = e.getInfo();
|
|
4182
4182
|
const n = [];
|
|
4183
4183
|
t.listenerChildren.sockets.forEach(e => {
|
|
4184
|
-
n.push(
|
|
4184
|
+
n.push(h(e[1].ref));
|
|
4185
4185
|
});
|
|
4186
4186
|
return {
|
|
4187
4187
|
ref: d(e.ref),
|
|
@@ -4237,7 +4237,7 @@ function hn() {
|
|
|
4237
4237
|
const r = s.getInfo();
|
|
4238
4238
|
const a = [];
|
|
4239
4239
|
r.children.sockets.forEach(e => {
|
|
4240
|
-
a.push(
|
|
4240
|
+
a.push(h(e[1].ref));
|
|
4241
4241
|
});
|
|
4242
4242
|
const o = {
|
|
4243
4243
|
ref: c(s.ref),
|
|
@@ -4256,7 +4256,7 @@ function hn() {
|
|
|
4256
4256
|
subchannel: o
|
|
4257
4257
|
});
|
|
4258
4258
|
}
|
|
4259
|
-
function
|
|
4259
|
+
function L(e) {
|
|
4260
4260
|
var t;
|
|
4261
4261
|
if ((0, s.isTcpSubchannelAddress)(e)) {
|
|
4262
4262
|
return {
|
|
@@ -4275,7 +4275,7 @@ function hn() {
|
|
|
4275
4275
|
};
|
|
4276
4276
|
}
|
|
4277
4277
|
}
|
|
4278
|
-
function
|
|
4278
|
+
function N(e, t) {
|
|
4279
4279
|
var n, s, r, a, o;
|
|
4280
4280
|
const l = parseInt(e.request.socket_id, 10);
|
|
4281
4281
|
const c = p["socket"].getElementByKey(l);
|
|
@@ -4287,7 +4287,7 @@ function hn() {
|
|
|
4287
4287
|
return;
|
|
4288
4288
|
}
|
|
4289
4289
|
const d = c.getInfo();
|
|
4290
|
-
const
|
|
4290
|
+
const u = d.security ? {
|
|
4291
4291
|
model: "tls",
|
|
4292
4292
|
tls: {
|
|
4293
4293
|
cipher_suite: d.security.cipherSuiteStandardName ? "standard_name" : "other_name",
|
|
@@ -4298,11 +4298,11 @@ function hn() {
|
|
|
4298
4298
|
}
|
|
4299
4299
|
} : null;
|
|
4300
4300
|
const f = {
|
|
4301
|
-
ref:
|
|
4302
|
-
local: d.localAddress ?
|
|
4303
|
-
remote: d.remoteAddress ?
|
|
4301
|
+
ref: h(c.ref),
|
|
4302
|
+
local: d.localAddress ? L(d.localAddress) : null,
|
|
4303
|
+
remote: d.remoteAddress ? L(d.remoteAddress) : null,
|
|
4304
4304
|
remote_name: (o = d.remoteName) !== null && o !== void 0 ? o : undefined,
|
|
4305
|
-
security:
|
|
4305
|
+
security: u,
|
|
4306
4306
|
data: {
|
|
4307
4307
|
keep_alives_sent: d.keepAlivesSent,
|
|
4308
4308
|
streams_started: d.streamsStarted,
|
|
@@ -4326,7 +4326,7 @@ function hn() {
|
|
|
4326
4326
|
socket: f
|
|
4327
4327
|
});
|
|
4328
4328
|
}
|
|
4329
|
-
function
|
|
4329
|
+
function O(e, t) {
|
|
4330
4330
|
const n = parseInt(e.request.server_id, 10);
|
|
4331
4331
|
const s = p["server"].getElementByKey(n);
|
|
4332
4332
|
if (s === undefined) {
|
|
@@ -4343,7 +4343,7 @@ function hn() {
|
|
|
4343
4343
|
const c = [];
|
|
4344
4344
|
let d;
|
|
4345
4345
|
for (d = l.lowerBound(r); !d.equals(l.end()) && c.length < a; d = d.next()) {
|
|
4346
|
-
c.push(
|
|
4346
|
+
c.push(h(d.pointer[1].ref));
|
|
4347
4347
|
}
|
|
4348
4348
|
t(null, {
|
|
4349
4349
|
socket_ref: c,
|
|
@@ -4357,8 +4357,8 @@ function hn() {
|
|
|
4357
4357
|
GetServer: P,
|
|
4358
4358
|
GetServers: I,
|
|
4359
4359
|
GetSubchannel: A,
|
|
4360
|
-
GetSocket:
|
|
4361
|
-
GetServerSockets:
|
|
4360
|
+
GetSocket: N,
|
|
4361
|
+
GetServerSockets: O
|
|
4362
4362
|
};
|
|
4363
4363
|
}
|
|
4364
4364
|
let x = null;
|
|
@@ -4719,14 +4719,14 @@ Object.defineProperty(In, "__esModule", {
|
|
|
4719
4719
|
value: true
|
|
4720
4720
|
});
|
|
4721
4721
|
|
|
4722
|
-
In.restrictControlPlaneStatusCode =
|
|
4722
|
+
In.restrictControlPlaneStatusCode = Nn;
|
|
4723
4723
|
|
|
4724
4724
|
const An = B;
|
|
4725
4725
|
|
|
4726
|
-
const
|
|
4726
|
+
const Ln = [ An.Status.OK, An.Status.INVALID_ARGUMENT, An.Status.NOT_FOUND, An.Status.ALREADY_EXISTS, An.Status.FAILED_PRECONDITION, An.Status.ABORTED, An.Status.OUT_OF_RANGE, An.Status.DATA_LOSS ];
|
|
4727
4727
|
|
|
4728
|
-
function
|
|
4729
|
-
if (
|
|
4728
|
+
function Nn(e, t) {
|
|
4729
|
+
if (Ln.includes(e)) {
|
|
4730
4730
|
return {
|
|
4731
4731
|
code: An.Status.INTERNAL,
|
|
4732
4732
|
details: `Invalid status from control plane: ${e} ${An.Status[e]} ${t}`
|
|
@@ -4739,21 +4739,21 @@ function On(e, t) {
|
|
|
4739
4739
|
}
|
|
4740
4740
|
}
|
|
4741
4741
|
|
|
4742
|
-
var
|
|
4742
|
+
var On = {};
|
|
4743
4743
|
|
|
4744
|
-
Object.defineProperty(
|
|
4744
|
+
Object.defineProperty(On, "__esModule", {
|
|
4745
4745
|
value: true
|
|
4746
4746
|
});
|
|
4747
4747
|
|
|
4748
|
-
|
|
4748
|
+
On.minDeadline = Dn;
|
|
4749
4749
|
|
|
4750
|
-
|
|
4750
|
+
On.getDeadlineTimeoutString = Bn;
|
|
4751
4751
|
|
|
4752
|
-
|
|
4752
|
+
On.getRelativeTimeout = Un;
|
|
4753
4753
|
|
|
4754
|
-
|
|
4754
|
+
On.deadlineToString = zn;
|
|
4755
4755
|
|
|
4756
|
-
|
|
4756
|
+
On.formatDateDifference = jn;
|
|
4757
4757
|
|
|
4758
4758
|
function Dn(...e) {
|
|
4759
4759
|
let t = Infinity;
|
|
@@ -4901,12 +4901,12 @@ function Gn() {
|
|
|
4901
4901
|
});
|
|
4902
4902
|
fn.SingleSubchannelChannel = void 0;
|
|
4903
4903
|
const e = pn;
|
|
4904
|
-
const t =
|
|
4904
|
+
const t = un();
|
|
4905
4905
|
const n = vn;
|
|
4906
4906
|
const i = Ve;
|
|
4907
4907
|
const s = B;
|
|
4908
4908
|
const r = In;
|
|
4909
|
-
const a =
|
|
4909
|
+
const a = On;
|
|
4910
4910
|
const o = qn();
|
|
4911
4911
|
const l = D;
|
|
4912
4912
|
const c = ye;
|
|
@@ -4926,12 +4926,12 @@ function Gn() {
|
|
|
4926
4926
|
this.readFilterPending = false;
|
|
4927
4927
|
this.writeFilterPending = false;
|
|
4928
4928
|
const c = this.method.split("/");
|
|
4929
|
-
let
|
|
4929
|
+
let h = "";
|
|
4930
4930
|
if (c.length >= 2) {
|
|
4931
|
-
|
|
4931
|
+
h = c[1];
|
|
4932
4932
|
}
|
|
4933
|
-
const
|
|
4934
|
-
this.serviceUrl = `https://${
|
|
4933
|
+
const u = (l = (o = (0, d.splitHostPort)(this.options.host)) === null || o === void 0 ? void 0 : o.host) !== null && l !== void 0 ? l : "localhost";
|
|
4934
|
+
this.serviceUrl = `https://${u}/${h}`;
|
|
4935
4935
|
const f = (0, a.getRelativeTimeout)(i.deadline);
|
|
4936
4936
|
if (f !== Infinity) {
|
|
4937
4937
|
if (f <= 0) {
|
|
@@ -5139,7 +5139,7 @@ function Kn() {
|
|
|
5139
5139
|
const i = B;
|
|
5140
5140
|
const s = fe;
|
|
5141
5141
|
const r = wt;
|
|
5142
|
-
const a =
|
|
5142
|
+
const a = un();
|
|
5143
5143
|
const o = Gn();
|
|
5144
5144
|
const l = "subchannel";
|
|
5145
5145
|
const c = 2147483647;
|
|
@@ -5451,7 +5451,7 @@ function ni() {
|
|
|
5451
5451
|
e.DEFAULT_PORT = void 0;
|
|
5452
5452
|
e.setup = m;
|
|
5453
5453
|
const t = ye;
|
|
5454
|
-
const n =
|
|
5454
|
+
const n = L.default;
|
|
5455
5455
|
const i = Ge();
|
|
5456
5456
|
const s = B;
|
|
5457
5457
|
const r = Xt();
|
|
@@ -5460,8 +5460,8 @@ function ni() {
|
|
|
5460
5460
|
const l = B;
|
|
5461
5461
|
const c = fe;
|
|
5462
5462
|
const d = R.default;
|
|
5463
|
-
const
|
|
5464
|
-
const
|
|
5463
|
+
const h = et();
|
|
5464
|
+
const u = ei();
|
|
5465
5465
|
const f = "dns_resolver";
|
|
5466
5466
|
function p(e) {
|
|
5467
5467
|
o.trace(l.LogVerbosity.DEBUG, f, e);
|
|
@@ -5470,7 +5470,7 @@ function ni() {
|
|
|
5470
5470
|
const g = 3e4;
|
|
5471
5471
|
class DnsResolver {
|
|
5472
5472
|
constructor(t, i, r) {
|
|
5473
|
-
var o, l,
|
|
5473
|
+
var o, l, u;
|
|
5474
5474
|
this.target = t;
|
|
5475
5475
|
this.listener = i;
|
|
5476
5476
|
this.pendingLookupPromise = null;
|
|
@@ -5520,13 +5520,13 @@ function ni() {
|
|
|
5520
5520
|
initialDelay: r["grpc.initial_reconnect_backoff_ms"],
|
|
5521
5521
|
maxDelay: r["grpc.max_reconnect_backoff_ms"]
|
|
5522
5522
|
};
|
|
5523
|
-
this.backoff = new
|
|
5523
|
+
this.backoff = new h.BackoffTimeout(() => {
|
|
5524
5524
|
if (this.continueResolving) {
|
|
5525
5525
|
this.startResolutionWithBackoff();
|
|
5526
5526
|
}
|
|
5527
5527
|
}, m);
|
|
5528
5528
|
this.backoff.unref();
|
|
5529
|
-
this.minTimeBetweenResolutionsMs = (
|
|
5529
|
+
this.minTimeBetweenResolutionsMs = (u = r["grpc.dns_min_time_between_resolutions_ms"]) !== null && u !== void 0 ? u : g;
|
|
5530
5530
|
this.nextResolutionTimer = setTimeout(() => {}, 0);
|
|
5531
5531
|
clearTimeout(this.nextResolutionTimer);
|
|
5532
5532
|
}
|
|
@@ -5619,7 +5619,7 @@ function ni() {
|
|
|
5619
5619
|
}
|
|
5620
5620
|
}
|
|
5621
5621
|
async lookup(e) {
|
|
5622
|
-
if (
|
|
5622
|
+
if (u.GRPC_NODE_USE_ALTERNATIVE_RESOLVER) {
|
|
5623
5623
|
p("Using alternative DNS resolver.");
|
|
5624
5624
|
const t = await Promise.allSettled([ this.alternativeResolver.resolve4(e), this.alternativeResolver.resolve6(e) ]);
|
|
5625
5625
|
if (t.every(e => e.status === "rejected")) {
|
|
@@ -5639,7 +5639,7 @@ function ni() {
|
|
|
5639
5639
|
}));
|
|
5640
5640
|
}
|
|
5641
5641
|
async resolveTxt(e) {
|
|
5642
|
-
if (
|
|
5642
|
+
if (u.GRPC_NODE_USE_ALTERNATIVE_RESOLVER) {
|
|
5643
5643
|
p("Using alternative DNS resolver.");
|
|
5644
5644
|
return this.alternativeResolver.resolveTxt(e);
|
|
5645
5645
|
}
|
|
@@ -5732,12 +5732,12 @@ const ci = fe;
|
|
|
5732
5732
|
|
|
5733
5733
|
const di = A.default;
|
|
5734
5734
|
|
|
5735
|
-
const
|
|
5735
|
+
const hi = ni();
|
|
5736
5736
|
|
|
5737
|
-
const
|
|
5737
|
+
const ui = "proxy";
|
|
5738
5738
|
|
|
5739
5739
|
function fi(e) {
|
|
5740
|
-
oi.trace(si.LogVerbosity.DEBUG,
|
|
5740
|
+
oi.trace(si.LogVerbosity.DEBUG, ui, e);
|
|
5741
5741
|
}
|
|
5742
5742
|
|
|
5743
5743
|
function pi() {
|
|
@@ -5897,7 +5897,7 @@ function Ti(e, t) {
|
|
|
5897
5897
|
if (r === null) {
|
|
5898
5898
|
return Promise.resolve(null);
|
|
5899
5899
|
}
|
|
5900
|
-
const a = `${r.host}:${(n = r.port) !== null && n !== void 0 ? n :
|
|
5900
|
+
const a = `${r.host}:${(n = r.port) !== null && n !== void 0 ? n : hi.DEFAULT_PORT}`;
|
|
5901
5901
|
const o = {
|
|
5902
5902
|
method: "CONNECT",
|
|
5903
5903
|
path: a
|
|
@@ -6053,11 +6053,11 @@ const Ii = _i();
|
|
|
6053
6053
|
|
|
6054
6054
|
const Ai = x;
|
|
6055
6055
|
|
|
6056
|
-
const
|
|
6056
|
+
const Li = B;
|
|
6057
6057
|
|
|
6058
|
-
const
|
|
6058
|
+
const Ni = "subchannel_call";
|
|
6059
6059
|
|
|
6060
|
-
function
|
|
6060
|
+
function Oi(e) {
|
|
6061
6061
|
for (const [t, n] of Object.entries(ki.constants.errno)) {
|
|
6062
6062
|
if (n === e) {
|
|
6063
6063
|
return t;
|
|
@@ -6255,7 +6255,7 @@ class Http2SubchannelCall {
|
|
|
6255
6255
|
});
|
|
6256
6256
|
e.on("error", e => {
|
|
6257
6257
|
if (e.code !== "ERR_HTTP2_STREAM_ERROR") {
|
|
6258
|
-
this.trace("Node error event: message=" + e.message + " code=" + e.code + " errno=" +
|
|
6258
|
+
this.trace("Node error event: message=" + e.message + " code=" + e.code + " errno=" + Oi(e.errno) + " syscall=" + e.syscall);
|
|
6259
6259
|
this.internalError = e;
|
|
6260
6260
|
}
|
|
6261
6261
|
this.callEventTracker.onStreamEnd(false);
|
|
@@ -6286,7 +6286,7 @@ class Http2SubchannelCall {
|
|
|
6286
6286
|
}
|
|
6287
6287
|
}
|
|
6288
6288
|
trace(e) {
|
|
6289
|
-
Ai.trace(
|
|
6289
|
+
Ai.trace(Li.LogVerbosity.DEBUG, Ni, "[" + this.callId + "] " + e);
|
|
6290
6290
|
}
|
|
6291
6291
|
endCall(e) {
|
|
6292
6292
|
if (this.finalStatus === null || this.finalStatus.code === Mi.Status.OK) {
|
|
@@ -6470,7 +6470,7 @@ function Bi() {
|
|
|
6470
6470
|
Yn.Http2SubchannelConnector = void 0;
|
|
6471
6471
|
const e = P.default;
|
|
6472
6472
|
const t = T.default;
|
|
6473
|
-
const n =
|
|
6473
|
+
const n = un();
|
|
6474
6474
|
const i = B;
|
|
6475
6475
|
const s = Qn;
|
|
6476
6476
|
const r = x;
|
|
@@ -6479,8 +6479,8 @@ function Bi() {
|
|
|
6479
6479
|
const l = fe;
|
|
6480
6480
|
const c = R.default;
|
|
6481
6481
|
const d = bi;
|
|
6482
|
-
const
|
|
6483
|
-
const
|
|
6482
|
+
const h = pn;
|
|
6483
|
+
const u = "transport";
|
|
6484
6484
|
const f = "transport_flowctrl";
|
|
6485
6485
|
const p = H.version;
|
|
6486
6486
|
const {HTTP2_HEADER_AUTHORITY: g, HTTP2_HEADER_CONTENT_TYPE: m, HTTP2_HEADER_METHOD: v, HTTP2_HEADER_PATH: C, HTTP2_HEADER_TE: S, HTTP2_HEADER_USER_AGENT: y} = e.constants;
|
|
@@ -6546,7 +6546,7 @@ function Bi() {
|
|
|
6546
6546
|
this.trace("connection closed. hadError=" + e);
|
|
6547
6547
|
this.handleDisconnect();
|
|
6548
6548
|
});
|
|
6549
|
-
if (r.isTracerEnabled(
|
|
6549
|
+
if (r.isTracerEnabled(u)) {
|
|
6550
6550
|
i.on("remoteSettings", e => {
|
|
6551
6551
|
this.trace("new settings received" + (this.session !== i ? " on the old connection" : "") + ": " + JSON.stringify(e));
|
|
6552
6552
|
});
|
|
@@ -6607,7 +6607,7 @@ function Bi() {
|
|
|
6607
6607
|
return l;
|
|
6608
6608
|
}
|
|
6609
6609
|
trace(e) {
|
|
6610
|
-
r.trace(i.LogVerbosity.DEBUG,
|
|
6610
|
+
r.trace(i.LogVerbosity.DEBUG, u, "(" + this.channelzRef.id + ") " + this.subchannelAddressString + " " + e);
|
|
6611
6611
|
}
|
|
6612
6612
|
keepaliveTrace(e) {
|
|
6613
6613
|
r.trace(i.LogVerbosity.DEBUG, "keepalive", "(" + this.channelzRef.id + ") " + this.subchannelAddressString + " " + e);
|
|
@@ -6792,7 +6792,7 @@ function Bi() {
|
|
|
6792
6792
|
}
|
|
6793
6793
|
};
|
|
6794
6794
|
}
|
|
6795
|
-
l = new d.Http2SubchannelCall(a, o, i, this, (0,
|
|
6795
|
+
l = new d.Http2SubchannelCall(a, o, i, this, (0, h.getNextCallNumber)());
|
|
6796
6796
|
this.addActiveCall(l);
|
|
6797
6797
|
return l;
|
|
6798
6798
|
}
|
|
@@ -6820,7 +6820,7 @@ function Bi() {
|
|
|
6820
6820
|
this.isShutdown = false;
|
|
6821
6821
|
}
|
|
6822
6822
|
trace(e) {
|
|
6823
|
-
r.trace(i.LogVerbosity.DEBUG,
|
|
6823
|
+
r.trace(i.LogVerbosity.DEBUG, u, (0, l.uriToString)(this.channelTarget) + " " + e);
|
|
6824
6824
|
}
|
|
6825
6825
|
createSession(t, n, i) {
|
|
6826
6826
|
if (this.isShutdown) {
|
|
@@ -6830,7 +6830,7 @@ function Bi() {
|
|
|
6830
6830
|
return Promise.reject("Connection closed before starting HTTP/2 handshake");
|
|
6831
6831
|
}
|
|
6832
6832
|
return new Promise((s, r) => {
|
|
6833
|
-
var o, c, d,
|
|
6833
|
+
var o, c, d, h, u, f, p, g;
|
|
6834
6834
|
let m = null;
|
|
6835
6835
|
let v = this.channelTarget;
|
|
6836
6836
|
if ("grpc.http_connect_target" in i) {
|
|
@@ -6866,10 +6866,10 @@ function Bi() {
|
|
|
6866
6866
|
const b = {
|
|
6867
6867
|
createConnection: (e, n) => t.socket,
|
|
6868
6868
|
settings: {
|
|
6869
|
-
initialWindowSize: (
|
|
6869
|
+
initialWindowSize: (h = (o = i["grpc-node.flow_control_window"]) !== null && o !== void 0 ? o : (d = (c = e.getDefaultSettings) === null || c === void 0 ? void 0 : c.call(e)) === null || d === void 0 ? void 0 : d.initialWindowSize) !== null && h !== void 0 ? h : 65535
|
|
6870
6870
|
},
|
|
6871
6871
|
maxSendHeaderBlockLength: Number.MAX_SAFE_INTEGER,
|
|
6872
|
-
maxSessionMemory: (
|
|
6872
|
+
maxSessionMemory: (u = i["grpc-node.max_session_memory"]) !== null && u !== void 0 ? u : Number.MAX_SAFE_INTEGER
|
|
6873
6873
|
};
|
|
6874
6874
|
const E = e.connect(`${C}://${S}`, b);
|
|
6875
6875
|
const R = (g = (p = (f = e.getDefaultSettings) === null || f === void 0 ? void 0 : f.call(e)) === null || p === void 0 ? void 0 : p.initialWindowSize) !== null && g !== void 0 ? g : 65535;
|
|
@@ -7051,7 +7051,7 @@ const ji = Ve;
|
|
|
7051
7051
|
|
|
7052
7052
|
const Hi = B;
|
|
7053
7053
|
|
|
7054
|
-
const Wi =
|
|
7054
|
+
const Wi = On;
|
|
7055
7055
|
|
|
7056
7056
|
const qi = D;
|
|
7057
7057
|
|
|
@@ -7091,8 +7091,8 @@ class LoadBalancingCall {
|
|
|
7091
7091
|
if (c.length >= 2) {
|
|
7092
7092
|
d = c[1];
|
|
7093
7093
|
}
|
|
7094
|
-
const
|
|
7095
|
-
this.serviceUrl = `https://${
|
|
7094
|
+
const h = (l = (o = (0, Gi.splitHostPort)(this.host)) === null || o === void 0 ? void 0 : o.host) !== null && l !== void 0 ? l : "localhost";
|
|
7095
|
+
this.serviceUrl = `https://${h}/${d}`;
|
|
7096
7096
|
this.startTime = new Date;
|
|
7097
7097
|
}
|
|
7098
7098
|
getDeadlineInfo() {
|
|
@@ -7324,11 +7324,11 @@ Object.defineProperty(Xi, "__esModule", {
|
|
|
7324
7324
|
|
|
7325
7325
|
Xi.ResolvingCall = void 0;
|
|
7326
7326
|
|
|
7327
|
-
const Ji =
|
|
7327
|
+
const Ji = O;
|
|
7328
7328
|
|
|
7329
7329
|
const Zi = B;
|
|
7330
7330
|
|
|
7331
|
-
const es =
|
|
7331
|
+
const es = On;
|
|
7332
7332
|
|
|
7333
7333
|
const ts = D;
|
|
7334
7334
|
|
|
@@ -7624,7 +7624,7 @@ rs.RetryingCall = rs.MessageBufferTracker = rs.RetryThrottler = void 0;
|
|
|
7624
7624
|
|
|
7625
7625
|
const as = B;
|
|
7626
7626
|
|
|
7627
|
-
const os =
|
|
7627
|
+
const os = On;
|
|
7628
7628
|
|
|
7629
7629
|
const ls = D;
|
|
7630
7630
|
|
|
@@ -7697,9 +7697,9 @@ class MessageBufferTracker {
|
|
|
7697
7697
|
|
|
7698
7698
|
rs.MessageBufferTracker = MessageBufferTracker;
|
|
7699
7699
|
|
|
7700
|
-
const
|
|
7700
|
+
const hs = "grpc-previous-rpc-attempts";
|
|
7701
7701
|
|
|
7702
|
-
const
|
|
7702
|
+
const us = 5;
|
|
7703
7703
|
|
|
7704
7704
|
class RetryingCall {
|
|
7705
7705
|
constructor(e, t, n, i, s, r, a, o, l) {
|
|
@@ -7725,7 +7725,7 @@ class RetryingCall {
|
|
|
7725
7725
|
this.committedCallIndex = null;
|
|
7726
7726
|
this.initialRetryBackoffSec = 0;
|
|
7727
7727
|
this.nextRetryBackoffSec = 0;
|
|
7728
|
-
const d = (c = e.getOptions()["grpc-node.retry_max_attempts_limit"]) !== null && c !== void 0 ? c :
|
|
7728
|
+
const d = (c = e.getOptions()["grpc-node.retry_max_attempts_limit"]) !== null && c !== void 0 ? c : us;
|
|
7729
7729
|
if (e.getOptions()["grpc.enable_retries"] === 0) {
|
|
7730
7730
|
this.state = "NO_RETRY";
|
|
7731
7731
|
this.maxAttempts = 1;
|
|
@@ -8090,7 +8090,7 @@ class RetryingCall {
|
|
|
8090
8090
|
const n = this.attempts - 1;
|
|
8091
8091
|
const i = this.initialMetadata.clone();
|
|
8092
8092
|
if (n > 0) {
|
|
8093
|
-
i.set(
|
|
8093
|
+
i.set(hs, `${n}`);
|
|
8094
8094
|
}
|
|
8095
8095
|
let s = false;
|
|
8096
8096
|
e.start(i, {
|
|
@@ -8099,7 +8099,7 @@ class RetryingCall {
|
|
|
8099
8099
|
this.commitCall(t);
|
|
8100
8100
|
s = true;
|
|
8101
8101
|
if (n > 0) {
|
|
8102
|
-
i.set(
|
|
8102
|
+
i.set(hs, `${n}`);
|
|
8103
8103
|
}
|
|
8104
8104
|
if (this.underlyingCalls[t].state === "ACTIVE") {
|
|
8105
8105
|
this.listener.onReceiveMetadata(i);
|
|
@@ -8115,7 +8115,7 @@ class RetryingCall {
|
|
|
8115
8115
|
onReceiveStatus: i => {
|
|
8116
8116
|
this.trace("Received status from child [" + e.getCallNumber() + "]");
|
|
8117
8117
|
if (!s && n > 0) {
|
|
8118
|
-
i.metadata.set(
|
|
8118
|
+
i.metadata.set(hs, `${n}`);
|
|
8119
8119
|
}
|
|
8120
8120
|
this.handleChildStatus(i, t);
|
|
8121
8121
|
}
|
|
@@ -8373,12 +8373,12 @@ function vs() {
|
|
|
8373
8373
|
const l = vn;
|
|
8374
8374
|
const c = ye;
|
|
8375
8375
|
const d = x;
|
|
8376
|
-
const
|
|
8377
|
-
const
|
|
8376
|
+
const h = Qn;
|
|
8377
|
+
const u = fe;
|
|
8378
8378
|
const f = Ve;
|
|
8379
|
-
const p =
|
|
8379
|
+
const p = un();
|
|
8380
8380
|
const g = zi;
|
|
8381
|
-
const m =
|
|
8381
|
+
const m = On;
|
|
8382
8382
|
const v = Xi;
|
|
8383
8383
|
const C = pn;
|
|
8384
8384
|
const S = In;
|
|
@@ -8480,7 +8480,7 @@ function vs() {
|
|
|
8480
8480
|
}
|
|
8481
8481
|
}
|
|
8482
8482
|
this.channelzInfoTracker = new ChannelzInfoTracker(r);
|
|
8483
|
-
const I = (0,
|
|
8483
|
+
const I = (0, u.parseUri)(r);
|
|
8484
8484
|
if (I === null) {
|
|
8485
8485
|
throw new Error(`Could not parse target name "${r}"`);
|
|
8486
8486
|
}
|
|
@@ -8500,14 +8500,14 @@ function vs() {
|
|
|
8500
8500
|
} else {
|
|
8501
8501
|
this.defaultAuthority = (0, c.getDefaultAuthority)(A);
|
|
8502
8502
|
}
|
|
8503
|
-
const
|
|
8504
|
-
this.target =
|
|
8505
|
-
this.options = Object.assign({}, this.options,
|
|
8503
|
+
const L = (0, h.mapProxyName)(A, m);
|
|
8504
|
+
this.target = L.target;
|
|
8505
|
+
this.options = Object.assign({}, this.options, L.extraOptions);
|
|
8506
8506
|
this.subchannelPool = (0, i.getSubchannelPool)(((v = this.options["grpc.use_local_subchannel_pool"]) !== null && v !== void 0 ? v : 0) === 0);
|
|
8507
8507
|
this.retryBufferTracker = new y.MessageBufferTracker((C = this.options["grpc.retry_buffer_size"]) !== null && C !== void 0 ? C : w, (T = this.options["grpc.per_rpc_retry_buffer_size"]) !== null && T !== void 0 ? T : k);
|
|
8508
8508
|
this.keepaliveTime = (b = this.options["grpc.keepalive_time_ms"]) !== null && b !== void 0 ? b : -1;
|
|
8509
8509
|
this.idleTimeoutMs = Math.max((M = this.options["grpc.client_idle_timeout_ms"]) !== null && M !== void 0 ? M : R, E);
|
|
8510
|
-
const
|
|
8510
|
+
const N = {
|
|
8511
8511
|
createSubchannel: (t, n) => {
|
|
8512
8512
|
const i = {};
|
|
8513
8513
|
for (const [t, s] of Object.entries(n)) {
|
|
@@ -8549,7 +8549,7 @@ function vs() {
|
|
|
8549
8549
|
}
|
|
8550
8550
|
}
|
|
8551
8551
|
};
|
|
8552
|
-
this.resolvingLoadBalancer = new n.ResolvingLoadBalancer(this.target,
|
|
8552
|
+
this.resolvingLoadBalancer = new n.ResolvingLoadBalancer(this.target, N, this.options, (e, t) => {
|
|
8553
8553
|
var n;
|
|
8554
8554
|
if (e.retryThrottling) {
|
|
8555
8555
|
_.set(this.getTarget(), new y.RetryThrottler(e.retryThrottling.maxTokens, e.retryThrottling.tokenRatio, _.get(this.getTarget())));
|
|
@@ -8595,15 +8595,15 @@ function vs() {
|
|
|
8595
8595
|
});
|
|
8596
8596
|
this.filterStackFactory = new o.FilterStackFactory([ new l.CompressionFilterFactory(this, this.options) ]);
|
|
8597
8597
|
this.trace("Channel constructed with options " + JSON.stringify(m, undefined, 2));
|
|
8598
|
-
const
|
|
8598
|
+
const O = new Error;
|
|
8599
8599
|
if ((0, d.isTracerEnabled)("channel_stacktrace")) {
|
|
8600
|
-
(0, d.trace)(a.LogVerbosity.DEBUG, "channel_stacktrace", "(" + this.channelzRef.id + ") " + "Channel constructed \n" + ((P =
|
|
8600
|
+
(0, d.trace)(a.LogVerbosity.DEBUG, "channel_stacktrace", "(" + this.channelzRef.id + ") " + "Channel constructed \n" + ((P = O.stack) === null || P === void 0 ? void 0 : P.substring(O.stack.indexOf("\n") + 1)));
|
|
8601
8601
|
}
|
|
8602
8602
|
this.lastActivityTimestamp = new Date;
|
|
8603
8603
|
}
|
|
8604
8604
|
trace(e, t) {
|
|
8605
8605
|
(0, d.trace)(t !== null && t !== void 0 ? t : a.LogVerbosity.DEBUG, "channel", "(" + this.channelzRef.id + ") " + (0,
|
|
8606
|
-
|
|
8606
|
+
u.uriToString)(this.target) + " " + e);
|
|
8607
8607
|
}
|
|
8608
8608
|
callRefTimerRef() {
|
|
8609
8609
|
var e, t, n, i;
|
|
@@ -8630,7 +8630,7 @@ function vs() {
|
|
|
8630
8630
|
}
|
|
8631
8631
|
updateState(e) {
|
|
8632
8632
|
(0, d.trace)(a.LogVerbosity.DEBUG, "connectivity_state", "(" + this.channelzRef.id + ") " + (0,
|
|
8633
|
-
|
|
8633
|
+
u.uriToString)(this.target) + " " + f.ConnectivityState[this.connectivityState] + " -> " + f.ConnectivityState[e]);
|
|
8634
8634
|
if (this.channelzEnabled) {
|
|
8635
8635
|
this.channelzInfoTracker.trace.addTrace("CT_INFO", "Connectivity state change to " + f.ConnectivityState[e]);
|
|
8636
8636
|
}
|
|
@@ -8808,7 +8808,7 @@ function vs() {
|
|
|
8808
8808
|
this.configSelector = null;
|
|
8809
8809
|
}
|
|
8810
8810
|
getTarget() {
|
|
8811
|
-
return (0,
|
|
8811
|
+
return (0, u.uriToString)(this.target);
|
|
8812
8812
|
}
|
|
8813
8813
|
getConnectivityState(e) {
|
|
8814
8814
|
const t = this.connectivityState;
|
|
@@ -9450,25 +9450,25 @@ function Is(e, t) {
|
|
|
9450
9450
|
|
|
9451
9451
|
var As = {};
|
|
9452
9452
|
|
|
9453
|
-
var
|
|
9453
|
+
var Ls = {};
|
|
9454
9454
|
|
|
9455
|
-
var
|
|
9455
|
+
var Ns = {};
|
|
9456
9456
|
|
|
9457
|
-
var
|
|
9457
|
+
var Os;
|
|
9458
9458
|
|
|
9459
9459
|
function Ds() {
|
|
9460
|
-
if (
|
|
9461
|
-
|
|
9462
|
-
Object.defineProperty(
|
|
9460
|
+
if (Os) return Ns;
|
|
9461
|
+
Os = 1;
|
|
9462
|
+
Object.defineProperty(Ns, "__esModule", {
|
|
9463
9463
|
value: true
|
|
9464
9464
|
});
|
|
9465
|
-
|
|
9466
|
-
|
|
9467
|
-
|
|
9468
|
-
|
|
9469
|
-
|
|
9470
|
-
|
|
9471
|
-
|
|
9465
|
+
Ns.durationMessageToDuration = e;
|
|
9466
|
+
Ns.msToDuration = t;
|
|
9467
|
+
Ns.durationToMs = n;
|
|
9468
|
+
Ns.isDuration = i;
|
|
9469
|
+
Ns.isDurationMessage = s;
|
|
9470
|
+
Ns.parseDuration = a;
|
|
9471
|
+
Ns.durationToString = o;
|
|
9472
9472
|
function e(e) {
|
|
9473
9473
|
return {
|
|
9474
9474
|
seconds: Number.parseInt(e.seconds),
|
|
@@ -9515,13 +9515,13 @@ function Ds() {
|
|
|
9515
9515
|
}
|
|
9516
9516
|
return `${e.seconds}.${e.nanos / t}s`;
|
|
9517
9517
|
}
|
|
9518
|
-
return
|
|
9518
|
+
return Ns;
|
|
9519
9519
|
}
|
|
9520
9520
|
|
|
9521
9521
|
var xs;
|
|
9522
9522
|
|
|
9523
9523
|
function Bs() {
|
|
9524
|
-
if (xs) return
|
|
9524
|
+
if (xs) return Ls;
|
|
9525
9525
|
xs = 1;
|
|
9526
9526
|
(function(e) {
|
|
9527
9527
|
Object.defineProperty(e, "__esModule", {
|
|
@@ -9529,7 +9529,7 @@ function Bs() {
|
|
|
9529
9529
|
});
|
|
9530
9530
|
e.OrcaOobMetricsSubchannelWrapper = e.GRPC_METRICS_HEADER = e.ServerMetricRecorder = e.PerRequestMetricRecorder = void 0;
|
|
9531
9531
|
e.createOrcaClient = d;
|
|
9532
|
-
e.createMetricsReader =
|
|
9532
|
+
e.createMetricsReader = u;
|
|
9533
9533
|
const t = sn();
|
|
9534
9534
|
const n = Ds();
|
|
9535
9535
|
const i = oe;
|
|
@@ -9658,10 +9658,10 @@ function Bs() {
|
|
|
9658
9658
|
});
|
|
9659
9659
|
}
|
|
9660
9660
|
e.GRPC_METRICS_HEADER = "endpoint-load-metrics-bin";
|
|
9661
|
-
const
|
|
9662
|
-
function
|
|
9661
|
+
const h = "grpc_orca_load_report";
|
|
9662
|
+
function u(t, n) {
|
|
9663
9663
|
return (i, s, r) => {
|
|
9664
|
-
let a = r.getOpaque(
|
|
9664
|
+
let a = r.getOpaque(h);
|
|
9665
9665
|
if (a) {
|
|
9666
9666
|
t(a);
|
|
9667
9667
|
} else {
|
|
@@ -9670,7 +9670,7 @@ function Bs() {
|
|
|
9670
9670
|
const e = l();
|
|
9671
9671
|
a = e.xds.data.orca.v3.OrcaLoadReport.deserialize(n[0]);
|
|
9672
9672
|
t(a);
|
|
9673
|
-
r.setOpaque(
|
|
9673
|
+
r.setOpaque(h, a);
|
|
9674
9674
|
}
|
|
9675
9675
|
}
|
|
9676
9676
|
if (n) {
|
|
@@ -9776,8 +9776,8 @@ function Bs() {
|
|
|
9776
9776
|
function p(e) {
|
|
9777
9777
|
return new OobMetricsDataProducer(e);
|
|
9778
9778
|
}
|
|
9779
|
-
})(
|
|
9780
|
-
return
|
|
9779
|
+
})(Ls);
|
|
9780
|
+
return Ls;
|
|
9781
9781
|
}
|
|
9782
9782
|
|
|
9783
9783
|
var Fs;
|
|
@@ -9789,7 +9789,7 @@ function Us() {
|
|
|
9789
9789
|
value: true
|
|
9790
9790
|
});
|
|
9791
9791
|
As.BaseServerInterceptingCall = As.ServerInterceptingCall = As.ResponderBuilder = As.ServerListenerBuilder = void 0;
|
|
9792
|
-
As.isInterceptingServerListener =
|
|
9792
|
+
As.isInterceptingServerListener = h;
|
|
9793
9793
|
As.getServerInterceptingCall = _;
|
|
9794
9794
|
const e = D;
|
|
9795
9795
|
const t = B;
|
|
@@ -9837,7 +9837,7 @@ function Us() {
|
|
|
9837
9837
|
}
|
|
9838
9838
|
}
|
|
9839
9839
|
As.ServerListenerBuilder = ServerListenerBuilder;
|
|
9840
|
-
function
|
|
9840
|
+
function h(e) {
|
|
9841
9841
|
return e.onReceiveMetadata !== undefined && e.onReceiveMetadata.length === 1;
|
|
9842
9842
|
}
|
|
9843
9843
|
class InterceptingServerListenerImpl {
|
|
@@ -9952,7 +9952,7 @@ function Us() {
|
|
|
9952
9952
|
}
|
|
9953
9953
|
}
|
|
9954
9954
|
As.ResponderBuilder = ResponderBuilder;
|
|
9955
|
-
const
|
|
9955
|
+
const u = {
|
|
9956
9956
|
onReceiveMetadata: (e, t) => {
|
|
9957
9957
|
t(e);
|
|
9958
9958
|
},
|
|
@@ -10012,10 +10012,10 @@ function Us() {
|
|
|
10012
10012
|
this.responder.start(t => {
|
|
10013
10013
|
var n, i, s, r;
|
|
10014
10014
|
const a = {
|
|
10015
|
-
onReceiveMetadata: (n = t === null || t === void 0 ? void 0 : t.onReceiveMetadata) !== null && n !== void 0 ? n :
|
|
10016
|
-
onReceiveMessage: (i = t === null || t === void 0 ? void 0 : t.onReceiveMessage) !== null && i !== void 0 ? i :
|
|
10017
|
-
onReceiveHalfClose: (s = t === null || t === void 0 ? void 0 : t.onReceiveHalfClose) !== null && s !== void 0 ? s :
|
|
10018
|
-
onCancel: (r = t === null || t === void 0 ? void 0 : t.onCancel) !== null && r !== void 0 ? r :
|
|
10015
|
+
onReceiveMetadata: (n = t === null || t === void 0 ? void 0 : t.onReceiveMetadata) !== null && n !== void 0 ? n : u.onReceiveMetadata,
|
|
10016
|
+
onReceiveMessage: (i = t === null || t === void 0 ? void 0 : t.onReceiveMessage) !== null && i !== void 0 ? i : u.onReceiveMessage,
|
|
10017
|
+
onReceiveHalfClose: (s = t === null || t === void 0 ? void 0 : t.onReceiveHalfClose) !== null && s !== void 0 ? s : u.onReceiveHalfClose,
|
|
10018
|
+
onCancel: (r = t === null || t === void 0 ? void 0 : t.onCancel) !== null && r !== void 0 ? r : u.onCancel
|
|
10019
10019
|
};
|
|
10020
10020
|
const o = new InterceptingServerListenerImpl(a, e);
|
|
10021
10021
|
this.nextCall.start(o);
|
|
@@ -10104,11 +10104,11 @@ function Us() {
|
|
|
10104
10104
|
waitForTrailers: true
|
|
10105
10105
|
};
|
|
10106
10106
|
class BaseServerInterceptingCall {
|
|
10107
|
-
constructor(i, s, o,
|
|
10107
|
+
constructor(i, s, o, h, u) {
|
|
10108
10108
|
var f, m;
|
|
10109
10109
|
this.stream = i;
|
|
10110
10110
|
this.callEventTracker = o;
|
|
10111
|
-
this.handler =
|
|
10111
|
+
this.handler = h;
|
|
10112
10112
|
this.listener = null;
|
|
10113
10113
|
this.deadlineTimer = null;
|
|
10114
10114
|
this.deadline = Infinity;
|
|
@@ -10146,11 +10146,11 @@ function Us() {
|
|
|
10146
10146
|
this.stream.on("end", () => {
|
|
10147
10147
|
this.handleEndEvent();
|
|
10148
10148
|
});
|
|
10149
|
-
if ("grpc.max_send_message_length" in
|
|
10150
|
-
this.maxSendMessageSize =
|
|
10149
|
+
if ("grpc.max_send_message_length" in u) {
|
|
10150
|
+
this.maxSendMessageSize = u["grpc.max_send_message_length"];
|
|
10151
10151
|
}
|
|
10152
|
-
if ("grpc.max_receive_message_length" in
|
|
10153
|
-
this.maxReceiveMessageSize =
|
|
10152
|
+
if ("grpc.max_receive_message_length" in u) {
|
|
10153
|
+
this.maxReceiveMessageSize = u["grpc.max_receive_message_length"];
|
|
10154
10154
|
}
|
|
10155
10155
|
this.host = (f = s[":authority"]) !== null && f !== void 0 ? f : s.host;
|
|
10156
10156
|
this.decoder = new r.StreamDecoder(this.maxReceiveMessageSize);
|
|
@@ -10180,7 +10180,7 @@ function Us() {
|
|
|
10180
10180
|
remoteAddress: T === null || T === void 0 ? void 0 : T.remoteAddress,
|
|
10181
10181
|
remotePort: T === null || T === void 0 ? void 0 : T.remotePort
|
|
10182
10182
|
};
|
|
10183
|
-
this.shouldSendMetrics = !!
|
|
10183
|
+
this.shouldSendMetrics = !!u["grpc.server_call_metric_recording"];
|
|
10184
10184
|
}
|
|
10185
10185
|
handleTimeoutHeader(e) {
|
|
10186
10186
|
const n = e.toString().match(S);
|
|
@@ -10542,13 +10542,13 @@ var js = v.commonjsGlobal && v.commonjsGlobal.__esDecorate || function(e, t, n,
|
|
|
10542
10542
|
var o = i.kind, l = o === "getter" ? "get" : o === "setter" ? "set" : "value";
|
|
10543
10543
|
var c = !t && e ? i["static"] ? e : e.prototype : null;
|
|
10544
10544
|
var d = t || (c ? Object.getOwnPropertyDescriptor(c, i.name) : {});
|
|
10545
|
-
var
|
|
10545
|
+
var h, u = false;
|
|
10546
10546
|
for (var f = n.length - 1; f >= 0; f--) {
|
|
10547
10547
|
var p = {};
|
|
10548
10548
|
for (var g in i) p[g] = g === "access" ? {} : i[g];
|
|
10549
10549
|
for (var g in i.access) p.access[g] = i.access[g];
|
|
10550
10550
|
p.addInitializer = function(e) {
|
|
10551
|
-
if (
|
|
10551
|
+
if (u) throw new TypeError("Cannot add initializers after decoration has completed");
|
|
10552
10552
|
r.push(a(e || null));
|
|
10553
10553
|
};
|
|
10554
10554
|
var m = (0, n[f])(o === "accessor" ? {
|
|
@@ -10558,15 +10558,15 @@ var js = v.commonjsGlobal && v.commonjsGlobal.__esDecorate || function(e, t, n,
|
|
|
10558
10558
|
if (o === "accessor") {
|
|
10559
10559
|
if (m === void 0) continue;
|
|
10560
10560
|
if (m === null || typeof m !== "object") throw new TypeError("Object expected");
|
|
10561
|
-
if (
|
|
10562
|
-
if (
|
|
10563
|
-
if (
|
|
10564
|
-
} else if (
|
|
10565
|
-
if (o === "field") s.unshift(
|
|
10561
|
+
if (h = a(m.get)) d.get = h;
|
|
10562
|
+
if (h = a(m.set)) d.set = h;
|
|
10563
|
+
if (h = a(m.init)) s.unshift(h);
|
|
10564
|
+
} else if (h = a(m)) {
|
|
10565
|
+
if (o === "field") s.unshift(h); else d[l] = h;
|
|
10566
10566
|
}
|
|
10567
10567
|
}
|
|
10568
10568
|
if (c) Object.defineProperty(c, i.name, d);
|
|
10569
|
-
|
|
10569
|
+
u = true;
|
|
10570
10570
|
};
|
|
10571
10571
|
|
|
10572
10572
|
Object.defineProperty(ys, "__esModule", {
|
|
@@ -10577,7 +10577,7 @@ ys.Server = void 0;
|
|
|
10577
10577
|
|
|
10578
10578
|
const Hs = P.default;
|
|
10579
10579
|
|
|
10580
|
-
const Ws =
|
|
10580
|
+
const Ws = N.default;
|
|
10581
10581
|
|
|
10582
10582
|
const qs = B;
|
|
10583
10583
|
|
|
@@ -10593,7 +10593,7 @@ const Ys = wt;
|
|
|
10593
10593
|
|
|
10594
10594
|
const Qs = fe;
|
|
10595
10595
|
|
|
10596
|
-
const Xs =
|
|
10596
|
+
const Xs = un();
|
|
10597
10597
|
|
|
10598
10598
|
const Js = Us();
|
|
10599
10599
|
|
|
@@ -10658,7 +10658,7 @@ function dr(e, t) {
|
|
|
10658
10658
|
}
|
|
10659
10659
|
}
|
|
10660
10660
|
|
|
10661
|
-
let
|
|
10661
|
+
let hr = (() => {
|
|
10662
10662
|
var e;
|
|
10663
10663
|
let t = [];
|
|
10664
10664
|
let n;
|
|
@@ -11452,7 +11452,7 @@ let ur = (() => {
|
|
|
11452
11452
|
_runHandlerForCall(e, t) {
|
|
11453
11453
|
const {type: n} = t;
|
|
11454
11454
|
if (n === "unary") {
|
|
11455
|
-
|
|
11455
|
+
ur(e, t);
|
|
11456
11456
|
} else if (n === "clientStream") {
|
|
11457
11457
|
fr(e, t);
|
|
11458
11458
|
} else if (n === "serverStream") {
|
|
@@ -11522,8 +11522,8 @@ let ur = (() => {
|
|
|
11522
11522
|
}
|
|
11523
11523
|
};
|
|
11524
11524
|
const d = () => !t.destroyed && this.keepaliveTimeMs < er && this.keepaliveTimeMs > 0;
|
|
11525
|
-
let
|
|
11526
|
-
const
|
|
11525
|
+
let h;
|
|
11526
|
+
const u = () => {
|
|
11527
11527
|
var e;
|
|
11528
11528
|
if (!d()) {
|
|
11529
11529
|
return;
|
|
@@ -11531,11 +11531,11 @@ let ur = (() => {
|
|
|
11531
11531
|
this.keepaliveTrace("Starting keepalive timer for " + this.keepaliveTimeMs + "ms");
|
|
11532
11532
|
a = setTimeout(() => {
|
|
11533
11533
|
c();
|
|
11534
|
-
|
|
11534
|
+
h();
|
|
11535
11535
|
}, this.keepaliveTimeMs);
|
|
11536
11536
|
(e = a.unref) === null || e === void 0 ? void 0 : e.call(a);
|
|
11537
11537
|
};
|
|
11538
|
-
|
|
11538
|
+
h = () => {
|
|
11539
11539
|
var e;
|
|
11540
11540
|
if (!d()) {
|
|
11541
11541
|
return;
|
|
@@ -11551,7 +11551,7 @@ let ur = (() => {
|
|
|
11551
11551
|
t.close();
|
|
11552
11552
|
} else {
|
|
11553
11553
|
this.keepaliveTrace("Received ping response");
|
|
11554
|
-
|
|
11554
|
+
u();
|
|
11555
11555
|
}
|
|
11556
11556
|
});
|
|
11557
11557
|
if (!e) {
|
|
@@ -11576,7 +11576,7 @@ let ur = (() => {
|
|
|
11576
11576
|
}, this.keepaliveTimeoutMs);
|
|
11577
11577
|
(e = a.unref) === null || e === void 0 ? void 0 : e.call(a);
|
|
11578
11578
|
};
|
|
11579
|
-
|
|
11579
|
+
u();
|
|
11580
11580
|
t.on("close", () => {
|
|
11581
11581
|
var n, i;
|
|
11582
11582
|
if (!o) {
|
|
@@ -11618,15 +11618,15 @@ let ur = (() => {
|
|
|
11618
11618
|
this.sessionChildrenTracker.refChild(a);
|
|
11619
11619
|
let c = null;
|
|
11620
11620
|
let d = null;
|
|
11621
|
-
let
|
|
11622
|
-
let
|
|
11621
|
+
let h = null;
|
|
11622
|
+
let u = false;
|
|
11623
11623
|
const f = this.enableIdleTimeout(t);
|
|
11624
11624
|
if (this.maxConnectionAgeMs !== Zs) {
|
|
11625
11625
|
const e = this.maxConnectionAgeMs / 10;
|
|
11626
11626
|
const n = Math.random() * e * 2 - e;
|
|
11627
11627
|
c = setTimeout(() => {
|
|
11628
11628
|
var e;
|
|
11629
|
-
|
|
11629
|
+
u = true;
|
|
11630
11630
|
this.channelzTrace.addTrace("CT_INFO", "Connection dropped by max connection age from " + l);
|
|
11631
11631
|
try {
|
|
11632
11632
|
t.goaway(Hs.constants.NGHTTP2_NO_ERROR, ~(1 << 31), rr);
|
|
@@ -11645,9 +11645,9 @@ let ur = (() => {
|
|
|
11645
11645
|
(r = c.unref) === null || r === void 0 ? void 0 : r.call(c);
|
|
11646
11646
|
}
|
|
11647
11647
|
const p = () => {
|
|
11648
|
-
if (
|
|
11649
|
-
clearTimeout(
|
|
11650
|
-
|
|
11648
|
+
if (h) {
|
|
11649
|
+
clearTimeout(h);
|
|
11650
|
+
h = null;
|
|
11651
11651
|
}
|
|
11652
11652
|
};
|
|
11653
11653
|
const g = () => !t.destroyed && this.keepaliveTimeMs < er && this.keepaliveTimeMs > 0;
|
|
@@ -11658,11 +11658,11 @@ let ur = (() => {
|
|
|
11658
11658
|
return;
|
|
11659
11659
|
}
|
|
11660
11660
|
this.keepaliveTrace("Starting keepalive timer for " + this.keepaliveTimeMs + "ms");
|
|
11661
|
-
|
|
11661
|
+
h = setTimeout(() => {
|
|
11662
11662
|
p();
|
|
11663
11663
|
m();
|
|
11664
11664
|
}, this.keepaliveTimeMs);
|
|
11665
|
-
(e =
|
|
11665
|
+
(e = h.unref) === null || e === void 0 ? void 0 : e.call(h);
|
|
11666
11666
|
};
|
|
11667
11667
|
m = () => {
|
|
11668
11668
|
var e;
|
|
@@ -11677,7 +11677,7 @@ let ur = (() => {
|
|
|
11677
11677
|
if (e) {
|
|
11678
11678
|
this.keepaliveTrace("Ping failed with error: " + e.message);
|
|
11679
11679
|
this.channelzTrace.addTrace("CT_INFO", "Connection dropped due to error of a ping frame " + e.message + " return in " + n);
|
|
11680
|
-
|
|
11680
|
+
u = true;
|
|
11681
11681
|
t.close();
|
|
11682
11682
|
} else {
|
|
11683
11683
|
this.keepaliveTrace("Received ping response");
|
|
@@ -11693,24 +11693,24 @@ let ur = (() => {
|
|
|
11693
11693
|
if (n) {
|
|
11694
11694
|
this.keepaliveTrace("Ping send failed: " + n);
|
|
11695
11695
|
this.channelzTrace.addTrace("CT_INFO", "Connection dropped due to ping send error: " + n);
|
|
11696
|
-
|
|
11696
|
+
u = true;
|
|
11697
11697
|
t.close();
|
|
11698
11698
|
return;
|
|
11699
11699
|
}
|
|
11700
11700
|
o.keepAlivesSent += 1;
|
|
11701
|
-
|
|
11701
|
+
h = setTimeout(() => {
|
|
11702
11702
|
p();
|
|
11703
11703
|
this.keepaliveTrace("Ping timeout passed without response");
|
|
11704
11704
|
this.channelzTrace.addTrace("CT_INFO", "Connection dropped by keepalive timeout from " + l);
|
|
11705
|
-
|
|
11705
|
+
u = true;
|
|
11706
11706
|
t.close();
|
|
11707
11707
|
}, this.keepaliveTimeoutMs);
|
|
11708
|
-
(e =
|
|
11708
|
+
(e = h.unref) === null || e === void 0 ? void 0 : e.call(h);
|
|
11709
11709
|
};
|
|
11710
11710
|
v();
|
|
11711
11711
|
t.on("close", () => {
|
|
11712
11712
|
var n;
|
|
11713
|
-
if (!
|
|
11713
|
+
if (!u) {
|
|
11714
11714
|
this.channelzTrace.addTrace("CT_INFO", "Connection dropped by client " + l);
|
|
11715
11715
|
}
|
|
11716
11716
|
this.sessionChildrenTracker.unrefChild(a);
|
|
@@ -11803,9 +11803,9 @@ let ur = (() => {
|
|
|
11803
11803
|
})(), e;
|
|
11804
11804
|
})();
|
|
11805
11805
|
|
|
11806
|
-
ys.Server =
|
|
11806
|
+
ys.Server = hr;
|
|
11807
11807
|
|
|
11808
|
-
async function
|
|
11808
|
+
async function ur(e, t) {
|
|
11809
11809
|
let n;
|
|
11810
11810
|
function i(t, n, i, s) {
|
|
11811
11811
|
if (t) {
|
|
@@ -12065,18 +12065,18 @@ function yr() {
|
|
|
12065
12065
|
function d(e) {
|
|
12066
12066
|
s.trace(r.LogVerbosity.DEBUG, c, e);
|
|
12067
12067
|
}
|
|
12068
|
-
const
|
|
12069
|
-
const
|
|
12068
|
+
const h = "pick_first";
|
|
12069
|
+
const u = 250;
|
|
12070
12070
|
class PickFirstLoadBalancingConfig {
|
|
12071
12071
|
constructor(e) {
|
|
12072
12072
|
this.shuffleAddressList = e;
|
|
12073
12073
|
}
|
|
12074
12074
|
getLoadBalancerName() {
|
|
12075
|
-
return
|
|
12075
|
+
return h;
|
|
12076
12076
|
}
|
|
12077
12077
|
toJsonObject() {
|
|
12078
12078
|
return {
|
|
12079
|
-
[
|
|
12079
|
+
[h]: {
|
|
12080
12080
|
shuffleAddressList: this.shuffleAddressList
|
|
12081
12081
|
}
|
|
12082
12082
|
};
|
|
@@ -12282,7 +12282,7 @@ function yr() {
|
|
|
12282
12282
|
}
|
|
12283
12283
|
this.connectionDelayTimeout = setTimeout(() => {
|
|
12284
12284
|
this.startNextSubchannelConnecting(e + 1);
|
|
12285
|
-
},
|
|
12285
|
+
}, u);
|
|
12286
12286
|
(i = (n = this.connectionDelayTimeout).unref) === null || i === void 0 ? void 0 : i.call(n);
|
|
12287
12287
|
}
|
|
12288
12288
|
pickSubchannel(e) {
|
|
@@ -12381,7 +12381,7 @@ function yr() {
|
|
|
12381
12381
|
this.removeCurrentPick();
|
|
12382
12382
|
}
|
|
12383
12383
|
getTypeName() {
|
|
12384
|
-
return
|
|
12384
|
+
return h;
|
|
12385
12385
|
}
|
|
12386
12386
|
}
|
|
12387
12387
|
Cr.PickFirstLoadBalancer = PickFirstLoadBalancer;
|
|
@@ -12432,8 +12432,8 @@ function yr() {
|
|
|
12432
12432
|
}
|
|
12433
12433
|
Cr.LeafLoadBalancer = LeafLoadBalancer;
|
|
12434
12434
|
function v() {
|
|
12435
|
-
(0, e.registerLoadBalancerType)(
|
|
12436
|
-
(0, e.registerDefaultLoadBalancerType)(
|
|
12435
|
+
(0, e.registerLoadBalancerType)(h, PickFirstLoadBalancer, PickFirstLoadBalancingConfig);
|
|
12436
|
+
(0, e.registerDefaultLoadBalancerType)(h);
|
|
12437
12437
|
}
|
|
12438
12438
|
return Cr;
|
|
12439
12439
|
}
|
|
@@ -12452,7 +12452,7 @@ function Er() {
|
|
|
12452
12452
|
const e = b.default;
|
|
12453
12453
|
const t = x;
|
|
12454
12454
|
const n = B;
|
|
12455
|
-
const i =
|
|
12455
|
+
const i = N.default;
|
|
12456
12456
|
const s = "certificate_provider";
|
|
12457
12457
|
function r(e) {
|
|
12458
12458
|
t.trace(n.LogVerbosity.DEBUG, s, e);
|
|
@@ -12726,24 +12726,24 @@ function _r() {
|
|
|
12726
12726
|
return d.PickResultType;
|
|
12727
12727
|
}
|
|
12728
12728
|
});
|
|
12729
|
-
var
|
|
12729
|
+
var h = Xt();
|
|
12730
12730
|
Object.defineProperty(e, "statusOrFromValue", {
|
|
12731
12731
|
enumerable: true,
|
|
12732
12732
|
get: function() {
|
|
12733
|
-
return
|
|
12733
|
+
return h.statusOrFromValue;
|
|
12734
12734
|
}
|
|
12735
12735
|
});
|
|
12736
12736
|
Object.defineProperty(e, "statusOrFromError", {
|
|
12737
12737
|
enumerable: true,
|
|
12738
12738
|
get: function() {
|
|
12739
|
-
return
|
|
12739
|
+
return h.statusOrFromError;
|
|
12740
12740
|
}
|
|
12741
12741
|
});
|
|
12742
|
-
var
|
|
12742
|
+
var u = bn();
|
|
12743
12743
|
Object.defineProperty(e, "BaseFilter", {
|
|
12744
12744
|
enumerable: true,
|
|
12745
12745
|
get: function() {
|
|
12746
|
-
return
|
|
12746
|
+
return u.BaseFilter;
|
|
12747
12747
|
}
|
|
12748
12748
|
});
|
|
12749
12749
|
var f = qn();
|
|
@@ -12878,8 +12878,8 @@ function Ar() {
|
|
|
12878
12878
|
o.trace(n.LogVerbosity.DEBUG, l, e);
|
|
12879
12879
|
}
|
|
12880
12880
|
const d = "ipv4";
|
|
12881
|
-
const
|
|
12882
|
-
const
|
|
12881
|
+
const h = "ipv6";
|
|
12882
|
+
const u = 443;
|
|
12883
12883
|
class IpResolver {
|
|
12884
12884
|
constructor(t, s, o) {
|
|
12885
12885
|
var l;
|
|
@@ -12889,7 +12889,7 @@ function Ar() {
|
|
|
12889
12889
|
this.hasReturnedResult = false;
|
|
12890
12890
|
c("Resolver constructed for target " + (0, a.uriToString)(t));
|
|
12891
12891
|
const f = [];
|
|
12892
|
-
if (!(t.scheme === d || t.scheme ===
|
|
12892
|
+
if (!(t.scheme === d || t.scheme === h)) {
|
|
12893
12893
|
this.error = {
|
|
12894
12894
|
code: n.Status.UNAVAILABLE,
|
|
12895
12895
|
details: `Unrecognized scheme ${t.scheme} in IP resolver`,
|
|
@@ -12908,7 +12908,7 @@ function Ar() {
|
|
|
12908
12908
|
};
|
|
12909
12909
|
return;
|
|
12910
12910
|
}
|
|
12911
|
-
if (t.scheme === d && !(0, e.isIPv4)(r.host) || t.scheme ===
|
|
12911
|
+
if (t.scheme === d && !(0, e.isIPv4)(r.host) || t.scheme === h && !(0, e.isIPv6)(r.host)) {
|
|
12912
12912
|
this.error = {
|
|
12913
12913
|
code: n.Status.UNAVAILABLE,
|
|
12914
12914
|
details: `Failed to parse ${t.scheme} address ${s}`,
|
|
@@ -12918,7 +12918,7 @@ function Ar() {
|
|
|
12918
12918
|
}
|
|
12919
12919
|
f.push({
|
|
12920
12920
|
host: r.host,
|
|
12921
|
-
port: (l = r.port) !== null && l !== void 0 ? l :
|
|
12921
|
+
port: (l = r.port) !== null && l !== void 0 ? l : u
|
|
12922
12922
|
});
|
|
12923
12923
|
}
|
|
12924
12924
|
this.endpoints = f.map(e => ({
|
|
@@ -12947,23 +12947,23 @@ function Ar() {
|
|
|
12947
12947
|
}
|
|
12948
12948
|
function f() {
|
|
12949
12949
|
(0, s.registerResolver)(d, IpResolver);
|
|
12950
|
-
(0, s.registerResolver)(
|
|
12950
|
+
(0, s.registerResolver)(h, IpResolver);
|
|
12951
12951
|
}
|
|
12952
12952
|
return Pr;
|
|
12953
12953
|
}
|
|
12954
12954
|
|
|
12955
|
-
var
|
|
12955
|
+
var Lr = {};
|
|
12956
12956
|
|
|
12957
|
-
var
|
|
12957
|
+
var Nr;
|
|
12958
12958
|
|
|
12959
|
-
function
|
|
12960
|
-
if (
|
|
12961
|
-
|
|
12962
|
-
Object.defineProperty(
|
|
12959
|
+
function Or() {
|
|
12960
|
+
if (Nr) return Lr;
|
|
12961
|
+
Nr = 1;
|
|
12962
|
+
Object.defineProperty(Lr, "__esModule", {
|
|
12963
12963
|
value: true
|
|
12964
12964
|
});
|
|
12965
|
-
|
|
12966
|
-
|
|
12965
|
+
Lr.RoundRobinLoadBalancer = void 0;
|
|
12966
|
+
Lr.setup = h;
|
|
12967
12967
|
const e = We();
|
|
12968
12968
|
const t = Ve;
|
|
12969
12969
|
const n = Xe();
|
|
@@ -13091,17 +13091,17 @@ function Lr() {
|
|
|
13091
13091
|
return true;
|
|
13092
13092
|
}
|
|
13093
13093
|
const c = Math.random() * e.value.length | 0;
|
|
13094
|
-
const
|
|
13094
|
+
const h = d(e.value, c);
|
|
13095
13095
|
this.resetSubchannelList();
|
|
13096
|
-
if (
|
|
13096
|
+
if (h.length === 0) {
|
|
13097
13097
|
const e = `No addresses resolved. Resolution note: ${o}`;
|
|
13098
13098
|
this.updateState(t.ConnectivityState.TRANSIENT_FAILURE, new n.UnavailablePicker({
|
|
13099
13099
|
details: e
|
|
13100
13100
|
}), e);
|
|
13101
13101
|
}
|
|
13102
|
-
l("Connect to endpoint list " +
|
|
13102
|
+
l("Connect to endpoint list " + h.map(r.endpointToString));
|
|
13103
13103
|
this.updatesPaused = true;
|
|
13104
|
-
this.children =
|
|
13104
|
+
this.children = h.map(e => new a.LeafLoadBalancer(e, this.childChannelControlHelper, s, o));
|
|
13105
13105
|
for (const e of this.children) {
|
|
13106
13106
|
e.startConnecting();
|
|
13107
13107
|
}
|
|
@@ -13118,11 +13118,11 @@ function Lr() {
|
|
|
13118
13118
|
return c;
|
|
13119
13119
|
}
|
|
13120
13120
|
}
|
|
13121
|
-
|
|
13122
|
-
function
|
|
13121
|
+
Lr.RoundRobinLoadBalancer = RoundRobinLoadBalancer;
|
|
13122
|
+
function h() {
|
|
13123
13123
|
(0, e.registerLoadBalancerType)(c, RoundRobinLoadBalancer, RoundRobinLoadBalancingConfig);
|
|
13124
13124
|
}
|
|
13125
|
-
return
|
|
13125
|
+
return Lr;
|
|
13126
13126
|
}
|
|
13127
13127
|
|
|
13128
13128
|
var Dr = {};
|
|
@@ -13148,9 +13148,9 @@ function Br() {
|
|
|
13148
13148
|
const l = wt;
|
|
13149
13149
|
const c = gs();
|
|
13150
13150
|
const d = x;
|
|
13151
|
-
const
|
|
13152
|
-
function
|
|
13153
|
-
d.trace(n.LogVerbosity.DEBUG,
|
|
13151
|
+
const h = "outlier_detection";
|
|
13152
|
+
function u(e) {
|
|
13153
|
+
d.trace(n.LogVerbosity.DEBUG, h, e);
|
|
13154
13154
|
}
|
|
13155
13155
|
const f = "outlier_detection";
|
|
13156
13156
|
const p = ((e = process.env.GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION) !== null && e !== void 0 ? e : "true") === "true";
|
|
@@ -13424,20 +13424,20 @@ function Br() {
|
|
|
13424
13424
|
if (!t) {
|
|
13425
13425
|
return;
|
|
13426
13426
|
}
|
|
13427
|
-
|
|
13427
|
+
u("Running success rate check");
|
|
13428
13428
|
const n = t.request_volume;
|
|
13429
13429
|
let i = 0;
|
|
13430
13430
|
const s = [];
|
|
13431
13431
|
for (const [e, t] of this.entryMap.entries()) {
|
|
13432
13432
|
const r = t.counter.getLastSuccesses();
|
|
13433
13433
|
const a = t.counter.getLastFailures();
|
|
13434
|
-
|
|
13434
|
+
u("Stats for " + (0, l.endpointToString)(e) + ": successes=" + r + " failures=" + a + " targetRequestVolume=" + n);
|
|
13435
13435
|
if (r + a >= n) {
|
|
13436
13436
|
i += 1;
|
|
13437
13437
|
s.push(r / (r + a));
|
|
13438
13438
|
}
|
|
13439
13439
|
}
|
|
13440
|
-
|
|
13440
|
+
u("Found " + i + " success rate candidates; currentEjectionPercent=" + this.getCurrentEjectionPercent() + " successRates=[" + s + "]");
|
|
13441
13441
|
if (i < t.minimum_hosts) {
|
|
13442
13442
|
return;
|
|
13443
13443
|
}
|
|
@@ -13450,7 +13450,7 @@ function Br() {
|
|
|
13450
13450
|
const o = a / s.length;
|
|
13451
13451
|
const c = Math.sqrt(o);
|
|
13452
13452
|
const d = r - c * (t.stdev_factor / 1e3);
|
|
13453
|
-
|
|
13453
|
+
u("stdev=" + c + " ejectionThreshold=" + d);
|
|
13454
13454
|
for (const [i, s] of this.entryMap.entries()) {
|
|
13455
13455
|
if (this.getCurrentEjectionPercent() >= this.latestConfig.getMaxEjectionPercent()) {
|
|
13456
13456
|
break;
|
|
@@ -13461,12 +13461,12 @@ function Br() {
|
|
|
13461
13461
|
continue;
|
|
13462
13462
|
}
|
|
13463
13463
|
const o = r / (r + a);
|
|
13464
|
-
|
|
13464
|
+
u("Checking candidate " + i + " successRate=" + o);
|
|
13465
13465
|
if (o < d) {
|
|
13466
13466
|
const n = Math.random() * 100;
|
|
13467
|
-
|
|
13467
|
+
u("Candidate " + i + " randomNumber=" + n + " enforcement_percentage=" + t.enforcement_percentage);
|
|
13468
13468
|
if (n < t.enforcement_percentage) {
|
|
13469
|
-
|
|
13469
|
+
u("Ejecting candidate " + i);
|
|
13470
13470
|
this.eject(s, e);
|
|
13471
13471
|
}
|
|
13472
13472
|
}
|
|
@@ -13480,7 +13480,7 @@ function Br() {
|
|
|
13480
13480
|
if (!t) {
|
|
13481
13481
|
return;
|
|
13482
13482
|
}
|
|
13483
|
-
|
|
13483
|
+
u("Running failure percentage check. threshold=" + t.threshold + " request volume threshold=" + t.request_volume);
|
|
13484
13484
|
let n = 0;
|
|
13485
13485
|
for (const e of this.entryMap.values()) {
|
|
13486
13486
|
const i = e.counter.getLastSuccesses();
|
|
@@ -13498,16 +13498,16 @@ function Br() {
|
|
|
13498
13498
|
}
|
|
13499
13499
|
const s = i.counter.getLastSuccesses();
|
|
13500
13500
|
const r = i.counter.getLastFailures();
|
|
13501
|
-
|
|
13501
|
+
u("Candidate successes=" + s + " failures=" + r);
|
|
13502
13502
|
if (s + r < t.request_volume) {
|
|
13503
13503
|
continue;
|
|
13504
13504
|
}
|
|
13505
13505
|
const a = r * 100 / (r + s);
|
|
13506
13506
|
if (a > t.threshold) {
|
|
13507
13507
|
const s = Math.random() * 100;
|
|
13508
|
-
|
|
13508
|
+
u("Candidate " + n + " randomNumber=" + s + " enforcement_percentage=" + t.enforcement_percentage);
|
|
13509
13509
|
if (s < t.enforcement_percentage) {
|
|
13510
|
-
|
|
13510
|
+
u("Ejecting candidate " + n);
|
|
13511
13511
|
this.eject(i, e);
|
|
13512
13512
|
}
|
|
13513
13513
|
}
|
|
@@ -13538,7 +13538,7 @@ function Br() {
|
|
|
13538
13538
|
}
|
|
13539
13539
|
runChecks() {
|
|
13540
13540
|
const e = new Date;
|
|
13541
|
-
|
|
13541
|
+
u("Ejection timer running");
|
|
13542
13542
|
this.switchAllBuckets();
|
|
13543
13543
|
if (!this.latestConfig) {
|
|
13544
13544
|
return;
|
|
@@ -13558,7 +13558,7 @@ function Br() {
|
|
|
13558
13558
|
const s = new Date(t.currentEjectionTimestamp.getTime());
|
|
13559
13559
|
s.setMilliseconds(s.getMilliseconds() + Math.min(n * t.ejectionTimeMultiplier, Math.max(n, i)));
|
|
13560
13560
|
if (s < new Date) {
|
|
13561
|
-
|
|
13561
|
+
u("Unejecting " + e);
|
|
13562
13562
|
this.uneject(t);
|
|
13563
13563
|
}
|
|
13564
13564
|
}
|
|
@@ -13568,11 +13568,11 @@ function Br() {
|
|
|
13568
13568
|
if (!(t instanceof OutlierDetectionLoadBalancingConfig)) {
|
|
13569
13569
|
return false;
|
|
13570
13570
|
}
|
|
13571
|
-
|
|
13571
|
+
u("Received update with config: " + JSON.stringify(t.toJsonObject(), undefined, 2));
|
|
13572
13572
|
if (e.ok) {
|
|
13573
13573
|
for (const t of e.value) {
|
|
13574
13574
|
if (!this.entryMap.has(t)) {
|
|
13575
|
-
|
|
13575
|
+
u("Adding map entry for " + (0, l.endpointToString)(t));
|
|
13576
13576
|
this.entryMap.set(t, {
|
|
13577
13577
|
counter: new CallCounter,
|
|
13578
13578
|
currentEjectionTimestamp: null,
|
|
@@ -13587,18 +13587,18 @@ function Br() {
|
|
|
13587
13587
|
this.childBalancer.updateAddressList(e, s, n, i);
|
|
13588
13588
|
if (t.getSuccessRateEjectionConfig() || t.getFailurePercentageEjectionConfig()) {
|
|
13589
13589
|
if (this.timerStartTime) {
|
|
13590
|
-
|
|
13590
|
+
u("Previous timer existed. Replacing timer");
|
|
13591
13591
|
clearTimeout(this.ejectionTimer);
|
|
13592
13592
|
const e = t.getIntervalMs() - ((new Date).getTime() - this.timerStartTime.getTime());
|
|
13593
13593
|
this.startTimer(e);
|
|
13594
13594
|
} else {
|
|
13595
|
-
|
|
13595
|
+
u("Starting new timer");
|
|
13596
13596
|
this.timerStartTime = new Date;
|
|
13597
13597
|
this.startTimer(t.getIntervalMs());
|
|
13598
13598
|
this.switchAllBuckets();
|
|
13599
13599
|
}
|
|
13600
13600
|
} else {
|
|
13601
|
-
|
|
13601
|
+
u("Counting disabled. Cancelling timer.");
|
|
13602
13602
|
this.timerStartTime = null;
|
|
13603
13603
|
clearTimeout(this.ejectionTimer);
|
|
13604
13604
|
for (const e of this.entryMap.values()) {
|
|
@@ -13733,10 +13733,10 @@ function Wr() {
|
|
|
13733
13733
|
const l = jr();
|
|
13734
13734
|
const c = wt;
|
|
13735
13735
|
const d = "weighted_round_robin";
|
|
13736
|
-
function
|
|
13736
|
+
function h(e) {
|
|
13737
13737
|
r.trace(t.LogVerbosity.DEBUG, d, e);
|
|
13738
13738
|
}
|
|
13739
|
-
const
|
|
13739
|
+
const u = "weighted_round_robin";
|
|
13740
13740
|
const f = 1e4;
|
|
13741
13741
|
const p = 1e4;
|
|
13742
13742
|
const g = 3 * 6e4;
|
|
@@ -13777,7 +13777,7 @@ function Wr() {
|
|
|
13777
13777
|
this.errorUtilizationPenalty = r !== null && r !== void 0 ? r : v;
|
|
13778
13778
|
}
|
|
13779
13779
|
getLoadBalancerName() {
|
|
13780
|
-
return
|
|
13780
|
+
return u;
|
|
13781
13781
|
}
|
|
13782
13782
|
toJsonObject() {
|
|
13783
13783
|
return {
|
|
@@ -13932,7 +13932,7 @@ function Wr() {
|
|
|
13932
13932
|
weight: this.getWeight(i)
|
|
13933
13933
|
});
|
|
13934
13934
|
}
|
|
13935
|
-
|
|
13935
|
+
h("Created picker with weights: " + t.map(e => e.endpointName + ":" + e.weight).join(","));
|
|
13936
13936
|
let n;
|
|
13937
13937
|
if (!this.latestConfig.getEnableOobLoadReport()) {
|
|
13938
13938
|
n = (e, t) => {
|
|
@@ -13962,12 +13962,12 @@ function Wr() {
|
|
|
13962
13962
|
}
|
|
13963
13963
|
}
|
|
13964
13964
|
updateState(t, n, i) {
|
|
13965
|
-
|
|
13965
|
+
h(e.ConnectivityState[this.currentState] + " -> " + e.ConnectivityState[t]);
|
|
13966
13966
|
this.currentState = t;
|
|
13967
13967
|
this.channelControlHelper.updateState(t, n, i);
|
|
13968
13968
|
}
|
|
13969
13969
|
updateAddressList(t, n, r, l) {
|
|
13970
|
-
var d,
|
|
13970
|
+
var d, u;
|
|
13971
13971
|
if (!(n instanceof WeightedRoundRobinLoadBalancingConfig)) {
|
|
13972
13972
|
return false;
|
|
13973
13973
|
}
|
|
@@ -13984,7 +13984,7 @@ function Wr() {
|
|
|
13984
13984
|
}), t);
|
|
13985
13985
|
return false;
|
|
13986
13986
|
}
|
|
13987
|
-
|
|
13987
|
+
h("Connect to endpoint list " + t.value.map(c.endpointToString));
|
|
13988
13988
|
const f = new Date;
|
|
13989
13989
|
const p = new Set;
|
|
13990
13990
|
this.updatesPaused = true;
|
|
@@ -14045,11 +14045,11 @@ function Wr() {
|
|
|
14045
14045
|
if (this.weightUpdateTimer) {
|
|
14046
14046
|
clearInterval(this.weightUpdateTimer);
|
|
14047
14047
|
}
|
|
14048
|
-
this.weightUpdateTimer = (
|
|
14048
|
+
this.weightUpdateTimer = (u = (d = setInterval(() => {
|
|
14049
14049
|
if (this.currentState === e.ConnectivityState.READY) {
|
|
14050
14050
|
this.calculateAndUpdateState();
|
|
14051
14051
|
}
|
|
14052
|
-
}, n.getWeightUpdatePeriodMs())).unref) === null ||
|
|
14052
|
+
}, n.getWeightUpdatePeriodMs())).unref) === null || u === void 0 ? void 0 : u.call(d);
|
|
14053
14053
|
return true;
|
|
14054
14054
|
}
|
|
14055
14055
|
exitIdle() {}
|
|
@@ -14064,11 +14064,11 @@ function Wr() {
|
|
|
14064
14064
|
}
|
|
14065
14065
|
}
|
|
14066
14066
|
getTypeName() {
|
|
14067
|
-
return
|
|
14067
|
+
return u;
|
|
14068
14068
|
}
|
|
14069
14069
|
}
|
|
14070
14070
|
function y() {
|
|
14071
|
-
(0, i.registerLoadBalancerType)(
|
|
14071
|
+
(0, i.registerLoadBalancerType)(u, WeightedRoundRobinLoadBalancer, WeightedRoundRobinLoadBalancingConfig);
|
|
14072
14072
|
}
|
|
14073
14073
|
return Fr;
|
|
14074
14074
|
}
|
|
@@ -14078,7 +14078,7 @@ function Wr() {
|
|
|
14078
14078
|
value: true
|
|
14079
14079
|
});
|
|
14080
14080
|
e.experimental = e.ServerMetricRecorder = e.ServerInterceptingCall = e.ResponderBuilder = e.ServerListenerBuilder = e.addAdminServicesToServer = e.getChannelzHandlers = e.getChannelzServiceDefinition = e.InterceptorConfigurationError = e.InterceptingCall = e.RequesterBuilder = e.ListenerBuilder = e.StatusBuilder = e.getClientChannel = e.ServerCredentials = e.Server = e.setLogVerbosity = e.setLogger = e.load = e.loadObject = e.CallCredentials = e.ChannelCredentials = e.waitForClientReady = e.closeClient = e.Channel = e.makeGenericClientConstructor = e.makeClientConstructor = e.loadPackageDefinition = e.Client = e.compressionAlgorithms = e.propagate = e.connectivityState = e.status = e.logVerbosity = e.Metadata = e.credentials = void 0;
|
|
14081
|
-
const t =
|
|
14081
|
+
const t = O;
|
|
14082
14082
|
Object.defineProperty(e, "CallCredentials", {
|
|
14083
14083
|
enumerable: true,
|
|
14084
14084
|
get: function() {
|
|
@@ -14166,18 +14166,18 @@ function Wr() {
|
|
|
14166
14166
|
return d.Metadata;
|
|
14167
14167
|
}
|
|
14168
14168
|
});
|
|
14169
|
-
const
|
|
14169
|
+
const h = ys;
|
|
14170
14170
|
Object.defineProperty(e, "Server", {
|
|
14171
14171
|
enumerable: true,
|
|
14172
14172
|
get: function() {
|
|
14173
|
-
return
|
|
14173
|
+
return h.Server;
|
|
14174
14174
|
}
|
|
14175
14175
|
});
|
|
14176
|
-
const
|
|
14176
|
+
const u = ks;
|
|
14177
14177
|
Object.defineProperty(e, "ServerCredentials", {
|
|
14178
14178
|
enumerable: true,
|
|
14179
14179
|
get: function() {
|
|
14180
|
-
return
|
|
14180
|
+
return u.ServerCredentials;
|
|
14181
14181
|
}
|
|
14182
14182
|
});
|
|
14183
14183
|
const f = mr;
|
|
@@ -14244,7 +14244,7 @@ function Wr() {
|
|
|
14244
14244
|
return T.InterceptorConfigurationError;
|
|
14245
14245
|
}
|
|
14246
14246
|
});
|
|
14247
|
-
var b =
|
|
14247
|
+
var b = un();
|
|
14248
14248
|
Object.defineProperty(e, "getChannelzServiceDefinition", {
|
|
14249
14249
|
enumerable: true,
|
|
14250
14250
|
get: function() {
|
|
@@ -14296,281 +14296,18 @@ function Wr() {
|
|
|
14296
14296
|
const M = Mr();
|
|
14297
14297
|
const P = Ar();
|
|
14298
14298
|
const I = yr();
|
|
14299
|
-
const A =
|
|
14300
|
-
const
|
|
14301
|
-
const
|
|
14302
|
-
const F =
|
|
14299
|
+
const A = Or();
|
|
14300
|
+
const L = Br();
|
|
14301
|
+
const N = Wr();
|
|
14302
|
+
const F = un();
|
|
14303
14303
|
(() => {
|
|
14304
14304
|
k.setup();
|
|
14305
14305
|
M.setup();
|
|
14306
14306
|
P.setup();
|
|
14307
14307
|
I.setup();
|
|
14308
14308
|
A.setup();
|
|
14309
|
+
L.setup();
|
|
14309
14310
|
N.setup();
|
|
14310
|
-
O.setup();
|
|
14311
14311
|
F.setup();
|
|
14312
14312
|
})();
|
|
14313
14313
|
})(exports.src);
|
|
14314
|
-
|
|
14315
|
-
exports.src$1 = {};
|
|
14316
|
-
|
|
14317
|
-
var qr = {};
|
|
14318
|
-
|
|
14319
|
-
Object.defineProperty(qr, "__esModule", {
|
|
14320
|
-
value: true
|
|
14321
|
-
});
|
|
14322
|
-
|
|
14323
|
-
qr.addCommonProtos = qr.loadProtosWithOptionsSync = qr.loadProtosWithOptions = void 0;
|
|
14324
|
-
|
|
14325
|
-
const $r = b.default;
|
|
14326
|
-
|
|
14327
|
-
const Gr = k.default;
|
|
14328
|
-
|
|
14329
|
-
const Vr = c.protobufjs;
|
|
14330
|
-
|
|
14331
|
-
function Kr(e, t) {
|
|
14332
|
-
const n = e.resolvePath;
|
|
14333
|
-
e.resolvePath = (e, i) => {
|
|
14334
|
-
if (Gr.isAbsolute(i)) {
|
|
14335
|
-
return i;
|
|
14336
|
-
}
|
|
14337
|
-
for (const e of t) {
|
|
14338
|
-
const t = Gr.join(e, i);
|
|
14339
|
-
try {
|
|
14340
|
-
$r.accessSync(t, $r.constants.R_OK);
|
|
14341
|
-
return t;
|
|
14342
|
-
} catch (e) {
|
|
14343
|
-
continue;
|
|
14344
|
-
}
|
|
14345
|
-
}
|
|
14346
|
-
process.emitWarning(`${i} not found in any of the include paths ${t}`);
|
|
14347
|
-
return n(e, i);
|
|
14348
|
-
};
|
|
14349
|
-
}
|
|
14350
|
-
|
|
14351
|
-
async function Yr(e, t) {
|
|
14352
|
-
const n = new Vr.Root;
|
|
14353
|
-
t = t || {};
|
|
14354
|
-
if (!!t.includeDirs) {
|
|
14355
|
-
if (!Array.isArray(t.includeDirs)) {
|
|
14356
|
-
return Promise.reject(new Error("The includeDirs option must be an array"));
|
|
14357
|
-
}
|
|
14358
|
-
Kr(n, t.includeDirs);
|
|
14359
|
-
}
|
|
14360
|
-
const i = await n.load(e, t);
|
|
14361
|
-
i.resolveAll();
|
|
14362
|
-
return i;
|
|
14363
|
-
}
|
|
14364
|
-
|
|
14365
|
-
qr.loadProtosWithOptions = Yr;
|
|
14366
|
-
|
|
14367
|
-
function Qr(e, t) {
|
|
14368
|
-
const n = new Vr.Root;
|
|
14369
|
-
t = t || {};
|
|
14370
|
-
if (!!t.includeDirs) {
|
|
14371
|
-
if (!Array.isArray(t.includeDirs)) {
|
|
14372
|
-
throw new Error("The includeDirs option must be an array");
|
|
14373
|
-
}
|
|
14374
|
-
Kr(n, t.includeDirs);
|
|
14375
|
-
}
|
|
14376
|
-
const i = n.loadSync(e, t);
|
|
14377
|
-
i.resolveAll();
|
|
14378
|
-
return i;
|
|
14379
|
-
}
|
|
14380
|
-
|
|
14381
|
-
qr.loadProtosWithOptionsSync = Qr;
|
|
14382
|
-
|
|
14383
|
-
function Xr() {
|
|
14384
|
-
const e = c.require$$3;
|
|
14385
|
-
const t = c.require$$4;
|
|
14386
|
-
const n = c.require$$5;
|
|
14387
|
-
const i = c.require$$6;
|
|
14388
|
-
Vr.common("api", e.nested.google.nested.protobuf.nested);
|
|
14389
|
-
Vr.common("descriptor", t.nested.google.nested.protobuf.nested);
|
|
14390
|
-
Vr.common("source_context", n.nested.google.nested.protobuf.nested);
|
|
14391
|
-
Vr.common("type", i.nested.google.nested.protobuf.nested);
|
|
14392
|
-
}
|
|
14393
|
-
|
|
14394
|
-
qr.addCommonProtos = Xr;
|
|
14395
|
-
|
|
14396
|
-
(function(e) {
|
|
14397
|
-
Object.defineProperty(e, "__esModule", {
|
|
14398
|
-
value: true
|
|
14399
|
-
});
|
|
14400
|
-
e.loadFileDescriptorSetFromObject = e.loadFileDescriptorSetFromBuffer = e.fromJSON = e.loadSync = e.load = e.IdempotencyLevel = e.isAnyExtension = e.Long = void 0;
|
|
14401
|
-
const t = l.lodash_camelcase;
|
|
14402
|
-
const n = c.protobufjs;
|
|
14403
|
-
const i = c.descriptorExports;
|
|
14404
|
-
const s = qr;
|
|
14405
|
-
const r = u.umdExports;
|
|
14406
|
-
e.Long = r;
|
|
14407
|
-
function a(e) {
|
|
14408
|
-
return "@type" in e && typeof e["@type"] === "string";
|
|
14409
|
-
}
|
|
14410
|
-
e.isAnyExtension = a;
|
|
14411
|
-
var o;
|
|
14412
|
-
(function(e) {
|
|
14413
|
-
e["IDEMPOTENCY_UNKNOWN"] = "IDEMPOTENCY_UNKNOWN";
|
|
14414
|
-
e["NO_SIDE_EFFECTS"] = "NO_SIDE_EFFECTS";
|
|
14415
|
-
e["IDEMPOTENT"] = "IDEMPOTENT";
|
|
14416
|
-
})(o = e.IdempotencyLevel || (e.IdempotencyLevel = {}));
|
|
14417
|
-
const d = {
|
|
14418
|
-
longs: String,
|
|
14419
|
-
enums: String,
|
|
14420
|
-
bytes: String,
|
|
14421
|
-
defaults: true,
|
|
14422
|
-
oneofs: true,
|
|
14423
|
-
json: true
|
|
14424
|
-
};
|
|
14425
|
-
function h(e, t) {
|
|
14426
|
-
if (e === "") {
|
|
14427
|
-
return t;
|
|
14428
|
-
} else {
|
|
14429
|
-
return e + "." + t;
|
|
14430
|
-
}
|
|
14431
|
-
}
|
|
14432
|
-
function f(e) {
|
|
14433
|
-
return e instanceof n.Service || e instanceof n.Type || e instanceof n.Enum;
|
|
14434
|
-
}
|
|
14435
|
-
function p(e) {
|
|
14436
|
-
return e instanceof n.Namespace || e instanceof n.Root;
|
|
14437
|
-
}
|
|
14438
|
-
function g(e, t) {
|
|
14439
|
-
const n = h(t, e.name);
|
|
14440
|
-
if (f(e)) {
|
|
14441
|
-
return [ [ n, e ] ];
|
|
14442
|
-
} else {
|
|
14443
|
-
if (p(e) && typeof e.nested !== "undefined") {
|
|
14444
|
-
return Object.keys(e.nested).map(t => g(e.nested[t], n)).reduce((e, t) => e.concat(t), []);
|
|
14445
|
-
}
|
|
14446
|
-
}
|
|
14447
|
-
return [];
|
|
14448
|
-
}
|
|
14449
|
-
function m(e, t) {
|
|
14450
|
-
return function n(i) {
|
|
14451
|
-
return e.toObject(e.decode(i), t);
|
|
14452
|
-
};
|
|
14453
|
-
}
|
|
14454
|
-
function v(e) {
|
|
14455
|
-
return function t(n) {
|
|
14456
|
-
if (Array.isArray(n)) {
|
|
14457
|
-
throw new Error(`Failed to serialize message: expected object with ${e.name} structure, got array instead`);
|
|
14458
|
-
}
|
|
14459
|
-
const i = e.fromObject(n);
|
|
14460
|
-
return e.encode(i).finish();
|
|
14461
|
-
};
|
|
14462
|
-
}
|
|
14463
|
-
function C(e) {
|
|
14464
|
-
return (e || []).reduce((e, t) => {
|
|
14465
|
-
for (const [n, i] of Object.entries(t)) {
|
|
14466
|
-
switch (n) {
|
|
14467
|
-
case "uninterpreted_option":
|
|
14468
|
-
e.uninterpreted_option.push(t.uninterpreted_option);
|
|
14469
|
-
break;
|
|
14470
|
-
|
|
14471
|
-
default:
|
|
14472
|
-
e[n] = i;
|
|
14473
|
-
}
|
|
14474
|
-
}
|
|
14475
|
-
return e;
|
|
14476
|
-
}, {
|
|
14477
|
-
deprecated: false,
|
|
14478
|
-
idempotency_level: o.IDEMPOTENCY_UNKNOWN,
|
|
14479
|
-
uninterpreted_option: []
|
|
14480
|
-
});
|
|
14481
|
-
}
|
|
14482
|
-
function S(e, n, i, s) {
|
|
14483
|
-
const r = e.resolvedRequestType;
|
|
14484
|
-
const a = e.resolvedResponseType;
|
|
14485
|
-
return {
|
|
14486
|
-
path: "/" + n + "/" + e.name,
|
|
14487
|
-
requestStream: !!e.requestStream,
|
|
14488
|
-
responseStream: !!e.responseStream,
|
|
14489
|
-
requestSerialize: v(r),
|
|
14490
|
-
requestDeserialize: m(r, i),
|
|
14491
|
-
responseSerialize: v(a),
|
|
14492
|
-
responseDeserialize: m(a, i),
|
|
14493
|
-
originalName: t(e.name),
|
|
14494
|
-
requestType: T(r, s),
|
|
14495
|
-
responseType: T(a, s),
|
|
14496
|
-
options: C(e.parsedOptions)
|
|
14497
|
-
};
|
|
14498
|
-
}
|
|
14499
|
-
function y(e, t, n, i) {
|
|
14500
|
-
const s = {};
|
|
14501
|
-
for (const r of e.methodsArray) {
|
|
14502
|
-
s[r.name] = S(r, t, n, i);
|
|
14503
|
-
}
|
|
14504
|
-
return s;
|
|
14505
|
-
}
|
|
14506
|
-
function T(e, t) {
|
|
14507
|
-
const n = e.toDescriptor("proto3");
|
|
14508
|
-
return {
|
|
14509
|
-
format: "Protocol Buffer 3 DescriptorProto",
|
|
14510
|
-
type: n.$type.toObject(n, d),
|
|
14511
|
-
fileDescriptorProtos: t
|
|
14512
|
-
};
|
|
14513
|
-
}
|
|
14514
|
-
function b(e, t) {
|
|
14515
|
-
const n = e.toDescriptor("proto3");
|
|
14516
|
-
return {
|
|
14517
|
-
format: "Protocol Buffer 3 EnumDescriptorProto",
|
|
14518
|
-
type: n.$type.toObject(n, d),
|
|
14519
|
-
fileDescriptorProtos: t
|
|
14520
|
-
};
|
|
14521
|
-
}
|
|
14522
|
-
function E(e, t, i, s) {
|
|
14523
|
-
if (e instanceof n.Service) {
|
|
14524
|
-
return y(e, t, i, s);
|
|
14525
|
-
} else if (e instanceof n.Type) {
|
|
14526
|
-
return T(e, s);
|
|
14527
|
-
} else if (e instanceof n.Enum) {
|
|
14528
|
-
return b(e, s);
|
|
14529
|
-
} else {
|
|
14530
|
-
throw new Error("Type mismatch in reflection object handling");
|
|
14531
|
-
}
|
|
14532
|
-
}
|
|
14533
|
-
function R(e, t) {
|
|
14534
|
-
const n = {};
|
|
14535
|
-
e.resolveAll();
|
|
14536
|
-
const s = e.toDescriptor("proto3").file;
|
|
14537
|
-
const r = s.map(e => Buffer.from(i.FileDescriptorProto.encode(e).finish()));
|
|
14538
|
-
for (const [i, s] of g(e, "")) {
|
|
14539
|
-
n[i] = E(s, i, t, r);
|
|
14540
|
-
}
|
|
14541
|
-
return n;
|
|
14542
|
-
}
|
|
14543
|
-
function _(e, t) {
|
|
14544
|
-
t = t || {};
|
|
14545
|
-
const i = n.Root.fromDescriptor(e);
|
|
14546
|
-
i.resolveAll();
|
|
14547
|
-
return R(i, t);
|
|
14548
|
-
}
|
|
14549
|
-
function w(e, t) {
|
|
14550
|
-
return (0, s.loadProtosWithOptions)(e, t).then(e => R(e, t));
|
|
14551
|
-
}
|
|
14552
|
-
e.load = w;
|
|
14553
|
-
function k(e, t) {
|
|
14554
|
-
const n = (0, s.loadProtosWithOptionsSync)(e, t);
|
|
14555
|
-
return R(n, t);
|
|
14556
|
-
}
|
|
14557
|
-
e.loadSync = k;
|
|
14558
|
-
function M(e, t) {
|
|
14559
|
-
t = t || {};
|
|
14560
|
-
const i = n.Root.fromJSON(e);
|
|
14561
|
-
i.resolveAll();
|
|
14562
|
-
return R(i, t);
|
|
14563
|
-
}
|
|
14564
|
-
e.fromJSON = M;
|
|
14565
|
-
function P(e, t) {
|
|
14566
|
-
const n = i.FileDescriptorSet.decode(e);
|
|
14567
|
-
return _(n, t);
|
|
14568
|
-
}
|
|
14569
|
-
e.loadFileDescriptorSetFromBuffer = P;
|
|
14570
|
-
function I(e, t) {
|
|
14571
|
-
const n = i.FileDescriptorSet.fromObject(e);
|
|
14572
|
-
return _(n, t);
|
|
14573
|
-
}
|
|
14574
|
-
e.loadFileDescriptorSetFromObject = I;
|
|
14575
|
-
(0, s.addCommonProtos)();
|
|
14576
|
-
})(exports.src$1);
|