lakutata 2.0.1 → 2.0.2

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.
Files changed (45) hide show
  1. package/com/database.d.ts +4 -4
  2. package/com/docker.d.ts +5 -4
  3. package/com/entrypoint.cjs +13 -11
  4. package/com/entrypoint.d.ts +13 -8
  5. package/com/entrypoint.mjs +2 -2
  6. package/com/logger.d.ts +3 -3
  7. package/decorator/asst.d.ts +2 -2
  8. package/decorator/ctrl.d.ts +5 -5
  9. package/decorator/di.d.ts +5 -5
  10. package/decorator/dto.d.ts +5 -5
  11. package/decorator/orm.d.ts +3 -3
  12. package/helper.d.ts +2 -2
  13. package/lakutata.cjs +16 -18
  14. package/lakutata.d.ts +12 -16
  15. package/lakutata.mjs +2 -2
  16. package/orm.d.ts +4 -4
  17. package/orm.mjs +30 -30
  18. package/package.json +1 -1
  19. package/src/components/entrypoint/Entrypoint.cjs +1 -1
  20. package/src/components/entrypoint/Entrypoint.mjs +1 -1
  21. package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +34 -0
  22. package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +28 -0
  23. package/src/decorators/orm/Column.cjs +14 -14
  24. package/src/decorators/orm/Column.mjs +2 -2
  25. package/src/decorators/orm/PrimaryColumn.cjs +1 -1
  26. package/src/decorators/orm/PrimaryColumn.mjs +2 -2
  27. package/src/lib/core/Application.cjs +1 -1
  28. package/src/lib/core/Application.mjs +1 -1
  29. package/vendor/Package.14.cjs +20 -18
  30. package/vendor/Package.14.mjs +17 -19
  31. package/vendor/TypeDef.1.d.ts +274 -489
  32. package/vendor/TypeDef.10.d.ts +5 -6
  33. package/vendor/TypeDef.11.d.ts +4 -104
  34. package/vendor/TypeDef.12.d.ts +96 -60
  35. package/vendor/TypeDef.13.d.ts +71 -0
  36. package/vendor/TypeDef.2.d.ts +489 -948
  37. package/vendor/TypeDef.3.d.ts +662 -18813
  38. package/vendor/TypeDef.4.d.ts +18176 -3169
  39. package/vendor/TypeDef.5.d.ts +4093 -12
  40. package/vendor/TypeDef.6.d.ts +11 -2
  41. package/vendor/TypeDef.7.d.ts +20 -2
  42. package/vendor/TypeDef.8.d.ts +2 -5
  43. package/vendor/TypeDef.9.d.ts +2 -294
  44. package/src/exceptions/ControllerActionNotFoundException.cjs +0 -34
  45. package/src/exceptions/ControllerActionNotFoundException.mjs +0 -28
package/com/database.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import '../vendor/TypeDef.1.js';
2
- import { C as Component } from '../vendor/TypeDef.2.js';
3
- import { D as DataSourceOptions, a as DataSource, b as Driver, E as EntityManager, N as NamingStrategyInterface, c as EntitySubscriberInterface, d as EntityMetadata, e as EntityTarget, Q as QueryResultCache, M as Migration, O as ObjectLiteral, R as Repository, T as TreeRepository, f as MongoRepository, I as IsolationLevel, g as QueryRunner, S as SelectQueryBuilder, h as ReplicationMode } from '../vendor/TypeDef.3.js';
4
- import '../vendor/TypeDef.4.js';
1
+ import '../vendor/TypeDef.2.js';
2
+ import { C as Component } from '../vendor/TypeDef.3.js';
3
+ import { D as DataSourceOptions, a as DataSource, b as Driver, E as EntityManager, N as NamingStrategyInterface, c as EntitySubscriberInterface, d as EntityMetadata, e as EntityTarget, Q as QueryResultCache, M as Migration, O as ObjectLiteral, R as Repository, T as TreeRepository, f as MongoRepository, I as IsolationLevel, g as QueryRunner, S as SelectQueryBuilder, h as ReplicationMode } from '../vendor/TypeDef.4.js';
4
+ import '../vendor/TypeDef.5.js';
5
5
  import 'fs';
6
6
  import 'tls';
7
7
  import 'net';
package/com/docker.d.ts CHANGED
@@ -1,15 +1,16 @@
1
1
  /// <reference types="node" />
2
- import '../vendor/TypeDef.1.js';
3
- import { P as Provider, C as Component } from '../vendor/TypeDef.2.js';
2
+ import '../vendor/TypeDef.2.js';
3
+ import { P as Provider, C as Component } from '../vendor/TypeDef.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, { Readable, Duplex, DuplexOptions } from 'stream';
8
8
  import * as events from 'events';
9
- import { T as Time, E as Exception } from '../vendor/TypeDef.9.js';
10
- import { D as DTO } from '../vendor/TypeDef.4.js';
9
+ import { T as Time } from '../vendor/TypeDef.1.js';
10
+ import { D as DTO } from '../vendor/TypeDef.5.js';
11
11
  import { Logger } from './logger.js';
12
12
  import { Writable } from 'node:stream';
13
+ import { E as Exception } from '../vendor/TypeDef.7.js';
13
14
 
