lakutata 2.0.81 → 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 +873 -1410
- package/orm.mjs +708 -1458
- package/package.json +1 -1
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +230 -239
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +230 -239
- package/src/components/docker/ConnectionOptionsBuilder.cjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.mjs +1 -1
- package/src/components/docker/Docker.cjs +4919 -4808
- package/src/components/docker/Docker.mjs +4939 -4828
- 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/entrypoint/Entrypoint.cjs +1669 -2159
- package/src/components/entrypoint/Entrypoint.mjs +1629 -2119
- 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 +1193 -1200
- package/src/lib/base/EventEmitter.mjs +1194 -1201
- package/src/lib/base/internal/DataValidator.cjs +185 -174
- package/src/lib/base/internal/DataValidator.mjs +186 -175
- package/src/lib/base/internal/PatternManager.cjs +735 -740
- package/src/lib/base/internal/PatternManager.mjs +740 -745
- package/src/lib/core/Application.cjs +99 -112
- package/src/lib/core/Application.mjs +127 -140
- package/src/lib/helpers/IsHtml.cjs +13 -7
- package/src/lib/helpers/IsHtml.mjs +13 -7
- package/src/lib/helpers/IsXML.cjs +1016 -1158
- package/src/lib/helpers/IsXML.mjs +729 -871
- package/src/lib/helpers/ObjectHash.cjs +371 -378
- package/src/lib/helpers/ObjectHash.mjs +371 -378
- package/src/lib/helpers/RandomString.cjs +146 -167
- package/src/lib/helpers/RandomString.mjs +145 -166
- package/src/lib/helpers/URLBuilder.cjs +355 -355
- package/src/lib/helpers/URLBuilder.mjs +350 -350
- package/src/lib/ioc/ListModules.cjs +5237 -5160
- package/src/lib/ioc/ListModules.mjs +5252 -5175
- package/src/lib/validation/VLD.cjs +3903 -4080
- package/src/lib/validation/VLD.mjs +2793 -2970
- package/src/providers/migration/GenerateMigration.cjs +2 -2
- package/src/providers/migration/GenerateMigration.mjs +2 -2
- package/vendor/Package.112.cjs +38321 -38240
- package/vendor/Package.112.mjs +37720 -37579
- package/vendor/Package.16.cjs +7386 -7268
- package/vendor/Package.16.mjs +6706 -6588
- package/vendor/Package.18.cjs +48229 -20
- package/vendor/Package.18.mjs +48192 -24
- package/vendor/Package.2.cjs +5698 -5727
- package/vendor/Package.2.mjs +5707 -5736
- package/vendor/Package.4.cjs +874 -884
- package/vendor/Package.4.mjs +874 -884
- package/vendor/Package.5.cjs +11 -15
- package/vendor/Package.5.mjs +7 -11
- package/vendor/Package.6.cjs +511 -520
- package/vendor/Package.6.mjs +534 -543
- package/vendor/Package.62.cjs +87 -90
- package/vendor/Package.62.mjs +180 -183
- package/vendor/Package.65.cjs +1285 -1292
- package/vendor/Package.65.mjs +190 -197
- package/vendor/Package.68.cjs +111 -252
- package/vendor/Package.68.mjs +134 -268
- package/vendor/Package.9.cjs +118 -132
- package/vendor/Package.9.mjs +124 -138
- 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.44.mjs
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
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.OneToMany = o;
|
|
17
|
-
const e = t();
|
|
18
|
-
function o(t, r, a) {
|
|
19
|
-
return function(o, n) {
|
|
20
|
-
if (!a) a = {};
|
|
21
|
-
let s = a && a.lazy === true;
|
|
22
|
-
if (!s && Reflect && Reflect.getMetadata) {
|
|
23
|
-
const e = Reflect.getMetadata("design:type", o, n);
|
|
24
|
-
if (e && typeof e.name === "string" && e.name.toLowerCase() === "promise") s = true;
|
|
25
|
-
}
|
|
26
|
-
(0, e.getMetadataArgsStorage)().relations.push({
|
|
27
|
-
target: o.constructor,
|
|
28
|
-
propertyName: n,
|
|
29
|
-
isLazy: s,
|
|
30
|
-
relationType: "one-to-many",
|
|
31
|
-
type: t,
|
|
32
|
-
inverseSideProperty: r,
|
|
33
|
-
options: a
|
|
34
|
-
});
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
return r;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
var n = o();
|
|
41
|
-
|
|
42
|
-
const s = e(n);
|
|
43
|
-
|
|
44
|
-
export { n as O };
|
package/vendor/Package.45.cjs
DELETED
|
@@ -1,53 +0,0 @@
|
|
|
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 o;
|
|
10
|
-
|
|
11
|
-
function s() {
|
|
12
|
-
if (o) return r;
|
|
13
|
-
o = 1;
|
|
14
|
-
"use strict";
|
|
15
|
-
Object.defineProperty(r, "__esModule", {
|
|
16
|
-
value: true
|
|
17
|
-
});
|
|
18
|
-
r.OneToOne = n;
|
|
19
|
-
const e = t.requireGlobals();
|
|
20
|
-
const s = t.requireObjectUtils();
|
|
21
|
-
function n(t, r, o) {
|
|
22
|
-
let n;
|
|
23
|
-
if (s.ObjectUtils.isObject(r)) {
|
|
24
|
-
o = r;
|
|
25
|
-
} else {
|
|
26
|
-
n = r;
|
|
27
|
-
}
|
|
28
|
-
return function(r, s) {
|
|
29
|
-
if (!o) o = {};
|
|
30
|
-
let a = o && o.lazy === true ? true : false;
|
|
31
|
-
if (!a && Reflect && Reflect.getMetadata) {
|
|
32
|
-
const e = Reflect.getMetadata("design:type", r, s);
|
|
33
|
-
if (e && typeof e.name === "string" && e.name.toLowerCase() === "promise") a = true;
|
|
34
|
-
}
|
|
35
|
-
(0, e.getMetadataArgsStorage)().relations.push({
|
|
36
|
-
target: r.constructor,
|
|
37
|
-
propertyName: s,
|
|
38
|
-
isLazy: a,
|
|
39
|
-
relationType: "one-to-one",
|
|
40
|
-
type: t,
|
|
41
|
-
inverseSideProperty: n,
|
|
42
|
-
options: o
|
|
43
|
-
});
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
return r;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
var n = s();
|
|
50
|
-
|
|
51
|
-
const a = e.getDefaultExportFromCjs(n);
|
|
52
|
-
|
|
53
|
-
exports.OneToOneExports = n;
|
package/vendor/Package.45.mjs
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { g as e } from "./Package.5.mjs";
|
|
2
|
-
|
|
3
|
-
import { h as t, k as r } from "./Package.112.mjs";
|
|
4
|
-
|
|
5
|
-
var a = {};
|
|
6
|
-
|
|
7
|
-
var o;
|
|
8
|
-
|
|
9
|
-
function s() {
|
|
10
|
-
if (o) return a;
|
|
11
|
-
o = 1;
|
|
12
|
-
"use strict";
|
|
13
|
-
Object.defineProperty(a, "__esModule", {
|
|
14
|
-
value: true
|
|
15
|
-
});
|
|
16
|
-
a.OneToOne = n;
|
|
17
|
-
const e = t();
|
|
18
|
-
const s = r();
|
|
19
|
-
function n(t, r, a) {
|
|
20
|
-
let o;
|
|
21
|
-
if (s.ObjectUtils.isObject(r)) {
|
|
22
|
-
a = r;
|
|
23
|
-
} else {
|
|
24
|
-
o = r;
|
|
25
|
-
}
|
|
26
|
-
return function(r, s) {
|
|
27
|
-
if (!a) a = {};
|
|
28
|
-
let n = a && a.lazy === true ? true : false;
|
|
29
|
-
if (!n && Reflect && Reflect.getMetadata) {
|
|
30
|
-
const e = Reflect.getMetadata("design:type", r, s);
|
|
31
|
-
if (e && typeof e.name === "string" && e.name.toLowerCase() === "promise") n = true;
|
|
32
|
-
}
|
|
33
|
-
(0, e.getMetadataArgsStorage)().relations.push({
|
|
34
|
-
target: r.constructor,
|
|
35
|
-
propertyName: s,
|
|
36
|
-
isLazy: n,
|
|
37
|
-
relationType: "one-to-one",
|
|
38
|
-
type: t,
|
|
39
|
-
inverseSideProperty: o,
|
|
40
|
-
options: a
|
|
41
|
-
});
|
|
42
|
-
};
|
|
43
|
-
}
|
|
44
|
-
return a;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
var n = s();
|
|
48
|
-
|
|
49
|
-
const i = e(n);
|
|
50
|
-
|
|
51
|
-
export { n as O };
|
package/vendor/Package.46.cjs
DELETED
|
@@ -1,59 +0,0 @@
|
|
|
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 n;
|
|
10
|
-
|
|
11
|
-
function o() {
|
|
12
|
-
if (n) return t;
|
|
13
|
-
n = 1;
|
|
14
|
-
"use strict";
|
|
15
|
-
Object.defineProperty(t, "__esModule", {
|
|
16
|
-
value: true
|
|
17
|
-
});
|
|
18
|
-
t.PrimaryColumn = i;
|
|
19
|
-
const e = r.requireGlobals();
|
|
20
|
-
const o = r.requireColumnTypeUndefinedError();
|
|
21
|
-
const a = r.requirePrimaryColumnCannotBeNullableError();
|
|
22
|
-
function i(r, t) {
|
|
23
|
-
return function(n, i) {
|
|
24
|
-
let u;
|
|
25
|
-
if (typeof r === "string" || r === String || r === Boolean || r === Number) {
|
|
26
|
-
u = r;
|
|
27
|
-
} else {
|
|
28
|
-
t = Object.assign({}, r);
|
|
29
|
-
}
|
|
30
|
-
if (!t) t = {};
|
|
31
|
-
const s = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", n, i) : undefined;
|
|
32
|
-
if (!u && s) u = s;
|
|
33
|
-
if (!t.type && u) t.type = u;
|
|
34
|
-
if (!t.type) throw new o.ColumnTypeUndefinedError(n, i);
|
|
35
|
-
if (t.nullable) throw new a.PrimaryColumnCannotBeNullableError(n, i);
|
|
36
|
-
t.primary = true;
|
|
37
|
-
(0, e.getMetadataArgsStorage)().columns.push({
|
|
38
|
-
target: n.constructor,
|
|
39
|
-
propertyName: i,
|
|
40
|
-
mode: "regular",
|
|
41
|
-
options: t
|
|
42
|
-
});
|
|
43
|
-
if (t.generated) {
|
|
44
|
-
(0, e.getMetadataArgsStorage)().generations.push({
|
|
45
|
-
target: n.constructor,
|
|
46
|
-
propertyName: i,
|
|
47
|
-
strategy: typeof t.generated === "string" ? t.generated : "increment"
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
};
|
|
51
|
-
}
|
|
52
|
-
return t;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
var a = o();
|
|
56
|
-
|
|
57
|
-
const i = e.getDefaultExportFromCjs(a);
|
|
58
|
-
|
|
59
|
-
exports.PrimaryColumnExports = a;
|
package/vendor/Package.46.mjs
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { g as e } from "./Package.5.mjs";
|
|
2
|
-
|
|
3
|
-
import { h as t, j as r, l as a } from "./Package.112.mjs";
|
|
4
|
-
|
|
5
|
-
var n = {};
|
|
6
|
-
|
|
7
|
-
var o;
|
|
8
|
-
|
|
9
|
-
function s() {
|
|
10
|
-
if (o) return n;
|
|
11
|
-
o = 1;
|
|
12
|
-
"use strict";
|
|
13
|
-
Object.defineProperty(n, "__esModule", {
|
|
14
|
-
value: true
|
|
15
|
-
});
|
|
16
|
-
n.PrimaryColumn = g;
|
|
17
|
-
const e = t();
|
|
18
|
-
const s = r();
|
|
19
|
-
const i = a();
|
|
20
|
-
function g(t, r) {
|
|
21
|
-
return function(a, n) {
|
|
22
|
-
let o;
|
|
23
|
-
if (typeof t === "string" || t === String || t === Boolean || t === Number) {
|
|
24
|
-
o = t;
|
|
25
|
-
} else {
|
|
26
|
-
r = Object.assign({}, t);
|
|
27
|
-
}
|
|
28
|
-
if (!r) r = {};
|
|
29
|
-
const g = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", a, n) : undefined;
|
|
30
|
-
if (!o && g) o = g;
|
|
31
|
-
if (!r.type && o) r.type = o;
|
|
32
|
-
if (!r.type) throw new s.ColumnTypeUndefinedError(a, n);
|
|
33
|
-
if (r.nullable) throw new i.PrimaryColumnCannotBeNullableError(a, n);
|
|
34
|
-
r.primary = true;
|
|
35
|
-
(0, e.getMetadataArgsStorage)().columns.push({
|
|
36
|
-
target: a.constructor,
|
|
37
|
-
propertyName: n,
|
|
38
|
-
mode: "regular",
|
|
39
|
-
options: r
|
|
40
|
-
});
|
|
41
|
-
if (r.generated) {
|
|
42
|
-
(0, e.getMetadataArgsStorage)().generations.push({
|
|
43
|
-
target: a.constructor,
|
|
44
|
-
propertyName: n,
|
|
45
|
-
strategy: typeof r.generated === "string" ? r.generated : "increment"
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
return n;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
var i = s();
|
|
54
|
-
|
|
55
|
-
const g = e(i);
|
|
56
|
-
|
|
57
|
-
export { i as P };
|
package/vendor/Package.47.cjs
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
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;
|
package/vendor/Package.47.mjs
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
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 };
|
package/vendor/Package.48.cjs
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
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;
|
package/vendor/Package.48.mjs
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
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 };
|
package/vendor/Package.49.cjs
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
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;
|
package/vendor/Package.49.mjs
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
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.50.cjs
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
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;
|
package/vendor/Package.50.mjs
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
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 };
|
package/vendor/Package.51.cjs
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
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;
|
package/vendor/Package.51.mjs
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
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 };
|