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
@@ -2,81 +2,82 @@
2
2
 
3
3
  const r = require("./Package.5.cjs");
4
4
 
5
- var e;
6
-
7
- var t;
8
-
9
- function i() {
10
- if (t) return e;
11
- t = 1;
12
- e = function r(e) {
13
- if (typeof e !== "string" || e === "") {
14
- return false;
15
- }
16
- var t;
17
- while (t = /(\\).|([@?!+*]\(.*\))/g.exec(e)) {
18
- if (t[2]) return true;
19
- e = e.slice(t.index + t[0].length);
20
- }
5
+ var e = function r(e) {
6
+ if (typeof e !== "string" || e === "") {
21
7
  return false;
22
- };
23
- return e;
24
- }
8
+ }
9
+ var t;
10
+ while (t = /(\\).|([@?!+*]\(.*\))/g.exec(e)) {
11
+ if (t[2]) return true;
12
+ e = e.slice(t.index + t[0].length);
13
+ }
14
+ return false;
15
+ };
16
+
17
+ const t = r.getDefaultExportFromCjs(e);
25
18
 
26
- var f;
19
+ var i = e;
27
20
 
28
- var n;
21
+ var f = {
22
+ "{": "}",
23
+ "(": ")",
24
+ "[": "]"
25
+ };
29
26
 
