lakutata 2.0.65 → 2.0.67
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 +1 -1
- package/com/cacher.d.ts +4 -4
- package/com/cacher.mjs +1 -1
- 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.cjs +3 -1
- package/com/entrypoint.d.ts +2 -2
- package/com/entrypoint.mjs +3 -1
- package/com/logger.d.ts +1 -1
- package/com/monitor.d.ts +2 -2
- package/decorator/asst.d.ts +1 -1
- package/decorator/ctrl.cjs +3 -1
- package/decorator/ctrl.d.ts +4 -4
- package/decorator/ctrl.mjs +3 -1
- 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.cjs +24 -18
- package/helper.d.ts +129 -3
- package/helper.mjs +6 -2
- package/lakutata.cjs +3 -1
- package/lakutata.d.ts +10 -10
- package/lakutata.mjs +3 -1
- 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/components/cacher/Cacher.cjs +1 -1
- package/src/components/cacher/Cacher.mjs +1 -1
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +2 -2
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +2 -2
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +2 -2
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +2 -2
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +2 -2
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +2 -2
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +2 -2
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +2 -2
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +2 -2
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +2 -2
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +2 -2
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +2 -2
- package/src/components/entrypoint/Entrypoint.cjs +3 -1
- package/src/components/entrypoint/Entrypoint.mjs +3 -1
- package/src/decorators/ctrl/CLIAction.cjs +7 -5
- package/src/decorators/ctrl/CLIAction.mjs +3 -1
- package/src/decorators/ctrl/HTTPAction.cjs +8 -6
- package/src/decorators/ctrl/HTTPAction.mjs +3 -1
- package/src/decorators/ctrl/ServiceAction.cjs +3 -1
- package/src/decorators/ctrl/ServiceAction.mjs +7 -5
- package/src/decorators/ctrl/http/DELETE.cjs +3 -1
- package/src/decorators/ctrl/http/DELETE.mjs +3 -1
- package/src/decorators/ctrl/http/GET.cjs +3 -1
- package/src/decorators/ctrl/http/GET.mjs +3 -1
- package/src/decorators/ctrl/http/HEAD.cjs +3 -1
- package/src/decorators/ctrl/http/HEAD.mjs +3 -1
- package/src/decorators/ctrl/http/OPTIONS.cjs +3 -1
- package/src/decorators/ctrl/http/OPTIONS.mjs +3 -1
- package/src/decorators/ctrl/http/PATCH.cjs +3 -1
- package/src/decorators/ctrl/http/PATCH.mjs +3 -1
- package/src/decorators/ctrl/http/POST.cjs +3 -1
- package/src/decorators/ctrl/http/POST.mjs +3 -1
- package/src/decorators/ctrl/http/PUT.cjs +3 -1
- package/src/decorators/ctrl/http/PUT.mjs +3 -1
- 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/lib/base/internal/ControllerEntrypoint.cjs +70 -610
- package/src/lib/base/internal/ControllerEntrypoint.mjs +87 -627
- package/src/lib/base/internal/StringifyPattern.cjs +1 -1
- package/src/lib/base/internal/StringifyPattern.mjs +1 -1
- package/src/lib/core/Application.cjs +3 -1
- package/src/lib/core/Application.mjs +3 -1
- package/src/lib/helpers/MD5.cjs +1 -1
- package/src/lib/helpers/MD5.mjs +1 -1
- 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/UUID.cjs +45 -0
- package/src/lib/helpers/UUID.mjs +39 -0
- 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 +176 -187
- package/vendor/Package.610.cjs +297 -113
- package/vendor/Package.610.mjs +285 -97
- package/vendor/Package.611.cjs +85 -103
- package/vendor/Package.611.mjs +80 -98
- package/vendor/Package.612.cjs +100 -121
- package/vendor/Package.612.mjs +97 -120
- package/vendor/Package.613.cjs +196 -0
- package/vendor/Package.613.mjs +180 -0
- package/vendor/Package.64.cjs +511 -134
- package/vendor/Package.64.mjs +491 -134
- package/vendor/Package.65.cjs +140 -4118
- package/vendor/Package.65.mjs +140 -4126
- package/vendor/Package.66.cjs +4142 -692
- package/vendor/Package.66.mjs +4151 -689
- package/vendor/Package.67.cjs +571 -535
- package/vendor/Package.67.mjs +586 -528
- package/vendor/Package.68.cjs +633 -96
- package/vendor/Package.68.mjs +619 -94
- package/vendor/Package.69.cjs +96 -294
- package/vendor/Package.69.mjs +95 -295
- 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/com/cacher.cjs
CHANGED
package/com/cacher.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
2
|
import EventEmitter from 'node:events';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
3
|
+
import { DTO } from '../vendor/TypeDef.internal.5.js';
|
|
4
|
+
import { Component } from '../vendor/TypeDef.internal.3.js';
|
|
5
|
+
import { ComponentOptionsBuilder } from '../vendor/TypeDef.internal.6.js';
|
|
6
|
+
import { Exception } from '../vendor/TypeDef.internal.7.js';
|
|
7
7
|
|
|
8
8
|
type EventListener = (...arguments_: any[]) => void;
|
|
9
9
|
declare class EventManager {
|
package/com/cacher.mjs
CHANGED
package/com/database.cjs
CHANGED
package/com/database.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { Component } from '../vendor/TypeDef.internal.3.js';
|
|
3
|
+
import { DataSourceOptions, DataSource, Driver, EntityManager, NamingStrategyInterface, EntitySubscriberInterface, EntityMetadata, EntityTarget, QueryResultCache, Migration, ObjectLiteral, Repository, TreeRepository, MongoRepository, IsolationLevel, QueryRunner, SelectQueryBuilder, ReplicationMode } from '../vendor/TypeDef.internal.4.js';
|
|
4
4
|
import '../vendor/TypeDef.internal.5.js';
|
|
5
5
|
import 'fs';
|
|
6
|
-
import 'dns';
|
|
7
|
-
import 'net';
|
|
8
6
|
import 'tls';
|
|
7
|
+
import 'net';
|
|
8
|
+
import 'dns';
|
|
9
9
|
import 'events';
|
|
10
10
|
import 'stream';
|
|
11
11
|
|
package/com/database.mjs
CHANGED
package/com/docker.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import '../vendor/TypeDef.internal.2.js';
|
|
3
|
-
import {
|
|
3
|
+
import { Provider, Component } from '../vendor/TypeDef.internal.3.js';
|
|
4
4
|
import { ClientRequest, IncomingMessage, Agent, OutgoingHttpHeaders, RequestOptions } from 'http';
|
|
5
5
|
import { Socket } from 'net';
|
|
6
6
|
import * as stream from 'stream';
|
|
7
7
|
import stream__default, { Duplex, Readable, DuplexOptions } from 'stream';
|
|
8
8
|
import * as events from 'events';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
9
|
+
import { Time } from '../vendor/TypeDef.internal.1.js';
|
|
10
|
+
import { DTO } from '../vendor/TypeDef.internal.5.js';
|
|
11
11
|
import { Logger } from './logger.js';
|
|
12
12
|
import { Writable } from 'node:stream';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
13
|
+
import { ComponentOptionsBuilder } from '../vendor/TypeDef.internal.6.js';
|
|
14
|
+
import { Exception } from '../vendor/TypeDef.internal.7.js';
|
|
15
15
|
|
|
16
16
|
interface Prompt {
|
|
17
17
|
prompt: string;
|
package/com/entrypoint.cjs
CHANGED
|
@@ -188,9 +188,11 @@ require("../src/lib/helpers/GetObjectNestingDepth.cjs");
|
|
|
188
188
|
|
|
189
189
|
require("../src/exceptions/InvalidActionPatternDepthException.cjs");
|
|
190
190
|
|
|
191
|
+
require("../vendor/Package.64.cjs");
|
|
192
|
+
|
|
191
193
|
require("../src/lib/base/internal/StringifyPattern.cjs");
|
|
192
194
|
|
|
193
|
-
require("../vendor/Package.
|
|
195
|
+
require("../vendor/Package.65.cjs");
|
|
194
196
|
|
|
195
197
|
require("../src/lib/base/internal/PatternManager.cjs");
|
|
196
198
|
|
package/com/entrypoint.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
export {
|
|
3
|
-
import {
|
|
2
|
+
export { AccessControlRule, AccessControlRuleHandler, ActionGroupInfo, BaseActionInfo, BaseContext, BuildCLIEntrypoint, BuildEntrypoints, BuildHTTPEntrypoint, BuildServiceEntrypoint, CLIActionInfo, CLIContext, CLIEntrypoint, CLIEntrypointHandler, CLIMap, ContextType, Controller, ControllerProperty, Entrypoint, EntrypointActions, EntrypointDestroyer, EntrypointDestroyerRegistrar, EntrypointOptions, HTTPActionInfo, HTTPContext, HTTPEntrypoint, HTTPEntrypointHandler, HTTPRouteMap, ServiceActionInfo, ServiceContext, ServiceEntrypoint, ServiceEntrypointHandler } from '../vendor/TypeDef.internal.13.js';
|
|
3
|
+
import { Exception } from '../vendor/TypeDef.internal.7.js';
|
|
4
4
|
import '../vendor/TypeDef.internal.3.js';
|
|
5
5
|
import '../vendor/TypeDef.internal.5.js';
|
|
6
6
|
import '../vendor/TypeDef.internal.10.js';
|
package/com/entrypoint.mjs
CHANGED
|
@@ -182,9 +182,11 @@ import "../src/lib/helpers/GetObjectNestingDepth.mjs";
|
|
|
182
182
|
|
|
183
183
|
import "../src/exceptions/InvalidActionPatternDepthException.mjs";
|
|
184
184
|
|
|
185
|
+
import "../vendor/Package.64.mjs";
|
|
186
|
+
|
|
185
187
|
import "../src/lib/base/internal/StringifyPattern.mjs";
|
|
186
188
|
|
|
187
|
-
import "../vendor/Package.
|
|
189
|
+
import "../vendor/Package.65.mjs";
|
|
188
190
|
|
|
189
191
|
import "../src/lib/base/internal/PatternManager.mjs";
|
|
190
192
|
|
package/com/logger.d.ts
CHANGED
package/com/monitor.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { Component } from '../vendor/TypeDef.internal.3.js';
|
|
2
|
+
import { ComponentOptionsBuilder } from '../vendor/TypeDef.internal.6.js';
|
|
3
3
|
import { IntervalHistogram, EventLoopUtilization, PerformanceObserver } from 'node:perf_hooks';
|
|
4
4
|
import '../vendor/TypeDef.internal.5.js';
|
|
5
5
|
import '../vendor/TypeDef.internal.2.js';
|
package/decorator/asst.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import {
|
|
2
|
+
import { MethodDecorator } from '../vendor/TypeDef.internal.8.js';
|
|
3
3
|
|
|
4
4
|
type BeforeFunction<ClassPrototype extends Object, Method extends (...args: any[]) => unknown> = (this: ClassPrototype, ...args: Parameters<Method>) => Promise<Parameters<Method> | void> | Parameters<Method> | void;
|
|
5
5
|
type AfterFunction<ClassPrototype extends Object, Method extends (...args: any[]) => unknown> = (this: ClassPrototype, result: Awaited<ReturnType<Method>>) => Promise<ReturnType<Method> | void> | ReturnType<Method> | void;
|
package/decorator/ctrl.cjs
CHANGED
|
@@ -64,9 +64,11 @@ require("../src/lib/base/internal/CamelCase.cjs");
|
|
|
64
64
|
|
|
65
65
|
require("../src/lib/helpers/NoCase.cjs");
|
|
66
66
|
|
|
67
|
+
require("../vendor/Package.64.cjs");
|
|
68
|
+
|
|
67
69
|
require("../src/lib/base/internal/StringifyPattern.cjs");
|
|
68
70
|
|
|
69
|
-
require("../vendor/Package.
|
|
71
|
+
require("../vendor/Package.65.cjs");
|
|
70
72
|
|
|
71
73
|
require("../src/lib/base/internal/ActionOptions.cjs");
|
|
72
74
|
|
package/decorator/ctrl.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
2
|
+
import { BaseContext, AccessControlRuleHandler, Controller, ControllerProperty, CLIContext, HTTPContext, ServiceContext } from '../vendor/TypeDef.internal.13.js';
|
|
3
|
+
import { MethodDecorator } from '../vendor/TypeDef.internal.8.js';
|
|
4
|
+
import { DTO } from '../vendor/TypeDef.internal.5.js';
|
|
5
|
+
import { ActionPattern } from '../vendor/TypeDef.internal.10.js';
|
|
6
6
|
import '../vendor/TypeDef.internal.3.js';
|
|
7
7
|
import 'node:http';
|
|
8
8
|
import '../vendor/TypeDef.internal.7.js';
|
package/decorator/ctrl.mjs
CHANGED
|
@@ -58,9 +58,11 @@ import "../src/lib/base/internal/CamelCase.mjs";
|
|
|
58
58
|
|
|
59
59
|
import "../src/lib/helpers/NoCase.mjs";
|
|
60
60
|
|
|
61
|
+
import "../vendor/Package.64.mjs";
|
|
62
|
+
|
|
61
63
|
import "../src/lib/base/internal/StringifyPattern.mjs";
|
|
62
64
|
|
|
63
|
-
import "../vendor/Package.
|
|
65
|
+
import "../vendor/Package.65.mjs";
|
|
64
66
|
|
|
65
67
|
import "../src/lib/base/internal/ActionOptions.mjs";
|
|
66
68
|
|
package/decorator/di.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
2
|
+
import { BaseObject, LifetimeType, IBaseObjectConstructor } from '../vendor/TypeDef.internal.3.js';
|
|
3
|
+
import { ClassDecorator, PropertyDecorator } from '../vendor/TypeDef.internal.11.js';
|
|
4
|
+
import { Schema } from '../vendor/TypeDef.internal.5.js';
|
|
5
5
|
import '../vendor/TypeDef.internal.9.js';
|
|
6
6
|
|
|
7
7
|
/**
|
package/decorator/dto.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
2
|
+
import { DTO, Schema } from '../vendor/TypeDef.internal.5.js';
|
|
3
|
+
import { ClassDecorator, PropertyDecorator } from '../vendor/TypeDef.internal.11.js';
|
|
4
|
+
import { MethodDecorator } from '../vendor/TypeDef.internal.8.js';
|
|
5
5
|
import '../vendor/TypeDef.internal.9.js';
|
|
6
6
|
|
|
7
7
|
/**
|
package/decorator/orm.cjs
CHANGED
|
@@ -6,94 +6,94 @@ Object.defineProperty(exports, Symbol.toStringTag, {
|
|
|
6
6
|
|
|
7
7
|
require("../vendor/Package.4.cjs");
|
|
8
8
|
|
|
9
|
-
require("../src/decorators/orm/AfterRecover.cjs");
|
|
9
|
+
const e = require("../src/decorators/orm/AfterRecover.cjs");
|
|
10
10
|
|
|
11
|
-
require("../src/decorators/orm/AfterRemove.cjs");
|
|
11
|
+
const r = require("../src/decorators/orm/AfterRemove.cjs");
|
|
12
12
|
|
|
13
|
-
require("../src/decorators/orm/AfterInsert.cjs");
|
|
13
|
+
const o = require("../src/decorators/orm/AfterInsert.cjs");
|
|
14
14
|
|
|
15
|
-
require("../src/decorators/orm/AfterLoad.cjs");
|
|
15
|
+
const s = require("../src/decorators/orm/AfterLoad.cjs");
|
|
16
16
|
|
|
17
|
-
require("../src/decorators/orm/AfterSoftRemove.cjs");
|
|
17
|
+
const t = require("../src/decorators/orm/AfterSoftRemove.cjs");
|
|
18
18
|
|
|
19
|
-
require("../src/decorators/orm/AfterUpdate.cjs");
|
|
19
|
+
const c = require("../src/decorators/orm/AfterUpdate.cjs");
|
|
20
20
|
|
|
21
|
-
require("../src/decorators/orm/BeforeInsert.cjs");
|
|
21
|
+
const n = require("../src/decorators/orm/BeforeInsert.cjs");
|
|
22
22
|
|
|
23
|
-
require("../src/decorators/orm/BeforeRecover.cjs");
|
|
23
|
+
const a = require("../src/decorators/orm/BeforeRecover.cjs");
|
|
24
24
|
|
|
25
|
-
require("../src/decorators/orm/BeforeRemove.cjs");
|
|
25
|
+
const i = require("../src/decorators/orm/BeforeRemove.cjs");
|
|
26
26
|
|
|
27
|
-
require("../src/decorators/orm/BeforeSoftRemove.cjs");
|
|
27
|
+
const u = require("../src/decorators/orm/BeforeSoftRemove.cjs");
|
|
28
28
|
|
|
29
|
-
require("../src/decorators/orm/BeforeUpdate.cjs");
|
|
29
|
+
const m = require("../src/decorators/orm/BeforeUpdate.cjs");
|
|
30
30
|
|
|
31
|
-
require("../src/decorators/orm/Check.cjs");
|
|
31
|
+
const d = require("../src/decorators/orm/Check.cjs");
|
|
32
32
|
|
|
33
|
-
require("../src/decorators/orm/ChildEntity.cjs");
|
|
33
|
+
const q = require("../src/decorators/orm/ChildEntity.cjs");
|
|
34
34
|
|
|
35
|
-
require("../src/decorators/orm/Column.cjs");
|
|
35
|
+
const l = require("../src/decorators/orm/Column.cjs");
|
|
36
36
|
|
|
37
|
-
require("../src/decorators/orm/CreateDateColumn.cjs");
|
|
37
|
+
const j = require("../src/decorators/orm/CreateDateColumn.cjs");
|
|
38
38
|
|
|
39
|
-
require("../src/decorators/orm/DeleteDateColumn.cjs");
|
|
39
|
+
const p = require("../src/decorators/orm/DeleteDateColumn.cjs");
|
|
40
40
|
|
|
41
|
-
require("../src/decorators/orm/Entity.cjs");
|
|
41
|
+
const x = require("../src/decorators/orm/Entity.cjs");
|
|
42
42
|
|
|
43
|
-
require("../src/decorators/orm/EventSubscriber.cjs");
|
|
43
|
+
const C = require("../src/decorators/orm/EventSubscriber.cjs");
|
|
44
44
|
|
|
45
|
-
require("../src/decorators/orm/Exclusion.cjs");
|
|
45
|
+
const f = require("../src/decorators/orm/Exclusion.cjs");
|
|
46
46
|
|
|
47
|
-
require("../src/decorators/orm/Generated.cjs");
|
|
47
|
+
const v = require("../src/decorators/orm/Generated.cjs");
|
|
48
48
|
|
|
49
|
-
require("../src/decorators/orm/Index.cjs");
|
|
49
|
+
const y = require("../src/decorators/orm/Index.cjs");
|
|
50
50
|
|
|
51
|
-
require("../src/decorators/orm/JoinColumn.cjs");
|
|
51
|
+
const T = require("../src/decorators/orm/JoinColumn.cjs");
|
|
52
52
|
|
|
53
|
-
require("../src/decorators/orm/JoinTable.cjs");
|
|
53
|
+
const P = require("../src/decorators/orm/JoinTable.cjs");
|
|
54
54
|
|
|
55
|
-
require("../src/decorators/orm/ManyToMany.cjs");
|
|
55
|
+
const R = require("../src/decorators/orm/ManyToMany.cjs");
|
|
56
56
|
|
|
57
|
-
require("../src/decorators/orm/ManyToOne.cjs");
|
|
57
|
+
const b = require("../src/decorators/orm/ManyToOne.cjs");
|
|
58
58
|
|
|
59
|
-
require("../src/decorators/orm/ObjectIdColumn.cjs");
|
|
59
|
+
const A = require("../src/decorators/orm/ObjectIdColumn.cjs");
|
|
60
60
|
|
|
61
|
-
require("../src/decorators/orm/OneToMany.cjs");
|
|
61
|
+
const I = require("../src/decorators/orm/OneToMany.cjs");
|
|
62
62
|
|
|
63
|
-
require("../src/decorators/orm/OneToOne.cjs");
|
|
63
|
+
const g = require("../src/decorators/orm/OneToOne.cjs");
|
|
64
64
|
|
|
65
|
-
require("../src/decorators/orm/PrimaryColumn.cjs");
|
|
65
|
+
const k = require("../src/decorators/orm/PrimaryColumn.cjs");
|
|
66
66
|
|
|
67
|
-
require("../src/decorators/orm/PrimaryGeneratedColumn.cjs");
|
|
67
|
+
const O = require("../src/decorators/orm/PrimaryGeneratedColumn.cjs");
|
|
68
68
|
|
|
69
|
-
require("../src/decorators/orm/RelationId.cjs");
|
|
69
|
+
const B = require("../src/decorators/orm/RelationId.cjs");
|
|
70
70
|
|
|
71
|
-
require("../src/decorators/orm/TableInheritance.cjs");
|
|
71
|
+
const E = require("../src/decorators/orm/TableInheritance.cjs");
|
|
72
72
|
|
|
73
|
-
require("../src/decorators/orm/Tree.cjs");
|
|
73
|
+
const h = require("../src/decorators/orm/Tree.cjs");
|
|
74
74
|
|
|
75
|
-
require("../src/decorators/orm/TreeChildren.cjs");
|
|
75
|
+
const M = require("../src/decorators/orm/TreeChildren.cjs");
|
|
76
76
|
|
|
77
|
-
require("../src/decorators/orm/TreeLevelColumn.cjs");
|
|
77
|
+
const D = require("../src/decorators/orm/TreeLevelColumn.cjs");
|
|
78
78
|
|
|
79
|
-
require("../src/decorators/orm/TreeParent.cjs");
|
|
79
|
+
const U = require("../src/decorators/orm/TreeParent.cjs");
|
|
80
80
|
|
|
81
|
-
require("../src/decorators/orm/Unique.cjs");
|
|
81
|
+
const V = require("../src/decorators/orm/Unique.cjs");
|
|
82
82
|
|
|
83
|
-
require("../src/decorators/orm/UpdateDateColumn.cjs");
|
|
83
|
+
const S = require("../src/decorators/orm/UpdateDateColumn.cjs");
|
|
84
84
|
|
|
85
|
-
require("../src/decorators/orm/VersionColumn.cjs");
|
|
85
|
+
const w = require("../src/decorators/orm/VersionColumn.cjs");
|
|
86
86
|
|
|
87
|
-
require("../src/decorators/orm/ViewColumn.cjs");
|
|
87
|
+
const G = require("../src/decorators/orm/ViewColumn.cjs");
|
|
88
88
|
|
|
89
|
-
require("../src/decorators/orm/ViewEntity.cjs");
|
|
89
|
+
const J = require("../src/decorators/orm/ViewEntity.cjs");
|
|
90
90
|
|
|
91
|
-
require("../src/decorators/orm/VirtualColumn.cjs");
|
|
92
|
-
|
|
93
|
-
const e = require("../vendor/Package.122.cjs");
|
|
91
|
+
const L = require("../src/decorators/orm/VirtualColumn.cjs");
|
|
94
92
|
|
|
95
93
|
require("../vendor/Package.5.cjs");
|
|
96
94
|
|
|
95
|
+
require("../vendor/Package.122.cjs");
|
|
96
|
+
|
|
97
97
|
require("../vendor/Package.13.cjs");
|
|
98
98
|
|
|
99
99
|
require("../vendor/Package.1.cjs");
|
|
@@ -138,8 +138,6 @@ require("../vendor/Package.11.cjs");
|
|
|
138
138
|
|
|
139
139
|
require("url");
|
|
140
140
|
|
|
141
|
-
require("node:util");
|
|
142
|
-
|
|
143
141
|
require("../vendor/Package.63.cjs");
|
|
144
142
|
|
|
145
143
|
require("node:url");
|
|
@@ -156,86 +154,86 @@ require("node:stream");
|
|
|
156
154
|
|
|
157
155
|
require("node:string_decoder");
|
|
158
156
|
|
|
159
|
-
exports.
|
|
157
|
+
exports.AfterRecover = e.AfterRecover;
|
|
160
158
|
|
|
161
|
-
exports.
|
|
159
|
+
exports.AfterRemove = r.AfterRemove;
|
|
162
160
|
|
|
163
|
-
exports.
|
|
161
|
+
exports.AfterInsert = o.AfterInsert;
|
|
164
162
|
|
|
165
|
-
exports.
|
|
163
|
+
exports.AfterLoad = s.AfterLoad;
|
|
166
164
|
|
|
167
|
-
exports.AfterSoftRemove =
|
|
165
|
+
exports.AfterSoftRemove = t.AfterSoftRemove;
|
|
168
166
|
|
|
169
|
-
exports.AfterUpdate =
|
|
167
|
+
exports.AfterUpdate = c.AfterUpdate;
|
|
170
168
|
|
|
171
|
-
exports.BeforeInsert =
|
|
169
|
+
exports.BeforeInsert = n.BeforeInsert;
|
|
172
170
|
|
|
173
|
-
exports.BeforeRecover =
|
|
171
|
+
exports.BeforeRecover = a.BeforeRecover;
|
|
174
172
|
|
|
175
|
-
exports.BeforeRemove =
|
|
173
|
+
exports.BeforeRemove = i.BeforeRemove;
|
|
176
174
|
|
|
177
|
-
exports.BeforeSoftRemove =
|
|
175
|
+
exports.BeforeSoftRemove = u.BeforeSoftRemove;
|
|
178
176
|
|
|
179
|
-
exports.BeforeUpdate =
|
|
177
|
+
exports.BeforeUpdate = m.BeforeUpdate;
|
|
180
178
|
|
|
181
|
-
exports.Check =
|
|
179
|
+
exports.Check = d.Check;
|
|
182
180
|
|
|
183
|
-
exports.ChildEntity =
|
|
181
|
+
exports.ChildEntity = q.ChildEntity;
|
|
184
182
|
|
|
185
|
-
exports.Column =
|
|
183
|
+
exports.Column = l.Column;
|
|
186
184
|
|
|
187
|
-
exports.CreateDateColumn =
|
|
185
|
+
exports.CreateDateColumn = j.CreateDateColumn;
|
|
188
186
|
|
|
189
|
-
exports.DeleteDateColumn =
|
|
187
|
+
exports.DeleteDateColumn = p.DeleteDateColumn;
|
|
190
188
|
|
|
191
|
-
exports.Entity =
|
|
189
|
+
exports.Entity = x.Entity;
|
|
192
190
|
|
|
193
|
-
exports.EventSubscriber =
|
|
191
|
+
exports.EventSubscriber = C.EventSubscriber;
|
|
194
192
|
|
|
195
|
-
exports.Exclusion =
|
|
193
|
+
exports.Exclusion = f.Exclusion;
|
|
196
194
|
|
|
197
|
-
exports.Generated =
|
|
195
|
+
exports.Generated = v.Generated;
|
|
198
196
|
|
|
199
|
-
exports.Index =
|
|
197
|
+
exports.Index = y.Index;
|
|
200
198
|
|
|
201
|
-
exports.JoinColumn =
|
|
199
|
+
exports.JoinColumn = T.JoinColumn;
|
|
202
200
|
|
|
203
|
-
exports.JoinTable =
|
|
201
|
+
exports.JoinTable = P.JoinTable;
|
|
204
202
|
|
|
205
|
-
exports.ManyToMany =
|
|
203
|
+
exports.ManyToMany = R.ManyToMany;
|
|
206
204
|
|
|
207
|
-
exports.ManyToOne =
|
|
205
|
+
exports.ManyToOne = b.ManyToOne;
|
|
208
206
|
|
|
209
|
-
exports.ObjectIdColumn =
|
|
207
|
+
exports.ObjectIdColumn = A.ObjectIdColumn;
|
|
210
208
|
|
|
211
|
-
exports.OneToMany =
|
|
209
|
+
exports.OneToMany = I.OneToMany;
|
|
212
210
|
|
|
213
|
-
exports.OneToOne =
|
|
211
|
+
exports.OneToOne = g.OneToOne;
|
|
214
212
|
|
|
215
|
-
exports.PrimaryColumn =
|
|
213
|
+
exports.PrimaryColumn = k.PrimaryColumn;
|
|
216
214
|
|
|
217
|
-
exports.PrimaryGeneratedColumn =
|
|
215
|
+
exports.PrimaryGeneratedColumn = O.PrimaryGeneratedColumn;
|
|
218
216
|
|
|
219
|
-
exports.RelationId =
|
|
217
|
+
exports.RelationId = B.RelationId;
|
|
220
218
|
|
|
221
|
-
exports.TableInheritance =
|
|
219
|
+
exports.TableInheritance = E.TableInheritance;
|
|
222
220
|
|
|
223
|
-
exports.Tree =
|
|
221
|
+
exports.Tree = h.Tree;
|
|
224
222
|
|
|
225
|
-
exports.TreeChildren =
|
|
223
|
+
exports.TreeChildren = M.TreeChildren;
|
|
226
224
|
|
|
227
|
-
exports.TreeLevelColumn =
|
|
225
|
+
exports.TreeLevelColumn = D.TreeLevelColumn;
|
|
228
226
|
|
|
229
|
-
exports.TreeParent =
|
|
227
|
+
exports.TreeParent = U.TreeParent;
|
|
230
228
|
|
|
231
|
-
exports.Unique =
|
|
229
|
+
exports.Unique = V.Unique;
|
|
232
230
|
|
|
233
|
-
exports.UpdateDateColumn =
|
|
231
|
+
exports.UpdateDateColumn = S.UpdateDateColumn;
|
|
234
232
|
|
|
235
|
-
exports.VersionColumn =
|
|
233
|
+
exports.VersionColumn = w.VersionColumn;
|
|
236
234
|
|
|
237
|
-
exports.ViewColumn =
|
|
235
|
+
exports.ViewColumn = G.ViewColumn;
|
|
238
236
|
|
|
239
|
-
exports.ViewEntity =
|
|
237
|
+
exports.ViewEntity = J.ViewEntity;
|
|
240
238
|
|
|
241
|
-
exports.VirtualColumn =
|
|
239
|
+
exports.VirtualColumn = L.VirtualColumn;
|