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.10.cjs
CHANGED
|
@@ -1,85 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
require("
|
|
3
|
+
require("url");
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
require("module");
|
|
8
|
-
|
|
9
|
-
require("tty");
|
|
10
|
-
|
|
11
|
-
const r = e => e && e.__esModule ? e : {
|
|
12
|
-
default: e
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
const t = r(e);
|
|
16
|
-
|
|
17
|
-
var n = {
|
|
18
|
-
exports: {}
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
var o = n.exports;
|
|
22
|
-
|
|
23
|
-
var u;
|
|
24
|
-
|
|
25
|
-
function f() {
|
|
26
|
-
if (u) return n.exports;
|
|
27
|
-
u = 1;
|
|
28
|
-
(function(e, r) {
|
|
29
|
-
var n = t.default;
|
|
30
|
-
var o = n.Buffer;
|
|
31
|
-
function u(e, r) {
|
|
32
|
-
for (var t in e) {
|
|
33
|
-
r[t] = e[t];
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
if (o.from && o.alloc && o.allocUnsafe && o.allocUnsafeSlow) {
|
|
37
|
-
e.exports = n;
|
|
38
|
-
} else {
|
|
39
|
-
u(n, r);
|
|
40
|
-
r.Buffer = f;
|
|
41
|
-
}
|
|
42
|
-
function f(e, r, t) {
|
|
43
|
-
return o(e, r, t);
|
|
44
|
-
}
|
|
45
|
-
f.prototype = Object.create(o.prototype);
|
|
46
|
-
u(o, f);
|
|
47
|
-
f.from = function(e, r, t) {
|
|
48
|
-
if (typeof e === "number") {
|
|
49
|
-
throw new TypeError("Argument must not be a number");
|
|
50
|
-
}
|
|
51
|
-
return o(e, r, t);
|
|
52
|
-
};
|
|
53
|
-
f.alloc = function(e, r, t) {
|
|
54
|
-
if (typeof e !== "number") {
|
|
55
|
-
throw new TypeError("Argument must be a number");
|
|
56
|
-
}
|
|
57
|
-
var n = o(e);
|
|
58
|
-
if (r !== undefined) {
|
|
59
|
-
if (typeof t === "string") {
|
|
60
|
-
n.fill(r, t);
|
|
61
|
-
} else {
|
|
62
|
-
n.fill(r);
|
|
63
|
-
}
|
|
64
|
-
} else {
|
|
65
|
-
n.fill(0);
|
|
66
|
-
}
|
|
67
|
-
return n;
|
|
68
|
-
};
|
|
69
|
-
f.allocUnsafe = function(e) {
|
|
70
|
-
if (typeof e !== "number") {
|
|
71
|
-
throw new TypeError("Argument must be a number");
|
|
72
|
-
}
|
|
73
|
-
return o(e);
|
|
74
|
-
};
|
|
75
|
-
f.allocUnsafeSlow = function(e) {
|
|
76
|
-
if (typeof e !== "number") {
|
|
77
|
-
throw new TypeError("Argument must be a number");
|
|
78
|
-
}
|
|
79
|
-
return n.SlowBuffer(e);
|
|
80
|
-
};
|
|
81
|
-
})(n, n.exports);
|
|
82
|
-
return n.exports;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
exports.requireSafeBuffer = f;
|
|
5
|
+
require("util");
|
package/vendor/Package.10.mjs
CHANGED
|
@@ -1,77 +1,3 @@
|
|
|
1
|
-
import "
|
|
1
|
+
import "url";
|
|
2
2
|
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
import "module";
|
|
6
|
-
|
|
7
|
-
import "tty";
|
|
8
|
-
|
|
9
|
-
var e = {
|
|
10
|
-
exports: {}
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
var t = e.exports;
|
|
14
|
-
|
|
15
|
-
var o;
|
|
16
|
-
|
|
17
|
-
function n() {
|
|
18
|
-
if (o) return e.exports;
|
|
19
|
-
o = 1;
|
|
20
|
-
(function(e, t) {
|
|
21
|
-
var o = r;
|
|
22
|
-
var n = o.Buffer;
|
|
23
|
-
function f(r, e) {
|
|
24
|
-
for (var t in r) {
|
|
25
|
-
e[t] = r[t];
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
if (n.from && n.alloc && n.allocUnsafe && n.allocUnsafeSlow) {
|
|
29
|
-
e.exports = o;
|
|
30
|
-
} else {
|
|
31
|
-
f(o, t);
|
|
32
|
-
t.Buffer = u;
|
|
33
|
-
}
|
|
34
|
-
function u(r, e, t) {
|
|
35
|
-
return n(r, e, t);
|
|
36
|
-
}
|
|
37
|
-
u.prototype = Object.create(n.prototype);
|
|
38
|
-
f(n, u);
|
|
39
|
-
u.from = function(r, e, t) {
|
|
40
|
-
if (typeof r === "number") {
|
|
41
|
-
throw new TypeError("Argument must not be a number");
|
|
42
|
-
}
|
|
43
|
-
return n(r, e, t);
|
|
44
|
-
};
|
|
45
|
-
u.alloc = function(r, e, t) {
|
|
46
|
-
if (typeof r !== "number") {
|
|
47
|
-
throw new TypeError("Argument must be a number");
|
|
48
|
-
}
|
|
49
|
-
var o = n(r);
|
|
50
|
-
if (e !== undefined) {
|
|
51
|
-
if (typeof t === "string") {
|
|
52
|
-
o.fill(e, t);
|
|
53
|
-
} else {
|
|
54
|
-
o.fill(e);
|
|
55
|
-
}
|
|
56
|
-
} else {
|
|
57
|
-
o.fill(0);
|
|
58
|
-
}
|
|
59
|
-
return o;
|
|
60
|
-
};
|
|
61
|
-
u.allocUnsafe = function(r) {
|
|
62
|
-
if (typeof r !== "number") {
|
|
63
|
-
throw new TypeError("Argument must be a number");
|
|
64
|
-
}
|
|
65
|
-
return n(r);
|
|
66
|
-
};
|
|
67
|
-
u.allocUnsafeSlow = function(r) {
|
|
68
|
-
if (typeof r !== "number") {
|
|
69
|
-
throw new TypeError("Argument must be a number");
|
|
70
|
-
}
|
|
71
|
-
return o.SlowBuffer(r);
|
|
72
|
-
};
|
|
73
|
-
})(e, e.exports);
|
|
74
|
-
return e.exports;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
export { n as r };
|
|
3
|
+
import "util";
|
package/vendor/Package.11.cjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
require("
|
|
3
|
+
const e = require("./Package.5.cjs");
|
|
4
4
|
|
|
5
|
-
require("
|
|
5
|
+
const r = require("./Package.112.cjs");
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
var t = r.requireDataSource();
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
const a = e.getDefaultExportFromCjs(t);
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
exports.DataSourceExports = t;
|
package/vendor/Package.11.mjs
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
const e = require("./Package.
|
|
3
|
+
const e = require("./Package.5.cjs");
|
|
4
4
|
|
|
5
5
|
const t = require("./Package.1.cjs");
|
|
6
6
|
|
|
7
|
-
const n = require("./Package.
|
|
7
|
+
const n = require("./Package.62.cjs");
|
|
8
8
|
|
|
9
|
-
const a = require("./Package.
|
|
9
|
+
const a = require("./Package.12.cjs");
|
|
10
10
|
|
|
11
|
-
const s = require("./Package.
|
|
11
|
+
const s = require("./Package.7.cjs");
|
|
12
12
|
|
|
13
|
-
require("./Package.
|
|
13
|
+
require("./Package.8.cjs");
|
|
14
14
|
|
|
15
|
-
require("./Package.
|
|
15
|
+
require("./Package.13.cjs");
|
|
16
16
|
|
|
17
17
|
const i = require("fs");
|
|
18
18
|
|
|
@@ -30,13 +30,13 @@ const h = require("module");
|
|
|
30
30
|
|
|
31
31
|
const d = require("fs/promises");
|
|
32
32
|
|
|
33
|
-
require("./Package.
|
|
33
|
+
require("./Package.10.cjs");
|
|
34
34
|
|
|
35
35
|
const p = require("url");
|
|
36
36
|
|
|
37
37
|
const m = require("util");
|
|
38
38
|
|
|
39
|
-
const f = require("./Package.
|
|
39
|
+
const f = require("./Package.63.cjs");
|
|
40
40
|
|
|
41
41
|
const y = require("node:url");
|
|
42
42
|
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { a as e, g as t, c as n } from "./Package.
|
|
1
|
+
import { a as e, g as t, c as n } from "./Package.5.mjs";
|
|
2
2
|
|
|
3
3
|
import { t as a } from "./Package.1.mjs";
|
|
4
4
|
|
|
5
|
-
import { r as s, s as i } from "./Package.
|
|
5
|
+
import { r as s, s as i } from "./Package.62.mjs";
|
|
6
6
|
|
|
7
|
-
import { r } from "./Package.
|
|
7
|
+
import { r } from "./Package.12.mjs";
|
|
8
8
|
|
|
9
|
-
import { c as o } from "./Package.
|
|
9
|
+
import { c as o } from "./Package.7.mjs";
|
|
10
10
|
|
|
11
|
-
import "./Package.
|
|
11
|
+
import "./Package.8.mjs";
|
|
12
12
|
|
|
13
|
-
import "./Package.
|
|
13
|
+
import "./Package.13.mjs";
|
|
14
14
|
|
|
15
15
|
import c from "fs";
|
|
16
16
|
|
|
@@ -28,13 +28,13 @@ import m from "module";
|
|
|
28
28
|
|
|
29
29
|
import f from "fs/promises";
|
|
30
30
|
|
|
31
|
-
import "./Package.
|
|
31
|
+
import "./Package.10.mjs";
|
|
32
32
|
|
|
33
33
|
import y from "url";
|
|
34
34
|
|
|
35
35
|
import E from "util";
|
|
36
36
|
|
|
37
|
-
import { b as T } from "./Package.
|
|
37
|
+
import { b as T } from "./Package.63.mjs";
|
|
38
38
|
|
|
39
39
|
import g from "node:url";
|
|
40
40
|
|
package/vendor/Package.12.cjs
CHANGED
|
@@ -1,3 +1,85 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
require("
|
|
3
|
+
require("./Package.5.cjs");
|
|
4
|
+
|
|
5
|
+
const e = require("buffer");
|
|
6
|
+
|
|
7
|
+
require("module");
|
|
8
|
+
|
|
9
|
+
require("tty");
|
|
10
|
+
|
|
11
|
+
const r = e => e && e.__esModule ? e : {
|
|
12
|
+
default: e
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
const t = r(e);
|
|
16
|
+
|
|
17
|
+
var n = {
|
|
18
|
+
exports: {}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
var o = n.exports;
|
|
22
|
+
|
|
23
|
+
var u;
|
|
24
|
+
|
|
25
|
+
function f() {
|
|
26
|
+
if (u) return n.exports;
|
|
27
|
+
u = 1;
|
|
28
|
+
(function(e, r) {
|
|
29
|
+
var n = t.default;
|
|
30
|
+
var o = n.Buffer;
|
|
31
|
+
function u(e, r) {
|
|
32
|
+
for (var t in e) {
|
|
33
|
+
r[t] = e[t];
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
if (o.from && o.alloc && o.allocUnsafe && o.allocUnsafeSlow) {
|
|
37
|
+
e.exports = n;
|
|
38
|
+
} else {
|
|
39
|
+
u(n, r);
|
|
40
|
+
r.Buffer = f;
|
|
41
|
+
}
|
|
42
|
+
function f(e, r, t) {
|
|
43
|
+
return o(e, r, t);
|
|
44
|
+
}
|
|
45
|
+
f.prototype = Object.create(o.prototype);
|
|
46
|
+
u(o, f);
|
|
47
|
+
f.from = function(e, r, t) {
|
|
48
|
+
if (typeof e === "number") {
|
|
49
|
+
throw new TypeError("Argument must not be a number");
|
|
50
|
+
}
|
|
51
|
+
return o(e, r, t);
|
|
52
|
+
};
|
|
53
|
+
f.alloc = function(e, r, t) {
|
|
54
|
+
if (typeof e !== "number") {
|
|
55
|
+
throw new TypeError("Argument must be a number");
|
|
56
|
+
}
|
|
57
|
+
var n = o(e);
|
|
58
|
+
if (r !== undefined) {
|
|
59
|
+
if (typeof t === "string") {
|
|
60
|
+
n.fill(r, t);
|
|
61
|
+
} else {
|
|
62
|
+
n.fill(r);
|
|
63
|
+
}
|
|
64
|
+
} else {
|
|
65
|
+
n.fill(0);
|
|
66
|
+
}
|
|
67
|
+
return n;
|
|
68
|
+
};
|
|
69
|
+
f.allocUnsafe = function(e) {
|
|
70
|
+
if (typeof e !== "number") {
|
|
71
|
+
throw new TypeError("Argument must be a number");
|
|
72
|
+
}
|
|
73
|
+
return o(e);
|
|
74
|
+
};
|
|
75
|
+
f.allocUnsafeSlow = function(e) {
|
|
76
|
+
if (typeof e !== "number") {
|
|
77
|
+
throw new TypeError("Argument must be a number");
|
|
78
|
+
}
|
|
79
|
+
return n.SlowBuffer(e);
|
|
80
|
+
};
|
|
81
|
+
})(n, n.exports);
|
|
82
|
+
return n.exports;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
exports.requireSafeBuffer = f;
|
package/vendor/Package.12.mjs
CHANGED
|
@@ -1 +1,77 @@
|
|
|
1
|
-
import "
|
|
1
|
+
import "./Package.5.mjs";
|
|
2
|
+
|
|
3
|
+
import r from "buffer";
|
|
4
|
+
|
|
5
|
+
import "module";
|
|
6
|
+
|
|
7
|
+
import "tty";
|
|
8
|
+
|
|
9
|
+
var e = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
var t = e.exports;
|
|
14
|
+
|
|
15
|
+
var o;
|
|
16
|
+
|
|
17
|
+
function n() {
|
|
18
|
+
if (o) return e.exports;
|
|
19
|
+
o = 1;
|
|
20
|
+
(function(e, t) {
|
|
21
|
+
var o = r;
|
|
22
|
+
var n = o.Buffer;
|
|
23
|
+
function f(r, e) {
|
|
24
|
+
for (var t in r) {
|
|
25
|
+
e[t] = r[t];
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
if (n.from && n.alloc && n.allocUnsafe && n.allocUnsafeSlow) {
|
|
29
|
+
e.exports = o;
|
|
30
|
+
} else {
|
|
31
|
+
f(o, t);
|
|
32
|
+
t.Buffer = u;
|
|
33
|
+
}
|
|
34
|
+
function u(r, e, t) {
|
|
35
|
+
return n(r, e, t);
|
|
36
|
+
}
|
|
37
|
+
u.prototype = Object.create(n.prototype);
|
|
38
|
+
f(n, u);
|
|
39
|
+
u.from = function(r, e, t) {
|
|
40
|
+
if (typeof r === "number") {
|
|
41
|
+
throw new TypeError("Argument must not be a number");
|
|
42
|
+
}
|
|
43
|
+
return n(r, e, t);
|
|
44
|
+
};
|
|
45
|
+
u.alloc = function(r, e, t) {
|
|
46
|
+
if (typeof r !== "number") {
|
|
47
|
+
throw new TypeError("Argument must be a number");
|
|
48
|
+
}
|
|
49
|
+
var o = n(r);
|
|
50
|
+
if (e !== undefined) {
|
|
51
|
+
if (typeof t === "string") {
|
|
52
|
+
o.fill(e, t);
|
|
53
|
+
} else {
|
|
54
|
+
o.fill(e);
|
|
55
|
+
}
|
|
56
|
+
} else {
|
|
57
|
+
o.fill(0);
|
|
58
|
+
}
|
|
59
|
+
return o;
|
|
60
|
+
};
|
|
61
|
+
u.allocUnsafe = function(r) {
|
|
62
|
+
if (typeof r !== "number") {
|
|
63
|
+
throw new TypeError("Argument must be a number");
|
|
64
|
+
}
|
|
65
|
+
return n(r);
|
|
66
|
+
};
|
|
67
|
+
u.allocUnsafeSlow = function(r) {
|
|
68
|
+
if (typeof r !== "number") {
|
|
69
|
+
throw new TypeError("Argument must be a number");
|
|
70
|
+
}
|
|
71
|
+
return o.SlowBuffer(r);
|
|
72
|
+
};
|
|
73
|
+
})(e, e.exports);
|
|
74
|
+
return e.exports;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export { n as r };
|