lakutata 2.0.65 → 2.0.66
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.d.ts +4 -4
- package/com/database.cjs +0 -2
- package/com/database.d.ts +4 -4
- package/com/database.mjs +0 -2
- package/com/docker.d.ts +5 -5
- package/com/entrypoint.d.ts +2 -2
- package/com/logger.d.ts +1 -1
- package/com/monitor.d.ts +2 -2
- package/decorator/asst.d.ts +1 -1
- package/decorator/ctrl.d.ts +4 -4
- package/decorator/di.d.ts +3 -3
- package/decorator/dto.d.ts +3 -3
- package/decorator/orm.cjs +86 -88
- package/decorator/orm.d.ts +51 -75
- package/decorator/orm.mjs +44 -46
- package/helper.d.ts +1 -1
- package/lakutata.d.ts +10 -10
- package/orm.cjs +1075 -112
- package/orm.d.ts +6 -6
- package/orm.mjs +1015 -17
- package/package.json +1 -1
- package/provider/database.cjs +0 -2
- package/provider/database.d.ts +4 -4
- package/provider/database.mjs +0 -2
- package/provider/passwordHash.d.ts +1 -1
- package/src/components/Database.cjs +0 -2
- package/src/components/Database.mjs +0 -2
- package/src/decorators/orm/AfterInsert.cjs +27 -7
- package/src/decorators/orm/AfterInsert.mjs +28 -6
- package/src/decorators/orm/AfterLoad.cjs +27 -7
- package/src/decorators/orm/AfterLoad.mjs +28 -6
- package/src/decorators/orm/AfterRecover.cjs +27 -7
- package/src/decorators/orm/AfterRecover.mjs +28 -6
- package/src/decorators/orm/AfterRemove.cjs +27 -7
- package/src/decorators/orm/AfterRemove.mjs +28 -6
- package/src/decorators/orm/AfterSoftRemove.cjs +27 -7
- package/src/decorators/orm/AfterSoftRemove.mjs +28 -6
- package/src/decorators/orm/AfterUpdate.cjs +27 -7
- package/src/decorators/orm/AfterUpdate.mjs +28 -6
- package/src/decorators/orm/BeforeInsert.cjs +27 -7
- package/src/decorators/orm/BeforeInsert.mjs +28 -6
- package/src/decorators/orm/BeforeRecover.cjs +27 -7
- package/src/decorators/orm/BeforeRecover.mjs +28 -6
- package/src/decorators/orm/BeforeRemove.cjs +27 -7
- package/src/decorators/orm/BeforeRemove.mjs +28 -6
- package/src/decorators/orm/BeforeSoftRemove.cjs +27 -7
- package/src/decorators/orm/BeforeSoftRemove.mjs +28 -6
- package/src/decorators/orm/BeforeUpdate.cjs +27 -7
- package/src/decorators/orm/BeforeUpdate.mjs +28 -6
- package/src/decorators/orm/Check.cjs +30 -7
- package/src/decorators/orm/Check.mjs +31 -6
- package/src/decorators/orm/ChildEntity.cjs +30 -7
- package/src/decorators/orm/ChildEntity.mjs +31 -6
- package/src/decorators/orm/Column.cjs +62 -7
- package/src/decorators/orm/Column.mjs +63 -6
- package/src/decorators/orm/CreateDateColumn.cjs +26 -7
- package/src/decorators/orm/CreateDateColumn.mjs +27 -6
- package/src/decorators/orm/DeleteDateColumn.cjs +26 -7
- package/src/decorators/orm/DeleteDateColumn.mjs +27 -6
- package/src/decorators/orm/Entity.cjs +36 -7
- package/src/decorators/orm/Entity.mjs +37 -6
- package/src/decorators/orm/EventSubscriber.cjs +23 -7
- package/src/decorators/orm/EventSubscriber.mjs +24 -6
- package/src/decorators/orm/Exclusion.cjs +30 -7
- package/src/decorators/orm/Exclusion.mjs +31 -6
- package/src/decorators/orm/Generated.cjs +25 -7
- package/src/decorators/orm/Generated.mjs +26 -6
- package/src/decorators/orm/Index.cjs +42 -7
- package/src/decorators/orm/Index.mjs +43 -6
- package/src/decorators/orm/JoinColumn.cjs +30 -7
- package/src/decorators/orm/JoinColumn.mjs +31 -6
- package/src/decorators/orm/JoinTable.cjs +31 -7
- package/src/decorators/orm/JoinTable.mjs +32 -6
- package/src/decorators/orm/ManyToMany.cjs +43 -7
- package/src/decorators/orm/ManyToMany.mjs +44 -6
- package/src/decorators/orm/ManyToOne.cjs +43 -7
- package/src/decorators/orm/ManyToOne.mjs +44 -6
- package/src/decorators/orm/ObjectIdColumn.cjs +29 -7
- package/src/decorators/orm/ObjectIdColumn.mjs +30 -6
- package/src/decorators/orm/OneToMany.cjs +35 -7
- package/src/decorators/orm/OneToMany.mjs +36 -6
- package/src/decorators/orm/OneToOne.cjs +43 -7
- package/src/decorators/orm/OneToOne.mjs +44 -6
- package/src/decorators/orm/PrimaryColumn.cjs +50 -7
- package/src/decorators/orm/PrimaryColumn.mjs +51 -6
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +55 -7
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +56 -6
- package/src/decorators/orm/RelationId.cjs +27 -7
- package/src/decorators/orm/RelationId.mjs +28 -6
- package/src/decorators/orm/TableInheritance.cjs +27 -7
- package/src/decorators/orm/TableInheritance.mjs +28 -6
- package/src/decorators/orm/Tree.cjs +25 -7
- package/src/decorators/orm/Tree.mjs +26 -6
- package/src/decorators/orm/TreeChildren.cjs +32 -7
- package/src/decorators/orm/TreeChildren.mjs +33 -6
- package/src/decorators/orm/TreeLevelColumn.cjs +26 -7
- package/src/decorators/orm/TreeLevelColumn.mjs +27 -6
- package/src/decorators/orm/TreeParent.cjs +32 -7
- package/src/decorators/orm/TreeParent.mjs +33 -6
- package/src/decorators/orm/Unique.cjs +45 -7
- package/src/decorators/orm/Unique.mjs +46 -6
- package/src/decorators/orm/UpdateDateColumn.cjs +26 -7
- package/src/decorators/orm/UpdateDateColumn.mjs +27 -6
- package/src/decorators/orm/VersionColumn.cjs +26 -7
- package/src/decorators/orm/VersionColumn.mjs +27 -6
- package/src/decorators/orm/ViewColumn.cjs +26 -7
- package/src/decorators/orm/ViewColumn.mjs +27 -6
- package/src/decorators/orm/ViewEntity.cjs +35 -7
- package/src/decorators/orm/ViewEntity.mjs +36 -6
- package/src/decorators/orm/VirtualColumn.cjs +43 -7
- package/src/decorators/orm/VirtualColumn.mjs +44 -6
- package/src/providers/Database.cjs +0 -2
- package/src/providers/Database.mjs +0 -2
- package/vendor/Package.122.cjs +13223 -16706
- package/vendor/Package.122.mjs +13498 -16881
- package/vendor/Package.19.cjs +184 -195
- package/vendor/Package.19.mjs +1 -1
- package/vendor/TypeDef.internal.1.d.ts +1 -1
- package/vendor/TypeDef.internal.10.d.ts +1 -1
- package/vendor/TypeDef.internal.11.d.ts +2 -2
- package/vendor/TypeDef.internal.12.d.ts +2 -2
- package/vendor/TypeDef.internal.13.d.ts +6 -6
- package/vendor/TypeDef.internal.3.d.ts +3 -3
- package/vendor/TypeDef.internal.4.d.ts +181 -347
- package/vendor/TypeDef.internal.5.d.ts +2 -2
- package/vendor/TypeDef.internal.6.d.ts +2 -2
- package/vendor/TypeDef.internal.7.d.ts +1 -1
- package/vendor/TypeDef.internal.8.d.ts +1 -1
- package/vendor/TypeDef.internal.9.d.ts +1 -1
package/decorator/orm.mjs
CHANGED
|
@@ -1,93 +1,93 @@
|
|
|
1
1
|
import "../vendor/Package.4.mjs";
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
export { AfterRecover } from "../src/decorators/orm/AfterRecover.mjs";
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
export { AfterRemove } from "../src/decorators/orm/AfterRemove.mjs";
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
export { AfterInsert } from "../src/decorators/orm/AfterInsert.mjs";
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
export { AfterLoad } from "../src/decorators/orm/AfterLoad.mjs";
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
export { AfterSoftRemove } from "../src/decorators/orm/AfterSoftRemove.mjs";
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
export { AfterUpdate } from "../src/decorators/orm/AfterUpdate.mjs";
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
export { BeforeInsert } from "../src/decorators/orm/BeforeInsert.mjs";
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
export { BeforeRecover } from "../src/decorators/orm/BeforeRecover.mjs";
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
export { BeforeRemove } from "../src/decorators/orm/BeforeRemove.mjs";
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
export { BeforeSoftRemove } from "../src/decorators/orm/BeforeSoftRemove.mjs";
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
export { BeforeUpdate } from "../src/decorators/orm/BeforeUpdate.mjs";
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
export { Check } from "../src/decorators/orm/Check.mjs";
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
export { ChildEntity } from "../src/decorators/orm/ChildEntity.mjs";
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
export { Column } from "../src/decorators/orm/Column.mjs";
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
export { CreateDateColumn } from "../src/decorators/orm/CreateDateColumn.mjs";
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
export { DeleteDateColumn } from "../src/decorators/orm/DeleteDateColumn.mjs";
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
export { Entity } from "../src/decorators/orm/Entity.mjs";
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
export { EventSubscriber } from "../src/decorators/orm/EventSubscriber.mjs";
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
export { Exclusion } from "../src/decorators/orm/Exclusion.mjs";
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
export { Generated } from "../src/decorators/orm/Generated.mjs";
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
export { Index } from "../src/decorators/orm/Index.mjs";
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
export { JoinColumn } from "../src/decorators/orm/JoinColumn.mjs";
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
export { JoinTable } from "../src/decorators/orm/JoinTable.mjs";
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
export { ManyToMany } from "../src/decorators/orm/ManyToMany.mjs";
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
export { ManyToOne } from "../src/decorators/orm/ManyToOne.mjs";
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
export { ObjectIdColumn } from "../src/decorators/orm/ObjectIdColumn.mjs";
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
export { OneToMany } from "../src/decorators/orm/OneToMany.mjs";
|
|
56
56
|
|
|
57
|
-
|
|
57
|
+
export { OneToOne } from "../src/decorators/orm/OneToOne.mjs";
|
|
58
58
|
|
|
59
|
-
|
|
59
|
+
export { PrimaryColumn } from "../src/decorators/orm/PrimaryColumn.mjs";
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
export { PrimaryGeneratedColumn } from "../src/decorators/orm/PrimaryGeneratedColumn.mjs";
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
export { RelationId } from "../src/decorators/orm/RelationId.mjs";
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
export { TableInheritance } from "../src/decorators/orm/TableInheritance.mjs";
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
export { Tree } from "../src/decorators/orm/Tree.mjs";
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
export { TreeChildren } from "../src/decorators/orm/TreeChildren.mjs";
|
|
70
70
|
|
|
71
|
-
|
|
71
|
+
export { TreeLevelColumn } from "../src/decorators/orm/TreeLevelColumn.mjs";
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
export { TreeParent } from "../src/decorators/orm/TreeParent.mjs";
|
|
74
74
|
|
|
75
|
-
|
|
75
|
+
export { Unique } from "../src/decorators/orm/Unique.mjs";
|
|
76
76
|
|
|
77
|
-
|
|
77
|
+
export { UpdateDateColumn } from "../src/decorators/orm/UpdateDateColumn.mjs";
|
|
78
78
|
|
|
79
|
-
|
|
79
|
+
export { VersionColumn } from "../src/decorators/orm/VersionColumn.mjs";
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
export { ViewColumn } from "../src/decorators/orm/ViewColumn.mjs";
|
|
82
82
|
|
|
83
|
-
|
|
83
|
+
export { ViewEntity } from "../src/decorators/orm/ViewEntity.mjs";
|
|
84
84
|
|
|
85
|
-
|
|
86
|
-
|
|
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";
|
|
85
|
+
export { VirtualColumn } from "../src/decorators/orm/VirtualColumn.mjs";
|
|
88
86
|
|
|
89
87
|
import "../vendor/Package.5.mjs";
|
|
90
88
|
|
|
89
|
+
import "../vendor/Package.122.mjs";
|
|
90
|
+
|
|
91
91
|
import "../vendor/Package.13.mjs";
|
|
92
92
|
|
|
93
93
|
import "../vendor/Package.1.mjs";
|
|
@@ -132,8 +132,6 @@ import "../vendor/Package.11.mjs";
|
|
|
132
132
|
|
|
133
133
|
import "url";
|
|
134
134
|
|
|
135
|
-
import "node:util";
|
|
136
|
-
|
|
137
135
|
import "../vendor/Package.63.mjs";
|
|
138
136
|
|
|
139
137
|
import "node:url";
|
package/helper.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import './vendor/TypeDef.internal.2.js';
|
|
3
3
|
import { PathLike } from 'fs';
|
|
4
|
-
import {
|
|
4
|
+
import { IConstructor } from './vendor/TypeDef.internal.9.js';
|
|
5
5
|
import { PathLike as PathLike$1, Dirent, Stats } from 'node:fs';
|
|
6
6
|
import { ReadableOptions, Readable } from 'node:stream';
|
|
7
7
|
import { win32, posix } from 'node:path';
|
package/lakutata.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import './vendor/TypeDef.internal.2.js';
|
|
2
|
-
import {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
import {
|
|
6
|
-
export {
|
|
2
|
+
import { Exception } from './vendor/TypeDef.internal.7.js';
|
|
3
|
+
export { DTO, JSONSchema } from './vendor/TypeDef.internal.5.js';
|
|
4
|
+
export { Time } from './vendor/TypeDef.internal.1.js';
|
|
5
|
+
import { ModuleOptions as ModuleOptions$1, ModuleConfigLoader, LoadObjectOptions, BaseObject, ConstructorOptions, event, ListenerFn, EventAndListener, Module, Provider } from './vendor/TypeDef.internal.3.js';
|
|
6
|
+
export { Component, Container, IBaseObjectConstructor, LoadAnonymousObjectOptions, LoadNamedObjectOptions, ModuleLoadObjectsOptions, OverridableNamedObjectOptions, OverridableObjectOptions } from './vendor/TypeDef.internal.3.js';
|
|
7
7
|
import { Logger } from './com/logger.js';
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
8
|
+
export { ActionPattern, IPatRun } from './vendor/TypeDef.internal.10.js';
|
|
9
|
+
export { ClassDecorator, PropertyDecorator } from './vendor/TypeDef.internal.11.js';
|
|
10
|
+
export { MethodDecorator } from './vendor/TypeDef.internal.8.js';
|
|
11
|
+
export { BaseComponentOptions, ComponentOptions, ComponentOptionsBuilder } from './vendor/TypeDef.internal.6.js';
|
|
12
|
+
export { IConstructor } from './vendor/TypeDef.internal.9.js';
|
|
13
13
|
|
|
14
14
|
declare class ApplicationOptions extends ModuleOptions$1 {
|
|
15
15
|
/**
|