lakutata 2.0.70 → 2.0.72

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 (379) hide show
  1. package/com/cacher.cjs +4 -8
  2. package/com/cacher.mjs +4 -8
  3. package/com/database.cjs +6 -10
  4. package/com/database.mjs +6 -10
  5. package/com/docker.cjs +19 -23
  6. package/com/docker.mjs +15 -19
  7. package/com/entrypoint.cjs +1 -5
  8. package/com/entrypoint.mjs +1 -5
  9. package/com/logger.cjs +4 -8
  10. package/com/logger.mjs +4 -8
  11. package/com/monitor.cjs +1 -5
  12. package/com/monitor.mjs +1 -5
  13. package/decorator/ctrl.cjs +1 -5
  14. package/decorator/ctrl.mjs +1 -5
  15. package/decorator/di.cjs +0 -4
  16. package/decorator/di.mjs +0 -4
  17. package/decorator/dto.cjs +0 -4
  18. package/decorator/dto.mjs +0 -4
  19. package/decorator/orm.cjs +17 -21
  20. package/decorator/orm.mjs +11 -15
  21. package/dtos.cjs +69 -0
  22. package/dtos.d.ts +19 -0
  23. package/dtos.mjs +59 -0
  24. package/helper.cjs +20 -20
  25. package/helper.d.ts +11 -1
  26. package/helper.mjs +4 -6
  27. package/lakutata.cjs +15 -19
  28. package/lakutata.d.ts +1 -1
  29. package/lakutata.mjs +5 -9
  30. package/orm.cjs +20 -24
  31. package/orm.mjs +22 -26
  32. package/package.json +6 -1
  33. package/provider/database.cjs +6 -10
  34. package/provider/database.mjs +6 -10
  35. package/provider/passwordHash.cjs +0 -4
  36. package/provider/passwordHash.mjs +0 -4
  37. package/src/components/Database.cjs +6 -10
  38. package/src/components/Database.mjs +6 -10
  39. package/src/components/Logger.cjs +4 -8
  40. package/src/components/Logger.mjs +4 -8
  41. package/src/components/cacher/Cacher.cjs +8 -12
  42. package/src/components/cacher/Cacher.mjs +12 -16
  43. package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +4 -6
  44. package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +4 -6
  45. package/src/components/cacher/options/FileCacheOptions.cjs +6 -10
  46. package/src/components/cacher/options/FileCacheOptions.mjs +0 -4
  47. package/src/components/cacher/options/MemcacheCacheOptions.cjs +0 -4
  48. package/src/components/cacher/options/MemcacheCacheOptions.mjs +0 -4
  49. package/src/components/cacher/options/MongoCacheOptions.cjs +0 -4
  50. package/src/components/cacher/options/MongoCacheOptions.mjs +0 -4
  51. package/src/components/cacher/options/MysqlCacheOptions.cjs +0 -4
  52. package/src/components/cacher/options/MysqlCacheOptions.mjs +11 -15
  53. package/src/components/cacher/options/PostgresCacheOptions.cjs +0 -4
  54. package/src/components/cacher/options/PostgresCacheOptions.mjs +0 -4
  55. package/src/components/cacher/options/RedisCacheOptions.cjs +0 -4
  56. package/src/components/cacher/options/RedisCacheOptions.mjs +0 -4
  57. package/src/components/cacher/options/SqliteCacheOptions.cjs +0 -4
  58. package/src/components/cacher/options/SqliteCacheOptions.mjs +6 -10
  59. package/src/components/docker/ConnectionOptionsBuilder.cjs +15 -19
  60. package/src/components/docker/ConnectionOptionsBuilder.mjs +15 -19
  61. package/src/components/docker/Docker.cjs +15 -19
  62. package/src/components/docker/Docker.mjs +15 -19
  63. package/src/components/docker/lib/DockerContainer.cjs +22 -26
  64. package/src/components/docker/lib/DockerContainer.mjs +19 -23
  65. package/src/components/docker/lib/DockerContainerTTY.cjs +15 -19
  66. package/src/components/docker/lib/DockerContainerTTY.mjs +15 -19
  67. package/src/components/docker/lib/DockerImage.cjs +8 -12
  68. package/src/components/docker/lib/DockerImage.mjs +0 -4
  69. package/src/components/docker/options/DockerPruneOptions.cjs +0 -4
  70. package/src/components/docker/options/DockerPruneOptions.mjs +0 -4
  71. package/src/components/docker/options/auth/DockerAuthOptions.cjs +0 -4
  72. package/src/components/docker/options/auth/DockerAuthOptions.mjs +0 -4
  73. package/src/components/docker/options/container/ContainerCommitOptions.cjs +3 -7
  74. package/src/components/docker/options/container/ContainerCommitOptions.mjs +0 -4
  75. package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +4 -8
  76. package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +0 -4
  77. package/src/components/docker/options/container/ContainerExecOptions.cjs +0 -4
  78. package/src/components/docker/options/container/ContainerExecOptions.mjs +2 -6
  79. package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +0 -4
  80. package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +0 -4
  81. package/src/components/docker/options/container/ContainerKillOptions.cjs +0 -4
  82. package/src/components/docker/options/container/ContainerKillOptions.mjs +2 -6
  83. package/src/components/docker/options/container/ContainerLogsOptions.cjs +0 -4
  84. package/src/components/docker/options/container/ContainerLogsOptions.mjs +0 -4
  85. package/src/components/docker/options/container/ContainerRemoveOptions.cjs +0 -4
  86. package/src/components/docker/options/container/ContainerRemoveOptions.mjs +0 -4
  87. package/src/components/docker/options/container/ContainerSettingOptions.cjs +0 -4
  88. package/src/components/docker/options/container/ContainerSettingOptions.mjs +0 -4
  89. package/src/components/docker/options/container/ContainerStopOptions.cjs +0 -4
  90. package/src/components/docker/options/container/ContainerStopOptions.mjs +0 -4
  91. package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +0 -4
  92. package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +0 -4
  93. package/src/components/docker/options/image/ImageBuildOptions.cjs +2 -6
  94. package/src/components/docker/options/image/ImageBuildOptions.mjs +2 -6
  95. package/src/components/docker/options/image/ImageExportOptions.cjs +0 -4
  96. package/src/components/docker/options/image/ImageExportOptions.mjs +0 -4
  97. package/src/components/docker/options/image/ImageImportOptions.cjs +0 -4
  98. package/src/components/docker/options/image/ImageImportOptions.mjs +0 -4
  99. package/src/components/docker/options/image/ImagePullOptions.cjs +0 -4
  100. package/src/components/docker/options/image/ImagePullOptions.mjs +0 -4
  101. package/src/components/docker/options/image/ImagePushOptions.cjs +0 -4
  102. package/src/components/docker/options/image/ImagePushOptions.mjs +0 -4
  103. package/src/components/docker/options/image/ImageRemoveOptions.cjs +3 -7
  104. package/src/components/docker/options/image/ImageRemoveOptions.mjs +0 -4
  105. package/src/components/docker/options/image/ImageTagOptions.cjs +0 -4
  106. package/src/components/docker/options/image/ImageTagOptions.mjs +0 -4
  107. package/src/components/docker/options/network/NetworkCreateOptions.cjs +0 -4
  108. package/src/components/docker/options/network/NetworkCreateOptions.mjs +0 -4
  109. package/src/components/entrypoint/Entrypoint.cjs +98 -102
  110. package/src/components/entrypoint/Entrypoint.mjs +53 -57
  111. package/src/components/entrypoint/lib/AccessControl.cjs +0 -4
  112. package/src/components/entrypoint/lib/AccessControl.mjs +0 -4
  113. package/src/components/entrypoint/lib/AccessControlRule.cjs +0 -4
  114. package/src/components/entrypoint/lib/AccessControlRule.mjs +0 -4
  115. package/src/components/entrypoint/lib/Controller.cjs +0 -4
  116. package/src/components/entrypoint/lib/Controller.mjs +0 -4
  117. package/src/components/monitor/AliveMonitor.cjs +0 -4
  118. package/src/components/monitor/AliveMonitor.mjs +0 -4
  119. package/src/components/monitor/CpuMonitor.cjs +1 -5
  120. package/src/components/monitor/CpuMonitor.mjs +1 -5
  121. package/src/components/monitor/EventLoopMonitor.cjs +0 -4
  122. package/src/components/monitor/EventLoopMonitor.mjs +0 -4
  123. package/src/components/monitor/HttpRequestMonitor.cjs +1 -5
  124. package/src/components/monitor/HttpRequestMonitor.mjs +1 -5
  125. package/src/components/monitor/MemoryMonitor.cjs +1 -5
  126. package/src/components/monitor/MemoryMonitor.mjs +1 -5
  127. package/src/decorators/ctrl/CLIAction.cjs +5 -9
  128. package/src/decorators/ctrl/CLIAction.mjs +1 -5
  129. package/src/decorators/ctrl/HTTPAction.cjs +8 -12
  130. package/src/decorators/ctrl/HTTPAction.mjs +1 -5
  131. package/src/decorators/ctrl/ServiceAction.cjs +1 -5
  132. package/src/decorators/ctrl/ServiceAction.mjs +5 -9
  133. package/src/decorators/ctrl/http/DELETE.cjs +1 -5
  134. package/src/decorators/ctrl/http/DELETE.mjs +1 -5
  135. package/src/decorators/ctrl/http/GET.cjs +1 -5
  136. package/src/decorators/ctrl/http/GET.mjs +1 -5
  137. package/src/decorators/ctrl/http/HEAD.cjs +1 -5
  138. package/src/decorators/ctrl/http/HEAD.mjs +1 -5
  139. package/src/decorators/ctrl/http/OPTIONS.cjs +1 -5
  140. package/src/decorators/ctrl/http/OPTIONS.mjs +4 -8
  141. package/src/decorators/ctrl/http/PATCH.cjs +1 -5
  142. package/src/decorators/ctrl/http/PATCH.mjs +1 -5
  143. package/src/decorators/ctrl/http/POST.cjs +1 -5
  144. package/src/decorators/ctrl/http/POST.mjs +1 -5
  145. package/src/decorators/ctrl/http/PUT.cjs +1 -5
  146. package/src/decorators/ctrl/http/PUT.mjs +1 -5
  147. package/src/decorators/di/Configurable.cjs +1 -5
  148. package/src/decorators/di/Configurable.mjs +0 -4
  149. package/src/decorators/di/Inject.cjs +8 -12
  150. package/src/decorators/di/Inject.mjs +7 -11
  151. package/src/decorators/dto/Accept.cjs +0 -4
  152. package/src/decorators/dto/Accept.mjs +0 -4
  153. package/src/decorators/dto/Expect.cjs +0 -4
  154. package/src/decorators/dto/Expect.mjs +4 -8
  155. package/src/decorators/dto/IndexSignature.cjs +0 -4
  156. package/src/decorators/dto/IndexSignature.mjs +4 -8
  157. package/src/decorators/dto/Return.cjs +0 -4
  158. package/src/decorators/dto/Return.mjs +0 -4
  159. package/src/decorators/orm/AfterInsert.cjs +11 -15
  160. package/src/decorators/orm/AfterInsert.mjs +17 -21
  161. package/src/decorators/orm/AfterLoad.cjs +15 -19
  162. package/src/decorators/orm/AfterLoad.mjs +20 -24
  163. package/src/decorators/orm/AfterRecover.cjs +15 -19
  164. package/src/decorators/orm/AfterRecover.mjs +16 -20
  165. package/src/decorators/orm/AfterRemove.cjs +15 -19
  166. package/src/decorators/orm/AfterRemove.mjs +16 -20
  167. package/src/decorators/orm/AfterSoftRemove.cjs +11 -15
  168. package/src/decorators/orm/AfterSoftRemove.mjs +16 -20
  169. package/src/decorators/orm/AfterUpdate.cjs +11 -15
  170. package/src/decorators/orm/AfterUpdate.mjs +17 -21
  171. package/src/decorators/orm/BeforeInsert.cjs +17 -21
  172. package/src/decorators/orm/BeforeInsert.mjs +15 -19
  173. package/src/decorators/orm/BeforeRecover.cjs +17 -21
  174. package/src/decorators/orm/BeforeRecover.mjs +13 -17
  175. package/src/decorators/orm/BeforeRemove.cjs +17 -21
  176. package/src/decorators/orm/BeforeRemove.mjs +13 -17
  177. package/src/decorators/orm/BeforeSoftRemove.cjs +17 -21
  178. package/src/decorators/orm/BeforeSoftRemove.mjs +13 -17
  179. package/src/decorators/orm/BeforeUpdate.cjs +15 -19
  180. package/src/decorators/orm/BeforeUpdate.mjs +15 -19
  181. package/src/decorators/orm/Check.cjs +11 -15
  182. package/src/decorators/orm/Check.mjs +11 -15
  183. package/src/decorators/orm/ChildEntity.cjs +16 -20
  184. package/src/decorators/orm/ChildEntity.mjs +13 -17
  185. package/src/decorators/orm/Column.cjs +28 -32
  186. package/src/decorators/orm/Column.mjs +11 -15
  187. package/src/decorators/orm/CreateDateColumn.cjs +13 -17
  188. package/src/decorators/orm/CreateDateColumn.mjs +11 -15
  189. package/src/decorators/orm/DeleteDateColumn.cjs +13 -17
  190. package/src/decorators/orm/DeleteDateColumn.mjs +11 -15
  191. package/src/decorators/orm/Entity.cjs +15 -19
  192. package/src/decorators/orm/Entity.mjs +15 -19
  193. package/src/decorators/orm/EventSubscriber.cjs +11 -15
  194. package/src/decorators/orm/EventSubscriber.mjs +11 -15
  195. package/src/decorators/orm/Exclusion.cjs +11 -15
  196. package/src/decorators/orm/Exclusion.mjs +15 -19
  197. package/src/decorators/orm/Generated.cjs +15 -19
  198. package/src/decorators/orm/Generated.mjs +11 -15
  199. package/src/decorators/orm/Index.cjs +16 -20
  200. package/src/decorators/orm/Index.mjs +29 -33
  201. package/src/decorators/orm/JoinColumn.cjs +15 -19
  202. package/src/decorators/orm/JoinColumn.mjs +11 -15
  203. package/src/decorators/orm/JoinTable.cjs +11 -15
  204. package/src/decorators/orm/JoinTable.mjs +15 -19
  205. package/src/decorators/orm/ManyToMany.cjs +18 -22
  206. package/src/decorators/orm/ManyToMany.mjs +22 -26
  207. package/src/decorators/orm/ManyToOne.cjs +21 -25
  208. package/src/decorators/orm/ManyToOne.mjs +22 -26
  209. package/src/decorators/orm/ObjectIdColumn.cjs +11 -15
  210. package/src/decorators/orm/ObjectIdColumn.mjs +11 -15
  211. package/src/decorators/orm/OneToMany.cjs +18 -22
  212. package/src/decorators/orm/OneToMany.mjs +11 -15
  213. package/src/decorators/orm/OneToOne.cjs +20 -24
  214. package/src/decorators/orm/OneToOne.mjs +11 -15
  215. package/src/decorators/orm/PrimaryColumn.cjs +15 -19
  216. package/src/decorators/orm/PrimaryColumn.mjs +11 -15
  217. package/src/decorators/orm/PrimaryGeneratedColumn.cjs +11 -15
  218. package/src/decorators/orm/PrimaryGeneratedColumn.mjs +13 -17
  219. package/src/decorators/orm/RelationId.cjs +16 -20
  220. package/src/decorators/orm/RelationId.mjs +17 -21
  221. package/src/decorators/orm/TableInheritance.cjs +13 -17
  222. package/src/decorators/orm/TableInheritance.mjs +11 -15
  223. package/src/decorators/orm/Tree.cjs +11 -15
  224. package/src/decorators/orm/Tree.mjs +11 -15
  225. package/src/decorators/orm/TreeChildren.cjs +11 -15
  226. package/src/decorators/orm/TreeChildren.mjs +20 -24
  227. package/src/decorators/orm/TreeLevelColumn.cjs +11 -15
  228. package/src/decorators/orm/TreeLevelColumn.mjs +11 -15
  229. package/src/decorators/orm/TreeParent.cjs +11 -15
  230. package/src/decorators/orm/TreeParent.mjs +11 -15
  231. package/src/decorators/orm/Unique.cjs +18 -22
  232. package/src/decorators/orm/Unique.mjs +11 -15
  233. package/src/decorators/orm/UpdateDateColumn.cjs +13 -17
  234. package/src/decorators/orm/UpdateDateColumn.mjs +17 -21
  235. package/src/decorators/orm/VersionColumn.cjs +11 -15
  236. package/src/decorators/orm/VersionColumn.mjs +11 -15
  237. package/src/decorators/orm/ViewColumn.cjs +11 -15
  238. package/src/decorators/orm/ViewColumn.mjs +11 -15
  239. package/src/decorators/orm/ViewEntity.cjs +11 -15
  240. package/src/decorators/orm/ViewEntity.mjs +11 -15
  241. package/src/decorators/orm/VirtualColumn.cjs +11 -15
  242. package/src/decorators/orm/VirtualColumn.mjs +11 -15
  243. package/src/dto/PaginationResultDTO.cjs +74 -0
  244. package/src/dto/PaginationResultDTO.mjs +68 -0
  245. package/src/dto/PaginationSearchDTO.cjs +69 -0
  246. package/src/dto/PaginationSearchDTO.mjs +63 -0
  247. package/src/lib/base/BaseObject.cjs +0 -4
  248. package/src/lib/base/BaseObject.mjs +0 -4
  249. package/src/lib/base/Context.cjs +0 -4
  250. package/src/lib/base/Context.mjs +5 -9
  251. package/src/lib/base/internal/ActionOptions.cjs +0 -4
  252. package/src/lib/base/internal/ActionOptions.mjs +6 -10
  253. package/src/lib/base/internal/ApplicationConfigLoader.cjs +0 -4
  254. package/src/lib/base/internal/ApplicationConfigLoader.mjs +0 -4
  255. package/src/lib/base/internal/ControllerEntrypoint.cjs +1 -1
  256. package/src/lib/base/internal/ControllerEntrypoint.mjs +1 -1
  257. package/src/lib/base/internal/DataValidator.cjs +11 -12
  258. package/src/lib/base/internal/DataValidator.mjs +116 -117
  259. package/src/lib/base/internal/FlexibleDTO.cjs +0 -4
  260. package/src/lib/base/internal/FlexibleDTO.mjs +4 -8
  261. package/src/lib/base/internal/GetActionDTOAndOptions.cjs +7 -11
  262. package/src/lib/base/internal/GetActionDTOAndOptions.mjs +0 -4
  263. package/src/lib/base/internal/MethodValidation.cjs +25 -29
  264. package/src/lib/base/internal/MethodValidation.mjs +0 -4
  265. package/src/lib/base/internal/ModuleConfigLoader.cjs +0 -4
  266. package/src/lib/base/internal/ModuleConfigLoader.mjs +21 -25
  267. package/src/lib/base/internal/ObjectConfiguration.cjs +0 -4
  268. package/src/lib/base/internal/ObjectConfiguration.mjs +12 -16
  269. package/src/lib/base/internal/ObjectSchemaValidation.cjs +0 -4
  270. package/src/lib/base/internal/ObjectSchemaValidation.mjs +0 -4
  271. package/src/lib/base/internal/ObjectType.cjs +0 -4
  272. package/src/lib/base/internal/ObjectType.mjs +0 -4
  273. package/src/lib/context/CLIContext.cjs +0 -4
  274. package/src/lib/context/CLIContext.mjs +0 -4
  275. package/src/lib/context/HTTPContext.cjs +0 -4
  276. package/src/lib/context/HTTPContext.mjs +4 -8
  277. package/src/lib/context/ServiceContext.cjs +0 -4
  278. package/src/lib/context/ServiceContext.mjs +0 -4
  279. package/src/lib/core/Application.cjs +5 -9
  280. package/src/lib/core/Application.mjs +5 -9
  281. package/src/lib/core/Component.cjs +0 -4
  282. package/src/lib/core/Component.mjs +0 -4
  283. package/src/lib/core/Container.cjs +0 -4
  284. package/src/lib/core/Container.mjs +0 -4
  285. package/src/lib/core/DTO.cjs +0 -4
  286. package/src/lib/core/DTO.mjs +0 -4
  287. package/src/lib/core/Module.cjs +1 -5
  288. package/src/lib/core/Module.mjs +1 -5
  289. package/src/lib/core/Provider.cjs +0 -4
  290. package/src/lib/core/Provider.mjs +0 -4
  291. package/src/lib/helpers/IsSymbol.cjs +0 -4
  292. package/src/lib/helpers/IsSymbol.mjs +0 -4
  293. package/src/lib/helpers/NonceStr.cjs +1 -1
  294. package/src/lib/helpers/NonceStr.mjs +1 -1
  295. package/src/lib/helpers/ObjectHash.cjs +1 -1
  296. package/src/lib/helpers/ObjectHash.mjs +1 -1
  297. package/src/lib/helpers/Paginator.cjs +11 -0
  298. package/src/lib/helpers/Paginator.mjs +5 -0
  299. package/src/lib/helpers/RandomString.cjs +1 -1
  300. package/src/lib/helpers/RandomString.mjs +1 -1
  301. package/src/lib/helpers/Statistics.cjs +1 -1
  302. package/src/lib/helpers/Statistics.mjs +1 -1
  303. package/src/lib/ioc/DependencyInjectionContainer.cjs +28 -32
  304. package/src/lib/ioc/DependencyInjectionContainer.mjs +17 -21
  305. package/src/lib/ioc/Errors.cjs +0 -4
  306. package/src/lib/ioc/Errors.mjs +4 -8
  307. package/src/lib/ioc/ListModules.cjs +100 -104
  308. package/src/lib/ioc/ListModules.mjs +0 -4
  309. package/src/lib/ioc/LoadModules.cjs +27 -31
  310. package/src/lib/ioc/LoadModules.mjs +5 -9
  311. package/src/lib/ioc/Resolvers.cjs +6 -10
  312. package/src/lib/ioc/Resolvers.mjs +3 -7
  313. package/src/lib/ioc/Utils.cjs +0 -4
  314. package/src/lib/ioc/Utils.mjs +0 -4
  315. package/src/lib/validation/VLD.cjs +4096 -3158
  316. package/src/lib/validation/VLD.mjs +2807 -1887
  317. package/src/lib/validation/interfaces/BigIntSchema.cjs +1 -0
  318. package/src/lib/validation/interfaces/BigIntSchema.mjs +1 -0
  319. package/src/lib/validation/types/NoNestedArrays.cjs +1 -0
  320. package/src/lib/validation/types/NoNestedArrays.mjs +1 -0
  321. package/src/lib/validation/types/Primitives.cjs +1 -0
  322. package/src/lib/validation/types/Primitives.mjs +1 -0
  323. package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.cjs +1 -0
  324. package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.mjs +1 -0
  325. package/src/options/ApplicationOptions.cjs +0 -4
  326. package/src/options/ApplicationOptions.mjs +0 -4
  327. package/src/options/LoadAnonymousObjectOptions.cjs +0 -4
  328. package/src/options/LoadAnonymousObjectOptions.mjs +0 -4
  329. package/src/options/LoadNamedObjectOptions.cjs +0 -4
  330. package/src/options/LoadNamedObjectOptions.mjs +0 -4
  331. package/src/options/LoadObjectOptions.cjs +0 -4
  332. package/src/options/LoadObjectOptions.mjs +0 -4
  333. package/src/options/ModuleLoadObjectsOptions.cjs +0 -4
  334. package/src/options/ModuleLoadObjectsOptions.mjs +0 -4
  335. package/src/options/ModuleOptions.cjs +0 -4
  336. package/src/options/ModuleOptions.mjs +0 -4
  337. package/src/options/OverridableNamedObjectOptions.cjs +0 -4
  338. package/src/options/OverridableNamedObjectOptions.mjs +0 -4
  339. package/src/options/OverridableObjectOptions.cjs +0 -4
  340. package/src/options/OverridableObjectOptions.mjs +0 -4
  341. package/src/providers/Database.cjs +6 -10
  342. package/src/providers/Database.mjs +6 -10
  343. package/src/providers/PasswordHash.cjs +13 -17
  344. package/src/providers/PasswordHash.mjs +208 -212
  345. package/vendor/Package.10.cjs +9 -1
  346. package/vendor/Package.10.mjs +9 -1
  347. package/vendor/Package.102.cjs +48831 -0
  348. package/vendor/Package.102.mjs +48767 -0
  349. package/vendor/Package.11.cjs +86 -0
  350. package/vendor/Package.11.mjs +80 -0
  351. package/vendor/Package.12.cjs +3 -5
  352. package/vendor/Package.12.mjs +3 -5
  353. package/vendor/Package.122.cjs +1 -48833
  354. package/vendor/Package.122.mjs +1 -48771
  355. package/vendor/Package.13.cjs +1 -7
  356. package/vendor/Package.13.mjs +1 -7
  357. package/vendor/Package.14.cjs +2247 -1
  358. package/vendor/Package.14.mjs +2139 -1
  359. package/vendor/Package.15.cjs +14057 -1
  360. package/vendor/Package.15.mjs +14031 -1
  361. package/vendor/Package.16.cjs +1 -2247
  362. package/vendor/Package.16.mjs +1 -2139
  363. package/vendor/Package.17.cjs +46794 -12601
  364. package/vendor/Package.17.mjs +46762 -12584
  365. package/vendor/Package.18.cjs +1 -1
  366. package/vendor/Package.18.mjs +1 -1
  367. package/vendor/Package.2.cjs +1633 -2052
  368. package/vendor/Package.2.mjs +2147 -2566
  369. package/vendor/Package.62.cjs +2 -2
  370. package/vendor/Package.62.mjs +2 -2
  371. package/vendor/Package.8.cjs +2 -0
  372. package/vendor/Package.8.mjs +2 -0
  373. package/vendor/TypeDef.internal.5.d.ts +2422 -2041
  374. package/vendor/Package.132.cjs +0 -87
  375. package/vendor/Package.132.mjs +0 -79
  376. package/vendor/Package.19.cjs +0 -48247
  377. package/vendor/Package.19.mjs +0 -48204
  378. package/vendor/Package.20.cjs +0 -3
  379. package/vendor/Package.20.mjs +0 -1
