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
@@ -14,8 +14,6 @@ const r = require("path");
14
14
 
15
15
  const n = require("../../../vendor/Package.9.cjs");
16
16
 
17
- require("../../../vendor/Package.10.cjs");
18
-
19
17
  const s = require("util");
20
18
 
21
19
  const i = require("stream");
@@ -40,8 +38,6 @@ require("node:util/types");
40
38
 
41
39
  require("../validation/VLD.cjs");
42
40
 
43
- require("../../../vendor/Package.11.cjs");
44
-
45
41
  require("url");
46
42
 
47
43
  require("../../exceptions/dto/InvalidValueException.cjs");
@@ -205,7 +201,7 @@ Object.defineProperty(k, "__esModule", {
205
201
  value: true
206
202
  });
207
203
 
208
- var L = k.convertPosixPathToPattern = tt = k.convertWindowsPathToPattern = z = k.convertPathToPattern = Z = k.escapePosixPath = X = k.escapeWindowsPath = V = k.escape = K = k.removeLeadingDotSegment = U = k.makeAbsolute = q = k.unixify = void 0;
204
+ var L = k.convertPosixPathToPattern = tt = k.convertWindowsPathToPattern = z = k.convertPathToPattern = Z = k.escapePosixPath = X = k.escapeWindowsPath = V = k.escape = K = k.removeLeadingDotSegment = U = k.makeAbsolute = G = k.unixify = void 0;
209
205
 
210
206
  const H = f.default;
211
207
 
@@ -227,13 +223,13 @@ function B(t) {
227
223
  return t.replace(/\\/g, "/");
228
224
  }
229
225
 
230
- var q = k.unixify = B;
226
+ var G = k.unixify = B;
231
227
 
