lakutata 2.0.82 → 2.0.83
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/docker.cjs +1 -1
- package/com/docker.mjs +1 -1
- package/decorator/orm.cjs +84 -84
- package/decorator/orm.mjs +42 -128
- package/orm.cjs +871 -1408
- package/orm.mjs +712 -1462
- package/package.json +1 -1
- package/src/components/Database.cjs +2 -2
- package/src/components/Database.mjs +6 -6
- package/src/components/cacher/Cacher.cjs +129 -129
- package/src/components/cacher/Cacher.mjs +117 -117
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +303 -312
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +304 -313
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +12 -12
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +11 -11
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +16 -16
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +14 -14
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +11 -11
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +11 -11
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +12 -12
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +13 -13
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +2 -2
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +2 -2
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +10 -10
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +10 -10
- package/src/components/cacher/lib/IsDriverPackageInstalled.cjs +2 -2
- package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +5 -5
- package/src/components/docker/ConnectionOptionsBuilder.cjs +11 -11
- package/src/components/docker/ConnectionOptionsBuilder.mjs +7 -7
- package/src/components/docker/Docker.cjs +5067 -4956
- package/src/components/docker/Docker.mjs +4982 -4871
- 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/ParseEnvToRecord.cjs +2 -2
- package/src/components/docker/lib/ParseEnvToRecord.mjs +12 -12
- package/src/components/docker/lib/ParseRepositoryTag.cjs +9 -9
- package/src/components/docker/lib/ParseRepositoryTag.mjs +11 -11
- package/src/components/entrypoint/Entrypoint.cjs +1678 -2168
- package/src/components/entrypoint/Entrypoint.mjs +1680 -2170
- package/src/components/monitor/AliveMonitor.cjs +2 -2
- package/src/components/monitor/AliveMonitor.mjs +2 -2
- package/src/components/monitor/MemoryMonitor.cjs +3 -3
- package/src/decorators/asst/After.cjs +3 -3
- package/src/decorators/asst/After.mjs +2 -2
- package/src/decorators/asst/Before.cjs +2 -2
- package/src/decorators/asst/Before.mjs +4 -4
- package/src/decorators/ctrl/CLIAction.cjs +2 -2
- package/src/decorators/ctrl/CLIAction.mjs +7 -7
- package/src/decorators/ctrl/HTTPAction.cjs +6 -6
- package/src/decorators/ctrl/HTTPAction.mjs +4 -4
- package/src/decorators/ctrl/ServiceAction.cjs +3 -3
- package/src/decorators/ctrl/ServiceAction.mjs +4 -4
- package/src/decorators/ctrl/http/DELETE.cjs +2 -2
- package/src/decorators/ctrl/http/DELETE.mjs +2 -2
- package/src/decorators/ctrl/http/GET.cjs +2 -2
- package/src/decorators/ctrl/http/GET.mjs +2 -2
- package/src/decorators/ctrl/http/HEAD.cjs +2 -2
- package/src/decorators/ctrl/http/HEAD.mjs +2 -2
- package/src/decorators/ctrl/http/OPTIONS.cjs +2 -2
- package/src/decorators/ctrl/http/OPTIONS.mjs +2 -2
- package/src/decorators/ctrl/http/PATCH.cjs +2 -2
- package/src/decorators/ctrl/http/PATCH.mjs +2 -2
- package/src/decorators/ctrl/http/POST.cjs +2 -2
- package/src/decorators/ctrl/http/POST.mjs +2 -2
- package/src/decorators/ctrl/http/PUT.cjs +2 -2
- package/src/decorators/ctrl/http/PUT.mjs +2 -2
- package/src/decorators/di/Autoload.cjs +2 -2
- package/src/decorators/di/Autoload.mjs +2 -2
- package/src/decorators/di/Configurable.cjs +3 -3
- package/src/decorators/di/Configurable.mjs +2 -2
- package/src/decorators/di/Inject.cjs +6 -6
- package/src/decorators/di/Inject.mjs +11 -11
- package/src/decorators/di/Lifetime.cjs +18 -18
- package/src/decorators/di/Lifetime.mjs +13 -13
- package/src/decorators/dto/Accept.cjs +3 -3
- package/src/decorators/dto/Accept.mjs +2 -2
- package/src/decorators/dto/Expect.cjs +2 -2
- package/src/decorators/dto/Expect.mjs +3 -3
- package/src/decorators/dto/IndexSignature.cjs +2 -2
- package/src/decorators/dto/IndexSignature.mjs +3 -3
- package/src/decorators/dto/Return.cjs +3 -3
- package/src/decorators/dto/Return.mjs +2 -2
- package/src/decorators/orm/AfterInsert.cjs +26 -4
- package/src/decorators/orm/AfterInsert.mjs +25 -5
- package/src/decorators/orm/AfterLoad.cjs +26 -4
- package/src/decorators/orm/AfterLoad.mjs +25 -5
- package/src/decorators/orm/AfterRecover.cjs +26 -4
- package/src/decorators/orm/AfterRecover.mjs +25 -5
- package/src/decorators/orm/AfterRemove.cjs +26 -4
- package/src/decorators/orm/AfterRemove.mjs +25 -5
- package/src/decorators/orm/AfterSoftRemove.cjs +26 -4
- package/src/decorators/orm/AfterSoftRemove.mjs +25 -5
- package/src/decorators/orm/AfterUpdate.cjs +26 -4
- package/src/decorators/orm/AfterUpdate.mjs +25 -5
- package/src/decorators/orm/BeforeInsert.cjs +26 -4
- package/src/decorators/orm/BeforeInsert.mjs +25 -5
- package/src/decorators/orm/BeforeRecover.cjs +26 -4
- package/src/decorators/orm/BeforeRecover.mjs +25 -5
- package/src/decorators/orm/BeforeRemove.cjs +26 -4
- package/src/decorators/orm/BeforeRemove.mjs +25 -5
- package/src/decorators/orm/BeforeSoftRemove.cjs +26 -4
- package/src/decorators/orm/BeforeSoftRemove.mjs +25 -5
- package/src/decorators/orm/BeforeUpdate.cjs +26 -4
- package/src/decorators/orm/BeforeUpdate.mjs +25 -5
- package/src/decorators/orm/Check.cjs +29 -4
- package/src/decorators/orm/Check.mjs +28 -5
- package/src/decorators/orm/ChildEntity.cjs +29 -4
- package/src/decorators/orm/ChildEntity.mjs +28 -5
- package/src/decorators/orm/Column.cjs +61 -4
- package/src/decorators/orm/Column.mjs +61 -6
- package/src/decorators/orm/CreateDateColumn.cjs +25 -4
- package/src/decorators/orm/CreateDateColumn.mjs +24 -5
- package/src/decorators/orm/DeleteDateColumn.cjs +25 -4
- package/src/decorators/orm/DeleteDateColumn.mjs +23 -4
- package/src/decorators/orm/Entity.cjs +35 -4
- package/src/decorators/orm/Entity.mjs +33 -4
- package/src/decorators/orm/EventSubscriber.cjs +22 -4
- package/src/decorators/orm/EventSubscriber.mjs +21 -5
- package/src/decorators/orm/Exclusion.cjs +29 -4
- package/src/decorators/orm/Exclusion.mjs +28 -5
- package/src/decorators/orm/Generated.cjs +24 -4
- package/src/decorators/orm/Generated.mjs +23 -5
- package/src/decorators/orm/Index.cjs +41 -4
- package/src/decorators/orm/Index.mjs +41 -6
- package/src/decorators/orm/JoinColumn.cjs +29 -4
- package/src/decorators/orm/JoinColumn.mjs +28 -5
- package/src/decorators/orm/JoinTable.cjs +30 -4
- package/src/decorators/orm/JoinTable.mjs +28 -4
- package/src/decorators/orm/ManyToMany.cjs +42 -4
- package/src/decorators/orm/ManyToMany.mjs +40 -4
- package/src/decorators/orm/ManyToOne.cjs +42 -4
- package/src/decorators/orm/ManyToOne.mjs +40 -4
- package/src/decorators/orm/ObjectIdColumn.cjs +28 -4
- package/src/decorators/orm/ObjectIdColumn.mjs +27 -5
- package/src/decorators/orm/OneToMany.cjs +34 -4
- package/src/decorators/orm/OneToMany.mjs +34 -6
- package/src/decorators/orm/OneToOne.cjs +42 -4
- package/src/decorators/orm/OneToOne.mjs +40 -4
- package/src/decorators/orm/PrimaryColumn.cjs +49 -4
- package/src/decorators/orm/PrimaryColumn.mjs +49 -6
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +54 -4
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +54 -6
- package/src/decorators/orm/RelationId.cjs +26 -4
- package/src/decorators/orm/RelationId.mjs +25 -5
- package/src/decorators/orm/TableInheritance.cjs +26 -4
- package/src/decorators/orm/TableInheritance.mjs +25 -5
- package/src/decorators/orm/Tree.cjs +24 -4
- package/src/decorators/orm/Tree.mjs +23 -5
- package/src/decorators/orm/TreeChildren.cjs +31 -4
- package/src/decorators/orm/TreeChildren.mjs +29 -4
- package/src/decorators/orm/TreeLevelColumn.cjs +25 -4
- package/src/decorators/orm/TreeLevelColumn.mjs +23 -4
- package/src/decorators/orm/TreeParent.cjs +31 -4
- package/src/decorators/orm/TreeParent.mjs +29 -4
- package/src/decorators/orm/Unique.cjs +44 -4
- package/src/decorators/orm/Unique.mjs +44 -6
- package/src/decorators/orm/UpdateDateColumn.cjs +25 -4
- package/src/decorators/orm/UpdateDateColumn.mjs +24 -5
- package/src/decorators/orm/VersionColumn.cjs +25 -4
- package/src/decorators/orm/VersionColumn.mjs +24 -5
- package/src/decorators/orm/ViewColumn.cjs +25 -4
- package/src/decorators/orm/ViewColumn.mjs +24 -5
- package/src/decorators/orm/ViewEntity.cjs +34 -4
- package/src/decorators/orm/ViewEntity.mjs +33 -5
- package/src/decorators/orm/VirtualColumn.cjs +42 -4
- package/src/decorators/orm/VirtualColumn.mjs +40 -4
- package/src/lib/base/EventEmitter.cjs +1195 -1202
- package/src/lib/base/EventEmitter.mjs +1195 -1202
- package/src/lib/base/async-constructor/Append.cjs +11 -11
- package/src/lib/base/async-constructor/Append.mjs +7 -7
- package/src/lib/base/internal/BasicInfo.cjs +10 -10
- package/src/lib/base/internal/BasicInfo.mjs +9 -9
- package/src/lib/base/internal/CamelCase.cjs +4 -4
- package/src/lib/base/internal/CamelCase.mjs +11 -11
- package/src/lib/base/internal/ConfigurableRecordsInjection.cjs +19 -19
- package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +18 -18
- package/src/lib/base/internal/ConstructorSymbol.cjs +10 -10
- package/src/lib/base/internal/ConstructorSymbol.mjs +8 -8
- package/src/lib/base/internal/ControllerEntrypoint.cjs +65 -65
- package/src/lib/base/internal/ControllerEntrypoint.mjs +36 -36
- package/src/lib/base/internal/DataValidator.cjs +185 -174
- package/src/lib/base/internal/DataValidator.mjs +230 -219
- package/src/lib/base/internal/GetActionDTOAndOptions.cjs +9 -9
- package/src/lib/base/internal/GetActionDTOAndOptions.mjs +10 -10
- package/src/lib/base/internal/IEEE754.cjs +74 -74
- package/src/lib/base/internal/IEEE754.mjs +70 -70
- package/src/lib/base/internal/MethodAssistantFunction.cjs +28 -28
- package/src/lib/base/internal/MethodAssistantFunction.mjs +38 -38
- package/src/lib/base/internal/MethodValidation.cjs +25 -25
- package/src/lib/base/internal/MethodValidation.mjs +20 -20
- package/src/lib/base/internal/ObjectConfiguration.cjs +10 -10
- package/src/lib/base/internal/ObjectConfiguration.mjs +15 -15
- package/src/lib/base/internal/ObjectContainer.cjs +7 -7
- package/src/lib/base/internal/ObjectContainer.mjs +6 -6
- package/src/lib/base/internal/ObjectInjection.cjs +16 -16
- package/src/lib/base/internal/ObjectInjection.mjs +13 -13
- package/src/lib/base/internal/ObjectLifetime.cjs +10 -10
- package/src/lib/base/internal/ObjectLifetime.mjs +9 -9
- package/src/lib/base/internal/ObjectWeakRefs.cjs +11 -11
- package/src/lib/base/internal/ObjectWeakRefs.mjs +9 -9
- package/src/lib/base/internal/PatternManager.cjs +739 -744
- package/src/lib/base/internal/PatternManager.mjs +743 -748
- package/src/lib/base/internal/StringifyPattern.cjs +26 -26
- package/src/lib/base/internal/StringifyPattern.mjs +26 -26
- package/src/lib/base/internal/ThrowWarning.cjs +2 -2
- package/src/lib/base/internal/ThrowWarning.mjs +2 -2
- package/src/lib/core/Alias.cjs +5 -5
- package/src/lib/core/Application.cjs +115 -128
- package/src/lib/core/Application.mjs +135 -148
- package/src/lib/helpers/ArrayToSet.cjs +2 -2
- package/src/lib/helpers/ArrayToSet.mjs +3 -3
- package/src/lib/helpers/As.cjs +2 -2
- package/src/lib/helpers/As.mjs +2 -2
- package/src/lib/helpers/ConvertArrayLikeToIterable.cjs +3 -3
- package/src/lib/helpers/ConvertArrayLikeToIterable.mjs +3 -3
- package/src/lib/helpers/ConvertArrayLikeToStream.cjs +2 -2
- package/src/lib/helpers/ConvertArrayLikeToStream.mjs +2 -2
- package/src/lib/helpers/Delay.cjs +2 -2
- package/src/lib/helpers/Delay.mjs +2 -2
- package/src/lib/helpers/DevNull.cjs +2 -2
- package/src/lib/helpers/DevNull.mjs +2 -2
- package/src/lib/helpers/GetObjectNestingDepth.cjs +12 -12
- package/src/lib/helpers/GetObjectNestingDepth.mjs +11 -11
- package/src/lib/helpers/GetObjectPropertyPaths.cjs +7 -7
- package/src/lib/helpers/GetObjectPropertyPaths.mjs +9 -9
- package/src/lib/helpers/Glob.cjs +890 -890
- package/src/lib/helpers/Glob.mjs +889 -889
- package/src/lib/helpers/GraceExit.cjs +3 -3
- package/src/lib/helpers/GraceExit.mjs +7 -7
- package/src/lib/helpers/HexToIEEE754.cjs +4 -4
- package/src/lib/helpers/HexToIEEE754.mjs +2 -2
- package/src/lib/helpers/HexToSigned.cjs +5 -5
- package/src/lib/helpers/HexToSigned.mjs +4 -4
- package/src/lib/helpers/HexToUnsigned.cjs +2 -2
- package/src/lib/helpers/HexToUnsigned.mjs +2 -2
- package/src/lib/helpers/IEEE754ToHex.cjs +5 -5
- package/src/lib/helpers/IEEE754ToHex.mjs +5 -5
- package/src/lib/helpers/IsAbortError.cjs +2 -2
- package/src/lib/helpers/IsAbortError.mjs +3 -3
- package/src/lib/helpers/IsEmptyObject.cjs +3 -3
- package/src/lib/helpers/IsEmptyObject.mjs +3 -3
- package/src/lib/helpers/IsExists.cjs +5 -5
- package/src/lib/helpers/IsExists.mjs +4 -4
- package/src/lib/helpers/IsHtml.cjs +8 -18
- package/src/lib/helpers/IsHtml.mjs +8 -18
- package/src/lib/helpers/IsNativeFunction.cjs +2 -2
- package/src/lib/helpers/IsNativeFunction.mjs +2 -2
- package/src/lib/helpers/IsPath.cjs +2 -2
- package/src/lib/helpers/IsPath.mjs +5 -5
- package/src/lib/helpers/IsPromise.cjs +2 -2
- package/src/lib/helpers/IsPromise.mjs +2 -2
- package/src/lib/helpers/IsPromiseLike.cjs +5 -5
- package/src/lib/helpers/IsPromiseLike.mjs +6 -6
- package/src/lib/helpers/IsXML.cjs +1531 -1525
- package/src/lib/helpers/IsXML.mjs +1527 -1521
- package/src/lib/helpers/MD5.cjs +2 -2
- package/src/lib/helpers/MD5.mjs +2 -2
- package/src/lib/helpers/MergeArray.cjs +3 -3
- package/src/lib/helpers/MergeArray.mjs +3 -3
- package/src/lib/helpers/MergeMap.cjs +3 -3
- package/src/lib/helpers/MergeMap.mjs +3 -3
- package/src/lib/helpers/MergeSet.cjs +2 -2
- package/src/lib/helpers/MergeSet.mjs +3 -3
- package/src/lib/helpers/NoCase.cjs +27 -27
- package/src/lib/helpers/NoCase.mjs +24 -24
- package/src/lib/helpers/NonceStr.cjs +2 -2
- package/src/lib/helpers/NonceStr.mjs +2 -2
- package/src/lib/helpers/ObjectConstructor.cjs +2 -2
- package/src/lib/helpers/ObjectConstructor.mjs +4 -4
- package/src/lib/helpers/ObjectHash.cjs +377 -384
- package/src/lib/helpers/ObjectHash.mjs +373 -380
- package/src/lib/helpers/ObjectParentConstructor.cjs +2 -2
- package/src/lib/helpers/ObjectParentConstructor.mjs +5 -5
- package/src/lib/helpers/ObjectParentConstructors.cjs +6 -6
- package/src/lib/helpers/ObjectParentConstructors.mjs +2 -2
- package/src/lib/helpers/ObjectPrototype.cjs +2 -2
- package/src/lib/helpers/ObjectPrototype.mjs +2 -2
- package/src/lib/helpers/ObjectToMap.cjs +2 -2
- package/src/lib/helpers/ObjectToMap.mjs +3 -3
- package/src/lib/helpers/Paginator.cjs +2 -2
- package/src/lib/helpers/Paginator.mjs +6 -6
- package/src/lib/helpers/RandomString.cjs +148 -169
- package/src/lib/helpers/RandomString.mjs +145 -166
- package/src/lib/helpers/SHA1.cjs +2 -2
- package/src/lib/helpers/SHA1.mjs +2 -2
- package/src/lib/helpers/SHA256.cjs +2 -2
- package/src/lib/helpers/SHA256.mjs +2 -2
- package/src/lib/helpers/SetToArray.cjs +2 -2
- package/src/lib/helpers/SetToArray.mjs +2 -2
- package/src/lib/helpers/SignedToHex.cjs +4 -4
- package/src/lib/helpers/SignedToHex.mjs +4 -4
- package/src/lib/helpers/SortArray.cjs +16 -16
- package/src/lib/helpers/SortArray.mjs +15 -15
- package/src/lib/helpers/SortKeys.cjs +41 -41
- package/src/lib/helpers/SortKeys.mjs +41 -41
- package/src/lib/helpers/SortObject.cjs +2 -2
- package/src/lib/helpers/SortObject.mjs +2 -2
- package/src/lib/helpers/Templating.cjs +25 -25
- package/src/lib/helpers/Templating.mjs +25 -25
- package/src/lib/helpers/URLBuilder.cjs +355 -355
- package/src/lib/helpers/URLBuilder.mjs +349 -349
- package/src/lib/helpers/UniqueArray.cjs +3 -3
- package/src/lib/helpers/UniqueArray.mjs +2 -2
- package/src/lib/helpers/UnsignedToHex.cjs +3 -3
- package/src/lib/helpers/UnsignedToHex.mjs +3 -3
- package/src/lib/ioc/DependencyInjectionContainer.cjs +106 -106
- package/src/lib/ioc/DependencyInjectionContainer.mjs +122 -122
- package/src/lib/ioc/FunctionTokenizer.cjs +115 -115
- package/src/lib/ioc/FunctionTokenizer.mjs +102 -102
- package/src/lib/ioc/Lifetime.cjs +5 -5
- package/src/lib/ioc/Lifetime.mjs +5 -5
- package/src/lib/ioc/ListModules.cjs +5298 -5221
- package/src/lib/ioc/ListModules.mjs +5258 -5181
- package/src/lib/ioc/LoadModules.cjs +56 -56
- package/src/lib/ioc/LoadModules.mjs +69 -69
- package/src/lib/ioc/ParamParser.cjs +30 -30
- package/src/lib/ioc/ParamParser.mjs +41 -41
- package/src/lib/ioc/Resolvers.cjs +87 -87
- package/src/lib/ioc/Resolvers.mjs +109 -109
- package/src/lib/ioc/Utils.cjs +12 -12
- package/src/lib/ioc/Utils.mjs +18 -18
- package/src/lib/validation/VLD.cjs +4025 -4202
- package/src/lib/validation/VLD.mjs +2972 -3149
- package/src/providers/Database.cjs +2 -2
- package/src/providers/Database.mjs +7 -7
- package/src/providers/PasswordHash.cjs +330 -330
- package/src/providers/PasswordHash.mjs +397 -397
- package/src/providers/migration/GenerateMigration.cjs +2 -2
- package/src/providers/migration/GenerateMigration.mjs +2 -2
- package/vendor/Package.1.cjs +256 -256
- package/vendor/Package.1.mjs +254 -254
- package/vendor/Package.112.cjs +42157 -42076
- package/vendor/Package.112.mjs +42222 -42081
- package/vendor/Package.13.cjs +36 -36
- package/vendor/Package.13.mjs +24 -24
- package/vendor/Package.16.cjs +12351 -12233
- package/vendor/Package.16.mjs +12348 -12230
- package/vendor/Package.17.cjs +924 -924
- package/vendor/Package.17.mjs +943 -943
- package/vendor/Package.18.cjs +48229 -20
- package/vendor/Package.18.mjs +48192 -24
- package/vendor/Package.2.cjs +5824 -5853
- package/vendor/Package.2.mjs +5780 -5809
- package/vendor/Package.3.cjs +60 -60
- package/vendor/Package.3.mjs +85 -85
- package/vendor/Package.4.cjs +874 -884
- package/vendor/Package.4.mjs +877 -887
- package/vendor/Package.5.cjs +15 -19
- package/vendor/Package.5.mjs +10 -14
- package/vendor/Package.6.cjs +2058 -2067
- package/vendor/Package.6.mjs +2064 -2073
- package/vendor/Package.610.cjs +9 -9
- package/vendor/Package.611.cjs +39 -39
- package/vendor/Package.611.mjs +22 -22
- package/vendor/Package.612.cjs +33 -33
- package/vendor/Package.612.mjs +17 -17
- package/vendor/Package.613.cjs +62 -62
- package/vendor/Package.613.mjs +29 -29
- package/vendor/Package.62.cjs +295 -298
- package/vendor/Package.62.mjs +278 -281
- package/vendor/Package.63.cjs +354 -354
- package/vendor/Package.63.mjs +229 -229
- package/vendor/Package.64.cjs +74 -74
- package/vendor/Package.64.mjs +74 -74
- package/vendor/Package.65.cjs +1851 -1858
- package/vendor/Package.65.mjs +1693 -1700
- package/vendor/Package.66.cjs +16 -16
- package/vendor/Package.66.mjs +16 -16
- package/vendor/Package.67.cjs +87 -87
- package/vendor/Package.67.mjs +85 -85
- package/vendor/Package.68.cjs +14 -14
- package/vendor/Package.68.mjs +6 -6
- package/vendor/Package.69.cjs +8 -8
- package/vendor/Package.7.cjs +3 -3
- package/vendor/Package.7.mjs +3 -3
- package/vendor/Package.9.cjs +124 -138
- package/vendor/Package.9.mjs +121 -135
- package/vendor/TypeDef.internal.3.d.ts +0 -14
- package/vendor/Package.19.cjs +0 -37
- package/vendor/Package.19.mjs +0 -35
- package/vendor/Package.20.cjs +0 -37
- package/vendor/Package.20.mjs +0 -35
- package/vendor/Package.21.cjs +0 -37
- package/vendor/Package.21.mjs +0 -35
- package/vendor/Package.22.cjs +0 -37
- package/vendor/Package.22.mjs +0 -35
- package/vendor/Package.23.cjs +0 -37
- package/vendor/Package.23.mjs +0 -35
- package/vendor/Package.24.cjs +0 -37
- package/vendor/Package.24.mjs +0 -35
- package/vendor/Package.25.cjs +0 -37
- package/vendor/Package.25.mjs +0 -35
- package/vendor/Package.26.cjs +0 -37
- package/vendor/Package.26.mjs +0 -35
- package/vendor/Package.27.cjs +0 -37
- package/vendor/Package.27.mjs +0 -35
- package/vendor/Package.28.cjs +0 -37
- package/vendor/Package.28.mjs +0 -35
- package/vendor/Package.29.cjs +0 -40
- package/vendor/Package.29.mjs +0 -38
- package/vendor/Package.30.cjs +0 -41
- package/vendor/Package.30.mjs +0 -39
- package/vendor/Package.31.cjs +0 -72
- package/vendor/Package.31.mjs +0 -70
- package/vendor/Package.32.cjs +0 -37
- package/vendor/Package.32.mjs +0 -35
- package/vendor/Package.33.cjs +0 -37
- package/vendor/Package.33.mjs +0 -35
- package/vendor/Package.34.cjs +0 -46
- package/vendor/Package.34.mjs +0 -44
- package/vendor/Package.35.cjs +0 -34
- package/vendor/Package.35.mjs +0 -32
- package/vendor/Package.36.cjs +0 -40
- package/vendor/Package.36.mjs +0 -38
- package/vendor/Package.37.cjs +0 -36
- package/vendor/Package.37.mjs +0 -34
- package/vendor/Package.38.cjs +0 -52
- package/vendor/Package.38.mjs +0 -50
- package/vendor/Package.39.cjs +0 -41
- package/vendor/Package.39.mjs +0 -39
- package/vendor/Package.40.cjs +0 -42
- package/vendor/Package.40.mjs +0 -40
- package/vendor/Package.41.cjs +0 -53
- package/vendor/Package.41.mjs +0 -51
- package/vendor/Package.42.cjs +0 -53
- package/vendor/Package.42.mjs +0 -51
- package/vendor/Package.43.cjs +0 -40
- package/vendor/Package.43.mjs +0 -38
- package/vendor/Package.44.cjs +0 -46
- package/vendor/Package.44.mjs +0 -44
- package/vendor/Package.45.cjs +0 -53
- package/vendor/Package.45.mjs +0 -51
- package/vendor/Package.46.cjs +0 -59
- package/vendor/Package.46.mjs +0 -57
- package/vendor/Package.47.cjs +0 -65
- package/vendor/Package.47.mjs +0 -63
- package/vendor/Package.48.cjs +0 -38
- package/vendor/Package.48.mjs +0 -36
- package/vendor/Package.49.cjs +0 -38
- package/vendor/Package.49.mjs +0 -36
- package/vendor/Package.50.cjs +0 -36
- package/vendor/Package.50.mjs +0 -34
- package/vendor/Package.51.cjs +0 -43
- package/vendor/Package.51.mjs +0 -41
- package/vendor/Package.52.cjs +0 -37
- package/vendor/Package.52.mjs +0 -35
- package/vendor/Package.53.cjs +0 -43
- package/vendor/Package.53.mjs +0 -41
- package/vendor/Package.54.cjs +0 -55
- package/vendor/Package.54.mjs +0 -53
- package/vendor/Package.55.cjs +0 -37
- package/vendor/Package.55.mjs +0 -35
- package/vendor/Package.56.cjs +0 -37
- package/vendor/Package.56.mjs +0 -35
- package/vendor/Package.57.cjs +0 -37
- package/vendor/Package.57.mjs +0 -35
- package/vendor/Package.58.cjs +0 -45
- package/vendor/Package.58.mjs +0 -43
- package/vendor/Package.59.cjs +0 -53
- package/vendor/Package.59.mjs +0 -51
- package/vendor/Package.60.cjs +0 -47649
- package/vendor/Package.60.mjs +0 -47606
package/vendor/Package.3.mjs
CHANGED
|
@@ -14,25 +14,25 @@ import { GetConfigurableRecords as a, SetIdToInstance as c, SetConfigurableRecor
|
|
|
14
14
|
|
|
15
15
|
import { GetObjectConfigurableProperties as p } from "../src/lib/base/internal/ObjectConfiguration.mjs";
|
|
16
16
|
|
|
17
|
-
import { GetObjectIsAutoload as
|
|
17
|
+
import { GetObjectIsAutoload as u, GetObjectInjectItemsByPrototype as f } from "../src/lib/base/internal/ObjectInjection.mjs";
|
|
18
18
|
|
|
19
19
|
import { SetObjectContainerGetter as b } from "../src/lib/base/internal/ObjectContainer.mjs";
|
|
20
20
|
|
|
21
|
-
import { D as y, I as
|
|
21
|
+
import { D as y, I as g } from "./Package.2.mjs";
|
|
22
22
|
|
|
23
|
-
import { ObjectConstructor as
|
|
23
|
+
import { ObjectConstructor as j } from "../src/lib/helpers/ObjectConstructor.mjs";
|
|
24
24
|
|
|
25
|
-
import { As as
|
|
25
|
+
import { As as w } from "../src/lib/helpers/As.mjs";
|
|
26
26
|
|
|
27
|
-
import { DevNull as
|
|
27
|
+
import { DevNull as O } from "../src/lib/helpers/DevNull.mjs";
|
|
28
28
|
|
|
29
29
|
import { ObjectParentConstructors as P } from "../src/lib/helpers/ObjectParentConstructors.mjs";
|
|
30
30
|
|
|
31
|
-
import { DependencyInjectionException as
|
|
31
|
+
import { DependencyInjectionException as C } from "../src/exceptions/di/DependencyInjectionException.mjs";
|
|
32
32
|
|
|
33
|
-
import { ConstructorSymbol as
|
|
33
|
+
import { ConstructorSymbol as R } from "../src/lib/base/internal/ConstructorSymbol.mjs";
|
|
34
34
|
|
|
35
|
-
import { Expect as
|
|
35
|
+
import { Expect as S } from "../src/decorators/dto/Expect.mjs";
|
|
36
36
|
|
|
37
37
|
import { IndexSignature as N } from "../src/decorators/dto/IndexSignature.mjs";
|
|
38
38
|
|
|
@@ -40,35 +40,35 @@ import { asValue as v, asClass as I } from "../src/lib/ioc/Resolvers.mjs";
|
|
|
40
40
|
|
|
41
41
|
import { GetObjectLifetime as E } from "../src/lib/base/internal/ObjectLifetime.mjs";
|
|
42
42
|
|
|
43
|
-
import { Accept as
|
|
43
|
+
import { Accept as M } from "../src/decorators/dto/Accept.mjs";
|
|
44
44
|
|
|
45
|
-
import { listModules as
|
|
45
|
+
import { listModules as A } from "../src/lib/ioc/ListModules.mjs";
|
|
46
46
|
|
|
47
|
-
import { pathToFileURL as
|
|
47
|
+
import { pathToFileURL as T } from "url";
|
|
48
48
|
|
|
49
|
-
import { isClass as
|
|
49
|
+
import { isClass as L } from "../src/lib/ioc/Utils.mjs";
|
|
50
50
|
|
|
51
|
-
import { IsEmptyObject as
|
|
51
|
+
import { IsEmptyObject as k } from "../src/lib/helpers/IsEmptyObject.mjs";
|
|
52
52
|
|
|
53
|
-
import { AppendObjectWeakRefs as
|
|
53
|
+
import { AppendObjectWeakRefs as D, GetObjectWeakRefs as U, ClearObjectWeakRefs as x } from "../src/lib/base/internal/ObjectWeakRefs.mjs";
|
|
54
54
|
|
|
55
|
-
var
|
|
55
|
+
var B;
|
|
56
56
|
|
|
57
|
-
const
|
|
57
|
+
const _ = Symbol("OBJECT_ID");
|
|
58
58
|
|
|
59
|
-
let
|
|
59
|
+
let F = class LoadObjectOptions extends y {
|
|
60
60
|
static {
|
|
61
|
-
|
|
61
|
+
B = _;
|
|
62
62
|
}
|
|
63
63
|
};
|
|
64
64
|
|
|
65
|
-
t([
|
|
65
|
+
t([ S(y.Alternatives(y.String(), y.Symbol()).optional()), e("design:type", Object) ], F.prototype, B, void 0);
|
|
66
66
|
|
|
67
|
-
t([
|
|
67
|
+
t([ S(y.Class((() => tt)).required()), e("design:type", Object) ], F.prototype, "class", void 0);
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
F = t([ N(y.Any()) ], F);
|
|
70
70
|
|
|
71
|
-
const
|
|
71
|
+
const G = Symbol("LAKUTATA.DI.CONTAINER.SYMBOL");
|
|
72
72
|
|
|
73
73
|
const Y = Symbol("LAKUTATA.DI.OWNER.SYMBOL");
|
|
74
74
|
|
|
@@ -86,14 +86,14 @@ class Container {
|
|
|
86
86
|
strict: false
|
|
87
87
|
});
|
|
88
88
|
if (this.parent) this.parent.#e.add(this);
|
|
89
|
-
this.#t.register(
|
|
89
|
+
this.#t.register(G, v(this));
|
|
90
90
|
if (e) this.#t.register(Y, v(new WeakRef(e)));
|
|
91
91
|
}
|
|
92
92
|
async disposer(t) {
|
|
93
93
|
try {
|
|
94
|
-
await t.getMethod(
|
|
94
|
+
await t.getMethod(H, false)();
|
|
95
95
|
} catch (t) {
|
|
96
|
-
|
|
96
|
+
O(t);
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
buildResolverOptions(t) {
|
|
@@ -104,11 +104,11 @@ class Container {
|
|
|
104
104
|
};
|
|
105
105
|
}
|
|
106
106
|
async processResolved(t, e, s = {}) {
|
|
107
|
-
const i = a(
|
|
108
|
-
const r = y.isValid(t.constructor, y.Class(
|
|
107
|
+
const i = a(w(t.constructor), e);
|
|
108
|
+
const r = y.isValid(t.constructor, y.Class(tt));
|
|
109
109
|
if (r) {
|
|
110
|
-
c(
|
|
111
|
-
l(
|
|
110
|
+
c(w(t), e);
|
|
111
|
+
l(w(t), {
|
|
112
112
|
...i,
|
|
113
113
|
...s
|
|
114
114
|
});
|
|
@@ -117,7 +117,7 @@ class Container {
|
|
|
117
117
|
}
|
|
118
118
|
buildNameAndRegistrationPairFromOptions(t) {
|
|
119
119
|
const e = {};
|
|
120
|
-
const s = t[
|
|
120
|
+
const s = t[_] ? t[_] : R(t.class);
|
|
121
121
|
const i = {
|
|
122
122
|
...t,
|
|
123
123
|
class: void 0
|
|
@@ -130,15 +130,15 @@ class Container {
|
|
|
130
130
|
}
|
|
131
131
|
async buildNameAndRegistrationPairFromGlob(t) {
|
|
132
132
|
const e = [];
|
|
133
|
-
|
|
133
|
+
A(t).forEach((t => {
|
|
134
134
|
e.push(new Promise((e => {
|
|
135
|
-
import(
|
|
135
|
+
import(T(t.path).toString()).then((t => {
|
|
136
136
|
Object.keys(t).forEach((s => {
|
|
137
137
|
const i = t[s];
|
|
138
|
-
if (
|
|
138
|
+
if (L(i) && y.isValid(i, y.Class(tt))) {
|
|
139
139
|
const t = i;
|
|
140
140
|
const s = {};
|
|
141
|
-
s[
|
|
141
|
+
s[R(t)] = I(t, this.buildResolverOptions(t));
|
|
142
142
|
return e(s);
|
|
143
143
|
} else {
|
|
144
144
|
return e({});
|
|
@@ -169,16 +169,16 @@ class Container {
|
|
|
169
169
|
t.forEach((t => {
|
|
170
170
|
if (typeof t === "string") {
|
|
171
171
|
s.push(new Promise(((e, s) => this.buildNameAndRegistrationPairFromGlob(t).then(e).catch(s))));
|
|
172
|
-
} else if (
|
|
172
|
+
} else if (L(w(t))) {
|
|
173
173
|
const s = {
|
|
174
|
-
class:
|
|
174
|
+
class: w(t)
|
|
175
175
|
};
|
|
176
176
|
e = {
|
|
177
177
|
...e,
|
|
178
178
|
...this.buildNameAndRegistrationPairFromOptions(s)
|
|
179
179
|
};
|
|
180
180
|
} else {
|
|
181
|
-
const s =
|
|
181
|
+
const s = w(t);
|
|
182
182
|
e = {
|
|
183
183
|
...e,
|
|
184
184
|
...this.buildNameAndRegistrationPairFromOptions(s)
|
|
@@ -194,24 +194,24 @@ class Container {
|
|
|
194
194
|
};
|
|
195
195
|
}));
|
|
196
196
|
}
|
|
197
|
-
if (!
|
|
197
|
+
if (!k(e)) {
|
|
198
198
|
Object.getOwnPropertyNames(e).forEach((t => this.injectionNames.add(t)));
|
|
199
199
|
Object.getOwnPropertySymbols(e).forEach((t => this.injectionNames.add(t)));
|
|
200
200
|
this.#t.register(e);
|
|
201
201
|
}
|
|
202
202
|
}
|
|
203
203
|
async get(t, e = {}) {
|
|
204
|
-
const s = typeof t === "function" ?
|
|
205
|
-
if (!this.#t.hasRegistration(s) && typeof t === "function" &&
|
|
204
|
+
const s = typeof t === "function" ? R(t) : t;
|
|
205
|
+
if (!this.#t.hasRegistration(s) && typeof t === "function" && u(w(t))) {
|
|
206
206
|
await this.load([ {
|
|
207
207
|
id: s,
|
|
208
|
-
class:
|
|
208
|
+
class: w(t)
|
|
209
209
|
} ]);
|
|
210
210
|
}
|
|
211
211
|
return (this.#t.getRegistration(s)?.lifetime === "SINGLETON" || this.#t.getRegistration(s)?.lifetime === "MODULE_SINGLETON") && !this.injectionNames.has(s) && this.parent ? await this.parent.get(s, e) : await this.processResolved(this.#t.resolve(s), s, e);
|
|
212
212
|
}
|
|
213
213
|
has(t) {
|
|
214
|
-
if (typeof t === "function") return this.#t.hasRegistration(
|
|
214
|
+
if (typeof t === "function") return this.#t.hasRegistration(R(t));
|
|
215
215
|
return this.#t.hasRegistration(t);
|
|
216
216
|
}
|
|
217
217
|
async set(t, e = {}) {
|
|
@@ -225,7 +225,7 @@ class Container {
|
|
|
225
225
|
await this.load([ {
|
|
226
226
|
...s,
|
|
227
227
|
class: e,
|
|
228
|
-
[
|
|
228
|
+
[_]: t
|
|
229
229
|
} ]);
|
|
230
230
|
return await this.get(t);
|
|
231
231
|
}
|
|
@@ -239,12 +239,12 @@ class Container {
|
|
|
239
239
|
await this.load([ {
|
|
240
240
|
...s,
|
|
241
241
|
class: e,
|
|
242
|
-
[
|
|
242
|
+
[_]: t
|
|
243
243
|
} ]);
|
|
244
244
|
}
|
|
245
245
|
async build(t, e = {}) {
|
|
246
|
-
const s = await this.processResolved(this.#t.build(t, this.buildResolverOptions(t)),
|
|
247
|
-
|
|
246
|
+
const s = await this.processResolved(this.#t.build(t, this.buildResolverOptions(t)), R(t), e);
|
|
247
|
+
D(this.#t, s);
|
|
248
248
|
return s;
|
|
249
249
|
}
|
|
250
250
|
createScope() {
|
|
@@ -259,18 +259,18 @@ class Container {
|
|
|
259
259
|
await Promise.all(t);
|
|
260
260
|
await this.#t.dispose();
|
|
261
261
|
const e = [];
|
|
262
|
-
|
|
262
|
+
U(this.#t).forEach((t => {
|
|
263
263
|
let s = t.deref();
|
|
264
264
|
if (!s) return;
|
|
265
|
-
if (s[
|
|
266
|
-
e.push(new Promise((t => s ? Promise.resolve(s[
|
|
265
|
+
if (s[H]) {
|
|
266
|
+
e.push(new Promise((t => s ? Promise.resolve(s[H]()).then((() => {
|
|
267
267
|
s = undefined;
|
|
268
268
|
return t();
|
|
269
|
-
})).catch(
|
|
269
|
+
})).catch(O) : t())));
|
|
270
270
|
}
|
|
271
271
|
}));
|
|
272
272
|
await Promise.all(e);
|
|
273
|
-
|
|
273
|
+
x(this.#t);
|
|
274
274
|
}
|
|
275
275
|
async destroy() {
|
|
276
276
|
if (this.#s) return;
|
|
@@ -280,7 +280,7 @@ class Container {
|
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
-
t([
|
|
283
|
+
t([ M(y.Array(y.Alternatives(F.Schema(), y.Class((() => tt)), y.Glob()))), e("design:type", Function), e("design:paramtypes", [ Array ]), e("design:returntype", Promise) ], Container.prototype, "load", null);
|
|
284
284
|
|
|
285
285
|
const $ = Symbol("OBJECT.TYPE");
|
|
286
286
|
|
|
@@ -295,16 +295,16 @@ var q;
|
|
|
295
295
|
t["Module"] = "Module";
|
|
296
296
|
})(q || (q = {}));
|
|
297
297
|
|
|
298
|
-
function
|
|
299
|
-
return e =>
|
|
298
|
+
function z(t) {
|
|
299
|
+
return e => J(e, t);
|
|
300
300
|
}
|
|
301
301
|
|
|
302
|
-
function
|
|
303
|
-
Reflect.defineMetadata($, y.isValid(t, y.Class(
|
|
302
|
+
function J(t, e) {
|
|
303
|
+
Reflect.defineMetadata($, y.isValid(t, y.Class(tt)) ? e : q.Unknown, t);
|
|
304
304
|
return t;
|
|
305
305
|
}
|
|
306
306
|
|
|
307
|
-
function
|
|
307
|
+
function V(t) {
|
|
308
308
|
if (Reflect.hasOwnMetadata($, t)) return Reflect.getOwnMetadata($, t);
|
|
309
309
|
let e = q.Unknown;
|
|
310
310
|
for (const s of P(t)) {
|
|
@@ -313,23 +313,23 @@ function GetObjectType(t) {
|
|
|
313
313
|
break;
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
|
-
|
|
317
|
-
return
|
|
316
|
+
J(t, e);
|
|
317
|
+
return V(t);
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
-
var
|
|
320
|
+
var W;
|
|
321
321
|
|
|
322
|
-
var
|
|
322
|
+
var K;
|
|
323
323
|
|
|
324
|
-
const
|
|
324
|
+
const X = Symbol("__init");
|
|
325
325
|
|
|
326
|
-
const
|
|
326
|
+
const H = Symbol("__destroy");
|
|
327
327
|
|
|
328
|
-
const
|
|
328
|
+
const Q = Symbol("anonymous");
|
|
329
329
|
|
|
330
|
-
const
|
|
330
|
+
const Z = Symbol("OBJECT.SYMBOL.PROPERTY");
|
|
331
331
|
|
|
332
|
-
let
|
|
332
|
+
let tt = K = class BaseObject extends s {
|
|
333
333
|
#i;
|
|
334
334
|
#r;
|
|
335
335
|
#o=n();
|
|
@@ -338,9 +338,9 @@ let H = J = class BaseObject extends s {
|
|
|
338
338
|
const t = d(this);
|
|
339
339
|
const e = [];
|
|
340
340
|
p(this).forEach(((s, i) => {
|
|
341
|
-
if (
|
|
341
|
+
if (g(i)) return;
|
|
342
342
|
e.push(new Promise(((e, r) => {
|
|
343
|
-
y.validateAsync(t[
|
|
343
|
+
y.validateAsync(t[w(i)], s.schema, {
|
|
344
344
|
targetName: i
|
|
345
345
|
}).then((t => Promise.resolve(s.fn.bind(this)(t)).then((t => {
|
|
346
346
|
this[i] = t;
|
|
@@ -351,7 +351,7 @@ let H = J = class BaseObject extends s {
|
|
|
351
351
|
await Promise.all(e);
|
|
352
352
|
}
|
|
353
353
|
async #c() {
|
|
354
|
-
const t =
|
|
354
|
+
const t = f(this);
|
|
355
355
|
const e = [];
|
|
356
356
|
t.forEach(((t, s) => {
|
|
357
357
|
const i = t.name;
|
|
@@ -361,14 +361,14 @@ let H = J = class BaseObject extends s {
|
|
|
361
361
|
Reflect.set(this, s, t);
|
|
362
362
|
return e();
|
|
363
363
|
})).catch(r);
|
|
364
|
-
})).catch((t => r(new
|
|
364
|
+
})).catch((t => r(new C("Unable to inject value for property {0} of {1} because: {2}", [ s, this.className, t.message ]))));
|
|
365
365
|
})));
|
|
366
366
|
}));
|
|
367
367
|
await Promise.all(e);
|
|
368
368
|
}
|
|
369
369
|
#l() {
|
|
370
370
|
const t = m(this);
|
|
371
|
-
this.#r = t ? t :
|
|
371
|
+
this.#r = t ? t : Q;
|
|
372
372
|
}
|
|
373
373
|
constructor(t) {
|
|
374
374
|
super((async () => {
|
|
@@ -377,18 +377,18 @@ let H = J = class BaseObject extends s {
|
|
|
377
377
|
if (t) Object.defineProperty(this, "then", {
|
|
378
378
|
enumerable: false
|
|
379
379
|
});
|
|
380
|
-
await this[
|
|
380
|
+
await this[X]();
|
|
381
381
|
}));
|
|
382
|
-
this.#i = new Container(t[
|
|
382
|
+
this.#i = new Container(t[G], this);
|
|
383
383
|
b(this, this.#i);
|
|
384
384
|
}
|
|
385
385
|
static get className() {
|
|
386
386
|
return this.name;
|
|
387
387
|
}
|
|
388
388
|
get className() {
|
|
389
|
-
return
|
|
389
|
+
return j(this).name;
|
|
390
390
|
}
|
|
391
|
-
async [
|
|
391
|
+
async [X](...t) {
|
|
392
392
|
this.#i.registerContainerToItsParent();
|
|
393
393
|
if (!this.#n) {
|
|
394
394
|
await this.#c();
|
|
@@ -398,7 +398,7 @@ let H = J = class BaseObject extends s {
|
|
|
398
398
|
for (const e of t) await e();
|
|
399
399
|
await this.init();
|
|
400
400
|
}
|
|
401
|
-
async [
|
|
401
|
+
async [H](...t) {
|
|
402
402
|
await this.#i.destroy();
|
|
403
403
|
for (const e of t) await e();
|
|
404
404
|
await this.destroy();
|
|
@@ -416,10 +416,10 @@ let H = J = class BaseObject extends s {
|
|
|
416
416
|
}
|
|
417
417
|
getModule() {
|
|
418
418
|
let t = this.getParent();
|
|
419
|
-
while (t &&
|
|
419
|
+
while (t && V(w(j(t))) !== q.Module) {
|
|
420
420
|
t = this.getParent();
|
|
421
421
|
}
|
|
422
|
-
return
|
|
422
|
+
return w(t);
|
|
423
423
|
}
|
|
424
424
|
get $uuid() {
|
|
425
425
|
return this.#o;
|
|
@@ -428,16 +428,16 @@ let H = J = class BaseObject extends s {
|
|
|
428
428
|
return this.#r;
|
|
429
429
|
}
|
|
430
430
|
get $symbol() {
|
|
431
|
-
if (Reflect.hasOwnMetadata(
|
|
432
|
-
Reflect.defineMetadata(
|
|
431
|
+
if (Reflect.hasOwnMetadata(Z, this)) return Reflect.getOwnMetadata(Z, this);
|
|
432
|
+
Reflect.defineMetadata(Z, Symbol(this.$uuid), this);
|
|
433
433
|
return this.$symbol;
|
|
434
434
|
}
|
|
435
435
|
setProperty(t, e) {
|
|
436
436
|
this[t] = e;
|
|
437
437
|
}
|
|
438
438
|
getProperty(t, e) {
|
|
439
|
-
if (this.hasProperty(t)) return
|
|
440
|
-
return
|
|
439
|
+
if (this.hasProperty(t)) return w(this[t]);
|
|
440
|
+
return w(e);
|
|
441
441
|
}
|
|
442
442
|
hasProperty(t) {
|
|
443
443
|
return typeof t === "string" ? this.propertyNames().includes(t) : this.propertySymbols().includes(t);
|
|
@@ -462,7 +462,7 @@ let H = J = class BaseObject extends s {
|
|
|
462
462
|
className: this.constructor.name
|
|
463
463
|
});
|
|
464
464
|
} else {
|
|
465
|
-
return (...t) =>
|
|
465
|
+
return (...t) => O(...t);
|
|
466
466
|
}
|
|
467
467
|
}
|
|
468
468
|
async dispose() {
|
|
@@ -470,6 +470,6 @@ let H = J = class BaseObject extends s {
|
|
|
470
470
|
}
|
|
471
471
|
};
|
|
472
472
|
|
|
473
|
-
|
|
473
|
+
tt = K = t([ i(), z(q.Object), e("design:paramtypes", [ Object ]) ], tt);
|
|
474
474
|
|
|
475
|
-
export {
|
|
475
|
+
export { tt as B, Container as C, z as D, V as G, F as L, q as O, J as S, X as _, H as a, _ as b, G as c, Q as d, Y as o };
|