@@ -68,12 +68,8 @@ import "node:util/types";
68
68
 
69
69
  import "../../validation/VLD.mjs";
70
70
 
71
- import "../../../../vendor/Package.11.mjs";
72
-
73
71
  import "url";
74
72
 
75
- import "../../../../vendor/Package.10.mjs";
76
-
77
73
  import "../../../exceptions/dto/InvalidValueException.mjs";
78
74
 
79
75
  import "../../../../vendor/Package.9.mjs";
@@ -24,7 +24,7 @@ require("../../helpers/ObjectParentConstructor.cjs");
24
24
 
25
25
  require("../../../../vendor/Package.5.cjs");
26
26
 
27
- require("../../../../vendor/Package.15.cjs");
27
+ require("../../../../vendor/Package.13.cjs");
28
28
 
29
29
  require("crypto");
30
30
 
@@ -18,7 +18,7 @@ import "../../helpers/ObjectParentConstructor.mjs";
18
18
 
19
19
  import "../../../../vendor/Package.5.mjs";
20
20
 
21
- import "../../../../vendor/Package.15.mjs";
21
+ import "../../../../vendor/Package.13.mjs";
22
22
 
23
23
  import "crypto";
24
24
 
@@ -20,12 +20,8 @@ const i = require("../../helpers/IsHtml.cjs");
20
20
 
