lakutata 2.0.65 → 2.0.66

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. package/com/cacher.d.ts +4 -4
  2. package/com/database.cjs +0 -2
  3. package/com/database.d.ts +4 -4
  4. package/com/database.mjs +0 -2
  5. package/com/docker.d.ts +5 -5
  6. package/com/entrypoint.d.ts +2 -2
  7. package/com/logger.d.ts +1 -1
  8. package/com/monitor.d.ts +2 -2
  9. package/decorator/asst.d.ts +1 -1
  10. package/decorator/ctrl.d.ts +4 -4
  11. package/decorator/di.d.ts +3 -3
  12. package/decorator/dto.d.ts +3 -3
  13. package/decorator/orm.cjs +86 -88
  14. package/decorator/orm.d.ts +51 -75
  15. package/decorator/orm.mjs +44 -46
  16. package/helper.d.ts +1 -1
  17. package/lakutata.d.ts +10 -10
  18. package/orm.cjs +1075 -112
  19. package/orm.d.ts +6 -6
  20. package/orm.mjs +1015 -17
  21. package/package.json +1 -1
  22. package/provider/database.cjs +0 -2
  23. package/provider/database.d.ts +4 -4
  24. package/provider/database.mjs +0 -2
  25. package/provider/passwordHash.d.ts +1 -1
  26. package/src/components/Database.cjs +0 -2
  27. package/src/components/Database.mjs +0 -2
  28. package/src/decorators/orm/AfterInsert.cjs +27 -7
  29. package/src/decorators/orm/AfterInsert.mjs +28 -6
  30. package/src/decorators/orm/AfterLoad.cjs +27 -7
  31. package/src/decorators/orm/AfterLoad.mjs +28 -6
  32. package/src/decorators/orm/AfterRecover.cjs +27 -7
  33. package/src/decorators/orm/AfterRecover.mjs +28 -6
  34. package/src/decorators/orm/AfterRemove.cjs +27 -7
  35. package/src/decorators/orm/AfterRemove.mjs +28 -6
  36. package/src/decorators/orm/AfterSoftRemove.cjs +27 -7
  37. package/src/decorators/orm/AfterSoftRemove.mjs +28 -6
  38. package/src/decorators/orm/AfterUpdate.cjs +27 -7
  39. package/src/decorators/orm/AfterUpdate.mjs +28 -6
  40. package/src/decorators/orm/BeforeInsert.cjs +27 -7
  41. package/src/decorators/orm/BeforeInsert.mjs +28 -6
  42. package/src/decorators/orm/BeforeRecover.cjs +27 -7
  43. package/src/decorators/orm/BeforeRecover.mjs +28 -6
  44. package/src/decorators/orm/BeforeRemove.cjs +27 -7
  45. package/src/decorators/orm/BeforeRemove.mjs +28 -6
  46. package/src/decorators/orm/BeforeSoftRemove.cjs +27 -7
  47. package/src/decorators/orm/BeforeSoftRemove.mjs +28 -6
  48. package/src/decorators/orm/BeforeUpdate.cjs +27 -7
  49. package/src/decorators/orm/BeforeUpdate.mjs +28 -6
  50. package/src/decorators/orm/Check.cjs +30 -7
  51. package/src/decorators/orm/Check.mjs +31 -6
  52. package/src/decorators/orm/ChildEntity.cjs +30 -7
  53. package/src/decorators/orm/ChildEntity.mjs +31 -6
  54. package/src/decorators/orm/Column.cjs +62 -7
  55. package/src/decorators/orm/Column.mjs +63 -6
  56. package/src/decorators/orm/CreateDateColumn.cjs +26 -7
  57. package/src/decorators/orm/CreateDateColumn.mjs +27 -6
  58. package/src/decorators/orm/DeleteDateColumn.cjs +26 -7
  59. package/src/decorators/orm/DeleteDateColumn.mjs +27 -6
  60. package/src/decorators/orm/Entity.cjs +36 -7
  61. package/src/decorators/orm/Entity.mjs +37 -6
  62. package/src/decorators/orm/EventSubscriber.cjs +23 -7
  63. package/src/decorators/orm/EventSubscriber.mjs +24 -6
  64. package/src/decorators/orm/Exclusion.cjs +30 -7
  65. package/src/decorators/orm/Exclusion.mjs +31 -6
  66. package/src/decorators/orm/Generated.cjs +25 -7
  67. package/src/decorators/orm/Generated.mjs +26 -6
  68. package/src/decorators/orm/Index.cjs +42 -7
  69. package/src/decorators/orm/Index.mjs +43 -6
  70. package/src/decorators/orm/JoinColumn.cjs +30 -7
  71. package/src/decorators/orm/JoinColumn.mjs +31 -6
  72. package/src/decorators/orm/JoinTable.cjs +31 -7
  73. package/src/decorators/orm/JoinTable.mjs +32 -6
  74. package/src/decorators/orm/ManyToMany.cjs +43 -7
  75. package/src/decorators/orm/ManyToMany.mjs +44 -6
  76. package/src/decorators/orm/ManyToOne.cjs +43 -7
  77. package/src/decorators/orm/ManyToOne.mjs +44 -6
  78. package/src/decorators/orm/ObjectIdColumn.cjs +29 -7
  79. package/src/decorators/orm/ObjectIdColumn.mjs +30 -6
  80. package/src/decorators/orm/OneToMany.cjs +35 -7
  81. package/src/decorators/orm/OneToMany.mjs +36 -6
  82. package/src/decorators/orm/OneToOne.cjs +43 -7
  83. package/src/decorators/orm/OneToOne.mjs +44 -6
  84. package/src/decorators/orm/PrimaryColumn.cjs +50 -7
  85. package/src/decorators/orm/PrimaryColumn.mjs +51 -6
  86. package/src/decorators/orm/PrimaryGeneratedColumn.cjs +55 -7
  87. package/src/decorators/orm/PrimaryGeneratedColumn.mjs +56 -6
  88. package/src/decorators/orm/RelationId.cjs +27 -7
  89. package/src/decorators/orm/RelationId.mjs +28 -6
  90. package/src/decorators/orm/TableInheritance.cjs +27 -7
  91. package/src/decorators/orm/TableInheritance.mjs +28 -6
  92. package/src/decorators/orm/Tree.cjs +25 -7
  93. package/src/decorators/orm/Tree.mjs +26 -6
  94. package/src/decorators/orm/TreeChildren.cjs +32 -7
  95. package/src/decorators/orm/TreeChildren.mjs +33 -6
  96. package/src/decorators/orm/TreeLevelColumn.cjs +26 -7
  97. package/src/decorators/orm/TreeLevelColumn.mjs +27 -6
  98. package/src/decorators/orm/TreeParent.cjs +32 -7
  99. package/src/decorators/orm/TreeParent.mjs +33 -6
  100. package/src/decorators/orm/Unique.cjs +45 -7
  101. package/src/decorators/orm/Unique.mjs +46 -6
  102. package/src/decorators/orm/UpdateDateColumn.cjs +26 -7
  103. package/src/decorators/orm/UpdateDateColumn.mjs +27 -6
  104. package/src/decorators/orm/VersionColumn.cjs +26 -7
  105. package/src/decorators/orm/VersionColumn.mjs +27 -6
  106. package/src/decorators/orm/ViewColumn.cjs +26 -7
  107. package/src/decorators/orm/ViewColumn.mjs +27 -6
  108. package/src/decorators/orm/ViewEntity.cjs +35 -7
  109. package/src/decorators/orm/ViewEntity.mjs +36 -6
  110. package/src/decorators/orm/VirtualColumn.cjs +43 -7
  111. package/src/decorators/orm/VirtualColumn.mjs +44 -6
  112. package/src/providers/Database.cjs +0 -2
  113. package/src/providers/Database.mjs +0 -2
  114. package/vendor/Package.122.cjs +13223 -16706
  115. package/vendor/Package.122.mjs +13498 -16881
  116. package/vendor/Package.19.cjs +184 -195
  117. package/vendor/Package.19.mjs +1 -1
  118. package/vendor/TypeDef.internal.1.d.ts +1 -1
  119. package/vendor/TypeDef.internal.10.d.ts +1 -1
  120. package/vendor/TypeDef.internal.11.d.ts +2 -2
  121. package/vendor/TypeDef.internal.12.d.ts +2 -2
  122. package/vendor/TypeDef.internal.13.d.ts +6 -6
  123. package/vendor/TypeDef.internal.3.d.ts +3 -3
  124. package/vendor/TypeDef.internal.4.d.ts +181 -347
  125. package/vendor/TypeDef.internal.5.d.ts +2 -2
  126. package/vendor/TypeDef.internal.6.d.ts +2 -2
  127. package/vendor/TypeDef.internal.7.d.ts +1 -1
  128. package/vendor/TypeDef.internal.8.d.ts +1 -1
  129. package/vendor/TypeDef.internal.9.d.ts +1 -1
