lakutata 2.0.81 → 2.0.83

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 (234) hide show
  1. package/com/docker.cjs +1 -1
  2. package/com/docker.mjs +1 -1
  3. package/decorator/orm.cjs +84 -84
  4. package/decorator/orm.mjs +42 -128
  5. package/orm.cjs +873 -1410
  6. package/orm.mjs +708 -1458
  7. package/package.json +1 -1
  8. package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +230 -239
  9. package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +230 -239
  10. package/src/components/docker/ConnectionOptionsBuilder.cjs +1 -1
  11. package/src/components/docker/ConnectionOptionsBuilder.mjs +1 -1
  12. package/src/components/docker/Docker.cjs +4919 -4808
  13. package/src/components/docker/Docker.mjs +4939 -4828
  14. package/src/components/docker/lib/DockerContainer.cjs +1 -1
  15. package/src/components/docker/lib/DockerContainer.mjs +1 -1
  16. package/src/components/docker/lib/DockerContainerTTY.cjs +1 -1
  17. package/src/components/docker/lib/DockerContainerTTY.mjs +1 -1
  18. package/src/components/entrypoint/Entrypoint.cjs +1669 -2159
  19. package/src/components/entrypoint/Entrypoint.mjs +1629 -2119
  20. package/src/decorators/orm/AfterInsert.cjs +26 -4
  21. package/src/decorators/orm/AfterInsert.mjs +25 -5
  22. package/src/decorators/orm/AfterLoad.cjs +26 -4
  23. package/src/decorators/orm/AfterLoad.mjs +25 -5
  24. package/src/decorators/orm/AfterRecover.cjs +26 -4
  25. package/src/decorators/orm/AfterRecover.mjs +25 -5
  26. package/src/decorators/orm/AfterRemove.cjs +26 -4
  27. package/src/decorators/orm/AfterRemove.mjs +25 -5
  28. package/src/decorators/orm/AfterSoftRemove.cjs +26 -4
  29. package/src/decorators/orm/AfterSoftRemove.mjs +25 -5
  30. package/src/decorators/orm/AfterUpdate.cjs +26 -4
  31. package/src/decorators/orm/AfterUpdate.mjs +25 -5
  32. package/src/decorators/orm/BeforeInsert.cjs +26 -4
  33. package/src/decorators/orm/BeforeInsert.mjs +25 -5
  34. package/src/decorators/orm/BeforeRecover.cjs +26 -4
  35. package/src/decorators/orm/BeforeRecover.mjs +25 -5
  36. package/src/decorators/orm/BeforeRemove.cjs +26 -4
  37. package/src/decorators/orm/BeforeRemove.mjs +25 -5
  38. package/src/decorators/orm/BeforeSoftRemove.cjs +26 -4
  39. package/src/decorators/orm/BeforeSoftRemove.mjs +25 -5
  40. package/src/decorators/orm/BeforeUpdate.cjs +26 -4
  41. package/src/decorators/orm/BeforeUpdate.mjs +25 -5
  42. package/src/decorators/orm/Check.cjs +29 -4
  43. package/src/decorators/orm/Check.mjs +28 -5
  44. package/src/decorators/orm/ChildEntity.cjs +29 -4
  45. package/src/decorators/orm/ChildEntity.mjs +28 -5
  46. package/src/decorators/orm/Column.cjs +61 -4
  47. package/src/decorators/orm/Column.mjs +61 -6
  48. package/src/decorators/orm/CreateDateColumn.cjs +25 -4
  49. package/src/decorators/orm/CreateDateColumn.mjs +24 -5
  50. package/src/decorators/orm/DeleteDateColumn.cjs +25 -4
  51. package/src/decorators/orm/DeleteDateColumn.mjs +23 -4
  52. package/src/decorators/orm/Entity.cjs +35 -4
  53. package/src/decorators/orm/Entity.mjs +33 -4
  54. package/src/decorators/orm/EventSubscriber.cjs +22 -4
  55. package/src/decorators/orm/EventSubscriber.mjs +21 -5
  56. package/src/decorators/orm/Exclusion.cjs +29 -4
  57. package/src/decorators/orm/Exclusion.mjs +28 -5
  58. package/src/decorators/orm/Generated.cjs +24 -4
  59. package/src/decorators/orm/Generated.mjs +23 -5
  60. package/src/decorators/orm/Index.cjs +41 -4
  61. package/src/decorators/orm/Index.mjs +41 -6
  62. package/src/decorators/orm/JoinColumn.cjs +29 -4
  63. package/src/decorators/orm/JoinColumn.mjs +28 -5
  64. package/src/decorators/orm/JoinTable.cjs +30 -4
  65. package/src/decorators/orm/JoinTable.mjs +28 -4
  66. package/src/decorators/orm/ManyToMany.cjs +42 -4
  67. package/src/decorators/orm/ManyToMany.mjs +40 -4
  68. package/src/decorators/orm/ManyToOne.cjs +42 -4
  69. package/src/decorators/orm/ManyToOne.mjs +40 -4
  70. package/src/decorators/orm/ObjectIdColumn.cjs +28 -4
  71. package/src/decorators/orm/ObjectIdColumn.mjs +27 -5
  72. package/src/decorators/orm/OneToMany.cjs +34 -4
  73. package/src/decorators/orm/OneToMany.mjs +34 -6
  74. package/src/decorators/orm/OneToOne.cjs +42 -4
  75. package/src/decorators/orm/OneToOne.mjs +40 -4
  76. package/src/decorators/orm/PrimaryColumn.cjs +49 -4
  77. package/src/decorators/orm/PrimaryColumn.mjs +49 -6
  78. package/src/decorators/orm/PrimaryGeneratedColumn.cjs +54 -4
  79. package/src/decorators/orm/PrimaryGeneratedColumn.mjs +54 -6
  80. package/src/decorators/orm/RelationId.cjs +26 -4
  81. package/src/decorators/orm/RelationId.mjs +25 -5
  82. package/src/decorators/orm/TableInheritance.cjs +26 -4
  83. package/src/decorators/orm/TableInheritance.mjs +25 -5
  84. package/src/decorators/orm/Tree.cjs +24 -4
  85. package/src/decorators/orm/Tree.mjs +23 -5
  86. package/src/decorators/orm/TreeChildren.cjs +31 -4
  87. package/src/decorators/orm/TreeChildren.mjs +29 -4
  88. package/src/decorators/orm/TreeLevelColumn.cjs +25 -4
  89. package/src/decorators/orm/TreeLevelColumn.mjs +23 -4
  90. package/src/decorators/orm/TreeParent.cjs +31 -4
  91. package/src/decorators/orm/TreeParent.mjs +29 -4
  92. package/src/decorators/orm/Unique.cjs +44 -4
  93. package/src/decorators/orm/Unique.mjs +44 -6
  94. package/src/decorators/orm/UpdateDateColumn.cjs +25 -4
  95. package/src/decorators/orm/UpdateDateColumn.mjs +24 -5
  96. package/src/decorators/orm/VersionColumn.cjs +25 -4
  97. package/src/decorators/orm/VersionColumn.mjs +24 -5
  98. package/src/decorators/orm/ViewColumn.cjs +25 -4
  99. package/src/decorators/orm/ViewColumn.mjs +24 -5
  100. package/src/decorators/orm/ViewEntity.cjs +34 -4
  101. package/src/decorators/orm/ViewEntity.mjs +33 -5
  102. package/src/decorators/orm/VirtualColumn.cjs +42 -4
  103. package/src/decorators/orm/VirtualColumn.mjs +40 -4
  104. package/src/lib/base/EventEmitter.cjs +1193 -1200
  105. package/src/lib/base/EventEmitter.mjs +1194 -1201
  106. package/src/lib/base/internal/DataValidator.cjs +185 -174
  107. package/src/lib/base/internal/DataValidator.mjs +186 -175
  108. package/src/lib/base/internal/PatternManager.cjs +735 -740
  109. package/src/lib/base/internal/PatternManager.mjs +740 -745
  110. package/src/lib/core/Application.cjs +99 -112
  111. package/src/lib/core/Application.mjs +127 -140
  112. package/src/lib/helpers/IsHtml.cjs +13 -7
  113. package/src/lib/helpers/IsHtml.mjs +13 -7
  114. package/src/lib/helpers/IsXML.cjs +1016 -1158
  115. package/src/lib/helpers/IsXML.mjs +729 -871
  116. package/src/lib/helpers/ObjectHash.cjs +371 -378
  117. package/src/lib/helpers/ObjectHash.mjs +371 -378
  118. package/src/lib/helpers/RandomString.cjs +146 -167
  119. package/src/lib/helpers/RandomString.mjs +145 -166
  120. package/src/lib/helpers/URLBuilder.cjs +355 -355
  121. package/src/lib/helpers/URLBuilder.mjs +350 -350
  122. package/src/lib/ioc/ListModules.cjs +5237 -5160
  123. package/src/lib/ioc/ListModules.mjs +5252 -5175
  124. package/src/lib/validation/VLD.cjs +3903 -4080
  125. package/src/lib/validation/VLD.mjs +2793 -2970
  126. package/src/providers/migration/GenerateMigration.cjs +2 -2
  127. package/src/providers/migration/GenerateMigration.mjs +2 -2
  128. package/vendor/Package.112.cjs +38321 -38240
  129. package/vendor/Package.112.mjs +37720 -37579
  130. package/vendor/Package.16.cjs +7386 -7268
  131. package/vendor/Package.16.mjs +6706 -6588
  132. package/vendor/Package.18.cjs +48229 -20
  133. package/vendor/Package.18.mjs +48192 -24
  134. package/vendor/Package.2.cjs +5698 -5727
  135. package/vendor/Package.2.mjs +5707 -5736
  136. package/vendor/Package.4.cjs +874 -884
  137. package/vendor/Package.4.mjs +874 -884
  138. package/vendor/Package.5.cjs +11 -15
  139. package/vendor/Package.5.mjs +7 -11
  140. package/vendor/Package.6.cjs +511 -520
  141. package/vendor/Package.6.mjs +534 -543
  142. package/vendor/Package.62.cjs +87 -90
  143. package/vendor/Package.62.mjs +180 -183
  144. package/vendor/Package.65.cjs +1285 -1292
  145. package/vendor/Package.65.mjs +190 -197
  146. package/vendor/Package.68.cjs +111 -252
  147. package/vendor/Package.68.mjs +134 -268
  148. package/vendor/Package.9.cjs +118 -132
  149. package/vendor/Package.9.mjs +124 -138
  150. package/vendor/TypeDef.internal.3.d.ts +0 -14
  151. package/vendor/Package.19.cjs +0 -37
  152. package/vendor/Package.19.mjs +0 -35
  153. package/vendor/Package.20.cjs +0 -37
  154. package/vendor/Package.20.mjs +0 -35
  155. package/vendor/Package.21.cjs +0 -37
  156. package/vendor/Package.21.mjs +0 -35
  157. package/vendor/Package.22.cjs +0 -37
  158. package/vendor/Package.22.mjs +0 -35
  159. package/vendor/Package.23.cjs +0 -37
  160. package/vendor/Package.23.mjs +0 -35
  161. package/vendor/Package.24.cjs +0 -37
  162. package/vendor/Package.24.mjs +0 -35
  163. package/vendor/Package.25.cjs +0 -37
  164. package/vendor/Package.25.mjs +0 -35
  165. package/vendor/Package.26.cjs +0 -37
  166. package/vendor/Package.26.mjs +0 -35
  167. package/vendor/Package.27.cjs +0 -37
  168. package/vendor/Package.27.mjs +0 -35
  169. package/vendor/Package.28.cjs +0 -37
  170. package/vendor/Package.28.mjs +0 -35
  171. package/vendor/Package.29.cjs +0 -40
  172. package/vendor/Package.29.mjs +0 -38
  173. package/vendor/Package.30.cjs +0 -41
  174. package/vendor/Package.30.mjs +0 -39
  175. package/vendor/Package.31.cjs +0 -72
  176. package/vendor/Package.31.mjs +0 -70
  177. package/vendor/Package.32.cjs +0 -37
  178. package/vendor/Package.32.mjs +0 -35
  179. package/vendor/Package.33.cjs +0 -37
  180. package/vendor/Package.33.mjs +0 -35
  181. package/vendor/Package.34.cjs +0 -46
  182. package/vendor/Package.34.mjs +0 -44
  183. package/vendor/Package.35.cjs +0 -34
  184. package/vendor/Package.35.mjs +0 -32
  185. package/vendor/Package.36.cjs +0 -40
  186. package/vendor/Package.36.mjs +0 -38
  187. package/vendor/Package.37.cjs +0 -36
  188. package/vendor/Package.37.mjs +0 -34
  189. package/vendor/Package.38.cjs +0 -52
  190. package/vendor/Package.38.mjs +0 -50
  191. package/vendor/Package.39.cjs +0 -41
  192. package/vendor/Package.39.mjs +0 -39
  193. package/vendor/Package.40.cjs +0 -42
  194. package/vendor/Package.40.mjs +0 -40
  195. package/vendor/Package.41.cjs +0 -53
  196. package/vendor/Package.41.mjs +0 -51
  197. package/vendor/Package.42.cjs +0 -53
  198. package/vendor/Package.42.mjs +0 -51
  199. package/vendor/Package.43.cjs +0 -40
  200. package/vendor/Package.43.mjs +0 -38
  201. package/vendor/Package.44.cjs +0 -46
  202. package/vendor/Package.44.mjs +0 -44
  203. package/vendor/Package.45.cjs +0 -53
  204. package/vendor/Package.45.mjs +0 -51
  205. package/vendor/Package.46.cjs +0 -59
  206. package/vendor/Package.46.mjs +0 -57
  207. package/vendor/Package.47.cjs +0 -65
  208. package/vendor/Package.47.mjs +0 -63
  209. package/vendor/Package.48.cjs +0 -38
  210. package/vendor/Package.48.mjs +0 -36
  211. package/vendor/Package.49.cjs +0 -38
  212. package/vendor/Package.49.mjs +0 -36
  213. package/vendor/Package.50.cjs +0 -36
  214. package/vendor/Package.50.mjs +0 -34
  215. package/vendor/Package.51.cjs +0 -43
  216. package/vendor/Package.51.mjs +0 -41
  217. package/vendor/Package.52.cjs +0 -37
  218. package/vendor/Package.52.mjs +0 -35
  219. package/vendor/Package.53.cjs +0 -43
  220. package/vendor/Package.53.mjs +0 -41
  221. package/vendor/Package.54.cjs +0 -55
  222. package/vendor/Package.54.mjs +0 -53
  223. package/vendor/Package.55.cjs +0 -37
  224. package/vendor/Package.55.mjs +0 -35
  225. package/vendor/Package.56.cjs +0 -37
  226. package/vendor/Package.56.mjs +0 -35
  227. package/vendor/Package.57.cjs +0 -37
  228. package/vendor/Package.57.mjs +0 -35
  229. package/vendor/Package.58.cjs +0 -45
  230. package/vendor/Package.58.mjs +0 -43
  231. package/vendor/Package.59.cjs +0 -53
  232. package/vendor/Package.59.mjs +0 -51
  233. package/vendor/Package.60.cjs +0 -47649
  234. package/vendor/Package.60.mjs +0 -47606
