lakutata 2.0.30 → 2.0.32
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/README.md +2 -2
- package/com/database.cjs +17 -17
- package/com/database.mjs +17 -17
- package/com/docker.cjs +14 -14
- package/com/docker.mjs +14 -14
- package/com/entrypoint.cjs +12 -12
- package/com/entrypoint.d.ts +2 -2
- package/com/entrypoint.mjs +12 -12
- package/com/logger.cjs +12 -12
- package/com/logger.mjs +12 -12
- package/decorator/asst.cjs +4 -4
- package/decorator/asst.mjs +4 -4
- package/decorator/ctrl.cjs +41 -13
- package/decorator/ctrl.d.ts +16 -2
- package/decorator/ctrl.mjs +21 -7
- package/decorator/di.cjs +6 -6
- package/decorator/di.mjs +6 -6
- package/decorator/dto.cjs +6 -6
- package/decorator/dto.mjs +6 -6
- package/decorator/orm.cjs +13 -13
- package/decorator/orm.mjs +13 -13
- package/helper.cjs +9 -9
- package/helper.mjs +9 -9
- package/lakutata.cjs +13 -13
- package/lakutata.mjs +13 -13
- package/orm.cjs +14 -14
- package/orm.mjs +15 -15
- package/package.json +6 -1
- package/provider/database.cjs +17 -17
- package/provider/database.mjs +17 -17
- package/provider/passwordHash.cjs +157 -0
- package/provider/passwordHash.d.ts +33 -0
- package/provider/passwordHash.mjs +149 -0
- package/src/components/Database.cjs +16 -16
- package/src/components/Database.mjs +16 -16
- package/src/components/Logger.cjs +12 -12
- package/src/components/Logger.mjs +12 -12
- package/src/components/docker/ConnectionOptionsBuilder.cjs +14 -14
- package/src/components/docker/ConnectionOptionsBuilder.mjs +14 -14
- package/src/components/docker/Docker.cjs +11 -11
- package/src/components/docker/Docker.mjs +11 -11
- package/src/components/docker/exceptions/DockerConnectionException.cjs +3 -3
- package/src/components/docker/exceptions/DockerConnectionException.mjs +3 -3
- package/src/components/docker/exceptions/DockerImageBuildException.cjs +3 -3
- package/src/components/docker/exceptions/DockerImageBuildException.mjs +3 -3
- package/src/components/docker/exceptions/DockerImageImportException.cjs +3 -3
- package/src/components/docker/exceptions/DockerImageImportException.mjs +3 -3
- package/src/components/docker/exceptions/DockerImageNotFoundException.cjs +3 -3
- package/src/components/docker/exceptions/DockerImageNotFoundException.mjs +3 -3
- package/src/components/docker/exceptions/DockerImagePullException.cjs +3 -3
- package/src/components/docker/exceptions/DockerImagePullException.mjs +3 -3
- package/src/components/docker/exceptions/DockerImagePushException.cjs +3 -3
- package/src/components/docker/exceptions/DockerImagePushException.mjs +3 -3
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.cjs +3 -3
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.mjs +3 -3
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.cjs +3 -3
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.mjs +3 -3
- package/src/components/docker/lib/DockerContainer.cjs +14 -14
- package/src/components/docker/lib/DockerContainer.mjs +14 -14
- package/src/components/docker/lib/DockerContainerTTY.cjs +14 -14
- package/src/components/docker/lib/DockerContainerTTY.mjs +14 -14
- package/src/components/docker/lib/DockerImage.cjs +11 -11
- package/src/components/docker/lib/DockerImage.mjs +11 -11
- package/src/components/docker/options/DockerPruneOptions.cjs +6 -6
- package/src/components/docker/options/DockerPruneOptions.mjs +6 -6
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +6 -6
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +6 -6
- package/src/components/docker/options/container/ContainerCommitOptions.cjs +6 -6
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +6 -6
- package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +6 -6
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +6 -6
- package/src/components/docker/options/container/ContainerExecOptions.cjs +6 -6
- package/src/components/docker/options/container/ContainerExecOptions.mjs +6 -6
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +6 -6
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +6 -6
- package/src/components/docker/options/container/ContainerKillOptions.cjs +6 -6
- package/src/components/docker/options/container/ContainerKillOptions.mjs +6 -6
- package/src/components/docker/options/container/ContainerLogsOptions.cjs +6 -6
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +6 -6
- package/src/components/docker/options/container/ContainerRemoveOptions.cjs +6 -6
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +6 -6
- package/src/components/docker/options/container/ContainerSettingOptions.cjs +6 -6
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +6 -6
- package/src/components/docker/options/container/ContainerStopOptions.cjs +6 -6
- package/src/components/docker/options/container/ContainerStopOptions.mjs +6 -6
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +6 -6
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +6 -6
- package/src/components/docker/options/image/ImageBuildOptions.cjs +6 -6
- package/src/components/docker/options/image/ImageBuildOptions.mjs +6 -6
- package/src/components/docker/options/image/ImageExportOptions.cjs +6 -6
- package/src/components/docker/options/image/ImageExportOptions.mjs +6 -6
- package/src/components/docker/options/image/ImageImportOptions.cjs +6 -6
- package/src/components/docker/options/image/ImageImportOptions.mjs +6 -6
- package/src/components/docker/options/image/ImagePullOptions.cjs +6 -6
- package/src/components/docker/options/image/ImagePullOptions.mjs +6 -6
- package/src/components/docker/options/image/ImagePushOptions.cjs +6 -6
- package/src/components/docker/options/image/ImagePushOptions.mjs +6 -6
- package/src/components/docker/options/image/ImageRemoveOptions.cjs +6 -6
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +6 -6
- package/src/components/docker/options/image/ImageTagOptions.cjs +6 -6
- package/src/components/docker/options/image/ImageTagOptions.mjs +6 -6
- package/src/components/docker/options/network/NetworkCreateOptions.cjs +6 -6
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +6 -6
- package/src/components/entrypoint/Entrypoint.cjs +12 -12
- package/src/components/entrypoint/Entrypoint.mjs +12 -12
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +3 -3
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +3 -3
- package/src/components/entrypoint/lib/Controller.cjs +11 -11
- package/src/components/entrypoint/lib/Controller.mjs +11 -11
- package/src/constants/DIMetadataKey.cjs +2 -2
- package/src/constants/DIMetadataKey.mjs +2 -2
- package/src/constants/DTOMetadataKey.cjs +2 -2
- package/src/constants/DTOMetadataKey.mjs +2 -2
- package/src/decorators/asst/After.cjs +3 -3
- package/src/decorators/asst/After.mjs +3 -3
- package/src/decorators/asst/Before.cjs +3 -3
- package/src/decorators/asst/Before.mjs +3 -3
- package/src/decorators/ctrl/CLIAction.cjs +7 -7
- package/src/decorators/ctrl/CLIAction.mjs +7 -7
- package/src/decorators/ctrl/HTTPAction.cjs +7 -7
- package/src/decorators/ctrl/HTTPAction.mjs +7 -7
- package/src/decorators/ctrl/ServiceAction.cjs +7 -7
- package/src/decorators/ctrl/ServiceAction.mjs +7 -7
- package/src/decorators/ctrl/http/DELETE.cjs +85 -0
- package/src/decorators/ctrl/http/DELETE.mjs +79 -0
- package/src/decorators/ctrl/http/GET.cjs +85 -0
- package/src/decorators/ctrl/http/GET.mjs +79 -0
- package/src/decorators/ctrl/http/HEAD.cjs +85 -0
- package/src/decorators/ctrl/http/HEAD.mjs +79 -0
- package/src/decorators/ctrl/http/OPTIONS.cjs +85 -0
- package/src/decorators/ctrl/http/OPTIONS.mjs +79 -0
- package/src/decorators/ctrl/http/PATCH.cjs +85 -0
- package/src/decorators/ctrl/http/PATCH.mjs +79 -0
- package/src/decorators/ctrl/http/POST.cjs +85 -0
- package/src/decorators/ctrl/http/POST.mjs +79 -0
- package/src/decorators/ctrl/http/PUT.cjs +85 -0
- package/src/decorators/ctrl/http/PUT.mjs +79 -0
- package/src/decorators/di/Autoload.cjs +2 -2
- package/src/decorators/di/Autoload.mjs +2 -2
- package/src/decorators/di/Configurable.cjs +6 -6
- package/src/decorators/di/Configurable.mjs +6 -6
- package/src/decorators/di/Inject.cjs +6 -6
- package/src/decorators/di/Inject.mjs +6 -6
- package/src/decorators/di/Lifetime.cjs +4 -4
- package/src/decorators/di/Lifetime.mjs +4 -4
- package/src/decorators/dto/Accept.cjs +6 -6
- package/src/decorators/dto/Accept.mjs +6 -6
- package/src/decorators/dto/Expect.cjs +6 -6
- package/src/decorators/dto/Expect.mjs +6 -6
- package/src/decorators/dto/IndexSignature.cjs +6 -6
- package/src/decorators/dto/IndexSignature.mjs +6 -6
- package/src/decorators/dto/Return.cjs +6 -6
- package/src/decorators/dto/Return.mjs +6 -6
- package/src/decorators/orm/AfterInsert.cjs +12 -12
- package/src/decorators/orm/AfterInsert.mjs +12 -12
- package/src/decorators/orm/AfterLoad.cjs +12 -12
- package/src/decorators/orm/AfterLoad.mjs +12 -12
- package/src/decorators/orm/AfterRecover.cjs +12 -12
- package/src/decorators/orm/AfterRecover.mjs +12 -12
- package/src/decorators/orm/AfterRemove.cjs +12 -12
- package/src/decorators/orm/AfterRemove.mjs +12 -12
- package/src/decorators/orm/AfterSoftRemove.cjs +12 -12
- package/src/decorators/orm/AfterSoftRemove.mjs +12 -12
- package/src/decorators/orm/AfterUpdate.cjs +12 -12
- package/src/decorators/orm/AfterUpdate.mjs +12 -12
- package/src/decorators/orm/BeforeInsert.cjs +12 -12
- package/src/decorators/orm/BeforeInsert.mjs +12 -12
- package/src/decorators/orm/BeforeRecover.cjs +12 -12
- package/src/decorators/orm/BeforeRecover.mjs +12 -12
- package/src/decorators/orm/BeforeRemove.cjs +12 -12
- package/src/decorators/orm/BeforeRemove.mjs +12 -12
- package/src/decorators/orm/BeforeSoftRemove.cjs +12 -12
- package/src/decorators/orm/BeforeSoftRemove.mjs +12 -12
- package/src/decorators/orm/BeforeUpdate.cjs +12 -12
- package/src/decorators/orm/BeforeUpdate.mjs +12 -12
- package/src/decorators/orm/Check.cjs +12 -12
- package/src/decorators/orm/Check.mjs +12 -12
- package/src/decorators/orm/ChildEntity.cjs +12 -12
- package/src/decorators/orm/ChildEntity.mjs +12 -12
- package/src/decorators/orm/Column.cjs +12 -12
- package/src/decorators/orm/Column.mjs +12 -12
- package/src/decorators/orm/CreateDateColumn.cjs +12 -12
- package/src/decorators/orm/CreateDateColumn.mjs +12 -12
- package/src/decorators/orm/DeleteDateColumn.cjs +12 -12
- package/src/decorators/orm/DeleteDateColumn.mjs +12 -12
- package/src/decorators/orm/Entity.cjs +12 -12
- package/src/decorators/orm/Entity.mjs +12 -12
- package/src/decorators/orm/EventSubscriber.cjs +12 -12
- package/src/decorators/orm/EventSubscriber.mjs +12 -12
- package/src/decorators/orm/Exclusion.cjs +12 -12
- package/src/decorators/orm/Exclusion.mjs +12 -12
- package/src/decorators/orm/Generated.cjs +12 -12
- package/src/decorators/orm/Generated.mjs +12 -12
- package/src/decorators/orm/Index.cjs +12 -12
- package/src/decorators/orm/Index.mjs +12 -12
- package/src/decorators/orm/JoinColumn.cjs +12 -12
- package/src/decorators/orm/JoinColumn.mjs +12 -12
- package/src/decorators/orm/JoinTable.cjs +12 -12
- package/src/decorators/orm/JoinTable.mjs +12 -12
- package/src/decorators/orm/ManyToMany.cjs +12 -12
- package/src/decorators/orm/ManyToMany.mjs +12 -12
- package/src/decorators/orm/ManyToOne.cjs +12 -12
- package/src/decorators/orm/ManyToOne.mjs +12 -12
- package/src/decorators/orm/ObjectIdColumn.cjs +12 -12
- package/src/decorators/orm/ObjectIdColumn.mjs +12 -12
- package/src/decorators/orm/OneToMany.cjs +12 -12
- package/src/decorators/orm/OneToMany.mjs +12 -12
- package/src/decorators/orm/OneToOne.cjs +12 -12
- package/src/decorators/orm/OneToOne.mjs +12 -12
- package/src/decorators/orm/PrimaryColumn.cjs +12 -12
- package/src/decorators/orm/PrimaryColumn.mjs +12 -12
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +12 -12
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +12 -12
- package/src/decorators/orm/RelationId.cjs +12 -12
- package/src/decorators/orm/RelationId.mjs +12 -12
- package/src/decorators/orm/TableInheritance.cjs +12 -12
- package/src/decorators/orm/TableInheritance.mjs +12 -12
- package/src/decorators/orm/Tree.cjs +12 -12
- package/src/decorators/orm/Tree.mjs +12 -12
- package/src/decorators/orm/TreeChildren.cjs +12 -12
- package/src/decorators/orm/TreeChildren.mjs +12 -12
- package/src/decorators/orm/TreeLevelColumn.cjs +12 -12
- package/src/decorators/orm/TreeLevelColumn.mjs +12 -12
- package/src/decorators/orm/TreeParent.cjs +12 -12
- package/src/decorators/orm/TreeParent.mjs +12 -12
- package/src/decorators/orm/Unique.cjs +12 -12
- package/src/decorators/orm/Unique.mjs +12 -12
- package/src/decorators/orm/UpdateDateColumn.cjs +12 -12
- package/src/decorators/orm/UpdateDateColumn.mjs +12 -12
- package/src/decorators/orm/VersionColumn.cjs +12 -12
- package/src/decorators/orm/VersionColumn.mjs +12 -12
- package/src/decorators/orm/ViewColumn.cjs +12 -12
- package/src/decorators/orm/ViewColumn.mjs +12 -12
- package/src/decorators/orm/ViewEntity.cjs +12 -12
- package/src/decorators/orm/ViewEntity.mjs +12 -12
- package/src/decorators/orm/VirtualColumn.cjs +12 -12
- package/src/decorators/orm/VirtualColumn.mjs +12 -12
- package/src/exceptions/DestroyRuntimeContainerException.cjs +3 -3
- package/src/exceptions/DestroyRuntimeContainerException.mjs +3 -3
- package/src/exceptions/InvalidActionPatternDepthException.cjs +3 -3
- package/src/exceptions/InvalidActionPatternDepthException.mjs +3 -3
- package/src/exceptions/InvalidAssistantFunctionTypeException.cjs +3 -3
- package/src/exceptions/InvalidAssistantFunctionTypeException.mjs +3 -3
- package/src/exceptions/InvalidObjectTypeException.cjs +3 -3
- package/src/exceptions/InvalidObjectTypeException.mjs +3 -3
- package/src/exceptions/MethodNotFoundException.cjs +3 -3
- package/src/exceptions/MethodNotFoundException.mjs +3 -3
- package/src/exceptions/alias/AliasExistsException.cjs +3 -3
- package/src/exceptions/alias/AliasExistsException.mjs +3 -3
- package/src/exceptions/alias/AliasNotFoundException.cjs +3 -3
- package/src/exceptions/alias/AliasNotFoundException.mjs +3 -3
- package/src/exceptions/alias/InvalidAliasNameException.cjs +3 -3
- package/src/exceptions/alias/InvalidAliasNameException.mjs +3 -3
- package/src/exceptions/di/DependencyInjectionException.cjs +3 -3
- package/src/exceptions/di/DependencyInjectionException.mjs +3 -3
- package/src/exceptions/di/LifetimeLockedException.cjs +3 -3
- package/src/exceptions/di/LifetimeLockedException.mjs +3 -3
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs +3 -3
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.mjs +3 -3
- package/src/exceptions/dto/InvalidMethodAcceptException.cjs +3 -3
- package/src/exceptions/dto/InvalidMethodAcceptException.mjs +3 -3
- package/src/exceptions/dto/InvalidMethodReturnException.cjs +3 -3
- package/src/exceptions/dto/InvalidMethodReturnException.mjs +3 -3
- package/src/exceptions/dto/InvalidValueException.cjs +3 -3
- package/src/exceptions/dto/InvalidValueException.mjs +3 -3
- package/src/lib/base/BaseObject.cjs +11 -11
- package/src/lib/base/BaseObject.mjs +11 -11
- package/src/lib/base/Context.cjs +6 -6
- package/src/lib/base/Context.mjs +6 -6
- package/src/lib/base/EventEmitter.cjs +1 -1
- package/src/lib/base/EventEmitter.mjs +1 -1
- package/src/lib/base/abstracts/Exception.cjs +3 -3
- package/src/lib/base/abstracts/Exception.mjs +3 -3
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +11 -11
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +11 -11
- package/src/lib/base/internal/BasicInfo.cjs +3 -3
- package/src/lib/base/internal/BasicInfo.mjs +3 -3
- package/src/lib/base/internal/ConfigurableRecordsInjection.cjs +2 -2
- package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +2 -2
- package/src/lib/base/internal/ConstructorSymbol.cjs +2 -2
- package/src/lib/base/internal/ConstructorSymbol.mjs +2 -2
- package/src/lib/base/internal/ControllerEntrypoint.cjs +4 -4
- package/src/lib/base/internal/ControllerEntrypoint.mjs +4 -4
- package/src/lib/base/internal/DataValidator.cjs +5 -5
- package/src/lib/base/internal/DataValidator.mjs +5 -5
- package/src/lib/base/internal/FlexibleDTO.cjs +6 -6
- package/src/lib/base/internal/FlexibleDTO.mjs +6 -6
- package/src/lib/base/internal/MethodAssistantFunction.cjs +3 -3
- package/src/lib/base/internal/MethodAssistantFunction.mjs +3 -3
- package/src/lib/base/internal/MethodValidation.cjs +6 -6
- package/src/lib/base/internal/MethodValidation.mjs +6 -6
- package/src/lib/base/internal/ModuleConfigLoader.cjs +11 -11
- package/src/lib/base/internal/ModuleConfigLoader.mjs +11 -11
- package/src/lib/base/internal/ObjectConfiguration.cjs +6 -6
- package/src/lib/base/internal/ObjectConfiguration.mjs +6 -6
- package/src/lib/base/internal/ObjectContainer.cjs +2 -2
- package/src/lib/base/internal/ObjectContainer.mjs +2 -2
- package/src/lib/base/internal/ObjectInjection.cjs +30 -21
- package/src/lib/base/internal/ObjectInjection.mjs +19 -10
- package/src/lib/base/internal/ObjectLifetime.cjs +4 -4
- package/src/lib/base/internal/ObjectLifetime.mjs +4 -4
- package/src/lib/base/internal/ObjectSchemaValidation.cjs +6 -6
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +6 -6
- package/src/lib/base/internal/ObjectType.cjs +11 -11
- package/src/lib/base/internal/ObjectType.mjs +11 -11
- package/src/lib/base/internal/PatternManager.cjs +1 -1
- package/src/lib/base/internal/PatternManager.mjs +1 -1
- package/src/lib/context/CLIContext.cjs +6 -6
- package/src/lib/context/CLIContext.mjs +6 -6
- package/src/lib/context/HTTPContext.cjs +6 -6
- package/src/lib/context/HTTPContext.mjs +6 -6
- package/src/lib/context/ServiceContext.cjs +6 -6
- package/src/lib/context/ServiceContext.mjs +6 -6
- package/src/lib/core/Alias.cjs +3 -3
- package/src/lib/core/Alias.mjs +3 -3
- package/src/lib/core/Application.cjs +13 -13
- package/src/lib/core/Application.mjs +13 -13
- package/src/lib/core/Component.cjs +11 -11
- package/src/lib/core/Component.mjs +11 -11
- package/src/lib/core/Container.cjs +11 -11
- package/src/lib/core/Container.mjs +11 -11
- package/src/lib/core/DTO.cjs +6 -6
- package/src/lib/core/DTO.mjs +6 -6
- package/src/lib/core/Module.cjs +12 -12
- package/src/lib/core/Module.mjs +12 -12
- package/src/lib/core/Provider.cjs +11 -11
- package/src/lib/core/Provider.mjs +11 -11
- package/src/lib/core/Time.cjs +7 -4
- package/src/lib/core/Time.mjs +7 -4
- package/src/lib/helpers/Glob.cjs +2 -2
- package/src/lib/helpers/Glob.mjs +2 -2
- 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/IsSymbol.cjs +6 -6
- package/src/lib/helpers/IsSymbol.mjs +6 -6
- package/src/lib/helpers/IsXML.cjs +1 -1
- package/src/lib/helpers/IsXML.mjs +1 -1
- package/src/lib/helpers/MD5.cjs +3 -3
- package/src/lib/helpers/MD5.mjs +3 -3
- package/src/lib/helpers/NonceStr.cjs +2 -2
- package/src/lib/helpers/NonceStr.mjs +2 -2
- package/src/lib/helpers/ObjectHash.cjs +2 -2
- package/src/lib/helpers/ObjectHash.mjs +2 -2
- package/src/lib/helpers/RandomString.cjs +2 -2
- package/src/lib/helpers/RandomString.mjs +2 -2
- package/src/lib/helpers/SHA1.cjs +3 -3
- package/src/lib/helpers/SHA1.mjs +3 -3
- package/src/lib/helpers/SHA256.cjs +3 -3
- package/src/lib/helpers/SHA256.mjs +3 -3
- package/src/lib/ioc/DependencyInjectionContainer.cjs +10 -10
- package/src/lib/ioc/DependencyInjectionContainer.mjs +10 -10
- package/src/lib/ioc/Errors.cjs +6 -6
- package/src/lib/ioc/Errors.mjs +6 -6
- package/src/lib/ioc/ListModules.cjs +7 -7
- package/src/lib/ioc/ListModules.mjs +7 -7
- package/src/lib/ioc/LoadModules.cjs +6 -6
- package/src/lib/ioc/LoadModules.mjs +6 -6
- package/src/lib/ioc/Resolvers.cjs +6 -6
- package/src/lib/ioc/Resolvers.mjs +6 -6
- package/src/lib/ioc/Utils.cjs +6 -6
- package/src/lib/ioc/Utils.mjs +6 -6
- package/src/lib/validation/VLD.cjs +4 -4
- package/src/lib/validation/VLD.mjs +4 -4
- package/src/options/ApplicationOptions.cjs +11 -11
- package/src/options/ApplicationOptions.mjs +11 -11
- package/src/options/LoadAnonymousObjectOptions.cjs +11 -11
- package/src/options/LoadAnonymousObjectOptions.mjs +11 -11
- package/src/options/LoadNamedObjectOptions.cjs +11 -11
- package/src/options/LoadNamedObjectOptions.mjs +11 -11
- package/src/options/LoadObjectOptions.cjs +11 -11
- package/src/options/LoadObjectOptions.mjs +11 -11
- package/src/options/ModuleLoadObjectsOptions.cjs +11 -11
- package/src/options/ModuleLoadObjectsOptions.mjs +11 -11
- package/src/options/ModuleOptions.cjs +11 -11
- package/src/options/ModuleOptions.mjs +11 -11
- package/src/options/OverridableNamedObjectOptions.cjs +11 -11
- package/src/options/OverridableNamedObjectOptions.mjs +11 -11
- package/src/options/OverridableObjectOptions.cjs +11 -11
- package/src/options/OverridableObjectOptions.mjs +11 -11
- package/src/providers/Database.cjs +16 -16
- package/src/providers/Database.mjs +16 -16
- package/src/providers/PasswordHash.cjs +689 -0
- package/src/providers/PasswordHash.mjs +677 -0
- package/vendor/Package.10.cjs +2 -82
- package/vendor/Package.10.mjs +2 -76
- package/vendor/Package.11.cjs +5 -5
- package/vendor/Package.11.mjs +5 -5
- package/vendor/{Package.22.cjs → Package.112.cjs} +8 -8
- package/vendor/{Package.22.mjs → Package.112.mjs} +8 -8
- package/vendor/Package.12.cjs +83 -1
- package/vendor/Package.12.mjs +77 -1
- package/vendor/Package.13.cjs +1 -478
- package/vendor/Package.13.mjs +1 -460
- package/vendor/Package.14.cjs +5 -5
- package/vendor/Package.14.mjs +5 -5
- package/vendor/Package.15.cjs +204 -193
- package/vendor/Package.15.mjs +195 -184
- package/vendor/Package.2.cjs +7002 -5
- package/vendor/Package.2.mjs +6992 -5
- package/vendor/Package.3.cjs +455 -925
- package/vendor/Package.3.mjs +437 -925
- package/vendor/Package.4.cjs +939 -37
- package/vendor/Package.4.mjs +941 -35
- package/vendor/Package.5.cjs +32 -6992
- package/vendor/Package.5.mjs +30 -6984
- package/vendor/Package.6.cjs +4309 -2
- package/vendor/Package.6.mjs +4309 -2
- package/vendor/{Package.72.cjs → Package.62.cjs} +3 -3
- package/vendor/{Package.72.mjs → Package.62.mjs} +3 -3
- package/vendor/{Package.73.cjs → Package.63.cjs} +1 -1
- package/vendor/{Package.73.mjs → Package.63.mjs} +1 -1
- package/vendor/{Package.74.cjs → Package.64.cjs} +2 -2
- package/vendor/{Package.74.mjs → Package.64.mjs} +2 -2
- package/vendor/Package.7.cjs +3 -4308
- package/vendor/Package.7.mjs +3 -4308
- package/vendor/Package.8.cjs +8 -4
- package/vendor/Package.8.mjs +8 -4
- package/vendor/Package.9.cjs +1 -1
- package/vendor/Package.9.mjs +1 -1
- package/vendor/TypeDef.1.d.ts +4 -0
- package/vendor/TypeDef.13.d.ts +2 -2
package/vendor/Package.15.mjs
CHANGED
|
@@ -4,11 +4,11 @@ import { Provider } from "../src/lib/core/Provider.mjs";
|
|
|
4
4
|
|
|
5
5
|
import { Configurable } from "../src/decorators/di/Configurable.mjs";
|
|
6
6
|
|
|
7
|
-
import { D as DTO } from "./Package.
|
|
7
|
+
import { D as DTO } from "./Package.2.mjs";
|
|
8
8
|
|
|
9
|
-
import { g as getDefaultExportFromCjs, c as commonjsGlobal, a as getAugmentedNamespace } from "./Package.
|
|
9
|
+
import { g as getDefaultExportFromCjs, c as commonjsGlobal, a as getAugmentedNamespace } from "./Package.5.mjs";
|
|
10
10
|
|
|
11
|
-
import "./Package.
|
|
11
|
+
import "./Package.8.mjs";
|
|
12
12
|
|
|
13
13
|
import require$$0$8 from "querystring";
|
|
14
14
|
|
|
@@ -16,7 +16,7 @@ import require$$0 from "https";
|
|
|
16
16
|
|
|
17
17
|
import require$$1$1 from "http";
|
|
18
18
|
|
|
19
|
-
import "./Package.
|
|
19
|
+
import "./Package.10.mjs";
|
|
20
20
|
|
|
21
21
|
import require$$4$1 from "url";
|
|
22
22
|
|
|
@@ -24,17 +24,17 @@ import require$$0$5 from "net";
|
|
|
24
24
|
|
|
25
25
|
import require$$4$2 from "child_process";
|
|
26
26
|
|
|
27
|
-
import "./Package.
|
|
27
|
+
import "./Package.13.mjs";
|
|
28
28
|
|
|
29
29
|
import { r as requireString_decoder, e as endOfStream$1, p as pump_1, L as Logger } from "./Package.14.mjs";
|
|
30
30
|
|
|
31
|
-
import "./Package.
|
|
31
|
+
import "./Package.12.mjs";
|
|
32
32
|
|
|
33
33
|
import require$$0$1 from "buffer";
|
|
34
34
|
|
|
35
35
|
import require$$0$2 from "assert";
|
|
36
36
|
|
|
37
|
-
import { c as commonjsRequire } from "./Package.
|
|
37
|
+
import { c as commonjsRequire } from "./Package.7.mjs";
|
|
38
38
|
|
|
39
39
|
import require$$0$3 from "crypto";
|
|
40
40
|
|
|
@@ -54,7 +54,7 @@ import require$$1__default from "util";
|
|
|
54
54
|
|
|
55
55
|
import require$$0$7 from "events";
|
|
56
56
|
|
|
57
|
-
import { r as requireInherits, s as srcExports$1 } from "./Package.
|
|
57
|
+
import { r as requireInherits, s as srcExports$1 } from "./Package.62.mjs";
|
|
58
58
|
|
|
59
59
|
import require$$0$9 from "os";
|
|
60
60
|
|
|
@@ -732,7 +732,7 @@ var ber = ber$1.exports;
|
|
|
732
732
|
|
|
733
733
|
var berExports = ber$1.exports;
|
|
734
734
|
|
|
735
|
-
const index$
|
|
735
|
+
const index$k = getDefaultExportFromCjs(berExports);
|
|
736
736
|
|
|
737
737
|
var Ber$2 = berExports;
|
|
738
738
|
|
|
@@ -742,7 +742,7 @@ var lib$2 = {
|
|
|
742
742
|
BerWriter: Ber$2.Writer
|
|
743
743
|
};
|
|
744
744
|
|
|
745
|
-
const index$
|
|
745
|
+
const index$j = getDefaultExportFromCjs(lib$2);
|
|
746
746
|
|
|
747
747
|
var naclFast$2 = {
|
|
748
748
|
exports: {}
|
|
@@ -2979,7 +2979,7 @@ var bcryptPbkdf = {
|
|
|
2979
2979
|
pbkdf: bcrypt_pbkdf$2
|
|
2980
2980
|
};
|
|
2981
2981
|
|
|
2982
|
-
const index$
|
|
2982
|
+
const index$i = getDefaultExportFromCjs(bcryptPbkdf);
|
|
2983
2983
|
|
|
2984
2984
|
var constants$4 = {
|
|
2985
2985
|
exports: {}
|
|
@@ -10600,9 +10600,9 @@ var validateNumber$1 = nodeFsCompat.validateNumber = function e(t, r) {
|
|
|
10600
10600
|
|
|
10601
10601
|
const EventEmitter$4 = require$$0$7;
|
|
10602
10602
|
|
|
10603
|
-
const fs$
|
|
10603
|
+
const fs$7 = require$$0$4;
|
|
10604
10604
|
|
|
10605
|
-
const {constants: constants$2} = fs$
|
|
10605
|
+
const {constants: constants$2} = fs$7;
|
|
10606
10606
|
|
|
10607
10607
|
const {Readable: ReadableStream$1, Writable: WritableStream$1} = require$$0$6;
|
|
10608
10608
|
|
|
@@ -10962,11 +10962,11 @@ let SFTP$3 = class SFTP extends EventEmitter$4 {
|
|
|
10962
10962
|
}
|
|
10963
10963
|
fastGet(e, t, r, n) {
|
|
10964
10964
|
if (this.server) throw new Error("Client-only method called in server mode");
|
|
10965
|
-
fastXfer(this, fs$
|
|
10965
|
+
fastXfer(this, fs$7, e, t, r, n);
|
|
10966
10966
|
}
|
|
10967
10967
|
fastPut(e, t, r, n) {
|
|
10968
10968
|
if (this.server) throw new Error("Client-only method called in server mode");
|
|
10969
|
-
fastXfer(fs$
|
|
10969
|
+
fastXfer(fs$7, this, e, t, r, n);
|
|
10970
10970
|
}
|
|
10971
10971
|
readFile(e, t, r) {
|
|
10972
10972
|
if (this.server) throw new Error("Client-only method called in server mode");
|
|
@@ -12105,10 +12105,10 @@ function fastXfer(e, t, r, n, s, o) {
|
|
|
12105
12105
|
s = () => {
|
|
12106
12106
|
if (--n === 0) o(r);
|
|
12107
12107
|
};
|
|
12108
|
-
if (_ && (e === fs$
|
|
12109
|
-
if (E && (t === fs$
|
|
12110
|
-
if (_ && (e === fs$
|
|
12111
|
-
if (E && (t === fs$
|
|
12108
|
+
if (_ && (e === fs$7 || e.outgoing.state === "open")) ++n;
|
|
12109
|
+
if (E && (t === fs$7 || t.outgoing.state === "open")) ++n;
|
|
12110
|
+
if (_ && (e === fs$7 || e.outgoing.state === "open")) e.close(_, s);
|
|
12111
|
+
if (E && (t === fs$7 || t.outgoing.state === "open")) t.close(E, s);
|
|
12112
12112
|
} else {
|
|
12113
12113
|
o(r);
|
|
12114
12114
|
}
|
|
@@ -12121,7 +12121,7 @@ function fastXfer(e, t, r, n, s, o) {
|
|
|
12121
12121
|
});
|
|
12122
12122
|
function A(s, d) {
|
|
12123
12123
|
if (s) {
|
|
12124
|
-
if (e !== fs$
|
|
12124
|
+
if (e !== fs$7) {
|
|
12125
12125
|
e.stat(r, ((e, t) => {
|
|
12126
12126
|
if (e) return S(s);
|
|
12127
12127
|
A(null, t);
|
|
@@ -16909,7 +16909,7 @@ var lib = {
|
|
|
16909
16909
|
}
|
|
16910
16910
|
};
|
|
16911
16911
|
|
|
16912
|
-
const index$
|
|
16912
|
+
const index$h = getDefaultExportFromCjs(lib);
|
|
16913
16913
|
|
|
16914
16914
|
var Client = lib.Client, http$2 = require$$1$1;
|
|
16915
16915
|
|
|
@@ -19376,13 +19376,13 @@ HttpDuplex$1.prototype.destroySoon = function() {
|
|
|
19376
19376
|
|
|
19377
19377
|
const http_duplex$1 = getDefaultExportFromCjs(http_duplex);
|
|
19378
19378
|
|
|
19379
|
-
var fs$
|
|
19379
|
+
var fs$6 = require$$0$4;
|
|
19380
19380
|
|
|
19381
19381
|
var splitCa = function(e, t, r) {
|
|
19382
19382
|
t = typeof t !== "undefined" ? t : "\n";
|
|
19383
19383
|
r = typeof r !== "undefined" ? r : "utf8";
|
|
19384
19384
|
var n = [];
|
|
19385
|
-
var s = fs$
|
|
19385
|
+
var s = fs$6.readFileSync(e, r);
|
|
19386
19386
|
if (s.indexOf("-END CERTIFICATE-") < 0 || s.indexOf("-BEGIN CERTIFICATE-") < 0) {
|
|
19387
19387
|
throw Error("File does not contain 'BEGIN CERTIFICATE' or 'END CERTIFICATE'");
|
|
19388
19388
|
}
|
|
@@ -19403,9 +19403,9 @@ var splitCa = function(e, t, r) {
|
|
|
19403
19403
|
return n;
|
|
19404
19404
|
};
|
|
19405
19405
|
|
|
19406
|
-
const index$
|
|
19406
|
+
const index$g = getDefaultExportFromCjs(splitCa);
|
|
19407
19407
|
|
|
19408
|
-
var querystring = require$$0$8, http$1 = httpExports, fs$
|
|
19408
|
+
var querystring = require$$0$8, http$1 = httpExports, fs$5 = require$$0$4, path$7 = require$$0__default, url = require$$4$1, ssh = ssh$1, HttpDuplex = http_duplex, debug = srcExports$1("modem"), utils = utils$4, util$q = require$$1__default, splitca = splitCa, os$2 = require$$0$9, isWin = os$2.type() === "Windows_NT", stream = require$$0$6;
|
|
19409
19409
|
|
|
19410
19410
|
var defaultOpts = function() {
|
|
19411
19411
|
var e;
|
|
@@ -19446,8 +19446,8 @@ var defaultOpts = function() {
|
|
|
19446
19446
|
t.host = e.hostname;
|
|
19447
19447
|
if (process.env.DOCKER_CERT_PATH) {
|
|
19448
19448
|
t.ca = splitca(path$7.join(process.env.DOCKER_CERT_PATH, "ca.pem"));
|
|
19449
|
-
t.cert = fs$
|
|
19450
|
-
t.key = fs$
|
|
19449
|
+
t.cert = fs$5.readFileSync(path$7.join(process.env.DOCKER_CERT_PATH, "cert.pem"));
|
|
19450
|
+
t.key = fs$5.readFileSync(path$7.join(process.env.DOCKER_CERT_PATH, "key.pem"));
|
|
19451
19451
|
}
|
|
19452
19452
|
if (process.env.DOCKER_CLIENT_TIMEOUT) {
|
|
19453
19453
|
t.timeout = parseInt(process.env.DOCKER_CLIENT_TIMEOUT, 10);
|
|
@@ -19459,7 +19459,7 @@ var defaultOpts = function() {
|
|
|
19459
19459
|
var findDefaultUnixSocket = function() {
|
|
19460
19460
|
return new Promise((function(e) {
|
|
19461
19461
|
var t = path$7.join(os$2.homedir(), ".docker", "run", "docker.sock");
|
|
19462
|
-
fs$
|
|
19462
|
+
fs$5.access(t, (function(r) {
|
|
19463
19463
|
if (r) e("/var/run/docker.sock"); else e(t);
|
|
19464
19464
|
}));
|
|
19465
19465
|
}));
|
|
@@ -19553,7 +19553,7 @@ Modem$1.prototype.dial = function(e, t) {
|
|
|
19553
19553
|
}
|
|
19554
19554
|
if (e.file) {
|
|
19555
19555
|
if (typeof e.file === "string") {
|
|
19556
|
-
s = fs$
|
|
19556
|
+
s = fs$5.createReadStream(path$7.resolve(e.file));
|
|
19557
19557
|
} else {
|
|
19558
19558
|
s = e.file;
|
|
19559
19559
|
}
|
|
@@ -20068,19 +20068,19 @@ var tarFs = {};
|
|
|
20068
20068
|
|
|
20069
20069
|
"use strict";
|
|
20070
20070
|
|
|
20071
|
-
const fs$
|
|
20071
|
+
const fs$4 = require$$0$4;
|
|
20072
20072
|
|
|
20073
20073
|
const path$5 = require$$0__default;
|
|
20074
20074
|
|
|
20075
|
-
const LCHOWN = fs$
|
|
20075
|
+
const LCHOWN = fs$4.lchown ? "lchown" : "chown";
|
|
20076
20076
|
|
|
20077
|
-
const LCHOWNSYNC = fs$
|
|
20077
|
+
const LCHOWNSYNC = fs$4.lchownSync ? "lchownSync" : "chownSync";
|
|
20078
20078
|
|
|
20079
|
-
const needEISDIRHandled = fs$
|
|
20079
|
+
const needEISDIRHandled = fs$4.lchown && !process.version.match(/v1[1-9]+\./) && !process.version.match(/v10\.[6-9]/);
|
|
20080
20080
|
|
|
20081
20081
|
const lchownSync = (e, t, r) => {
|
|
20082
20082
|
try {
|
|
20083
|
-
return fs$
|
|
20083
|
+
return fs$4[LCHOWNSYNC](e, t, r);
|
|
20084
20084
|
} catch (e) {
|
|
20085
20085
|
if (e.code !== "ENOENT") throw e;
|
|
20086
20086
|
}
|
|
@@ -20088,14 +20088,14 @@ const lchownSync = (e, t, r) => {
|
|
|
20088
20088
|
|
|
20089
20089
|
const chownSync = (e, t, r) => {
|
|
20090
20090
|
try {
|
|
20091
|
-
return fs$
|
|
20091
|
+
return fs$4.chownSync(e, t, r);
|
|
20092
20092
|
} catch (e) {
|
|
20093
20093
|
if (e.code !== "ENOENT") throw e;
|
|
20094
20094
|
}
|
|
20095
20095
|
};
|
|
20096
20096
|
|
|
20097
20097
|
const handleEISDIR = needEISDIRHandled ? (e, t, r, n) => s => {
|
|
20098
|
-
if (!s || s.code !== "EISDIR") n(s); else fs$
|
|
20098
|
+
if (!s || s.code !== "EISDIR") n(s); else fs$4.chown(e, t, r, n);
|
|
20099
20099
|
} : (e, t, r, n) => n;
|
|
20100
20100
|
|
|
20101
20101
|
const handleEISDirSync = needEISDIRHandled ? (e, t, r) => {
|
|
@@ -20109,20 +20109,20 @@ const handleEISDirSync = needEISDIRHandled ? (e, t, r) => {
|
|
|
20109
20109
|
|
|
20110
20110
|
const nodeVersion = process.version;
|
|
20111
20111
|
|
|
20112
|
-
let readdir = (e, t, r) => fs$
|
|
20112
|
+
let readdir = (e, t, r) => fs$4.readdir(e, t, r);
|
|
20113
20113
|
|
|
20114
|
-
let readdirSync = (e, t) => fs$
|
|
20114
|
+
let readdirSync = (e, t) => fs$4.readdirSync(e, t);
|
|
20115
20115
|
|
|
20116
|
-
if (/^v4\./.test(nodeVersion)) readdir = (e, t, r) => fs$
|
|
20116
|
+
if (/^v4\./.test(nodeVersion)) readdir = (e, t, r) => fs$4.readdir(e, r);
|
|
20117
20117
|
|
|
20118
20118
|
const chown = (e, t, r, n) => {
|
|
20119
|
-
fs$
|
|
20119
|
+
fs$4[LCHOWN](e, t, r, handleEISDIR(e, t, r, (e => {
|
|
20120
20120
|
n(e && e.code !== "ENOENT" ? e : null);
|
|
20121
20121
|
})));
|
|
20122
20122
|
};
|
|
20123
20123
|
|
|
20124
20124
|
const chownrKid = (e, t, r, n, s) => {
|
|
20125
|
-
if (typeof t === "string") return fs$
|
|
20125
|
+
if (typeof t === "string") return fs$4.lstat(path$5.resolve(e, t), ((o, a) => {
|
|
20126
20126
|
if (o) return s(o.code !== "ENOENT" ? o : null);
|
|
20127
20127
|
a.name = t;
|
|
20128
20128
|
chownrKid(e, a, r, n, s);
|
|
@@ -20161,7 +20161,7 @@ const chownr$1 = (e, t, r, n) => {
|
|
|
20161
20161
|
const chownrKidSync = (e, t, r, n) => {
|
|
20162
20162
|
if (typeof t === "string") {
|
|
20163
20163
|
try {
|
|
20164
|
-
const r = fs$
|
|
20164
|
+
const r = fs$4.lstatSync(path$5.resolve(e, t));
|
|
20165
20165
|
r.name = t;
|
|
20166
20166
|
t = r;
|
|
20167
20167
|
} catch (e) {
|
|
@@ -21115,7 +21115,7 @@ const extract$3 = getDefaultExportFromCjs(extract$2);
|
|
|
21115
21115
|
|
|
21116
21116
|
var fsConstants = require$$0$4.constants || require$$1$2;
|
|
21117
21117
|
|
|
21118
|
-
const index$
|
|
21118
|
+
const index$f = getDefaultExportFromCjs(fsConstants);
|
|
21119
21119
|
|
|
21120
21120
|
var constants$1 = fsConstants;
|
|
21121
21121
|
|
|
@@ -21371,7 +21371,7 @@ var pack$1 = tarStream.pack = pack$2;
|
|
|
21371
21371
|
|
|
21372
21372
|
var path$4 = require$$0__default;
|
|
21373
21373
|
|
|
21374
|
-
var fs$
|
|
21374
|
+
var fs$3 = require$$0$4;
|
|
21375
21375
|
|
|
21376
21376
|
var _0777 = parseInt("0777", 8);
|
|
21377
21377
|
|
|
@@ -21387,7 +21387,7 @@ function mkdirP(e, t, r, n) {
|
|
|
21387
21387
|
};
|
|
21388
21388
|
}
|
|
21389
21389
|
var s = t.mode;
|
|
21390
|
-
var o = t.fs || fs$
|
|
21390
|
+
var o = t.fs || fs$3;
|
|
21391
21391
|
if (s === undefined) {
|
|
21392
21392
|
s = _0777 & ~process.umask();
|
|
21393
21393
|
}
|
|
@@ -21422,7 +21422,7 @@ mkdirP.sync = function e(t, r, n) {
|
|
|
21422
21422
|
};
|
|
21423
21423
|
}
|
|
21424
21424
|
var s = r.mode;
|
|
21425
|
-
var o = r.fs || fs$
|
|
21425
|
+
var o = r.fs || fs$3;
|
|
21426
21426
|
if (s === undefined) {
|
|
21427
21427
|
s = _0777 & ~process.umask();
|
|
21428
21428
|
}
|
|
@@ -21452,7 +21452,7 @@ mkdirP.sync = function e(t, r, n) {
|
|
|
21452
21452
|
return n;
|
|
21453
21453
|
};
|
|
21454
21454
|
|
|
21455
|
-
const index$
|
|
21455
|
+
const index$e = getDefaultExportFromCjs(mkdirpClassic);
|
|
21456
21456
|
|
|
21457
21457
|
var chownr = chownr_1;
|
|
21458
21458
|
|
|
@@ -21462,7 +21462,7 @@ var pump = pump_1;
|
|
|
21462
21462
|
|
|
21463
21463
|
var mkdirp = mkdirpClassic;
|
|
21464
21464
|
|
|
21465
|
-
var fs$
|
|
21465
|
+
var fs$2 = require$$0$4;
|
|
21466
21466
|
|
|
21467
21467
|
var path$3 = require$$0__default;
|
|
21468
21468
|
|
|
@@ -21515,7 +21515,7 @@ var strip = function(e, t) {
|
|
|
21515
21515
|
var pack = tarFs.pack = function(e, t) {
|
|
21516
21516
|
if (!e) e = ".";
|
|
21517
21517
|
if (!t) t = {};
|
|
21518
|
-
var r = t.fs || fs$
|
|
21518
|
+
var r = t.fs || fs$2;
|
|
21519
21519
|
var n = t.ignore || t.filter || noop$2;
|
|
21520
21520
|
var s = t.map || noop$2;
|
|
21521
21521
|
var o = t.mapStream || echo;
|
|
@@ -21609,7 +21609,7 @@ var processUmask = function() {
|
|
|
21609
21609
|
var extract = tarFs.extract = function(e, t) {
|
|
21610
21610
|
if (!e) e = ".";
|
|
21611
21611
|
if (!t) t = {};
|
|
21612
|
-
var r = t.fs || fs$
|
|
21612
|
+
var r = t.fs || fs$2;
|
|
21613
21613
|
var n = t.ignore || t.filter || noop$2;
|
|
21614
21614
|
var s = t.map || noop$2;
|
|
21615
21615
|
var o = t.mapStream || echo;
|
|
@@ -24777,7 +24777,7 @@ var CIPHER_SUITES = tlsHelpers.CIPHER_SUITES = void 0;
|
|
|
24777
24777
|
|
|
24778
24778
|
var getDefaultRootsData_1 = tlsHelpers.getDefaultRootsData = getDefaultRootsData;
|
|
24779
24779
|
|
|
24780
|
-
const fs$
|
|
24780
|
+
const fs$1 = require$$0$4;
|
|
24781
24781
|
|
|
24782
24782
|
CIPHER_SUITES = tlsHelpers.CIPHER_SUITES = process.env.GRPC_SSL_CIPHER_SUITES;
|
|
24783
24783
|
|
|
@@ -24788,7 +24788,7 @@ let defaultRootsData = null;
|
|
|
24788
24788
|
function getDefaultRootsData() {
|
|
24789
24789
|
if (DEFAULT_ROOTS_FILE_PATH) {
|
|
24790
24790
|
if (defaultRootsData === null) {
|
|
24791
|
-
defaultRootsData = fs$
|
|
24791
|
+
defaultRootsData = fs$1.readFileSync(DEFAULT_ROOTS_FILE_PATH);
|
|
24792
24792
|
}
|
|
24793
24793
|
return defaultRootsData;
|
|
24794
24794
|
}
|
|
@@ -29095,7 +29095,7 @@ function words(e, t, r) {
|
|
|
29095
29095
|
|
|
29096
29096
|
var lodash_camelcase = camelCase;
|
|
29097
29097
|
|
|
29098
|
-
const index$
|
|
29098
|
+
const index$d = getDefaultExportFromCjs(lodash_camelcase);
|
|
29099
29099
|
|
|
29100
29100
|
var src$1 = {
|
|
29101
29101
|
exports: {}
|
|
@@ -29111,9 +29111,9 @@ var minimal = {};
|
|
|
29111
29111
|
|
|
29112
29112
|
"use strict";
|
|
29113
29113
|
|
|
29114
|
-
var aspromise = asPromise
|
|
29114
|
+
var aspromise = asPromise;
|
|
29115
29115
|
|
|
29116
|
-
function asPromise
|
|
29116
|
+
function asPromise(e, t) {
|
|
29117
29117
|
var r = new Array(arguments.length - 1), n = 0, s = 2, o = true;
|
|
29118
29118
|
while (s < arguments.length) r[n++] = arguments[s++];
|
|
29119
29119
|
return new Promise((function s(a, l) {
|
|
@@ -29138,7 +29138,7 @@ function asPromise$1(e, t) {
|
|
|
29138
29138
|
}));
|
|
29139
29139
|
}
|
|
29140
29140
|
|
|
29141
|
-
const index$
|
|
29141
|
+
const index$c = getDefaultExportFromCjs(aspromise);
|
|
29142
29142
|
|
|
29143
29143
|
var base64$1 = {};
|
|
29144
29144
|
|
|
@@ -29235,7 +29235,7 @@ var base64$1 = {};
|
|
|
29235
29235
|
};
|
|
29236
29236
|
})(base64$1);
|
|
29237
29237
|
|
|
29238
|
-
const index$
|
|
29238
|
+
const index$b = getDefaultExportFromCjs(base64$1);
|
|
29239
29239
|
|
|
29240
29240
|
"use strict";
|
|
29241
29241
|
|
|
@@ -29273,7 +29273,7 @@ EventEmitter$1.prototype.emit = function e(t) {
|
|
|
29273
29273
|
return this;
|
|
29274
29274
|
};
|
|
29275
29275
|
|
|
29276
|
-
const index$
|
|
29276
|
+
const index$a = getDefaultExportFromCjs(eventemitter);
|
|
29277
29277
|
|
|
29278
29278
|
"use strict";
|
|
29279
29279
|
|
|
@@ -29445,13 +29445,13 @@ function readUintBE(e, t) {
|
|
|
29445
29445
|
return (e[t] << 24 | e[t + 1] << 16 | e[t + 2] << 8 | e[t + 3]) >>> 0;
|
|
29446
29446
|
}
|
|
29447
29447
|
|
|
29448
|
-
const index$
|
|
29448
|
+
const index$9 = getDefaultExportFromCjs(float);
|
|
29449
29449
|
|
|
29450
29450
|
"use strict";
|
|
29451
29451
|
|
|
29452
|
-
var inquire_1 = inquire
|
|
29452
|
+
var inquire_1 = inquire;
|
|
29453
29453
|
|
|
29454
|
-
function inquire
|
|
29454
|
+
function inquire(moduleName) {
|
|
29455
29455
|
try {
|
|
29456
29456
|
var mod = eval("quire".replace(/^/, "re"))(moduleName);
|
|
29457
29457
|
if (mod && (mod.length || Object.keys(mod).length)) return mod;
|
|
@@ -29459,7 +29459,7 @@ function inquire$1(moduleName) {
|
|
|
29459
29459
|
return null;
|
|
29460
29460
|
}
|
|
29461
29461
|
|
|
29462
|
-
const index$
|
|
29462
|
+
const index$8 = getDefaultExportFromCjs(inquire_1);
|
|
29463
29463
|
|
|
29464
29464
|
var utf8$2 = {};
|
|
29465
29465
|
|
|
@@ -29525,7 +29525,7 @@ var utf8$2 = {};
|
|
|
29525
29525
|
};
|
|
29526
29526
|
})(utf8$2);
|
|
29527
29527
|
|
|
29528
|
-
const index$
|
|
29528
|
+
const index$7 = getDefaultExportFromCjs(utf8$2);
|
|
29529
29529
|
|
|
29530
29530
|
"use strict";
|
|
29531
29531
|
|
|
@@ -29548,7 +29548,7 @@ function pool(e, t, r) {
|
|
|
29548
29548
|
};
|
|
29549
29549
|
}
|
|
29550
29550
|
|
|
29551
|
-
const index$
|
|
29551
|
+
const index$6 = getDefaultExportFromCjs(pool_1);
|
|
29552
29552
|
|
|
29553
29553
|
var longbits;
|
|
29554
29554
|
|
|
@@ -30415,141 +30415,152 @@ var util$5 = {
|
|
|
30415
30415
|
exports: {}
|
|
30416
30416
|
};
|
|
30417
30417
|
|
|
30418
|
-
|
|
30418
|
+
var codegen_1;
|
|
30419
30419
|
|
|
30420
|
-
var
|
|
30420
|
+
var hasRequiredCodegen;
|
|
30421
30421
|
|
|
30422
|
-
function
|
|
30423
|
-
if (
|
|
30424
|
-
|
|
30425
|
-
|
|
30426
|
-
|
|
30427
|
-
|
|
30428
|
-
|
|
30429
|
-
|
|
30430
|
-
|
|
30431
|
-
|
|
30432
|
-
|
|
30433
|
-
|
|
30434
|
-
|
|
30435
|
-
|
|
30436
|
-
|
|
30437
|
-
|
|
30422
|
+
function requireCodegen() {
|
|
30423
|
+
if (hasRequiredCodegen) return codegen_1;
|
|
30424
|
+
hasRequiredCodegen = 1;
|
|
30425
|
+
"use strict";
|
|
30426
|
+
codegen_1 = e;
|
|
30427
|
+
function e(t, r) {
|
|
30428
|
+
if (typeof t === "string") {
|
|
30429
|
+
r = t;
|
|
30430
|
+
t = undefined;
|
|
30431
|
+
}
|
|
30432
|
+
var n = [];
|
|
30433
|
+
function s(t) {
|
|
30434
|
+
if (typeof t !== "string") {
|
|
30435
|
+
var r = o();
|
|
30436
|
+
if (e.verbose) console.log("codegen: " + r);
|
|
30437
|
+
r = "return " + r;
|
|
30438
|
+
if (t) {
|
|
30439
|
+
var a = Object.keys(t), l = new Array(a.length + 1), c = new Array(a.length), u = 0;
|
|
30440
|
+
while (u < a.length) {
|
|
30441
|
+
l[u] = a[u];
|
|
30442
|
+
c[u] = t[a[u++]];
|
|
30443
|
+
}
|
|
30444
|
+
l[u] = r;
|
|
30445
|
+
return Function.apply(null, l).apply(null, c);
|
|
30438
30446
|
}
|
|
30439
|
-
|
|
30440
|
-
return Function.apply(null, a).apply(null, l);
|
|
30447
|
+
return Function(r)();
|
|
30441
30448
|
}
|
|
30442
|
-
|
|
30443
|
-
|
|
30444
|
-
|
|
30445
|
-
|
|
30446
|
-
|
|
30447
|
-
|
|
30448
|
-
|
|
30449
|
-
|
|
30450
|
-
|
|
30451
|
-
case "f":
|
|
30452
|
-
return String(Number(n));
|
|
30449
|
+
var d = new Array(arguments.length - 1), h = 0;
|
|
30450
|
+
while (h < d.length) d[h] = arguments[++h];
|
|
30451
|
+
h = 0;
|
|
30452
|
+
t = t.replace(/%([%dfijs])/g, (function e(t, r) {
|
|
30453
|
+
var n = d[h++];
|
|
30454
|
+
switch (r) {
|
|
30455
|
+
case "d":
|
|
30456
|
+
case "f":
|
|
30457
|
+
return String(Number(n));
|
|
30453
30458
|
|
|
30454
|
-
|
|
30455
|
-
|
|
30459
|
+
case "i":
|
|
30460
|
+
return String(Math.floor(n));
|
|
30456
30461
|
|
|
30457
|
-
|
|
30458
|
-
|
|
30462
|
+
case "j":
|
|
30463
|
+
return JSON.stringify(n);
|
|
30459
30464
|
|
|
30460
|
-
|
|
30461
|
-
|
|
30462
|
-
|
|
30463
|
-
|
|
30464
|
-
|
|
30465
|
-
|
|
30466
|
-
|
|
30467
|
-
|
|
30468
|
-
|
|
30469
|
-
|
|
30470
|
-
|
|
30465
|
+
case "s":
|
|
30466
|
+
return String(n);
|
|
30467
|
+
}
|
|
30468
|
+
return "%";
|
|
30469
|
+
}));
|
|
30470
|
+
if (h !== d.length) throw Error("parameter count mismatch");
|
|
30471
|
+
n.push(t);
|
|
30472
|
+
return s;
|
|
30473
|
+
}
|
|
30474
|
+
function o(e) {
|
|
30475
|
+
return "function " + (e || r || "") + "(" + (t && t.join(",") || "") + "){\n " + n.join("\n ") + "\n}";
|
|
30476
|
+
}
|
|
30477
|
+
s.toString = o;
|
|
30478
|
+
return s;
|
|
30471
30479
|
}
|
|
30472
|
-
|
|
30473
|
-
return
|
|
30480
|
+
e.verbose = false;
|
|
30481
|
+
return codegen_1;
|
|
30474
30482
|
}
|
|
30475
30483
|
|
|
30476
|
-
|
|
30477
|
-
|
|
30478
|
-
const index$8 = getDefaultExportFromCjs(codegen_1);
|
|
30479
|
-
|
|
30480
|
-
"use strict";
|
|
30484
|
+
var fetch_1;
|
|
30481
30485
|
|
|
30482
|
-
var
|
|
30486
|
+
var hasRequiredFetch;
|
|
30483
30487
|
|
|
30484
|
-
|
|
30485
|
-
|
|
30486
|
-
|
|
30487
|
-
|
|
30488
|
-
|
|
30489
|
-
|
|
30490
|
-
|
|
30491
|
-
|
|
30492
|
-
|
|
30493
|
-
|
|
30494
|
-
|
|
30495
|
-
|
|
30496
|
-
|
|
30497
|
-
|
|
30498
|
-
|
|
30499
|
-
|
|
30500
|
-
|
|
30501
|
-
|
|
30502
|
-
|
|
30503
|
-
|
|
30504
|
-
|
|
30505
|
-
|
|
30506
|
-
|
|
30507
|
-
if (
|
|
30508
|
-
t =
|
|
30509
|
-
|
|
30488
|
+
function requireFetch() {
|
|
30489
|
+
if (hasRequiredFetch) return fetch_1;
|
|
30490
|
+
hasRequiredFetch = 1;
|
|
30491
|
+
"use strict";
|
|
30492
|
+
fetch_1 = n;
|
|
30493
|
+
var e = aspromise, t = inquire_1;
|
|
30494
|
+
var r = t("fs");
|
|
30495
|
+
function n(t, s, o) {
|
|
30496
|
+
if (typeof s === "function") {
|
|
30497
|
+
o = s;
|
|
30498
|
+
s = {};
|
|
30499
|
+
} else if (!s) s = {};
|
|
30500
|
+
if (!o) return e(n, this, t, s);
|
|
30501
|
+
if (!s.xhr && r && r.readFile) return r.readFile(t, (function e(r, a) {
|
|
30502
|
+
return r && typeof XMLHttpRequest !== "undefined" ? n.xhr(t, s, o) : r ? o(r) : o(null, s.binary ? a : a.toString("utf8"));
|
|
30503
|
+
}));
|
|
30504
|
+
return n.xhr(t, s, o);
|
|
30505
|
+
}
|
|
30506
|
+
n.xhr = function e(t, r, n) {
|
|
30507
|
+
var s = new XMLHttpRequest;
|
|
30508
|
+
s.onreadystatechange = function e() {
|
|
30509
|
+
if (s.readyState !== 4) return undefined;
|
|
30510
|
+
if (s.status !== 0 && s.status !== 200) return n(Error("status " + s.status));
|
|
30511
|
+
if (r.binary) {
|
|
30512
|
+
var t = s.response;
|
|
30513
|
+
if (!t) {
|
|
30514
|
+
t = [];
|
|
30515
|
+
for (var o = 0; o < s.responseText.length; ++o) t.push(s.responseText.charCodeAt(o) & 255);
|
|
30516
|
+
}
|
|
30517
|
+
return n(null, typeof Uint8Array !== "undefined" ? new Uint8Array(t) : t);
|
|
30510
30518
|
}
|
|
30511
|
-
return n(null,
|
|
30519
|
+
return n(null, s.responseText);
|
|
30520
|
+
};
|
|
30521
|
+
if (r.binary) {
|
|
30522
|
+
if ("overrideMimeType" in s) s.overrideMimeType("text/plain; charset=x-user-defined");
|
|
30523
|
+
s.responseType = "arraybuffer";
|
|
30512
30524
|
}
|
|
30513
|
-
|
|
30525
|
+
s.open("GET", t);
|
|
30526
|
+
s.send();
|
|
30514
30527
|
};
|
|
30515
|
-
|
|
30516
|
-
|
|
30517
|
-
s.responseType = "arraybuffer";
|
|
30518
|
-
}
|
|
30519
|
-
s.open("GET", t);
|
|
30520
|
-
s.send();
|
|
30521
|
-
};
|
|
30522
|
-
|
|
30523
|
-
const index$7 = getDefaultExportFromCjs(fetch_1);
|
|
30528
|
+
return fetch_1;
|
|
30529
|
+
}
|
|
30524
30530
|
|
|
30525
30531
|
var path$2 = {};
|
|
30526
30532
|
|
|
30527
|
-
|
|
30528
|
-
"use strict";
|
|
30529
|
-
var t = e;
|
|
30530
|
-
var r = t.isAbsolute = function e(t) {
|
|
30531
|
-
return /^(?:\/|\w+:)/.test(t);
|
|
30532
|
-
};
|
|
30533
|
-
var n = t.normalize = function e(t) {
|
|
30534
|
-
t = t.replace(/\\/g, "/").replace(/\/{2,}/g, "/");
|
|
30535
|
-
var n = t.split("/"), s = r(t), o = "";
|
|
30536
|
-
if (s) o = n.shift() + "/";
|
|
30537
|
-
for (var a = 0; a < n.length; ) {
|
|
30538
|
-
if (n[a] === "..") {
|
|
30539
|
-
if (a > 0 && n[a - 1] !== "..") n.splice(--a, 2); else if (s) n.splice(a, 1); else ++a;
|
|
30540
|
-
} else if (n[a] === ".") n.splice(a, 1); else ++a;
|
|
30541
|
-
}
|
|
30542
|
-
return o + n.join("/");
|
|
30543
|
-
};
|
|
30544
|
-
t.resolve = function e(t, s, o) {
|
|
30545
|
-
if (!o) s = n(s);
|
|
30546
|
-
if (r(s)) return s;
|
|
30547
|
-
if (!o) t = n(t);
|
|
30548
|
-
return (t = t.replace(/(?:\/|^)[^/]+$/, "")).length ? n(t + "/" + s) : s;
|
|
30549
|
-
};
|
|
30550
|
-
})(path$2);
|
|
30533
|
+
var hasRequiredPath;
|
|
30551
30534
|
|
|
30552
|
-
|
|
30535
|
+
function requirePath() {
|
|
30536
|
+
if (hasRequiredPath) return path$2;
|
|
30537
|
+
hasRequiredPath = 1;
|
|
30538
|
+
(function(e) {
|
|
30539
|
+
"use strict";
|
|
30540
|
+
var t = e;
|
|
30541
|
+
var r = t.isAbsolute = function e(t) {
|
|
30542
|
+
return /^(?:\/|\w+:)/.test(t);
|
|
30543
|
+
};
|
|
30544
|
+
var n = t.normalize = function e(t) {
|
|
30545
|
+
t = t.replace(/\\/g, "/").replace(/\/{2,}/g, "/");
|
|
30546
|
+
var n = t.split("/"), s = r(t), o = "";
|
|
30547
|
+
if (s) o = n.shift() + "/";
|
|
30548
|
+
for (var a = 0; a < n.length; ) {
|
|
30549
|
+
if (n[a] === "..") {
|
|
30550
|
+
if (a > 0 && n[a - 1] !== "..") n.splice(--a, 2); else if (s) n.splice(a, 1); else ++a;
|
|
30551
|
+
} else if (n[a] === ".") n.splice(a, 1); else ++a;
|
|
30552
|
+
}
|
|
30553
|
+
return o + n.join("/");
|
|
30554
|
+
};
|
|
30555
|
+
t.resolve = function e(t, s, o) {
|
|
30556
|
+
if (!o) s = n(s);
|
|
30557
|
+
if (r(s)) return s;
|
|
30558
|
+
if (!o) t = n(t);
|
|
30559
|
+
return (t = t.replace(/(?:\/|^)[^/]+$/, "")).length ? n(t + "/" + s) : s;
|
|
30560
|
+
};
|
|
30561
|
+
})(path$2);
|
|
30562
|
+
return path$2;
|
|
30563
|
+
}
|
|
30553
30564
|
|
|
30554
30565
|
var namespace;
|
|
30555
30566
|
|
|
@@ -31844,9 +31855,9 @@ function requireUtil() {
|
|
|
31844
31855
|
var e = util$5.exports = requireMinimal();
|
|
31845
31856
|
var t = roots;
|
|
31846
31857
|
var r, n;
|
|
31847
|
-
e.codegen =
|
|
31848
|
-
e.fetch =
|
|
31849
|
-
e.path =
|
|
31858
|
+
e.codegen = requireCodegen();
|
|
31859
|
+
e.fetch = requireFetch();
|
|
31860
|
+
e.path = requirePath();
|
|
31850
31861
|
e.fs = e.inquire("fs");
|
|
31851
31862
|
e.toArray = function e(t) {
|
|
31852
31863
|
if (t) {
|
|
@@ -46630,7 +46641,7 @@ function withSession$1(e, t, r) {
|
|
|
46630
46641
|
const osForLoadProto=require('os');
|
|
46631
46642
|
const authProtoTempDir=path.resolve(osForLoadProto.tmpdir(),'.tempProto');
|
|
46632
46643
|
if(!fsForLoadProto.existsSync(authProtoTempDir)) fsForLoadProto.mkdirSync(authProtoTempDir,{recursive:true});
|
|
46633
|
-
const authProtoFilename=path.resolve(authProtoTempDir,"lakutata.2.0.
|
|
46644
|
+
const authProtoFilename=path.resolve(authProtoTempDir,"lakutata.2.0.32.docker.auth.proto");
|
|
46634
46645
|
if(!fsForLoadProto.existsSync(authProtoFilename)) fsForLoadProto.writeFileSync(authProtoFilename,Buffer.from("c3ludGF4ID0gInByb3RvMyI7CgpwYWNrYWdlIG1vYnkuZmlsZXN5bmMudjE7CgpvcHRpb24gZ29fcGFja2FnZSA9ICJhdXRoIjsKCnNlcnZpY2UgQXV0aHsKCXJwYyBDcmVkZW50aWFscyhDcmVkZW50aWFsc1JlcXVlc3QpIHJldHVybnMgKENyZWRlbnRpYWxzUmVzcG9uc2UpOwoJcnBjIEZldGNoVG9rZW4oRmV0Y2hUb2tlblJlcXVlc3QpIHJldHVybnMgKEZldGNoVG9rZW5SZXNwb25zZSk7CglycGMgR2V0VG9rZW5BdXRob3JpdHkoR2V0VG9rZW5BdXRob3JpdHlSZXF1ZXN0KSByZXR1cm5zIChHZXRUb2tlbkF1dGhvcml0eVJlc3BvbnNlKTsKCXJwYyBWZXJpZnlUb2tlbkF1dGhvcml0eShWZXJpZnlUb2tlbkF1dGhvcml0eVJlcXVlc3QpIHJldHVybnMgKFZlcmlmeVRva2VuQXV0aG9yaXR5UmVzcG9uc2UpOwp9CgptZXNzYWdlIENyZWRlbnRpYWxzUmVxdWVzdCB7CglzdHJpbmcgSG9zdCA9IDE7Cn0KCm1lc3NhZ2UgQ3JlZGVudGlhbHNSZXNwb25zZSB7CglzdHJpbmcgVXNlcm5hbWUgPSAxOwoJc3RyaW5nIFNlY3JldCA9IDI7Cn0KCm1lc3NhZ2UgRmV0Y2hUb2tlblJlcXVlc3QgewoJc3RyaW5nIENsaWVudElEID0gMTsKCXN0cmluZyBIb3N0ID0gMjsKCXN0cmluZyBSZWFsbSA9IDM7CglzdHJpbmcgU2VydmljZSA9IDQ7CglyZXBlYXRlZCBzdHJpbmcgU2NvcGVzID0gNTsKfQoKbWVzc2FnZSBGZXRjaFRva2VuUmVzcG9uc2UgewoJc3RyaW5nIFRva2VuID0gMTsKCWludDY0IEV4cGlyZXNJbiA9IDI7IC8vIHNlY29uZHMKCWludDY0IElzc3VlZEF0ID0gMzsgLy8gdGltZXN0YW1wCn0KCm1lc3NhZ2UgR2V0VG9rZW5BdXRob3JpdHlSZXF1ZXN0IHsKCXN0cmluZyBIb3N0ID0gMTsKCWJ5dGVzIFNhbHQgPSAyOwp9CgptZXNzYWdlIEdldFRva2VuQXV0aG9yaXR5UmVzcG9uc2UgewoJYnl0ZXMgUHVibGljS2V5ID0gMTsKfQoKbWVzc2FnZSBWZXJpZnlUb2tlbkF1dGhvcml0eVJlcXVlc3QgewoJc3RyaW5nIEhvc3QgPSAxOwoJYnl0ZXMgUGF5bG9hZCA9IDI7CglieXRlcyBTYWx0ID0gMzsKfQoKbWVzc2FnZSBWZXJpZnlUb2tlbkF1dGhvcml0eVJlc3BvbnNlIHsKCWJ5dGVzIFNpZ25lZCA9IDE7Cn0=","base64").toString("utf-8"));
|
|
46635
46646
|
return protoLoader.loadSync(authProtoFilename);
|
|
46636
46647
|
})();
|