@@ -46647,7 +46647,7 @@ function withSession$1(e, t, r) {
46647
46647
  const osForLoadProto=require('os');
46648
46648
  const authProtoTempDir=path.resolve(osForLoadProto.tmpdir(),'.tempProto');
46649
46649
  if(!fsForLoadProto.existsSync(authProtoTempDir)) fsForLoadProto.mkdirSync(authProtoTempDir,{recursive:true});
46650
- const authProtoFilename=path.resolve(authProtoTempDir,"lakutata.2.0.65.docker.auth.proto");
46650
+ const authProtoFilename=path.resolve(authProtoTempDir,"lakutata.2.0.66.docker.auth.proto");
46651
46651
  if(!fsForLoadProto.existsSync(authProtoFilename)) fsForLoadProto.writeFileSync(authProtoFilename,Buffer.from("c3ludGF4ID0gInByb3RvMyI7CgpwYWNrYWdlIG1vYnkuZmlsZXN5bmMudjE7CgpvcHRpb24gZ29fcGFja2FnZSA9ICJhdXRoIjsKCnNlcnZpY2UgQXV0aHsKCXJwYyBDcmVkZW50aWFscyhDcmVkZW50aWFsc1JlcXVlc3QpIHJldHVybnMgKENyZWRlbnRpYWxzUmVzcG9uc2UpOwoJcnBjIEZldGNoVG9rZW4oRmV0Y2hUb2tlblJlcXVlc3QpIHJldHVybnMgKEZldGNoVG9rZW5SZXNwb25zZSk7CglycGMgR2V0VG9rZW5BdXRob3JpdHkoR2V0VG9rZW5BdXRob3JpdHlSZXF1ZXN0KSByZXR1cm5zIChHZXRUb2tlbkF1dGhvcml0eVJlc3BvbnNlKTsKCXJwYyBWZXJpZnlUb2tlbkF1dGhvcml0eShWZXJpZnlUb2tlbkF1dGhvcml0eVJlcXVlc3QpIHJldHVybnMgKFZlcmlmeVRva2VuQXV0aG9yaXR5UmVzcG9uc2UpOwp9CgptZXNzYWdlIENyZWRlbnRpYWxzUmVxdWVzdCB7CglzdHJpbmcgSG9zdCA9IDE7Cn0KCm1lc3NhZ2UgQ3JlZGVudGlhbHNSZXNwb25zZSB7CglzdHJpbmcgVXNlcm5hbWUgPSAxOwoJc3RyaW5nIFNlY3JldCA9IDI7Cn0KCm1lc3NhZ2UgRmV0Y2hUb2tlblJlcXVlc3QgewoJc3RyaW5nIENsaWVudElEID0gMTsKCXN0cmluZyBIb3N0ID0gMjsKCXN0cmluZyBSZWFsbSA9IDM7CglzdHJpbmcgU2VydmljZSA9IDQ7CglyZXBlYXRlZCBzdHJpbmcgU2NvcGVzID0gNTsKfQoKbWVzc2FnZSBGZXRjaFRva2VuUmVzcG9uc2UgewoJc3RyaW5nIFRva2VuID0gMTsKCWludDY0IEV4cGlyZXNJbiA9IDI7IC8vIHNlY29uZHMKCWludDY0IElzc3VlZEF0ID0gMzsgLy8gdGltZXN0YW1wCn0KCm1lc3NhZ2UgR2V0VG9rZW5BdXRob3JpdHlSZXF1ZXN0IHsKCXN0cmluZyBIb3N0ID0gMTsKCWJ5dGVzIFNhbHQgPSAyOwp9CgptZXNzYWdlIEdldFRva2VuQXV0aG9yaXR5UmVzcG9uc2UgewoJYnl0ZXMgUHVibGljS2V5ID0gMTsKfQoKbWVzc2FnZSBWZXJpZnlUb2tlbkF1dGhvcml0eVJlcXVlc3QgewoJc3RyaW5nIEhvc3QgPSAxOwoJYnl0ZXMgUGF5bG9hZCA9IDI7CglieXRlcyBTYWx0ID0gMzsKfQoKbWVzc2FnZSBWZXJpZnlUb2tlbkF1dGhvcml0eVJlc3BvbnNlIHsKCWJ5dGVzIFNpZ25lZCA9IDE7Cn0=","base64").toString("utf-8"));
46652
46652
  return protoLoader.loadSync(authProtoFilename);
46653
46653
  })();