30
- function u() {
31
- if (n) return f;
32
- n = 1;
33
- var r = i();
34
- var e = {
35
- "{": "}",
36
- "(": ")",
37
- "[": "]"
38
- };
39
- var t = function(r) {
40
- if (r[0] === "!") {
27
+ var n = function(r) {
28
+ if (r[0] === "!") {
29
+ return true;
30
+ }
31
+ var e = 0;
32
+ var t = -2;
33
+ var i = -2;
34
+ var n = -2;
35
+ var u = -2;
36
+ var a = -2;
37
+ while (e < r.length) {
38
+ if (r[e] === "*") {
41
39
  return true;
42
40
  }
43
- var t = 0;
44
- var i = -2;
45
- var f = -2;
46
- var n = -2;
47
- var u = -2;
48
- var a = -2;
49
- while (t < r.length) {
50
- if (r[t] === "*") {
51
- return true;
52
- }
53
- if (r[t + 1] === "?" && /[\].+)]/.test(r[t])) {
54
- return true;
41
+ if (r[e + 1] === "?" && /[\].+)]/.test(r[e])) {
42
+ return true;
43
+ }
44
+ if (i !== -1 && r[e] === "[" && r[e + 1] !== "]") {
45
+ if (i < e) {
46
+ i = r.indexOf("]", e);
55
47
  }
56
- if (f !== -1 && r[t] === "[" && r[t + 1] !== "]") {
57
- if (f < t) {
58
- f = r.indexOf("]", t);
48
+ if (i > e) {
49
+ if (a === -1 || a > i) {
50
+ return true;
59
51
  }
60
- if (f > t) {
61
- if (a === -1 || a > f) {
62
- return true;
63
- }
64
- a = r.indexOf("\\", t);
65
- if (a === -1 || a > f) {
66
- return true;
67
- }
52
+ a = r.indexOf("\\", e);
53
+ if (a === -1 || a > i) {
54
+ return true;
68
55
  }
69
56
  }
70
- if (n !== -1 && r[t] === "{" && r[t + 1] !== "}") {
71
- n = r.indexOf("}", t);
72
- if (n > t) {
73
- a = r.indexOf("\\", t);
74
- if (a === -1 || a > n) {
75
- return true;
76
- }
57
+ }
58
+ if (n !== -1 && r[e] === "{" && r[e + 1] !== "}") {
59
+ n = r.indexOf("}", e);
60
+ if (n > e) {
61
+ a = r.indexOf("\\", e);
62
+ if (a === -1 || a > n) {
63
+ return true;
64
+ }
65
+ }
66
+ }
67
+ if (u !== -1 && r[e] === "(" && r[e + 1] === "?" && /[:!=]/.test(r[e + 2]) && r[e + 3] !== ")") {
68
+ u = r.indexOf(")", e);
69
+ if (u > e) {
70
+ a = r.indexOf("\\", e);
71
+ if (a === -1 || a > u) {
72
+ return true;
77
73
  }
78
74
  }
79
- if (u !== -1 && r[t] === "(" && r[t + 1] === "?" && /[:!=]/.test(r[t + 2]) && r[t + 3] !== ")") {
75
+ }
76
+ if (t !== -1 && r[e] === "(" && r[e + 1] !== "|") {
77
+ if (t < e) {
78
+ t = r.indexOf("|", e);
79
+ }
80
+ if (t !== -1 && r[t + 1] !== ")") {
80
81
  u = r.indexOf(")", t);
81
82
  if (u > t) {
82
83
  a = r.indexOf("\\", t);
@@ -85,84 +86,69 @@ function u() {
85
86
  }
86
87
  }
87
88
  }
88
- if (i !== -1 && r[t] === "(" && r[t + 1] !== "|") {
89
- if (i < t) {
90
- i = r.indexOf("|", t);
91
- }
92
- if (i !== -1 && r[i + 1] !== ")") {
93
- u = r.indexOf(")", i);
94
- if (u > i) {
95
- a = r.indexOf("\\", i);
96
- if (a === -1 || a > u) {
97
- return true;
98
- }
99
- }
89
+ }
90
+ if (r[e] === "\\") {
91
+ var s = r[e + 1];
92
+ e += 2;
93
+ var v = f[s];
94
+ if (v) {
95
+ var l = r.indexOf(v, e);
96
+ if (l !== -1) {
97
+ e = l + 1;
100
98
  }
101
99
  }
102
- if (r[t] === "\\") {
103
- var s = r[t + 1];
104
- t += 2;
105
- var v = e[s];
106
- if (v) {
107
- var l = r.indexOf(v, t);
108
- if (l !== -1) {
109
- t = l + 1;
110
- }
111
- }
112
- if (r[t] === "!") {
113
- return true;
114
- }
115
- } else {
116
- t++;
100
+ if (r[e] === "!") {
101
+ return true;
117
102
  }
103
+ } else {
104
+ e++;
118
105
  }
119
- return false;
120
- };
121
- var u = function(r) {
122
- if (r[0] === "!") {
106
+ }
107
+ return false;
108
+ };
109
+
110
+ var u = function(r) {
111
+ if (r[0] === "!") {
112
+ return true;
113
+ }
114
+ var e = 0;
115
+ while (e < r.length) {
116
+ if (/[*?{}()[\]]/.test(r[e])) {
123
117
  return true;
124
118
  }
125
- var t = 0;
126
- while (t < r.length) {
127
- if (/[*?{}()[\]]/.test(r[t])) {
128
- return true;
129
- }
130
- if (r[t] === "\\") {
131
- var i = r[t + 1];
132
- t += 2;
133
- var f = e[i];
134
- if (f) {
135
- var n = r.indexOf(f, t);
136
- if (n !== -1) {
137
- t = n + 1;
138
- }
139
- }
140
- if (r[t] === "!") {
141
- return true;
119
+ if (r[e] === "\\") {
120
+ var t = r[e + 1];
121
+ e += 2;
122
+ var i = f[t];
123
+ if (i) {
124
+ var n = r.indexOf(i, e);
125
+ if (n !== -1) {
126
+ e = n + 1;
142
127
  }
143
- } else {
144
- t++;
145
128
  }
129
+ if (r[e] === "!") {
130
+ return true;
131
+ }
132
+ } else {
133
+ e++;
146
134
  }
147
- return false;
148
- };
149
- f = function e(i, f) {
150
- if (typeof i !== "string" || i === "") {
151
- return false;
152
- }
153
- if (r(i)) {
154
- return true;
155
- }
156
- var n = t;
157
- if (f && f.strict === false) {
158
- n = u;
159
- }
160
- return n(i);
161
- };
162
- return f;
163
- }
135
+ }
136
+ return false;
137
+ };
164
138
 
165
- var a = u();
139
+ var a = function r(e, t) {
140
+ if (typeof e !== "string" || e === "") {
141
+ return false;
142
+ }
143
+ if (i(e)) {
144
+ return true;
145
+ }
146
+ var f = n;
147
+ if (t && t.strict === false) {
148
+ f = u;
149
+ }
150
+ return f(e);
151
+ };
166
152
 
167
153
  const s = r.getDefaultExportFromCjs(a);
168
154
 
@@ -172,4 +158,4 @@ function v(r) {
172
158
 
173
159
  exports.IsGlobString = v;
174
160
 
175
- exports.requireIsGlob = u;
161
+ exports.isGlob = a;
@@ -1,171 +1,157 @@
1
1
  import { g as r } from "./Package.5.mjs";
2
2
 
3
- var e;
4
-
5
- var t;
6
-
7
- function f() {
8
- if (t) return e;
9
- t = 1;
10
- e = function r(e) {
11
- if (typeof e !== "string" || e === "") {
12
- return false;
13
- }
14
- var t;
15
- while (t = /(\\).|([@?!+*]\(.*\))/g.exec(e)) {
16
- if (t[2]) return true;
17
- e = e.slice(t.index + t[0].length);
18
- }
3
+ var e = function r(e) {
4
+ if (typeof e !== "string" || e === "") {
19
5
  return false;
20
- };
21
- return e;
22
- }
6
+ }
7
+ var i;
8
+ while (i = /(\\).|([@?!+*]\(.*\))/g.exec(e)) {
9
+ if (i[2]) return true;
10
+ e = e.slice(i.index + i[0].length);
11
+ }
12
+ return false;
13
+ };
14
+
15
+ const i = r(e);
23
16
 
24
- var i;
17
+ var f = e;
25
18
 
26
- var n;
19
+ var t = {
20
+ "{": "}",
21
+ "(": ")",
22
+ "[": "]"
23
+ };
27
24
 
28
- function u() {
29
- if (n) return i;
30
- n = 1;
31
- var r = f();
32
- var e = {
33
- "{": "}",
34
- "(": ")",
35
- "[": "]"
36
- };
37
- var t = function(r) {
38
- if (r[0] === "!") {
25
+ var n = function(r) {
26
+ if (r[0] === "!") {
27
+ return true;
28
+ }
29
+ var e = 0;
30
+ var i = -2;
31
+ var f = -2;
32
+ var n = -2;
33
+ var u = -2;
34
+ var a = -2;
35
+ while (e < r.length) {
36
+ if (r[e] === "*") {
39
37
  return true;
40
38
  }
41
- var t = 0;
42
- var f = -2;
43
- var i = -2;
44
- var n = -2;
45
- var u = -2;
46
- var a = -2;
47
- while (t < r.length) {
48
- if (r[t] === "*") {
49
- return true;
50
- }
51
- if (r[t + 1] === "?" && /[\].+)]/.test(r[t])) {
52
- return true;
39
+ if (r[e + 1] === "?" && /[\].+)]/.test(r[e])) {
40
+ return true;
41
+ }
42
+ if (f !== -1 && r[e] === "[" && r[e + 1] !== "]") {
43
+ if (f < e) {
44
+ f = r.indexOf("]", e);
53
45
  }
54
- if (i !== -1 && r[t] === "[" && r[t + 1] !== "]") {
55
- if (i < t) {
56
- i = r.indexOf("]", t);
46
+ if (f > e) {
47
+ if (a === -1 || a > f) {
48
+ return true;
57
49
  }
58
- if (i > t) {
59
- if (a === -1 || a > i) {
60
- return true;
61
- }
62
- a = r.indexOf("\\", t);
63
- if (a === -1 || a > i) {
64
- return true;
65
- }
50
+ a = r.indexOf("\\", e);
51
+ if (a === -1 || a > f) {
52
+ return true;
66
53
  }
67
54
  }
68
- if (n !== -1 && r[t] === "{" && r[t + 1] !== "}") {
69
- n = r.indexOf("}", t);
70
- if (n > t) {
71
- a = r.indexOf("\\", t);
72
- if (a === -1 || a > n) {
73
- return true;
74
- }
55
+ }
56
+ if (n !== -1 && r[e] === "{" && r[e + 1] !== "}") {
57
+ n = r.indexOf("}", e);
58
+ if (n > e) {
59
+ a = r.indexOf("\\", e);
60
+ if (a === -1 || a > n) {
61
+ return true;
62
+ }
63
+ }
64
+ }
65
+ if (u !== -1 && r[e] === "(" && r[e + 1] === "?" && /[:!=]/.test(r[e + 2]) && r[e + 3] !== ")") {
66
+ u = r.indexOf(")", e);
67
+ if (u > e) {
68
+ a = r.indexOf("\\", e);
69
+ if (a === -1 || a > u) {
70
+ return true;
75
71
  }
76
72
  }
77
- if (u !== -1 && r[t] === "(" && r[t + 1] === "?" && /[:!=]/.test(r[t + 2]) && r[t + 3] !== ")") {
78
- u = r.indexOf(")", t);
79
- if (u > t) {
80
- a = r.indexOf("\\", t);
73
+ }
74
+ if (i !== -1 && r[e] === "(" && r[e + 1] !== "|") {
75
+ if (i < e) {
76
+ i = r.indexOf("|", e);
77
+ }
78
+ if (i !== -1 && r[i + 1] !== ")") {
79
+ u = r.indexOf(")", i);
80
+ if (u > i) {
81
+ a = r.indexOf("\\", i);
81
82
  if (a === -1 || a > u) {
82
83
  return true;
83
84
  }
84
85
  }
85
86
  }
86
- if (f !== -1 && r[t] === "(" && r[t + 1] !== "|") {
87
- if (f < t) {
88
- f = r.indexOf("|", t);
89
- }
90
- if (f !== -1 && r[f + 1] !== ")") {
91
- u = r.indexOf(")", f);
92
- if (u > f) {
93
- a = r.indexOf("\\", f);
94
- if (a === -1 || a > u) {
95
- return true;
96
- }
97
- }
87
+ }
88
+ if (r[e] === "\\") {
89
+ var s = r[e + 1];
90
+ e += 2;
91
+ var v = t[s];
92
+ if (v) {
93
+ var l = r.indexOf(v, e);
94
+ if (l !== -1) {
95
+ e = l + 1;
98
96
  }
99
97
  }
100
- if (r[t] === "\\") {
101
- var v = r[t + 1];
102
- t += 2;
103
- var s = e[v];
104
- if (s) {
105
- var l = r.indexOf(s, t);
106
- if (l !== -1) {
107
- t = l + 1;
108
- }
109
- }
110
- if (r[t] === "!") {
111
- return true;
112
- }
113
- } else {
114
- t++;
98
+ if (r[e] === "!") {
99
+ return true;
115
100
  }
101
+ } else {
102
+ e++;
116
103
  }
117
- return false;
118
- };
119
- var u = function(r) {
120
- if (r[0] === "!") {
104
+ }
105
+ return false;
106
+ };
107
+
108
+ var u = function(r) {
109
+ if (r[0] === "!") {
110
+ return true;
111
+ }
112
+ var e = 0;
113
+ while (e < r.length) {
114
+ if (/[*?{}()[\]]/.test(r[e])) {
121
115
  return true;
122
116
  }
123
- var t = 0;
124
- while (t < r.length) {
125
- if (/[*?{}()[\]]/.test(r[t])) {
126
- return true;
127
- }
128
- if (r[t] === "\\") {
129
- var f = r[t + 1];
130
- t += 2;
131
- var i = e[f];
132
- if (i) {
133
- var n = r.indexOf(i, t);
134
- if (n !== -1) {
135
- t = n + 1;
136
- }
137
- }
138
- if (r[t] === "!") {
139
- return true;
117
+ if (r[e] === "\\") {
118
+ var i = r[e + 1];
119
+ e += 2;
120
+ var f = t[i];
121
+ if (f) {
122
+ var n = r.indexOf(f, e);
123
+ if (n !== -1) {
124
+ e = n + 1;
140
125
  }
141
- } else {
142
- t++;
143
126
  }
127
+ if (r[e] === "!") {
128
+ return true;
129
+ }
130
+ } else {
131
+ e++;
144
132
  }
145
- return false;
146
- };
147
- i = function e(f, i) {
148
- if (typeof f !== "string" || f === "") {
149
- return false;
150
- }
151
- if (r(f)) {
152
- return true;
153
- }
154
- var n = t;
155
- if (i && i.strict === false) {
156
- n = u;
157
- }
158
- return n(f);
159
- };
160
- return i;
161
- }
133
+ }
134
+ return false;
135
+ };
162
136
 
163
- var a = u();
137
+ var a = function r(e, i) {
138
+ if (typeof e !== "string" || e === "") {
139
+ return false;
140
+ }
141
+ if (f(e)) {
142
+ return true;
143
+ }
144
+ var t = n;
145
+ if (i && i.strict === false) {
146
+ t = u;
147
+ }
148
+ return t(e);
149
+ };
164
150
 
165
- const v = r(a);
151
+ const s = r(a);
166
152
 
167
- function s(r) {
168
- return v(r);
153
+ function v(r) {
154
+ return s(r);
169
155
  }
170
156
 
171
- export { s as I, u as r };
157
+ export { v as I, a as i };
@@ -369,8 +369,6 @@ declare class Provider extends BaseObject {
369
369
  */
370
370
  declare class Component extends Provider {
371
371
  #private;
372
- [__init]: (...hooks: (() => Promise<void>)[]) => Promise<void>;
373
- [__destroy]: (...hooks: (() => Promise<void>)[]) => Promise<void>;
374
372
  /**
375
373
  * Get container
376
374
  * @protected
@@ -623,8 +621,6 @@ declare class ModuleConfigLoader {
623
621
  */
624
622
  declare class Module extends Component {
625
623
  #private;
626
- [__init]: (...hooks: (() => Promise<void>)[]) => Promise<void>;
627
- [__destroy]: (...hooks: (() => Promise<void>)[]) => Promise<void>;
628
624
  /**
629
625
  * Config loader constructor
630
626
  * @protected
@@ -687,21 +683,11 @@ declare class Module extends Component {
687
683
  getObject<T extends BaseObject>(nameOrConstructor: string | symbol | IBaseObjectConstructor<T>, configurableRecords?: Record<string, any>): Promise<T>;
688
684
  }
689
685
 
690
- /**
691
- * Internal init function symbol
692
- */
693
- declare const __init: symbol;
694
- /**
695
- * Internal destroy function symbol
696
- */
697
- declare const __destroy: symbol;
698
686
  /**
699
687
  * Lakutata object base class
700
688
  */
701
689
  declare class BaseObject extends AsyncConstructor {
702
690
  #private;
703
- [__init]: (...hooks: (() => Promise<void>)[]) => Promise<void>;
704
- [__destroy]: (...hooks: (() => Promise<void>)[]) => Promise<void>;
705
691
  /**
706
692
  * Constructor
707
693
  * @param cradleProxy
@@ -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 s;
10
-
11
- function n() {
12
- if (s) return r;
13
- s = 1;
14
- "use strict";
15
- Object.defineProperty(r, "__esModule", {
16
- value: true
17
- });
18
- r.AfterRemove = o;
19
- const e = t.requireGlobals();
20
- const n = t.requireEventListenerTypes();
21
- function o() {
22
- return function(t, r) {
23
- (0, e.getMetadataArgsStorage)().entityListeners.push({
24
- target: t.constructor,
25
- propertyName: r,
26
- type: n.EventListenerTypes.AFTER_REMOVE
27
- });
28
- };
29
- }
30
- return r;
31
- }
32
-
33
- var o = n();
34
-
35
- const u = e.getDefaultExportFromCjs(o);
36
-
37
- exports.AfterRemoveExports = o;