lakutata 2.0.56 → 2.0.58
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/database.cjs +2 -0
- package/com/database.d.ts +2 -2
- package/com/database.mjs +2 -0
- package/com/entrypoint.cjs +2 -0
- package/com/entrypoint.d.ts +1 -1
- package/com/entrypoint.mjs +2 -0
- package/decorator/ctrl.d.ts +8 -1
- package/decorator/orm.cjs +88 -86
- package/decorator/orm.d.ts +74 -50
- package/decorator/orm.mjs +46 -44
- package/lakutata.cjs +6 -4
- package/lakutata.mjs +2 -0
- package/orm.cjs +112 -1075
- package/orm.d.ts +5 -5
- package/orm.mjs +17 -1015
- package/package.json +1 -1
- package/provider/database.cjs +2 -0
- package/provider/database.d.ts +2 -2
- package/provider/database.mjs +2 -0
- package/src/components/Database.cjs +2 -0
- package/src/components/Database.mjs +2 -0
- package/src/components/entrypoint/Entrypoint.cjs +853 -742
- package/src/components/entrypoint/Entrypoint.mjs +822 -711
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.cjs +34 -0
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.mjs +28 -0
- package/src/decorators/orm/AfterInsert.cjs +7 -27
- package/src/decorators/orm/AfterInsert.mjs +6 -28
- package/src/decorators/orm/AfterLoad.cjs +7 -27
- package/src/decorators/orm/AfterLoad.mjs +6 -28
- package/src/decorators/orm/AfterRecover.cjs +7 -27
- package/src/decorators/orm/AfterRecover.mjs +6 -28
- package/src/decorators/orm/AfterRemove.cjs +7 -27
- package/src/decorators/orm/AfterRemove.mjs +6 -28
- package/src/decorators/orm/AfterSoftRemove.cjs +7 -27
- package/src/decorators/orm/AfterSoftRemove.mjs +6 -28
- package/src/decorators/orm/AfterUpdate.cjs +7 -27
- package/src/decorators/orm/AfterUpdate.mjs +6 -28
- package/src/decorators/orm/BeforeInsert.cjs +7 -27
- package/src/decorators/orm/BeforeInsert.mjs +6 -28
- package/src/decorators/orm/BeforeRecover.cjs +7 -27
- package/src/decorators/orm/BeforeRecover.mjs +6 -28
- package/src/decorators/orm/BeforeRemove.cjs +7 -27
- package/src/decorators/orm/BeforeRemove.mjs +6 -28
- package/src/decorators/orm/BeforeSoftRemove.cjs +7 -27
- package/src/decorators/orm/BeforeSoftRemove.mjs +6 -28
- package/src/decorators/orm/BeforeUpdate.cjs +7 -27
- package/src/decorators/orm/BeforeUpdate.mjs +6 -28
- package/src/decorators/orm/Check.cjs +7 -30
- package/src/decorators/orm/Check.mjs +6 -31
- package/src/decorators/orm/ChildEntity.cjs +7 -30
- package/src/decorators/orm/ChildEntity.mjs +6 -31
- package/src/decorators/orm/Column.cjs +7 -62
- package/src/decorators/orm/Column.mjs +6 -63
- package/src/decorators/orm/CreateDateColumn.cjs +7 -26
- package/src/decorators/orm/CreateDateColumn.mjs +6 -27
- package/src/decorators/orm/DeleteDateColumn.cjs +7 -26
- package/src/decorators/orm/DeleteDateColumn.mjs +6 -27
- package/src/decorators/orm/Entity.cjs +7 -36
- package/src/decorators/orm/Entity.mjs +6 -37
- package/src/decorators/orm/EventSubscriber.cjs +7 -23
- package/src/decorators/orm/EventSubscriber.mjs +6 -24
- package/src/decorators/orm/Exclusion.cjs +7 -30
- package/src/decorators/orm/Exclusion.mjs +6 -31
- package/src/decorators/orm/Generated.cjs +7 -25
- package/src/decorators/orm/Generated.mjs +6 -26
- package/src/decorators/orm/Index.cjs +7 -42
- package/src/decorators/orm/Index.mjs +6 -43
- package/src/decorators/orm/JoinColumn.cjs +7 -30
- package/src/decorators/orm/JoinColumn.mjs +6 -31
- package/src/decorators/orm/JoinTable.cjs +7 -31
- package/src/decorators/orm/JoinTable.mjs +6 -32
- package/src/decorators/orm/ManyToMany.cjs +7 -43
- package/src/decorators/orm/ManyToMany.mjs +6 -44
- package/src/decorators/orm/ManyToOne.cjs +7 -43
- package/src/decorators/orm/ManyToOne.mjs +6 -44
- package/src/decorators/orm/ObjectIdColumn.cjs +7 -29
- package/src/decorators/orm/ObjectIdColumn.mjs +6 -30
- package/src/decorators/orm/OneToMany.cjs +7 -35
- package/src/decorators/orm/OneToMany.mjs +6 -36
- package/src/decorators/orm/OneToOne.cjs +7 -43
- package/src/decorators/orm/OneToOne.mjs +6 -44
- package/src/decorators/orm/PrimaryColumn.cjs +7 -50
- package/src/decorators/orm/PrimaryColumn.mjs +6 -51
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +7 -55
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +6 -56
- package/src/decorators/orm/RelationId.cjs +7 -27
- package/src/decorators/orm/RelationId.mjs +6 -28
- package/src/decorators/orm/TableInheritance.cjs +7 -27
- package/src/decorators/orm/TableInheritance.mjs +6 -28
- package/src/decorators/orm/Tree.cjs +7 -25
- package/src/decorators/orm/Tree.mjs +6 -26
- package/src/decorators/orm/TreeChildren.cjs +7 -32
- package/src/decorators/orm/TreeChildren.mjs +6 -33
- package/src/decorators/orm/TreeLevelColumn.cjs +7 -26
- package/src/decorators/orm/TreeLevelColumn.mjs +6 -27
- package/src/decorators/orm/TreeParent.cjs +7 -32
- package/src/decorators/orm/TreeParent.mjs +6 -33
- package/src/decorators/orm/Unique.cjs +7 -45
- package/src/decorators/orm/Unique.mjs +6 -46
- package/src/decorators/orm/UpdateDateColumn.cjs +7 -26
- package/src/decorators/orm/UpdateDateColumn.mjs +6 -27
- package/src/decorators/orm/VersionColumn.cjs +7 -26
- package/src/decorators/orm/VersionColumn.mjs +6 -27
- package/src/decorators/orm/ViewColumn.cjs +7 -26
- package/src/decorators/orm/ViewColumn.mjs +6 -27
- package/src/decorators/orm/ViewEntity.cjs +7 -35
- package/src/decorators/orm/ViewEntity.mjs +6 -36
- package/src/decorators/orm/VirtualColumn.cjs +7 -43
- package/src/decorators/orm/VirtualColumn.mjs +6 -44
- package/src/lib/core/Application.cjs +9 -7
- package/src/lib/core/Application.mjs +19 -17
- package/src/providers/Database.cjs +2 -0
- package/src/providers/Database.mjs +2 -0
- package/vendor/Package.122.cjs +19932 -14856
- package/vendor/Package.122.mjs +32675 -27699
- package/vendor/Package.19.cjs +1 -1
- package/vendor/Package.19.mjs +1 -1
- package/vendor/Package.6.cjs +1 -1
- package/vendor/Package.6.mjs +1 -1
- package/vendor/TypeDef.13.d.ts +61 -6
- package/vendor/TypeDef.4.d.ts +347 -181
package/decorator/orm.mjs
CHANGED
|
@@ -1,92 +1,92 @@
|
|
|
1
1
|
import "../vendor/Package.4.mjs";
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
import "../src/decorators/orm/AfterRecover.mjs";
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
import "../src/decorators/orm/AfterRemove.mjs";
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
import "../src/decorators/orm/AfterInsert.mjs";
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
import "../src/decorators/orm/AfterLoad.mjs";
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
import "../src/decorators/orm/AfterSoftRemove.mjs";
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
import "../src/decorators/orm/AfterUpdate.mjs";
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
import "../src/decorators/orm/BeforeInsert.mjs";
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
import "../src/decorators/orm/BeforeRecover.mjs";
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
import "../src/decorators/orm/BeforeRemove.mjs";
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
import "../src/decorators/orm/BeforeSoftRemove.mjs";
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
import "../src/decorators/orm/BeforeUpdate.mjs";
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
import "../src/decorators/orm/Check.mjs";
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
import "../src/decorators/orm/ChildEntity.mjs";
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
import "../src/decorators/orm/Column.mjs";
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
import "../src/decorators/orm/CreateDateColumn.mjs";
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
import "../src/decorators/orm/DeleteDateColumn.mjs";
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
import "../src/decorators/orm/Entity.mjs";
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
import "../src/decorators/orm/EventSubscriber.mjs";
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
import "../src/decorators/orm/Exclusion.mjs";
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
import "../src/decorators/orm/Generated.mjs";
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
import "../src/decorators/orm/Index.mjs";
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
import "../src/decorators/orm/JoinColumn.mjs";
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
import "../src/decorators/orm/JoinTable.mjs";
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
import "../src/decorators/orm/ManyToMany.mjs";
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
import "../src/decorators/orm/ManyToOne.mjs";
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
import "../src/decorators/orm/ObjectIdColumn.mjs";
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
import "../src/decorators/orm/OneToMany.mjs";
|
|
56
56
|
|
|
57
|
-
|
|
57
|
+
import "../src/decorators/orm/OneToOne.mjs";
|
|
58
58
|
|
|
59
|
-
|
|
59
|
+
import "../src/decorators/orm/PrimaryColumn.mjs";
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
import "../src/decorators/orm/PrimaryGeneratedColumn.mjs";
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
import "../src/decorators/orm/RelationId.mjs";
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
import "../src/decorators/orm/TableInheritance.mjs";
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
import "../src/decorators/orm/Tree.mjs";
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
import "../src/decorators/orm/TreeChildren.mjs";
|
|
70
70
|
|
|
71
|
-
|
|
71
|
+
import "../src/decorators/orm/TreeLevelColumn.mjs";
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
import "../src/decorators/orm/TreeParent.mjs";
|
|
74
74
|
|
|
75
|
-
|
|
75
|
+
import "../src/decorators/orm/Unique.mjs";
|
|
76
76
|
|
|
77
|
-
|
|
77
|
+
import "../src/decorators/orm/UpdateDateColumn.mjs";
|
|
78
78
|
|
|
79
|
-
|
|
79
|
+
import "../src/decorators/orm/VersionColumn.mjs";
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
import "../src/decorators/orm/ViewColumn.mjs";
|
|
82
82
|
|
|
83
|
-
|
|
83
|
+
import "../src/decorators/orm/ViewEntity.mjs";
|
|
84
84
|
|
|
85
|
-
|
|
85
|
+
import "../src/decorators/orm/VirtualColumn.mjs";
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
export { b as AfterInsert, c as AfterLoad, A as AfterRecover, a as AfterRemove, d as AfterSoftRemove, e as AfterUpdate, B as BeforeInsert, f as BeforeRecover, g as BeforeRemove, h as BeforeSoftRemove, i as BeforeUpdate, C as Check, j as ChildEntity, k as Column, l as CreateDateColumn, D as DeleteDateColumn, E as Entity, m as EventSubscriber, n as Exclusion, G as Generated, I as Index, J as JoinColumn, o as JoinTable, M as ManyToMany, p as ManyToOne, O as ObjectIdColumn, q as OneToMany, s as OneToOne, P as PrimaryColumn, t as PrimaryGeneratedColumn, R as RelationId, T as TableInheritance, u as Tree, v as TreeChildren, w as TreeLevelColumn, x as TreeParent, U as Unique, y as UpdateDateColumn, V as VersionColumn, z as ViewColumn, F as ViewEntity, H as VirtualColumn } from "../vendor/Package.122.mjs";
|
|
88
88
|
|
|
89
|
-
import "../vendor/Package.
|
|
89
|
+
import "../vendor/Package.5.mjs";
|
|
90
90
|
|
|
91
91
|
import "../vendor/Package.13.mjs";
|
|
92
92
|
|
|
@@ -132,6 +132,8 @@ import "../vendor/Package.11.mjs";
|
|
|
132
132
|
|
|
133
133
|
import "url";
|
|
134
134
|
|
|
135
|
+
import "node:util";
|
|
136
|
+
|
|
135
137
|
import "../vendor/Package.63.mjs";
|
|
136
138
|
|
|
137
139
|
import "node:url";
|
package/lakutata.cjs
CHANGED
|
@@ -58,9 +58,9 @@ const h = require("./src/exceptions/DestroyRuntimeContainerException.cjs");
|
|
|
58
58
|
|
|
59
59
|
const A = require("./src/exceptions/InvalidActionPatternDepthException.cjs");
|
|
60
60
|
|
|
61
|
-
const
|
|
61
|
+
const I = require("./src/exceptions/InvalidAssistantFunctionTypeException.cjs");
|
|
62
62
|
|
|
63
|
-
const
|
|
63
|
+
const C = require("./src/exceptions/InvalidObjectTypeException.cjs");
|
|
64
64
|
|
|
65
65
|
const f = require("./src/exceptions/MethodNotFoundException.cjs");
|
|
66
66
|
|
|
@@ -276,6 +276,8 @@ require("./src/components/entrypoint/exceptions/AccessDenyException.cjs");
|
|
|
276
276
|
|
|
277
277
|
require("./src/components/entrypoint/lib/AccessControlRule.cjs");
|
|
278
278
|
|
|
279
|
+
require("./src/components/entrypoint/exceptions/InvalidActionGroupException.cjs");
|
|
280
|
+
|
|
279
281
|
require("./vendor/Package.17.cjs");
|
|
280
282
|
|
|
281
283
|
require("worker_threads");
|
|
@@ -391,8 +393,8 @@ exports.DestroyRuntimeContainerException = h.DestroyRuntimeContainerException;
|
|
|
391
393
|
|
|
392
394
|
exports.InvalidActionPatternDepthException = A.InvalidActionPatternDepthException;
|
|
393
395
|
|
|
394
|
-
exports.InvalidAssistantFunctionTypeException =
|
|
396
|
+
exports.InvalidAssistantFunctionTypeException = I.InvalidAssistantFunctionTypeException;
|
|
395
397
|
|
|
396
|
-
exports.InvalidObjectTypeException =
|
|
398
|
+
exports.InvalidObjectTypeException = C.InvalidObjectTypeException;
|
|
397
399
|
|
|
398
400
|
exports.MethodNotFoundException = f.MethodNotFoundException;
|
package/lakutata.mjs
CHANGED
|
@@ -270,6 +270,8 @@ import "./src/components/entrypoint/exceptions/AccessDenyException.mjs";
|
|
|
270
270
|
|
|
271
271
|
import "./src/components/entrypoint/lib/AccessControlRule.mjs";
|
|
272
272
|
|
|
273
|
+
import "./src/components/entrypoint/exceptions/InvalidActionGroupException.mjs";
|
|
274
|
+
|
|
273
275
|
import "./vendor/Package.17.mjs";
|
|
274
276
|
|
|
275
277
|
import "worker_threads";
|