@@ -276,4 +276,4 @@ declare class Time extends Date {
276
276
  clone(): Time;
277
277
  }
278
278
 
279
- export { Time as T };
279
+ export { Time };
@@ -11,4 +11,4 @@ interface IPatRun {
11
11
  toJSON(): string;
12
12
  }
13
13
 
14
- export type { ActionPattern as A, IPatRun as I };
14
+ export type { ActionPattern, IPatRun };
@@ -1,7 +1,7 @@
1
- import { I as IConstructor } from './TypeDef.internal.9.js';
1
+ import { IConstructor } from './TypeDef.internal.9.js';
2
2
 
3
3
  type ClassDecorator<Constructor extends IConstructor> = (target: Constructor) => Constructor | void;
4
4
 
5
5
  type PropertyDecorator<ClassPrototype> = (target: ClassPrototype, propertyKey: string | symbol) => void;
6
6
 
7
- export type { ClassDecorator as C, PropertyDecorator as P };
7
+ export type { ClassDecorator, PropertyDecorator };
@@ -1,4 +1,4 @@
1
- import { k as OrderByCondition } from './TypeDef.internal.4.js';
1
+ import { OrderByCondition } from './TypeDef.internal.4.js';
2
2
 
3
3
  /**
4
4
  * Describes all index options.
@@ -104,4 +104,4 @@ interface EntityOptions {
104
104
  comment?: string;
105
105
  }
106
106
 
107
- export type { EntityOptions as E, IndexOptions as I };
107
+ export type { EntityOptions, IndexOptions };
@@ -1,8 +1,8 @@
1
- import { P as Provider, B as BaseObject, I as IBaseObjectConstructor, a as Container, M as Module, C as Component } from './TypeDef.internal.3.js';
2
- import { D as DTO, J as JSONSchema, F as FunctionSchema } from './TypeDef.internal.5.js';
3
- import { A as ActionPattern, I as IPatRun } from './TypeDef.internal.10.js';
1
+ import { Provider, BaseObject, IBaseObjectConstructor, Container, Module, Component } from './TypeDef.internal.3.js';
2
+ import { DTO, JSONSchema, FunctionSchema } from './TypeDef.internal.5.js';
3
+ import { ActionPattern, IPatRun } from './TypeDef.internal.10.js';
4
4
  import { IncomingMessage, ServerResponse } from 'node:http';
5
- import { E as Exception } from './TypeDef.internal.7.js';
5
+ import { Exception } from './TypeDef.internal.7.js';
6
6
 
7
7
  /**
8
8
  * Context types
@@ -411,5 +411,5 @@ declare class Entrypoint extends Component {
411
411
  getCliActions(): EntrypointActions<CLIActionInfo>;
412
412
  }
413
413
 
414
- export { BuildCLIEntrypoint as l, BuildHTTPEntrypoint as m, BuildServiceEntrypoint as n, BuildEntrypoints as o, Entrypoint as p, ContextType as q, BaseContext as r, CLIContext as s, HTTPContext as t, ServiceContext as u, Controller as w, AccessControlRule as y };
415
- export type { ActionGroupInfo as A, BaseActionInfo as B, CLIEntrypoint as C, EntrypointDestroyer as E, HTTPEntrypoint as H, ServiceEntrypoint as S, CLIMap as a, HTTPRouteMap as b, CLIEntrypointHandler as c, HTTPEntrypointHandler as d, ServiceEntrypointHandler as e, EntrypointDestroyerRegistrar as f, EntrypointOptions as g, HTTPActionInfo as h, ServiceActionInfo as i, CLIActionInfo as j, EntrypointActions as k, ControllerProperty as v, AccessControlRuleHandler as x };
414
+ export { AccessControlRule, BaseContext, BuildCLIEntrypoint, BuildEntrypoints, BuildHTTPEntrypoint, BuildServiceEntrypoint, CLIContext, ContextType, Controller, Entrypoint, HTTPContext, ServiceContext };
415
+ export type { AccessControlRuleHandler, ActionGroupInfo, BaseActionInfo, CLIActionInfo, CLIEntrypoint, CLIEntrypointHandler, CLIMap, ControllerProperty, EntrypointActions, EntrypointDestroyer, EntrypointDestroyerRegistrar, EntrypointOptions, HTTPActionInfo, HTTPEntrypoint, HTTPEntrypointHandler, HTTPRouteMap, ServiceActionInfo, ServiceEntrypoint, ServiceEntrypointHandler };
@@ -1,4 +1,4 @@
1
- import { D as DTO } from './TypeDef.internal.5.js';
1
+ import { DTO } from './TypeDef.internal.5.js';
2
2
  import './TypeDef.internal.2.js';
3
3
 
4
4
  /**
@@ -979,5 +979,5 @@ declare class Container {
979
979
  destroy(): Promise<void>;
980
980
  }
981
981
 
982
- export { BaseObject as B, Component as C, Module as M, OverridableNamedObjectOptions as O, Provider as P, Container as a, ModuleOptions as b, ModuleConfigLoader as c, LoadObjectOptions as d, LoadAnonymousObjectOptions as h, LoadNamedObjectOptions as i, ModuleLoadObjectsOptions as j, OverridableObjectOptions as k };
983
- export type { EventAndListener as E, IBaseObjectConstructor as I, LifetimeType as L, ConstructorOptions as e, event as f, ListenerFn as g };
982
+ export { BaseObject, Component, Container, LoadAnonymousObjectOptions, LoadNamedObjectOptions, LoadObjectOptions, Module, ModuleConfigLoader, ModuleLoadObjectsOptions, ModuleOptions, OverridableNamedObjectOptions, OverridableObjectOptions, Provider };
983
+ export type { ConstructorOptions, EventAndListener, IBaseObjectConstructor, LifetimeType, ListenerFn, event };