21
21
  const s = require("../../helpers/IsXML.cjs");
22
22
 
23
- require("../../../../vendor/Package.11.cjs");
24
-
25
23
  require("url");
26
24
 
27
- require("../../../../vendor/Package.10.cjs");
28
-
29
25
  require("util");
30
26
 
31
27
  require("../../../exceptions/dto/InvalidValueException.cjs");
@@ -138,11 +134,11 @@ var D = function(r) {
138
134
  return h(r, 0, 23);
139
135
  };
140
136
 
141
- var j = function(r, t) {
137
+ var V = function(r, t) {
142
138
  return t && d(r) || h(r, 1, 31);
143
139
  };
144
140
 
145
- var V = {
141
+ var j = {
146
142
  jan: "1",
147
143
  feb: "2",
148
144
  mar: "3",
@@ -157,20 +153,20 @@ var V = {
157
153
  dec: "12"
158
154
  };
159
155
 
160
- var A = function(r, t) {
156
+ var b = function(r, t) {
161
157
  if (r.search(/\/[a-zA-Z]/) !== -1) {
162
158
  return false;
163
159
  }
164
160
  if (t) {
165
161
  var e = r.toLowerCase().replace(/[a-z]{3}/g, (function(r) {
166
- return V[r] === undefined ? r : V[r];
162
+ return j[r] === undefined ? r : j[r];
167
163
  }));
168
164
  return h(e, 1, 12);
169
165
  }
170
166
  return h(r, 1, 12);
171
167
  };
172
168
 
173
- var b = {
169
+ var A = {
174
170
  sun: "0",
175
171
  mon: "1",
176
172
  tue: "2",
@@ -191,7 +187,7 @@ var L = function(r, t, e, n) {
191
187
  }
192
188
  if (t) {
193
189
  var a = r.toLowerCase().replace(/[a-z]{3}/g, (function(r) {
194
- return b[r] === undefined ? r : b[r];
190
+ return A[r] === undefined ? r : A[r];
195
191
  }));
196
192
  return h(a, 0, n ? 7 : 6);
197
193
  }
@@ -229,8 +225,8 @@ o = u.isValidCron = function(r, t) {
229
225
  var i = e[0], s = e[1], u = e[2], o = e[3], l = e[4];
230
226
  n.push(m(i));
231
227
  n.push(D(s));
232
- n.push(j(u, t.allowBlankDay));
233
- n.push(A(o, t.alias));
228
+ n.push(V(u, t.allowBlankDay));
229
+ n.push(b(o, t.alias));
234
230
  n.push(L(l, t.alias, t.allowBlankDay, t.allowSevenAsSunday));
235
231
  n.push(q(u, l, t.allowBlankDay));
236
232
  return n.every(Boolean);
@@ -246,6 +242,9 @@ class DataValidator {
246
242
  static Number() {
247
243
  return e.VLD.number().strict(true);
248
244
  }
245
+ static BigInt() {
246
+ return e.VLD.bigint().strict(true);
247
+ }
249
248
  static Boolean() {
250
249
  return e.VLD.boolean().strict(true);
251
250
  }
@@ -1,8 +1,8 @@
1
1
  import "../../../../vendor/Package.4.mjs";
2
2
 
3
- import { isAsyncFunction as r } from "node:util/types";
3
+ import { isAsyncFunction as t } from "node:util/types";
4
4
 
5
- import { c as t } from "../../../../vendor/Package.5.mjs";
5
+ import { c as r } from "../../../../vendor/Package.5.mjs";
6
6
 
7
7
  import { VLD as n } from "../../validation/VLD.mjs";
8
8
 
@@ -14,12 +14,8 @@ import { IsHtml as i } from "../../helpers/IsHtml.mjs";
14
14
 
15
15
  import { IsXML as s } from "../../helpers/IsXML.mjs";
16
16
 
17
- import "../../../../vendor/Package.11.mjs";
18
-
19
17
  import "url";
20
18
 
21
- import "../../../../vendor/Package.10.mjs";
22
-
23
19
  import "util";
24
20
 
25
21
  import "../../../exceptions/dto/InvalidValueException.mjs";
@@ -44,13 +40,13 @@ var u = {};
44
40
 
45
41
  "use strict";
46
42
 
47
- var o = t && t.__assign || function() {
48
- o = Object.assign || function(r) {
49
- for (var t, n = 1, e = arguments.length; n < e; n++) {
50
- t = arguments[n];
51
- for (var a in t) if (Object.prototype.hasOwnProperty.call(t, a)) r[a] = t[a];
43
+ var o = r && r.__assign || function() {
44
+ o = Object.assign || function(t) {
45
+ for (var r, n = 1, e = arguments.length; n < e; n++) {
46
+ r = arguments[n];
47
+ for (var a in r) if (Object.prototype.hasOwnProperty.call(r, a)) t[a] = r[a];
52
48
  }
53
- return r;
49
+ return t;
54
50
  };
55
51
  return o.apply(this, arguments);
56
52
  };
@@ -61,82 +57,82 @@ Object.defineProperty(u, "__esModule", {
61
57
 
62
58
  var c = u.isValidCron = void 0;
63
59
 
64
- var l = function(r) {
65
- if (/^\d+$/.test(r)) {
66
- return Number(r);
60
+ var l = function(t) {
61
+ if (/^\d+$/.test(t)) {
62
+ return Number(t);
67
63
  } else {
68
64
  return NaN;
69
65
  }
70
66
  };
71
67
 
72
- var f = function(r) {
73
- return r === "*";
68
+ var f = function(t) {
69
+ return t === "*";
74
70
  };
75
71
 
76
- var m = function(r) {
77
- return r === "?";
72
+ var m = function(t) {
73
+ return t === "?";
78
74
  };
79
75
 
80
- var p = function(r, t, n) {
81
- return r >= t && r <= n;
76
+ var p = function(t, r, n) {
77
+ return t >= r && t <= n;
82
78
  };
83
79
 
84
- var d = function(r, t, n) {
85
- var e = r.split("-");
80
+ var d = function(t, r, n) {
81
+ var e = t.split("-");
86
82
  switch (e.length) {
87
83
  case 1:
88
- return f(r) || p(l(r), t, n);
84
+ return f(t) || p(l(t), r, n);
89
85
 
90
86
  case 2:
91
- var a = e.map((function(r) {
92
- return l(r);
87
+ var a = e.map((function(t) {
88
+ return l(t);
93
89
  })), i = a[0], s = a[1];
94
- return i <= s && p(i, t, n) && p(s, t, n);
90
+ return i <= s && p(i, r, n) && p(s, r, n);
95
91
 
96
92
  default:
97
93
  return false;
98
94
  }
99
95
  };
100
96
 
101
- var v = function(r) {
102
- return r === undefined || r.search(/[^\d]/) === -1 && l(r) > 0;
97
+ var v = function(t) {
98
+ return t === undefined || t.search(/[^\d]/) === -1 && l(t) > 0;
103
99
  };
104
100
 
105
- var y = function(r, t, n) {
106
- if (r.search(/[^\d-,\/*]/) !== -1) {
101
+ var y = function(t, r, n) {
102
+ if (t.search(/[^\d-,\/*]/) !== -1) {
107
103
  return false;
108
104
  }
109
- var e = r.split(",");
110
- return e.every((function(r) {
111
- var e = r.split("/");
112
- if (r.trim().endsWith("/")) {
105
+ var e = t.split(",");
106
+ return e.every((function(t) {
107
+ var e = t.split("/");
108
+ if (t.trim().endsWith("/")) {
113
109
  return false;
114
110
  }
115
111
  if (e.length > 2) {
116
112
  return false;
117
113
  }
118
114
  var a = e[0], i = e[1];
119
- return d(a, t, n) && v(i);
115
+ return d(a, r, n) && v(i);
120
116
  }));
121
117
  };
122
118
 
123
- var h = function(r) {
124
- return y(r, 0, 59);
119
+ var h = function(t) {
120
+ return y(t, 0, 59);
125
121
  };
126
122
 
127
- var g = function(r) {
128
- return y(r, 0, 59);
123
+ var g = function(t) {
124
+ return y(t, 0, 59);
129
125
  };
130
126
 
131
- var j = function(r) {
132
- return y(r, 0, 23);
127
+ var j = function(t) {
128
+ return y(t, 0, 23);
133
129
  };
134
130
 
135
- var w = function(r, t) {
136
- return t && m(r) || y(r, 1, 31);
131
+ var b = function(t, r) {
132
+ return r && m(t) || y(t, 1, 31);
137
133
  };
138
134
 
139
- var b = {
135
+ var w = {
140
136
  jan: "1",
141
137
  feb: "2",
142
138
  mar: "3",
@@ -151,20 +147,20 @@ var b = {
151
147
  dec: "12"
152
148
  };
153
149
 
154
- var k = function(r, t) {
155
- if (r.search(/\/[a-zA-Z]/) !== -1) {
150
+ var A = function(t, r) {
151
+ if (t.search(/\/[a-zA-Z]/) !== -1) {
156
152
  return false;
157
153
  }
158
- if (t) {
159
- var n = r.toLowerCase().replace(/[a-z]{3}/g, (function(r) {
160
- return b[r] === undefined ? r : b[r];
154
+ if (r) {
155
+ var n = t.toLowerCase().replace(/[a-z]{3}/g, (function(t) {
156
+ return w[t] === undefined ? t : w[t];
161
157
  }));
162
158
  return y(n, 1, 12);
163
159
  }
164
- return y(r, 1, 12);
160
+ return y(t, 1, 12);
165
161
  };
166
162
 
167
- var A = {
163
+ var S = {
168
164
  sun: "0",
169
165
  mon: "1",
170
166
  tue: "2",
@@ -174,43 +170,43 @@ var A = {
174
170
  sat: "6"
175
171
  };
176
172
 
177
- var S = function(r, t, n, e) {
178
- if (n && m(r)) {
173
+ var k = function(t, r, n, e) {
174
+ if (n && m(t)) {
179
175
  return true;
180
- } else if (!n && m(r)) {
176
+ } else if (!n && m(t)) {
181
177
  return false;
182
178
  }
183
- if (r.search(/\/[a-zA-Z]/) !== -1) {
179
+ if (t.search(/\/[a-zA-Z]/) !== -1) {
184
180
  return false;
185
181
  }
186
- if (t) {
187
- var a = r.toLowerCase().replace(/[a-z]{3}/g, (function(r) {
188
- return A[r] === undefined ? r : A[r];
182
+ if (r) {
183
+ var a = t.toLowerCase().replace(/[a-z]{3}/g, (function(t) {
184
+ return S[t] === undefined ? t : S[t];
189
185
  }));
190
186
  return y(a, 0, e ? 7 : 6);
191
187
  }
192
- return y(r, 0, e ? 7 : 6);
188
+ return y(t, 0, e ? 7 : 6);
193
189
  };
194
190
 
195
- var D = function(r, t, n) {
196
- return !(n && m(r) && m(t));
191
+ var D = function(t, r, n) {
192
+ return !(n && m(t) && m(r));
197
193
  };
198
194
 
199
- var C = function(r) {
200
- return r.trim().split(/\s+/);
195
+ var B = function(t) {
196
+ return t.trim().split(/\s+/);
201
197
  };
202
198
 
203
- var V = {
199
+ var C = {
204
200
  alias: false,
205
201
  seconds: false,
206
202
  allowBlankDay: false,
207
203
  allowSevenAsSunday: false
208
204
  };
209
205
 
210
- c = u.isValidCron = function(r, t) {
211
- t = o(o({}, V), t);
212
- var n = C(r);
213
- if (n.length > (t.seconds ? 6 : 5) || n.length < 5) {
206
+ c = u.isValidCron = function(t, r) {
207
+ r = o(o({}, C), r);
208
+ var n = B(t);
209
+ if (n.length > (r.seconds ? 6 : 5) || n.length < 5) {
214
210
  return false;
215
211
  }
216
212
  var e = [];
@@ -223,10 +219,10 @@ c = u.isValidCron = function(r, t) {
223
219
  var i = n[0], s = n[1], u = n[2], c = n[3], l = n[4];
224
220
  e.push(g(i));
225
221
  e.push(j(s));
226
- e.push(w(u, t.allowBlankDay));
227
- e.push(k(c, t.alias));
228
- e.push(S(l, t.alias, t.allowBlankDay, t.allowSevenAsSunday));
229
- e.push(D(u, l, t.allowBlankDay));
222
+ e.push(b(u, r.allowBlankDay));
223
+ e.push(A(c, r.alias));
224
+ e.push(k(l, r.alias, r.allowBlankDay, r.allowSevenAsSunday));
225
+ e.push(D(u, l, r.allowBlankDay));
230
226
  return e.every(Boolean);
231
227
  };
232
228
 
@@ -240,17 +236,20 @@ class DataValidator {
240
236
  static Number() {
241
237
  return n.number().strict(true);
242
238
  }
239
+ static BigInt() {
240
+ return n.bigint().strict(true);
241
+ }
243
242
  static Boolean() {
244
243
  return n.boolean().strict(true);
245
244
  }
246
245
  static Date() {
247
246
  return n.date().strict(true);
248
247
  }
249
- static Object(r) {
250
- return n.object(r).strict(true);
248
+ static Object(t) {
249
+ return n.object(t).strict(true);
251
250
  }
252
- static Array(...r) {
253
- return n.array().items(...r).strict(true);
251
+ static Array(...t) {
252
+ return n.array().items(...t).strict(true);
254
253
  }
255
254
  static Binary() {
256
255
  return n.binary().strict(true);
@@ -259,73 +258,73 @@ class DataValidator {
259
258
  return n.func().strict(true);
260
259
  }
261
260
  static AsyncFunction() {
262
- return this.Function().custom(((t, n) => {
263
- if (r(t)) return t;
261
+ return this.Function().custom(((r, n) => {
262
+ if (t(r)) return r;
264
263
  return n.error("asyncFunc.invalid");
265
- }), "Async Function Validation").error((r => {
266
- for (const t of r) {
267
- if (t.code === "asyncFunc.invalid") {
268
- t.message = "Expected AsyncFunction but got Function";
269
- return t;
264
+ }), "Async Function Validation").error((t => {
265
+ for (const r of t) {
266
+ if (r.code === "asyncFunc.invalid") {
267
+ r.message = "Expected AsyncFunction but got Function";
268
+ return r;
270
269
  }
271
270
  }
272
- return r[0];
271
+ return t[0];
273
272
  }));
274
273
  }
275
- static Class(r) {
276
- if (!r) return n.func().class();
277
- return this.Function().class().custom(((t, n) => {
278
- if (!e(r).prototype) r = e(r)();
279
- if (t instanceof e(r) || t["prototype"] instanceof e(r)) return t;
274
+ static Class(t) {
275
+ if (!t) return n.func().class();
276
+ return this.Function().class().custom(((r, n) => {
277
+ if (!e(t).prototype) t = e(t)();
278
+ if (r instanceof e(t) || r["prototype"] instanceof e(t)) return r;
280
279
  return n.error("any.invalid");
281
280
  }), "Class Validation");
282
281
  }
283
- static InstanceOf(r) {
284
- return this.Any().custom(((t, n) => {
285
- if (t instanceof e(r) || t["prototype"] instanceof e(r)) return t;
282
+ static InstanceOf(t) {
283
+ return this.Any().custom(((r, n) => {
284
+ if (r instanceof e(t) || r["prototype"] instanceof e(t)) return r;
286
285
  return n.error("any.invalid");
287
286
  }), "Class Instance Validation");
288
287
  }
289
288
  static Glob() {
290
- return this.String().custom(((r, t) => {
291
- if (typeof r === "string" && a(r)) return r;
292
- return t.error("any.invalid");
289
+ return this.String().custom(((t, r) => {
290
+ if (typeof t === "string" && a(t)) return t;
291
+ return r.error("any.invalid");
293
292
  }), "Glob Validation");
294
293
  }
295
- static Cron(r) {
296
- return this.String().custom(((t, n) => {
297
- r = r ? r : {};
298
- r.alias = r.alias !== undefined ? r.alias : false;
299
- r.seconds = r.seconds !== undefined ? r.seconds : true;
300
- r.allowBlankDay = r.allowBlankDay !== undefined ? r.allowBlankDay : true;
301
- r.allowSevenAsSunday = r.allowSevenAsSunday !== undefined ? r.allowSevenAsSunday : true;
302
- if (typeof t === "string" && c(t, r)) return t;
294
+ static Cron(t) {
295
+ return this.String().custom(((r, n) => {
296
+ t = t ? t : {};
297
+ t.alias = t.alias !== undefined ? t.alias : false;
298
+ t.seconds = t.seconds !== undefined ? t.seconds : true;
299
+ t.allowBlankDay = t.allowBlankDay !== undefined ? t.allowBlankDay : true;
300
+ t.allowSevenAsSunday = t.allowSevenAsSunday !== undefined ? t.allowSevenAsSunday : true;
301
+ if (typeof r === "string" && c(r, t)) return r;
303
302
  return n.error("any.invalid");
304
303
  }), "Cron Validation");
305
304
  }
306
305
  static HttpDocument() {
307
- return this.String().custom(((r, t) => {
308
- if (typeof r === "string" && (i(r) || s(r))) return r;
309
- return t.error("any.invalid");
306
+ return this.String().custom(((t, r) => {
307
+ if (typeof t === "string" && (i(t) || s(t))) return t;
308
+ return r.error("any.invalid");
310
309
  }), "HttpDocument Validation");
311
310
  }
312
311
  static Symbol() {
313
312
  return n.symbol().strict(true);
314
313
  }
315
- static Alternatives(...r) {
316
- return n.alternatives(...r).strict(true);
314
+ static Alternatives(...t) {
315
+ return n.alternatives(...t).strict(true);
317
316
  }
318
- static Ref(r, t) {
319
- return n.ref(r, t);
317
+ static Ref(t, r) {
318
+ return n.ref(t, r);
320
319
  }
321
- static In(r, t) {
322
- return n.in(r, t);
320
+ static In(t, r) {
321
+ return n.in(t, r);
323
322
  }
324
- static Attempt(r, t, e) {
325
- return n.attempt(r, t, e);
323
+ static Attempt(t, r, e) {
324
+ return n.attempt(t, r, e);
326
325
  }
327
- static Link(r) {
328
- return n.link(r);
326
+ static Link(t) {
327
+ return n.link(t);
329
328
  }
330
329
  }
331
330
 
@@ -20,12 +20,8 @@ require("node:util/types");
20
20
 
21
21
  require("../../validation/VLD.cjs");
22
22
 
23
- require("../../../../vendor/Package.11.cjs");
24
-
25
23
  require("url");
26
24
 
27
- require("../../../../vendor/Package.10.cjs");
28
-
29
25
  require("util");
30
26
 
31
27
  require("../../../exceptions/dto/InvalidValueException.cjs");
@@ -1,6 +1,6 @@
1
- import { _ as r } from "../../../../vendor/Package.1.mjs";
1
+ import { _ as t } from "../../../../vendor/Package.1.mjs";
2
2
 
3
- import { D as t } from "../../../../vendor/Package.2.mjs";
3
+ import { D as r } from "../../../../vendor/Package.2.mjs";
4
4
 
5
5
  import { IndexSignature as e } from "../../../decorators/dto/IndexSignature.mjs";
6
6
 
@@ -14,12 +14,8 @@ import "node:util/types";
14
14
 
15
15
  import "../../validation/VLD.mjs";
16
16
 
17
- import "../../../../vendor/Package.11.mjs";
18
-
19
17
  import "url";
20
18
 
21
- import "../../../../vendor/Package.10.mjs";
22
-
23
19
  import "util";
24
20
 
25
21
  import "../../../exceptions/dto/InvalidValueException.mjs";
@@ -58,8 +54,8 @@ import "../../helpers/ObjectParentConstructor.mjs";
58
54
 
59
55
  import "../../helpers/ObjectPrototype.mjs";
60
56
 
61
- let o = class FlexibleDTO extends t {};
57
+ let o = class FlexibleDTO extends r {};
62
58
 
63
- o = r([ e(t.Any()) ], o);
59
+ o = t([ e(r.Any()) ], o);
64
60
 
65
61
  export { o as FlexibleDTO };
@@ -22,12 +22,8 @@ require("node:util/types");
22
22
 
23
23
  require("../../validation/VLD.cjs");
24
24
 
25
- require("../../../../vendor/Package.11.cjs");
26
-
27
25
  require("url");
28
26
 
29
- require("../../../../vendor/Package.10.cjs");
30
-
31
27
  require("util");
32
28
 
33
29
  require("../../../exceptions/dto/InvalidValueException.cjs");
@@ -70,20 +66,20 @@ require("../../../decorators/dto/Expect.cjs");
70
66
 
71
67
  require("../../../decorators/dto/IndexSignature.cjs");
72
68
 
73
- function s(s, c) {
74
- let t = r.FlexibleDTO;
69
+ function s(s, t) {
70
+ let c = r.FlexibleDTO;
75
71
  let i = {};
76
- if (s && c) {
77
- t = s;
78
- i = c;
72
+ if (s && t) {
73
+ c = s;
74
+ i = t;
79
75
  } else if (s) {
80
76
  if (s.constructor.name.toUpperCase() === "FUNCTION") {
81
- t = s;
77
+ c = s;
82
78
  } else {
83
79
  i = s;
84
80
  }
85
81
  }
86
- return [ t, e.ActionOptions.validate(i) ];
82
+ return [ c, e.ActionOptions.validate(i) ];
87
83
  }
88
84
 
89
85
  exports.GetActionDTOAndOptions = s;
@@ -16,12 +16,8 @@ import "node:util/types";
16
16
 
17
17
  import "../../validation/VLD.mjs";
18
18
 
19
- import "../../../../vendor/Package.11.mjs";
20
-
21
19
  import "url";
22
20
 
23
- import "../../../../vendor/Package.10.mjs";
24
-
25
21
  import "util";
26
22
 
27
23
  import "../../../exceptions/dto/InvalidValueException.mjs";