lakutata 2.0.80 → 2.0.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/com/cacher.cjs +8 -10
- package/com/cacher.d.ts +83 -14
- package/com/cacher.mjs +8 -10
- package/com/database.cjs +11 -11
- package/com/database.mjs +11 -11
- package/com/docker.cjs +17 -19
- package/com/docker.d.ts +3 -141
- package/com/docker.mjs +13 -15
- package/com/entrypoint.cjs +7 -5
- package/com/entrypoint.mjs +7 -5
- package/com/logger.cjs +7 -7
- package/com/logger.mjs +7 -7
- package/com/monitor.cjs +5 -3
- package/com/monitor.mjs +5 -3
- package/decorator/ctrl.cjs +3 -3
- package/decorator/ctrl.mjs +3 -3
- package/decorator/orm.cjs +98 -98
- package/decorator/orm.mjs +142 -56
- package/helper.cjs +9 -11
- package/helper.mjs +5 -7
- package/lakutata.cjs +23 -30
- package/lakutata.mjs +14 -18
- package/orm.cjs +1423 -886
- package/orm.mjs +1474 -724
- package/package.json +1 -1
- package/provider/database.cjs +11 -11
- package/provider/database.mjs +11 -11
- package/provider/passwordHash.cjs +4 -2
- package/provider/passwordHash.mjs +4 -2
- package/src/components/Database.cjs +11 -11
- package/src/components/Database.mjs +11 -11
- package/src/components/Logger.cjs +7 -7
- package/src/components/Logger.mjs +7 -7
- package/src/components/cacher/Cacher.cjs +1178 -264
- package/src/components/cacher/Cacher.mjs +1087 -173
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +479 -2963
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +469 -2947
- package/src/components/docker/ConnectionOptionsBuilder.cjs +15 -17
- package/src/components/docker/ConnectionOptionsBuilder.mjs +13 -15
- package/src/components/docker/Docker.cjs +4884 -4945
- package/src/components/docker/Docker.mjs +4902 -4963
- package/src/components/docker/lib/DockerContainer.cjs +23 -25
- package/src/components/docker/lib/DockerContainer.mjs +17 -19
- package/src/components/docker/lib/DockerContainerTTY.cjs +9 -11
- package/src/components/docker/lib/DockerContainerTTY.mjs +9 -11
- package/src/components/docker/lib/DockerImage.cjs +4 -2
- package/src/components/docker/lib/DockerImage.mjs +4 -2
- package/src/components/entrypoint/Entrypoint.cjs +2170 -1678
- package/src/components/entrypoint/Entrypoint.mjs +2126 -1634
- package/src/components/entrypoint/lib/AccessControl.cjs +4 -2
- package/src/components/entrypoint/lib/AccessControl.mjs +4 -2
- package/src/components/entrypoint/lib/AccessControlRule.cjs +4 -2
- package/src/components/entrypoint/lib/AccessControlRule.mjs +4 -2
- package/src/components/entrypoint/lib/Controller.cjs +4 -2
- package/src/components/entrypoint/lib/Controller.mjs +4 -2
- package/src/components/monitor/AliveMonitor.cjs +4 -2
- package/src/components/monitor/AliveMonitor.mjs +4 -2
- package/src/components/monitor/CpuMonitor.cjs +5 -3
- package/src/components/monitor/CpuMonitor.mjs +5 -3
- package/src/components/monitor/EventLoopMonitor.cjs +4 -2
- package/src/components/monitor/EventLoopMonitor.mjs +4 -2
- package/src/components/monitor/HttpRequestMonitor.cjs +5 -3
- package/src/components/monitor/HttpRequestMonitor.mjs +5 -3
- package/src/components/monitor/MemoryMonitor.cjs +5 -3
- package/src/components/monitor/MemoryMonitor.mjs +5 -3
- package/src/decorators/ctrl/CLIAction.cjs +3 -3
- package/src/decorators/ctrl/CLIAction.mjs +3 -3
- package/src/decorators/ctrl/HTTPAction.cjs +3 -3
- package/src/decorators/ctrl/HTTPAction.mjs +3 -3
- package/src/decorators/ctrl/ServiceAction.cjs +3 -3
- package/src/decorators/ctrl/ServiceAction.mjs +3 -3
- package/src/decorators/ctrl/http/DELETE.cjs +3 -3
- package/src/decorators/ctrl/http/DELETE.mjs +3 -3
- package/src/decorators/ctrl/http/GET.cjs +3 -3
- package/src/decorators/ctrl/http/GET.mjs +3 -3
- package/src/decorators/ctrl/http/HEAD.cjs +3 -3
- package/src/decorators/ctrl/http/HEAD.mjs +3 -3
- package/src/decorators/ctrl/http/OPTIONS.cjs +3 -3
- package/src/decorators/ctrl/http/OPTIONS.mjs +3 -3
- package/src/decorators/ctrl/http/PATCH.cjs +3 -3
- package/src/decorators/ctrl/http/PATCH.mjs +3 -3
- package/src/decorators/ctrl/http/POST.cjs +3 -3
- package/src/decorators/ctrl/http/POST.mjs +3 -3
- package/src/decorators/ctrl/http/PUT.cjs +3 -3
- package/src/decorators/ctrl/http/PUT.mjs +3 -3
- package/src/decorators/orm/AfterInsert.cjs +17 -39
- package/src/decorators/orm/AfterInsert.mjs +18 -38
- package/src/decorators/orm/AfterLoad.cjs +17 -39
- package/src/decorators/orm/AfterLoad.mjs +18 -38
- package/src/decorators/orm/AfterRecover.cjs +17 -39
- package/src/decorators/orm/AfterRecover.mjs +18 -38
- package/src/decorators/orm/AfterRemove.cjs +17 -39
- package/src/decorators/orm/AfterRemove.mjs +18 -38
- package/src/decorators/orm/AfterSoftRemove.cjs +17 -39
- package/src/decorators/orm/AfterSoftRemove.mjs +18 -38
- package/src/decorators/orm/AfterUpdate.cjs +17 -39
- package/src/decorators/orm/AfterUpdate.mjs +18 -38
- package/src/decorators/orm/BeforeInsert.cjs +17 -39
- package/src/decorators/orm/BeforeInsert.mjs +18 -38
- package/src/decorators/orm/BeforeRecover.cjs +17 -39
- package/src/decorators/orm/BeforeRecover.mjs +18 -38
- package/src/decorators/orm/BeforeRemove.cjs +17 -39
- package/src/decorators/orm/BeforeRemove.mjs +18 -38
- package/src/decorators/orm/BeforeSoftRemove.cjs +17 -39
- package/src/decorators/orm/BeforeSoftRemove.mjs +18 -38
- package/src/decorators/orm/BeforeUpdate.cjs +17 -39
- package/src/decorators/orm/BeforeUpdate.mjs +18 -38
- package/src/decorators/orm/Check.cjs +17 -42
- package/src/decorators/orm/Check.mjs +18 -41
- package/src/decorators/orm/ChildEntity.cjs +17 -42
- package/src/decorators/orm/ChildEntity.mjs +18 -41
- package/src/decorators/orm/Column.cjs +17 -74
- package/src/decorators/orm/Column.mjs +19 -74
- package/src/decorators/orm/CreateDateColumn.cjs +17 -38
- package/src/decorators/orm/CreateDateColumn.mjs +18 -37
- package/src/decorators/orm/DeleteDateColumn.cjs +17 -38
- package/src/decorators/orm/DeleteDateColumn.mjs +17 -36
- package/src/decorators/orm/Entity.cjs +17 -48
- package/src/decorators/orm/Entity.mjs +17 -46
- package/src/decorators/orm/EventSubscriber.cjs +17 -35
- package/src/decorators/orm/EventSubscriber.mjs +18 -34
- package/src/decorators/orm/Exclusion.cjs +17 -42
- package/src/decorators/orm/Exclusion.mjs +18 -41
- package/src/decorators/orm/Generated.cjs +17 -37
- package/src/decorators/orm/Generated.mjs +18 -36
- package/src/decorators/orm/Index.cjs +17 -54
- package/src/decorators/orm/Index.mjs +19 -54
- package/src/decorators/orm/JoinColumn.cjs +17 -42
- package/src/decorators/orm/JoinColumn.mjs +18 -41
- package/src/decorators/orm/JoinTable.cjs +17 -43
- package/src/decorators/orm/JoinTable.mjs +17 -41
- package/src/decorators/orm/ManyToMany.cjs +17 -55
- package/src/decorators/orm/ManyToMany.mjs +17 -53
- package/src/decorators/orm/ManyToOne.cjs +17 -55
- package/src/decorators/orm/ManyToOne.mjs +17 -53
- package/src/decorators/orm/ObjectIdColumn.cjs +17 -41
- package/src/decorators/orm/ObjectIdColumn.mjs +18 -40
- package/src/decorators/orm/OneToMany.cjs +17 -47
- package/src/decorators/orm/OneToMany.mjs +19 -47
- package/src/decorators/orm/OneToOne.cjs +17 -55
- package/src/decorators/orm/OneToOne.mjs +17 -53
- package/src/decorators/orm/PrimaryColumn.cjs +17 -62
- package/src/decorators/orm/PrimaryColumn.mjs +19 -62
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +17 -67
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +19 -67
- package/src/decorators/orm/RelationId.cjs +17 -39
- package/src/decorators/orm/RelationId.mjs +18 -38
- package/src/decorators/orm/TableInheritance.cjs +17 -39
- package/src/decorators/orm/TableInheritance.mjs +18 -38
- package/src/decorators/orm/Tree.cjs +17 -37
- package/src/decorators/orm/Tree.mjs +18 -36
- package/src/decorators/orm/TreeChildren.cjs +17 -44
- package/src/decorators/orm/TreeChildren.mjs +17 -42
- package/src/decorators/orm/TreeLevelColumn.cjs +17 -38
- package/src/decorators/orm/TreeLevelColumn.mjs +17 -36
- package/src/decorators/orm/TreeParent.cjs +17 -44
- package/src/decorators/orm/TreeParent.mjs +17 -42
- package/src/decorators/orm/Unique.cjs +17 -57
- package/src/decorators/orm/Unique.mjs +19 -57
- package/src/decorators/orm/UpdateDateColumn.cjs +17 -38
- package/src/decorators/orm/UpdateDateColumn.mjs +18 -37
- package/src/decorators/orm/VersionColumn.cjs +17 -38
- package/src/decorators/orm/VersionColumn.mjs +18 -37
- package/src/decorators/orm/ViewColumn.cjs +17 -38
- package/src/decorators/orm/ViewColumn.mjs +18 -37
- package/src/decorators/orm/ViewEntity.cjs +17 -47
- package/src/decorators/orm/ViewEntity.mjs +18 -46
- package/src/decorators/orm/VirtualColumn.cjs +17 -55
- package/src/decorators/orm/VirtualColumn.mjs +17 -53
- package/src/lib/base/BaseObject.cjs +4 -2
- package/src/lib/base/BaseObject.mjs +4 -2
- package/src/lib/base/EventEmitter.cjs +1200 -1193
- package/src/lib/base/EventEmitter.mjs +1201 -1194
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +4 -2
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +4 -2
- package/src/lib/base/internal/ControllerEntrypoint.cjs +3 -3
- package/src/lib/base/internal/ControllerEntrypoint.mjs +3 -3
- package/src/lib/base/internal/DataValidator.cjs +176 -179
- package/src/lib/base/internal/DataValidator.mjs +177 -180
- package/src/lib/base/internal/ModuleConfigLoader.cjs +4 -3
- package/src/lib/base/internal/ModuleConfigLoader.mjs +4 -3
- package/src/lib/base/internal/ObjectType.cjs +4 -2
- package/src/lib/base/internal/ObjectType.mjs +4 -2
- package/src/lib/base/internal/PatternManager.cjs +740 -735
- package/src/lib/base/internal/PatternManager.mjs +745 -740
- package/src/lib/base/internal/StringifyPattern.cjs +1 -1
- package/src/lib/base/internal/StringifyPattern.mjs +1 -1
- package/src/lib/core/Application.cjs +151 -147
- package/src/lib/core/Application.mjs +199 -197
- package/src/lib/core/Component.cjs +4 -2
- package/src/lib/core/Component.mjs +4 -2
- package/src/lib/core/Container.cjs +4 -2
- package/src/lib/core/Container.mjs +4 -2
- package/src/lib/core/Module.cjs +5 -3
- package/src/lib/core/Module.mjs +5 -3
- package/src/lib/core/Provider.cjs +4 -2
- package/src/lib/core/Provider.mjs +4 -2
- package/src/lib/helpers/Glob.cjs +970 -721
- package/src/lib/helpers/Glob.mjs +1036 -787
- package/src/lib/helpers/IsHtml.cjs +7 -13
- package/src/lib/helpers/IsHtml.mjs +7 -13
- package/src/lib/helpers/IsXML.cjs +1158 -1016
- package/src/lib/helpers/IsXML.mjs +871 -729
- package/src/lib/helpers/MD5.cjs +1 -1
- package/src/lib/helpers/MD5.mjs +1 -1
- package/src/lib/helpers/NonceStr.cjs +1 -1
- package/src/lib/helpers/NonceStr.mjs +1 -1
- package/src/lib/helpers/ObjectHash.cjs +379 -372
- package/src/lib/helpers/ObjectHash.mjs +379 -372
- package/src/lib/helpers/RandomString.cjs +168 -147
- package/src/lib/helpers/RandomString.mjs +167 -146
- package/src/lib/helpers/SHA1.cjs +1 -1
- package/src/lib/helpers/SHA1.mjs +1 -1
- package/src/lib/helpers/SHA256.cjs +1 -1
- package/src/lib/helpers/SHA256.mjs +1 -1
- package/src/lib/helpers/SortArray.cjs +1 -1
- package/src/lib/helpers/SortArray.mjs +1 -1
- package/src/lib/helpers/Statistics.cjs +1 -1
- package/src/lib/helpers/Statistics.mjs +1 -1
- package/src/lib/helpers/URLBuilder.cjs +355 -355
- package/src/lib/helpers/URLBuilder.mjs +350 -350
- package/src/lib/helpers/UUID.cjs +1 -1
- package/src/lib/helpers/UUID.mjs +1 -1
- package/src/lib/ioc/DependencyInjectionContainer.cjs +32 -30
- package/src/lib/ioc/DependencyInjectionContainer.mjs +12 -10
- package/src/lib/ioc/ListModules.cjs +5174 -5249
- package/src/lib/ioc/ListModules.mjs +5177 -5252
- package/src/lib/validation/VLD.cjs +4080 -3902
- package/src/lib/validation/VLD.mjs +2970 -2792
- package/src/options/ApplicationOptions.cjs +4 -2
- package/src/options/ApplicationOptions.mjs +4 -2
- package/src/options/LoadAnonymousObjectOptions.cjs +4 -2
- package/src/options/LoadAnonymousObjectOptions.mjs +4 -2
- package/src/options/LoadNamedObjectOptions.cjs +4 -2
- package/src/options/LoadNamedObjectOptions.mjs +4 -2
- package/src/options/LoadObjectOptions.cjs +4 -2
- package/src/options/LoadObjectOptions.mjs +4 -2
- package/src/options/ModuleLoadObjectsOptions.cjs +4 -2
- package/src/options/ModuleLoadObjectsOptions.mjs +4 -2
- package/src/options/ModuleOptions.cjs +4 -4
- package/src/options/ModuleOptions.mjs +4 -4
- package/src/options/OverridableNamedObjectOptions.cjs +4 -2
- package/src/options/OverridableNamedObjectOptions.mjs +4 -2
- package/src/options/OverridableObjectOptions.cjs +4 -2
- package/src/options/OverridableObjectOptions.mjs +4 -2
- package/src/providers/Database.cjs +11 -11
- package/src/providers/Database.mjs +11 -11
- package/src/providers/PasswordHash.cjs +5 -3
- package/src/providers/PasswordHash.mjs +190 -188
- package/src/providers/migration/GenerateMigration.cjs +15 -19
- package/src/providers/migration/GenerateMigration.mjs +15 -19
- package/vendor/Package.10.cjs +2 -8
- package/vendor/Package.10.mjs +2 -8
- package/vendor/Package.11.cjs +5 -83
- package/vendor/Package.11.mjs +5 -77
- package/vendor/Package.112.cjs +48900 -0
- package/vendor/Package.112.mjs +48764 -0
- package/vendor/Package.12.cjs +4 -2
- package/vendor/Package.12.mjs +6 -4
- package/vendor/Package.13.cjs +87 -1
- package/vendor/Package.13.mjs +81 -1
- package/vendor/Package.14.cjs +1 -14057
- package/vendor/Package.14.mjs +1 -14031
- package/vendor/Package.15.cjs +1 -1
- package/vendor/Package.15.mjs +1 -1
- package/vendor/Package.16.cjs +18129 -1935
- package/vendor/Package.16.mjs +18115 -1839
- package/vendor/Package.17.cjs +1922 -47918
- package/vendor/Package.17.mjs +1874 -47937
- package/vendor/Package.18.cjs +35 -1
- package/vendor/Package.18.mjs +35 -1
- package/vendor/Package.19.cjs +37 -0
- package/vendor/Package.19.mjs +35 -0
- package/vendor/Package.2.cjs +5739 -5710
- package/vendor/Package.2.mjs +5733 -5704
- package/vendor/Package.20.cjs +37 -0
- package/vendor/Package.20.mjs +35 -0
- package/vendor/Package.21.cjs +37 -0
- package/vendor/Package.21.mjs +35 -0
- package/vendor/Package.22.cjs +37 -0
- package/vendor/Package.22.mjs +35 -0
- package/vendor/Package.23.cjs +37 -0
- package/vendor/Package.23.mjs +35 -0
- package/vendor/Package.24.cjs +37 -0
- package/vendor/Package.24.mjs +35 -0
- package/vendor/Package.25.cjs +37 -0
- package/vendor/Package.25.mjs +35 -0
- package/vendor/Package.26.cjs +37 -0
- package/vendor/Package.26.mjs +35 -0
- package/vendor/Package.27.cjs +37 -0
- package/vendor/Package.27.mjs +35 -0
- package/vendor/Package.28.cjs +37 -0
- package/vendor/Package.28.mjs +35 -0
- package/vendor/Package.29.cjs +40 -0
- package/vendor/Package.29.mjs +38 -0
- package/vendor/Package.30.cjs +41 -0
- package/vendor/Package.30.mjs +39 -0
- package/vendor/Package.31.cjs +72 -0
- package/vendor/Package.31.mjs +70 -0
- package/vendor/Package.32.cjs +37 -0
- package/vendor/Package.32.mjs +35 -0
- package/vendor/Package.33.cjs +37 -0
- package/vendor/Package.33.mjs +35 -0
- package/vendor/Package.34.cjs +46 -0
- package/vendor/Package.34.mjs +44 -0
- package/vendor/Package.35.cjs +34 -0
- package/vendor/Package.35.mjs +32 -0
- package/vendor/Package.36.cjs +40 -0
- package/vendor/Package.36.mjs +38 -0
- package/vendor/Package.37.cjs +36 -0
- package/vendor/Package.37.mjs +34 -0
- package/vendor/Package.38.cjs +52 -0
- package/vendor/Package.38.mjs +50 -0
- package/vendor/Package.39.cjs +41 -0
- package/vendor/Package.39.mjs +39 -0
- package/vendor/Package.4.cjs +884 -874
- package/vendor/Package.4.mjs +884 -874
- package/vendor/Package.40.cjs +42 -0
- package/vendor/Package.40.mjs +40 -0
- package/vendor/Package.41.cjs +53 -0
- package/vendor/Package.41.mjs +51 -0
- package/vendor/Package.42.cjs +53 -0
- package/vendor/Package.42.mjs +51 -0
- package/vendor/Package.43.cjs +40 -0
- package/vendor/Package.43.mjs +38 -0
- package/vendor/Package.44.cjs +46 -0
- package/vendor/Package.44.mjs +44 -0
- package/vendor/Package.45.cjs +53 -0
- package/vendor/Package.45.mjs +51 -0
- package/vendor/Package.46.cjs +59 -0
- package/vendor/Package.46.mjs +57 -0
- package/vendor/Package.47.cjs +65 -0
- package/vendor/Package.47.mjs +63 -0
- package/vendor/Package.48.cjs +38 -0
- package/vendor/Package.48.mjs +36 -0
- package/vendor/Package.49.cjs +38 -0
- package/vendor/Package.49.mjs +36 -0
- package/vendor/Package.5.cjs +15 -11
- package/vendor/Package.5.mjs +11 -7
- package/vendor/Package.50.cjs +36 -0
- package/vendor/Package.50.mjs +34 -0
- package/vendor/Package.51.cjs +43 -0
- package/vendor/Package.51.mjs +41 -0
- package/vendor/Package.52.cjs +37 -0
- package/vendor/Package.52.mjs +35 -0
- package/vendor/Package.53.cjs +43 -0
- package/vendor/Package.53.mjs +41 -0
- package/vendor/Package.54.cjs +55 -0
- package/vendor/Package.54.mjs +53 -0
- package/vendor/Package.55.cjs +37 -0
- package/vendor/Package.55.mjs +35 -0
- package/vendor/Package.56.cjs +37 -0
- package/vendor/Package.56.mjs +35 -0
- package/vendor/Package.57.cjs +37 -0
- package/vendor/Package.57.mjs +35 -0
- package/vendor/Package.58.cjs +45 -0
- package/vendor/Package.58.mjs +43 -0
- package/vendor/Package.59.cjs +53 -0
- package/vendor/Package.59.mjs +51 -0
- package/vendor/Package.6.cjs +520 -511
- package/vendor/Package.6.mjs +543 -534
- package/vendor/Package.60.cjs +47649 -0
- package/vendor/Package.60.mjs +47606 -0
- package/vendor/Package.610.cjs +11 -11
- package/vendor/Package.610.mjs +11 -11
- package/vendor/Package.611.cjs +33 -23
- package/vendor/Package.611.mjs +19 -9
- package/vendor/Package.612.cjs +42 -36
- package/vendor/Package.612.mjs +35 -29
- package/vendor/Package.613.cjs +5 -4
- package/vendor/Package.613.mjs +5 -4
- package/vendor/Package.62.cjs +92 -89
- package/vendor/Package.62.mjs +185 -182
- package/vendor/Package.63.cjs +509 -166
- package/vendor/Package.63.mjs +490 -165
- package/vendor/Package.64.cjs +139 -511
- package/vendor/Package.64.mjs +139 -491
- package/vendor/Package.65.cjs +4135 -150
- package/vendor/Package.65.mjs +4143 -150
- package/vendor/Package.66.cjs +346 -4150
- package/vendor/Package.66.mjs +346 -4158
- package/vendor/Package.67.cjs +412 -261
- package/vendor/Package.67.mjs +410 -259
- package/vendor/Package.68.cjs +397 -405
- package/vendor/Package.68.mjs +227 -242
- package/vendor/Package.8.cjs +0 -4
- package/vendor/Package.8.mjs +0 -4
- package/vendor/Package.9.cjs +132 -118
- package/vendor/Package.9.mjs +138 -124
- package/vendor/TypeDef.internal.3.d.ts +0 -4
- package/vendor/Package.102.cjs +0 -48773
- package/vendor/Package.102.mjs +0 -48697
- package/vendor/Package.122.cjs +0 -3
- package/vendor/Package.122.mjs +0 -1
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const e = require("./Package.5.cjs");
|
|
4
|
+
|
|
5
|
+
const t = require("./Package.112.cjs");
|
|
6
|
+
|
|
7
|
+
var r = {};
|
|
8
|
+
|
|
9
|
+
var i;
|
|
10
|
+
|
|
11
|
+
function s() {
|
|
12
|
+
if (i) return r;
|
|
13
|
+
i = 1;
|
|
14
|
+
"use strict";
|
|
15
|
+
Object.defineProperty(r, "__esModule", {
|
|
16
|
+
value: true
|
|
17
|
+
});
|
|
18
|
+
r.PrimaryGeneratedColumn = n;
|
|
19
|
+
const e = t.requireGlobals();
|
|
20
|
+
const s = t.requireObjectUtils();
|
|
21
|
+
function n(t, r) {
|
|
22
|
+
const i = {};
|
|
23
|
+
let n;
|
|
24
|
+
if (t) {
|
|
25
|
+
if (typeof t === "string") n = t;
|
|
26
|
+
if (s.ObjectUtils.isObject(t)) {
|
|
27
|
+
n = "increment";
|
|
28
|
+
Object.assign(i, t);
|
|
29
|
+
}
|
|
30
|
+
} else {
|
|
31
|
+
n = "increment";
|
|
32
|
+
}
|
|
33
|
+
if (s.ObjectUtils.isObject(r)) Object.assign(i, r);
|
|
34
|
+
return function(t, r) {
|
|
35
|
+
if (!i.type) {
|
|
36
|
+
if (n === "increment" || n === "identity") {
|
|
37
|
+
i.type = Number;
|
|
38
|
+
} else if (n === "uuid") {
|
|
39
|
+
i.type = "uuid";
|
|
40
|
+
} else if (n === "rowid") {
|
|
41
|
+
i.type = "int";
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
i.primary = true;
|
|
45
|
+
(0, e.getMetadataArgsStorage)().columns.push({
|
|
46
|
+
target: t.constructor,
|
|
47
|
+
propertyName: r,
|
|
48
|
+
mode: "regular",
|
|
49
|
+
options: i
|
|
50
|
+
});
|
|
51
|
+
(0, e.getMetadataArgsStorage)().generations.push({
|
|
52
|
+
target: t.constructor,
|
|
53
|
+
propertyName: r,
|
|
54
|
+
strategy: n
|
|
55
|
+
});
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
return r;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
var n = s();
|
|
62
|
+
|
|
63
|
+
const o = e.getDefaultExportFromCjs(n);
|
|
64
|
+
|
|
65
|
+
exports.PrimaryGeneratedColumnExports = n;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { g as t } from "./Package.5.mjs";
|
|
2
|
+
|
|
3
|
+
import { h as e, k as r } from "./Package.112.mjs";
|
|
4
|
+
|
|
5
|
+
var i = {};
|
|
6
|
+
|
|
7
|
+
var s;
|
|
8
|
+
|
|
9
|
+
function n() {
|
|
10
|
+
if (s) return i;
|
|
11
|
+
s = 1;
|
|
12
|
+
"use strict";
|
|
13
|
+
Object.defineProperty(i, "__esModule", {
|
|
14
|
+
value: true
|
|
15
|
+
});
|
|
16
|
+
i.PrimaryGeneratedColumn = a;
|
|
17
|
+
const t = e();
|
|
18
|
+
const n = r();
|
|
19
|
+
function a(e, r) {
|
|
20
|
+
const i = {};
|
|
21
|
+
let s;
|
|
22
|
+
if (e) {
|
|
23
|
+
if (typeof e === "string") s = e;
|
|
24
|
+
if (n.ObjectUtils.isObject(e)) {
|
|
25
|
+
s = "increment";
|
|
26
|
+
Object.assign(i, e);
|
|
27
|
+
}
|
|
28
|
+
} else {
|
|
29
|
+
s = "increment";
|
|
30
|
+
}
|
|
31
|
+
if (n.ObjectUtils.isObject(r)) Object.assign(i, r);
|
|
32
|
+
return function(e, r) {
|
|
33
|
+
if (!i.type) {
|
|
34
|
+
if (s === "increment" || s === "identity") {
|
|
35
|
+
i.type = Number;
|
|
36
|
+
} else if (s === "uuid") {
|
|
37
|
+
i.type = "uuid";
|
|
38
|
+
} else if (s === "rowid") {
|
|
39
|
+
i.type = "int";
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
i.primary = true;
|
|
43
|
+
(0, t.getMetadataArgsStorage)().columns.push({
|
|
44
|
+
target: e.constructor,
|
|
45
|
+
propertyName: r,
|
|
46
|
+
mode: "regular",
|
|
47
|
+
options: i
|
|
48
|
+
});
|
|
49
|
+
(0, t.getMetadataArgsStorage)().generations.push({
|
|
50
|
+
target: e.constructor,
|
|
51
|
+
propertyName: r,
|
|
52
|
+
strategy: s
|
|
53
|
+
});
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
return i;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
var a = n();
|
|
60
|
+
|
|
61
|
+
const o = t(a);
|
|
62
|
+
|
|
63
|
+
export { a as P };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const e = require("./Package.5.cjs");
|
|
4
|
+
|
|
5
|
+
const r = require("./Package.112.cjs");
|
|
6
|
+
|
|
7
|
+
var t = {};
|
|
8
|
+
|
|
9
|
+
var a;
|
|
10
|
+
|
|
11
|
+
function o() {
|
|
12
|
+
if (a) return t;
|
|
13
|
+
a = 1;
|
|
14
|
+
"use strict";
|
|
15
|
+
Object.defineProperty(t, "__esModule", {
|
|
16
|
+
value: true
|
|
17
|
+
});
|
|
18
|
+
t.RelationId = o;
|
|
19
|
+
const e = r.requireGlobals();
|
|
20
|
+
function o(r, t, a) {
|
|
21
|
+
return function(o, s) {
|
|
22
|
+
(0, e.getMetadataArgsStorage)().relationIds.push({
|
|
23
|
+
target: o.constructor,
|
|
24
|
+
propertyName: s,
|
|
25
|
+
relation: r,
|
|
26
|
+
alias: t,
|
|
27
|
+
queryBuilderFactory: a
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
return t;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
var s = o();
|
|
35
|
+
|
|
36
|
+
const n = e.getDefaultExportFromCjs(s);
|
|
37
|
+
|
|
38
|
+
exports.RelationIdExports = s;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { g as r } from "./Package.5.mjs";
|
|
2
|
+
|
|
3
|
+
import { h as t } from "./Package.112.mjs";
|
|
4
|
+
|
|
5
|
+
var e = {};
|
|
6
|
+
|
|
7
|
+
var a;
|
|
8
|
+
|
|
9
|
+
function o() {
|
|
10
|
+
if (a) return e;
|
|
11
|
+
a = 1;
|
|
12
|
+
"use strict";
|
|
13
|
+
Object.defineProperty(e, "__esModule", {
|
|
14
|
+
value: true
|
|
15
|
+
});
|
|
16
|
+
e.RelationId = o;
|
|
17
|
+
const r = t();
|
|
18
|
+
function o(t, e, a) {
|
|
19
|
+
return function(o, n) {
|
|
20
|
+
(0, r.getMetadataArgsStorage)().relationIds.push({
|
|
21
|
+
target: o.constructor,
|
|
22
|
+
propertyName: n,
|
|
23
|
+
relation: t,
|
|
24
|
+
alias: e,
|
|
25
|
+
queryBuilderFactory: a
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
return e;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
var n = o();
|
|
33
|
+
|
|
34
|
+
const s = r(n);
|
|
35
|
+
|
|
36
|
+
export { n as R };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const e = require("./Package.5.cjs");
|
|
4
|
+
|
|
5
|
+
const t = require("./Package.112.cjs");
|
|
6
|
+
|
|
7
|
+
var r = {};
|
|
8
|
+
|
|
9
|
+
var n;
|
|
10
|
+
|
|
11
|
+
function a() {
|
|
12
|
+
if (n) return r;
|
|
13
|
+
n = 1;
|
|
14
|
+
"use strict";
|
|
15
|
+
Object.defineProperty(r, "__esModule", {
|
|
16
|
+
value: true
|
|
17
|
+
});
|
|
18
|
+
r.TableInheritance = a;
|
|
19
|
+
const e = t.requireGlobals();
|
|
20
|
+
function a(t) {
|
|
21
|
+
return function(r) {
|
|
22
|
+
(0, e.getMetadataArgsStorage)().inheritances.push({
|
|
23
|
+
target: r,
|
|
24
|
+
pattern: t && t.pattern ? t.pattern : "STI",
|
|
25
|
+
column: t && t.column ? typeof t.column === "string" ? {
|
|
26
|
+
name: t.column
|
|
27
|
+
} : t.column : undefined
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
return r;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
var c = a();
|
|
35
|
+
|
|
36
|
+
const u = e.getDefaultExportFromCjs(c);
|
|
37
|
+
|
|
38
|
+
exports.TableInheritanceExports = c;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { g as t } from "./Package.5.mjs";
|
|
2
|
+
|
|
3
|
+
import { h as e } from "./Package.112.mjs";
|
|
4
|
+
|
|
5
|
+
var n = {};
|
|
6
|
+
|
|
7
|
+
var r;
|
|
8
|
+
|
|
9
|
+
function a() {
|
|
10
|
+
if (r) return n;
|
|
11
|
+
r = 1;
|
|
12
|
+
"use strict";
|
|
13
|
+
Object.defineProperty(n, "__esModule", {
|
|
14
|
+
value: true
|
|
15
|
+
});
|
|
16
|
+
n.TableInheritance = a;
|
|
17
|
+
const t = e();
|
|
18
|
+
function a(e) {
|
|
19
|
+
return function(n) {
|
|
20
|
+
(0, t.getMetadataArgsStorage)().inheritances.push({
|
|
21
|
+
target: n,
|
|
22
|
+
pattern: e && e.pattern ? e.pattern : "STI",
|
|
23
|
+
column: e && e.column ? typeof e.column === "string" ? {
|
|
24
|
+
name: e.column
|
|
25
|
+
} : e.column : undefined
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
return n;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
var o = a();
|
|
33
|
+
|
|
34
|
+
const u = t(o);
|
|
35
|
+
|
|
36
|
+
export { o as T };
|
package/vendor/Package.5.cjs
CHANGED
|
@@ -6,39 +6,43 @@ function t(e) {
|
|
|
6
6
|
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e["default"] : e;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
function
|
|
9
|
+
function r(e) {
|
|
10
10
|
return e && Object.prototype.hasOwnProperty.call(e, "default") ? e["default"] : e;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
function
|
|
13
|
+
function o(e) {
|
|
14
14
|
return e && Object.prototype.hasOwnProperty.call(e, "default") && Object.keys(e).length === 1 ? e["default"] : e;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
function n(e) {
|
|
18
|
-
if (e
|
|
18
|
+
if (Object.prototype.hasOwnProperty.call(e, "__esModule")) return e;
|
|
19
19
|
var t = e.default;
|
|
20
20
|
if (typeof t == "function") {
|
|
21
|
-
var
|
|
22
|
-
|
|
21
|
+
var r = function e() {
|
|
22
|
+
var r = false;
|
|
23
|
+
try {
|
|
24
|
+
r = this instanceof e;
|
|
25
|
+
} catch {}
|
|
26
|
+
if (r) {
|
|
23
27
|
return Reflect.construct(t, arguments, this.constructor);
|
|
24
28
|
}
|
|
25
29
|
return t.apply(this, arguments);
|
|
26
30
|
};
|
|
27
|
-
|
|
28
|
-
} else
|
|
29
|
-
Object.defineProperty(
|
|
31
|
+
r.prototype = t.prototype;
|
|
32
|
+
} else r = {};
|
|
33
|
+
Object.defineProperty(r, "__esModule", {
|
|
30
34
|
value: true
|
|
31
35
|
});
|
|
32
36
|
Object.keys(e).forEach((function(t) {
|
|
33
|
-
var
|
|
34
|
-
Object.defineProperty(
|
|
37
|
+
var o = Object.getOwnPropertyDescriptor(e, t);
|
|
38
|
+
Object.defineProperty(r, t, o.get ? o : {
|
|
35
39
|
enumerable: true,
|
|
36
40
|
get: function() {
|
|
37
41
|
return e[t];
|
|
38
42
|
}
|
|
39
43
|
});
|
|
40
44
|
}));
|
|
41
|
-
return
|
|
45
|
+
return r;
|
|
42
46
|
}
|
|
43
47
|
|
|
44
48
|
exports.commonjsGlobal = e;
|
package/vendor/Package.5.mjs
CHANGED
|
@@ -8,16 +8,20 @@ function r(e) {
|
|
|
8
8
|
return e && Object.prototype.hasOwnProperty.call(e, "default") ? e["default"] : e;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
function
|
|
11
|
+
function o(e) {
|
|
12
12
|
return e && Object.prototype.hasOwnProperty.call(e, "default") && Object.keys(e).length === 1 ? e["default"] : e;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
function
|
|
16
|
-
if (e
|
|
15
|
+
function n(e) {
|
|
16
|
+
if (Object.prototype.hasOwnProperty.call(e, "__esModule")) return e;
|
|
17
17
|
var t = e.default;
|
|
18
18
|
if (typeof t == "function") {
|
|
19
19
|
var r = function e() {
|
|
20
|
-
|
|
20
|
+
var r = false;
|
|
21
|
+
try {
|
|
22
|
+
r = this instanceof e;
|
|
23
|
+
} catch {}
|
|
24
|
+
if (r) {
|
|
21
25
|
return Reflect.construct(t, arguments, this.constructor);
|
|
22
26
|
}
|
|
23
27
|
return t.apply(this, arguments);
|
|
@@ -28,8 +32,8 @@ function o(e) {
|
|
|
28
32
|
value: true
|
|
29
33
|
});
|
|
30
34
|
Object.keys(e).forEach((function(t) {
|
|
31
|
-
var
|
|
32
|
-
Object.defineProperty(r, t,
|
|
35
|
+
var o = Object.getOwnPropertyDescriptor(e, t);
|
|
36
|
+
Object.defineProperty(r, t, o.get ? o : {
|
|
33
37
|
enumerable: true,
|
|
34
38
|
get: function() {
|
|
35
39
|
return e[t];
|
|
@@ -39,4 +43,4 @@ function o(e) {
|
|
|
39
43
|
return r;
|
|
40
44
|
}
|
|
41
45
|
|
|
42
|
-
export {
|
|
46
|
+
export { n as a, e as c, t as g };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const e = require("./Package.5.cjs");
|
|
4
|
+
|
|
5
|
+
const t = require("./Package.112.cjs");
|
|
6
|
+
|
|
7
|
+
var r = {};
|
|
8
|
+
|
|
9
|
+
var s;
|
|
10
|
+
|
|
11
|
+
function o() {
|
|
12
|
+
if (s) return r;
|
|
13
|
+
s = 1;
|
|
14
|
+
"use strict";
|
|
15
|
+
Object.defineProperty(r, "__esModule", {
|
|
16
|
+
value: true
|
|
17
|
+
});
|
|
18
|
+
r.Tree = o;
|
|
19
|
+
const e = t.requireGlobals();
|
|
20
|
+
function o(t, r) {
|
|
21
|
+
return function(s) {
|
|
22
|
+
(0, e.getMetadataArgsStorage)().trees.push({
|
|
23
|
+
target: s,
|
|
24
|
+
type: t,
|
|
25
|
+
options: t === "closure-table" ? r : undefined
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
return r;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
var u = o();
|
|
33
|
+
|
|
34
|
+
const n = e.getDefaultExportFromCjs(u);
|
|
35
|
+
|
|
36
|
+
exports.TreeExports = u;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { g as e } from "./Package.5.mjs";
|
|
2
|
+
|
|
3
|
+
import { h as t } from "./Package.112.mjs";
|
|
4
|
+
|
|
5
|
+
var r = {};
|
|
6
|
+
|
|
7
|
+
var a;
|
|
8
|
+
|
|
9
|
+
function o() {
|
|
10
|
+
if (a) return r;
|
|
11
|
+
a = 1;
|
|
12
|
+
"use strict";
|
|
13
|
+
Object.defineProperty(r, "__esModule", {
|
|
14
|
+
value: true
|
|
15
|
+
});
|
|
16
|
+
r.Tree = o;
|
|
17
|
+
const e = t();
|
|
18
|
+
function o(t, r) {
|
|
19
|
+
return function(a) {
|
|
20
|
+
(0, e.getMetadataArgsStorage)().trees.push({
|
|
21
|
+
target: a,
|
|
22
|
+
type: t,
|
|
23
|
+
options: t === "closure-table" ? r : undefined
|
|
24
|
+
});
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
return r;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
var n = o();
|
|
31
|
+
|
|
32
|
+
const s = e(n);
|
|
33
|
+
|
|
34
|
+
export { n as T };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const e = require("./Package.5.cjs");
|
|
4
|
+
|
|
5
|
+
const t = require("./Package.112.cjs");
|
|
6
|
+
|
|
7
|
+
var r = {};
|
|
8
|
+
|
|
9
|
+
var n;
|
|
10
|
+
|
|
11
|
+
function o() {
|
|
12
|
+
if (n) return r;
|
|
13
|
+
n = 1;
|
|
14
|
+
"use strict";
|
|
15
|
+
Object.defineProperty(r, "__esModule", {
|
|
16
|
+
value: true
|
|
17
|
+
});
|
|
18
|
+
r.TreeChildren = o;
|
|
19
|
+
const e = t.requireGlobals();
|
|
20
|
+
function o(t) {
|
|
21
|
+
return function(r, n) {
|
|
22
|
+
if (!t) t = {};
|
|
23
|
+
const o = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", r, n) : undefined;
|
|
24
|
+
const a = o && typeof o.name === "string" && o.name.toLowerCase() === "promise" || false;
|
|
25
|
+
(0, e.getMetadataArgsStorage)().relations.push({
|
|
26
|
+
isTreeChildren: true,
|
|
27
|
+
target: r.constructor,
|
|
28
|
+
propertyName: n,
|
|
29
|
+
isLazy: a,
|
|
30
|
+
relationType: "one-to-many",
|
|
31
|
+
type: () => r.constructor,
|
|
32
|
+
options: t
|
|
33
|
+
});
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
return r;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
var a = o();
|
|
40
|
+
|
|
41
|
+
const s = e.getDefaultExportFromCjs(a);
|
|
42
|
+
|
|
43
|
+
exports.TreeChildrenExports = a;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { g as e } from "./Package.5.mjs";
|
|
2
|
+
|
|
3
|
+
import { h as t } from "./Package.112.mjs";
|
|
4
|
+
|
|
5
|
+
var r = {};
|
|
6
|
+
|
|
7
|
+
var a;
|
|
8
|
+
|
|
9
|
+
function o() {
|
|
10
|
+
if (a) return r;
|
|
11
|
+
a = 1;
|
|
12
|
+
"use strict";
|
|
13
|
+
Object.defineProperty(r, "__esModule", {
|
|
14
|
+
value: true
|
|
15
|
+
});
|
|
16
|
+
r.TreeChildren = o;
|
|
17
|
+
const e = t();
|
|
18
|
+
function o(t) {
|
|
19
|
+
return function(r, a) {
|
|
20
|
+
if (!t) t = {};
|
|
21
|
+
const o = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", r, a) : undefined;
|
|
22
|
+
const n = o && typeof o.name === "string" && o.name.toLowerCase() === "promise" || false;
|
|
23
|
+
(0, e.getMetadataArgsStorage)().relations.push({
|
|
24
|
+
isTreeChildren: true,
|
|
25
|
+
target: r.constructor,
|
|
26
|
+
propertyName: a,
|
|
27
|
+
isLazy: n,
|
|
28
|
+
relationType: "one-to-many",
|
|
29
|
+
type: () => r.constructor,
|
|
30
|
+
options: t
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
return r;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
var n = o();
|
|
38
|
+
|
|
39
|
+
const s = e(n);
|
|
40
|
+
|
|
41
|
+
export { n as T };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const e = require("./Package.5.cjs");
|
|
4
|
+
|
|
5
|
+
const r = require("./Package.112.cjs");
|
|
6
|
+
|
|
7
|
+
var t = {};
|
|
8
|
+
|
|
9
|
+
var o;
|
|
10
|
+
|
|
11
|
+
function s() {
|
|
12
|
+
if (o) return t;
|
|
13
|
+
o = 1;
|
|
14
|
+
"use strict";
|
|
15
|
+
Object.defineProperty(t, "__esModule", {
|
|
16
|
+
value: true
|
|
17
|
+
});
|
|
18
|
+
t.TreeLevelColumn = s;
|
|
19
|
+
const e = r.requireGlobals();
|
|
20
|
+
function s() {
|
|
21
|
+
return function(r, t) {
|
|
22
|
+
(0, e.getMetadataArgsStorage)().columns.push({
|
|
23
|
+
target: r.constructor,
|
|
24
|
+
propertyName: t,
|
|
25
|
+
mode: "treeLevel",
|
|
26
|
+
options: {}
|
|
27
|
+
});
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
return t;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
var u = s();
|
|
34
|
+
|
|
35
|
+
const n = e.getDefaultExportFromCjs(u);
|
|
36
|
+
|
|
37
|
+
exports.TreeLevelColumnExports = u;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { g as e } from "./Package.5.mjs";
|
|
2
|
+
|
|
3
|
+
import { h as r } from "./Package.112.mjs";
|
|
4
|
+
|
|
5
|
+
var t = {};
|
|
6
|
+
|
|
7
|
+
var o;
|
|
8
|
+
|
|
9
|
+
function a() {
|
|
10
|
+
if (o) return t;
|
|
11
|
+
o = 1;
|
|
12
|
+
"use strict";
|
|
13
|
+
Object.defineProperty(t, "__esModule", {
|
|
14
|
+
value: true
|
|
15
|
+
});
|
|
16
|
+
t.TreeLevelColumn = a;
|
|
17
|
+
const e = r();
|
|
18
|
+
function a() {
|
|
19
|
+
return function(r, t) {
|
|
20
|
+
(0, e.getMetadataArgsStorage)().columns.push({
|
|
21
|
+
target: r.constructor,
|
|
22
|
+
propertyName: t,
|
|
23
|
+
mode: "treeLevel",
|
|
24
|
+
options: {}
|
|
25
|
+
});
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
return t;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
var n = a();
|
|
32
|
+
|
|
33
|
+
const s = e(n);
|
|
34
|
+
|
|
35
|
+
export { n as T };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const e = require("./Package.5.cjs");
|
|
4
|
+
|
|
5
|
+
const t = require("./Package.112.cjs");
|
|
6
|
+
|
|
7
|
+
var r = {};
|
|
8
|
+
|
|
9
|
+
var a;
|
|
10
|
+
|
|
11
|
+
function n() {
|
|
12
|
+
if (a) return r;
|
|
13
|
+
a = 1;
|
|
14
|
+
"use strict";
|
|
15
|
+
Object.defineProperty(r, "__esModule", {
|
|
16
|
+
value: true
|
|
17
|
+
});
|
|
18
|
+
r.TreeParent = n;
|
|
19
|
+
const e = t.requireGlobals();
|
|
20
|
+
function n(t) {
|
|
21
|
+
return function(r, a) {
|
|
22
|
+
if (!t) t = {};
|
|
23
|
+
const n = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", r, a) : undefined;
|
|
24
|
+
const o = n && typeof n.name === "string" && n.name.toLowerCase() === "promise" || false;
|
|
25
|
+
(0, e.getMetadataArgsStorage)().relations.push({
|
|
26
|
+
isTreeParent: true,
|
|
27
|
+
target: r.constructor,
|
|
28
|
+
propertyName: a,
|
|
29
|
+
isLazy: o,
|
|
30
|
+
relationType: "many-to-one",
|
|
31
|
+
type: () => r.constructor,
|
|
32
|
+
options: t
|
|
33
|
+
});
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
return r;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
var o = n();
|
|
40
|
+
|
|
41
|
+
const s = e.getDefaultExportFromCjs(o);
|
|
42
|
+
|
|
43
|
+
exports.TreeParentExports = o;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { g as e } from "./Package.5.mjs";
|
|
2
|
+
|
|
3
|
+
import { h as t } from "./Package.112.mjs";
|
|
4
|
+
|
|
5
|
+
var r = {};
|
|
6
|
+
|
|
7
|
+
var a;
|
|
8
|
+
|
|
9
|
+
function o() {
|
|
10
|
+
if (a) return r;
|
|
11
|
+
a = 1;
|
|
12
|
+
"use strict";
|
|
13
|
+
Object.defineProperty(r, "__esModule", {
|
|
14
|
+
value: true
|
|
15
|
+
});
|
|
16
|
+
r.TreeParent = o;
|
|
17
|
+
const e = t();
|
|
18
|
+
function o(t) {
|
|
19
|
+
return function(r, a) {
|
|
20
|
+
if (!t) t = {};
|
|
21
|
+
const o = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", r, a) : undefined;
|
|
22
|
+
const n = o && typeof o.name === "string" && o.name.toLowerCase() === "promise" || false;
|
|
23
|
+
(0, e.getMetadataArgsStorage)().relations.push({
|
|
24
|
+
isTreeParent: true,
|
|
25
|
+
target: r.constructor,
|
|
26
|
+
propertyName: a,
|
|
27
|
+
isLazy: n,
|
|
28
|
+
relationType: "many-to-one",
|
|
29
|
+
type: () => r.constructor,
|
|
30
|
+
options: t
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
return r;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
var n = o();
|
|
38
|
+
|
|
39
|
+
const s = e(n);
|
|
40
|
+
|
|
41
|
+
export { n as T };
|