lakutata 2.0.80 → 2.0.81

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 (394) hide show
  1. package/com/cacher.cjs +8 -10
  2. package/com/cacher.d.ts +83 -14
  3. package/com/cacher.mjs +8 -10
  4. package/com/database.cjs +11 -11
  5. package/com/database.mjs +11 -11
  6. package/com/docker.cjs +17 -19
  7. package/com/docker.d.ts +3 -141
  8. package/com/docker.mjs +13 -15
  9. package/com/entrypoint.cjs +7 -5
  10. package/com/entrypoint.mjs +7 -5
  11. package/com/logger.cjs +7 -7
  12. package/com/logger.mjs +7 -7
  13. package/com/monitor.cjs +5 -3
  14. package/com/monitor.mjs +5 -3
  15. package/decorator/ctrl.cjs +3 -3
  16. package/decorator/ctrl.mjs +3 -3
  17. package/decorator/orm.cjs +98 -98
  18. package/decorator/orm.mjs +142 -56
  19. package/helper.cjs +9 -11
  20. package/helper.mjs +5 -7
  21. package/lakutata.cjs +23 -30
  22. package/lakutata.mjs +14 -18
  23. package/orm.cjs +1423 -886
  24. package/orm.mjs +1474 -724
  25. package/package.json +1 -1
  26. package/provider/database.cjs +11 -11
  27. package/provider/database.mjs +11 -11
  28. package/provider/passwordHash.cjs +4 -2
  29. package/provider/passwordHash.mjs +4 -2
  30. package/src/components/Database.cjs +11 -11
  31. package/src/components/Database.mjs +11 -11
  32. package/src/components/Logger.cjs +7 -7
  33. package/src/components/Logger.mjs +7 -7
  34. package/src/components/cacher/Cacher.cjs +1178 -264
  35. package/src/components/cacher/Cacher.mjs +1087 -173
  36. package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +479 -2963
  37. package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +469 -2947
  38. package/src/components/docker/ConnectionOptionsBuilder.cjs +15 -17
  39. package/src/components/docker/ConnectionOptionsBuilder.mjs +13 -15
  40. package/src/components/docker/Docker.cjs +4884 -4945
  41. package/src/components/docker/Docker.mjs +4902 -4963
  42. package/src/components/docker/lib/DockerContainer.cjs +23 -25
  43. package/src/components/docker/lib/DockerContainer.mjs +17 -19
  44. package/src/components/docker/lib/DockerContainerTTY.cjs +9 -11
  45. package/src/components/docker/lib/DockerContainerTTY.mjs +9 -11
  46. package/src/components/docker/lib/DockerImage.cjs +4 -2
  47. package/src/components/docker/lib/DockerImage.mjs +4 -2
  48. package/src/components/entrypoint/Entrypoint.cjs +2170 -1678
  49. package/src/components/entrypoint/Entrypoint.mjs +2126 -1634
  50. package/src/components/entrypoint/lib/AccessControl.cjs +4 -2
  51. package/src/components/entrypoint/lib/AccessControl.mjs +4 -2
  52. package/src/components/entrypoint/lib/AccessControlRule.cjs +4 -2
  53. package/src/components/entrypoint/lib/AccessControlRule.mjs +4 -2
  54. package/src/components/entrypoint/lib/Controller.cjs +4 -2
  55. package/src/components/entrypoint/lib/Controller.mjs +4 -2
  56. package/src/components/monitor/AliveMonitor.cjs +4 -2
  57. package/src/components/monitor/AliveMonitor.mjs +4 -2
  58. package/src/components/monitor/CpuMonitor.cjs +5 -3
  59. package/src/components/monitor/CpuMonitor.mjs +5 -3
  60. package/src/components/monitor/EventLoopMonitor.cjs +4 -2
  61. package/src/components/monitor/EventLoopMonitor.mjs +4 -2
  62. package/src/components/monitor/HttpRequestMonitor.cjs +5 -3
  63. package/src/components/monitor/HttpRequestMonitor.mjs +5 -3
  64. package/src/components/monitor/MemoryMonitor.cjs +5 -3
  65. package/src/components/monitor/MemoryMonitor.mjs +5 -3
  66. package/src/decorators/ctrl/CLIAction.cjs +3 -3
  67. package/src/decorators/ctrl/CLIAction.mjs +3 -3
  68. package/src/decorators/ctrl/HTTPAction.cjs +3 -3
  69. package/src/decorators/ctrl/HTTPAction.mjs +3 -3
  70. package/src/decorators/ctrl/ServiceAction.cjs +3 -3
  71. package/src/decorators/ctrl/ServiceAction.mjs +3 -3
  72. package/src/decorators/ctrl/http/DELETE.cjs +3 -3
  73. package/src/decorators/ctrl/http/DELETE.mjs +3 -3
  74. package/src/decorators/ctrl/http/GET.cjs +3 -3
  75. package/src/decorators/ctrl/http/GET.mjs +3 -3
  76. package/src/decorators/ctrl/http/HEAD.cjs +3 -3
  77. package/src/decorators/ctrl/http/HEAD.mjs +3 -3
  78. package/src/decorators/ctrl/http/OPTIONS.cjs +3 -3
  79. package/src/decorators/ctrl/http/OPTIONS.mjs +3 -3
  80. package/src/decorators/ctrl/http/PATCH.cjs +3 -3
  81. package/src/decorators/ctrl/http/PATCH.mjs +3 -3
  82. package/src/decorators/ctrl/http/POST.cjs +3 -3
  83. package/src/decorators/ctrl/http/POST.mjs +3 -3
  84. package/src/decorators/ctrl/http/PUT.cjs +3 -3
  85. package/src/decorators/ctrl/http/PUT.mjs +3 -3
  86. package/src/decorators/orm/AfterInsert.cjs +17 -39
  87. package/src/decorators/orm/AfterInsert.mjs +18 -38
  88. package/src/decorators/orm/AfterLoad.cjs +17 -39
  89. package/src/decorators/orm/AfterLoad.mjs +18 -38
  90. package/src/decorators/orm/AfterRecover.cjs +17 -39
  91. package/src/decorators/orm/AfterRecover.mjs +18 -38
  92. package/src/decorators/orm/AfterRemove.cjs +17 -39
  93. package/src/decorators/orm/AfterRemove.mjs +18 -38
  94. package/src/decorators/orm/AfterSoftRemove.cjs +17 -39
  95. package/src/decorators/orm/AfterSoftRemove.mjs +18 -38
  96. package/src/decorators/orm/AfterUpdate.cjs +17 -39
  97. package/src/decorators/orm/AfterUpdate.mjs +18 -38
  98. package/src/decorators/orm/BeforeInsert.cjs +17 -39
  99. package/src/decorators/orm/BeforeInsert.mjs +18 -38
  100. package/src/decorators/orm/BeforeRecover.cjs +17 -39
  101. package/src/decorators/orm/BeforeRecover.mjs +18 -38
  102. package/src/decorators/orm/BeforeRemove.cjs +17 -39
  103. package/src/decorators/orm/BeforeRemove.mjs +18 -38
  104. package/src/decorators/orm/BeforeSoftRemove.cjs +17 -39
  105. package/src/decorators/orm/BeforeSoftRemove.mjs +18 -38
  106. package/src/decorators/orm/BeforeUpdate.cjs +17 -39
  107. package/src/decorators/orm/BeforeUpdate.mjs +18 -38
  108. package/src/decorators/orm/Check.cjs +17 -42
  109. package/src/decorators/orm/Check.mjs +18 -41
  110. package/src/decorators/orm/ChildEntity.cjs +17 -42
  111. package/src/decorators/orm/ChildEntity.mjs +18 -41
  112. package/src/decorators/orm/Column.cjs +17 -74
  113. package/src/decorators/orm/Column.mjs +19 -74
  114. package/src/decorators/orm/CreateDateColumn.cjs +17 -38
  115. package/src/decorators/orm/CreateDateColumn.mjs +18 -37
  116. package/src/decorators/orm/DeleteDateColumn.cjs +17 -38
  117. package/src/decorators/orm/DeleteDateColumn.mjs +17 -36
  118. package/src/decorators/orm/Entity.cjs +17 -48
  119. package/src/decorators/orm/Entity.mjs +17 -46
  120. package/src/decorators/orm/EventSubscriber.cjs +17 -35
  121. package/src/decorators/orm/EventSubscriber.mjs +18 -34
  122. package/src/decorators/orm/Exclusion.cjs +17 -42
  123. package/src/decorators/orm/Exclusion.mjs +18 -41
  124. package/src/decorators/orm/Generated.cjs +17 -37
  125. package/src/decorators/orm/Generated.mjs +18 -36
  126. package/src/decorators/orm/Index.cjs +17 -54
  127. package/src/decorators/orm/Index.mjs +19 -54
  128. package/src/decorators/orm/JoinColumn.cjs +17 -42
  129. package/src/decorators/orm/JoinColumn.mjs +18 -41
  130. package/src/decorators/orm/JoinTable.cjs +17 -43
  131. package/src/decorators/orm/JoinTable.mjs +17 -41
  132. package/src/decorators/orm/ManyToMany.cjs +17 -55
  133. package/src/decorators/orm/ManyToMany.mjs +17 -53
  134. package/src/decorators/orm/ManyToOne.cjs +17 -55
  135. package/src/decorators/orm/ManyToOne.mjs +17 -53
  136. package/src/decorators/orm/ObjectIdColumn.cjs +17 -41
  137. package/src/decorators/orm/ObjectIdColumn.mjs +18 -40
  138. package/src/decorators/orm/OneToMany.cjs +17 -47
  139. package/src/decorators/orm/OneToMany.mjs +19 -47
  140. package/src/decorators/orm/OneToOne.cjs +17 -55
  141. package/src/decorators/orm/OneToOne.mjs +17 -53
  142. package/src/decorators/orm/PrimaryColumn.cjs +17 -62
  143. package/src/decorators/orm/PrimaryColumn.mjs +19 -62
  144. package/src/decorators/orm/PrimaryGeneratedColumn.cjs +17 -67
  145. package/src/decorators/orm/PrimaryGeneratedColumn.mjs +19 -67
  146. package/src/decorators/orm/RelationId.cjs +17 -39
  147. package/src/decorators/orm/RelationId.mjs +18 -38
  148. package/src/decorators/orm/TableInheritance.cjs +17 -39
  149. package/src/decorators/orm/TableInheritance.mjs +18 -38
  150. package/src/decorators/orm/Tree.cjs +17 -37
  151. package/src/decorators/orm/Tree.mjs +18 -36
  152. package/src/decorators/orm/TreeChildren.cjs +17 -44
  153. package/src/decorators/orm/TreeChildren.mjs +17 -42
  154. package/src/decorators/orm/TreeLevelColumn.cjs +17 -38
  155. package/src/decorators/orm/TreeLevelColumn.mjs +17 -36
  156. package/src/decorators/orm/TreeParent.cjs +17 -44
  157. package/src/decorators/orm/TreeParent.mjs +17 -42
  158. package/src/decorators/orm/Unique.cjs +17 -57
  159. package/src/decorators/orm/Unique.mjs +19 -57
  160. package/src/decorators/orm/UpdateDateColumn.cjs +17 -38
  161. package/src/decorators/orm/UpdateDateColumn.mjs +18 -37
  162. package/src/decorators/orm/VersionColumn.cjs +17 -38
  163. package/src/decorators/orm/VersionColumn.mjs +18 -37
  164. package/src/decorators/orm/ViewColumn.cjs +17 -38
  165. package/src/decorators/orm/ViewColumn.mjs +18 -37
  166. package/src/decorators/orm/ViewEntity.cjs +17 -47
  167. package/src/decorators/orm/ViewEntity.mjs +18 -46
  168. package/src/decorators/orm/VirtualColumn.cjs +17 -55
  169. package/src/decorators/orm/VirtualColumn.mjs +17 -53
  170. package/src/lib/base/BaseObject.cjs +4 -2
  171. package/src/lib/base/BaseObject.mjs +4 -2
  172. package/src/lib/base/EventEmitter.cjs +1200 -1193
  173. package/src/lib/base/EventEmitter.mjs +1201 -1194
  174. package/src/lib/base/internal/ApplicationConfigLoader.cjs +4 -2
  175. package/src/lib/base/internal/ApplicationConfigLoader.mjs +4 -2
  176. package/src/lib/base/internal/ControllerEntrypoint.cjs +3 -3
  177. package/src/lib/base/internal/ControllerEntrypoint.mjs +3 -3
  178. package/src/lib/base/internal/DataValidator.cjs +176 -179
  179. package/src/lib/base/internal/DataValidator.mjs +177 -180
  180. package/src/lib/base/internal/ModuleConfigLoader.cjs +4 -3
  181. package/src/lib/base/internal/ModuleConfigLoader.mjs +4 -3
  182. package/src/lib/base/internal/ObjectType.cjs +4 -2
  183. package/src/lib/base/internal/ObjectType.mjs +4 -2
  184. package/src/lib/base/internal/PatternManager.cjs +740 -735
  185. package/src/lib/base/internal/PatternManager.mjs +745 -740
  186. package/src/lib/base/internal/StringifyPattern.cjs +1 -1
  187. package/src/lib/base/internal/StringifyPattern.mjs +1 -1
  188. package/src/lib/core/Application.cjs +151 -147
  189. package/src/lib/core/Application.mjs +199 -197
  190. package/src/lib/core/Component.cjs +4 -2
  191. package/src/lib/core/Component.mjs +4 -2
  192. package/src/lib/core/Container.cjs +4 -2
  193. package/src/lib/core/Container.mjs +4 -2
  194. package/src/lib/core/Module.cjs +5 -3
  195. package/src/lib/core/Module.mjs +5 -3
  196. package/src/lib/core/Provider.cjs +4 -2
  197. package/src/lib/core/Provider.mjs +4 -2
  198. package/src/lib/helpers/Glob.cjs +970 -721
  199. package/src/lib/helpers/Glob.mjs +1036 -787
  200. package/src/lib/helpers/IsHtml.cjs +7 -13
  201. package/src/lib/helpers/IsHtml.mjs +7 -13
  202. package/src/lib/helpers/IsXML.cjs +1158 -1016
  203. package/src/lib/helpers/IsXML.mjs +871 -729
  204. package/src/lib/helpers/MD5.cjs +1 -1
  205. package/src/lib/helpers/MD5.mjs +1 -1
  206. package/src/lib/helpers/NonceStr.cjs +1 -1
  207. package/src/lib/helpers/NonceStr.mjs +1 -1
  208. package/src/lib/helpers/ObjectHash.cjs +379 -372
  209. package/src/lib/helpers/ObjectHash.mjs +379 -372
  210. package/src/lib/helpers/RandomString.cjs +168 -147
  211. package/src/lib/helpers/RandomString.mjs +167 -146
  212. package/src/lib/helpers/SHA1.cjs +1 -1
  213. package/src/lib/helpers/SHA1.mjs +1 -1
  214. package/src/lib/helpers/SHA256.cjs +1 -1
  215. package/src/lib/helpers/SHA256.mjs +1 -1
  216. package/src/lib/helpers/SortArray.cjs +1 -1
  217. package/src/lib/helpers/SortArray.mjs +1 -1
  218. package/src/lib/helpers/Statistics.cjs +1 -1
  219. package/src/lib/helpers/Statistics.mjs +1 -1
  220. package/src/lib/helpers/URLBuilder.cjs +355 -355
  221. package/src/lib/helpers/URLBuilder.mjs +350 -350
  222. package/src/lib/helpers/UUID.cjs +1 -1
  223. package/src/lib/helpers/UUID.mjs +1 -1
  224. package/src/lib/ioc/DependencyInjectionContainer.cjs +32 -30
  225. package/src/lib/ioc/DependencyInjectionContainer.mjs +12 -10
  226. package/src/lib/ioc/ListModules.cjs +5174 -5249
  227. package/src/lib/ioc/ListModules.mjs +5177 -5252
  228. package/src/lib/validation/VLD.cjs +4080 -3902
  229. package/src/lib/validation/VLD.mjs +2970 -2792
  230. package/src/options/ApplicationOptions.cjs +4 -2
  231. package/src/options/ApplicationOptions.mjs +4 -2
  232. package/src/options/LoadAnonymousObjectOptions.cjs +4 -2
  233. package/src/options/LoadAnonymousObjectOptions.mjs +4 -2
  234. package/src/options/LoadNamedObjectOptions.cjs +4 -2
  235. package/src/options/LoadNamedObjectOptions.mjs +4 -2
  236. package/src/options/LoadObjectOptions.cjs +4 -2
  237. package/src/options/LoadObjectOptions.mjs +4 -2
  238. package/src/options/ModuleLoadObjectsOptions.cjs +4 -2
  239. package/src/options/ModuleLoadObjectsOptions.mjs +4 -2
  240. package/src/options/ModuleOptions.cjs +4 -4
  241. package/src/options/ModuleOptions.mjs +4 -4
  242. package/src/options/OverridableNamedObjectOptions.cjs +4 -2
  243. package/src/options/OverridableNamedObjectOptions.mjs +4 -2
  244. package/src/options/OverridableObjectOptions.cjs +4 -2
  245. package/src/options/OverridableObjectOptions.mjs +4 -2
  246. package/src/providers/Database.cjs +11 -11
  247. package/src/providers/Database.mjs +11 -11
  248. package/src/providers/PasswordHash.cjs +5 -3
  249. package/src/providers/PasswordHash.mjs +190 -188
  250. package/src/providers/migration/GenerateMigration.cjs +15 -19
  251. package/src/providers/migration/GenerateMigration.mjs +15 -19
  252. package/vendor/Package.10.cjs +2 -8
  253. package/vendor/Package.10.mjs +2 -8
  254. package/vendor/Package.11.cjs +5 -83
  255. package/vendor/Package.11.mjs +5 -77
  256. package/vendor/Package.112.cjs +48900 -0
  257. package/vendor/Package.112.mjs +48764 -0
  258. package/vendor/Package.12.cjs +4 -2
  259. package/vendor/Package.12.mjs +6 -4
  260. package/vendor/Package.13.cjs +87 -1
  261. package/vendor/Package.13.mjs +81 -1
  262. package/vendor/Package.14.cjs +1 -14057
  263. package/vendor/Package.14.mjs +1 -14031
  264. package/vendor/Package.15.cjs +1 -1
  265. package/vendor/Package.15.mjs +1 -1
  266. package/vendor/Package.16.cjs +18129 -1935
  267. package/vendor/Package.16.mjs +18115 -1839
  268. package/vendor/Package.17.cjs +1922 -47918
  269. package/vendor/Package.17.mjs +1874 -47937
  270. package/vendor/Package.18.cjs +35 -1
  271. package/vendor/Package.18.mjs +35 -1
  272. package/vendor/Package.19.cjs +37 -0
  273. package/vendor/Package.19.mjs +35 -0
  274. package/vendor/Package.2.cjs +5739 -5710
  275. package/vendor/Package.2.mjs +5733 -5704
  276. package/vendor/Package.20.cjs +37 -0
  277. package/vendor/Package.20.mjs +35 -0
  278. package/vendor/Package.21.cjs +37 -0
  279. package/vendor/Package.21.mjs +35 -0
  280. package/vendor/Package.22.cjs +37 -0
  281. package/vendor/Package.22.mjs +35 -0
  282. package/vendor/Package.23.cjs +37 -0
  283. package/vendor/Package.23.mjs +35 -0
  284. package/vendor/Package.24.cjs +37 -0
  285. package/vendor/Package.24.mjs +35 -0
  286. package/vendor/Package.25.cjs +37 -0
  287. package/vendor/Package.25.mjs +35 -0
  288. package/vendor/Package.26.cjs +37 -0
  289. package/vendor/Package.26.mjs +35 -0
  290. package/vendor/Package.27.cjs +37 -0
  291. package/vendor/Package.27.mjs +35 -0
  292. package/vendor/Package.28.cjs +37 -0
  293. package/vendor/Package.28.mjs +35 -0
  294. package/vendor/Package.29.cjs +40 -0
  295. package/vendor/Package.29.mjs +38 -0
  296. package/vendor/Package.30.cjs +41 -0
  297. package/vendor/Package.30.mjs +39 -0
  298. package/vendor/Package.31.cjs +72 -0
  299. package/vendor/Package.31.mjs +70 -0
  300. package/vendor/Package.32.cjs +37 -0
  301. package/vendor/Package.32.mjs +35 -0
  302. package/vendor/Package.33.cjs +37 -0
  303. package/vendor/Package.33.mjs +35 -0
  304. package/vendor/Package.34.cjs +46 -0
  305. package/vendor/Package.34.mjs +44 -0
  306. package/vendor/Package.35.cjs +34 -0
  307. package/vendor/Package.35.mjs +32 -0
  308. package/vendor/Package.36.cjs +40 -0
  309. package/vendor/Package.36.mjs +38 -0
  310. package/vendor/Package.37.cjs +36 -0
  311. package/vendor/Package.37.mjs +34 -0
  312. package/vendor/Package.38.cjs +52 -0
  313. package/vendor/Package.38.mjs +50 -0
  314. package/vendor/Package.39.cjs +41 -0
  315. package/vendor/Package.39.mjs +39 -0
  316. package/vendor/Package.4.cjs +884 -874
  317. package/vendor/Package.4.mjs +884 -874
  318. package/vendor/Package.40.cjs +42 -0
  319. package/vendor/Package.40.mjs +40 -0
  320. package/vendor/Package.41.cjs +53 -0
  321. package/vendor/Package.41.mjs +51 -0
  322. package/vendor/Package.42.cjs +53 -0
  323. package/vendor/Package.42.mjs +51 -0
  324. package/vendor/Package.43.cjs +40 -0
  325. package/vendor/Package.43.mjs +38 -0
  326. package/vendor/Package.44.cjs +46 -0
  327. package/vendor/Package.44.mjs +44 -0
  328. package/vendor/Package.45.cjs +53 -0
  329. package/vendor/Package.45.mjs +51 -0
  330. package/vendor/Package.46.cjs +59 -0
  331. package/vendor/Package.46.mjs +57 -0
  332. package/vendor/Package.47.cjs +65 -0
  333. package/vendor/Package.47.mjs +63 -0
  334. package/vendor/Package.48.cjs +38 -0
  335. package/vendor/Package.48.mjs +36 -0
  336. package/vendor/Package.49.cjs +38 -0
  337. package/vendor/Package.49.mjs +36 -0
  338. package/vendor/Package.5.cjs +15 -11
  339. package/vendor/Package.5.mjs +11 -7
  340. package/vendor/Package.50.cjs +36 -0
  341. package/vendor/Package.50.mjs +34 -0
  342. package/vendor/Package.51.cjs +43 -0
  343. package/vendor/Package.51.mjs +41 -0
  344. package/vendor/Package.52.cjs +37 -0
  345. package/vendor/Package.52.mjs +35 -0
  346. package/vendor/Package.53.cjs +43 -0
  347. package/vendor/Package.53.mjs +41 -0
  348. package/vendor/Package.54.cjs +55 -0
  349. package/vendor/Package.54.mjs +53 -0
  350. package/vendor/Package.55.cjs +37 -0
  351. package/vendor/Package.55.mjs +35 -0
  352. package/vendor/Package.56.cjs +37 -0
  353. package/vendor/Package.56.mjs +35 -0
  354. package/vendor/Package.57.cjs +37 -0
  355. package/vendor/Package.57.mjs +35 -0
  356. package/vendor/Package.58.cjs +45 -0
  357. package/vendor/Package.58.mjs +43 -0
  358. package/vendor/Package.59.cjs +53 -0
  359. package/vendor/Package.59.mjs +51 -0
  360. package/vendor/Package.6.cjs +520 -511
  361. package/vendor/Package.6.mjs +543 -534
  362. package/vendor/Package.60.cjs +47649 -0
  363. package/vendor/Package.60.mjs +47606 -0
  364. package/vendor/Package.610.cjs +11 -11
  365. package/vendor/Package.610.mjs +11 -11
  366. package/vendor/Package.611.cjs +33 -23
  367. package/vendor/Package.611.mjs +19 -9
  368. package/vendor/Package.612.cjs +42 -36
  369. package/vendor/Package.612.mjs +35 -29
  370. package/vendor/Package.613.cjs +5 -4
  371. package/vendor/Package.613.mjs +5 -4
  372. package/vendor/Package.62.cjs +92 -89
  373. package/vendor/Package.62.mjs +185 -182
  374. package/vendor/Package.63.cjs +509 -166
  375. package/vendor/Package.63.mjs +490 -165
  376. package/vendor/Package.64.cjs +139 -511
  377. package/vendor/Package.64.mjs +139 -491
  378. package/vendor/Package.65.cjs +4135 -150
  379. package/vendor/Package.65.mjs +4143 -150
  380. package/vendor/Package.66.cjs +346 -4150
  381. package/vendor/Package.66.mjs +346 -4158
  382. package/vendor/Package.67.cjs +412 -261
  383. package/vendor/Package.67.mjs +410 -259
  384. package/vendor/Package.68.cjs +397 -405
  385. package/vendor/Package.68.mjs +227 -242
  386. package/vendor/Package.8.cjs +0 -4
  387. package/vendor/Package.8.mjs +0 -4
  388. package/vendor/Package.9.cjs +132 -118
  389. package/vendor/Package.9.mjs +138 -124
  390. package/vendor/TypeDef.internal.3.d.ts +0 -4
  391. package/vendor/Package.102.cjs +0 -48773
  392. package/vendor/Package.102.mjs +0 -48697
  393. package/vendor/Package.122.cjs +0 -3
  394. package/vendor/Package.122.mjs +0 -1
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+
3
+ const e = require("./Package.5.cjs");
4
+
5
+ const n = require("./Package.112.cjs");
6
+
7
+ var o = {};
8
+
9
+ var r;
10
+
11
+ function s() {
12
+ if (r) return o;
13
+ r = 1;
14
+ "use strict";
15
+ Object.defineProperty(o, "__esModule", {
16
+ value: true
17
+ });
18
+ o.JoinTable = s;
19
+ const e = n.requireGlobals();
20
+ function s(n) {
21
+ return function(o, r) {
22
+ n = n || {};
23
+ (0, e.getMetadataArgsStorage)().joinTables.push({
24
+ target: o.constructor,
25
+ propertyName: r,
26
+ name: n.name,
27
+ joinColumns: n && n.joinColumn ? [ n.joinColumn ] : n.joinColumns,
28
+ inverseJoinColumns: n && n.inverseJoinColumn ? [ n.inverseJoinColumn ] : n.inverseJoinColumns,
29
+ schema: n && n.schema ? n.schema : undefined,
30
+ database: n && n.database ? n.database : undefined,
31
+ synchronize: !(n && n.synchronize === false)
32
+ });
33
+ };
34
+ }
35
+ return o;
36
+ }
37
+
38
+ var a = s();
39
+
40
+ const t = e.getDefaultExportFromCjs(a);
41
+
42
+ exports.JoinTableExports = a;
@@ -0,0 +1,40 @@
1
+ import { g as e } from "./Package.5.mjs";
2
+
3
+ import { h as n } from "./Package.112.mjs";
4
+
5
+ var o = {};
6
+
7
+ var a;
8
+
9
+ function r() {
10
+ if (a) return o;
11
+ a = 1;
12
+ "use strict";
13
+ Object.defineProperty(o, "__esModule", {
14
+ value: true
15
+ });
16
+ o.JoinTable = r;
17
+ const e = n();
18
+ function r(n) {
19
+ return function(o, a) {
20
+ n = n || {};
21
+ (0, e.getMetadataArgsStorage)().joinTables.push({
22
+ target: o.constructor,
23
+ propertyName: a,
24
+ name: n.name,
25
+ joinColumns: n && n.joinColumn ? [ n.joinColumn ] : n.joinColumns,
26
+ inverseJoinColumns: n && n.inverseJoinColumn ? [ n.inverseJoinColumn ] : n.inverseJoinColumns,
27
+ schema: n && n.schema ? n.schema : undefined,
28
+ database: n && n.database ? n.database : undefined,
29
+ synchronize: !(n && n.synchronize === false)
30
+ });
31
+ };
32
+ }
33
+ return o;
34
+ }
35
+
36
+ var s = r();
37
+
38
+ const t = e(s);
39
+
40
+ export { s as J };
@@ -0,0 +1,53 @@
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 a;
10
+
11
+ function o() {
12
+ if (a) return r;
13
+ a = 1;
14
+ "use strict";
15
+ Object.defineProperty(r, "__esModule", {
16
+ value: true
17
+ });
18
+ r.ManyToMany = s;
19
+ const e = t.requireGlobals();
20
+ const o = t.requireObjectUtils();
21
+ function s(t, r, a) {
22
+ let s;
23
+ if (o.ObjectUtils.isObject(r)) {
24
+ a = r;
25
+ } else {
26
+ s = r;
27
+ }
28
+ return function(r, o) {
29
+ if (!a) a = {};
30
+ let n = a.lazy === true;
31
+ if (!n && Reflect && Reflect.getMetadata) {
32
+ const e = Reflect.getMetadata("design:type", r, o);
33
+ if (e && typeof e.name === "string" && e.name.toLowerCase() === "promise") n = true;
34
+ }
35
+ (0, e.getMetadataArgsStorage)().relations.push({
36
+ target: r.constructor,
37
+ propertyName: o,
38
+ relationType: "many-to-many",
39
+ isLazy: n,
40
+ type: t,
41
+ inverseSideProperty: s,
42
+ options: a
43
+ });
44
+ };
45
+ }
46
+ return r;
47
+ }
48
+
49
+ var s = o();
50
+
51
+ const n = e.getDefaultExportFromCjs(s);
52
+
53
+ exports.ManyToManyExports = s;
@@ -0,0 +1,51 @@
1
+ import { g as e } from "./Package.5.mjs";
2
+
3
+ import { h as t, k as a } from "./Package.112.mjs";
4
+
5
+ var r = {};
6
+
7
+ var o;
8
+
9
+ function n() {
10
+ if (o) return r;
11
+ o = 1;
12
+ "use strict";
13
+ Object.defineProperty(r, "__esModule", {
14
+ value: true
15
+ });
16
+ r.ManyToMany = s;
17
+ const e = t();
18
+ const n = a();
19
+ function s(t, a, r) {
20
+ let o;
21
+ if (n.ObjectUtils.isObject(a)) {
22
+ r = a;
23
+ } else {
24
+ o = a;
25
+ }
26
+ return function(a, n) {
27
+ if (!r) r = {};
28
+ let s = r.lazy === true;
29
+ if (!s && Reflect && Reflect.getMetadata) {
30
+ const e = Reflect.getMetadata("design:type", a, n);
31
+ if (e && typeof e.name === "string" && e.name.toLowerCase() === "promise") s = true;
32
+ }
33
+ (0, e.getMetadataArgsStorage)().relations.push({
34
+ target: a.constructor,
35
+ propertyName: n,
36
+ relationType: "many-to-many",
37
+ isLazy: s,
38
+ type: t,
39
+ inverseSideProperty: o,
40
+ options: r
41
+ });
42
+ };
43
+ }
44
+ return r;
45
+ }
46
+
47
+ var s = n();
48
+
49
+ const i = e(s);
50
+
51
+ export { s as M };
@@ -0,0 +1,53 @@
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.ManyToOne = s;
19
+ const e = t.requireGlobals();
20
+ const a = t.requireObjectUtils();
21
+ function s(t, r, o) {
22
+ let s;
23
+ if (a.ObjectUtils.isObject(r)) {
24
+ o = r;
25
+ } else {
26
+ s = r;
27
+ }
28
+ return function(r, a) {
29
+ if (!o) o = {};
30
+ let n = o && o.lazy === true;
31
+ if (!n && Reflect && Reflect.getMetadata) {
32
+ const e = Reflect.getMetadata("design:type", r, a);
33
+ if (e && typeof e.name === "string" && e.name.toLowerCase() === "promise") n = true;
34
+ }
35
+ (0, e.getMetadataArgsStorage)().relations.push({
36
+ target: r.constructor,
37
+ propertyName: a,
38
+ relationType: "many-to-one",
39
+ isLazy: n,
40
+ type: t,
41
+ inverseSideProperty: s,
42
+ options: o
43
+ });
44
+ };
45
+ }
46
+ return r;
47
+ }
48
+
49
+ var s = a();
50
+
51
+ const n = e.getDefaultExportFromCjs(s);
52
+
53
+ exports.ManyToOneExports = s;
@@ -0,0 +1,51 @@
1
+ import { g as e } from "./Package.5.mjs";
2
+
3
+ import { h as t, k as r } from "./Package.112.mjs";
4
+
5
+ var a = {};
6
+
7
+ var o;
8
+
9
+ function n() {
10
+ if (o) return a;
11
+ o = 1;
12
+ "use strict";
13
+ Object.defineProperty(a, "__esModule", {
14
+ value: true
15
+ });
16
+ a.ManyToOne = s;
17
+ const e = t();
18
+ const n = r();
19
+ function s(t, r, a) {
20
+ let o;
21
+ if (n.ObjectUtils.isObject(r)) {
22
+ a = r;
23
+ } else {
24
+ o = r;
25
+ }
26
+ return function(r, n) {
27
+ if (!a) a = {};
28
+ let s = a && a.lazy === true;
29
+ if (!s && Reflect && Reflect.getMetadata) {
30
+ const e = Reflect.getMetadata("design:type", r, n);
31
+ if (e && typeof e.name === "string" && e.name.toLowerCase() === "promise") s = true;
32
+ }
33
+ (0, e.getMetadataArgsStorage)().relations.push({
34
+ target: r.constructor,
35
+ propertyName: n,
36
+ relationType: "many-to-one",
37
+ isLazy: s,
38
+ type: t,
39
+ inverseSideProperty: o,
40
+ options: a
41
+ });
42
+ };
43
+ }
44
+ return a;
45
+ }
46
+
47
+ var s = n();
48
+
49
+ const i = e(s);
50
+
51
+ export { s as M };
@@ -0,0 +1,40 @@
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 n() {
12
+ if (o) return r;
13
+ o = 1;
14
+ "use strict";
15
+ Object.defineProperty(r, "__esModule", {
16
+ value: true
17
+ });
18
+ r.ObjectIdColumn = n;
19
+ const e = t.requireGlobals();
20
+ function n(t) {
21
+ return function(r, o) {
22
+ if (!t) t = {};
23
+ t.primary = true;
24
+ if (!t.name) t.name = "_id";
25
+ (0, e.getMetadataArgsStorage)().columns.push({
26
+ target: r.constructor,
27
+ propertyName: o,
28
+ mode: "objectId",
29
+ options: t
30
+ });
31
+ };
32
+ }
33
+ return r;
34
+ }
35
+
36
+ var u = n();
37
+
38
+ const c = e.getDefaultExportFromCjs(u);
39
+
40
+ exports.ObjectIdColumnExports = u;
@@ -0,0 +1,38 @@
1
+ import { g as t } from "./Package.5.mjs";
2
+
3
+ import { h as r } from "./Package.112.mjs";
4
+
5
+ var e = {};
6
+
7
+ var o;
8
+
9
+ function a() {
10
+ if (o) return e;
11
+ o = 1;
12
+ "use strict";
13
+ Object.defineProperty(e, "__esModule", {
14
+ value: true
15
+ });
16
+ e.ObjectIdColumn = a;
17
+ const t = r();
18
+ function a(r) {
19
+ return function(e, o) {
20
+ if (!r) r = {};
21
+ r.primary = true;
22
+ if (!r.name) r.name = "_id";
23
+ (0, t.getMetadataArgsStorage)().columns.push({
24
+ target: e.constructor,
25
+ propertyName: o,
26
+ mode: "objectId",
27
+ options: r
28
+ });
29
+ };
30
+ }
31
+ return e;
32
+ }
33
+
34
+ var n = a();
35
+
36
+ const s = t(n);
37
+
38
+ export { n as O };
@@ -0,0 +1,46 @@
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 a;
10
+
11
+ function o() {
12
+ if (a) return r;
13
+ a = 1;
14
+ "use strict";
15
+ Object.defineProperty(r, "__esModule", {
16
+ value: true
17
+ });
18
+ r.OneToMany = o;
19
+ const e = t.requireGlobals();
20
+ function o(t, r, a) {
21
+ return function(o, n) {
22
+ if (!a) a = {};
23
+ let s = a && a.lazy === true;
24
+ if (!s && Reflect && Reflect.getMetadata) {
25
+ const e = Reflect.getMetadata("design:type", o, n);
26
+ if (e && typeof e.name === "string" && e.name.toLowerCase() === "promise") s = true;
27
+ }
28
+ (0, e.getMetadataArgsStorage)().relations.push({
29
+ target: o.constructor,
30
+ propertyName: n,
31
+ isLazy: s,
32
+ relationType: "one-to-many",
33
+ type: t,
34
+ inverseSideProperty: r,
35
+ options: a
36
+ });
37
+ };
38
+ }
39
+ return r;
40
+ }
41
+
42
+ var n = o();
43
+
44
+ const s = e.getDefaultExportFromCjs(n);
45
+
46
+ exports.OneToManyExports = n;
@@ -0,0 +1,44 @@
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 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.OneToMany = o;
17
+ const e = t();
18
+ function o(t, r, a) {
19
+ return function(o, n) {
20
+ if (!a) a = {};
21
+ let s = a && a.lazy === true;
22
+ if (!s && Reflect && Reflect.getMetadata) {
23
+ const e = Reflect.getMetadata("design:type", o, n);
24
+ if (e && typeof e.name === "string" && e.name.toLowerCase() === "promise") s = true;
25
+ }
26
+ (0, e.getMetadataArgsStorage)().relations.push({
27
+ target: o.constructor,
28
+ propertyName: n,
29
+ isLazy: s,
30
+ relationType: "one-to-many",
31
+ type: t,
32
+ inverseSideProperty: r,
33
+ options: a
34
+ });
35
+ };
36
+ }
37
+ return r;
38
+ }
39
+
40
+ var n = o();
41
+
42
+ const s = e(n);
43
+
44
+ export { n as O };
@@ -0,0 +1,53 @@
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.OneToOne = n;
19
+ const e = t.requireGlobals();
20
+ const s = t.requireObjectUtils();
21
+ function n(t, r, o) {
22
+ let n;
23
+ if (s.ObjectUtils.isObject(r)) {
24
+ o = r;
25
+ } else {
26
+ n = r;
27
+ }
28
+ return function(r, s) {
29
+ if (!o) o = {};
30
+ let a = o && o.lazy === true ? true : false;
31
+ if (!a && Reflect && Reflect.getMetadata) {
32
+ const e = Reflect.getMetadata("design:type", r, s);
33
+ if (e && typeof e.name === "string" && e.name.toLowerCase() === "promise") a = true;
34
+ }
35
+ (0, e.getMetadataArgsStorage)().relations.push({
36
+ target: r.constructor,
37
+ propertyName: s,
38
+ isLazy: a,
39
+ relationType: "one-to-one",
40
+ type: t,
41
+ inverseSideProperty: n,
42
+ options: o
43
+ });
44
+ };
45
+ }
46
+ return r;
47
+ }
48
+
49
+ var n = s();
50
+
51
+ const a = e.getDefaultExportFromCjs(n);
52
+
53
+ exports.OneToOneExports = n;
@@ -0,0 +1,51 @@
1
+ import { g as e } from "./Package.5.mjs";
2
+
3
+ import { h as t, k as r } from "./Package.112.mjs";
4
+
5
+ var a = {};
6
+
7
+ var o;
8
+
9
+ function s() {
10
+ if (o) return a;
11
+ o = 1;
12
+ "use strict";
13
+ Object.defineProperty(a, "__esModule", {
14
+ value: true
15
+ });
16
+ a.OneToOne = n;
17
+ const e = t();
18
+ const s = r();
19
+ function n(t, r, a) {
20
+ let o;
21
+ if (s.ObjectUtils.isObject(r)) {
22
+ a = r;
23
+ } else {
24
+ o = r;
25
+ }
26
+ return function(r, s) {
27
+ if (!a) a = {};
28
+ let n = a && a.lazy === true ? true : false;
29
+ if (!n && Reflect && Reflect.getMetadata) {
30
+ const e = Reflect.getMetadata("design:type", r, s);
31
+ if (e && typeof e.name === "string" && e.name.toLowerCase() === "promise") n = true;
32
+ }
33
+ (0, e.getMetadataArgsStorage)().relations.push({
34
+ target: r.constructor,
35
+ propertyName: s,
36
+ isLazy: n,
37
+ relationType: "one-to-one",
38
+ type: t,
39
+ inverseSideProperty: o,
40
+ options: a
41
+ });
42
+ };
43
+ }
44
+ return a;
45
+ }
46
+
47
+ var n = s();
48
+
49
+ const i = e(n);
50
+
51
+ export { n as O };
@@ -0,0 +1,59 @@
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 n;
10
+
11
+ function o() {
12
+ if (n) return t;
13
+ n = 1;
14
+ "use strict";
15
+ Object.defineProperty(t, "__esModule", {
16
+ value: true
17
+ });
18
+ t.PrimaryColumn = i;
19
+ const e = r.requireGlobals();
20
+ const o = r.requireColumnTypeUndefinedError();
21
+ const a = r.requirePrimaryColumnCannotBeNullableError();
22
+ function i(r, t) {
23
+ return function(n, i) {
24
+ let u;
25
+ if (typeof r === "string" || r === String || r === Boolean || r === Number) {
26
+ u = r;
27
+ } else {
28
+ t = Object.assign({}, r);
29
+ }
30
+ if (!t) t = {};
31
+ const s = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", n, i) : undefined;
32
+ if (!u && s) u = s;
33
+ if (!t.type && u) t.type = u;
34
+ if (!t.type) throw new o.ColumnTypeUndefinedError(n, i);
35
+ if (t.nullable) throw new a.PrimaryColumnCannotBeNullableError(n, i);
36
+ t.primary = true;
37
+ (0, e.getMetadataArgsStorage)().columns.push({
38
+ target: n.constructor,
39
+ propertyName: i,
40
+ mode: "regular",
41
+ options: t
42
+ });
43
+ if (t.generated) {
44
+ (0, e.getMetadataArgsStorage)().generations.push({
45
+ target: n.constructor,
46
+ propertyName: i,
47
+ strategy: typeof t.generated === "string" ? t.generated : "increment"
48
+ });
49
+ }
50
+ };
51
+ }
52
+ return t;
53
+ }
54
+
55
+ var a = o();
56
+
57
+ const i = e.getDefaultExportFromCjs(a);
58
+
59
+ exports.PrimaryColumnExports = a;
@@ -0,0 +1,57 @@
1
+ import { g as e } from "./Package.5.mjs";
2
+
3
+ import { h as t, j as r, l as a } from "./Package.112.mjs";
4
+
5
+ var n = {};
6
+
7
+ var o;
8
+
9
+ function s() {
10
+ if (o) return n;
11
+ o = 1;
12
+ "use strict";
13
+ Object.defineProperty(n, "__esModule", {
14
+ value: true
15
+ });
16
+ n.PrimaryColumn = g;
17
+ const e = t();
18
+ const s = r();
19
+ const i = a();
20
+ function g(t, r) {
21
+ return function(a, n) {
22
+ let o;
23
+ if (typeof t === "string" || t === String || t === Boolean || t === Number) {
24
+ o = t;
25
+ } else {
26
+ r = Object.assign({}, t);
27
+ }
28
+ if (!r) r = {};
29
+ const g = Reflect && Reflect.getMetadata ? Reflect.getMetadata("design:type", a, n) : undefined;
30
+ if (!o && g) o = g;
31
+ if (!r.type && o) r.type = o;
32
+ if (!r.type) throw new s.ColumnTypeUndefinedError(a, n);
33
+ if (r.nullable) throw new i.PrimaryColumnCannotBeNullableError(a, n);
34
+ r.primary = true;
35
+ (0, e.getMetadataArgsStorage)().columns.push({
36
+ target: a.constructor,
37
+ propertyName: n,
38
+ mode: "regular",
39
+ options: r
40
+ });
41
+ if (r.generated) {
42
+ (0, e.getMetadataArgsStorage)().generations.push({
43
+ target: a.constructor,
44
+ propertyName: n,
45
+ strategy: typeof r.generated === "string" ? r.generated : "increment"
46
+ });
47
+ }
48
+ };
49
+ }
50
+ return n;
51
+ }
52
+
53
+ var i = s();
54
+
55
+ const g = e(i);
56
+
57
+ export { i as P };