lakutata 2.0.22 → 2.0.24
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 +7 -5
- package/com/database.mjs +7 -5
- package/com/docker.cjs +5 -5
- package/com/docker.d.ts +147 -6
- package/com/docker.mjs +5 -5
- package/com/entrypoint.d.ts +2 -1
- package/com/logger.cjs +3 -3
- package/com/logger.mjs +3 -3
- package/decorator/orm.cjs +74 -198
- package/decorator/orm.d.ts +4 -4
- package/decorator/orm.mjs +6 -4
- package/helper.d.ts +32 -2
- package/lakutata.cjs +3 -3
- package/lakutata.d.ts +3 -2
- package/lakutata.mjs +3 -3
- package/orm.cjs +267 -275
- package/orm.d.ts +62 -15
- package/orm.mjs +200 -233
- package/package.json +1 -1
- package/src/components/Database.cjs +7 -5
- package/src/components/Database.mjs +7 -5
- package/src/components/Logger.cjs +3 -3
- package/src/components/Logger.mjs +3 -3
- package/src/components/docker/ConnectionOptionsBuilder.cjs +5 -5
- package/src/components/docker/ConnectionOptionsBuilder.mjs +5 -5
- package/src/components/docker/Docker.cjs +1432 -1174
- package/src/components/docker/Docker.mjs +1421 -1163
- package/src/components/docker/lib/DockerContainer.cjs +5 -5
- package/src/components/docker/lib/DockerContainer.mjs +5 -5
- package/src/components/docker/lib/DockerContainerTTY.cjs +5 -5
- package/src/components/docker/lib/DockerContainerTTY.mjs +5 -5
- package/src/components/entrypoint/Entrypoint.cjs +1880 -289
- package/src/components/entrypoint/Entrypoint.mjs +1824 -225
- package/src/decorators/orm/AfterInsert.cjs +11 -9
- package/src/decorators/orm/AfterInsert.mjs +10 -10
- package/src/decorators/orm/AfterLoad.cjs +13 -11
- package/src/decorators/orm/AfterLoad.mjs +9 -9
- package/src/decorators/orm/AfterRecover.cjs +13 -11
- package/src/decorators/orm/AfterRecover.mjs +10 -10
- package/src/decorators/orm/AfterRemove.cjs +13 -11
- package/src/decorators/orm/AfterRemove.mjs +14 -14
- package/src/decorators/orm/AfterSoftRemove.cjs +13 -11
- package/src/decorators/orm/AfterSoftRemove.mjs +16 -16
- package/src/decorators/orm/AfterUpdate.cjs +13 -11
- package/src/decorators/orm/AfterUpdate.mjs +13 -13
- package/src/decorators/orm/BeforeInsert.cjs +13 -11
- package/src/decorators/orm/BeforeInsert.mjs +10 -10
- package/src/decorators/orm/BeforeRecover.cjs +13 -11
- package/src/decorators/orm/BeforeRecover.mjs +14 -14
- package/src/decorators/orm/BeforeRemove.cjs +13 -11
- package/src/decorators/orm/BeforeRemove.mjs +10 -10
- package/src/decorators/orm/BeforeSoftRemove.cjs +11 -9
- package/src/decorators/orm/BeforeSoftRemove.mjs +14 -14
- package/src/decorators/orm/BeforeUpdate.cjs +13 -11
- package/src/decorators/orm/BeforeUpdate.mjs +13 -13
- package/src/decorators/orm/Check.cjs +15 -13
- package/src/decorators/orm/Check.mjs +7 -7
- package/src/decorators/orm/ChildEntity.cjs +9 -7
- package/src/decorators/orm/ChildEntity.mjs +7 -7
- package/src/decorators/orm/Column.cjs +27 -25
- package/src/decorators/orm/Column.mjs +15 -15
- package/src/decorators/orm/CreateDateColumn.cjs +12 -10
- package/src/decorators/orm/CreateDateColumn.mjs +14 -14
- package/src/decorators/orm/DeleteDateColumn.cjs +12 -10
- package/src/decorators/orm/DeleteDateColumn.mjs +12 -12
- package/src/decorators/orm/Entity.cjs +15 -13
- package/src/decorators/orm/Entity.mjs +7 -7
- package/src/decorators/orm/EventSubscriber.cjs +11 -9
- package/src/decorators/orm/EventSubscriber.mjs +10 -10
- package/src/decorators/orm/Exclusion.cjs +15 -13
- package/src/decorators/orm/Exclusion.mjs +7 -7
- package/src/decorators/orm/Generated.cjs +9 -7
- package/src/decorators/orm/Generated.mjs +7 -7
- package/src/decorators/orm/Index.cjs +17 -15
- package/src/decorators/orm/Index.mjs +13 -13
- package/src/decorators/orm/JoinColumn.cjs +14 -12
- package/src/decorators/orm/JoinColumn.mjs +18 -18
- package/src/decorators/orm/JoinTable.cjs +13 -11
- package/src/decorators/orm/JoinTable.mjs +10 -10
- package/src/decorators/orm/ManyToMany.cjs +21 -19
- package/src/decorators/orm/ManyToMany.mjs +7 -7
- package/src/decorators/orm/ManyToOne.cjs +18 -16
- package/src/decorators/orm/ManyToOne.mjs +7 -7
- package/src/decorators/orm/ObjectIdColumn.cjs +13 -11
- package/src/decorators/orm/ObjectIdColumn.mjs +7 -7
- package/src/decorators/orm/OneToMany.cjs +21 -19
- package/src/decorators/orm/OneToMany.mjs +14 -14
- package/src/decorators/orm/OneToOne.cjs +21 -19
- package/src/decorators/orm/OneToOne.mjs +7 -7
- package/src/decorators/orm/PrimaryColumn.cjs +20 -18
- package/src/decorators/orm/PrimaryColumn.mjs +7 -7
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +30 -28
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +8 -8
- package/src/decorators/orm/RelationId.cjs +13 -11
- package/src/decorators/orm/RelationId.mjs +9 -9
- package/src/decorators/orm/TableInheritance.cjs +9 -7
- package/src/decorators/orm/TableInheritance.mjs +17 -17
- package/src/decorators/orm/Tree.cjs +13 -11
- package/src/decorators/orm/Tree.mjs +13 -13
- package/src/decorators/orm/TreeChildren.cjs +16 -14
- package/src/decorators/orm/TreeChildren.mjs +17 -17
- package/src/decorators/orm/TreeLevelColumn.cjs +11 -9
- package/src/decorators/orm/TreeLevelColumn.mjs +14 -14
- package/src/decorators/orm/TreeParent.cjs +14 -12
- package/src/decorators/orm/TreeParent.mjs +7 -7
- package/src/decorators/orm/Unique.cjs +21 -19
- package/src/decorators/orm/Unique.mjs +13 -13
- package/src/decorators/orm/UpdateDateColumn.cjs +12 -10
- package/src/decorators/orm/UpdateDateColumn.mjs +13 -13
- package/src/decorators/orm/VersionColumn.cjs +9 -7
- package/src/decorators/orm/VersionColumn.mjs +7 -7
- package/src/decorators/orm/ViewColumn.cjs +13 -11
- package/src/decorators/orm/ViewColumn.mjs +7 -7
- package/src/decorators/orm/ViewEntity.cjs +19 -17
- package/src/decorators/orm/ViewEntity.mjs +10 -10
- package/src/decorators/orm/VirtualColumn.cjs +16 -14
- package/src/decorators/orm/VirtualColumn.mjs +7 -7
- package/src/lib/core/Application.cjs +3 -3
- package/src/lib/core/Application.mjs +3 -3
- package/src/lib/helpers/Glob.cjs +631 -616
- package/src/lib/helpers/Glob.mjs +628 -613
- package/src/lib/helpers/IsXML.cjs +428 -419
- package/src/lib/helpers/IsXML.mjs +687 -678
- package/src/lib/helpers/SortArray.cjs +61 -51
- package/src/lib/helpers/SortArray.mjs +60 -50
- package/src/lib/helpers/Templating.cjs +1 -1
- package/src/lib/helpers/Templating.mjs +1 -1
- package/src/lib/ioc/ListModules.cjs +13 -11
- package/src/lib/ioc/ListModules.mjs +13 -11
- package/vendor/Package.12.cjs +5825 -4815
- package/vendor/Package.12.mjs +5746 -4738
- package/vendor/Package.13.cjs +47240 -3
- package/vendor/Package.13.mjs +47176 -3
- package/vendor/Package.14.cjs +4 -72503
- package/vendor/Package.14.mjs +5 -72448
- package/vendor/Package.15.cjs +48246 -5
- package/vendor/Package.15.mjs +48205 -5
- package/vendor/Package.2.cjs +128 -140
- package/vendor/Package.2.mjs +277 -289
- package/vendor/Package.3.cjs +11 -8
- package/vendor/Package.3.mjs +21 -18
- package/vendor/Package.7.cjs +4 -4
- package/vendor/Package.7.mjs +4 -4
- package/vendor/Package.74.cjs +38 -737
- package/vendor/Package.74.mjs +43 -738
- package/vendor/Package.75.cjs +621 -0
- package/vendor/Package.75.mjs +617 -0
- package/vendor/TypeDef.13.d.ts +2 -1
- package/vendor/TypeDef.3.d.ts +21 -1
- package/vendor/TypeDef.4.d.ts +329 -210
- package/vendor/TypeDef.5.d.ts +6 -1
- package/vendor/Package.16.cjs +0 -51902
- package/vendor/Package.16.mjs +0 -51859
package/decorator/orm.cjs
CHANGED
|
@@ -10,63 +10,63 @@ const e = require("../src/decorators/orm/AfterRecover.cjs");
|
|
|
10
10
|
|
|
11
11
|
const r = require("../src/decorators/orm/AfterRemove.cjs");
|
|
12
12
|
|
|
13
|
-
const
|
|
13
|
+
const o = require("../src/decorators/orm/AfterInsert.cjs");
|
|
14
14
|
|
|
15
|
-
const
|
|
15
|
+
const s = require("../src/decorators/orm/AfterLoad.cjs");
|
|
16
16
|
|
|
17
|
-
const
|
|
17
|
+
const t = require("../src/decorators/orm/AfterSoftRemove.cjs");
|
|
18
18
|
|
|
19
19
|
const c = require("../src/decorators/orm/AfterUpdate.cjs");
|
|
20
20
|
|
|
21
|
-
const
|
|
21
|
+
const n = require("../src/decorators/orm/BeforeInsert.cjs");
|
|
22
22
|
|
|
23
|
-
const
|
|
23
|
+
const a = require("../src/decorators/orm/BeforeRecover.cjs");
|
|
24
24
|
|
|
25
|
-
const
|
|
25
|
+
const i = require("../src/decorators/orm/BeforeRemove.cjs");
|
|
26
26
|
|
|
27
|
-
const
|
|
27
|
+
const u = require("../src/decorators/orm/BeforeSoftRemove.cjs");
|
|
28
28
|
|
|
29
29
|
const m = require("../src/decorators/orm/BeforeUpdate.cjs");
|
|
30
30
|
|
|
31
31
|
const d = require("../src/decorators/orm/Check.cjs");
|
|
32
32
|
|
|
33
|
-
const
|
|
33
|
+
const q = require("../src/decorators/orm/ChildEntity.cjs");
|
|
34
34
|
|
|
35
|
-
const
|
|
35
|
+
const l = require("../src/decorators/orm/Column.cjs");
|
|
36
36
|
|
|
37
|
-
const
|
|
37
|
+
const p = require("../src/decorators/orm/CreateDateColumn.cjs");
|
|
38
38
|
|
|
39
|
-
const
|
|
39
|
+
const j = require("../src/decorators/orm/DeleteDateColumn.cjs");
|
|
40
40
|
|
|
41
|
-
const
|
|
41
|
+
const x = require("../src/decorators/orm/Entity.cjs");
|
|
42
42
|
|
|
43
|
-
const
|
|
43
|
+
const C = require("../src/decorators/orm/EventSubscriber.cjs");
|
|
44
44
|
|
|
45
|
-
const
|
|
45
|
+
const f = require("../src/decorators/orm/Exclusion.cjs");
|
|
46
46
|
|
|
47
|
-
const
|
|
47
|
+
const v = require("../src/decorators/orm/Generated.cjs");
|
|
48
48
|
|
|
49
|
-
const
|
|
49
|
+
const y = require("../src/decorators/orm/Index.cjs");
|
|
50
50
|
|
|
51
|
-
const
|
|
51
|
+
const T = require("../src/decorators/orm/JoinColumn.cjs");
|
|
52
52
|
|
|
53
|
-
const
|
|
53
|
+
const P = require("../src/decorators/orm/JoinTable.cjs");
|
|
54
54
|
|
|
55
|
-
const
|
|
55
|
+
const R = require("../src/decorators/orm/ManyToMany.cjs");
|
|
56
56
|
|
|
57
|
-
const
|
|
57
|
+
const b = require("../src/decorators/orm/ManyToOne.cjs");
|
|
58
58
|
|
|
59
|
-
const
|
|
59
|
+
const A = require("../src/decorators/orm/ObjectIdColumn.cjs");
|
|
60
60
|
|
|
61
|
-
const
|
|
61
|
+
const I = require("../src/decorators/orm/OneToMany.cjs");
|
|
62
62
|
|
|
63
|
-
const
|
|
63
|
+
const O = require("../src/decorators/orm/OneToOne.cjs");
|
|
64
64
|
|
|
65
|
-
const
|
|
65
|
+
const B = require("../src/decorators/orm/PrimaryColumn.cjs");
|
|
66
66
|
|
|
67
|
-
const
|
|
67
|
+
const E = require("../src/decorators/orm/PrimaryGeneratedColumn.cjs");
|
|
68
68
|
|
|
69
|
-
const
|
|
69
|
+
const g = require("../src/decorators/orm/RelationId.cjs");
|
|
70
70
|
|
|
71
71
|
const h = require("../src/decorators/orm/TableInheritance.cjs");
|
|
72
72
|
|
|
@@ -92,7 +92,7 @@ const L = require("../src/decorators/orm/VirtualColumn.cjs");
|
|
|
92
92
|
|
|
93
93
|
require("../vendor/Package.5.cjs");
|
|
94
94
|
|
|
95
|
-
require("../vendor/Package.
|
|
95
|
+
require("../vendor/Package.13.cjs");
|
|
96
96
|
|
|
97
97
|
require("../vendor/Package.8.cjs");
|
|
98
98
|
|
|
@@ -116,13 +116,13 @@ require("crypto");
|
|
|
116
116
|
|
|
117
117
|
require("../vendor/Package.74.cjs");
|
|
118
118
|
|
|
119
|
-
require("../vendor/Package.13.cjs");
|
|
120
|
-
|
|
121
119
|
require("module");
|
|
122
120
|
|
|
121
|
+
require("tty");
|
|
122
|
+
|
|
123
123
|
require("buffer");
|
|
124
124
|
|
|
125
|
-
require("
|
|
125
|
+
require("fs/promises");
|
|
126
126
|
|
|
127
127
|
require("../vendor/Package.6.cjs");
|
|
128
128
|
|
|
@@ -130,6 +130,8 @@ require("url");
|
|
|
130
130
|
|
|
131
131
|
require("util");
|
|
132
132
|
|
|
133
|
+
require("../vendor/Package.75.cjs");
|
|
134
|
+
|
|
133
135
|
require("../vendor/Package.73.cjs");
|
|
134
136
|
|
|
135
137
|
require("node:url");
|
|
@@ -146,212 +148,86 @@ require("node:stream");
|
|
|
146
148
|
|
|
147
149
|
require("node:string_decoder");
|
|
148
150
|
|
|
149
|
-
|
|
150
|
-
enumerable: true,
|
|
151
|
-
get: () => e.AfterRecover
|
|
152
|
-
});
|
|
151
|
+
exports.AfterRecover = e.AfterRecover;
|
|
153
152
|
|
|
154
|
-
|
|
155
|
-
enumerable: true,
|
|
156
|
-
get: () => r.AfterRemove
|
|
157
|
-
});
|
|
153
|
+
exports.AfterRemove = r.AfterRemove;
|
|
158
154
|
|
|
159
|
-
|
|
160
|
-
enumerable: true,
|
|
161
|
-
get: () => t.AfterInsert
|
|
162
|
-
});
|
|
155
|
+
exports.AfterInsert = o.AfterInsert;
|
|
163
156
|
|
|
164
|
-
|
|
165
|
-
enumerable: true,
|
|
166
|
-
get: () => o.AfterLoad
|
|
167
|
-
});
|
|
157
|
+
exports.AfterLoad = s.AfterLoad;
|
|
168
158
|
|
|
169
|
-
|
|
170
|
-
enumerable: true,
|
|
171
|
-
get: () => n.AfterSoftRemove
|
|
172
|
-
});
|
|
159
|
+
exports.AfterSoftRemove = t.AfterSoftRemove;
|
|
173
160
|
|
|
174
|
-
|
|
175
|
-
enumerable: true,
|
|
176
|
-
get: () => c.AfterUpdate
|
|
177
|
-
});
|
|
161
|
+
exports.AfterUpdate = c.AfterUpdate;
|
|
178
162
|
|
|
179
|
-
|
|
180
|
-
enumerable: true,
|
|
181
|
-
get: () => s.BeforeInsert
|
|
182
|
-
});
|
|
163
|
+
exports.BeforeInsert = n.BeforeInsert;
|
|
183
164
|
|
|
184
|
-
|
|
185
|
-
enumerable: true,
|
|
186
|
-
get: () => u.BeforeRecover
|
|
187
|
-
});
|
|
165
|
+
exports.BeforeRecover = a.BeforeRecover;
|
|
188
166
|
|
|
189
|
-
|
|
190
|
-
enumerable: true,
|
|
191
|
-
get: () => a.BeforeRemove
|
|
192
|
-
});
|
|
167
|
+
exports.BeforeRemove = i.BeforeRemove;
|
|
193
168
|
|
|
194
|
-
|
|
195
|
-
enumerable: true,
|
|
196
|
-
get: () => i.BeforeSoftRemove
|
|
197
|
-
});
|
|
169
|
+
exports.BeforeSoftRemove = u.BeforeSoftRemove;
|
|
198
170
|
|
|
199
|
-
|
|
200
|
-
enumerable: true,
|
|
201
|
-
get: () => m.BeforeUpdate
|
|
202
|
-
});
|
|
171
|
+
exports.BeforeUpdate = m.BeforeUpdate;
|
|
203
172
|
|
|
204
|
-
|
|
205
|
-
enumerable: true,
|
|
206
|
-
get: () => d.Check
|
|
207
|
-
});
|
|
173
|
+
exports.Check = d.Check;
|
|
208
174
|
|
|
209
|
-
|
|
210
|
-
enumerable: true,
|
|
211
|
-
get: () => l.ChildEntity
|
|
212
|
-
});
|
|
175
|
+
exports.ChildEntity = q.ChildEntity;
|
|
213
176
|
|
|
214
|
-
|
|
215
|
-
enumerable: true,
|
|
216
|
-
get: () => b.Column
|
|
217
|
-
});
|
|
177
|
+
exports.Column = l.Column;
|
|
218
178
|
|
|
219
|
-
|
|
220
|
-
enumerable: true,
|
|
221
|
-
get: () => j.CreateDateColumn
|
|
222
|
-
});
|
|
179
|
+
exports.CreateDateColumn = p.CreateDateColumn;
|
|
223
180
|
|
|
224
|
-
|
|
225
|
-
enumerable: true,
|
|
226
|
-
get: () => p.DeleteDateColumn
|
|
227
|
-
});
|
|
181
|
+
exports.DeleteDateColumn = j.DeleteDateColumn;
|
|
228
182
|
|
|
229
|
-
|
|
230
|
-
enumerable: true,
|
|
231
|
-
get: () => f.Entity
|
|
232
|
-
});
|
|
183
|
+
exports.Entity = x.Entity;
|
|
233
184
|
|
|
234
|
-
|
|
235
|
-
enumerable: true,
|
|
236
|
-
get: () => q.EventSubscriber
|
|
237
|
-
});
|
|
185
|
+
exports.EventSubscriber = C.EventSubscriber;
|
|
238
186
|
|
|
239
|
-
|
|
240
|
-
enumerable: true,
|
|
241
|
-
get: () => y.Exclusion
|
|
242
|
-
});
|
|
187
|
+
exports.Exclusion = f.Exclusion;
|
|
243
188
|
|
|
244
|
-
|
|
245
|
-
enumerable: true,
|
|
246
|
-
get: () => P.Generated
|
|
247
|
-
});
|
|
189
|
+
exports.Generated = v.Generated;
|
|
248
190
|
|
|
249
|
-
|
|
250
|
-
enumerable: true,
|
|
251
|
-
get: () => O.Index
|
|
252
|
-
});
|
|
191
|
+
exports.Index = y.Index;
|
|
253
192
|
|
|
254
|
-
|
|
255
|
-
enumerable: true,
|
|
256
|
-
get: () => g.JoinColumn
|
|
257
|
-
});
|
|
193
|
+
exports.JoinColumn = T.JoinColumn;
|
|
258
194
|
|
|
259
|
-
|
|
260
|
-
enumerable: true,
|
|
261
|
-
get: () => x.JoinTable
|
|
262
|
-
});
|
|
195
|
+
exports.JoinTable = P.JoinTable;
|
|
263
196
|
|
|
264
|
-
|
|
265
|
-
enumerable: true,
|
|
266
|
-
get: () => C.ManyToMany
|
|
267
|
-
});
|
|
197
|
+
exports.ManyToMany = R.ManyToMany;
|
|
268
198
|
|
|
269
|
-
|
|
270
|
-
enumerable: true,
|
|
271
|
-
get: () => v.ManyToOne
|
|
272
|
-
});
|
|
199
|
+
exports.ManyToOne = b.ManyToOne;
|
|
273
200
|
|
|
274
|
-
|
|
275
|
-
enumerable: true,
|
|
276
|
-
get: () => T.ObjectIdColumn
|
|
277
|
-
});
|
|
201
|
+
exports.ObjectIdColumn = A.ObjectIdColumn;
|
|
278
202
|
|
|
279
|
-
|
|
280
|
-
enumerable: true,
|
|
281
|
-
get: () => R.OneToMany
|
|
282
|
-
});
|
|
203
|
+
exports.OneToMany = I.OneToMany;
|
|
283
204
|
|
|
284
|
-
|
|
285
|
-
enumerable: true,
|
|
286
|
-
get: () => A.OneToOne
|
|
287
|
-
});
|
|
205
|
+
exports.OneToOne = O.OneToOne;
|
|
288
206
|
|
|
289
|
-
|
|
290
|
-
enumerable: true,
|
|
291
|
-
get: () => I.PrimaryColumn
|
|
292
|
-
});
|
|
207
|
+
exports.PrimaryColumn = B.PrimaryColumn;
|
|
293
208
|
|
|
294
|
-
|
|
295
|
-
enumerable: true,
|
|
296
|
-
get: () => B.PrimaryGeneratedColumn
|
|
297
|
-
});
|
|
209
|
+
exports.PrimaryGeneratedColumn = E.PrimaryGeneratedColumn;
|
|
298
210
|
|
|
299
|
-
|
|
300
|
-
enumerable: true,
|
|
301
|
-
get: () => E.RelationId
|
|
302
|
-
});
|
|
211
|
+
exports.RelationId = g.RelationId;
|
|
303
212
|
|
|
304
|
-
|
|
305
|
-
enumerable: true,
|
|
306
|
-
get: () => h.TableInheritance
|
|
307
|
-
});
|
|
213
|
+
exports.TableInheritance = h.TableInheritance;
|
|
308
214
|
|
|
309
|
-
|
|
310
|
-
enumerable: true,
|
|
311
|
-
get: () => k.Tree
|
|
312
|
-
});
|
|
215
|
+
exports.Tree = k.Tree;
|
|
313
216
|
|
|
314
|
-
|
|
315
|
-
enumerable: true,
|
|
316
|
-
get: () => M.TreeChildren
|
|
317
|
-
});
|
|
217
|
+
exports.TreeChildren = M.TreeChildren;
|
|
318
218
|
|
|
319
|
-
|
|
320
|
-
enumerable: true,
|
|
321
|
-
get: () => D.TreeLevelColumn
|
|
322
|
-
});
|
|
219
|
+
exports.TreeLevelColumn = D.TreeLevelColumn;
|
|
323
220
|
|
|
324
|
-
|
|
325
|
-
enumerable: true,
|
|
326
|
-
get: () => U.TreeParent
|
|
327
|
-
});
|
|
221
|
+
exports.TreeParent = U.TreeParent;
|
|
328
222
|
|
|
329
|
-
|
|
330
|
-
enumerable: true,
|
|
331
|
-
get: () => V.Unique
|
|
332
|
-
});
|
|
223
|
+
exports.Unique = V.Unique;
|
|
333
224
|
|
|
334
|
-
|
|
335
|
-
enumerable: true,
|
|
336
|
-
get: () => S.UpdateDateColumn
|
|
337
|
-
});
|
|
225
|
+
exports.UpdateDateColumn = S.UpdateDateColumn;
|
|
338
226
|
|
|
339
|
-
|
|
340
|
-
enumerable: true,
|
|
341
|
-
get: () => w.VersionColumn
|
|
342
|
-
});
|
|
227
|
+
exports.VersionColumn = w.VersionColumn;
|
|
343
228
|
|
|
344
|
-
|
|
345
|
-
enumerable: true,
|
|
346
|
-
get: () => G.ViewColumn
|
|
347
|
-
});
|
|
229
|
+
exports.ViewColumn = G.ViewColumn;
|
|
348
230
|
|
|
349
|
-
|
|
350
|
-
enumerable: true,
|
|
351
|
-
get: () => J.ViewEntity
|
|
352
|
-
});
|
|
231
|
+
exports.ViewEntity = J.ViewEntity;
|
|
353
232
|
|
|
354
|
-
|
|
355
|
-
enumerable: true,
|
|
356
|
-
get: () => L.VirtualColumn
|
|
357
|
-
});
|
|
233
|
+
exports.VirtualColumn = L.VirtualColumn;
|
package/decorator/orm.d.ts
CHANGED
|
@@ -505,13 +505,13 @@ declare function ManyToOne<T>(typeFunctionOrTarget: string | ((type?: any) => Ob
|
|
|
505
505
|
declare function OneToMany<T>(typeFunctionOrTarget: string | ((type?: any) => ObjectType<T>), inverseSide: string | ((object: T) => any), options?: RelationOptions): PropertyDecorator;
|
|
506
506
|
|
|
507
507
|
/**
|
|
508
|
-
* One-to-one relation allows
|
|
509
|
-
* Entity1 is
|
|
508
|
+
* One-to-one relation allows the creation of a direct relation between two entities. Entity1 has only one Entity2.
|
|
509
|
+
* Entity1 is the owner of the relationship, and stores Entity2 id on its own side.
|
|
510
510
|
*/
|
|
511
511
|
declare function OneToOne<T>(typeFunctionOrTarget: string | ((type?: any) => ObjectType<T>), options?: RelationOptions): PropertyDecorator;
|
|
512
512
|
/**
|
|
513
|
-
* One-to-one relation allows
|
|
514
|
-
* Entity1 is
|
|
513
|
+
* One-to-one relation allows the creation of a direct relation between two entities. Entity1 has only one Entity2.
|
|
514
|
+
* Entity1 is the owner of the relationship, and stores Entity2 id on its own side.
|
|
515
515
|
*/
|
|
516
516
|
declare function OneToOne<T>(typeFunctionOrTarget: string | ((type?: any) => ObjectType<T>), inverseSide?: string | ((object: T) => any), options?: RelationOptions): PropertyDecorator;
|
|
517
517
|
|
package/decorator/orm.mjs
CHANGED
|
@@ -86,7 +86,7 @@ export { VirtualColumn } from "../src/decorators/orm/VirtualColumn.mjs";
|
|
|
86
86
|
|
|
87
87
|
import "../vendor/Package.5.mjs";
|
|
88
88
|
|
|
89
|
-
import "../vendor/Package.
|
|
89
|
+
import "../vendor/Package.13.mjs";
|
|
90
90
|
|
|
91
91
|
import "../vendor/Package.8.mjs";
|
|
92
92
|
|
|
@@ -110,13 +110,13 @@ import "crypto";
|
|
|
110
110
|
|
|
111
111
|
import "../vendor/Package.74.mjs";
|
|
112
112
|
|
|
113
|
-
import "../vendor/Package.13.mjs";
|
|
114
|
-
|
|
115
113
|
import "module";
|
|
116
114
|
|
|
115
|
+
import "tty";
|
|
116
|
+
|
|
117
117
|
import "buffer";
|
|
118
118
|
|
|
119
|
-
import "
|
|
119
|
+
import "fs/promises";
|
|
120
120
|
|
|
121
121
|
import "../vendor/Package.6.mjs";
|
|
122
122
|
|
|
@@ -124,6 +124,8 @@ import "url";
|
|
|
124
124
|
|
|
125
125
|
import "util";
|
|
126
126
|
|
|
127
|
+
import "../vendor/Package.75.mjs";
|
|
128
|
+
|
|
127
129
|
import "../vendor/Package.73.mjs";
|
|
128
130
|
|
|
129
131
|
import "node:url";
|
package/helper.d.ts
CHANGED
|
@@ -655,7 +655,7 @@ declare namespace Minipass {
|
|
|
655
655
|
* Utility type to determine allowed options based on read type
|
|
656
656
|
*/
|
|
657
657
|
export type Options<T> = ObjectModeOptions | (T extends string ? EncodingOptions : T extends Buffer ? BufferOptions : SharedOptions);
|
|
658
|
-
export {
|
|
658
|
+
export {};
|
|
659
659
|
}
|
|
660
660
|
/**
|
|
661
661
|
* Main export, the Minipass class
|
|
@@ -1055,6 +1055,20 @@ declare namespace LRUCache {
|
|
|
1055
1055
|
* {@link OptionsBase.disposeAfter} options.
|
|
1056
1056
|
*/
|
|
1057
1057
|
type Disposer<K, V> = (value: V, key: K, reason: DisposeReason) => void;
|
|
1058
|
+
/**
|
|
1059
|
+
* The reason why an item was added to the cache, passed
|
|
1060
|
+
* to the {@link Inserter} methods.
|
|
1061
|
+
*
|
|
1062
|
+
* - `add`: the item was not found in the cache, and was added
|
|
1063
|
+
* - `update`: the item was in the cache, with the same value provided
|
|
1064
|
+
* - `replace`: the item was in the cache, and replaced
|
|
1065
|
+
*/
|
|
1066
|
+
type InsertReason = 'add' | 'update' | 'replace';
|
|
1067
|
+
/**
|
|
1068
|
+
* A method called upon item insertion, passed as the
|
|
1069
|
+
* {@link OptionsBase.insert}
|
|
1070
|
+
*/
|
|
1071
|
+
type Inserter<K, V> = (value: V, key: K, reason: InsertReason) => void;
|
|
1058
1072
|
/**
|
|
1059
1073
|
* A function that returns the effective calculated size
|
|
1060
1074
|
* of an entry in the cache.
|
|
@@ -1535,6 +1549,17 @@ declare namespace LRUCache {
|
|
|
1535
1549
|
* `cache.clear()`, or `cache.set(key, undefined)`.
|
|
1536
1550
|
*/
|
|
1537
1551
|
dispose?: Disposer<K, V>;
|
|
1552
|
+
/**
|
|
1553
|
+
* Function that is called when new items are inserted into the cache,
|
|
1554
|
+
* as `onInsert(value, key, reason)`.
|
|
1555
|
+
*
|
|
1556
|
+
* This can be useful if you need to perform actions when an item is
|
|
1557
|
+
* added, such as logging or tracking insertions.
|
|
1558
|
+
*
|
|
1559
|
+
* Unlike some other options, this may _not_ be overridden by passing
|
|
1560
|
+
* an option to `set()`, for performance and consistency reasons.
|
|
1561
|
+
*/
|
|
1562
|
+
onInsert?: Inserter<K, V>;
|
|
1538
1563
|
/**
|
|
1539
1564
|
* The same as {@link OptionsBase.dispose}, but called *after* the entry
|
|
1540
1565
|
* is completely removed and the cache is once again in a clean state.
|
|
@@ -1936,6 +1961,10 @@ declare class LRUCache<K extends {}, V extends {}, FC = unknown> {
|
|
|
1936
1961
|
* {@link LRUCache.OptionsBase.dispose} (read-only)
|
|
1937
1962
|
*/
|
|
1938
1963
|
get dispose(): LRUCache.Disposer<K, V> | undefined;
|
|
1964
|
+
/**
|
|
1965
|
+
* {@link LRUCache.OptionsBase.onInsert} (read-only)
|
|
1966
|
+
*/
|
|
1967
|
+
get onInsert(): LRUCache.Inserter<K, V> | undefined;
|
|
1939
1968
|
/**
|
|
1940
1969
|
* {@link LRUCache.OptionsBase.disposeAfter} (read-only)
|
|
1941
1970
|
*/
|
|
@@ -4350,4 +4379,5 @@ declare function SHA1(message: string): Buffer;
|
|
|
4350
4379
|
*/
|
|
4351
4380
|
declare function SHA256(message: string): Buffer;
|
|
4352
4381
|
|
|
4353
|
-
export { ArrayToSet, As, ConvertArrayLikeToIterable, ConvertArrayLikeToStream, Delay, DevNull, GetObjectNestingDepth, GetObjectPropertyPaths, Glob, GraceExit, HexToIEEE754, HexToSigned, HexToUnsigned, IEEE754ToHex, IP,
|
|
4382
|
+
export { ArrayToSet, As, ConvertArrayLikeToIterable, ConvertArrayLikeToStream, Delay, DevNull, GetObjectNestingDepth, GetObjectPropertyPaths, Glob, GraceExit, HexToIEEE754, HexToSigned, HexToUnsigned, IEEE754ToHex, IP, IPv4, IPv6, IsAbortError, IsEmptyObject, IsExists, IsGlobString, IsHtml, IsNativeFunction, IsPath, IsPromise, IsPromiseLike, IsSymbol, IsXML, MD5, MergeArray, MergeMap, MergeSet, MissingValueError, NoCase, NonceStr, ObjectConstructor, ObjectHash, ObjectParentConstructor, ObjectParentConstructors, ObjectPrototype, ObjectToMap, RandomString, SHA1, SHA256, SetToArray, SignedToHex, SortArray, SortKeys, SortObject, Split, Templating, ToLower, ToUpper, UniqueArray, UnsignedToHex };
|
|
4383
|
+
export type { IPBinHex, IPv4SubNet, IPv6Result, IPv6SubNet, NoCaseOptions, ObjectHashOptions, SortKeysOptions, SortObjectOptions, SortOptions, SplitOptions, TemplatingOptions };
|
package/lakutata.cjs
CHANGED
|
@@ -258,14 +258,14 @@ require("./vendor/Package.12.cjs");
|
|
|
258
258
|
|
|
259
259
|
require("worker_threads");
|
|
260
260
|
|
|
261
|
-
require("./vendor/Package.
|
|
261
|
+
require("./vendor/Package.74.cjs");
|
|
262
262
|
|
|
263
263
|
require("module");
|
|
264
264
|
|
|
265
|
-
require("buffer");
|
|
266
|
-
|
|
267
265
|
require("tty");
|
|
268
266
|
|
|
267
|
+
require("buffer");
|
|
268
|
+
|
|
269
269
|
require("assert");
|
|
270
270
|
|
|
271
271
|
require("string_decoder");
|
package/lakutata.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import './vendor/TypeDef.2.js';
|
|
|
2
2
|
import { E as Exception } from './vendor/TypeDef.7.js';
|
|
3
3
|
export { D as DTO, J as JSONSchema } from './vendor/TypeDef.5.js';
|
|
4
4
|
export { T as Time } from './vendor/TypeDef.1.js';
|
|
5
|
-
import { a as ModuleOptions, b as ModuleConfigLoader, c as LoadObjectOptions, B as BaseObject, e as event,
|
|
5
|
+
import { a as ModuleOptions, b as ModuleConfigLoader, c as LoadObjectOptions, B as BaseObject, d as ConstructorOptions, e as event, f as ListenerFn, E as EventAndListener, M as Module } from './vendor/TypeDef.3.js';
|
|
6
6
|
export { C as Component, g as Container, I as IBaseObjectConstructor, h as LoadAnonymousObjectOptions, i as LoadNamedObjectOptions, j as ModuleLoadObjectsOptions, O as OverridableNamedObjectOptions, k as OverridableObjectOptions, P as Provider } from './vendor/TypeDef.3.js';
|
|
7
7
|
import { Logger } from './com/logger.js';
|
|
8
8
|
export { A as ActionPattern } from './vendor/TypeDef.8.js';
|
|
@@ -444,4 +444,5 @@ declare class MethodNotFoundException extends Exception {
|
|
|
444
444
|
|
|
445
445
|
type ParameterDecorator<ClassPrototype> = (target: ClassPrototype, propertyKey: string | symbol, parameterIndex: number) => void;
|
|
446
446
|
|
|
447
|
-
export { AliasExistsException, AliasNotFoundException, Application, ApplicationOptions, BaseObject, DependencyInjectionException, DestroyRuntimeContainerException, Exception, InvalidActionPatternDepthException, InvalidAliasNameException, InvalidAssistantFunctionTypeException, InvalidMethodAcceptException, InvalidMethodReturnException, InvalidObjectTypeException, InvalidValueException, LifetimeLockedException, LoadObjectOptions, MethodNotFoundException, Module, ModuleOptions, OverridableObjectTargetConfigNotFoundException
|
|
447
|
+
export { AliasExistsException, AliasNotFoundException, Application, ApplicationOptions, BaseObject, DependencyInjectionException, DestroyRuntimeContainerException, Exception, InvalidActionPatternDepthException, InvalidAliasNameException, InvalidAssistantFunctionTypeException, InvalidMethodAcceptException, InvalidMethodReturnException, InvalidObjectTypeException, InvalidValueException, LifetimeLockedException, LoadObjectOptions, MethodNotFoundException, Module, ModuleOptions, OverridableObjectTargetConfigNotFoundException };
|
|
448
|
+
export type { ParameterDecorator };
|
package/lakutata.mjs
CHANGED
|
@@ -252,14 +252,14 @@ import "./vendor/Package.12.mjs";
|
|
|
252
252
|
|
|
253
253
|
import "worker_threads";
|
|
254
254
|
|
|
255
|
-
import "./vendor/Package.
|
|
255
|
+
import "./vendor/Package.74.mjs";
|
|
256
256
|
|
|
257
257
|
import "module";
|
|
258
258
|
|
|
259
|
-
import "buffer";
|
|
260
|
-
|
|
261
259
|
import "tty";
|
|
262
260
|
|
|
261
|
+
import "buffer";
|
|
262
|
+
|
|
263
263
|
import "assert";
|
|
264
264
|
|
|
265
265
|
import "string_decoder";
|