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
@@ -4136,5 +4136,5 @@ declare class DTO extends DataValidator {
4136
4136
  static validateAsync<T = any>(data: T, schema: Schema$1, options: ValidationOptions): Promise<T>;
4137
4137
  }
4138
4138
 
4139
- export { DTO as D };
4140
- export type { FunctionSchema as F, JSONSchema as J, Schema$1 as S };
4139
+ export { DTO };
4140
+ export type { FunctionSchema, JSONSchema, Schema$1 as Schema };
@@ -1,4 +1,4 @@
1
- import { C as Component } from './TypeDef.internal.3.js';
1
+ import { Component } from './TypeDef.internal.3.js';
2
2
 
3
3
  interface BaseComponentOptions {
4
4
  class: typeof Component;
@@ -7,4 +7,4 @@ interface BaseComponentOptions {
7
7
  type ComponentOptions<T> = T & BaseComponentOptions;
8
8
  type ComponentOptionsBuilder<T> = (options: T) => ComponentOptions<T>;
9
9
 
10
- export type { BaseComponentOptions as B, ComponentOptionsBuilder as C, ComponentOptions as a };
10
+ export type { BaseComponentOptions, ComponentOptions, ComponentOptionsBuilder };
@@ -19,4 +19,4 @@ declare abstract class Exception extends Error {
19
19
  get name(): string;
20
20
  }
21
21
 
22
- export { Exception as E };
22
+ export { Exception };
@@ -1,3 +1,3 @@
1
1
  type MethodDecorator<ClassPrototype, Method, Property = string | symbol> = (target: ClassPrototype, propertyKey: Property, descriptor: TypedPropertyDescriptor<Method>) => TypedPropertyDescriptor<Method> | void;
2
2
 
3
- export type { MethodDecorator as M };
3
+ export type { MethodDecorator };
@@ -3,4 +3,4 @@ interface IConstructor<T = any> {
3
3
  [prop: string]: any;
4
4
  }
5
5
 
6
- export type { IConstructor as I };
6
+ export type { IConstructor };