232
- function G(t, e) {
228
+ function q(t, e) {
233
229
  return D.resolve(t, e);
234
230
  }
235
231
 
236
- var U = k.makeAbsolute = G;
232
+ var U = k.makeAbsolute = q;
237
233
 
238
234
  function W(t) {
239
235
  if (t.charAt(0) === ".") {
@@ -698,9 +694,9 @@ const Nt = t => t !== null && typeof t === "object" && !Array.isArray(t);
698
694
 
699
695
  const Bt = t => e => t === true ? Number(e) : String(e);
700
696
 
701
- const qt = t => typeof t === "number" || typeof t === "string" && t !== "";
697
+ const Gt = t => typeof t === "number" || typeof t === "string" && t !== "";
702
698
 
703
- const Gt = t => Number.isInteger(+t);
699
+ const qt = t => Number.isInteger(+t);
704
700
 
705
701
  const Ut = t => {
706
702
  let e = `${t}`;
@@ -847,7 +843,7 @@ const te = (t, e, r = 1, n = {}) => {
847
843
  };
848
844
 
849
845
  const ee = (t, e, r = 1, n = {}) => {
850
- if (!Gt(t) && t.length > 1 || !Gt(e) && e.length > 1) {
846
+ if (!qt(t) && t.length > 1 || !qt(e) && e.length > 1) {
851
847
  return zt(t, e, n);
852
848
  }
853
849
  let s = n.transform || (t => String.fromCharCode(t));
@@ -876,10 +872,10 @@ const ee = (t, e, r = 1, n = {}) => {
876
872
  };
877
873
 
878
874
  const re = (t, e, r, n = {}) => {
879
- if (e == null && qt(t)) {
875
+ if (e == null && Gt(t)) {
880
876
  return [ t ];
881
877
  }
882
- if (!qt(t) || !qt(e)) {
878
+ if (!Gt(t) || !Gt(e)) {
883
879
  return zt(t, e, n);
884
880
  }
885
881
  if (typeof r === "function") {
@@ -895,11 +891,11 @@ const re = (t, e, r, n = {}) => {
895
891
  };
896
892
  if (s.capture === true) s.wrap = true;
897
893
  r = r || s.step || 1;
898
- if (!Gt(r)) {
894
+ if (!qt(r)) {
899
895
  if (r != null && !Nt(r)) return Jt(r, s);
900
896
  return re(t, e, 1, r);
901
897
  }
902
- if (Gt(t) && Gt(e)) {
898
+ if (qt(t) && qt(e)) {
903
899
  return te(t, e, r, s);
904
900
  }
905
901
  return ee(t, e, Math.max(Math.abs(r), 1), s);
@@ -1393,11 +1389,11 @@ const Ne = _e;
1393
1389
 
1394
1390
  const Be = Me;
1395
1391
 
1396
- const qe = (t, e = {}) => {
1392
+ const Ge = (t, e = {}) => {
1397
1393
  let r = [];
1398
1394
  if (Array.isArray(t)) {
1399
1395
  for (const n of t) {
1400
- const t = qe.create(n, e);
1396
+ const t = Ge.create(n, e);
1401
1397
  if (Array.isArray(t)) {
1402
1398
  r.push(...t);
1403
1399
  } else {
@@ -1405,7 +1401,7 @@ const qe = (t, e = {}) => {
1405
1401
  }
1406
1402
  }
1407
1403
  } else {
1408
- r = [].concat(qe.create(t, e));
1404
+ r = [].concat(Ge.create(t, e));
1409
1405
  }
1410
1406
  if (e && e.expand === true && e.nodupes === true) {
1411
1407
  r = [ ...new Set(r) ];
@@ -1413,25 +1409,25 @@ const qe = (t, e = {}) => {
1413
1409
  return r;
1414
1410
  };
1415
1411
 
1416
- qe.parse = (t, e = {}) => Be(t, e);
1412
+ Ge.parse = (t, e = {}) => Be(t, e);
1417
1413
 
1418
- qe.stringify = (t, e = {}) => {
1414
+ Ge.stringify = (t, e = {}) => {
1419
1415
  if (typeof t === "string") {
1420
- return je(qe.parse(t, e), e);
1416
+ return je(Ge.parse(t, e), e);
1421
1417
  }
1422
1418
  return je(t, e);
1423
1419
  };
1424
1420
 
1425
- qe.compile = (t, e = {}) => {
1421
+ Ge.compile = (t, e = {}) => {
1426
1422
  if (typeof t === "string") {
1427
- t = qe.parse(t, e);
1423
+ t = Ge.parse(t, e);
1428
1424
  }
1429
1425
  return Ie(t, e);
1430
1426
  };
1431
1427
 
1432
- qe.expand = (t, e = {}) => {
1428
+ Ge.expand = (t, e = {}) => {
1433
1429
  if (typeof t === "string") {
1434
- t = qe.parse(t, e);
1430
+ t = Ge.parse(t, e);
1435
1431
  }
1436
1432
  let r = Ne(t, e);
1437
1433
  if (e.noempty === true) {
@@ -1443,16 +1439,16 @@ qe.expand = (t, e = {}) => {
1443
1439
  return r;
1444
1440
  };
1445
1441
 
1446
- qe.create = (t, e = {}) => {
1442
+ Ge.create = (t, e = {}) => {
1447
1443
  if (t === "" || t.length < 3) {
1448
1444
  return [ t ];
1449
1445
  }
1450
- return e.expand !== true ? qe.compile(t, e) : qe.expand(t, e);
1446
+ return e.expand !== true ? Ge.compile(t, e) : Ge.expand(t, e);
1451
1447
  };
1452
1448
 
1453
- var Ge = qe;
1449
+ var qe = Ge;
1454
1450
 
1455
- const Ue = t.getDefaultExportFromCjs(Ge);
1451
+ const Ue = t.getDefaultExportFromCjs(qe);
1456
1452
 
1457
1453
  var We = {};
1458
1454
 
@@ -2003,7 +1999,7 @@ const $r = hr;
2003
1999
 
2004
2000
  const jr = We;
2005
2001
 
2006
- const {MAX_LENGTH: Ir, POSIX_REGEX_SOURCE: Nr, REGEX_NON_SPECIAL_CHARS: Br, REGEX_SPECIAL_CHARS_BACKREF: qr, REPLACEMENTS: Gr} = $r;
2002
+ const {MAX_LENGTH: Ir, POSIX_REGEX_SOURCE: Nr, REGEX_NON_SPECIAL_CHARS: Br, REGEX_SPECIAL_CHARS_BACKREF: Gr, REPLACEMENTS: qr} = $r;
2007
2003
 
2008
2004
  const Ur = (t, e) => {
2009
2005
  if (typeof e.expandRange === "function") {
@@ -2025,7 +2021,7 @@ const Kr = (t, e) => {
2025
2021
  if (typeof t !== "string") {
2026
2022
  throw new TypeError("Expected a string");
2027
2023
  }
2028
- t = Gr[t] || t;
2024
+ t = qr[t] || t;
2029
2025
  const r = {
2030
2026
  ...e
2031
2027
  };
@@ -2113,7 +2109,7 @@ const Kr = (t, e) => {
2113
2109
  C[t]--;
2114
2110
  O.pop();
2115
2111
  };
2116
- const q = t => {
2112
+ const G = t => {
2117
2113
  if (k.type === "globstar") {
2118
2114
  const e = C.braces > 0 && (t.type === "comma" || t.type === "brace");
2119
2115
  const r = t.extglob === true || w.length && (t.type === "pipe" || t.type === "paren");
@@ -2138,7 +2134,7 @@ const Kr = (t, e) => {
2138
2134
  o.push(t);
2139
2135
  k = t;
2140
2136
  };
2141
- const G = (t, e) => {
2137
+ const q = (t, e) => {
2142
2138
  const n = {
2143
2139
  ...l[e],
2144
2140
  conditions: 1,
@@ -2149,12 +2145,12 @@ const Kr = (t, e) => {
2149
2145
  n.output = C.output;
2150
2146
  const s = (r.capture ? "(" : "") + n.open;
2151
2147
  N("parens");
2152
- q({
2148
+ G({
2153
2149
  type: t,
2154
2150
  value: e,
2155
2151
  output: C.output ? "" : d
2156
2152
  });
2157
- q({
2153
+ G({
2158
2154
  type: "paren",
2159
2155
  extglob: true,
2160
2156
  value: F(),
@@ -2184,7 +2180,7 @@ const Kr = (t, e) => {
2184
2180
  C.negatedExtglob = true;
2185
2181
  }
2186
2182
  }
2187
- q({
2183
+ G({
2188
2184
  type: "paren",
2189
2185
  extglob: true,
2190
2186
  value: L,
@@ -2194,7 +2190,7 @@ const Kr = (t, e) => {
2194
2190
  };
2195
2191
  if (r.fastpaths !== false && !/(^[*!]|[/()[\]{}"])/.test(t)) {
2196
2192
  let n = false;
2197
- let s = t.replace(qr, ((t, e, r, s, i, o) => {
2193
+ let s = t.replace(Gr, ((t, e, r, s, i, o) => {
2198
2194
  if (s === "\\") {
2199
2195
  n = true;
2200
2196
  return t;
@@ -2248,7 +2244,7 @@ const Kr = (t, e) => {
2248
2244
  }
2249
2245
  if (!t) {
2250
2246
  L += "\\";
2251
- q({
2247
+ G({
2252
2248
  type: "text",
2253
2249
  value: L
2254
2250
  });
@@ -2269,7 +2265,7 @@ const Kr = (t, e) => {
2269
2265
  L += F();
2270
2266
  }
2271
2267
  if (C.brackets === 0) {
2272
- q({
2268
+ G({
2273
2269
  type: "text",
2274
2270
  value: L
2275
2271
  });
@@ -2324,7 +2320,7 @@ const Kr = (t, e) => {
2324
2320
  if (L === '"') {
2325
2321
  C.quotes = C.quotes === 1 ? 0 : 1;
2326
2322
  if (r.keepQuotes === true) {
2327
- q({
2323
+ G({
2328
2324
  type: "text",
2329
2325
  value: L
2330
2326
  });
@@ -2333,7 +2329,7 @@ const Kr = (t, e) => {
2333
2329
  }
2334
2330
  if (L === "(") {
2335
2331
  N("parens");
2336
- q({
2332
+ G({
2337
2333
  type: "paren",
2338
2334
  value: L
2339
2335
  });
@@ -2348,7 +2344,7 @@ const Kr = (t, e) => {
2348
2344
  U(w.pop());
2349
2345
  continue;
2350
2346
  }
2351
- q({
2347
+ G({
2352
2348
  type: "paren",
2353
2349
  value: L,
2354
2350
  output: C.parens ? ")" : "\\)"
@@ -2365,7 +2361,7 @@ const Kr = (t, e) => {
2365
2361
  } else {
2366
2362
  N("brackets");
2367
2363
  }
2368
- q({
2364
+ G({
2369
2365
  type: "bracket",
2370
2366
  value: L
2371
2367
  });
@@ -2373,7 +2369,7 @@ const Kr = (t, e) => {
2373
2369
  }
2374
2370
  if (L === "]") {
2375
2371
  if (r.nobracket === true || k && k.type === "bracket" && k.value.length === 1) {
2376
- q({
2372
+ G({
2377
2373
  type: "text",
2378
2374
  value: L,
2379
2375
  output: `\\${L}`
@@ -2384,7 +2380,7 @@ const Kr = (t, e) => {
2384
2380
  if (r.strictBrackets === true) {
2385
2381
  throw new SyntaxError(Wr("opening", "["));
2386
2382
  }
2387
- q({
2383
+ G({
2388
2384
  type: "text",
2389
2385
  value: L,
2390
2386
  output: `\\${L}`
@@ -2424,13 +2420,13 @@ const Kr = (t, e) => {
2424
2420
  tokensIndex: C.tokens.length
2425
2421
  };
2426
2422
  T.push(t);
2427
- q(t);
2423
+ G(t);
2428
2424
  continue;
2429
2425
  }
2430
2426
  if (L === "}") {
2431
2427
  const t = T[T.length - 1];
2432
2428
  if (r.nobrace === true || !t) {
2433
- q({
2429
+ G({
2434
2430
  type: "text",
2435
2431
  value: L,
2436
2432
  output: L
@@ -2463,7 +2459,7 @@ const Kr = (t, e) => {
2463
2459
  C.output += t.output || t.value;
2464
2460
  }
2465
2461
  }
2466
- q({
2462
+ G({
2467
2463
  type: "brace",
2468
2464
  value: L,
2469
2465
  output: e
@@ -2476,7 +2472,7 @@ const Kr = (t, e) => {
2476
2472
  if (w.length > 0) {
2477
2473
  w[w.length - 1].conditions++;
2478
2474
  }
2479
- q({
2475
+ G({
2480
2476
  type: "text",
2481
2477
  value: L
2482
2478
  });
@@ -2489,7 +2485,7 @@ const Kr = (t, e) => {
2489
2485
  e.comma = true;
2490
2486
  t = "|";
2491
2487
  }
2492
- q({
2488
+ G({
2493
2489
  type: "comma",
2494
2490
  value: L,
2495
2491
  output: t
@@ -2505,7 +2501,7 @@ const Kr = (t, e) => {
2505
2501
  k = i;
2506
2502
  continue;
2507
2503
  }
2508
- q({
2504
+ G({
2509
2505
  type: "slash",
2510
2506
  value: L,
2511
2507
  output: h
@@ -2523,14 +2519,14 @@ const Kr = (t, e) => {
2523
2519
  continue;
2524
2520
  }
2525
2521
  if (C.braces + C.parens === 0 && k.type !== "bos" && k.type !== "slash") {
2526
- q({
2522
+ G({
2527
2523
  type: "text",
2528
2524
  value: L,
2529
2525
  output: f
2530
2526
  });
2531
2527
  continue;
2532
2528
  }
2533
- q({
2529
+ G({
2534
2530
  type: "dot",
2535
2531
  value: L,
2536
2532
  output: f
@@ -2540,7 +2536,7 @@ const Kr = (t, e) => {
2540
2536
  if (L === "?") {
2541
2537
  const t = k && k.value === "(";
2542
2538
  if (!t && r.noextglob !== true && D() === "(" && D(2) !== "?") {
2543
- G("qmark", L);
2539
+ q("qmark", L);
2544
2540
  continue;
2545
2541
  }
2546
2542
  if (k && k.type === "paren") {
@@ -2552,7 +2548,7 @@ const Kr = (t, e) => {
2552
2548
  if (k.value === "(" && !/[!=<:]/.test(t) || t === "<" && !/<([!=]|\w+>)/.test(M())) {
2553
2549
  e = `\\${L}`;
2554
2550
  }
2555
- q({
2551
+ G({
2556
2552
  type: "text",
2557
2553
  value: L,
2558
2554
  output: e
@@ -2560,14 +2556,14 @@ const Kr = (t, e) => {
2560
2556
  continue;
2561
2557
  }
2562
2558
  if (r.dot !== true && (k.type === "slash" || k.type === "bos")) {
2563
- q({
2559
+ G({
2564
2560
  type: "qmark",
2565
2561
  value: L,
2566
2562
  output: S
2567
2563
  });
2568
2564
  continue;
2569
2565
  }
2570
- q({
2566
+ G({
2571
2567
  type: "qmark",
2572
2568
  value: L,
2573
2569
  output: m
@@ -2577,7 +2573,7 @@ const Kr = (t, e) => {
2577
2573
  if (L === "!") {
2578
2574
  if (r.noextglob !== true && D() === "(") {
2579
2575
  if (D(2) !== "?" || !/[!=<:]/.test(D(3))) {
2580
- G("negate", L);
2576
+ q("negate", L);
2581
2577
  continue;
2582
2578
  }
2583
2579
  }
@@ -2588,11 +2584,11 @@ const Kr = (t, e) => {
2588
2584
  }
2589
2585
  if (L === "+") {
2590
2586
  if (r.noextglob !== true && D() === "(" && D(2) !== "?") {
2591
- G("plus", L);
2587
+ q("plus", L);
2592
2588
  continue;
2593
2589
  }
2594
2590
  if (k && k.value === "(" || r.regex === false) {
2595
- q({
2591
+ G({
2596
2592
  type: "plus",
2597
2593
  value: L,
2598
2594
  output: p
@@ -2600,13 +2596,13 @@ const Kr = (t, e) => {
2600
2596
  continue;
2601
2597
  }
2602
2598
  if (k && (k.type === "bracket" || k.type === "paren" || k.type === "brace") || C.parens > 0) {
2603
- q({
2599
+ G({
2604
2600
  type: "plus",
2605
2601
  value: L
2606
2602
  });
2607
2603
  continue;
2608
2604
  }
2609
- q({
2605
+ G({
2610
2606
  type: "plus",
2611
2607
  value: p
2612
2608
  });
@@ -2614,7 +2610,7 @@ const Kr = (t, e) => {
2614
2610
  }
2615
2611
  if (L === "@") {
2616
2612
  if (r.noextglob !== true && D() === "(" && D(2) !== "?") {
2617
- q({
2613
+ G({
2618
2614
  type: "at",
2619
2615
  extglob: true,
2620
2616
  value: L,
@@ -2622,7 +2618,7 @@ const Kr = (t, e) => {
2622
2618
  });
2623
2619
  continue;
2624
2620
  }
2625
- q({
2621
+ G({
2626
2622
  type: "text",
2627
2623
  value: L
2628
2624
  });
@@ -2637,7 +2633,7 @@ const Kr = (t, e) => {
2637
2633
  L += t[0];
2638
2634
  C.index += t[0].length;
2639
2635
  }
2640
- q({
2636
+ G({
2641
2637
  type: "text",
2642
2638
  value: L
2643
2639
  });
@@ -2655,7 +2651,7 @@ const Kr = (t, e) => {
2655
2651
  }
2656
2652
  let e = M();
2657
2653
  if (r.noextglob !== true && /^\([^?]/.test(e)) {
2658
- G("star", L);
2654
+ q("star", L);
2659
2655
  continue;
2660
2656
  }
2661
2657
  if (k.type === "star") {
@@ -2668,7 +2664,7 @@ const Kr = (t, e) => {
2668
2664
  const i = n.type === "slash" || n.type === "bos";
2669
2665
  const o = s && (s.type === "star" || s.type === "globstar");
2670
2666
  if (r.bash === true && (!i || e[0] && e[0] !== "/")) {
2671
- q({
2667
+ G({
2672
2668
  type: "star",
2673
2669
  value: L,
2674
2670
  output: ""
@@ -2678,7 +2674,7 @@ const Kr = (t, e) => {
2678
2674
  const a = C.braces > 0 && (n.type === "comma" || n.type === "brace");
2679
2675
  const u = w.length && (n.type === "pipe" || n.type === "paren");
2680
2676
  if (!i && n.type !== "paren" && !a && !u) {
2681
- q({
2677
+ G({
2682
2678
  type: "star",
2683
2679
  value: L,
2684
2680
  output: ""
@@ -2723,7 +2719,7 @@ const Kr = (t, e) => {
2723
2719
  C.output += n.output + k.output;
2724
2720
  C.globstar = true;
2725
2721
  $(L + F());
2726
- q({
2722
+ G({
2727
2723
  type: "slash",
2728
2724
  value: "/",
2729
2725
  output: ""
@@ -2737,7 +2733,7 @@ const Kr = (t, e) => {
2737
2733
  C.output = k.output;
2738
2734
  C.globstar = true;
2739
2735
  $(L + F());
2740
- q({
2736
+ G({
2741
2737
  type: "slash",
2742
2738
  value: "/",
2743
2739
  output: ""
@@ -2763,12 +2759,12 @@ const Kr = (t, e) => {
2763
2759
  if (k.type === "bos" || k.type === "slash") {
2764
2760
  n.output = R + n.output;
2765
2761
  }
2766
- q(n);
2762
+ G(n);
2767
2763
  continue;
2768
2764
  }
2769
2765
  if (k && (k.type === "bracket" || k.type === "paren") && r.regex === true) {
2770
2766
  n.output = L;
2771
- q(n);
2767
+ G(n);
2772
2768
  continue;
2773
2769
  }
2774
2770
  if (C.index === C.start || k.type === "slash" || k.type === "dot") {
@@ -2787,7 +2783,7 @@ const Kr = (t, e) => {
2787
2783
  k.output += d;
2788
2784
  }
2789
2785
  }
2790
- q(n);
2786
+ G(n);
2791
2787
  }
2792
2788
  while (C.brackets > 0) {
2793
2789
  if (r.strictBrackets === true) throw new SyntaxError(Wr("closing", "]"));
@@ -2805,7 +2801,7 @@ const Kr = (t, e) => {
2805
2801
  B("braces");
2806
2802
  }
2807
2803
  if (r.strictSlashes !== true && (k.type === "star" || k.type === "bracket")) {
2808
- q({
2804
+ G({
2809
2805
  type: "maybe_slash",
2810
2806
  value: "",
2811
2807
  output: `${h}?`
@@ -2832,7 +2828,7 @@ Kr.fastpaths = (t, e) => {
2832
2828
  if (s > n) {
2833
2829
  throw new SyntaxError(`Input length: ${s}, exceeds maximum allowed length: ${n}`);
2834
2830
  }
2835
- t = Gr[t] || t;
2831
+ t = qr[t] || t;
2836
2832
  const i = jr.isWindows(e);
2837
2833
  const {DOT_LITERAL: o, SLASH_LITERAL: a, ONE_CHAR: u, DOTS_SLASH: c, NO_DOT: l, NO_DOTS: f, NO_DOTS_SLASH: p, STAR: h, START_ANCHOR: d} = $r.globChars(i);
2838
2834
  const _ = r.dot ? f : l;
@@ -3093,7 +3089,7 @@ const on = t.getDefaultExportFromCjs(sn);
3093
3089
 
3094
3090
  const an = h.default;
3095
3091
 
3096
- const un = Ge;
3092
+ const un = qe;
3097
3093
 
3098
3094
  const cn = sn;
3099
3095
 
@@ -3293,7 +3289,7 @@ Object.defineProperty(rt, "__esModule", {
3293
3289
  value: true
3294
3290
  });
3295
3291
 
3296
- var gn = rt.isAbsolute = Ss = rt.partitionAbsoluteAndRelative = vs = rt.removeDuplicateSlashes = gs = rt.matchAny = ds = rt.convertPatternsToRe = ps = rt.makeRe = ls = rt.getPatternParts = us = rt.expandBraceExpansion = os = rt.expandPatternsWithBraceExpansion = ss = rt.isAffectDepthOfReadingPattern = rs = rt.endsWithSlashGlobStar = ts = rt.hasGlobStar = zn = rt.getBaseDirectory = Yn = rt.isPatternRelatedToParentDirectory = Qn = rt.getPatternsOutsideCurrentDirectory = Kn = rt.getPatternsInsideCurrentDirectory = Un = rt.getPositivePatterns = qn = rt.getNegativePatterns = Nn = rt.isPositivePattern = jn = rt.isNegativePattern = Mn = rt.convertToNegativePattern = Dn = rt.convertToPositivePattern = kn = rt.isDynamicPattern = Tn = rt.isStaticPattern = void 0;
3292
+ var gn = rt.isAbsolute = Ss = rt.partitionAbsoluteAndRelative = vs = rt.removeDuplicateSlashes = gs = rt.matchAny = ds = rt.convertPatternsToRe = ps = rt.makeRe = ls = rt.getPatternParts = us = rt.expandBraceExpansion = os = rt.expandPatternsWithBraceExpansion = ss = rt.isAffectDepthOfReadingPattern = rs = rt.endsWithSlashGlobStar = ts = rt.hasGlobStar = zn = rt.getBaseDirectory = Yn = rt.isPatternRelatedToParentDirectory = Qn = rt.getPatternsOutsideCurrentDirectory = Kn = rt.getPatternsInsideCurrentDirectory = Un = rt.getPositivePatterns = Gn = rt.getNegativePatterns = Nn = rt.isPositivePattern = jn = rt.isNegativePattern = Mn = rt.convertToNegativePattern = Dn = rt.convertToPositivePattern = kn = rt.isDynamicPattern = Tn = rt.isStaticPattern = void 0;
3297
3293
 
3298
3294
  const yn = p.default;
3299
3295
 
@@ -3385,13 +3381,13 @@ function Bn(t) {
3385
3381
  return t.filter($n);
3386
3382
  }
3387
3383
 
3388
- var qn = rt.getNegativePatterns = Bn;
3384
+ var Gn = rt.getNegativePatterns = Bn;
3389
3385
 
3390
- function Gn(t) {
3386
+ function qn(t) {
3391
3387
  return t.filter(In);
3392
3388
  }
3393
3389
 
3394
- var Un = rt.getPositivePatterns = Gn;
3390
+ var Un = rt.getPositivePatterns = qn;
3395
3391
 
3396
3392
  function Wn(t) {
3397
3393
  return t.filter((t => !Xn(t)));
@@ -3697,15 +3693,15 @@ Object.defineProperty(v, "__esModule", {
3697
3693
  value: true
3698
3694
  });
3699
3695
 
3700
- var Is = v.string = Zs = v.stream = Xs = v.pattern = Vs = v.path = Ws = v.fs = Gs = v.errno = Bs = v.array = void 0;
3696
+ var Is = v.string = Zs = v.stream = Xs = v.pattern = Vs = v.path = Ws = v.fs = qs = v.errno = Bs = v.array = void 0;
3701
3697
 
3702
3698
  const Ns = m;
3703
3699
 
3704
3700
  var Bs = v.array = Ns;
3705
3701
 
3706
- const qs = R;
3702
+ const Gs = R;
3707
3703
 
3708
- var Gs = v.errno = qs;
3704
+ var qs = v.errno = Gs;
3709
3705
 
3710
3706
  const Us = C;
3711
3707
 
@@ -3977,7 +3973,7 @@ Object.defineProperty(Ai, "__esModule", {
3977
3973
  value: true
3978
3974
  });
3979
3975
 
3980
- var $i = Ai.statSync = Gi = Ai.stat = Bi = Ai.Settings = void 0;
3976
+ var $i = Ai.statSync = qi = Ai.stat = Bi = Ai.Settings = void 0;
3981
3977
 
3982
3978
  const ji = bi;
3983
3979
 
@@ -3987,7 +3983,7 @@ const Ni = ki;
3987
3983
 
3988
3984
  var Bi = Ai.Settings = Ni.default;
3989
3985
 
3990
- function qi(t, e, r) {
3986
+ function Gi(t, e, r) {
3991
3987
  if (typeof e === "function") {
3992
3988
  ji.read(t, Wi(), e);
3993
3989
  return;
@@ -3995,7 +3991,7 @@ function qi(t, e, r) {
3995
3991
  ji.read(t, Wi(e), r);
3996
3992
  }
3997
3993
 
3998
- var Gi = Ai.stat = qi;
3994
+ var qi = Ai.stat = Gi;
3999
3995
 
4000
3996
  function Ui(t, e) {
4001
3997
  const r = Wi(e);
@@ -4306,7 +4302,7 @@ function jo(t, e) {
4306
4302
  if (!e.stats && Fo.IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
4307
4303
  return No(t, e);
4308
4304
  }
4309
- return qo(t, e);
4305
+ return Go(t, e);
4310
4306
  }
4311
4307
 
4312
4308
  var Io = Lo.read = jo;
@@ -4337,7 +4333,7 @@ function No(t, e) {
4337
4333
 
4338
4334
  var Bo = Lo.readdirWithFileTypes = No;
4339
4335
 
4340
- function qo(t, e) {
4336
+ function Go(t, e) {
4341
4337
  const r = e.fs.readdirSync(t);
4342
4338
  return r.map((r => {
4343
4339
  const n = $o.joinPathSegments(t, r, e.pathSegmentSeparator);
@@ -4354,9 +4350,9 @@ function qo(t, e) {
4354
4350
  }));
4355
4351
  }
4356
4352
 
4357
- Ho = Lo.readdir = qo;
4353
+ Ho = Lo.readdir = Go;
4358
4354
 
4359
- var Go = {};
4355
+ var qo = {};
4360
4356
 
4361
4357
  var Uo = {};
4362
4358
 
@@ -4388,7 +4384,7 @@ const Wo = t.getDefaultExportFromCjs(Uo);
4388
4384
 
4389
4385
  "use strict";
4390
4386
 
4391
- Object.defineProperty(Go, "__esModule", {
4387
+ Object.defineProperty(qo, "__esModule", {
4392
4388
  value: true
4393
4389
  });
4394
4390
 
@@ -4417,7 +4413,7 @@ let Xo = class Settings {
4417
4413
  }
4418
4414
  };
4419
4415
 
4420
- var Yo = Go.default = Xo;
4416
+ var Yo = qo.default = Xo;
4421
4417
 
4422
4418
  "use strict";
4423
4419
 
@@ -4431,7 +4427,7 @@ const zo = Ei;
4431
4427
 
4432
4428
  const Jo = Lo;
4433
4429
 
4434
- const ta = Go;
4430
+ const ta = qo;
4435
4431
 
4436
4432
  Zo = Si.Settings = ta.default;
4437
4433
 
@@ -4974,15 +4970,15 @@ function Ba(t, e) {
4974
4970
  t(null, e);
4975
4971
  }
4976
4972
 
4977
- var qa = {};
4973
+ var Ga = {};
4978
4974
 
4979
4975
  "use strict";
4980
4976
 
4981
- Object.defineProperty(qa, "__esModule", {
4977
+ Object.defineProperty(Ga, "__esModule", {
4982
4978
  value: true
4983
4979
  });
4984
4980
 
4985
- const Ga = d.default;
4981
+ const qa = d.default;
4986
4982
 
4987
4983
  const Ua = mi;
4988
4984
 
@@ -4991,7 +4987,7 @@ class StreamProvider {
4991
4987
  this._root = t;
4992
4988
  this._settings = e;
4993
4989
  this._reader = new Ua.default(this._root, this._settings);
4994
- this._stream = new Ga.Readable({
4990
+ this._stream = new qa.Readable({
4995
4991
  objectMode: true,
4996
4992
  read: () => {},
4997
4993
  destroy: () => {
@@ -5016,7 +5012,7 @@ class StreamProvider {
5016
5012
  }
5017
5013
  }
5018
5014
 
5019
- var Wa = qa.default = StreamProvider;
5015
+ var Wa = Ga.default = StreamProvider;
5020
5016
 
5021
5017
  var Ka = {};
5022
5018
 
@@ -5159,7 +5155,7 @@ var iu = yi.Settings = _u = yi.walkStream = hu = yi.walkSync = fu = yi.walk = vo
5159
5155
 
5160
5156
  const ou = vi;
5161
5157
 
5162
- const au = qa;
5158
+ const au = Ga;
5163
5159
 
5164
5160
  const uu = Ka;
5165
5161
 
@@ -5510,13 +5506,13 @@ class DeepFilter {
5510
5506
  }
5511
5507
  }
5512
5508
 
5513
- var qu = Hu.default = DeepFilter;
5509
+ var Gu = Hu.default = DeepFilter;
5514
5510
 
5515
- var Gu = {};
5511
+ var qu = {};
5516
5512
 
5517
5513
  "use strict";
5518
5514
 
5519
- Object.defineProperty(Gu, "__esModule", {
5515
+ Object.defineProperty(qu, "__esModule", {
5520
5516
  value: true
5521
5517
  });
5522
5518
 
@@ -5605,7 +5601,7 @@ class EntryFilter {
5605
5601
  }
5606
5602
  }
5607
5603
 
5608
- var Wu = Gu.default = EntryFilter;
5604
+ var Wu = qu.default = EntryFilter;
5609
5605
 
5610
5606
  var Ku = {};
5611
5607
 
@@ -5678,7 +5674,7 @@ const zu = p.default;
5678
5674
 
5679
5675
  const Ju = Hu;
5680
5676
 
5681
- const tc = Gu;
5677
+ const tc = qu;
5682
5678
 
5683
5679
  const ec = Ku;
5684
5680