@@ -1,40 +0,0 @@
1
- "use strict";
2
-
3
- const e = require("./Package.5.cjs");
4
-
5
- const r = require("./Package.112.cjs");
6
-
7
- var t = {};
8
-
9
- var s;
10
-
11
- function o() {
12
- if (s) return t;
13
- s = 1;
14
- "use strict";
15
- Object.defineProperty(t, "__esModule", {
16
- value: true
17
- });
18
- t.Check = c;
19
- const e = r.requireGlobals();
20
- const o = r.requireError();
21
- function c(r, t) {
22
- const s = t ? r : undefined;
23
- const c = t ? t : r;
24
- if (!c) throw new o.TypeORMError(`Check expression is required`);
25
- return function(r, t) {
26
- (0, e.getMetadataArgsStorage)().checks.push({
27
- target: t ? r.constructor : r,
28
- name: s,
29
- expression: c
30
- });
31
- };
32
- }
33
- return t;
34
- }
35
-
36
- var c = o();
37
-
38
- const n = e.getDefaultExportFromCjs(c);
39
-
40
- exports.CheckExports = c;
@@ -1,38 +0,0 @@
1
- import { g as e } from "./Package.5.mjs";
2
-
3
- import { h as r, d as t } from "./Package.112.mjs";
4
-
5
- var s = {};
6
-
7
- var n;
8
-
9
- function o() {
10
- if (n) return s;
11
- n = 1;
12
- "use strict";
13
- Object.defineProperty(s, "__esModule", {
14
- value: true
15
- });
16
- s.Check = a;
17
- const e = r();
18
- const o = t();
19
- function a(r, t) {
20
- const s = t ? r : undefined;
21
- const n = t ? t : r;
22
- if (!n) throw new o.TypeORMError(`Check expression is required`);
23
- return function(r, t) {
24
- (0, e.getMetadataArgsStorage)().checks.push({
25
- target: t ? r.constructor : r,
26
- name: s,
27
- expression: n
28
- });
29
- };
30
- }
31
- return s;
32
- }
33
-
34
- var a = o();
35
-
36
- const c = e(a);
37
-
38
- export { a as C };
@@ -1,41 +0,0 @@
1
- "use strict";
2
-
3
- const t = require("./Package.5.cjs");
4
-
5
- const e = require("./Package.112.cjs");
6
-
7
- var r = {};
8
-
9
- var a;
10
-
11
- function s() {
12
- if (a) return r;
13
- a = 1;
14
- "use strict";
15
- Object.defineProperty(r, "__esModule", {
16
- value: true
17
- });
18
- r.ChildEntity = s;
19
- const t = e.requireGlobals();
20
- function s(e) {
21
- return function(r) {
22
- (0, t.getMetadataArgsStorage)().tables.push({
23
- target: r,
24
- type: "entity-child"
25
- });
26
- if (typeof e !== "undefined") {
27
- (0, t.getMetadataArgsStorage)().discriminatorValues.push({
28
- target: r,
29
- value: e
30
- });
31
- }
32
- };
33
- }
34
- return r;
35
- }
36
-
37
- var i = s();
38
-
39
- const n = t.getDefaultExportFromCjs(i);
40
-
41
- exports.ChildEntityExports = i;
@@ -1,39 +0,0 @@
1
- import { g as t } from "./Package.5.mjs";
2
-
3
- import { h as e } from "./Package.112.mjs";
4
-
5
- var r = {};
6
-
7
- var a;
8
-
9
- function i() {
10
- if (a) return r;
11
- a = 1;
12
- "use strict";
13
- Object.defineProperty(r, "__esModule", {
14
- value: true
15
- });
16
- r.ChildEntity = i;
17
- const t = e();
18
- function i(e) {
19
- return function(r) {
20
- (0, t.getMetadataArgsStorage)().tables.push({
21
- target: r,
22
- type: "entity-child"
23
- });
24
- if (typeof e !== "undefined") {
25
- (0, t.getMetadataArgsStorage)().discriminatorValues.push({
26
- target: r,
27
- value: e
28
- });
29
- }
30
- };
31
- }
32
- return r;
33
- }
34
-
35
- var n = i();
36
-
37
- const s = t(n);
38
-
39
- export { n as C };
@@ -1,72 +0,0 @@
1
- "use strict";
2
-
3
- const e = require("./Package.5.cjs");
4
-
5
- const t = require("./Package.112.cjs");
6
-
7
- var r = {};
8
-
9
- var n;
10
-
11
- function o() {
12
- if (n) return r;
13
- n = 1;
14
- "use strict";
15
- Object.defineProperty(r, "__esModule", {
16
- value: true
17
- });
18
- r.Column = a;
19
- const e = t.requireGlobals();
20
- const o = t.requireColumnTypeUndefinedError();
21
- function a(t, r) {
22
- return function(n, a) {
23
- let s;
24
- if (typeof t === "string" || typeof t === "function") {
25
- s = t;
26
- } else if (t) {
27
- r = t;
28
- s = t.type;
29
- }
30
- if (!r) r = {};
31
- const u = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", n, a) : undefined;
32
- if (!s && u) s = u;
33
- if (!r.type && s) r.type = s;
34
- if (r.type === "hstore" && !r.hstoreType) r.hstoreType = u === Object ? "object" : "string";
35
- if (typeof t === "function") {
36
- (0, e.getMetadataArgsStorage)().embeddeds.push({
37
- target: n.constructor,
38
- propertyName: a,
39
- isArray: u === Array || r.array === true,
40
- prefix: r.prefix !== undefined ? r.prefix : undefined,
41
- type: t
42
- });
43
- } else {
44
- if (!r.type) throw new o.ColumnTypeUndefinedError(n, a);
45
- if (r.unique === true) (0, e.getMetadataArgsStorage)().uniques.push({
46
- target: n.constructor,
47
- columns: [ a ]
48
- });
49
- (0, e.getMetadataArgsStorage)().columns.push({
50
- target: n.constructor,
51
- propertyName: a,
52
- mode: "regular",
53
- options: r
54
- });
55
- if (r.generated) {
56
- (0, e.getMetadataArgsStorage)().generations.push({
57
- target: n.constructor,
58
- propertyName: a,
59
- strategy: typeof r.generated === "string" ? r.generated : "increment"
60
- });
61
- }
62
- }
63
- };
64
- }
65
- return r;
66
- }
67
-
68
- var a = o();
69
-
70
- const s = e.getDefaultExportFromCjs(a);
71
-
72
- exports.ColumnExports = a;
@@ -1,70 +0,0 @@
1
- import { g as e } from "./Package.5.mjs";
2
-
3
- import { h as t, j as r } from "./Package.112.mjs";
4
-
5
- var a = {};
6
-
7
- var n;
8
-
9
- function o() {
10
- if (n) return a;
11
- n = 1;
12
- "use strict";
13
- Object.defineProperty(a, "__esModule", {
14
- value: true
15
- });
16
- a.Column = s;
17
- const e = t();
18
- const o = r();
19
- function s(t, r) {
20
- return function(a, n) {
21
- let s;
22
- if (typeof t === "string" || typeof t === "function") {
23
- s = t;
24
- } else if (t) {
25
- r = t;
26
- s = t.type;
27
- }
28
- if (!r) r = {};
29
- const i = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", a, n) : undefined;
30
- if (!s && i) s = i;
31
- if (!r.type && s) r.type = s;
32
- if (r.type === "hstore" && !r.hstoreType) r.hstoreType = i === Object ? "object" : "string";
33
- if (typeof t === "function") {
34
- (0, e.getMetadataArgsStorage)().embeddeds.push({
35
- target: a.constructor,
36
- propertyName: n,
37
- isArray: i === Array || r.array === true,
38
- prefix: r.prefix !== undefined ? r.prefix : undefined,
39
- type: t
40
- });
41
- } else {
42
- if (!r.type) throw new o.ColumnTypeUndefinedError(a, n);
43
- if (r.unique === true) (0, e.getMetadataArgsStorage)().uniques.push({
44
- target: a.constructor,
45
- columns: [ n ]
46
- });
47
- (0, e.getMetadataArgsStorage)().columns.push({
48
- target: a.constructor,
49
- propertyName: n,
50
- mode: "regular",
51
- options: r
52
- });
53
- if (r.generated) {
54
- (0, e.getMetadataArgsStorage)().generations.push({
55
- target: a.constructor,
56
- propertyName: n,
57
- strategy: typeof r.generated === "string" ? r.generated : "increment"
58
- });
59
- }
60
- }
61
- };
62
- }
63
- return a;
64
- }
65
-
66
- var s = o();
67
-
68
- const i = e(s);
69
-
70
- export { s as C };
@@ -1,37 +0,0 @@
1
- "use strict";
2
-
3
- const e = require("./Package.5.cjs");
4
-
5
- const t = require("./Package.112.cjs");
6
-
7
- var r = {};
8
-
9
- var o;
10
-
11
- function a() {
12
- if (o) return r;
13
- o = 1;
14
- "use strict";
15
- Object.defineProperty(r, "__esModule", {
16
- value: true
17
- });
18
- r.CreateDateColumn = a;
19
- const e = t.requireGlobals();
20
- function a(t) {
21
- return function(r, o) {
22
- (0, e.getMetadataArgsStorage)().columns.push({
23
- target: r.constructor,
24
- propertyName: o,
25
- mode: "createDate",
26
- options: t || {}
27
- });
28
- };
29
- }
30
- return r;
31
- }
32
-
33
- var s = a();
34
-
35
- const u = e.getDefaultExportFromCjs(s);
36
-
37
- exports.CreateDateColumnExports = s;
@@ -1,35 +0,0 @@
1
- import { g as t } from "./Package.5.mjs";
2
-
3
- import { h as e } from "./Package.112.mjs";
4
-
5
- var r = {};
6
-
7
- var a;
8
-
9
- function o() {
10
- if (a) return r;
11
- a = 1;
12
- "use strict";
13
- Object.defineProperty(r, "__esModule", {
14
- value: true
15
- });
16
- r.CreateDateColumn = o;
17
- const t = e();
18
- function o(e) {
19
- return function(r, a) {
20
- (0, t.getMetadataArgsStorage)().columns.push({
21
- target: r.constructor,
22
- propertyName: a,
23
- mode: "createDate",
24
- options: e || {}
25
- });
26
- };
27
- }
28
- return r;
29
- }
30
-
31
- var n = o();
32
-
33
- const s = t(n);
34
-
35
- export { n as C };
@@ -1,37 +0,0 @@
1
- "use strict";
2
-
3
- const e = require("./Package.5.cjs");
4
-
5
- const t = require("./Package.112.cjs");
6
-
7
- var r = {};
8
-
9
- var o;
10
-
11
- function s() {
12
- if (o) return r;
13
- o = 1;
14
- "use strict";
15
- Object.defineProperty(r, "__esModule", {
16
- value: true
17
- });
18
- r.DeleteDateColumn = s;
19
- const e = t.requireGlobals();
20
- function s(t) {
21
- return function(r, o) {
22
- (0, e.getMetadataArgsStorage)().columns.push({
23
- target: r.constructor,
24
- propertyName: o,
25
- mode: "deleteDate",
26
- options: t || {}
27
- });
28
- };
29
- }
30
- return r;
31
- }
32
-
33
- var u = s();
34
-
35
- const a = e.getDefaultExportFromCjs(u);
36
-
37
- exports.DeleteDateColumnExports = u;
@@ -1,35 +0,0 @@
1
- import { g as e } from "./Package.5.mjs";
2
-
3
- import { h as t } from "./Package.112.mjs";
4
-
5
- var r = {};
6
-
7
- var o;
8
-
9
- function a() {
10
- if (o) return r;
11
- o = 1;
12
- "use strict";
13
- Object.defineProperty(r, "__esModule", {
14
- value: true
15
- });
16
- r.DeleteDateColumn = a;
17
- const e = t();
18
- function a(t) {
19
- return function(r, o) {
20
- (0, e.getMetadataArgsStorage)().columns.push({
21
- target: r.constructor,
22
- propertyName: o,
23
- mode: "deleteDate",
24
- options: t || {}
25
- });
26
- };
27
- }
28
- return r;
29
- }
30
-
31
- var n = a();
32
-
33
- const s = e(n);
34
-
35
- export { n as D };
@@ -1,46 +0,0 @@
1
- "use strict";
2
-
3
- const e = require("./Package.5.cjs");
4
-
5
- const t = require("./Package.112.cjs");
6
-
7
- var n = {};
8
-
9
- var r;
10
-
11
- function s() {
12
- if (r) return n;
13
- r = 1;
14
- "use strict";
15
- Object.defineProperty(n, "__esModule", {
16
- value: true
17
- });
18
- n.Entity = a;
19
- const e = t.requireGlobals();
20
- const s = t.requireObjectUtils();
21
- function a(t, n) {
22
- const r = (s.ObjectUtils.isObject(t) ? t : n) || {};
23
- const a = typeof t === "string" ? t : r.name;
24
- return function(t) {
25
- (0, e.getMetadataArgsStorage)().tables.push({
26
- target: t,
27
- name: a,
28
- type: "regular",
29
- orderBy: r.orderBy ? r.orderBy : undefined,
30
- engine: r.engine ? r.engine : undefined,
31
- database: r.database ? r.database : undefined,
32
- schema: r.schema ? r.schema : undefined,
33
- synchronize: r.synchronize,
34
- withoutRowid: r.withoutRowid,
35
- comment: r.comment ? r.comment : undefined
36
- });
37
- };
38
- }
39
- return n;
40
- }
41
-
42
- var a = s();
43
-
44
- const i = e.getDefaultExportFromCjs(a);
45
-
46
- exports.EntityExports = a;
@@ -1,44 +0,0 @@
1
- import { g as e } from "./Package.5.mjs";
2
-
3
- import { h as t, k as n } from "./Package.112.mjs";
4
-
5
- var a = {};
6
-
7
- var r;
8
-
9
- function o() {
10
- if (r) return a;
11
- r = 1;
12
- "use strict";
13
- Object.defineProperty(a, "__esModule", {
14
- value: true
15
- });
16
- a.Entity = s;
17
- const e = t();
18
- const o = n();
19
- function s(t, n) {
20
- const a = (o.ObjectUtils.isObject(t) ? t : n) || {};
21
- const r = typeof t === "string" ? t : a.name;
22
- return function(t) {
23
- (0, e.getMetadataArgsStorage)().tables.push({
24
- target: t,
25
- name: r,
26
- type: "regular",
27
- orderBy: a.orderBy ? a.orderBy : undefined,
28
- engine: a.engine ? a.engine : undefined,
29
- database: a.database ? a.database : undefined,
30
- schema: a.schema ? a.schema : undefined,
31
- synchronize: a.synchronize,
32
- withoutRowid: a.withoutRowid,
33
- comment: a.comment ? a.comment : undefined
34
- });
35
- };
36
- }
37
- return a;
38
- }
39
-
40
- var s = o();
41
-
42
- const i = e(s);
43
-
44
- export { s as E };
@@ -1,34 +0,0 @@
1
- "use strict";
2
-
3
- const e = require("./Package.5.cjs");
4
-
5
- const r = require("./Package.112.cjs");
6
-
7
- var t = {};
8
-
9
- var s;
10
-
11
- function u() {
12
- if (s) return t;
13
- s = 1;
14
- "use strict";
15
- Object.defineProperty(t, "__esModule", {
16
- value: true
17
- });
18
- t.EventSubscriber = u;
19
- const e = r.requireGlobals();
20
- function u() {
21
- return function(r) {
22
- (0, e.getMetadataArgsStorage)().entitySubscribers.push({
23
- target: r
24
- });
25
- };
26
- }
27
- return t;
28
- }
29
-
30
- var c = u();
31
-
32
- const n = e.getDefaultExportFromCjs(c);
33
-
34
- exports.EventSubscriberExports = c;
@@ -1,32 +0,0 @@
1
- import { g as r } from "./Package.5.mjs";
2
-
3
- import { h as t } from "./Package.112.mjs";
4
-
5
- var e = {};
6
-
7
- var a;
8
-
9
- function s() {
10
- if (a) return e;
11
- a = 1;
12
- "use strict";
13
- Object.defineProperty(e, "__esModule", {
14
- value: true
15
- });
16
- e.EventSubscriber = s;
17
- const r = t();
18
- function s() {
19
- return function(t) {
20
- (0, r.getMetadataArgsStorage)().entitySubscribers.push({
21
- target: t
22
- });
23
- };
24
- }
25
- return e;
26
- }
27
-
28
- var n = s();
29
-
30
- const o = r(n);
31
-
32
- export { n as E };
@@ -1,40 +0,0 @@
1
- "use strict";
2
-
3
- const e = require("./Package.5.cjs");
4
-
5
- const r = require("./Package.112.cjs");
6
-
7
- var t = {};
8
-
9
- var s;
10
-
11
- function o() {
12
- if (s) return t;
13
- s = 1;
14
- "use strict";
15
- Object.defineProperty(t, "__esModule", {
16
- value: true
17
- });
18
- t.Exclusion = n;
19
- const e = r.requireGlobals();
20
- const o = r.requireError();
21
- function n(r, t) {
22
- const s = t ? r : undefined;
23
- const n = t ? t : r;
24
- if (!n) throw new o.TypeORMError(`Exclusion expression is required`);
25
- return function(r, t) {
26
- (0, e.getMetadataArgsStorage)().exclusions.push({
27
- target: t ? r.constructor : r,
28
- name: s,
29
- expression: n
30
- });
31
- };
32
- }
33
- return t;
34
- }
35
-
36
- var n = o();
37
-
38
- const u = e.getDefaultExportFromCjs(n);
39
-
40
- exports.ExclusionExports = n;
@@ -1,38 +0,0 @@
1
- import { g as e } from "./Package.5.mjs";
2
-
3
- import { h as r, d as t } from "./Package.112.mjs";
4
-
5
- var s = {};
6
-
7
- var n;
8
-
9
- function o() {
10
- if (n) return s;
11
- n = 1;
12
- "use strict";
13
- Object.defineProperty(s, "__esModule", {
14
- value: true
15
- });
16
- s.Exclusion = a;
17
- const e = r();
18
- const o = t();
19
- function a(r, t) {
20
- const s = t ? r : undefined;
21
- const n = t ? t : r;
22
- if (!n) throw new o.TypeORMError(`Exclusion expression is required`);
23
- return function(r, t) {
24
- (0, e.getMetadataArgsStorage)().exclusions.push({
25
- target: t ? r.constructor : r,
26
- name: s,
27
- expression: n
28
- });
29
- };
30
- }
31
- return s;
32
- }
33
-
34
- var a = o();
35
-
36
- const c = e(a);
37
-
38
- export { a as E };