14
15
  interface Prompt {
15
16
  prompt: string;
@@ -10,13 +10,15 @@ const e = require("../src/components/entrypoint/Entrypoint.cjs");
10
10
 
11
11
  const r = require("../src/components/entrypoint/lib/Controller.cjs");
12
12
 
13
- const i = require("../src/lib/base/Context.cjs");
13
+ const i = require("../src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs");
14
14
 
15
- const s = require("../src/lib/context/CLIContext.cjs");
15
+ const s = require("../src/lib/base/Context.cjs");
16
16
 
17
- const c = require("../src/lib/context/HTTPContext.cjs");
17
+ const c = require("../src/lib/context/CLIContext.cjs");
18
18
 
19
- const t = require("../src/lib/context/ServiceContext.cjs");
19
+ const t = require("../src/lib/context/HTTPContext.cjs");
20
+
21
+ const o = require("../src/lib/context/ServiceContext.cjs");
20
22
 
21
23
  require("../vendor/Package.5.cjs");
22
24
 
@@ -180,8 +182,6 @@ require("../src/exceptions/InvalidActionPatternDepthException.cjs");
180
182
 
181
183
  require("../src/lib/base/internal/PatternManager.cjs");
182
184
 
183
- require("../src/exceptions/ControllerActionNotFoundException.cjs");
184
-
185
185
  require("../src/exceptions/DestroyRuntimeContainerException.cjs");
186
186
 
187
187
  require("../src/lib/helpers/GetObjectPropertyPaths.cjs");
@@ -208,18 +208,20 @@ Object.defineProperty(exports, "Controller", {
208
208
  get: () => r.Controller
209
209
  });
210
210
 
211
+ exports.ControllerActionNotFoundException = i.ControllerActionNotFoundException;
212
+
211
213
  Object.defineProperty(exports, "BaseContext", {
212
214
  enumerable: true,
213
- get: () => i.BaseContext
215
+ get: () => s.BaseContext
214
216
  });
215
217
 
216
218
  Object.defineProperty(exports, "ContextType", {
217
219
  enumerable: true,
218
- get: () => i.ContextType
220
+ get: () => s.ContextType
219
221
  });
220
222
 
221
- exports.CLIContext = s.CLIContext;
223
+ exports.CLIContext = c.CLIContext;
222
224
 
223
- exports.HTTPContext = c.HTTPContext;
225
+ exports.HTTPContext = t.HTTPContext;
224
226
 
225
- exports.ServiceContext = t.ServiceContext;
227
+ exports.ServiceContext = o.ServiceContext;
@@ -1,10 +1,11 @@
1
- import '../vendor/TypeDef.1.js';
2
- import { I as IBaseObjectConstructor, M as Module, C as Component } from '../vendor/TypeDef.2.js';
3
- import { C as Controller, a as CLIContext, H as HTTPContext, S as ServiceContext } from '../vendor/TypeDef.12.js';
4
- export { B as BaseContext, b as ContextType, c as ControllerProperty } from '../vendor/TypeDef.12.js';
5
- import { A as ActionPattern } from '../vendor/TypeDef.6.js';
6
- import { D as DTO, J as JSONSchema } from '../vendor/TypeDef.4.js';
7
- import { I as IPatRun } from '../vendor/TypeDef.5.js';
1
+ import '../vendor/TypeDef.2.js';
2
+ import { I as IBaseObjectConstructor, M as Module, C as Component } from '../vendor/TypeDef.3.js';
3
+ import { C as Controller, b as CLIContext, H as HTTPContext, S as ServiceContext } from '../vendor/TypeDef.13.js';
4
+ export { B as BaseContext, c as ContextType, a as ControllerProperty } from '../vendor/TypeDef.13.js';
5
+ import { A as ActionPattern } from '../vendor/TypeDef.8.js';
6
+ import { D as DTO, J as JSONSchema } from '../vendor/TypeDef.5.js';
7
+ import { I as IPatRun } from '../vendor/TypeDef.6.js';
8
+ import { E as Exception } from '../vendor/TypeDef.7.js';
8
9
  import 'node:http';
9
10
 
10
11
  type ActionPatternMap = Map<ActionPattern, ActionDetails>;
@@ -184,4 +185,8 @@ declare class Entrypoint extends Component {
184
185
  protected registerServiceEntrypoint(entrypoint: ServiceEntrypoint): void;
185
186
  }
186
187
 
187
- export { BuildCLIEntrypoint, BuildEntrypoints, BuildHTTPEntrypoint, BuildServiceEntrypoint, CLIContext, type CLIEntrypoint, type CLIEntrypointHandler, type CLIMap, Controller, Entrypoint, type EntrypointDestroyer, type EntrypointDestroyerRegistrar, type EntrypointOptions, HTTPContext, type HTTPEntrypoint, type HTTPEntrypointHandler, type HTTPRouteMap, ServiceContext, type ServiceEntrypoint, type ServiceEntrypointHandler };
188
+ declare class ControllerActionNotFoundException extends Exception {
189
+ errno: string | number;
190
+ }
191
+
192
+ export { BuildCLIEntrypoint, BuildEntrypoints, BuildHTTPEntrypoint, BuildServiceEntrypoint, CLIContext, type CLIEntrypoint, type CLIEntrypointHandler, type CLIMap, Controller, ControllerActionNotFoundException, Entrypoint, type EntrypointDestroyer, type EntrypointDestroyerRegistrar, type EntrypointOptions, HTTPContext, type HTTPEntrypoint, type HTTPEntrypointHandler, type HTTPRouteMap, ServiceContext, type ServiceEntrypoint, type ServiceEntrypointHandler };
@@ -4,6 +4,8 @@ export { BuildCLIEntrypoint, BuildEntrypoints, BuildHTTPEntrypoint, BuildService
4
4
 
5
5
  export { Controller } from "../src/components/entrypoint/lib/Controller.mjs";
6
6
 
7
+ export { ControllerActionNotFoundException } from "../src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs";
8
+
7
9
  export { BaseContext, ContextType } from "../src/lib/base/Context.mjs";
8
10
 
9
11
  export { CLIContext } from "../src/lib/context/CLIContext.mjs";
@@ -174,8 +176,6 @@ import "../src/exceptions/InvalidActionPatternDepthException.mjs";
174
176
 
175
177
  import "../src/lib/base/internal/PatternManager.mjs";
176
178
 
177
- import "../src/exceptions/ControllerActionNotFoundException.mjs";
178
-
179
179
  import "../src/exceptions/DestroyRuntimeContainerException.mjs";
180
180
 
181
181
  import "../src/lib/helpers/GetObjectPropertyPaths.mjs";
package/com/logger.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import '../vendor/TypeDef.1.js';
2
- import { C as Component } from '../vendor/TypeDef.2.js';
3
- import '../vendor/TypeDef.4.js';
1
+ import '../vendor/TypeDef.2.js';
2
+ import { C as Component } from '../vendor/TypeDef.3.js';
3
+ import '../vendor/TypeDef.5.js';
4
4
 
5
5
  /**
6
6
  * Logger component
@@ -1,5 +1,5 @@
1
- import '../vendor/TypeDef.1.js';
2
- import { M as MethodDecorator } from '../vendor/TypeDef.7.js';
1
+ import '../vendor/TypeDef.2.js';
2
+ import { M as MethodDecorator } from '../vendor/TypeDef.9.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;
@@ -1,9 +1,9 @@
1
- import '../vendor/TypeDef.1.js';
2
- import { C as Controller, c as ControllerProperty } from '../vendor/TypeDef.12.js';
3
- import { M as MethodDecorator } from '../vendor/TypeDef.7.js';
4
- import { D as DTO } from '../vendor/TypeDef.4.js';
5
- import { A as ActionPattern } from '../vendor/TypeDef.6.js';
6
1
  import '../vendor/TypeDef.2.js';
2
+ import { C as Controller, a as ControllerProperty } from '../vendor/TypeDef.13.js';
3
+ import { M as MethodDecorator } from '../vendor/TypeDef.9.js';
4
+ import { D as DTO } from '../vendor/TypeDef.5.js';
5
+ import { A as ActionPattern } from '../vendor/TypeDef.8.js';
6
+ import '../vendor/TypeDef.3.js';
7
7
  import 'node:http';
8
8
 
9
9
  /**
package/decorator/di.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- import '../vendor/TypeDef.1.js';
2
- import { B as BaseObject, L as LifetimeType, I as IBaseObjectConstructor } from '../vendor/TypeDef.2.js';
3
- import { C as ClassDecorator, P as PropertyDecorator } from '../vendor/TypeDef.10.js';
4
- import { S as Schema } from '../vendor/TypeDef.4.js';
5
- import '../vendor/TypeDef.8.js';
1
+ import '../vendor/TypeDef.2.js';
2
+ import { B as BaseObject, L as LifetimeType, I as IBaseObjectConstructor } from '../vendor/TypeDef.3.js';
3
+ import { C as ClassDecorator, P as PropertyDecorator } from '../vendor/TypeDef.11.js';
4
+ import { S as Schema } from '../vendor/TypeDef.5.js';
5
+ import '../vendor/TypeDef.10.js';
6
6
 
7
7
  /**
8
8
  * Class Decorator
@@ -1,8 +1,8 @@
1
- import '../vendor/TypeDef.1.js';
2
- import { D as DTO, S as Schema } from '../vendor/TypeDef.4.js';
3
- import { C as ClassDecorator, P as PropertyDecorator } from '../vendor/TypeDef.10.js';
4
- import { M as MethodDecorator } from '../vendor/TypeDef.7.js';
5
- import '../vendor/TypeDef.8.js';
1
+ import '../vendor/TypeDef.2.js';
2
+ import { D as DTO, S as Schema } from '../vendor/TypeDef.5.js';
3
+ import { C as ClassDecorator, P as PropertyDecorator } from '../vendor/TypeDef.11.js';
4
+ import { M as MethodDecorator } from '../vendor/TypeDef.9.js';
5
+ import '../vendor/TypeDef.10.js';
6
6
 
7
7
  /**
8
8
  * Class Decorator
@@ -1,6 +1,6 @@
1
- import '../vendor/TypeDef.1.js';
2
- import { C as ColumnOptions, j as SimpleColumnType, k as ColumnCommonOptions, l as SpatialColumnType, m as SpatialColumnOptions, W as WithLengthColumnType, n as WithWidthColumnType, o as WithPrecisionColumnType, P as PrimaryGeneratedColumnType, p as ColumnType, V as ValueTransformer, J as JoinColumnOptions, q as JoinTableOptions, r as JoinTableMultipleColumnsOptions, s as ObjectType, t as RelationOptions, S as SelectQueryBuilder, a as DataSource, u as OnDeleteType, v as TreeType, w as ClosureTreeOptions, x as DeferrableType } from '../vendor/TypeDef.3.js';
3
- import { E as EntityOptions, I as IndexOptions } from '../vendor/TypeDef.11.js';
1
+ import '../vendor/TypeDef.2.js';
2
+ import { C as ColumnOptions, j as SimpleColumnType, k as ColumnCommonOptions, l as SpatialColumnType, m as SpatialColumnOptions, W as WithLengthColumnType, n as WithWidthColumnType, o as WithPrecisionColumnType, P as PrimaryGeneratedColumnType, p as ColumnType, V as ValueTransformer, J as JoinColumnOptions, q as JoinTableOptions, r as JoinTableMultipleColumnsOptions, s as ObjectType, t as RelationOptions, S as SelectQueryBuilder, a as DataSource, u as OnDeleteType, v as TreeType, w as ClosureTreeOptions, x as DeferrableType } from '../vendor/TypeDef.4.js';
3
+ import { E as EntityOptions, I as IndexOptions } from '../vendor/TypeDef.12.js';
4
4
  import 'fs';
5
5
  import 'tls';
6
6
  import 'net';
package/helper.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /// <reference types="node" />
2
- import './vendor/TypeDef.1.js';
2
+ import './vendor/TypeDef.2.js';
3
3
  import { PathLike, Dirent, Stats } from 'fs';
4
- import { I as IConstructor } from './vendor/TypeDef.8.js';
4
+ import { I as IConstructor } from './vendor/TypeDef.10.js';
5
5
  import { PathLike as PathLike$1 } from 'node:fs';
6
6
  import { ReadableOptions, Readable } from 'node:stream';
7
7
  import { win32, posix } from 'path';
package/lakutata.cjs CHANGED
@@ -42,11 +42,11 @@ const x = require("./src/exceptions/alias/AliasNotFoundException.cjs");
42
42
 
43
43
  const O = require("./src/exceptions/alias/InvalidAliasNameException.cjs");
44
44
 
45
- const E = require("./src/exceptions/di/DependencyInjectionException.cjs");
45
+ const y = require("./src/exceptions/di/DependencyInjectionException.cjs");
46
46
 
47
- const y = require("./src/exceptions/di/LifetimeLockedException.cjs");
47
+ const m = require("./src/exceptions/di/LifetimeLockedException.cjs");
48
48
 
49
- const m = require("./src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs");
49
+ const E = require("./src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs");
50
50
 
51
51
  const v = require("./src/exceptions/dto/InvalidMethodAcceptException.cjs");
52
52
 
@@ -54,17 +54,15 @@ const P = require("./src/exceptions/dto/InvalidMethodReturnException.cjs");
54
54
 
55
55
  const g = require("./src/exceptions/dto/InvalidValueException.cjs");
56
56
 
57
- const h = require("./src/exceptions/ControllerActionNotFoundException.cjs");
58
-
59
- const A = require("./src/exceptions/DestroyRuntimeContainerException.cjs");
57
+ const h = require("./src/exceptions/DestroyRuntimeContainerException.cjs");
60
58
 
61
59
  const I = require("./src/exceptions/InvalidActionPatternDepthException.cjs");
62
60
 
63
- const C = require("./src/exceptions/InvalidAssistantFunctionTypeException.cjs");
61
+ const A = require("./src/exceptions/InvalidAssistantFunctionTypeException.cjs");
64
62
 
65
- const f = require("./src/exceptions/InvalidObjectTypeException.cjs");
63
+ const C = require("./src/exceptions/InvalidObjectTypeException.cjs");
66
64
 
67
- const M = require("./src/exceptions/MethodNotFoundException.cjs");
65
+ const f = require("./src/exceptions/MethodNotFoundException.cjs");
68
66
 
69
67
  require("./src/types/ActionPattern.cjs");
70
68
 
@@ -250,6 +248,8 @@ require("node:http");
250
248
 
251
249
  require("./src/lib/context/ServiceContext.cjs");
252
250
 
251
+ require("./src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs");
252
+
253
253
  require("./src/lib/helpers/GetObjectPropertyPaths.cjs");
254
254
 
255
255
  require("./src/lib/helpers/UniqueArray.cjs");
@@ -349,11 +349,11 @@ exports.AliasNotFoundException = x.AliasNotFoundException;
349
349
 
350
350
  exports.InvalidAliasNameException = O.InvalidAliasNameException;
351
351
 
352
- exports.DependencyInjectionException = E.DependencyInjectionException;
352
+ exports.DependencyInjectionException = y.DependencyInjectionException;
353
353
 
354
- exports.LifetimeLockedException = y.LifetimeLockedException;
354
+ exports.LifetimeLockedException = m.LifetimeLockedException;
355
355
 
356
- exports.OverridableObjectTargetConfigNotFoundException = m.OverridableObjectTargetConfigNotFoundException;
356
+ exports.OverridableObjectTargetConfigNotFoundException = E.OverridableObjectTargetConfigNotFoundException;
357
357
 
358
358
  exports.InvalidMethodAcceptException = v.InvalidMethodAcceptException;
359
359
 
@@ -361,14 +361,12 @@ exports.InvalidMethodReturnException = P.InvalidMethodReturnException;
361
361
 
362
362
  exports.InvalidValueException = g.InvalidValueException;
363
363
 
364
- exports.ControllerActionNotFoundException = h.ControllerActionNotFoundException;
365
-
366
- exports.DestroyRuntimeContainerException = A.DestroyRuntimeContainerException;
364
+ exports.DestroyRuntimeContainerException = h.DestroyRuntimeContainerException;
367
365
 
368
366
  exports.InvalidActionPatternDepthException = I.InvalidActionPatternDepthException;
369
367
 
370
- exports.InvalidAssistantFunctionTypeException = C.InvalidAssistantFunctionTypeException;
368
+ exports.InvalidAssistantFunctionTypeException = A.InvalidAssistantFunctionTypeException;
371
369
 
372
- exports.InvalidObjectTypeException = f.InvalidObjectTypeException;
370
+ exports.InvalidObjectTypeException = C.InvalidObjectTypeException;
373
371
 
374
- exports.MethodNotFoundException = M.MethodNotFoundException;
372
+ exports.MethodNotFoundException = f.MethodNotFoundException;
package/lakutata.d.ts CHANGED
@@ -1,15 +1,15 @@
1
- import './vendor/TypeDef.1.js';
2
- import { E as Exception } from './vendor/TypeDef.9.js';
3
- export { T as Time } from './vendor/TypeDef.9.js';
4
- export { D as DTO, J as JSONSchema } from './vendor/TypeDef.4.js';
5
- import { a as ModuleOptions, b as ModuleConfigLoader, c as LoadObjectOptions, B as BaseObject, e as event, d as ListenerFn, E as EventAndListener, f as ConstructorOptions, M as Module } from './vendor/TypeDef.2.js';
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.2.js';
1
+ import './vendor/TypeDef.2.js';
2
+ import { E as Exception } from './vendor/TypeDef.7.js';
3
+ export { D as DTO, J as JSONSchema } from './vendor/TypeDef.5.js';
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, d as ListenerFn, E as EventAndListener, f as ConstructorOptions, M as Module } from './vendor/TypeDef.3.js';
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
- export { A as ActionPattern } from './vendor/TypeDef.6.js';
9
- export { C as ClassDecorator, P as PropertyDecorator } from './vendor/TypeDef.10.js';
10
- export { M as MethodDecorator } from './vendor/TypeDef.7.js';
11
- export { I as IConstructor } from './vendor/TypeDef.8.js';
12
- export { I as IPatRun } from './vendor/TypeDef.5.js';
8
+ export { A as ActionPattern } from './vendor/TypeDef.8.js';
9
+ export { C as ClassDecorator, P as PropertyDecorator } from './vendor/TypeDef.11.js';
10
+ export { M as MethodDecorator } from './vendor/TypeDef.9.js';
11
+ export { I as IConstructor } from './vendor/TypeDef.10.js';
12
+ export { I as IPatRun } from './vendor/TypeDef.6.js';
13
13
 
14
14
  declare class ApplicationOptions extends ModuleOptions {
15
15
  /**
@@ -422,10 +422,6 @@ declare class InvalidValueException extends Exception {
422
422
  errno: string | number;
423
423
  }
424
424
 
425
- declare class ControllerActionNotFoundException extends Exception {
426
- errno: string | number;
427
- }
428
-
429
425
  declare class DestroyRuntimeContainerException extends Exception {
430
426
  errno: string | number;
431
427
  }
@@ -448,4 +444,4 @@ declare class MethodNotFoundException extends Exception {
448
444
 
449
445
  type ParameterDecorator<ClassPrototype> = (target: ClassPrototype, propertyKey: string | symbol, parameterIndex: number) => void;
450
446
 
451
- export { AliasExistsException, AliasNotFoundException, Application, ApplicationOptions, BaseObject, ControllerActionNotFoundException, DependencyInjectionException, DestroyRuntimeContainerException, Exception, InvalidActionPatternDepthException, InvalidAliasNameException, InvalidAssistantFunctionTypeException, InvalidMethodAcceptException, InvalidMethodReturnException, InvalidObjectTypeException, InvalidValueException, LifetimeLockedException, LoadObjectOptions, MethodNotFoundException, Module, ModuleOptions, OverridableObjectTargetConfigNotFoundException, type ParameterDecorator };
447
+ export { AliasExistsException, AliasNotFoundException, Application, ApplicationOptions, BaseObject, DependencyInjectionException, DestroyRuntimeContainerException, Exception, InvalidActionPatternDepthException, InvalidAliasNameException, InvalidAssistantFunctionTypeException, InvalidMethodAcceptException, InvalidMethodReturnException, InvalidObjectTypeException, InvalidValueException, LifetimeLockedException, LoadObjectOptions, MethodNotFoundException, Module, ModuleOptions, OverridableObjectTargetConfigNotFoundException, type ParameterDecorator };
package/lakutata.mjs CHANGED
@@ -48,8 +48,6 @@ export { InvalidMethodReturnException } from "./src/exceptions/dto/InvalidMethod
48
48
 
49
49
  export { InvalidValueException } from "./src/exceptions/dto/InvalidValueException.mjs";
50
50
 
51
- export { ControllerActionNotFoundException } from "./src/exceptions/ControllerActionNotFoundException.mjs";
52
-
53
51
  export { DestroyRuntimeContainerException } from "./src/exceptions/DestroyRuntimeContainerException.mjs";
54
52
 
55
53
  export { InvalidActionPatternDepthException } from "./src/exceptions/InvalidActionPatternDepthException.mjs";
@@ -244,6 +242,8 @@ import "node:http";
244
242
 
245
243
  import "./src/lib/context/ServiceContext.mjs";
246
244
 
245
+ import "./src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs";
246
+
247
247
  import "./src/lib/helpers/GetObjectPropertyPaths.mjs";
248
248
 
249
249
  import "./src/lib/helpers/UniqueArray.mjs";
package/orm.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import './vendor/TypeDef.1.js';
2
- import { C as ColumnOptions, e as EntityTarget, y as TableMetadataArgs, z as TreeMetadataArgs, A as IndexMetadataArgs, U as UniqueMetadataArgs, B as CheckMetadataArgs, F as ExclusionMetadataArgs, G as ColumnMetadataArgs, H as RelationMetadataArgs, K as EntityListenerMetadataArgs, L as RelationCountMetadataArgs, X as RelationIdMetadataArgs, Y as EmbeddedMetadataArgs, a as DataSource, D as DataSourceOptions, E as EntityManager, Z as MongoEntityManager, _ as SqljsEntityManager, O as ObjectLiteral, R as Repository, T as TreeRepository, s as ObjectType, f as MongoRepository, S as SelectQueryBuilder, $ as ColumnMetadata, a0 as RelationMetadata, d as EntityMetadata, b as Driver, p as ColumnType, a1 as DatabaseType, M as Migration, a2 as FindOperator, a3 as EqualOperator, a4 as FindOneOptions, a5 as FindManyOptions, a6 as FindTreeOptions, a7 as Logger, a8 as LoggerOptions, g as QueryRunner, a9 as LogLevel, aa as LogMessageType, ab as LogMessage, ac as PrepareLogMessagesOptions, ad as FileLoggerOptions, ae as SaveOptions, af as RemoveOptions, ag as DeepPartial, ah as QueryDeepPartialEntity, ai as InsertResult, aj as ObjectId, ak as FindOptionsWhere, al as UpdateResult, am as UpsertOptions, an as DeleteResult, ao as PickKeysByType, N as NamingStrategyInterface, ap as Table, aq as SchemaBuilder, ar as SqlInMemory, as as TableColumnOptions, at as InsertQueryBuilder, au as DeleteQueryBuilder, av as UpdateQueryBuilder, aw as SoftDeleteQueryBuilder, ax as RelationQueryBuilder, ay as Brackets, az as NotBrackets, aA as EntitySchema, aB as Query, aC as TableCheck, aD as TableColumn, aE as TableExclusion, aF as TableForeignKey, aG as TableIndex, aH as TableUnique, aI as View } from './vendor/TypeDef.3.js';
3
- export { bC as AbstractCursor, bD as AbstractCursorEvents, bE as AbstractCursorOptions, bF as AcceptedFields, bG as AddToSetOperators, bH as AddUserOptions, bI as Admin, bJ as AggregateOptions, bK as AggregationCursor, bL as AggregationCursorOptions, bM as AlternativeType, bN as AnyBulkWriteOperation, bO as AnyError, bP as ArrayElement, bQ as ArrayOperator, bR as Auth, bS as AuthMechanism, bT as AuthMechanismProperties, bU as AutoEncrypter, bV as AutoEncryptionLoggerLevel, bW as AutoEncryptionOptions, bX as AutoEncryptionTlsOptions, bm as BSON, bn as BSONRegExp, b$ as BSONSerializeOptions, bo as BSONSymbol, bp as BSONType, c0 as BSONTypeAlias, bY as Batch, bZ as BatchType, bl as Binary, b_ as BitwiseFilter, c1 as BulkOperationBase, c2 as BulkWriteOperationError, c3 as BulkWriteOptions, c4 as BulkWriteResult, da as CURSOR_FLAGS, c5 as Callback, c6 as CancellationToken, c7 as ChangeStream, c8 as ChangeStreamCollModDocument, c9 as ChangeStreamCreateDocument, ca as ChangeStreamCreateIndexDocument, cb as ChangeStreamDeleteDocument, cc as ChangeStreamDocument, cd as ChangeStreamDocumentCollectionUUID, ce as ChangeStreamDocumentCommon, cf as ChangeStreamDocumentKey, cg as ChangeStreamDocumentOperationDescription, ch as ChangeStreamDropDatabaseDocument, ci as ChangeStreamDropDocument, cj as ChangeStreamDropIndexDocument, ck as ChangeStreamEvents, cl as ChangeStreamInsertDocument, cm as ChangeStreamInvalidateDocument, cn as ChangeStreamNameSpace, co as ChangeStreamOptions, cp as ChangeStreamRefineCollectionShardKeyDocument, cq as ChangeStreamRenameDocument, cr as ChangeStreamReplaceDocument, cs as ChangeStreamReshardCollectionDocument, ct as ChangeStreamShardCollectionDocument, cu as ChangeStreamUpdateDocument, cv as ClientMetadata, cw as ClientMetadataOptions, cx as ClientSession, cy as ClientSessionEvents, cz as ClientSessionOptions, cA as CloseOptions, cC as ClusterTime, cB as ClusteredCollectionOptions, bq as Code, cH as CollStats, cI as CollStatsOptions, cD as CollationOptions, cE as Collection, cF as CollectionInfo, cG as CollectionOptions, cJ as CommandFailedEvent, cK as CommandOperationOptions, cL as CommandStartedEvent, cM as CommandSucceededEvent, cN as CommonEvents, cO as Compressor, cP as CompressorName, cQ as Condition, d5 as ConnectOptions, cT as ConnectionCheckOutFailedEvent, cU as ConnectionCheckOutStartedEvent, cR as ConnectionCheckedInEvent, cS as ConnectionCheckedOutEvent, cV as ConnectionClosedEvent, cW as ConnectionCreatedEvent, cX as ConnectionEvents, cY as ConnectionOptions, cZ as ConnectionPoolClearedEvent, c_ as ConnectionPoolClosedEvent, c$ as ConnectionPoolCreatedEvent, d0 as ConnectionPoolEvents, d1 as ConnectionPoolMonitoringEvent, d2 as ConnectionPoolOptions, d3 as ConnectionPoolReadyEvent, d4 as ConnectionReadyEvent, d6 as CountDocumentsOptions, d7 as CountOptions, d8 as CreateCollectionOptions, d9 as CreateIndexesOptions, db as CursorFlag, dc as CursorStreamOptions, br as DBRef, dd as Db, de as DbOptions, df as DbStatsOptions, bs as Decimal128, dg as DeleteManyModel, dh as DeleteOneModel, di as DeleteOptions, dj as DeleteStatement, dk as DistinctOptions, bu as Document, bv as Double, dl as DriverInfo, dm as DropCollectionOptions, dn as DropDatabaseOptions, dp as DropIndexesOptions, dq as EndSessionOptions, dr as EnhancedOmit, aZ as EntitySchemaColumnOptions, aM as EntitySchemaEmbeddedColumnOptions, a_ as EntitySchemaIndexOptions, aN as EntitySchemaOptions, a$ as EntitySchemaRelationOptions, c as EntitySubscriberInterface, ds as ErrorDescription, dt as EstimatedDocumentCountOptions, du as EvalOptions, dv as EventEmitterWithState, dw as EventsDescription, dx as ExplainOptions, dy as ExplainVerbosity, dz as ExplainVerbosityLike, gR as Feature, gS as FeatureCollection, dA as Filter, dB as FilterOperations, dC as FilterOperators, dD as FindCursor, dE as FindOneAndDeleteOptions, dF as FindOneAndReplaceOptions, dG as FindOneAndUpdateOptions, b1 as FindOperatorType, dH as FindOperators, dI as FindOptions, b3 as FindOptionsOrder, b2 as FindOptionsOrderProperty, b4 as FindOptionsOrderValue, b7 as FindOptionsRelationByString, b6 as FindOptionsRelations, b5 as FindOptionsRelationsProperty, b9 as FindOptionsSelect, ba as FindOptionsSelectByString, b8 as FindOptionsSelectProperty, bb as FindOptionsWhereProperty, dJ as Flatten, dV as GSSAPICanonicalizationValue, dK as GenericListener, gT as GeoJSON, gQ as Geography, gP as Geometry, gO as GeometryCollection, dL as GridFSBucket, dM as GridFSBucketEvents, dN as GridFSBucketOptions, dO as GridFSBucketReadStream, dP as GridFSBucketReadStreamOptions, dQ as GridFSBucketReadStreamOptionsWithRevision, dR as GridFSBucketWriteStream, dS as GridFSBucketWriteStreamOptions, dT as GridFSChunk, dU as GridFSFile, dW as HedgeOptions, dX as Hint, dY as HostAddress, dZ as IndexDescription, d_ as IndexDirection, d$ as IndexInformationOptions, e0 as IndexSpecification, e1 as InferIdType, aQ as InsertEvent, e2 as InsertManyResult, e3 as InsertOneModel, e4 as InsertOneOptions, e5 as InsertOneResult, bw as Int32, e6 as IntegerType, e7 as IsAny, I as IsolationLevel, e8 as Join, J as JoinColumnOptions, bc as JoinOptions, q as JoinTableOptions, e9 as KeysOfAType, ea as KeysOfOtherType, eb as LEGAL_TCP_SOCKET_OPTIONS, ec as LEGAL_TLS_SOCKET_OPTIONS, gJ as LineString, ed as ListCollectionsCursor, ee as ListCollectionsOptions, ef as ListDatabasesOptions, eg as ListDatabasesResult, eh as ListIndexesCursor, ei as ListIndexesOptions, aR as LoadEvent, bd as LogMessageFormat, bx as Long, el as MONGO_CLIENT_EVENTS, ej as MatchKeysAndValues, by as MaxKey, aP as MigrationInterface, bz as MinKey, b0 as MixedList, ek as ModifyResult, em as MongoAPIError, en as MongoAWSError, eo as MongoBatchReExecutionError, ep as MongoBulkWriteError, eq as MongoChangeStreamError, er as MongoClient, es as MongoClientEvents, et as MongoClientOptions, eu as MongoCompatibilityError, ev as MongoCredentials, ew as MongoCredentialsOptions, ex as MongoCursorExhaustedError, ey as MongoCursorInUseError, ez as MongoDBNamespace, eA as MongoDecompressionError, eB as MongoDriverError, eC as MongoError, eD as MongoErrorLabel, eE as MongoExpiredSessionError, eF as MongoGridFSChunkError, eG as MongoGridFSStreamError, eH as MongoInvalidArgumentError, eI as MongoKerberosError, eJ as MongoMissingCredentialsError, eK as MongoMissingDependencyError, eL as MongoNetworkError, eM as MongoNetworkErrorOptions, eN as MongoNetworkTimeoutError, eO as MongoNotConnectedError, eP as MongoOptions, eQ as MongoParseError, eR as MongoRuntimeError, eS as MongoServerClosedError, eT as MongoServerError, eU as MongoServerSelectionError, eV as MongoSystemError, eW as MongoTailableCursorError, eX as MongoTopologyClosedError, eY as MongoTransactionError, eZ as MongoUnexpectedServerResponseError, e_ as MongoWriteConcernError, e$ as MonitorEvents, f0 as MonitorOptions, gM as MultiLineString, gL as MultiPoint, gN as MultiPolygon, f1 as NestedPaths, f2 as NestedPathsOfType, f3 as NonObjectIdLikeDocument, f4 as NotAcceptedFields, f5 as NumericType, f6 as OIDCMechanismServerStep1, f7 as OIDCRefreshFunction, f8 as OIDCRequestFunction, f9 as OIDCRequestTokenResult, fa as OneOrMore, fb as OnlyFieldsOfType, fc as OperationOptions, fd as OperationTime, fe as OptionalId, ff as OptionalUnlessRequiredId, i as OrderByCondition, fg as OrderedBulkOperation, fh as PkFactory, gI as Point, gK as Polygon, fi as ProfilingLevel, fj as ProfilingLevelOptions, fk as PropertyType, fl as ProxyOptions, fm as PullAllOperator, fn as PullOperator, fo as PushOperator, aK as QueryBuilder, aL as QueryResult, Q as QueryResultCache, aJ as QueryResultCacheOptions, fp as ReadConcern, fq as ReadConcernLevel, fr as ReadConcernLike, fs as ReadPreference, ft as ReadPreferenceFromOptions, fu as ReadPreferenceLike, fv as ReadPreferenceLikeOptions, fw as ReadPreferenceMode, fx as ReadPreferenceOptions, aV as RecoverEvent, fy as RegExpOrString, t as RelationOptions, aT as RemoveEvent, fz as RemoveUserOptions, fA as RenameOptions, fB as ReplaceOneModel, fC as ReplaceOptions, h as ReplicationMode, fD as ResumeOptions, fE as ResumeToken, fF as ReturnDocument, fG as RoleSpecification, fH as RootFilterOperators, fI as RunCommandOptions, fJ as SchemaMember, fK as SelectServerOptions, fL as ServerApi, fM as ServerApiVersion, fN as ServerCapabilities, fO as ServerClosedEvent, fP as ServerDescription, fQ as ServerDescriptionChangedEvent, fR as ServerEvents, fS as ServerHeartbeatFailedEvent, fT as ServerHeartbeatStartedEvent, fU as ServerHeartbeatSucceededEvent, fV as ServerOpeningEvent, fW as ServerSession, fX as ServerSessionId, fY as ServerType, fZ as SetFields, f_ as SetProfilingLevelOptions, aU as SoftRemoveEvent, f$ as Sort, g0 as SortDirection, g1 as Stream, g2 as StreamDescription, g3 as StreamDescriptionOptions, g4 as StrictFilter, g5 as StrictMatchKeysAndValues, g6 as StrictUpdateFilter, g7 as SupportedNodeConnectionOptions, g8 as SupportedSocketOptions, g9 as SupportedTLSConnectionOptions, ga as SupportedTLSSocketOptions, be as TableCheckOptions, bf as TableExclusionOptions, bg as TableForeignKeyOptions, bh as TableIndexOptions, bi as TableOptions, bj as TableUniqueOptions, gb as TagSet, gc as TimeSeriesCollectionOptions, bB as Timestamp, gd as TopologyClosedEvent, ge as TopologyDescription, gf as TopologyDescriptionChangedEvent, gg as TopologyDescriptionOptions, gh as TopologyEvents, gi as TopologyOpeningEvent, gj as TopologyType, gk as TopologyVersion, gl as Transaction, aW as TransactionCommitEvent, gm as TransactionOptions, aX as TransactionRollbackEvent, aY as TransactionStartEvent, gn as TypedEventEmitter, go as UnorderedBulkOperation, gp as UpdateDescription, aS as UpdateEvent, gq as UpdateFilter, gr as UpdateManyModel, gs as UpdateOneModel, gt as UpdateOptions, gu as UpdateStatement, gv as ValidateCollectionOptions, V as ValueTransformer, bk as ViewOptions, gw as W, aO as WhereExpressionBuilder, gx as WiredTigerData, gy as WithId, gA as WithSessionCallback, gB as WithTransactionCallback, gz as WithoutId, gC as WriteConcern, gD as WriteConcernError, gE as WriteConcernErrorData, gF as WriteConcernOptions, gG as WriteConcernSettings, gH as WriteError, bt as deserialize, bA as serialize } from './vendor/TypeDef.3.js';
4
- export { E as EntityOptions, I as IndexOptions } from './vendor/TypeDef.11.js';
1
+ import './vendor/TypeDef.2.js';
2
+ import { C as ColumnOptions, e as EntityTarget, y as TableMetadataArgs, z as TreeMetadataArgs, A as IndexMetadataArgs, U as UniqueMetadataArgs, B as CheckMetadataArgs, F as ExclusionMetadataArgs, G as ColumnMetadataArgs, H as RelationMetadataArgs, K as EntityListenerMetadataArgs, L as RelationCountMetadataArgs, X as RelationIdMetadataArgs, Y as EmbeddedMetadataArgs, a as DataSource, D as DataSourceOptions, E as EntityManager, Z as MongoEntityManager, _ as SqljsEntityManager, O as ObjectLiteral, R as Repository, T as TreeRepository, s as ObjectType, f as MongoRepository, S as SelectQueryBuilder, $ as ColumnMetadata, a0 as RelationMetadata, d as EntityMetadata, b as Driver, p as ColumnType, a1 as DatabaseType, M as Migration, a2 as FindOperator, a3 as EqualOperator, a4 as FindOneOptions, a5 as FindManyOptions, a6 as FindTreeOptions, a7 as Logger, a8 as LoggerOptions, g as QueryRunner, a9 as LogLevel, aa as LogMessageType, ab as LogMessage, ac as PrepareLogMessagesOptions, ad as FileLoggerOptions, ae as SaveOptions, af as RemoveOptions, ag as DeepPartial, ah as QueryDeepPartialEntity, ai as InsertResult, aj as ObjectId, ak as FindOptionsWhere, al as UpdateResult, am as UpsertOptions, an as DeleteResult, ao as PickKeysByType, N as NamingStrategyInterface, ap as Table, aq as SchemaBuilder, ar as SqlInMemory, as as TableColumnOptions, at as InsertQueryBuilder, au as DeleteQueryBuilder, av as UpdateQueryBuilder, aw as SoftDeleteQueryBuilder, ax as RelationQueryBuilder, ay as Brackets, az as NotBrackets, aA as EntitySchema, aB as Query, aC as TableCheck, aD as TableColumn, aE as TableExclusion, aF as TableForeignKey, aG as TableIndex, aH as TableUnique, aI as View } from './vendor/TypeDef.4.js';
3
+ export { bC as AbstractCursor, bD as AbstractCursorEvents, bE as AbstractCursorOptions, bF as AcceptedFields, bG as AddToSetOperators, bH as AddUserOptions, bI as Admin, bJ as AggregateOptions, bK as AggregationCursor, bL as AggregationCursorOptions, bM as AlternativeType, bN as AnyBulkWriteOperation, bO as AnyError, bP as ArrayElement, bQ as ArrayOperator, bR as Auth, bS as AuthMechanism, bT as AuthMechanismProperties, bU as AutoEncrypter, bV as AutoEncryptionLoggerLevel, bW as AutoEncryptionOptions, bX as AutoEncryptionTlsOptions, bm as BSON, bn as BSONRegExp, b$ as BSONSerializeOptions, bo as BSONSymbol, bp as BSONType, c0 as BSONTypeAlias, bY as Batch, bZ as BatchType, bl as Binary, b_ as BitwiseFilter, c1 as BulkOperationBase, c2 as BulkWriteOperationError, c3 as BulkWriteOptions, c4 as BulkWriteResult, da as CURSOR_FLAGS, c5 as Callback, c6 as CancellationToken, c7 as ChangeStream, c8 as ChangeStreamCollModDocument, c9 as ChangeStreamCreateDocument, ca as ChangeStreamCreateIndexDocument, cb as ChangeStreamDeleteDocument, cc as ChangeStreamDocument, cd as ChangeStreamDocumentCollectionUUID, ce as ChangeStreamDocumentCommon, cf as ChangeStreamDocumentKey, cg as ChangeStreamDocumentOperationDescription, ch as ChangeStreamDropDatabaseDocument, ci as ChangeStreamDropDocument, cj as ChangeStreamDropIndexDocument, ck as ChangeStreamEvents, cl as ChangeStreamInsertDocument, cm as ChangeStreamInvalidateDocument, cn as ChangeStreamNameSpace, co as ChangeStreamOptions, cp as ChangeStreamRefineCollectionShardKeyDocument, cq as ChangeStreamRenameDocument, cr as ChangeStreamReplaceDocument, cs as ChangeStreamReshardCollectionDocument, ct as ChangeStreamShardCollectionDocument, cu as ChangeStreamUpdateDocument, cv as ClientMetadata, cw as ClientMetadataOptions, cx as ClientSession, cy as ClientSessionEvents, cz as ClientSessionOptions, cA as CloseOptions, cC as ClusterTime, cB as ClusteredCollectionOptions, bq as Code, cH as CollStats, cI as CollStatsOptions, cD as CollationOptions, cE as Collection, cF as CollectionInfo, cG as CollectionOptions, cJ as CommandFailedEvent, cK as CommandOperationOptions, cL as CommandStartedEvent, cM as CommandSucceededEvent, cN as CommonEvents, cO as Compressor, cP as CompressorName, cQ as Condition, d5 as ConnectOptions, cT as ConnectionCheckOutFailedEvent, cU as ConnectionCheckOutStartedEvent, cR as ConnectionCheckedInEvent, cS as ConnectionCheckedOutEvent, cV as ConnectionClosedEvent, cW as ConnectionCreatedEvent, cX as ConnectionEvents, cY as ConnectionOptions, cZ as ConnectionPoolClearedEvent, c_ as ConnectionPoolClosedEvent, c$ as ConnectionPoolCreatedEvent, d0 as ConnectionPoolEvents, d1 as ConnectionPoolMonitoringEvent, d2 as ConnectionPoolOptions, d3 as ConnectionPoolReadyEvent, d4 as ConnectionReadyEvent, d6 as CountDocumentsOptions, d7 as CountOptions, d8 as CreateCollectionOptions, d9 as CreateIndexesOptions, db as CursorFlag, dc as CursorStreamOptions, br as DBRef, dd as Db, de as DbOptions, df as DbStatsOptions, bs as Decimal128, dg as DeleteManyModel, dh as DeleteOneModel, di as DeleteOptions, dj as DeleteStatement, dk as DistinctOptions, bu as Document, bv as Double, dl as DriverInfo, dm as DropCollectionOptions, dn as DropDatabaseOptions, dp as DropIndexesOptions, dq as EndSessionOptions, dr as EnhancedOmit, aZ as EntitySchemaColumnOptions, aM as EntitySchemaEmbeddedColumnOptions, a_ as EntitySchemaIndexOptions, aN as EntitySchemaOptions, a$ as EntitySchemaRelationOptions, c as EntitySubscriberInterface, ds as ErrorDescription, dt as EstimatedDocumentCountOptions, du as EvalOptions, dv as EventEmitterWithState, dw as EventsDescription, dx as ExplainOptions, dy as ExplainVerbosity, dz as ExplainVerbosityLike, gR as Feature, gS as FeatureCollection, dA as Filter, dB as FilterOperations, dC as FilterOperators, dD as FindCursor, dE as FindOneAndDeleteOptions, dF as FindOneAndReplaceOptions, dG as FindOneAndUpdateOptions, b1 as FindOperatorType, dH as FindOperators, dI as FindOptions, b3 as FindOptionsOrder, b2 as FindOptionsOrderProperty, b4 as FindOptionsOrderValue, b7 as FindOptionsRelationByString, b6 as FindOptionsRelations, b5 as FindOptionsRelationsProperty, b9 as FindOptionsSelect, ba as FindOptionsSelectByString, b8 as FindOptionsSelectProperty, bb as FindOptionsWhereProperty, dJ as Flatten, dV as GSSAPICanonicalizationValue, dK as GenericListener, gT as GeoJSON, gQ as Geography, gP as Geometry, gO as GeometryCollection, dL as GridFSBucket, dM as GridFSBucketEvents, dN as GridFSBucketOptions, dO as GridFSBucketReadStream, dP as GridFSBucketReadStreamOptions, dQ as GridFSBucketReadStreamOptionsWithRevision, dR as GridFSBucketWriteStream, dS as GridFSBucketWriteStreamOptions, dT as GridFSChunk, dU as GridFSFile, dW as HedgeOptions, dX as Hint, dY as HostAddress, dZ as IndexDescription, d_ as IndexDirection, d$ as IndexInformationOptions, e0 as IndexSpecification, e1 as InferIdType, aQ as InsertEvent, e2 as InsertManyResult, e3 as InsertOneModel, e4 as InsertOneOptions, e5 as InsertOneResult, bw as Int32, e6 as IntegerType, e7 as IsAny, I as IsolationLevel, e8 as Join, J as JoinColumnOptions, bc as JoinOptions, q as JoinTableOptions, e9 as KeysOfAType, ea as KeysOfOtherType, eb as LEGAL_TCP_SOCKET_OPTIONS, ec as LEGAL_TLS_SOCKET_OPTIONS, gJ as LineString, ed as ListCollectionsCursor, ee as ListCollectionsOptions, ef as ListDatabasesOptions, eg as ListDatabasesResult, eh as ListIndexesCursor, ei as ListIndexesOptions, aR as LoadEvent, bd as LogMessageFormat, bx as Long, el as MONGO_CLIENT_EVENTS, ej as MatchKeysAndValues, by as MaxKey, aP as MigrationInterface, bz as MinKey, b0 as MixedList, ek as ModifyResult, em as MongoAPIError, en as MongoAWSError, eo as MongoBatchReExecutionError, ep as MongoBulkWriteError, eq as MongoChangeStreamError, er as MongoClient, es as MongoClientEvents, et as MongoClientOptions, eu as MongoCompatibilityError, ev as MongoCredentials, ew as MongoCredentialsOptions, ex as MongoCursorExhaustedError, ey as MongoCursorInUseError, ez as MongoDBNamespace, eA as MongoDecompressionError, eB as MongoDriverError, eC as MongoError, eD as MongoErrorLabel, eE as MongoExpiredSessionError, eF as MongoGridFSChunkError, eG as MongoGridFSStreamError, eH as MongoInvalidArgumentError, eI as MongoKerberosError, eJ as MongoMissingCredentialsError, eK as MongoMissingDependencyError, eL as MongoNetworkError, eM as MongoNetworkErrorOptions, eN as MongoNetworkTimeoutError, eO as MongoNotConnectedError, eP as MongoOptions, eQ as MongoParseError, eR as MongoRuntimeError, eS as MongoServerClosedError, eT as MongoServerError, eU as MongoServerSelectionError, eV as MongoSystemError, eW as MongoTailableCursorError, eX as MongoTopologyClosedError, eY as MongoTransactionError, eZ as MongoUnexpectedServerResponseError, e_ as MongoWriteConcernError, e$ as MonitorEvents, f0 as MonitorOptions, gM as MultiLineString, gL as MultiPoint, gN as MultiPolygon, f1 as NestedPaths, f2 as NestedPathsOfType, f3 as NonObjectIdLikeDocument, f4 as NotAcceptedFields, f5 as NumericType, f6 as OIDCMechanismServerStep1, f7 as OIDCRefreshFunction, f8 as OIDCRequestFunction, f9 as OIDCRequestTokenResult, fa as OneOrMore, fb as OnlyFieldsOfType, fc as OperationOptions, fd as OperationTime, fe as OptionalId, ff as OptionalUnlessRequiredId, i as OrderByCondition, fg as OrderedBulkOperation, fh as PkFactory, gI as Point, gK as Polygon, fi as ProfilingLevel, fj as ProfilingLevelOptions, fk as PropertyType, fl as ProxyOptions, fm as PullAllOperator, fn as PullOperator, fo as PushOperator, aK as QueryBuilder, aL as QueryResult, Q as QueryResultCache, aJ as QueryResultCacheOptions, fp as ReadConcern, fq as ReadConcernLevel, fr as ReadConcernLike, fs as ReadPreference, ft as ReadPreferenceFromOptions, fu as ReadPreferenceLike, fv as ReadPreferenceLikeOptions, fw as ReadPreferenceMode, fx as ReadPreferenceOptions, aV as RecoverEvent, fy as RegExpOrString, t as RelationOptions, aT as RemoveEvent, fz as RemoveUserOptions, fA as RenameOptions, fB as ReplaceOneModel, fC as ReplaceOptions, h as ReplicationMode, fD as ResumeOptions, fE as ResumeToken, fF as ReturnDocument, fG as RoleSpecification, fH as RootFilterOperators, fI as RunCommandOptions, fJ as SchemaMember, fK as SelectServerOptions, fL as ServerApi, fM as ServerApiVersion, fN as ServerCapabilities, fO as ServerClosedEvent, fP as ServerDescription, fQ as ServerDescriptionChangedEvent, fR as ServerEvents, fS as ServerHeartbeatFailedEvent, fT as ServerHeartbeatStartedEvent, fU as ServerHeartbeatSucceededEvent, fV as ServerOpeningEvent, fW as ServerSession, fX as ServerSessionId, fY as ServerType, fZ as SetFields, f_ as SetProfilingLevelOptions, aU as SoftRemoveEvent, f$ as Sort, g0 as SortDirection, g1 as Stream, g2 as StreamDescription, g3 as StreamDescriptionOptions, g4 as StrictFilter, g5 as StrictMatchKeysAndValues, g6 as StrictUpdateFilter, g7 as SupportedNodeConnectionOptions, g8 as SupportedSocketOptions, g9 as SupportedTLSConnectionOptions, ga as SupportedTLSSocketOptions, be as TableCheckOptions, bf as TableExclusionOptions, bg as TableForeignKeyOptions, bh as TableIndexOptions, bi as TableOptions, bj as TableUniqueOptions, gb as TagSet, gc as TimeSeriesCollectionOptions, bB as Timestamp, gd as TopologyClosedEvent, ge as TopologyDescription, gf as TopologyDescriptionChangedEvent, gg as TopologyDescriptionOptions, gh as TopologyEvents, gi as TopologyOpeningEvent, gj as TopologyType, gk as TopologyVersion, gl as Transaction, aW as TransactionCommitEvent, gm as TransactionOptions, aX as TransactionRollbackEvent, aY as TransactionStartEvent, gn as TypedEventEmitter, go as UnorderedBulkOperation, gp as UpdateDescription, aS as UpdateEvent, gq as UpdateFilter, gr as UpdateManyModel, gs as UpdateOneModel, gt as UpdateOptions, gu as UpdateStatement, gv as ValidateCollectionOptions, V as ValueTransformer, bk as ViewOptions, gw as W, aO as WhereExpressionBuilder, gx as WiredTigerData, gy as WithId, gA as WithSessionCallback, gB as WithTransactionCallback, gz as WithoutId, gC as WriteConcern, gD as WriteConcernError, gE as WriteConcernErrorData, gF as WriteConcernOptions, gG as WriteConcernSettings, gH as WriteError, bt as deserialize, bA as serialize } from './vendor/TypeDef.4.js';
4
+ export { E as EntityOptions, I as IndexOptions } from './vendor/TypeDef.12.js';
5
5
  import 'fs';
6
6
  import 'tls';
7
7
  import 'net';
package/orm.mjs CHANGED
@@ -2,11 +2,11 @@ import "./vendor/Package.4.mjs";
2
2
 
3
3
  import { g as e } from "./vendor/Package.5.mjs";
4
4
 
5
- import { r, F as a, c, d, O as f, P as O, B as _, f as b, R as P, D as E, e as R } from "./vendor/Package.14.mjs";
5
+ import { r, F as a, b as c, c as d, O, P as _, B as b, d as P, R as E, D as R, e as B } from "./vendor/Package.14.mjs";
6
6
 
7
- export { A as AbstractLogger, w as AdvancedConsoleLogger, i as Brackets, C as ConnectionOptionsReader, o as DefaultNamingStrategy, g as DeleteQueryBuilder, l as DeleteResult, z as EntityMetadata, y as FileLogger, t as FindOperator, v as FindOptionsUtils, s as In, I as InsertQueryBuilder, j as InsertResult, p as InstanceChecker, M as Migration, n as MigrationExecutor, J as MongoRepository, Z as MssqlParameter, Q as QueryBuilder, m as QueryResult, h as RelationQueryBuilder, G as Repository, S as SelectQueryBuilder, x as SimpleConsoleLogger, Y as Table, K as TableCheck, L as TableColumn, N as TableExclusion, V as TableForeignKey, W as TableIndex, X as TableUnique, H as TreeRepository, T as TreeRepositoryUtils, U as UpdateQueryBuilder, k as UpdateResult, q as getFromContainer, u as useContainer } from "./vendor/Package.14.mjs";
7
+ export { A as AbstractLogger, w as AdvancedConsoleLogger, i as Brackets, f as ConnectionOptionsReader, o as DefaultNamingStrategy, g as DeleteQueryBuilder, l as DeleteResult, z as EntityMetadata, y as FileLogger, t as FindOperator, v as FindOptionsUtils, s as In, I as InsertQueryBuilder, j as InsertResult, p as InstanceChecker, M as Migration, n as MigrationExecutor, J as MongoRepository, Z as MssqlParameter, Q as QueryBuilder, m as QueryResult, h as RelationQueryBuilder, G as Repository, S as SelectQueryBuilder, x as SimpleConsoleLogger, Y as Table, K as TableCheck, L as TableColumn, N as TableExclusion, V as TableForeignKey, W as TableIndex, X as TableUnique, H as TreeRepository, T as TreeRepositoryUtils, U as UpdateQueryBuilder, k as UpdateResult, q as getFromContainer, u as useContainer } from "./vendor/Package.14.mjs";
8
8
 
9
- import { D as B } from "./vendor/Package.15.mjs";
9
+ import { D as F } from "./vendor/Package.15.mjs";
10
10
 
11
11
  import "./vendor/Package.8.mjs";
12
12
 
@@ -50,9 +50,9 @@ import "./vendor/Package.72.mjs";
50
50
 
51
51
  import "fs/promises";
52
52
 
53
- var F = r();
53
+ var C = r();
54
54
 
55
- const D = e(F);
55
+ const D = e(C);
56
56
 
57
57
  var $ = {};
58
58
 
@@ -194,15 +194,15 @@ function ge(e) {
194
194
 
195
195
  me = Oe.Any = ge;
196
196
 
197
- var he = {};
197
+ var be = {};
198
198
 
199
199
  "use strict";
200
200
 
201
- Object.defineProperty(he, "__esModule", {
201
+ Object.defineProperty(be, "__esModule", {
202
202
  value: true
203
203
  });
204
204
 
205
- var be = he.ArrayContainedBy = void 0;
205
+ var he = be.ArrayContainedBy = void 0;
206
206
 
207
207
  const je = a;
208
208
 
@@ -210,7 +210,7 @@ function Pe(e) {
210
210
  return new je.FindOperator("arrayContainedBy", e);
211
211
  }
212
212
 
213
- be = he.ArrayContainedBy = Pe;
213
+ he = be.ArrayContainedBy = Pe;
214
214
 
215
215
  var Me = {};
216
216
 
@@ -443,21 +443,21 @@ var _t = mt.Not = void 0;
443
443
 
444
444
  const gt = a;
445
445
 
446
- function ht(e) {
446
+ function bt(e) {
447
447
  return new gt.FindOperator("not", e);
448
448
  }
449
449
 
450
- _t = mt.Not = ht;
450
+ _t = mt.Not = bt;
451
451
 
452
- var bt = {};
452
+ var ht = {};
453
453
 
454
454
  "use strict";
455
455
 
456
- Object.defineProperty(bt, "__esModule", {
456
+ Object.defineProperty(ht, "__esModule", {
457
457
  value: true
458
458
  });
459
459
 
460
- var jt = bt.Raw = void 0;
460
+ var jt = ht.Raw = void 0;
461
461
 
462
462
  const Pt = a;
463
463
 
@@ -468,7 +468,7 @@ function Mt(e, t) {
468
468
  return new Pt.FindOperator("raw", [], true, true, e, t);
469
469
  }
470
470
 
471
- jt = bt.Raw = Mt;
471
+ jt = ht.Raw = Mt;
472
472
 
473
473
  var Et = {};
474
474
 
@@ -602,7 +602,7 @@ Object.defineProperty(zt, "__esModule", {
602
602
 
603
603
  var Zt = zt.BaseEntity = void 0;
604
604
 
605
- const Jt = f;
605
+ const Jt = O;
606
606
 
607
607
  class BaseEntity {
608
608
  hasId() {
@@ -950,7 +950,7 @@ var or = ar.BSON = void 0;
950
950
  return t.serialize;
951
951
  }
952
952
  });
953
- const r = O;
953
+ const r = _;
954
954
  })(nr);
955
955
 
956
956
  const ir = e(nr);
@@ -989,7 +989,7 @@ Object.defineProperty(lr, "__esModule", {
989
989
 
990
990
  var yr = lr.NotBrackets = void 0;
991
991
 
992
- const pr = _;
992
+ const pr = b;
993
993
 
994
994
  class NotBrackets extends pr.Brackets {
995
995
  constructor() {
@@ -1000,7 +1000,7 @@ class NotBrackets extends pr.Brackets {
1000
1000
 
1001
1001
  yr = lr.NotBrackets = NotBrackets;
1002
1002
 
1003
- var vr = b();
1003
+ var vr = P();
1004
1004
 
1005
1005
  const fr = e(vr);
1006
1006
 
@@ -1014,11 +1014,11 @@ Object.defineProperty(Or, "__esModule", {
1014
1014
 
1015
1015
  var mr = Or.LegacyOracleNamingStrategy = void 0;
1016
1016
 
1017
- const _r = P;
1017
+ const _r = E;
1018
1018
 
1019
- const gr = E;
1019
+ const gr = R;
1020
1020
 
1021
- const hr = R;
1021
+ const br = B;
1022
1022
 
1023
1023
  class LegacyOracleNamingStrategy extends gr.DefaultNamingStrategy {
1024
1024
  constructor(e = "hash") {
@@ -1034,12 +1034,12 @@ class LegacyOracleNamingStrategy extends gr.DefaultNamingStrategy {
1034
1034
  } else if (this.shortenStrategy === "hash") {
1035
1035
  return this.hashIdentifier(s, this.DEFAULT_COLUMN_PREFIX);
1036
1036
  } else {
1037
- throw new hr.TypeORMError(`Invalid shortenStrategy`);
1037
+ throw new br.TypeORMError(`Invalid shortenStrategy`);
1038
1038
  }
1039
1039
  }
1040
1040
  hashIdentifier(e, t) {
1041
1041
  if (t.length >= this.IDENTIFIER_MAX_SIZE) {
1042
- throw new hr.TypeORMError(`Prefix must be shorter than IDENTIFIER_MAX_SIZE`);
1042
+ throw new br.TypeORMError(`Prefix must be shorter than IDENTIFIER_MAX_SIZE`);
1043
1043
  }
1044
1044
  return t + _r.RandomGenerator.sha1(e).substring(0, this.IDENTIFIER_MAX_SIZE - t.length);
1045
1045
  }
@@ -1054,15 +1054,15 @@ class LegacyOracleNamingStrategy extends gr.DefaultNamingStrategy {
1054
1054
 
1055
1055
  mr = Or.LegacyOracleNamingStrategy = LegacyOracleNamingStrategy;
1056
1056
 
1057
- var br = {};
1057
+ var hr = {};
1058
1058
 
1059
1059
  "use strict";
1060
1060
 
1061
- Object.defineProperty(br, "__esModule", {
1061
+ Object.defineProperty(hr, "__esModule", {
1062
1062
  value: true
1063
1063
  });
1064
1064
 
1065
- var jr = br.EntitySchema = void 0;
1065
+ var jr = hr.EntitySchema = void 0;
1066
1066
 
1067
1067
  class EntitySchema {
1068
1068
  constructor(e) {
@@ -1071,7 +1071,7 @@ class EntitySchema {
1071
1071
  }
1072
1072
  }
1073
1073
 
1074
- jr = br.EntitySchema = EntitySchema;
1074
+ jr = hr.EntitySchema = EntitySchema;
1075
1075
 
1076
1076
  var Pr = {};
1077
1077
 
@@ -1101,8 +1101,8 @@ class EntitySchemaOptions {}
1101
1101
 
1102
1102
  Rr = Er.EntitySchemaOptions = EntitySchemaOptions;
1103
1103
 
1104
- const Br = B.DataSource;
1104
+ const Br = F.DataSource;
1105
1105
 
1106
1106
  const Ir = vr.MongoEntityManager;
1107
1107
 
1108
- export { pe as And, me as Any, be as ArrayContainedBy, Ee as ArrayContains, Se as ArrayOverlap, Zt as BaseEntity, we as Between, Br as DataSource, jr as EntitySchema, Mr as EntitySchemaEmbeddedColumnOptions, Rr as EntitySchemaOptions, xe as Equal, De as EqualOperator, rt as ILike, Ke as IsNull, Rt as JsonContains, mr as LegacyOracleNamingStrategy, Ge as LessThan, Ye as LessThanOrEqual, ot as Like, Ir as MongoEntityManager, dt as MoreThan, vt as MoreThanOrEqual, _t as Not, yr as NotBrackets, jt as Raw };
1108
+ export { pe as And, me as Any, he as ArrayContainedBy, Ee as ArrayContains, Se as ArrayOverlap, Zt as BaseEntity, we as Between, Br as DataSource, jr as EntitySchema, Mr as EntitySchemaEmbeddedColumnOptions, Rr as EntitySchemaOptions, xe as Equal, De as EqualOperator, rt as ILike, Ke as IsNull, Rt as JsonContains, mr as LegacyOracleNamingStrategy, Ge as LessThan, Ye as LessThanOrEqual, ot as Like, Ir as MongoEntityManager, dt as MoreThan, vt as MoreThanOrEqual, _t as Not, yr as NotBrackets, jt as Raw };