lakutata 2.0.96 → 2.0.98

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 (1190) hide show
  1. package/com/cacher.cjs +31 -135
  2. package/com/cacher.mjs +23 -127
  3. package/com/database.cjs +24 -166
  4. package/com/database.mjs +24 -166
  5. package/com/docker.cjs +94 -276
  6. package/com/docker.mjs +39 -221
  7. package/com/entrypoint.cjs +33 -119
  8. package/com/entrypoint.mjs +20 -106
  9. package/com/logger.cjs +19 -123
  10. package/com/logger.mjs +19 -123
  11. package/com/monitor.cjs +24 -88
  12. package/com/monitor.mjs +20 -84
  13. package/decorator/asst.cjs +5 -7
  14. package/decorator/asst.mjs +5 -7
  15. package/decorator/ctrl.cjs +22 -58
  16. package/decorator/ctrl.mjs +10 -46
  17. package/decorator/di.cjs +12 -42
  18. package/decorator/di.mjs +8 -38
  19. package/decorator/dto.cjs +13 -43
  20. package/decorator/dto.mjs +9 -39
  21. package/decorator/orm.cjs +117 -113
  22. package/decorator/orm.mjs +71 -67
  23. package/dtos.cjs +8 -38
  24. package/dtos.mjs +8 -38
  25. package/helper.cjs +73 -127
  26. package/helper.mjs +12 -66
  27. package/lakutata.cjs +116 -328
  28. package/lakutata.mjs +60 -272
  29. package/orm.cjs +854 -173
  30. package/orm.mjs +866 -65
  31. package/package.json +1 -1
  32. package/provider/database.cjs +26 -166
  33. package/provider/database.mjs +26 -166
  34. package/provider/passwordHash.cjs +18 -82
  35. package/provider/passwordHash.mjs +18 -82
  36. package/src/components/Database.cjs +36 -178
  37. package/src/components/Database.mjs +68 -210
  38. package/src/components/Logger.cjs +50 -191
  39. package/src/components/Logger.mjs +46 -194
  40. package/src/components/cacher/Cacher.cjs +511 -174
  41. package/src/components/cacher/Cacher.mjs +502 -171
  42. package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +547 -35
  43. package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +530 -34
  44. package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +17 -61
  45. package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +19 -63
  46. package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +21 -65
  47. package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +22 -66
  48. package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +7 -45
  49. package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +18 -56
  50. package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +23 -67
  51. package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +23 -67
  52. package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +6 -44
  53. package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +27 -65
  54. package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +11 -55
  55. package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +18 -62
  56. package/src/components/cacher/exceptions/CacheDriverNotFoundException.cjs +4 -6
  57. package/src/components/cacher/exceptions/CacheDriverNotFoundException.mjs +4 -6
  58. package/src/components/cacher/interfaces/CacherOptions.cjs +1 -1
  59. package/src/components/cacher/interfaces/CacherOptions.mjs +1 -1
  60. package/src/components/cacher/lib/IsDriverPackageInstalled.cjs +4 -6
  61. package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +4 -6
  62. package/src/components/cacher/options/FileCacheOptions.cjs +15 -45
  63. package/src/components/cacher/options/FileCacheOptions.mjs +15 -45
  64. package/src/components/cacher/options/MemcacheCacheOptions.cjs +16 -46
  65. package/src/components/cacher/options/MemcacheCacheOptions.mjs +17 -47
  66. package/src/components/cacher/options/MongoCacheOptions.cjs +9 -39
  67. package/src/components/cacher/options/MongoCacheOptions.mjs +18 -48
  68. package/src/components/cacher/options/MysqlCacheOptions.cjs +9 -39
  69. package/src/components/cacher/options/MysqlCacheOptions.mjs +19 -49
  70. package/src/components/cacher/options/PostgresCacheOptions.cjs +21 -51
  71. package/src/components/cacher/options/PostgresCacheOptions.mjs +20 -50
  72. package/src/components/cacher/options/RedisCacheOptions.cjs +26 -56
  73. package/src/components/cacher/options/RedisCacheOptions.mjs +9 -39
  74. package/src/components/cacher/options/SqliteCacheOptions.cjs +15 -45
  75. package/src/components/cacher/options/SqliteCacheOptions.mjs +14 -44
  76. package/src/components/cacher/types/CacheStoreOptions.cjs +1 -1
  77. package/src/components/cacher/types/CacheStoreOptions.mjs +1 -1
  78. package/src/components/docker/ConnectionOptionsBuilder.cjs +32 -214
  79. package/src/components/docker/ConnectionOptionsBuilder.mjs +37 -219
  80. package/src/components/docker/Docker.cjs +8727 -408
  81. package/src/components/docker/Docker.mjs +8903 -578
  82. package/src/components/docker/exceptions/DockerConnectionException.cjs +4 -6
  83. package/src/components/docker/exceptions/DockerConnectionException.mjs +4 -6
  84. package/src/components/docker/exceptions/DockerImageBuildException.cjs +4 -6
  85. package/src/components/docker/exceptions/DockerImageBuildException.mjs +4 -6
  86. package/src/components/docker/exceptions/DockerImageImportException.cjs +4 -6
  87. package/src/components/docker/exceptions/DockerImageImportException.mjs +4 -6
  88. package/src/components/docker/exceptions/DockerImageNotFoundException.cjs +4 -6
  89. package/src/components/docker/exceptions/DockerImageNotFoundException.mjs +4 -6
  90. package/src/components/docker/exceptions/DockerImagePullException.cjs +4 -6
  91. package/src/components/docker/exceptions/DockerImagePullException.mjs +4 -6
  92. package/src/components/docker/exceptions/DockerImagePushException.cjs +4 -6
  93. package/src/components/docker/exceptions/DockerImagePushException.mjs +4 -6
  94. package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.cjs +4 -6
  95. package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.mjs +4 -6
  96. package/src/components/docker/exceptions/DockerNetworkNotFoundException.cjs +4 -6
  97. package/src/components/docker/exceptions/DockerNetworkNotFoundException.mjs +4 -6
  98. package/src/components/docker/interfaces/IDockerConnectionOptions.cjs +1 -1
  99. package/src/components/docker/interfaces/IDockerConnectionOptions.mjs +1 -1
  100. package/src/components/docker/interfaces/IDockerHttpConnectionOptions.cjs +1 -1
  101. package/src/components/docker/interfaces/IDockerHttpConnectionOptions.mjs +1 -1
  102. package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.cjs +1 -1
  103. package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.mjs +1 -1
  104. package/src/components/docker/interfaces/IDockerKeyObject.cjs +1 -1
  105. package/src/components/docker/interfaces/IDockerKeyObject.mjs +1 -1
  106. package/src/components/docker/interfaces/IDockerSSHConnectionOptions.cjs +1 -1
  107. package/src/components/docker/interfaces/IDockerSSHConnectionOptions.mjs +1 -1
  108. package/src/components/docker/interfaces/IDockerSocketConnectionOptions.cjs +1 -1
  109. package/src/components/docker/interfaces/IDockerSocketConnectionOptions.mjs +1 -1
  110. package/src/components/docker/lib/DockerContainer.cjs +174 -330
  111. package/src/components/docker/lib/DockerContainer.mjs +184 -340
  112. package/src/components/docker/lib/DockerContainerTTY.cjs +52 -260
  113. package/src/components/docker/lib/DockerContainerTTY.mjs +48 -263
  114. package/src/components/docker/lib/DockerImage.cjs +69 -131
  115. package/src/components/docker/lib/DockerImage.mjs +54 -116
  116. package/src/components/docker/lib/ParseEnvToRecord.cjs +1 -1
  117. package/src/components/docker/lib/ParseEnvToRecord.mjs +1 -1
  118. package/src/components/docker/lib/ParseRepositoryTag.cjs +1 -1
  119. package/src/components/docker/lib/ParseRepositoryTag.mjs +1 -1
  120. package/src/components/docker/options/DockerPruneOptions.cjs +14 -44
  121. package/src/components/docker/options/DockerPruneOptions.mjs +15 -45
  122. package/src/components/docker/options/auth/DockerAuthOptions.cjs +9 -39
  123. package/src/components/docker/options/auth/DockerAuthOptions.mjs +15 -45
  124. package/src/components/docker/options/container/ContainerCommitOptions.cjs +12 -42
  125. package/src/components/docker/options/container/ContainerCommitOptions.mjs +12 -42
  126. package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +13 -43
  127. package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +12 -42
  128. package/src/components/docker/options/container/ContainerExecOptions.cjs +9 -39
  129. package/src/components/docker/options/container/ContainerExecOptions.mjs +11 -41
  130. package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +13 -43
  131. package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +12 -42
  132. package/src/components/docker/options/container/ContainerKillOptions.cjs +9 -39
  133. package/src/components/docker/options/container/ContainerKillOptions.mjs +12 -42
  134. package/src/components/docker/options/container/ContainerLogsOptions.cjs +15 -45
  135. package/src/components/docker/options/container/ContainerLogsOptions.mjs +15 -45
  136. package/src/components/docker/options/container/ContainerRemoveOptions.cjs +9 -39
  137. package/src/components/docker/options/container/ContainerRemoveOptions.mjs +12 -42
  138. package/src/components/docker/options/container/ContainerSettingOptions.cjs +9 -39
  139. package/src/components/docker/options/container/ContainerSettingOptions.mjs +43 -73
  140. package/src/components/docker/options/container/ContainerStopOptions.cjs +12 -42
  141. package/src/components/docker/options/container/ContainerStopOptions.mjs +9 -39
  142. package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +9 -39
  143. package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +12 -42
  144. package/src/components/docker/options/image/ImageBuildOptions.cjs +26 -56
  145. package/src/components/docker/options/image/ImageBuildOptions.mjs +25 -55
  146. package/src/components/docker/options/image/ImageExportOptions.cjs +14 -44
  147. package/src/components/docker/options/image/ImageExportOptions.mjs +14 -44
  148. package/src/components/docker/options/image/ImageImportOptions.cjs +13 -43
  149. package/src/components/docker/options/image/ImageImportOptions.mjs +12 -42
  150. package/src/components/docker/options/image/ImagePullOptions.cjs +9 -39
  151. package/src/components/docker/options/image/ImagePullOptions.mjs +16 -46
  152. package/src/components/docker/options/image/ImagePushOptions.cjs +15 -45
  153. package/src/components/docker/options/image/ImagePushOptions.mjs +15 -45
  154. package/src/components/docker/options/image/ImageRemoveOptions.cjs +12 -42
  155. package/src/components/docker/options/image/ImageRemoveOptions.mjs +13 -43
  156. package/src/components/docker/options/image/ImageTagOptions.cjs +9 -39
  157. package/src/components/docker/options/image/ImageTagOptions.mjs +12 -42
  158. package/src/components/docker/options/network/NetworkCreateOptions.cjs +9 -39
  159. package/src/components/docker/options/network/NetworkCreateOptions.mjs +20 -50
  160. package/src/components/docker/types/ContainerBind.cjs +1 -1
  161. package/src/components/docker/types/ContainerBind.mjs +1 -1
  162. package/src/components/docker/types/ContainerCapability.cjs +1 -1
  163. package/src/components/docker/types/ContainerCapability.mjs +1 -1
  164. package/src/components/docker/types/ContainerConfig.cjs +1 -1
  165. package/src/components/docker/types/ContainerConfig.mjs +1 -1
  166. package/src/components/docker/types/ContainerDevice.cjs +1 -1
  167. package/src/components/docker/types/ContainerDevice.mjs +1 -1
  168. package/src/components/docker/types/ContainerNetwork.cjs +1 -1
  169. package/src/components/docker/types/ContainerNetwork.mjs +1 -1
  170. package/src/components/docker/types/ContainerPort.cjs +1 -1
  171. package/src/components/docker/types/ContainerPort.mjs +1 -1
  172. package/src/components/docker/types/ContainerRestartPolicy.cjs +1 -1
  173. package/src/components/docker/types/ContainerRestartPolicy.mjs +1 -1
  174. package/src/components/docker/types/ContainerState.cjs +1 -1
  175. package/src/components/docker/types/ContainerState.mjs +1 -1
  176. package/src/components/docker/types/ContainerStats.cjs +1 -1
  177. package/src/components/docker/types/ContainerStats.mjs +1 -1
  178. package/src/components/docker/types/DockerOutputCallback.cjs +1 -1
  179. package/src/components/docker/types/DockerOutputCallback.mjs +1 -1
  180. package/src/components/docker/types/ImageConfig.cjs +1 -1
  181. package/src/components/docker/types/ImageConfig.mjs +1 -1
  182. package/src/components/docker/types/ImageExposePort.cjs +1 -1
  183. package/src/components/docker/types/ImageExposePort.mjs +1 -1
  184. package/src/components/docker/types/NetworkInfo.cjs +1 -1
  185. package/src/components/docker/types/NetworkInfo.mjs +1 -1
  186. package/src/components/entrypoint/Entrypoint.cjs +1961 -322
  187. package/src/components/entrypoint/Entrypoint.mjs +1928 -281
  188. package/src/components/entrypoint/exceptions/AccessDenyException.cjs +4 -6
  189. package/src/components/entrypoint/exceptions/AccessDenyException.mjs +4 -6
  190. package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +4 -6
  191. package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +4 -6
  192. package/src/components/entrypoint/exceptions/DuplicateActionNameException.cjs +4 -6
  193. package/src/components/entrypoint/exceptions/DuplicateActionNameException.mjs +4 -6
  194. package/src/components/entrypoint/exceptions/InvalidActionGroupException.cjs +4 -6
  195. package/src/components/entrypoint/exceptions/InvalidActionGroupException.mjs +4 -6
  196. package/src/components/entrypoint/lib/AccessControl.cjs +71 -133
  197. package/src/components/entrypoint/lib/AccessControl.mjs +75 -137
  198. package/src/components/entrypoint/lib/AccessControlRule.cjs +19 -81
  199. package/src/components/entrypoint/lib/AccessControlRule.mjs +23 -85
  200. package/src/components/entrypoint/lib/Controller.cjs +42 -104
  201. package/src/components/entrypoint/lib/Controller.mjs +43 -105
  202. package/src/components/monitor/AliveMonitor.cjs +40 -104
  203. package/src/components/monitor/AliveMonitor.mjs +50 -114
  204. package/src/components/monitor/CpuMonitor.cjs +40 -104
  205. package/src/components/monitor/CpuMonitor.mjs +48 -112
  206. package/src/components/monitor/EventLoopMonitor.cjs +19 -83
  207. package/src/components/monitor/EventLoopMonitor.mjs +24 -88
  208. package/src/components/monitor/HttpRequestMonitor.cjs +41 -105
  209. package/src/components/monitor/HttpRequestMonitor.mjs +45 -109
  210. package/src/components/monitor/MemoryMonitor.cjs +87 -151
  211. package/src/components/monitor/MemoryMonitor.mjs +71 -135
  212. package/src/components/monitor/interfaces/ICpuMonitorStatistics.cjs +1 -1
  213. package/src/components/monitor/interfaces/ICpuMonitorStatistics.mjs +1 -1
  214. package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.cjs +1 -1
  215. package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.mjs +1 -1
  216. package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.cjs +1 -1
  217. package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.mjs +1 -1
  218. package/src/components/monitor/interfaces/IMemoryMonitorStatistics.cjs +1 -1
  219. package/src/components/monitor/interfaces/IMemoryMonitorStatistics.mjs +1 -1
  220. package/src/components/monitor/interfaces/IMonitor.cjs +1 -1
  221. package/src/components/monitor/interfaces/IMonitor.mjs +1 -1
  222. package/src/constants/DIMetadataKey.cjs +3 -3
  223. package/src/constants/DIMetadataKey.mjs +3 -3
  224. package/src/constants/DTOMetadataKey.cjs +3 -3
  225. package/src/constants/DTOMetadataKey.mjs +3 -3
  226. package/src/decorators/asst/After.cjs +4 -6
  227. package/src/decorators/asst/After.mjs +5 -7
  228. package/src/decorators/asst/Before.cjs +4 -6
  229. package/src/decorators/asst/Before.mjs +5 -7
  230. package/src/decorators/ctrl/CLIAction.cjs +15 -51
  231. package/src/decorators/ctrl/CLIAction.mjs +19 -55
  232. package/src/decorators/ctrl/HTTPAction.cjs +15 -51
  233. package/src/decorators/ctrl/HTTPAction.mjs +19 -55
  234. package/src/decorators/ctrl/ServiceAction.cjs +15 -51
  235. package/src/decorators/ctrl/ServiceAction.mjs +18 -54
  236. package/src/decorators/ctrl/http/DELETE.cjs +12 -48
  237. package/src/decorators/ctrl/http/DELETE.mjs +14 -50
  238. package/src/decorators/ctrl/http/GET.cjs +12 -48
  239. package/src/decorators/ctrl/http/GET.mjs +14 -50
  240. package/src/decorators/ctrl/http/HEAD.cjs +12 -48
  241. package/src/decorators/ctrl/http/HEAD.mjs +14 -50
  242. package/src/decorators/ctrl/http/OPTIONS.cjs +12 -48
  243. package/src/decorators/ctrl/http/OPTIONS.mjs +14 -50
  244. package/src/decorators/ctrl/http/PATCH.cjs +12 -48
  245. package/src/decorators/ctrl/http/PATCH.mjs +14 -50
  246. package/src/decorators/ctrl/http/POST.cjs +12 -48
  247. package/src/decorators/ctrl/http/POST.mjs +14 -50
  248. package/src/decorators/ctrl/http/PUT.cjs +12 -48
  249. package/src/decorators/ctrl/http/PUT.mjs +14 -50
  250. package/src/decorators/di/Autoload.cjs +3 -3
  251. package/src/decorators/di/Autoload.mjs +3 -3
  252. package/src/decorators/di/Configurable.cjs +10 -40
  253. package/src/decorators/di/Configurable.mjs +12 -42
  254. package/src/decorators/di/Inject.cjs +20 -50
  255. package/src/decorators/di/Inject.mjs +25 -55
  256. package/src/decorators/di/Lifetime.cjs +5 -7
  257. package/src/decorators/di/Lifetime.mjs +15 -17
  258. package/src/decorators/dto/Accept.cjs +10 -40
  259. package/src/decorators/dto/Accept.mjs +13 -43
  260. package/src/decorators/dto/Expect.cjs +11 -41
  261. package/src/decorators/dto/Expect.mjs +13 -43
  262. package/src/decorators/dto/IndexSignature.cjs +10 -40
  263. package/src/decorators/dto/IndexSignature.mjs +13 -43
  264. package/src/decorators/dto/Return.cjs +10 -40
  265. package/src/decorators/dto/Return.mjs +13 -43
  266. package/src/decorators/orm/AfterInsert.cjs +17 -95
  267. package/src/decorators/orm/AfterInsert.mjs +17 -95
  268. package/src/decorators/orm/AfterLoad.cjs +17 -95
  269. package/src/decorators/orm/AfterLoad.mjs +17 -95
  270. package/src/decorators/orm/AfterRecover.cjs +17 -95
  271. package/src/decorators/orm/AfterRecover.mjs +17 -95
  272. package/src/decorators/orm/AfterRemove.cjs +17 -95
  273. package/src/decorators/orm/AfterRemove.mjs +17 -95
  274. package/src/decorators/orm/AfterSoftRemove.cjs +17 -95
  275. package/src/decorators/orm/AfterSoftRemove.mjs +17 -95
  276. package/src/decorators/orm/AfterUpdate.cjs +17 -95
  277. package/src/decorators/orm/AfterUpdate.mjs +17 -95
  278. package/src/decorators/orm/BeforeInsert.cjs +17 -95
  279. package/src/decorators/orm/BeforeInsert.mjs +17 -95
  280. package/src/decorators/orm/BeforeRecover.cjs +17 -95
  281. package/src/decorators/orm/BeforeRecover.mjs +17 -95
  282. package/src/decorators/orm/BeforeRemove.cjs +17 -95
  283. package/src/decorators/orm/BeforeRemove.mjs +17 -95
  284. package/src/decorators/orm/BeforeSoftRemove.cjs +17 -95
  285. package/src/decorators/orm/BeforeSoftRemove.mjs +17 -95
  286. package/src/decorators/orm/BeforeUpdate.cjs +17 -95
  287. package/src/decorators/orm/BeforeUpdate.mjs +17 -95
  288. package/src/decorators/orm/Check.cjs +17 -95
  289. package/src/decorators/orm/Check.mjs +17 -95
  290. package/src/decorators/orm/ChildEntity.cjs +17 -95
  291. package/src/decorators/orm/ChildEntity.mjs +17 -95
  292. package/src/decorators/orm/Column.cjs +17 -95
  293. package/src/decorators/orm/Column.mjs +17 -95
  294. package/src/decorators/orm/CreateDateColumn.cjs +17 -95
  295. package/src/decorators/orm/CreateDateColumn.mjs +17 -95
  296. package/src/decorators/orm/DeleteDateColumn.cjs +17 -95
  297. package/src/decorators/orm/DeleteDateColumn.mjs +17 -95
  298. package/src/decorators/orm/Entity.cjs +17 -95
  299. package/src/decorators/orm/Entity.mjs +17 -95
  300. package/src/decorators/orm/EventSubscriber.cjs +17 -95
  301. package/src/decorators/orm/EventSubscriber.mjs +17 -95
  302. package/src/decorators/orm/Exclusion.cjs +17 -95
  303. package/src/decorators/orm/Exclusion.mjs +17 -95
  304. package/src/decorators/orm/Generated.cjs +17 -95
  305. package/src/decorators/orm/Generated.mjs +17 -95
  306. package/src/decorators/orm/Index.cjs +17 -95
  307. package/src/decorators/orm/Index.mjs +17 -95
  308. package/src/decorators/orm/JoinColumn.cjs +17 -95
  309. package/src/decorators/orm/JoinColumn.mjs +17 -95
  310. package/src/decorators/orm/JoinTable.cjs +17 -95
  311. package/src/decorators/orm/JoinTable.mjs +17 -95
  312. package/src/decorators/orm/ManyToMany.cjs +17 -95
  313. package/src/decorators/orm/ManyToMany.mjs +17 -95
  314. package/src/decorators/orm/ManyToOne.cjs +17 -95
  315. package/src/decorators/orm/ManyToOne.mjs +17 -95
  316. package/src/decorators/orm/ObjectIdColumn.cjs +17 -95
  317. package/src/decorators/orm/ObjectIdColumn.mjs +17 -95
  318. package/src/decorators/orm/OneToMany.cjs +17 -95
  319. package/src/decorators/orm/OneToMany.mjs +17 -95
  320. package/src/decorators/orm/OneToOne.cjs +17 -95
  321. package/src/decorators/orm/OneToOne.mjs +17 -95
  322. package/src/decorators/orm/PrimaryColumn.cjs +17 -95
  323. package/src/decorators/orm/PrimaryColumn.mjs +17 -95
  324. package/src/decorators/orm/PrimaryGeneratedColumn.cjs +17 -95
  325. package/src/decorators/orm/PrimaryGeneratedColumn.mjs +17 -95
  326. package/src/decorators/orm/RelationId.cjs +17 -95
  327. package/src/decorators/orm/RelationId.mjs +17 -95
  328. package/src/decorators/orm/TableInheritance.cjs +17 -95
  329. package/src/decorators/orm/TableInheritance.mjs +17 -95
  330. package/src/decorators/orm/Tree.cjs +17 -95
  331. package/src/decorators/orm/Tree.mjs +17 -95
  332. package/src/decorators/orm/TreeChildren.cjs +17 -95
  333. package/src/decorators/orm/TreeChildren.mjs +17 -95
  334. package/src/decorators/orm/TreeLevelColumn.cjs +17 -95
  335. package/src/decorators/orm/TreeLevelColumn.mjs +17 -95
  336. package/src/decorators/orm/TreeParent.cjs +17 -95
  337. package/src/decorators/orm/TreeParent.mjs +17 -95
  338. package/src/decorators/orm/Unique.cjs +17 -95
  339. package/src/decorators/orm/Unique.mjs +17 -95
  340. package/src/decorators/orm/UpdateDateColumn.cjs +17 -95
  341. package/src/decorators/orm/UpdateDateColumn.mjs +17 -95
  342. package/src/decorators/orm/VersionColumn.cjs +17 -95
  343. package/src/decorators/orm/VersionColumn.mjs +17 -95
  344. package/src/decorators/orm/ViewColumn.cjs +17 -95
  345. package/src/decorators/orm/ViewColumn.mjs +17 -95
  346. package/src/decorators/orm/ViewEntity.cjs +17 -95
  347. package/src/decorators/orm/ViewEntity.mjs +17 -95
  348. package/src/decorators/orm/VirtualColumn.cjs +17 -95
  349. package/src/decorators/orm/VirtualColumn.mjs +17 -95
  350. package/src/dto/PaginationResultDTO.cjs +9 -39
  351. package/src/dto/PaginationResultDTO.mjs +18 -48
  352. package/src/dto/PaginationSearchDTO.cjs +9 -39
  353. package/src/dto/PaginationSearchDTO.mjs +13 -43
  354. package/src/exceptions/DestroyRuntimeContainerException.cjs +4 -6
  355. package/src/exceptions/DestroyRuntimeContainerException.mjs +4 -6
  356. package/src/exceptions/InvalidActionPatternDepthException.cjs +4 -6
  357. package/src/exceptions/InvalidActionPatternDepthException.mjs +4 -6
  358. package/src/exceptions/InvalidAssistantFunctionTypeException.cjs +4 -6
  359. package/src/exceptions/InvalidAssistantFunctionTypeException.mjs +4 -6
  360. package/src/exceptions/InvalidObjectTypeException.cjs +4 -6
  361. package/src/exceptions/InvalidObjectTypeException.mjs +4 -6
  362. package/src/exceptions/MethodNotFoundException.cjs +4 -6
  363. package/src/exceptions/MethodNotFoundException.mjs +4 -6
  364. package/src/exceptions/alias/AliasExistsException.cjs +4 -6
  365. package/src/exceptions/alias/AliasExistsException.mjs +6 -8
  366. package/src/exceptions/alias/AliasNotFoundException.cjs +4 -6
  367. package/src/exceptions/alias/AliasNotFoundException.mjs +4 -6
  368. package/src/exceptions/alias/InvalidAliasNameException.cjs +4 -6
  369. package/src/exceptions/alias/InvalidAliasNameException.mjs +4 -6
  370. package/src/exceptions/di/DependencyInjectionException.cjs +4 -6
  371. package/src/exceptions/di/DependencyInjectionException.mjs +4 -6
  372. package/src/exceptions/di/LifetimeLockedException.cjs +4 -6
  373. package/src/exceptions/di/LifetimeLockedException.mjs +4 -6
  374. package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs +4 -6
  375. package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.mjs +4 -6
  376. package/src/exceptions/dto/InvalidMethodAcceptException.cjs +4 -6
  377. package/src/exceptions/dto/InvalidMethodAcceptException.mjs +4 -6
  378. package/src/exceptions/dto/InvalidMethodReturnException.cjs +4 -6
  379. package/src/exceptions/dto/InvalidMethodReturnException.mjs +4 -6
  380. package/src/exceptions/dto/InvalidValueException.cjs +4 -6
  381. package/src/exceptions/dto/InvalidValueException.mjs +4 -6
  382. package/src/interfaces/IBaseObjectConstructor.cjs +1 -1
  383. package/src/interfaces/IBaseObjectConstructor.mjs +1 -1
  384. package/src/interfaces/IConstructor.cjs +1 -1
  385. package/src/interfaces/IConstructor.mjs +1 -1
  386. package/src/interfaces/IPatRun.cjs +1 -1
  387. package/src/interfaces/IPatRun.mjs +1 -1
  388. package/src/lib/base/BaseObject.cjs +51 -259
  389. package/src/lib/base/BaseObject.mjs +41 -256
  390. package/src/lib/base/Context.cjs +11 -41
  391. package/src/lib/base/Context.mjs +23 -53
  392. package/src/lib/base/EventEmitter.cjs +1398 -47
  393. package/src/lib/base/EventEmitter.mjs +1397 -46
  394. package/src/lib/base/abstracts/Exception.cjs +12 -14
  395. package/src/lib/base/abstracts/Exception.mjs +4 -6
  396. package/src/lib/base/async-constructor/Append.cjs +1 -1
  397. package/src/lib/base/async-constructor/Append.mjs +1 -1
  398. package/src/lib/base/async-constructor/AsyncConstructor.cjs +1 -1
  399. package/src/lib/base/async-constructor/AsyncConstructor.mjs +1 -1
  400. package/src/lib/base/internal/ActionOptions.cjs +9 -39
  401. package/src/lib/base/internal/ActionOptions.mjs +9 -39
  402. package/src/lib/base/internal/ApplicationConfigLoader.cjs +54 -116
  403. package/src/lib/base/internal/ApplicationConfigLoader.mjs +54 -116
  404. package/src/lib/base/internal/BasicInfo.cjs +13 -15
  405. package/src/lib/base/internal/BasicInfo.mjs +15 -17
  406. package/src/lib/base/internal/CamelCase.cjs +1 -1
  407. package/src/lib/base/internal/CamelCase.mjs +1 -1
  408. package/src/lib/base/internal/ConfigurableRecordsInjection.cjs +3 -3
  409. package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +3 -3
  410. package/src/lib/base/internal/ConstructorSymbol.cjs +3 -3
  411. package/src/lib/base/internal/ConstructorSymbol.mjs +3 -3
  412. package/src/lib/base/internal/ControllerEntrypoint.cjs +16 -24
  413. package/src/lib/base/internal/ControllerEntrypoint.mjs +39 -47
  414. package/src/lib/base/internal/DataValidator.cjs +203 -27
  415. package/src/lib/base/internal/DataValidator.mjs +203 -27
  416. package/src/lib/base/internal/DatabaseSymbol.cjs +1 -1
  417. package/src/lib/base/internal/DatabaseSymbol.mjs +1 -1
  418. package/src/lib/base/internal/FlexibleDTO.cjs +11 -41
  419. package/src/lib/base/internal/FlexibleDTO.mjs +13 -43
  420. package/src/lib/base/internal/GetActionDTOAndOptions.cjs +21 -51
  421. package/src/lib/base/internal/GetActionDTOAndOptions.mjs +23 -53
  422. package/src/lib/base/internal/IEEE754.cjs +1 -1
  423. package/src/lib/base/internal/IEEE754.mjs +1 -1
  424. package/src/lib/base/internal/MethodAssistantFunction.cjs +15 -17
  425. package/src/lib/base/internal/MethodAssistantFunction.mjs +8 -10
  426. package/src/lib/base/internal/MethodValidation.cjs +55 -85
  427. package/src/lib/base/internal/MethodValidation.mjs +42 -72
  428. package/src/lib/base/internal/ModuleConfigLoader.cjs +81 -143
  429. package/src/lib/base/internal/ModuleConfigLoader.mjs +76 -138
  430. package/src/lib/base/internal/ObjectConfiguration.cjs +26 -56
  431. package/src/lib/base/internal/ObjectConfiguration.mjs +25 -55
  432. package/src/lib/base/internal/ObjectContainer.cjs +3 -3
  433. package/src/lib/base/internal/ObjectContainer.mjs +3 -3
  434. package/src/lib/base/internal/ObjectInjection.cjs +3 -3
  435. package/src/lib/base/internal/ObjectInjection.mjs +3 -3
  436. package/src/lib/base/internal/ObjectLifetime.cjs +5 -7
  437. package/src/lib/base/internal/ObjectLifetime.mjs +12 -14
  438. package/src/lib/base/internal/ObjectSchemaValidation.cjs +23 -121
  439. package/src/lib/base/internal/ObjectSchemaValidation.mjs +14 -114
  440. package/src/lib/base/internal/ObjectType.cjs +27 -119
  441. package/src/lib/base/internal/ObjectType.mjs +20 -119
  442. package/src/lib/base/internal/ObjectWeakRefs.cjs +1 -1
  443. package/src/lib/base/internal/ObjectWeakRefs.mjs +1 -1
  444. package/src/lib/base/internal/PatternManager.cjs +831 -7
  445. package/src/lib/base/internal/PatternManager.mjs +835 -11
  446. package/src/lib/base/internal/StringifyPattern.cjs +5 -9
  447. package/src/lib/base/internal/StringifyPattern.mjs +5 -9
  448. package/src/lib/base/internal/ThrowWarning.cjs +1 -1
  449. package/src/lib/base/internal/ThrowWarning.mjs +1 -1
  450. package/src/lib/context/CLIContext.cjs +12 -42
  451. package/src/lib/context/CLIContext.mjs +15 -45
  452. package/src/lib/context/HTTPContext.cjs +15 -45
  453. package/src/lib/context/HTTPContext.mjs +14 -44
  454. package/src/lib/context/ServiceContext.cjs +12 -42
  455. package/src/lib/context/ServiceContext.mjs +18 -48
  456. package/src/lib/core/Alias.cjs +46 -48
  457. package/src/lib/core/Alias.mjs +24 -26
  458. package/src/lib/core/Application.cjs +486 -351
  459. package/src/lib/core/Application.mjs +531 -400
  460. package/src/lib/core/Component.cjs +24 -88
  461. package/src/lib/core/Component.mjs +28 -92
  462. package/src/lib/core/Container.cjs +50 -326
  463. package/src/lib/core/Container.mjs +45 -323
  464. package/src/lib/core/DTO.cjs +16 -194
  465. package/src/lib/core/DTO.mjs +12 -197
  466. package/src/lib/core/Module.cjs +39 -107
  467. package/src/lib/core/Module.mjs +53 -121
  468. package/src/lib/core/Provider.cjs +19 -81
  469. package/src/lib/core/Provider.mjs +25 -87
  470. package/src/lib/core/Time.cjs +52 -45
  471. package/src/lib/core/Time.mjs +52 -45
  472. package/src/lib/helpers/ArrayToSet.cjs +1 -1
  473. package/src/lib/helpers/ArrayToSet.mjs +1 -1
  474. package/src/lib/helpers/As.cjs +1 -1
  475. package/src/lib/helpers/As.mjs +1 -1
  476. package/src/lib/helpers/ConvertArrayLikeToIterable.cjs +1 -1
  477. package/src/lib/helpers/ConvertArrayLikeToIterable.mjs +1 -1
  478. package/src/lib/helpers/ConvertArrayLikeToStream.cjs +1 -1
  479. package/src/lib/helpers/ConvertArrayLikeToStream.mjs +1 -1
  480. package/src/lib/helpers/Delay.cjs +1 -1
  481. package/src/lib/helpers/Delay.mjs +1 -1
  482. package/src/lib/helpers/DevNull.cjs +1 -1
  483. package/src/lib/helpers/DevNull.mjs +1 -1
  484. package/src/lib/helpers/GetObjectNestingDepth.cjs +1 -1
  485. package/src/lib/helpers/GetObjectNestingDepth.mjs +1 -1
  486. package/src/lib/helpers/GetObjectPropertyPaths.cjs +1 -1
  487. package/src/lib/helpers/GetObjectPropertyPaths.mjs +1 -1
  488. package/src/lib/helpers/Glob.cjs +5502 -17
  489. package/src/lib/helpers/Glob.mjs +5472 -17
  490. package/src/lib/helpers/GraceExit.cjs +1 -1
  491. package/src/lib/helpers/GraceExit.mjs +1 -1
  492. package/src/lib/helpers/HexToIEEE754.cjs +1 -1
  493. package/src/lib/helpers/HexToIEEE754.mjs +1 -1
  494. package/src/lib/helpers/HexToSigned.cjs +1 -1
  495. package/src/lib/helpers/HexToSigned.mjs +1 -1
  496. package/src/lib/helpers/HexToUnsigned.cjs +1 -1
  497. package/src/lib/helpers/HexToUnsigned.mjs +1 -1
  498. package/src/lib/helpers/IEEE754ToHex.cjs +1 -1
  499. package/src/lib/helpers/IEEE754ToHex.mjs +1 -1
  500. package/src/lib/helpers/IPToolkit.cjs +1 -1
  501. package/src/lib/helpers/IPToolkit.mjs +1 -1
  502. package/src/lib/helpers/IsAbortError.cjs +1 -1
  503. package/src/lib/helpers/IsAbortError.mjs +1 -1
  504. package/src/lib/helpers/IsEmptyObject.cjs +1 -1
  505. package/src/lib/helpers/IsEmptyObject.mjs +1 -1
  506. package/src/lib/helpers/IsExists.cjs +1 -1
  507. package/src/lib/helpers/IsExists.mjs +1 -1
  508. package/src/lib/helpers/IsGlobString.cjs +4 -10
  509. package/src/lib/helpers/IsGlobString.mjs +3 -11
  510. package/src/lib/helpers/IsHtml.cjs +5 -5
  511. package/src/lib/helpers/IsHtml.mjs +6 -6
  512. package/src/lib/helpers/IsNativeFunction.cjs +1 -1
  513. package/src/lib/helpers/IsNativeFunction.mjs +1 -1
  514. package/src/lib/helpers/IsPath.cjs +1 -1
  515. package/src/lib/helpers/IsPath.mjs +1 -1
  516. package/src/lib/helpers/IsPromise.cjs +1 -1
  517. package/src/lib/helpers/IsPromise.mjs +1 -1
  518. package/src/lib/helpers/IsPromiseLike.cjs +1 -1
  519. package/src/lib/helpers/IsPromiseLike.mjs +1 -1
  520. package/src/lib/helpers/IsSymbol.cjs +10 -44
  521. package/src/lib/helpers/IsSymbol.mjs +9 -45
  522. package/src/lib/helpers/IsXML.cjs +1711 -6
  523. package/src/lib/helpers/IsXML.mjs +1712 -7
  524. package/src/lib/helpers/MD5.cjs +4 -4
  525. package/src/lib/helpers/MD5.mjs +4 -4
  526. package/src/lib/helpers/MergeArray.cjs +1 -1
  527. package/src/lib/helpers/MergeArray.mjs +1 -1
  528. package/src/lib/helpers/MergeMap.cjs +1 -1
  529. package/src/lib/helpers/MergeMap.mjs +1 -1
  530. package/src/lib/helpers/MergeSet.cjs +1 -1
  531. package/src/lib/helpers/MergeSet.mjs +1 -1
  532. package/src/lib/helpers/NoCase.cjs +1 -1
  533. package/src/lib/helpers/NoCase.mjs +1 -1
  534. package/src/lib/helpers/NonceStr.cjs +2 -6
  535. package/src/lib/helpers/NonceStr.mjs +4 -8
  536. package/src/lib/helpers/ObjectConstructor.cjs +1 -1
  537. package/src/lib/helpers/ObjectConstructor.mjs +1 -1
  538. package/src/lib/helpers/ObjectHash.cjs +405 -7
  539. package/src/lib/helpers/ObjectHash.mjs +399 -7
  540. package/src/lib/helpers/ObjectParentConstructor.cjs +1 -1
  541. package/src/lib/helpers/ObjectParentConstructor.mjs +1 -1
  542. package/src/lib/helpers/ObjectParentConstructors.cjs +1 -1
  543. package/src/lib/helpers/ObjectParentConstructors.mjs +1 -1
  544. package/src/lib/helpers/ObjectPath.cjs +1 -1
  545. package/src/lib/helpers/ObjectPath.mjs +1 -1
  546. package/src/lib/helpers/ObjectPrototype.cjs +1 -1
  547. package/src/lib/helpers/ObjectPrototype.mjs +1 -1
  548. package/src/lib/helpers/ObjectToMap.cjs +1 -1
  549. package/src/lib/helpers/ObjectToMap.mjs +1 -1
  550. package/src/lib/helpers/Paginator.cjs +1 -1
  551. package/src/lib/helpers/Paginator.mjs +1 -1
  552. package/src/lib/helpers/RandomString.cjs +172 -11
  553. package/src/lib/helpers/RandomString.mjs +166 -11
  554. package/src/lib/helpers/SHA1.cjs +4 -4
  555. package/src/lib/helpers/SHA1.mjs +4 -4
  556. package/src/lib/helpers/SHA256.cjs +4 -4
  557. package/src/lib/helpers/SHA256.mjs +4 -4
  558. package/src/lib/helpers/SetToArray.cjs +1 -1
  559. package/src/lib/helpers/SetToArray.mjs +1 -1
  560. package/src/lib/helpers/SignedToHex.cjs +1 -1
  561. package/src/lib/helpers/SignedToHex.mjs +1 -1
  562. package/src/lib/helpers/SortArray.cjs +2 -6
  563. package/src/lib/helpers/SortArray.mjs +7 -11
  564. package/src/lib/helpers/SortKeys.cjs +1 -1
  565. package/src/lib/helpers/SortKeys.mjs +1 -1
  566. package/src/lib/helpers/SortObject.cjs +1 -1
  567. package/src/lib/helpers/SortObject.mjs +1 -1
  568. package/src/lib/helpers/Statistics.cjs +2 -2
  569. package/src/lib/helpers/Statistics.mjs +2 -2
  570. package/src/lib/helpers/Templating.cjs +1 -1
  571. package/src/lib/helpers/Templating.mjs +1 -1
  572. package/src/lib/helpers/URLBuilder.cjs +417 -38
  573. package/src/lib/helpers/URLBuilder.mjs +417 -38
  574. package/src/lib/helpers/UUID.cjs +340 -22
  575. package/src/lib/helpers/UUID.mjs +340 -22
  576. package/src/lib/helpers/UniqueArray.cjs +1 -1
  577. package/src/lib/helpers/UniqueArray.mjs +1 -1
  578. package/src/lib/helpers/UnsignedToHex.cjs +1 -1
  579. package/src/lib/helpers/UnsignedToHex.mjs +1 -1
  580. package/src/lib/ioc/DependencyInjectionContainer.cjs +145 -197
  581. package/src/lib/ioc/DependencyInjectionContainer.mjs +102 -154
  582. package/src/lib/ioc/Errors.cjs +27 -57
  583. package/src/lib/ioc/Errors.mjs +25 -55
  584. package/src/lib/ioc/FunctionTokenizer.cjs +1 -1
  585. package/src/lib/ioc/FunctionTokenizer.mjs +1 -1
  586. package/src/lib/ioc/InjectionMode.cjs +1 -1
  587. package/src/lib/ioc/InjectionMode.mjs +1 -1
  588. package/src/lib/ioc/Lifetime.cjs +1 -1
  589. package/src/lib/ioc/Lifetime.mjs +1 -1
  590. package/src/lib/ioc/ListModules.cjs +5811 -99
  591. package/src/lib/ioc/ListModules.mjs +5779 -79
  592. package/src/lib/ioc/LoadModules.cjs +63 -93
  593. package/src/lib/ioc/LoadModules.mjs +65 -95
  594. package/src/lib/ioc/ParamParser.cjs +1 -1
  595. package/src/lib/ioc/ParamParser.mjs +1 -1
  596. package/src/lib/ioc/Resolvers.cjs +42 -72
  597. package/src/lib/ioc/Resolvers.mjs +44 -74
  598. package/src/lib/ioc/Utils.cjs +28 -58
  599. package/src/lib/ioc/Utils.mjs +34 -64
  600. package/src/lib/validation/VLD.cjs +11342 -98
  601. package/src/lib/validation/VLD.mjs +11298 -80
  602. package/src/lib/validation/interfaces/AlternativesSchema.cjs +1 -1
  603. package/src/lib/validation/interfaces/AlternativesSchema.mjs +1 -1
  604. package/src/lib/validation/interfaces/AnySchema.cjs +1 -1
  605. package/src/lib/validation/interfaces/AnySchema.mjs +1 -1
  606. package/src/lib/validation/interfaces/ArraySchema.cjs +1 -1
  607. package/src/lib/validation/interfaces/ArraySchema.mjs +1 -1
  608. package/src/lib/validation/interfaces/Base64Options.cjs +1 -1
  609. package/src/lib/validation/interfaces/Base64Options.mjs +1 -1
  610. package/src/lib/validation/interfaces/BaseValidationOptions.cjs +1 -1
  611. package/src/lib/validation/interfaces/BaseValidationOptions.mjs +1 -1
  612. package/src/lib/validation/interfaces/BigIntSchema.cjs +1 -1
  613. package/src/lib/validation/interfaces/BigIntSchema.mjs +1 -1
  614. package/src/lib/validation/interfaces/BinarySchema.cjs +1 -1
  615. package/src/lib/validation/interfaces/BinarySchema.mjs +1 -1
  616. package/src/lib/validation/interfaces/BooleanSchema.cjs +1 -1
  617. package/src/lib/validation/interfaces/BooleanSchema.mjs +1 -1
  618. package/src/lib/validation/interfaces/CustomHelpers.cjs +1 -1
  619. package/src/lib/validation/interfaces/CustomHelpers.mjs +1 -1
  620. package/src/lib/validation/interfaces/DataUriOptions.cjs +1 -1
  621. package/src/lib/validation/interfaces/DataUriOptions.mjs +1 -1
  622. package/src/lib/validation/interfaces/DateSchema.cjs +1 -1
  623. package/src/lib/validation/interfaces/DateSchema.mjs +1 -1
  624. package/src/lib/validation/interfaces/DependencyOptions.cjs +1 -1
  625. package/src/lib/validation/interfaces/DependencyOptions.mjs +1 -1
  626. package/src/lib/validation/interfaces/DomainOptions.cjs +1 -1
  627. package/src/lib/validation/interfaces/DomainOptions.mjs +1 -1
  628. package/src/lib/validation/interfaces/EmailOptions.cjs +1 -1
  629. package/src/lib/validation/interfaces/EmailOptions.mjs +1 -1
  630. package/src/lib/validation/interfaces/ErrorFormattingOptions.cjs +1 -1
  631. package/src/lib/validation/interfaces/ErrorFormattingOptions.mjs +1 -1
  632. package/src/lib/validation/interfaces/ErrorReport.cjs +1 -1
  633. package/src/lib/validation/interfaces/ErrorReport.mjs +1 -1
  634. package/src/lib/validation/interfaces/ErrorValidationOptions.cjs +1 -1
  635. package/src/lib/validation/interfaces/ErrorValidationOptions.mjs +1 -1
  636. package/src/lib/validation/interfaces/ExtensionFlag.cjs +1 -1
  637. package/src/lib/validation/interfaces/ExtensionFlag.mjs +1 -1
  638. package/src/lib/validation/interfaces/ExternalHelpers.cjs +1 -1
  639. package/src/lib/validation/interfaces/ExternalHelpers.mjs +1 -1
  640. package/src/lib/validation/interfaces/FunctionSchema.cjs +1 -1
  641. package/src/lib/validation/interfaces/FunctionSchema.mjs +1 -1
  642. package/src/lib/validation/interfaces/GuidOptions.cjs +1 -1
  643. package/src/lib/validation/interfaces/GuidOptions.mjs +1 -1
  644. package/src/lib/validation/interfaces/HexOptions.cjs +1 -1
  645. package/src/lib/validation/interfaces/HexOptions.mjs +1 -1
  646. package/src/lib/validation/interfaces/HierarchySeparatorOptions.cjs +1 -1
  647. package/src/lib/validation/interfaces/HierarchySeparatorOptions.mjs +1 -1
  648. package/src/lib/validation/interfaces/IpOptions.cjs +1 -1
  649. package/src/lib/validation/interfaces/IpOptions.mjs +1 -1
  650. package/src/lib/validation/interfaces/LanguageMessageTemplate.cjs +1 -1
  651. package/src/lib/validation/interfaces/LanguageMessageTemplate.mjs +1 -1
  652. package/src/lib/validation/interfaces/LinkSchema.cjs +1 -1
  653. package/src/lib/validation/interfaces/LinkSchema.mjs +1 -1
  654. package/src/lib/validation/interfaces/NumberSchema.cjs +1 -1
  655. package/src/lib/validation/interfaces/NumberSchema.mjs +1 -1
  656. package/src/lib/validation/interfaces/ObjectPatternOptions.cjs +1 -1
  657. package/src/lib/validation/interfaces/ObjectPatternOptions.mjs +1 -1
  658. package/src/lib/validation/interfaces/ObjectSchema.cjs +1 -1
  659. package/src/lib/validation/interfaces/ObjectSchema.mjs +1 -1
  660. package/src/lib/validation/interfaces/Reference.cjs +1 -1
  661. package/src/lib/validation/interfaces/Reference.mjs +1 -1
  662. package/src/lib/validation/interfaces/ReferenceOptions.cjs +1 -1
  663. package/src/lib/validation/interfaces/ReferenceOptions.mjs +1 -1
  664. package/src/lib/validation/interfaces/RenameOptions.cjs +1 -1
  665. package/src/lib/validation/interfaces/RenameOptions.mjs +1 -1
  666. package/src/lib/validation/interfaces/State.cjs +1 -1
  667. package/src/lib/validation/interfaces/State.mjs +1 -1
  668. package/src/lib/validation/interfaces/StringRegexOptions.cjs +1 -1
  669. package/src/lib/validation/interfaces/StringRegexOptions.mjs +1 -1
  670. package/src/lib/validation/interfaces/StringSchema.cjs +1 -1
  671. package/src/lib/validation/interfaces/StringSchema.mjs +1 -1
  672. package/src/lib/validation/interfaces/SwitchCases.cjs +1 -1
  673. package/src/lib/validation/interfaces/SwitchCases.mjs +1 -1
  674. package/src/lib/validation/interfaces/SwitchDefault.cjs +1 -1
  675. package/src/lib/validation/interfaces/SwitchDefault.mjs +1 -1
  676. package/src/lib/validation/interfaces/SymbolSchema.cjs +1 -1
  677. package/src/lib/validation/interfaces/SymbolSchema.mjs +1 -1
  678. package/src/lib/validation/interfaces/TopLevelDomainOptions.cjs +1 -1
  679. package/src/lib/validation/interfaces/TopLevelDomainOptions.mjs +1 -1
  680. package/src/lib/validation/interfaces/UriOptions.cjs +1 -1
  681. package/src/lib/validation/interfaces/UriOptions.mjs +1 -1
  682. package/src/lib/validation/interfaces/ValidationOptions.cjs +1 -1
  683. package/src/lib/validation/interfaces/ValidationOptions.mjs +1 -1
  684. package/src/lib/validation/interfaces/WhenOptions.cjs +1 -1
  685. package/src/lib/validation/interfaces/WhenOptions.mjs +1 -1
  686. package/src/lib/validation/interfaces/WhenSchemaOptions.cjs +1 -1
  687. package/src/lib/validation/interfaces/WhenSchemaOptions.mjs +1 -1
  688. package/src/lib/validation/types/CustomValidator.cjs +1 -1
  689. package/src/lib/validation/types/CustomValidator.mjs +1 -1
  690. package/src/lib/validation/types/ExtensionBoundSchema.cjs +1 -1
  691. package/src/lib/validation/types/ExtensionBoundSchema.mjs +1 -1
  692. package/src/lib/validation/types/ExternalValidationFunction.cjs +1 -1
  693. package/src/lib/validation/types/ExternalValidationFunction.mjs +1 -1
  694. package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.cjs +1 -1
  695. package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.mjs +1 -1
  696. package/src/lib/validation/types/IsPrimitiveSubset.cjs +1 -1
  697. package/src/lib/validation/types/IsPrimitiveSubset.mjs +1 -1
  698. package/src/lib/validation/types/IsUnion.cjs +1 -1
  699. package/src/lib/validation/types/IsUnion.mjs +1 -1
  700. package/src/lib/validation/types/LanguageMessages.cjs +1 -1
  701. package/src/lib/validation/types/LanguageMessages.mjs +1 -1
  702. package/src/lib/validation/types/NoNestedArrays.cjs +1 -1
  703. package/src/lib/validation/types/NoNestedArrays.mjs +1 -1
  704. package/src/lib/validation/types/NullableType.cjs +1 -1
  705. package/src/lib/validation/types/NullableType.mjs +1 -1
  706. package/src/lib/validation/types/ObjectPropertiesSchema.cjs +1 -1
  707. package/src/lib/validation/types/ObjectPropertiesSchema.mjs +1 -1
  708. package/src/lib/validation/types/PartialSchemaMap.cjs +1 -1
  709. package/src/lib/validation/types/PartialSchemaMap.mjs +1 -1
  710. package/src/lib/validation/types/PresenceMode.cjs +1 -1
  711. package/src/lib/validation/types/PresenceMode.mjs +1 -1
  712. package/src/lib/validation/types/Primitives.cjs +1 -1
  713. package/src/lib/validation/types/Primitives.mjs +1 -1
  714. package/src/lib/validation/types/Schema.cjs +1 -1
  715. package/src/lib/validation/types/Schema.mjs +1 -1
  716. package/src/lib/validation/types/SchemaFunction.cjs +1 -1
  717. package/src/lib/validation/types/SchemaFunction.mjs +1 -1
  718. package/src/lib/validation/types/SchemaLike.cjs +1 -1
  719. package/src/lib/validation/types/SchemaLike.mjs +1 -1
  720. package/src/lib/validation/types/SchemaLikeWithoutArray.cjs +1 -1
  721. package/src/lib/validation/types/SchemaLikeWithoutArray.mjs +1 -1
  722. package/src/lib/validation/types/SchemaMap.cjs +1 -1
  723. package/src/lib/validation/types/SchemaMap.mjs +1 -1
  724. package/src/lib/validation/types/StrictSchemaMap.cjs +1 -1
  725. package/src/lib/validation/types/StrictSchemaMap.mjs +1 -1
  726. package/src/lib/validation/types/Types.cjs +1 -1
  727. package/src/lib/validation/types/Types.mjs +1 -1
  728. package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.cjs +1 -1
  729. package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.mjs +1 -1
  730. package/src/options/ApplicationOptions.cjs +22 -84
  731. package/src/options/ApplicationOptions.mjs +25 -87
  732. package/src/options/LoadAnonymousObjectOptions.cjs +20 -82
  733. package/src/options/LoadAnonymousObjectOptions.mjs +22 -84
  734. package/src/options/LoadNamedObjectOptions.cjs +20 -82
  735. package/src/options/LoadNamedObjectOptions.mjs +22 -84
  736. package/src/options/LoadObjectOptions.cjs +23 -96
  737. package/src/options/LoadObjectOptions.mjs +18 -98
  738. package/src/options/ModuleLoadObjectsOptions.cjs +20 -82
  739. package/src/options/ModuleLoadObjectsOptions.mjs +20 -82
  740. package/src/options/ModuleOptions.cjs +26 -88
  741. package/src/options/ModuleOptions.mjs +25 -87
  742. package/src/options/OverridableNamedObjectOptions.cjs +20 -82
  743. package/src/options/OverridableNamedObjectOptions.mjs +23 -85
  744. package/src/options/OverridableObjectOptions.cjs +20 -82
  745. package/src/options/OverridableObjectOptions.mjs +22 -84
  746. package/src/providers/Database.cjs +41 -181
  747. package/src/providers/Database.mjs +74 -214
  748. package/src/providers/PasswordHash.cjs +541 -89
  749. package/src/providers/PasswordHash.mjs +535 -89
  750. package/src/providers/migration/GenerateMigration.cjs +37 -389
  751. package/src/providers/migration/GenerateMigration.mjs +33 -386
  752. package/src/types/ActionPattern.cjs +1 -1
  753. package/src/types/ActionPattern.mjs +1 -1
  754. package/src/types/ClassDecorator.cjs +1 -1
  755. package/src/types/ClassDecorator.mjs +1 -1
  756. package/src/types/ComponentOptions.cjs +1 -1
  757. package/src/types/ComponentOptions.mjs +1 -1
  758. package/src/types/JSONSchema.cjs +1 -1
  759. package/src/types/JSONSchema.mjs +1 -1
  760. package/src/types/MethodDecorator.cjs +1 -1
  761. package/src/types/MethodDecorator.mjs +1 -1
  762. package/src/types/ModuleOptions.cjs +1 -1
  763. package/src/types/ModuleOptions.mjs +1 -1
  764. package/src/types/ObjectOptions.cjs +1 -1
  765. package/src/types/ObjectOptions.mjs +1 -1
  766. package/src/types/ParameterDecorator.cjs +1 -1
  767. package/src/types/ParameterDecorator.mjs +1 -1
  768. package/src/types/PropertyDecorator.cjs +1 -1
  769. package/src/types/PropertyDecorator.mjs +1 -1
  770. package/src/types/ProviderOptions.cjs +1 -1
  771. package/src/types/ProviderOptions.mjs +1 -1
  772. package/vendor/Package.internal.1.cjs +938 -206
  773. package/vendor/Package.internal.1.mjs +938 -202
  774. package/vendor/Package.internal.10.cjs +17 -227
  775. package/vendor/Package.internal.10.mjs +18 -226
  776. package/vendor/Package.internal.11.cjs +15 -1608
  777. package/vendor/Package.internal.11.mjs +16 -1579
  778. package/vendor/Package.internal.12.cjs +13 -12547
  779. package/vendor/Package.internal.12.mjs +14 -12530
  780. package/vendor/Package.internal.13.cjs +22 -357
  781. package/vendor/Package.internal.13.mjs +23 -358
  782. package/vendor/Package.internal.14.cjs +17 -786
  783. package/vendor/Package.internal.14.mjs +18 -787
  784. package/vendor/Package.internal.15.cjs +18 -72
  785. package/vendor/Package.internal.15.mjs +19 -71
  786. package/vendor/Package.internal.16.cjs +13 -977
  787. package/vendor/Package.internal.16.mjs +14 -966
  788. package/vendor/Package.internal.17.cjs +19 -43
  789. package/vendor/Package.internal.17.mjs +20 -44
  790. package/vendor/Package.internal.18.cjs +16 -262
  791. package/vendor/Package.internal.18.mjs +17 -263
  792. package/vendor/Package.internal.19.cjs +16 -428
  793. package/vendor/Package.internal.19.mjs +17 -429
  794. package/vendor/Package.internal.2.cjs +29 -86
  795. package/vendor/Package.internal.2.mjs +30 -83
  796. package/vendor/Package.internal.20.cjs +18 -556
  797. package/vendor/Package.internal.20.mjs +19 -551
  798. package/vendor/Package.internal.21.cjs +19 -400
  799. package/vendor/Package.internal.21.mjs +20 -401
  800. package/vendor/Package.internal.22.cjs +56 -913
  801. package/vendor/Package.internal.22.mjs +57 -908
  802. package/vendor/Package.internal.23.cjs +15 -218
  803. package/vendor/Package.internal.23.mjs +17 -220
  804. package/vendor/Package.internal.24.cjs +16 -990
  805. package/vendor/Package.internal.24.mjs +17 -991
  806. package/vendor/Package.internal.25.cjs +32 -9
  807. package/vendor/Package.internal.25.mjs +33 -8
  808. package/vendor/Package.internal.26.cjs +15 -121
  809. package/vendor/Package.internal.26.mjs +16 -120
  810. package/vendor/Package.internal.27.cjs +18 -139
  811. package/vendor/Package.internal.27.mjs +19 -138
  812. package/vendor/Package.internal.28.cjs +21 -5
  813. package/vendor/Package.internal.28.mjs +22 -4
  814. package/vendor/Package.internal.29.cjs +36 -19
  815. package/vendor/Package.internal.29.mjs +37 -18
  816. package/vendor/Package.internal.3.cjs +532 -14232
  817. package/vendor/Package.internal.3.mjs +529 -14211
  818. package/vendor/Package.internal.30.cjs +22 -474
  819. package/vendor/Package.internal.30.mjs +23 -469
  820. package/vendor/Package.internal.31.cjs +21 -74
  821. package/vendor/Package.internal.31.mjs +24 -71
  822. package/vendor/Package.internal.310.cjs +10 -0
  823. package/vendor/Package.internal.310.mjs +8 -0
  824. package/vendor/Package.internal.32.cjs +40 -2
  825. package/vendor/Package.internal.32.mjs +42 -2
  826. package/vendor/Package.internal.33.cjs +34 -35
  827. package/vendor/Package.internal.33.mjs +35 -34
  828. package/vendor/Package.internal.34.cjs +20 -21
  829. package/vendor/Package.internal.34.mjs +21 -20
  830. package/vendor/Package.internal.35.cjs +29 -10
  831. package/vendor/Package.internal.35.mjs +30 -9
  832. package/vendor/Package.internal.36.cjs +39 -188
  833. package/vendor/Package.internal.36.mjs +42 -191
  834. package/vendor/Package.internal.37.cjs +43 -59
  835. package/vendor/Package.internal.37.mjs +46 -60
  836. package/vendor/Package.internal.38.cjs +43 -158
  837. package/vendor/Package.internal.38.mjs +44 -159
  838. package/vendor/Package.internal.39.cjs +19 -2070
  839. package/vendor/Package.internal.39.mjs +20 -2065
  840. package/vendor/Package.internal.4.cjs +463 -961
  841. package/vendor/Package.internal.4.mjs +444 -960
  842. package/vendor/Package.internal.40.cjs +16 -512
  843. package/vendor/Package.internal.40.mjs +17 -505
  844. package/vendor/Package.internal.41.cjs +15 -412
  845. package/vendor/Package.internal.41.mjs +16 -407
  846. package/vendor/Package.internal.42.cjs +21 -2356
  847. package/vendor/Package.internal.42.mjs +22 -2345
  848. package/vendor/Package.internal.43.cjs +17 -56
  849. package/vendor/Package.internal.43.mjs +18 -63
  850. package/vendor/Package.internal.44.cjs +25 -146
  851. package/vendor/Package.internal.44.mjs +26 -145
  852. package/vendor/Package.internal.45.cjs +31 -626
  853. package/vendor/Package.internal.45.mjs +33 -628
  854. package/vendor/Package.internal.46.cjs +16 -238
  855. package/vendor/Package.internal.46.mjs +17 -239
  856. package/vendor/Package.internal.47.cjs +16 -220
  857. package/vendor/Package.internal.47.mjs +17 -215
  858. package/vendor/Package.internal.48.cjs +23 -2
  859. package/vendor/Package.internal.48.mjs +25 -2
  860. package/vendor/Package.internal.49.cjs +24 -355
  861. package/vendor/Package.internal.49.mjs +27 -352
  862. package/vendor/Package.internal.5.cjs +4275 -340
  863. package/vendor/Package.internal.5.mjs +4274 -341
  864. package/vendor/Package.internal.50.cjs +30 -30
  865. package/vendor/Package.internal.50.mjs +32 -30
  866. package/vendor/Package.internal.51.cjs +48322 -38
  867. package/vendor/Package.internal.51.mjs +48282 -38
  868. package/vendor/Package.internal.510.cjs +154 -0
  869. package/vendor/Package.internal.510.mjs +142 -0
  870. package/vendor/Package.internal.511.cjs +168 -0
  871. package/vendor/Package.internal.511.mjs +156 -0
  872. package/vendor/Package.internal.512.cjs +6 -0
  873. package/vendor/Package.internal.512.mjs +6 -0
  874. package/vendor/Package.internal.513.cjs +192 -0
  875. package/vendor/Package.internal.513.mjs +180 -0
  876. package/vendor/Package.internal.52.cjs +676 -16
  877. package/vendor/Package.internal.52.mjs +672 -16
  878. package/vendor/{Package.internal.180.cjs → Package.internal.522.cjs} +1 -1
  879. package/vendor/{Package.internal.180.mjs → Package.internal.522.mjs} +2 -2
  880. package/vendor/Package.internal.53.cjs +7094 -63
  881. package/vendor/Package.internal.53.mjs +7067 -60
  882. package/vendor/Package.internal.54.cjs +183 -77
  883. package/vendor/Package.internal.54.mjs +184 -78
  884. package/vendor/Package.internal.542.cjs +171 -0
  885. package/vendor/Package.internal.542.mjs +153 -0
  886. package/vendor/Package.internal.55.cjs +3982 -56
  887. package/vendor/Package.internal.55.mjs +3995 -47
  888. package/vendor/Package.internal.552.cjs +49615 -0
  889. package/vendor/Package.internal.552.mjs +49572 -0
  890. package/vendor/Package.internal.56.cjs +838 -20
  891. package/vendor/Package.internal.56.mjs +839 -19
  892. package/vendor/Package.internal.57.cjs +14762 -322
  893. package/vendor/Package.internal.57.mjs +14740 -325
  894. package/vendor/Package.internal.58.cjs +136 -2
  895. package/vendor/Package.internal.58.mjs +126 -2
  896. package/vendor/Package.internal.59.cjs +323 -188
  897. package/vendor/Package.internal.59.mjs +319 -188
  898. package/vendor/Package.internal.6.cjs +4 -6109
  899. package/vendor/Package.internal.6.mjs +4 -6103
  900. package/vendor/Package.internal.7.cjs +6543 -494
  901. package/vendor/Package.internal.7.mjs +6531 -494
  902. package/vendor/Package.internal.8.cjs +152 -33
  903. package/vendor/Package.internal.8.mjs +152 -31
  904. package/vendor/Package.internal.9.cjs +16 -2160
  905. package/vendor/Package.internal.9.mjs +17 -2133
  906. package/vendor/TypeDef.internal.96.d.ts +28 -22
  907. package/vendor/Package.internal.100.cjs +0 -69
  908. package/vendor/Package.internal.100.mjs +0 -67
  909. package/vendor/Package.internal.101.cjs +0 -123
  910. package/vendor/Package.internal.101.mjs +0 -121
  911. package/vendor/Package.internal.102.cjs +0 -16
  912. package/vendor/Package.internal.102.mjs +0 -8
  913. package/vendor/Package.internal.103.cjs +0 -4
  914. package/vendor/Package.internal.103.mjs +0 -2
  915. package/vendor/Package.internal.104.cjs +0 -4
  916. package/vendor/Package.internal.104.mjs +0 -2
  917. package/vendor/Package.internal.105.cjs +0 -112
  918. package/vendor/Package.internal.105.mjs +0 -98
  919. package/vendor/Package.internal.106.cjs +0 -88
  920. package/vendor/Package.internal.106.mjs +0 -84
  921. package/vendor/Package.internal.107.cjs +0 -58
  922. package/vendor/Package.internal.107.mjs +0 -52
  923. package/vendor/Package.internal.108.cjs +0 -20
  924. package/vendor/Package.internal.108.mjs +0 -18
  925. package/vendor/Package.internal.109.cjs +0 -96
  926. package/vendor/Package.internal.109.mjs +0 -96
  927. package/vendor/Package.internal.110.cjs +0 -113
  928. package/vendor/Package.internal.110.mjs +0 -113
  929. package/vendor/Package.internal.111.cjs +0 -2176
  930. package/vendor/Package.internal.111.mjs +0 -2174
  931. package/vendor/Package.internal.112.cjs +0 -2466
  932. package/vendor/Package.internal.112.mjs +0 -2434
  933. package/vendor/Package.internal.113.cjs +0 -1306
  934. package/vendor/Package.internal.113.mjs +0 -1292
  935. package/vendor/Package.internal.114.cjs +0 -33
  936. package/vendor/Package.internal.114.mjs +0 -31
  937. package/vendor/Package.internal.115.cjs +0 -20
  938. package/vendor/Package.internal.115.mjs +0 -18
  939. package/vendor/Package.internal.116.cjs +0 -21
  940. package/vendor/Package.internal.116.mjs +0 -21
  941. package/vendor/Package.internal.117.cjs +0 -52
  942. package/vendor/Package.internal.117.mjs +0 -52
  943. package/vendor/Package.internal.118.cjs +0 -141
  944. package/vendor/Package.internal.118.mjs +0 -141
  945. package/vendor/Package.internal.119.cjs +0 -2
  946. package/vendor/Package.internal.119.mjs +0 -1
  947. package/vendor/Package.internal.120.cjs +0 -6
  948. package/vendor/Package.internal.120.mjs +0 -4
  949. package/vendor/Package.internal.121.cjs +0 -4
  950. package/vendor/Package.internal.121.mjs +0 -2
  951. package/vendor/Package.internal.122.cjs +0 -4
  952. package/vendor/Package.internal.122.mjs +0 -2
  953. package/vendor/Package.internal.123.cjs +0 -4
  954. package/vendor/Package.internal.123.mjs +0 -2
  955. package/vendor/Package.internal.124.cjs +0 -49
  956. package/vendor/Package.internal.124.mjs +0 -47
  957. package/vendor/Package.internal.125.cjs +0 -14
  958. package/vendor/Package.internal.125.mjs +0 -14
  959. package/vendor/Package.internal.126.cjs +0 -12
  960. package/vendor/Package.internal.126.mjs +0 -12
  961. package/vendor/Package.internal.127.cjs +0 -20
  962. package/vendor/Package.internal.127.mjs +0 -18
  963. package/vendor/Package.internal.128.cjs +0 -118
  964. package/vendor/Package.internal.128.mjs +0 -116
  965. package/vendor/Package.internal.129.cjs +0 -18
  966. package/vendor/Package.internal.129.mjs +0 -16
  967. package/vendor/Package.internal.130.cjs +0 -19
  968. package/vendor/Package.internal.130.mjs +0 -17
  969. package/vendor/Package.internal.131.cjs +0 -8876
  970. package/vendor/Package.internal.131.mjs +0 -8874
  971. package/vendor/Package.internal.132.cjs +0 -899
  972. package/vendor/Package.internal.132.mjs +0 -897
  973. package/vendor/Package.internal.133.cjs +0 -6769
  974. package/vendor/Package.internal.133.mjs +0 -6775
  975. package/vendor/Package.internal.134.cjs +0 -473
  976. package/vendor/Package.internal.134.mjs +0 -459
  977. package/vendor/Package.internal.135.cjs +0 -617
  978. package/vendor/Package.internal.135.mjs +0 -611
  979. package/vendor/Package.internal.136.cjs +0 -97
  980. package/vendor/Package.internal.136.mjs +0 -89
  981. package/vendor/Package.internal.137.cjs +0 -4
  982. package/vendor/Package.internal.137.mjs +0 -2
  983. package/vendor/Package.internal.138.cjs +0 -3753
  984. package/vendor/Package.internal.138.mjs +0 -3751
  985. package/vendor/Package.internal.139.cjs +0 -561
  986. package/vendor/Package.internal.139.mjs +0 -559
  987. package/vendor/Package.internal.140.cjs +0 -4
  988. package/vendor/Package.internal.140.mjs +0 -2
  989. package/vendor/Package.internal.141.cjs +0 -4
  990. package/vendor/Package.internal.141.mjs +0 -2
  991. package/vendor/Package.internal.142.cjs +0 -4
  992. package/vendor/Package.internal.142.mjs +0 -2
  993. package/vendor/Package.internal.143.cjs +0 -4
  994. package/vendor/Package.internal.143.mjs +0 -2
  995. package/vendor/Package.internal.144.cjs +0 -4
  996. package/vendor/Package.internal.144.mjs +0 -2
  997. package/vendor/Package.internal.145.cjs +0 -4
  998. package/vendor/Package.internal.145.mjs +0 -2
  999. package/vendor/Package.internal.146.cjs +0 -4
  1000. package/vendor/Package.internal.146.mjs +0 -2
  1001. package/vendor/Package.internal.147.cjs +0 -4
  1002. package/vendor/Package.internal.147.mjs +0 -2
  1003. package/vendor/Package.internal.148.cjs +0 -4
  1004. package/vendor/Package.internal.148.mjs +0 -2
  1005. package/vendor/Package.internal.149.cjs +0 -4
  1006. package/vendor/Package.internal.149.mjs +0 -2
  1007. package/vendor/Package.internal.150.cjs +0 -4
  1008. package/vendor/Package.internal.150.mjs +0 -2
  1009. package/vendor/Package.internal.151.cjs +0 -408
  1010. package/vendor/Package.internal.151.mjs +0 -400
  1011. package/vendor/Package.internal.152.cjs +0 -104
  1012. package/vendor/Package.internal.152.mjs +0 -104
  1013. package/vendor/Package.internal.153.cjs +0 -27
  1014. package/vendor/Package.internal.153.mjs +0 -27
  1015. package/vendor/Package.internal.154.cjs +0 -4
  1016. package/vendor/Package.internal.154.mjs +0 -2
  1017. package/vendor/Package.internal.155.cjs +0 -4
  1018. package/vendor/Package.internal.155.mjs +0 -2
  1019. package/vendor/Package.internal.156.cjs +0 -723
  1020. package/vendor/Package.internal.156.mjs +0 -723
  1021. package/vendor/Package.internal.157.cjs +0 -1548
  1022. package/vendor/Package.internal.157.mjs +0 -1540
  1023. package/vendor/Package.internal.158.cjs +0 -364
  1024. package/vendor/Package.internal.158.mjs +0 -364
  1025. package/vendor/Package.internal.159.cjs +0 -107
  1026. package/vendor/Package.internal.159.mjs +0 -107
  1027. package/vendor/Package.internal.160.cjs +0 -636
  1028. package/vendor/Package.internal.160.mjs +0 -622
  1029. package/vendor/Package.internal.161.cjs +0 -543
  1030. package/vendor/Package.internal.161.mjs +0 -533
  1031. package/vendor/Package.internal.162.cjs +0 -605
  1032. package/vendor/Package.internal.162.mjs +0 -605
  1033. package/vendor/Package.internal.163.cjs +0 -139
  1034. package/vendor/Package.internal.163.mjs +0 -131
  1035. package/vendor/Package.internal.164.cjs +0 -119
  1036. package/vendor/Package.internal.164.mjs +0 -111
  1037. package/vendor/Package.internal.165.cjs +0 -1224
  1038. package/vendor/Package.internal.165.mjs +0 -1214
  1039. package/vendor/Package.internal.166.cjs +0 -90
  1040. package/vendor/Package.internal.166.mjs +0 -98
  1041. package/vendor/Package.internal.167.cjs +0 -4
  1042. package/vendor/Package.internal.167.mjs +0 -2
  1043. package/vendor/Package.internal.168.cjs +0 -4
  1044. package/vendor/Package.internal.168.mjs +0 -2
  1045. package/vendor/Package.internal.169.cjs +0 -55
  1046. package/vendor/Package.internal.169.mjs +0 -55
  1047. package/vendor/Package.internal.170.cjs +0 -10
  1048. package/vendor/Package.internal.170.mjs +0 -10
  1049. package/vendor/Package.internal.171.cjs +0 -12
  1050. package/vendor/Package.internal.171.mjs +0 -6
  1051. package/vendor/Package.internal.172.cjs +0 -165
  1052. package/vendor/Package.internal.172.mjs +0 -163
  1053. package/vendor/Package.internal.173.cjs +0 -23
  1054. package/vendor/Package.internal.173.mjs +0 -15
  1055. package/vendor/Package.internal.174.cjs +0 -251
  1056. package/vendor/Package.internal.174.mjs +0 -249
  1057. package/vendor/Package.internal.175.cjs +0 -949
  1058. package/vendor/Package.internal.175.mjs +0 -947
  1059. package/vendor/Package.internal.176.cjs +0 -27
  1060. package/vendor/Package.internal.176.mjs +0 -27
  1061. package/vendor/Package.internal.177.cjs +0 -80
  1062. package/vendor/Package.internal.177.mjs +0 -72
  1063. package/vendor/Package.internal.178.cjs +0 -655
  1064. package/vendor/Package.internal.178.mjs +0 -653
  1065. package/vendor/Package.internal.179.cjs +0 -77
  1066. package/vendor/Package.internal.179.mjs +0 -75
  1067. package/vendor/Package.internal.181.cjs +0 -70
  1068. package/vendor/Package.internal.181.mjs +0 -68
  1069. package/vendor/Package.internal.182.cjs +0 -112
  1070. package/vendor/Package.internal.182.mjs +0 -110
  1071. package/vendor/Package.internal.183.cjs +0 -102
  1072. package/vendor/Package.internal.183.mjs +0 -100
  1073. package/vendor/Package.internal.184.cjs +0 -45450
  1074. package/vendor/Package.internal.184.mjs +0 -45432
  1075. package/vendor/Package.internal.185.cjs +0 -8
  1076. package/vendor/Package.internal.185.mjs +0 -6
  1077. package/vendor/Package.internal.186.cjs +0 -30
  1078. package/vendor/Package.internal.186.mjs +0 -28
  1079. package/vendor/Package.internal.187.cjs +0 -317
  1080. package/vendor/Package.internal.187.mjs +0 -315
  1081. package/vendor/Package.internal.188.cjs +0 -943
  1082. package/vendor/Package.internal.188.mjs +0 -951
  1083. package/vendor/Package.internal.189.cjs +0 -1090
  1084. package/vendor/Package.internal.189.mjs +0 -1090
  1085. package/vendor/Package.internal.190.cjs +0 -165
  1086. package/vendor/Package.internal.190.mjs +0 -165
  1087. package/vendor/Package.internal.191.cjs +0 -15
  1088. package/vendor/Package.internal.191.mjs +0 -13
  1089. package/vendor/Package.internal.192.cjs +0 -14
  1090. package/vendor/Package.internal.192.mjs +0 -12
  1091. package/vendor/Package.internal.193.cjs +0 -49
  1092. package/vendor/Package.internal.193.mjs +0 -47
  1093. package/vendor/Package.internal.194.cjs +0 -493
  1094. package/vendor/Package.internal.194.mjs +0 -471
  1095. package/vendor/Package.internal.195.cjs +0 -4
  1096. package/vendor/Package.internal.195.mjs +0 -2
  1097. package/vendor/Package.internal.196.cjs +0 -4
  1098. package/vendor/Package.internal.196.mjs +0 -2
  1099. package/vendor/Package.internal.197.cjs +0 -4
  1100. package/vendor/Package.internal.197.mjs +0 -2
  1101. package/vendor/Package.internal.198.cjs +0 -4
  1102. package/vendor/Package.internal.198.mjs +0 -2
  1103. package/vendor/Package.internal.199.cjs +0 -4
  1104. package/vendor/Package.internal.199.mjs +0 -2
  1105. package/vendor/Package.internal.200.cjs +0 -4
  1106. package/vendor/Package.internal.200.mjs +0 -2
  1107. package/vendor/Package.internal.201.cjs +0 -4
  1108. package/vendor/Package.internal.201.mjs +0 -2
  1109. package/vendor/Package.internal.202.cjs +0 -4
  1110. package/vendor/Package.internal.202.mjs +0 -2
  1111. package/vendor/Package.internal.60.cjs +0 -27
  1112. package/vendor/Package.internal.60.mjs +0 -27
  1113. package/vendor/Package.internal.61.cjs +0 -4
  1114. package/vendor/Package.internal.61.mjs +0 -2
  1115. package/vendor/Package.internal.62.cjs +0 -200
  1116. package/vendor/Package.internal.62.mjs +0 -200
  1117. package/vendor/Package.internal.63.cjs +0 -4019
  1118. package/vendor/Package.internal.63.mjs +0 -4027
  1119. package/vendor/Package.internal.64.cjs +0 -4
  1120. package/vendor/Package.internal.64.mjs +0 -2
  1121. package/vendor/Package.internal.65.cjs +0 -321
  1122. package/vendor/Package.internal.65.mjs +0 -321
  1123. package/vendor/Package.internal.66.cjs +0 -365
  1124. package/vendor/Package.internal.66.mjs +0 -363
  1125. package/vendor/Package.internal.67.cjs +0 -403
  1126. package/vendor/Package.internal.67.mjs +0 -395
  1127. package/vendor/Package.internal.68.cjs +0 -127
  1128. package/vendor/Package.internal.68.mjs +0 -125
  1129. package/vendor/Package.internal.69.cjs +0 -31
  1130. package/vendor/Package.internal.69.mjs +0 -29
  1131. package/vendor/Package.internal.70.cjs +0 -87
  1132. package/vendor/Package.internal.70.mjs +0 -85
  1133. package/vendor/Package.internal.71.cjs +0 -61
  1134. package/vendor/Package.internal.71.mjs +0 -59
  1135. package/vendor/Package.internal.72.cjs +0 -34
  1136. package/vendor/Package.internal.72.mjs +0 -32
  1137. package/vendor/Package.internal.73.cjs +0 -4
  1138. package/vendor/Package.internal.73.mjs +0 -2
  1139. package/vendor/Package.internal.74.cjs +0 -684
  1140. package/vendor/Package.internal.74.mjs +0 -662
  1141. package/vendor/Package.internal.75.cjs +0 -13896
  1142. package/vendor/Package.internal.75.mjs +0 -13870
  1143. package/vendor/Package.internal.76.cjs +0 -37
  1144. package/vendor/Package.internal.76.mjs +0 -31
  1145. package/vendor/Package.internal.77.cjs +0 -4077
  1146. package/vendor/Package.internal.77.mjs +0 -4077
  1147. package/vendor/Package.internal.78.cjs +0 -1664
  1148. package/vendor/Package.internal.78.mjs +0 -1664
  1149. package/vendor/Package.internal.79.cjs +0 -259
  1150. package/vendor/Package.internal.79.mjs +0 -257
  1151. package/vendor/Package.internal.80.cjs +0 -4964
  1152. package/vendor/Package.internal.80.mjs +0 -4948
  1153. package/vendor/Package.internal.81.cjs +0 -1239
  1154. package/vendor/Package.internal.81.mjs +0 -1225
  1155. package/vendor/Package.internal.82.cjs +0 -340
  1156. package/vendor/Package.internal.82.mjs +0 -326
  1157. package/vendor/Package.internal.83.cjs +0 -34
  1158. package/vendor/Package.internal.83.mjs +0 -32
  1159. package/vendor/Package.internal.84.cjs +0 -88
  1160. package/vendor/Package.internal.84.mjs +0 -88
  1161. package/vendor/Package.internal.85.cjs +0 -55
  1162. package/vendor/Package.internal.85.mjs +0 -55
  1163. package/vendor/Package.internal.86.cjs +0 -15
  1164. package/vendor/Package.internal.86.mjs +0 -13
  1165. package/vendor/Package.internal.87.cjs +0 -1355
  1166. package/vendor/Package.internal.87.mjs +0 -1355
  1167. package/vendor/Package.internal.88.cjs +0 -12
  1168. package/vendor/Package.internal.88.mjs +0 -6
  1169. package/vendor/Package.internal.89.cjs +0 -4
  1170. package/vendor/Package.internal.89.mjs +0 -2
  1171. package/vendor/Package.internal.90.cjs +0 -351
  1172. package/vendor/Package.internal.90.mjs +0 -351
  1173. package/vendor/Package.internal.91.cjs +0 -80
  1174. package/vendor/Package.internal.91.mjs +0 -80
  1175. package/vendor/Package.internal.92.cjs +0 -1445
  1176. package/vendor/Package.internal.92.mjs +0 -1433
  1177. package/vendor/Package.internal.93.cjs +0 -144
  1178. package/vendor/Package.internal.93.mjs +0 -142
  1179. package/vendor/Package.internal.94.cjs +0 -1822
  1180. package/vendor/Package.internal.94.mjs +0 -1814
  1181. package/vendor/Package.internal.95.cjs +0 -130
  1182. package/vendor/Package.internal.95.mjs +0 -124
  1183. package/vendor/Package.internal.96.cjs +0 -208
  1184. package/vendor/Package.internal.96.mjs +0 -208
  1185. package/vendor/Package.internal.97.cjs +0 -1641
  1186. package/vendor/Package.internal.97.mjs +0 -1641
  1187. package/vendor/Package.internal.98.cjs +0 -74
  1188. package/vendor/Package.internal.98.mjs +0 -74
  1189. package/vendor/Package.internal.99.cjs +0 -28
  1190. package/vendor/Package.internal.99.mjs +0 -28
@@ -1,316 +1,1963 @@
1
- /* Build Date: Mon Nov 24 2025 18:02:01 GMT+0800 (China Standard Time) */
2
- import { _ as t, a as e } from "../../../vendor/Package.internal.135.mjs";
1
+ /* Build Date: Wed Nov 26 2025 13:02:50 GMT+0800 (China Standard Time) */
2
+ import { _ as t, a as r } from "../../../vendor/Package.internal.3.mjs";
3
3
 
4
- import { Component as o } from "../../lib/core/Component.mjs";
4
+ import { Component as e } from "../../lib/core/Component.mjs";
5
5
 
6
- import { Configurable as r } from "../../decorators/di/Configurable.mjs";
6
+ import { Configurable as n } from "../../decorators/di/Configurable.mjs";
7
7
 
8
- import { BindControllerToComponent as i, GetComponentControllerActionMap as n } from "../../lib/base/internal/ControllerEntrypoint.mjs";
8
+ import { BindControllerToComponent as o, GetComponentControllerActionMap as a } from "../../lib/base/internal/ControllerEntrypoint.mjs";
9
9
 
10
- import { PatternManager as s } from "../../lib/base/internal/PatternManager.mjs";
10
+ import { PatternManager as i } from "../../lib/base/internal/PatternManager.mjs";
11
11
 
12
- import { Controller as a } from "./lib/Controller.mjs";
12
+ import { Controller as s } from "./lib/Controller.mjs";
13
13
 
14
14
  import { As as c } from "../../lib/helpers/As.mjs";
15
15
 
16
- import { ControllerActionNotFoundException as p } from "./exceptions/ControllerActionNotFoundException.mjs";
16
+ import { ControllerActionNotFoundException as u } from "./exceptions/ControllerActionNotFoundException.mjs";
17
17
 
18
- import { DestroyRuntimeContainerException as m } from "../../exceptions/DestroyRuntimeContainerException.mjs";
18
+ import { DestroyRuntimeContainerException as p } from "../../exceptions/DestroyRuntimeContainerException.mjs";
19
19
 
20
20
  import { GetObjectPropertyPaths as l } from "../../lib/helpers/GetObjectPropertyPaths.mjs";
21
21
 
22
- import { u as d } from "../../../vendor/Package.internal.193.mjs";
22
+ import { g as f, a as v, c as h } from "../../../vendor/Package.internal.2.mjs";
23
23
 
24
- import { UniqueArray as h } from "../../lib/helpers/UniqueArray.mjs";
24
+ import { UniqueArray as m } from "../../lib/helpers/UniqueArray.mjs";
25
25
 
26
- import { DTO as u } from "../../lib/core/DTO.mjs";
26
+ import { D as d } from "../../../vendor/Package.internal.7.mjs";
27
27
 
28
- import { Singleton as j } from "../../decorators/di/Lifetime.mjs";
28
+ import { Singleton as y } from "../../decorators/di/Lifetime.mjs";
29
29
 
30
- import { C as g } from "../../../vendor/Package.internal.133.mjs";
30
+ import { DuplicateActionNameException as b } from "./exceptions/DuplicateActionNameException.mjs";
31
+
32
+ import { AccessControl as j } from "./lib/AccessControl.mjs";
33
+
34
+ import { ContextType as g } from "../../lib/base/Context.mjs";
35
+
36
+ export { BaseContext } from "../../lib/base/Context.mjs";
37
+
38
+ import { AccessControlRule as A } from "./lib/AccessControlRule.mjs";
39
+
40
+ import { InvalidActionGroupException as w } from "./exceptions/InvalidActionGroupException.mjs";
41
+
42
+ export { CLIContext } from "../../lib/context/CLIContext.mjs";
43
+
44
+ export { HTTPContext } from "../../lib/context/HTTPContext.mjs";
45
+
46
+ export { ServiceContext } from "../../lib/context/ServiceContext.mjs";
47
+
48
+ import "../../../vendor/Package.internal.4.mjs";
49
+
50
+ import "../../lib/base/async-constructor/AsyncConstructor.mjs";
51
+
52
+ import "../../lib/base/async-constructor/Append.mjs";
53
+
54
+ import "../../lib/helpers/IsPromiseLike.mjs";
55
+
56
+ import "../../lib/helpers/IsPromise.mjs";
57
+
58
+ import "util/types";
59
+
60
+ import "../../exceptions/MethodNotFoundException.mjs";
61
+
62
+ import "../../lib/base/abstracts/Exception.mjs";
63
+
64
+ import "../../lib/base/internal/BasicInfo.mjs";
65
+
66
+ import "../../../vendor/Package.internal.5.mjs";
67
+
68
+ import "../../../vendor/Package.internal.6.mjs";
69
+
70
+ import "../../lib/base/internal/ThrowWarning.mjs";
71
+
72
+ import "../../lib/helpers/Templating.mjs";
73
+
74
+ import "../../lib/base/internal/CamelCase.mjs";
75
+
76
+ import "../../lib/helpers/NoCase.mjs";
77
+
78
+ import "../../lib/ioc/DependencyInjectionContainer.mjs";
79
+
80
+ import "util";
81
+
82
+ import "../../lib/ioc/Errors.mjs";
83
+
84
+ import "../../exceptions/di/DependencyInjectionException.mjs";
85
+
86
+ import "../../lib/base/internal/ConstructorSymbol.mjs";
87
+
88
+ import "../../constants/DIMetadataKey.mjs";
89
+
90
+ import "../../../vendor/Package.internal.1.mjs";
91
+
92
+ import "node:crypto";
93
+
94
+ import "../../lib/base/internal/DataValidator.mjs";
95
+
96
+ import "node:util/types";
97
+
98
+ import "../../lib/validation/VLD.mjs";
99
+
100
+ import "url";
101
+
102
+ import "../../exceptions/dto/InvalidValueException.mjs";
103
+
104
+ import "../../../vendor/Package.internal.8.mjs";
105
+
106
+ import "../../lib/helpers/IsHtml.mjs";
107
+
108
+ import "../../lib/helpers/IsXML.mjs";
109
+
110
+ import "../../constants/DTOMetadataKey.mjs";
111
+
112
+ import "../../lib/helpers/ObjectConstructor.mjs";
113
+
114
+ import "../../lib/helpers/ObjectParentConstructors.mjs";
115
+
116
+ import "../../lib/helpers/ObjectParentConstructor.mjs";
117
+
118
+ import "../../lib/helpers/ObjectPrototype.mjs";
119
+
120
+ import "../../lib/ioc/InjectionMode.mjs";
121
+
122
+ import "../../lib/ioc/Lifetime.mjs";
123
+
124
+ import "../../lib/ioc/ListModules.mjs";
125
+
126
+ import "os";
127
+
128
+ import "path";
129
+
130
+ import "stream";
131
+
132
+ import "events";
133
+
134
+ import "fs";
135
+
136
+ import "../../lib/ioc/Utils.mjs";
137
+
138
+ import "../../lib/ioc/FunctionTokenizer.mjs";
139
+
140
+ import "../../lib/ioc/LoadModules.mjs";
141
+
142
+ import "../../lib/ioc/Resolvers.mjs";
143
+
144
+ import "../../lib/ioc/ParamParser.mjs";
145
+
146
+ import "../../lib/base/internal/ObjectLifetime.mjs";
147
+
148
+ import "../../exceptions/di/LifetimeLockedException.mjs";
149
+
150
+ import "../../lib/base/internal/ObjectWeakRefs.mjs";
151
+
152
+ import "../../lib/base/internal/ConfigurableRecordsInjection.mjs";
153
+
154
+ import "../../lib/base/internal/ObjectConfiguration.mjs";
155
+
156
+ import "../../lib/base/internal/ObjectInjection.mjs";
157
+
158
+ import "../../lib/base/internal/ObjectContainer.mjs";
159
+
160
+ import "../../lib/helpers/DevNull.mjs";
161
+
162
+ import "../../decorators/dto/Expect.mjs";
163
+
164
+ import "../../decorators/dto/IndexSignature.mjs";
165
+
166
+ import "../../decorators/dto/Accept.mjs";
167
+
168
+ import "../../lib/base/internal/MethodValidation.mjs";
169
+
170
+ import "../../exceptions/dto/InvalidMethodAcceptException.mjs";
171
+
172
+ import "../../exceptions/dto/InvalidMethodReturnException.mjs";
173
+
174
+ import "../../lib/helpers/IsEmptyObject.mjs";
175
+
176
+ import "../../lib/base/EventEmitter.mjs";
177
+
178
+ import "../../lib/core/Provider.mjs";
179
+
180
+ import "../../lib/helpers/ObjectHash.mjs";
181
+
182
+ import "crypto";
183
+
184
+ import "../../lib/helpers/GetObjectNestingDepth.mjs";
185
+
186
+ import "../../exceptions/InvalidActionPatternDepthException.mjs";
187
+
188
+ import "../../lib/base/internal/StringifyPattern.mjs";
189
+
190
+ import "../../../vendor/Package.internal.54.mjs";
191
+
192
+ import "../../../vendor/Package.internal.542.mjs";
193
+
194
+ import "node:http";
195
+
196
+ import "./exceptions/AccessDenyException.mjs";
197
+
198
+
199
+ // -- Shims --
200
+ import cjsUrl from 'node:url';
201
+ import cjsPath from 'node:path';
202
+ import cjsModule from 'node:module';
203
+ const __filename = cjsUrl.fileURLToPath(import.meta.url);
204
+ const __dirname = cjsPath.dirname(__filename);
205
+ const require = cjsModule.createRequire(import.meta.url);
206
+ function _(t) {
207
+ return t != null && typeof t === "object" && Array.isArray(t) === false;
208
+ }
209
+
210
+ const I = Object.freeze(Object.defineProperty({
211
+ __proto__: null,
212
+ default: _
213
+ }, Symbol.toStringTag, {
214
+ value: "Module"
215
+ }));
216
+
217
+ const O = f(I);
218
+
219
+ var C = function t(r) {
220
+ return r != null && typeof r === "object" && Array.isArray(r) === false;
221
+ };
222
+
223
+ const S = C;
224
+
225
+ var x = function(t, r, e) {
226
+ if (!S(e)) {
227
+ e = {
228
+ default: e
229
+ };
230
+ }
231
+ if (!T(t)) {
232
+ return typeof e.default !== "undefined" ? e.default : t;
233
+ }
234
+ if (typeof r === "number") {
235
+ r = String(r);
236
+ }
237
+ const n = Array.isArray(r);
238
+ const o = typeof r === "string";
239
+ const a = e.separator || ".";
240
+ const i = e.joinChar || (typeof a === "string" ? a : ".");
241
+ if (!o && !n) {
242
+ return t;
243
+ }
244
+ if (o && r in t) {
245
+ return E(r, t, e) ? t[r] : e.default;
246
+ }
247
+ let s = n ? r : M(r, a, e);
248
+ let c = s.length;
249
+ let u = 0;
250
+ do {
251
+ let r = s[u];
252
+ if (typeof r === "number") {
253
+ r = String(r);
254
+ }
255
+ while (r && r.slice(-1) === "\\") {
256
+ r = P([ r.slice(0, -1), s[++u] || "" ], i, e);
257
+ }
258
+ if (r in t) {
259
+ if (!E(r, t, e)) {
260
+ return e.default;
261
+ }
262
+ t = t[r];
263
+ } else {
264
+ let n = false;
265
+ let o = u + 1;
266
+ while (o < c) {
267
+ r = P([ r, s[o++] ], i, e);
268
+ if (n = r in t) {
269
+ if (!E(r, t, e)) {
270
+ return e.default;
271
+ }
272
+ t = t[r];
273
+ u = o - 1;
274
+ break;
275
+ }
276
+ }
277
+ if (!n) {
278
+ return e.default;
279
+ }
280
+ }
281
+ } while (++u < c && T(t));
282
+ if (u === c) {
283
+ return t;
284
+ }
285
+ return e.default;
286
+ };
287
+
288
+ function P(t, r, e) {
289
+ if (typeof e.join === "function") {
290
+ return e.join(t);
291
+ }
292
+ return t[0] + r + t[1];
293
+ }
294
+
295
+ function M(t, r, e) {
296
+ if (typeof e.split === "function") {
297
+ return e.split(t);
298
+ }
299
+ return t.split(r);
300
+ }
301
+
302
+ function E(t, r, e) {
303
+ if (typeof e.isValid === "function") {
304
+ return e.isValid(t, r);
305
+ }
306
+ return true;
307
+ }
308
+
309
+ function T(t) {
310
+ return S(t) || Array.isArray(t) || typeof t === "function";
311
+ }
312
+
313
+ var k = Object.prototype.toString;
314
+
315
+ var D = function t(r) {
316
+ if (r === void 0) return "undefined";
317
+ if (r === null) return "null";
318
+ var e = typeof r;
319
+ if (e === "boolean") return "boolean";
320
+ if (e === "string") return "string";
321
+ if (e === "number") return "number";
322
+ if (e === "symbol") return "symbol";
323
+ if (e === "function") {
324
+ return H(r) ? "generatorfunction" : "function";
325
+ }
326
+ if (G(r)) return "array";
327
+ if (V(r)) return "buffer";
328
+ if (R(r)) return "arguments";
329
+ if (F(r)) return "date";
330
+ if (N(r)) return "error";
331
+ if (z(r)) return "regexp";
332
+ switch (L(r)) {
333
+ case "Symbol":
334
+ return "symbol";
335
+
336
+ case "Promise":
337
+ return "promise";
338
+
339
+ case "WeakMap":
340
+ return "weakmap";
341
+
342
+ case "WeakSet":
343
+ return "weakset";
344
+
345
+ case "Map":
346
+ return "map";
347
+
348
+ case "Set":
349
+ return "set";
350
+
351
+ case "Int8Array":
352
+ return "int8array";
353
+
354
+ case "Uint8Array":
355
+ return "uint8array";
356
+
357
+ case "Uint8ClampedArray":
358
+ return "uint8clampedarray";
359
+
360
+ case "Int16Array":
361
+ return "int16array";
362
+
363
+ case "Uint16Array":
364
+ return "uint16array";
365
+
366
+ case "Int32Array":
367
+ return "int32array";
368
+
369
+ case "Uint32Array":
370
+ return "uint32array";
371
+
372
+ case "Float32Array":
373
+ return "float32array";
374
+
375
+ case "Float64Array":
376
+ return "float64array";
377
+ }
378
+ if (U(r)) {
379
+ return "generator";
380
+ }
381
+ e = k.call(r);
382
+ switch (e) {
383
+ case "[object Object]":
384
+ return "object";
385
+
386
+ case "[object Map Iterator]":
387
+ return "mapiterator";
388
+
389
+ case "[object Set Iterator]":
390
+ return "setiterator";
391
+
392
+ case "[object String Iterator]":
393
+ return "stringiterator";
394
+
395
+ case "[object Array Iterator]":
396
+ return "arrayiterator";
397
+ }
398
+ return e.slice(8, -1).toLowerCase().replace(/\s/g, "");
399
+ };
400
+
401
+ function L(t) {
402
+ return typeof t.constructor === "function" ? t.constructor.name : null;
403
+ }
404
+
405
+ function G(t) {
406
+ if (Array.isArray) return Array.isArray(t);
407
+ return t instanceof Array;
408
+ }
409
+
410
+ function N(t) {
411
+ return t instanceof Error || typeof t.message === "string" && t.constructor && typeof t.constructor.stackTraceLimit === "number";
412
+ }
413
+
414
+ function F(t) {
415
+ if (t instanceof Date) return true;
416
+ return typeof t.toDateString === "function" && typeof t.getDate === "function" && typeof t.setDate === "function";
417
+ }
418
+
419
+ function z(t) {
420
+ if (t instanceof RegExp) return true;
421
+ return typeof t.flags === "string" && typeof t.ignoreCase === "boolean" && typeof t.multiline === "boolean" && typeof t.global === "boolean";
422
+ }
423
+
424
+ function H(t, r) {
425
+ return L(t) === "GeneratorFunction";
426
+ }
427
+
428
+ function U(t) {
429
+ return typeof t.throw === "function" && typeof t.return === "function" && typeof t.next === "function";
430
+ }
431
+
432
+ function R(t) {
433
+ try {
434
+ if (typeof t.length === "number" && typeof t.callee === "function") {
435
+ return true;
436
+ }
437
+ } catch (t) {
438
+ if (t.message.indexOf("callee") !== -1) {
439
+ return true;
440
+ }
441
+ }
442
+ return false;
443
+ }
444
+
445
+ function V(t) {
446
+ if (t.constructor && typeof t.constructor.isBuffer === "function") {
447
+ return t.constructor.isBuffer(t);
448
+ }
449
+ return false;
450
+ }
451
+
452
+ const B = D;
453
+
454
+ var W = function t(r) {
455
+ switch (B(r)) {
456
+ case "boolean":
457
+ case "date":
458
+ case "function":
459
+ case "null":
460
+ case "number":
461
+ return true;
462
+
463
+ case "undefined":
464
+ return false;
465
+
466
+ case "regexp":
467
+ return r.source !== "(?:)" && r.source !== "";
468
+
469
+ case "buffer":
470
+ return r.toString() !== "";
471
+
472
+ case "error":
473
+ return r.message !== "";
474
+
475
+ case "string":
476
+ case "arguments":
477
+ return r.length !== 0;
478
+
479
+ case "file":
480
+ case "map":
481
+ case "set":
482
+ return r.size !== 0;
483
+
484
+ case "array":
485
+ case "object":
486
+ for (const e of Object.keys(r)) {
487
+ if (t(r[e])) {
488
+ return true;
489
+ }
490
+ }
491
+ return false;
492
+
493
+ default:
494
+ {
495
+ return true;
496
+ }
497
+ }
498
+ };
499
+
500
+ const $ = x;
501
+
502
+ const q = W;
503
+
504
+ var K = function(t, r, e) {
505
+ if (X(t) && (typeof r === "string" || Array.isArray(r))) {
506
+ return q($(t, r, e));
507
+ }
508
+ return false;
509
+ };
510
+
511
+ function X(t) {
512
+ return t != null && (typeof t === "object" || typeof t === "function" || Array.isArray(t));
513
+ }
514
+
515
+ var J = O;
516
+
517
+ var Q = K;
518
+
519
+ const Y = t => t === "__proto__" || t === "constructor" || t === "prototype";
520
+
521
+ const Z = t => {
522
+ if (Y(t)) {
523
+ throw new Error(`Cannot set unsafe key: "${t}"`);
524
+ }
525
+ };
526
+
527
+ var tt = function t(r, e) {
528
+ if (!J(r)) {
529
+ throw new TypeError("expected an object.");
530
+ }
531
+ var n = Array.isArray(e);
532
+ if (!n && r.hasOwnProperty(e)) {
533
+ delete r[e];
534
+ return true;
535
+ }
536
+ if (Q(r, e)) {
537
+ var o = n ? e.slice() : e.split(".");
538
+ var a = o.pop();
539
+ while (o.length && o[o.length - 1].slice(-1) === "\\") {
540
+ a = o.pop().slice(0, -1) + "." + a;
541
+ }
542
+ while (o.length) {
543
+ e = o.shift();
544
+ Z(e);
545
+ r = r[e];
546
+ }
547
+ return delete r[a];
548
+ }
549
+ return true;
550
+ };
551
+
552
+ const rt = v(tt);
553
+
554
+ function et() {
555
+ this.__data__ = [];
556
+ this.size = 0;
557
+ }
558
+
559
+ var nt = et;
560
+
561
+ function ot(t, r) {
562
+ return t === r || t !== t && r !== r;
563
+ }
564
+
565
+ var at = ot;
566
+
567
+ var it = at;
568
+
569
+ function st(t, r) {
570
+ var e = t.length;
571
+ while (e--) {
572
+ if (it(t[e][0], r)) {
573
+ return e;
574
+ }
575
+ }
576
+ return -1;
577
+ }
578
+
579
+ var ct = st;
580
+
581
+ var ut = ct;
582
+
583
+ var pt = Array.prototype;
584
+
585
+ var lt = pt.splice;
586
+
587
+ function ft(t) {
588
+ var r = this.__data__, e = ut(r, t);
589
+ if (e < 0) {
590
+ return false;
591
+ }
592
+ var n = r.length - 1;
593
+ if (e == n) {
594
+ r.pop();
595
+ } else {
596
+ lt.call(r, e, 1);
597
+ }
598
+ --this.size;
599
+ return true;
600
+ }
601
+
602
+ var vt = ft;
603
+
604
+ var ht = ct;
605
+
606
+ function mt(t) {
607
+ var r = this.__data__, e = ht(r, t);
608
+ return e < 0 ? undefined : r[e][1];
609
+ }
610
+
611
+ var dt = mt;
612
+
613
+ var yt = ct;
614
+
615
+ function bt(t) {
616
+ return yt(this.__data__, t) > -1;
617
+ }
618
+
619
+ var jt = bt;
620
+
621
+ var gt = ct;
622
+
623
+ function At(t, r) {
624
+ var e = this.__data__, n = gt(e, t);
625
+ if (n < 0) {
626
+ ++this.size;
627
+ e.push([ t, r ]);
628
+ } else {
629
+ e[n][1] = r;
630
+ }
631
+ return this;
632
+ }
633
+
634
+ var wt = At;
635
+
636
+ var _t = nt, It = vt, Ot = dt, Ct = jt, St = wt;
637
+
638
+ function xt(t) {
639
+ var r = -1, e = t == null ? 0 : t.length;
640
+ this.clear();
641
+ while (++r < e) {
642
+ var n = t[r];
643
+ this.set(n[0], n[1]);
644
+ }
645
+ }
646
+
647
+ xt.prototype.clear = _t;
648
+
649
+ xt.prototype["delete"] = It;
650
+
651
+ xt.prototype.get = Ot;
652
+
653
+ xt.prototype.has = Ct;
654
+
655
+ xt.prototype.set = St;
656
+
657
+ var Pt = xt;
658
+
659
+ var Mt = Pt;
660
+
661
+ function Et() {
662
+ this.__data__ = new Mt;
663
+ this.size = 0;
664
+ }
665
+
666
+ var Tt = Et;
667
+
668
+ function kt(t) {
669
+ var r = this.__data__, e = r["delete"](t);
670
+ this.size = r.size;
671
+ return e;
672
+ }
673
+
674
+ var Dt = kt;
675
+
676
+ function Lt(t) {
677
+ return this.__data__.get(t);
678
+ }
679
+
680
+ var Gt = Lt;
681
+
682
+ function Nt(t) {
683
+ return this.__data__.has(t);
684
+ }
685
+
686
+ var Ft = Nt;
687
+
688
+ var zt = typeof h == "object" && h && h.Object === Object && h;
689
+
690
+ var Ht = zt;
691
+
692
+ var Ut = Ht;
693
+
694
+ var Rt = typeof self == "object" && self && self.Object === Object && self;
695
+
696
+ var Vt = Ut || Rt || Function("return this")();
697
+
698
+ var Bt = Vt;
699
+
700
+ var Wt = Bt;
701
+
702
+ var $t = Wt.Symbol;
703
+
704
+ var qt = $t;
705
+
706
+ var Kt = qt;
707
+
708
+ var Xt = Object.prototype;
709
+
710
+ var Jt = Xt.hasOwnProperty;
711
+
712
+ var Qt = Xt.toString;
713
+
714
+ var Yt = Kt ? Kt.toStringTag : undefined;
715
+
716
+ function Zt(t) {
717
+ var r = Jt.call(t, Yt), e = t[Yt];
718
+ try {
719
+ t[Yt] = undefined;
720
+ var n = true;
721
+ } catch (t) {}
722
+ var o = Qt.call(t);
723
+ if (n) {
724
+ if (r) {
725
+ t[Yt] = e;
726
+ } else {
727
+ delete t[Yt];
728
+ }
729
+ }
730
+ return o;
731
+ }
732
+
733
+ var tr = Zt;
734
+
735
+ var rr = Object.prototype;
736
+
737
+ var er = rr.toString;
738
+
739
+ function nr(t) {
740
+ return er.call(t);
741
+ }
742
+
743
+ var or = nr;
744
+
745
+ var ar = qt, ir = tr, sr = or;
746
+
747
+ var cr = "[object Null]", ur = "[object Undefined]";
748
+
749
+ var pr = ar ? ar.toStringTag : undefined;
750
+
751
+ function lr(t) {
752
+ if (t == null) {
753
+ return t === undefined ? ur : cr;
754
+ }
755
+ return pr && pr in Object(t) ? ir(t) : sr(t);
756
+ }
757
+
758
+ var fr = lr;
759
+
760
+ function vr(t) {
761
+ var r = typeof t;
762
+ return t != null && (r == "object" || r == "function");
763
+ }
764
+
765
+ var hr = vr;
766
+
767
+ var mr = fr, dr = hr;
768
+
769
+ var yr = "[object AsyncFunction]", br = "[object Function]", jr = "[object GeneratorFunction]", gr = "[object Proxy]";
770
+
771
+ function Ar(t) {
772
+ if (!dr(t)) {
773
+ return false;
774
+ }
775
+ var r = mr(t);
776
+ return r == br || r == jr || r == yr || r == gr;
777
+ }
778
+
779
+ var wr = Ar;
780
+
781
+ var _r = Bt;
782
+
783
+ var Ir = _r["__core-js_shared__"];
784
+
785
+ var Or = Ir;
786
+
787
+ var Cr = Or;
788
+
789
+ var Sr = function() {
790
+ var t = /[^.]+$/.exec(Cr && Cr.keys && Cr.keys.IE_PROTO || "");
791
+ return t ? "Symbol(src)_1." + t : "";
792
+ }();
793
+
794
+ function xr(t) {
795
+ return !!Sr && Sr in t;
796
+ }
797
+
798
+ var Pr = xr;
799
+
800
+ var Mr = Function.prototype;
801
+
802
+ var Er = Mr.toString;
803
+
804
+ function Tr(t) {
805
+ if (t != null) {
806
+ try {
807
+ return Er.call(t);
808
+ } catch (t) {}
809
+ try {
810
+ return t + "";
811
+ } catch (t) {}
812
+ }
813
+ return "";
814
+ }
815
+
816
+ var kr = Tr;
817
+
818
+ var Dr = wr, Lr = Pr, Gr = hr, Nr = kr;
819
+
820
+ var Fr = /[\\^$.*+?()[\]{}|]/g;
821
+
822
+ var zr = /^\[object .+?Constructor\]$/;
823
+
824
+ var Hr = Function.prototype, Ur = Object.prototype;
825
+
826
+ var Rr = Hr.toString;
827
+
828
+ var Vr = Ur.hasOwnProperty;
829
+
830
+ var Br = RegExp("^" + Rr.call(Vr).replace(Fr, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$");
831
+
832
+ function Wr(t) {
833
+ if (!Gr(t) || Lr(t)) {
834
+ return false;
835
+ }
836
+ var r = Dr(t) ? Br : zr;
837
+ return r.test(Nr(t));
838
+ }
839
+
840
+ var $r = Wr;
841
+
842
+ function qr(t, r) {
843
+ return t == null ? undefined : t[r];
844
+ }
845
+
846
+ var Kr = qr;
847
+
848
+ var Xr = $r, Jr = Kr;
849
+
850
+ function Qr(t, r) {
851
+ var e = Jr(t, r);
852
+ return Xr(e) ? e : undefined;
853
+ }
854
+
855
+ var Yr = Qr;
856
+
857
+ var Zr = Yr, te = Bt;
858
+
859
+ var re = Zr(te, "Map");
860
+
861
+ var ee = re;
862
+
863
+ var ne = Yr;
864
+
865
+ var oe = ne(Object, "create");
866
+
867
+ var ae = oe;
868
+
869
+ var ie = ae;
870
+
871
+ function se() {
872
+ this.__data__ = ie ? ie(null) : {};
873
+ this.size = 0;
874
+ }
875
+
876
+ var ce = se;
877
+
878
+ function ue(t) {
879
+ var r = this.has(t) && delete this.__data__[t];
880
+ this.size -= r ? 1 : 0;
881
+ return r;
882
+ }
883
+
884
+ var pe = ue;
885
+
886
+ var le = ae;
887
+
888
+ var fe = "__lodash_hash_undefined__";
889
+
890
+ var ve = Object.prototype;
891
+
892
+ var he = ve.hasOwnProperty;
893
+
894
+ function me(t) {
895
+ var r = this.__data__;
896
+ if (le) {
897
+ var e = r[t];
898
+ return e === fe ? undefined : e;
899
+ }
900
+ return he.call(r, t) ? r[t] : undefined;
901
+ }
902
+
903
+ var de = me;
904
+
905
+ var ye = ae;
906
+
907
+ var be = Object.prototype;
908
+
909
+ var je = be.hasOwnProperty;
910
+
911
+ function ge(t) {
912
+ var r = this.__data__;
913
+ return ye ? r[t] !== undefined : je.call(r, t);
914
+ }
915
+
916
+ var Ae = ge;
917
+
918
+ var we = ae;
919
+
920
+ var _e = "__lodash_hash_undefined__";
921
+
922
+ function Ie(t, r) {
923
+ var e = this.__data__;
924
+ this.size += this.has(t) ? 0 : 1;
925
+ e[t] = we && r === undefined ? _e : r;
926
+ return this;
927
+ }
928
+
929
+ var Oe = Ie;
930
+
931
+ var Ce = ce, Se = pe, xe = de, Pe = Ae, Me = Oe;
932
+
933
+ function Ee(t) {
934
+ var r = -1, e = t == null ? 0 : t.length;
935
+ this.clear();
936
+ while (++r < e) {
937
+ var n = t[r];
938
+ this.set(n[0], n[1]);
939
+ }
940
+ }
941
+
942
+ Ee.prototype.clear = Ce;
943
+
944
+ Ee.prototype["delete"] = Se;
945
+
946
+ Ee.prototype.get = xe;
947
+
948
+ Ee.prototype.has = Pe;
949
+
950
+ Ee.prototype.set = Me;
951
+
952
+ var Te = Ee;
953
+
954
+ var ke = Te, De = Pt, Le = ee;
955
+
956
+ function Ge() {
957
+ this.size = 0;
958
+ this.__data__ = {
959
+ hash: new ke,
960
+ map: new (Le || De),
961
+ string: new ke
962
+ };
963
+ }
964
+
965
+ var Ne = Ge;
966
+
967
+ function Fe(t) {
968
+ var r = typeof t;
969
+ return r == "string" || r == "number" || r == "symbol" || r == "boolean" ? t !== "__proto__" : t === null;
970
+ }
971
+
972
+ var ze = Fe;
973
+
974
+ var He = ze;
975
+
976
+ function Ue(t, r) {
977
+ var e = t.__data__;
978
+ return He(r) ? e[typeof r == "string" ? "string" : "hash"] : e.map;
979
+ }
980
+
981
+ var Re = Ue;
982
+
983
+ var Ve = Re;
984
+
985
+ function Be(t) {
986
+ var r = Ve(this, t)["delete"](t);
987
+ this.size -= r ? 1 : 0;
988
+ return r;
989
+ }
990
+
991
+ var We = Be;
992
+
993
+ var $e = Re;
994
+
995
+ function qe(t) {
996
+ return $e(this, t).get(t);
997
+ }
998
+
999
+ var Ke = qe;
1000
+
1001
+ var Xe = Re;
1002
+
1003
+ function Je(t) {
1004
+ return Xe(this, t).has(t);
1005
+ }
1006
+
1007
+ var Qe = Je;
1008
+
1009
+ var Ye = Re;
1010
+
1011
+ function Ze(t, r) {
1012
+ var e = Ye(this, t), n = e.size;
1013
+ e.set(t, r);
1014
+ this.size += e.size == n ? 0 : 1;
1015
+ return this;
1016
+ }
1017
+
1018
+ var tn = Ze;
1019
+
1020
+ var rn = Ne, en = We, nn = Ke, on = Qe, an = tn;
1021
+
1022
+ function sn(t) {
1023
+ var r = -1, e = t == null ? 0 : t.length;
1024
+ this.clear();
1025
+ while (++r < e) {
1026
+ var n = t[r];
1027
+ this.set(n[0], n[1]);
1028
+ }
1029
+ }
1030
+
1031
+ sn.prototype.clear = rn;
1032
+
1033
+ sn.prototype["delete"] = en;
1034
+
1035
+ sn.prototype.get = nn;
1036
+
1037
+ sn.prototype.has = on;
1038
+
1039
+ sn.prototype.set = an;
1040
+
1041
+ var cn = sn;
1042
+
1043
+ var un = Pt, pn = ee, ln = cn;
1044
+
1045
+ var fn = 200;
1046
+
1047
+ function vn(t, r) {
1048
+ var e = this.__data__;
1049
+ if (e instanceof un) {
1050
+ var n = e.__data__;
1051
+ if (!pn || n.length < fn - 1) {
1052
+ n.push([ t, r ]);
1053
+ this.size = ++e.size;
1054
+ return this;
1055
+ }
1056
+ e = this.__data__ = new ln(n);
1057
+ }
1058
+ e.set(t, r);
1059
+ this.size = e.size;
1060
+ return this;
1061
+ }
1062
+
1063
+ var hn = vn;
1064
+
1065
+ var mn = Pt, dn = Tt, yn = Dt, bn = Gt, jn = Ft, gn = hn;
1066
+
1067
+ function An(t) {
1068
+ var r = this.__data__ = new mn(t);
1069
+ this.size = r.size;
1070
+ }
31
1071
 
32
- import { DuplicateActionNameException as b } from "./exceptions/DuplicateActionNameException.mjs";
1072
+ An.prototype.clear = dn;
33
1073
 
34
- import { AccessControl as f } from "./lib/AccessControl.mjs";
1074
+ An.prototype["delete"] = yn;
35
1075
 
36
- import { ContextType as v } from "../../lib/base/Context.mjs";
1076
+ An.prototype.get = bn;
37
1077
 
38
- export { BaseContext } from "../../lib/base/Context.mjs";
1078
+ An.prototype.has = jn;
39
1079
 
40
- import { AccessControlRule as A } from "./lib/AccessControlRule.mjs";
1080
+ An.prototype.set = gn;
41
1081
 
42
- import { InvalidActionGroupException as y } from "./exceptions/InvalidActionGroupException.mjs";
1082
+ var wn = An;
43
1083
 
44
- export { CLIContext } from "../../lib/context/CLIContext.mjs";
1084
+ function _n(t, r) {
1085
+ var e = -1, n = t == null ? 0 : t.length;
1086
+ while (++e < n) {
1087
+ if (r(t[e], e, t) === false) {
1088
+ break;
1089
+ }
1090
+ }
1091
+ return t;
1092
+ }
45
1093
 
46
- export { HTTPContext } from "../../lib/context/HTTPContext.mjs";
1094
+ var In = _n;
47
1095
 
48
- export { ServiceContext } from "../../lib/context/ServiceContext.mjs";
1096
+ var On = Yr;
49
1097
 
50
- import "../../../vendor/Package.internal.8.mjs";
1098
+ var Cn = function() {
1099
+ try {
1100
+ var t = On(Object, "defineProperty");
1101
+ t({}, "", {});
1102
+ return t;
1103
+ } catch (t) {}
1104
+ }();
51
1105
 
52
- import "../../lib/base/BaseObject.mjs";
1106
+ var Sn = Cn;
53
1107
 
54
- import "../../lib/base/async-constructor/AsyncConstructor.mjs";
1108
+ var xn = Sn;
55
1109
 
56
- import "../../lib/base/async-constructor/Append.mjs";
1110
+ function Pn(t, r, e) {
1111
+ if (r == "__proto__" && xn) {
1112
+ xn(t, r, {
1113
+ configurable: true,
1114
+ enumerable: true,
1115
+ value: e,
1116
+ writable: true
1117
+ });
1118
+ } else {
1119
+ t[r] = e;
1120
+ }
1121
+ }
57
1122
 
58
- import "../../lib/helpers/IsPromiseLike.mjs";
1123
+ var Mn = Pn;
59
1124
 
60
- import "../../lib/helpers/IsPromise.mjs";
1125
+ var En = Mn, Tn = at;
61
1126
 
62
- import "util/types";
1127
+ var kn = Object.prototype;
63
1128
 
64
- import "../../exceptions/MethodNotFoundException.mjs";
1129
+ var Dn = kn.hasOwnProperty;
65
1130
 
66
- import "../../lib/base/abstracts/Exception.mjs";
1131
+ function Ln(t, r, e) {
1132
+ var n = t[r];
1133
+ if (!(Dn.call(t, r) && Tn(n, e)) || e === undefined && !(r in t)) {
1134
+ En(t, r, e);
1135
+ }
1136
+ }
67
1137
 
68
- import "../../lib/base/internal/BasicInfo.mjs";
1138
+ var Gn = Ln;
69
1139
 
70
- import "../../../vendor/Package.internal.139.mjs";
1140
+ var Nn = Gn, Fn = Mn;
71
1141
 
72
- import "../../../vendor/Package.internal.138.mjs";
1142
+ function zn(t, r, e, n) {
1143
+ var o = !e;
1144
+ e || (e = {});
1145
+ var a = -1, i = r.length;
1146
+ while (++a < i) {
1147
+ var s = r[a];
1148
+ var c = n ? n(e[s], t[s], s, e, t) : undefined;
1149
+ if (c === undefined) {
1150
+ c = t[s];
1151
+ }
1152
+ if (o) {
1153
+ Fn(e, s, c);
1154
+ } else {
1155
+ Nn(e, s, c);
1156
+ }
1157
+ }
1158
+ return e;
1159
+ }
73
1160
 
74
- import "../../../vendor/Package.internal.28.mjs";
1161
+ var Hn = zn;
75
1162
 
76
- import "../../lib/base/internal/ThrowWarning.mjs";
1163
+ function Un(t, r) {
1164
+ var e = -1, n = Array(t);
1165
+ while (++e < t) {
1166
+ n[e] = r(e);
1167
+ }
1168
+ return n;
1169
+ }
77
1170
 
78
- import "../../lib/helpers/Templating.mjs";
1171
+ var Rn = Un;
79
1172
 
80
- import "../../lib/base/internal/CamelCase.mjs";
1173
+ function Vn(t) {
1174
+ return t != null && typeof t == "object";
1175
+ }
81
1176
 
82
- import "../../lib/helpers/NoCase.mjs";
1177
+ var Bn = Vn;
83
1178
 
84
- import "../../lib/core/Container.mjs";
1179
+ var Wn = fr, $n = Bn;
85
1180
 
86
- import "../../lib/ioc/DependencyInjectionContainer.mjs";
1181
+ var qn = "[object Arguments]";
87
1182
 
88
- import "util";
1183
+ function Kn(t) {
1184
+ return $n(t) && Wn(t) == qn;
1185
+ }
89
1186
 
90
- import "../../lib/ioc/Errors.mjs";
1187
+ var Xn = Kn;
91
1188
 
92
- import "../../exceptions/di/DependencyInjectionException.mjs";
1189
+ var Jn = Xn, Qn = Bn;
93
1190
 
94
- import "../../lib/base/internal/ConstructorSymbol.mjs";
1191
+ var Yn = Object.prototype;
95
1192
 
96
- import "../../constants/DIMetadataKey.mjs";
1193
+ var Zn = Yn.hasOwnProperty;
97
1194
 
98
- import "../../../vendor/Package.internal.175.mjs";
1195
+ var to = Yn.propertyIsEnumerable;
99
1196
 
100
- import "node:crypto";
1197
+ var ro = Jn(function() {
1198
+ return arguments;
1199
+ }()) ? Jn : function(t) {
1200
+ return Qn(t) && Zn.call(t, "callee") && !to.call(t, "callee");
1201
+ };
101
1202
 
102
- import "../../lib/helpers/IsSymbol.mjs";
1203
+ var eo = ro;
103
1204
 
104
- import "../../lib/ioc/InjectionMode.mjs";
1205
+ var no = Array.isArray;
105
1206
 
106
- import "../../lib/ioc/Lifetime.mjs";
1207
+ var oo = no;
107
1208
 
108
- import "../../lib/ioc/ListModules.mjs";
1209
+ var ao = {
1210
+ exports: {}
1211
+ };
109
1212
 
110
- import "../../../vendor/Package.internal.92.mjs";
1213
+ function io() {
1214
+ return false;
1215
+ }
111
1216
 
112
- import "os";
1217
+ var so = io;
113
1218
 
114
- import "path";
1219
+ ao.exports;
115
1220
 
116
- import "../../../vendor/Package.internal.93.mjs";
1221
+ (function(t, r) {
1222
+ var e = Bt, n = so;
1223
+ var o = r && !r.nodeType && r;
1224
+ var a = o && "object" == "object" && t && !t.nodeType && t;
1225
+ var i = a && a.exports === o;
1226
+ var s = i ? e.Buffer : undefined;
1227
+ var c = s ? s.isBuffer : undefined;
1228
+ var u = c || n;
1229
+ t.exports = u;
1230
+ })(ao, ao.exports);
117
1231
 
118
- import "../../../vendor/Package.internal.125.mjs";
1232
+ var co = ao.exports;
119
1233
 
120
- import "../../../vendor/Package.internal.94.mjs";
1234
+ var uo = 9007199254740991;
121
1235
 
122
- import "../../../vendor/Package.internal.45.mjs";
1236
+ var po = /^(?:0|[1-9]\d*)$/;
123
1237
 
124
- import "../../../vendor/Package.internal.46.mjs";
1238
+ function lo(t, r) {
1239
+ var e = typeof t;
1240
+ r = r == null ? uo : r;
1241
+ return !!r && (e == "number" || e != "symbol" && po.test(t)) && (t > -1 && t % 1 == 0 && t < r);
1242
+ }
125
1243
 
126
- import "../../../vendor/Package.internal.126.mjs";
1244
+ var fo = lo;
127
1245
 
128
- import "../../../vendor/Package.internal.47.mjs";
1246
+ var vo = 9007199254740991;
129
1247
 
130
- import "../../../vendor/Package.internal.95.mjs";
1248
+ function ho(t) {
1249
+ return typeof t == "number" && t > -1 && t % 1 == 0 && t <= vo;
1250
+ }
131
1251
 
132
- import "stream";
1252
+ var mo = ho;
133
1253
 
134
- import "../../../vendor/Package.internal.16.mjs";
1254
+ var yo = fr, bo = mo, jo = Bn;
135
1255
 
136
- import "events";
1256
+ var go = "[object Arguments]", Ao = "[object Array]", wo = "[object Boolean]", _o = "[object Date]", Io = "[object Error]", Oo = "[object Function]", Co = "[object Map]", So = "[object Number]", xo = "[object Object]", Po = "[object RegExp]", Mo = "[object Set]", Eo = "[object String]", To = "[object WeakMap]";
137
1257
 
138
- import "fs";
1258
+ var ko = "[object ArrayBuffer]", Do = "[object DataView]", Lo = "[object Float32Array]", Go = "[object Float64Array]", No = "[object Int8Array]", Fo = "[object Int16Array]", zo = "[object Int32Array]", Ho = "[object Uint8Array]", Uo = "[object Uint8ClampedArray]", Ro = "[object Uint16Array]", Vo = "[object Uint32Array]";
139
1259
 
140
- import "../../../vendor/Package.internal.17.mjs";
1260
+ var Bo = {};
141
1261
 
142
- import "../../../vendor/Package.internal.170.mjs";
1262
+ Bo[Lo] = Bo[Go] = Bo[No] = Bo[Fo] = Bo[zo] = Bo[Ho] = Bo[Uo] = Bo[Ro] = Bo[Vo] = true;
143
1263
 
144
- import "../../../vendor/Package.internal.18.mjs";
1264
+ Bo[go] = Bo[Ao] = Bo[ko] = Bo[wo] = Bo[Do] = Bo[_o] = Bo[Io] = Bo[Oo] = Bo[Co] = Bo[So] = Bo[xo] = Bo[Po] = Bo[Mo] = Bo[Eo] = Bo[To] = false;
145
1265
 
146
- import "../../../vendor/Package.internal.99.mjs";
1266
+ function Wo(t) {
1267
+ return jo(t) && bo(t.length) && !!Bo[yo(t)];
1268
+ }
147
1269
 
148
- import "../../lib/ioc/Utils.mjs";
1270
+ var $o = Wo;
149
1271
 
150
- import "../../lib/ioc/FunctionTokenizer.mjs";
1272
+ function qo(t) {
1273
+ return function(r) {
1274
+ return t(r);
1275
+ };
1276
+ }
151
1277
 
152
- import "../../../vendor/Package.internal.185.mjs";
1278
+ var Ko = qo;
153
1279
 
154
- import "../../lib/ioc/LoadModules.mjs";
1280
+ var Xo = {
1281
+ exports: {}
1282
+ };
155
1283
 
156
- import "url";
1284
+ Xo.exports;
157
1285
 
158
- import "../../lib/ioc/Resolvers.mjs";
1286
+ (function(t, r) {
1287
+ var e = Ht;
1288
+ var n = r && !r.nodeType && r;
1289
+ var o = n && "object" == "object" && t && !t.nodeType && t;
1290
+ var a = o && o.exports === n;
1291
+ var i = a && e.process;
1292
+ var s = function() {
1293
+ try {
1294
+ var t = o && o.require && o.require("util").types;
1295
+ if (t) {
1296
+ return t;
1297
+ }
1298
+ return i && i.binding && i.binding("util");
1299
+ } catch (t) {}
1300
+ }();
1301
+ t.exports = s;
1302
+ })(Xo, Xo.exports);
159
1303
 
160
- import "../../lib/ioc/ParamParser.mjs";
1304
+ var Jo = Xo.exports;
161
1305
 
162
- import "../../lib/base/internal/ObjectLifetime.mjs";
1306
+ var Qo = $o, Yo = Ko, Zo = Jo;
163
1307
 
164
- import "../../exceptions/di/LifetimeLockedException.mjs";
1308
+ var ta = Zo && Zo.isTypedArray;
165
1309
 
166
- import "../../lib/base/internal/ObjectWeakRefs.mjs";
1310
+ var ra = ta ? Yo(ta) : Qo;
167
1311
 
168
- import "../../options/LoadObjectOptions.mjs";
1312
+ var ea = ra;
169
1313
 
170
- import "../../decorators/dto/Expect.mjs";
1314
+ var na = Rn, oa = eo, aa = oo, ia = co, sa = fo, ca = ea;
171
1315
 
172
- import "../../lib/base/internal/ObjectSchemaValidation.mjs";
1316
+ var ua = Object.prototype;
173
1317
 
174
- import "../../constants/DTOMetadataKey.mjs";
1318
+ var pa = ua.hasOwnProperty;
175
1319
 
176
- import "../../lib/base/internal/DataValidator.mjs";
1320
+ function la(t, r) {
1321
+ var e = aa(t), n = !e && oa(t), o = !e && !n && ia(t), a = !e && !n && !o && ca(t), i = e || n || o || a, s = i ? na(t.length, String) : [], c = s.length;
1322
+ for (var u in t) {
1323
+ if ((r || pa.call(t, u)) && !(i && (u == "length" || o && (u == "offset" || u == "parent") || a && (u == "buffer" || u == "byteLength" || u == "byteOffset") || sa(u, c)))) {
1324
+ s.push(u);
1325
+ }
1326
+ }
1327
+ return s;
1328
+ }
177
1329
 
178
- import "node:util/types";
1330
+ var fa = la;
179
1331
 
180
- import "../../../vendor/Package.internal.62.mjs";
1332
+ var va = Object.prototype;
181
1333
 
182
- import "../../lib/validation/VLD.mjs";
1334
+ function ha(t) {
1335
+ var r = t && t.constructor, e = typeof r == "function" && r.prototype || va;
1336
+ return t === e;
1337
+ }
183
1338
 
184
- import "../../../vendor/Package.internal.131.mjs";
1339
+ var ma = ha;
185
1340
 
186
- import "../../../vendor/Package.internal.9.mjs";
1341
+ function da(t, r) {
1342
+ return function(e) {
1343
+ return t(r(e));
1344
+ };
1345
+ }
187
1346
 
188
- import "../../../vendor/Package.internal.23.mjs";
1347
+ var ya = da;
189
1348
 
190
- import "../../exceptions/dto/InvalidValueException.mjs";
1349
+ var ba = ya;
191
1350
 
192
- import "../../lib/helpers/IsGlobString.mjs";
1351
+ var ja = ba(Object.keys, Object);
193
1352
 
194
- import "../../lib/helpers/IsHtml.mjs";
1353
+ var ga = ja;
195
1354
 
196
- import "../../../vendor/Package.internal.120.mjs";
1355
+ var Aa = ma, wa = ga;
197
1356
 
198
- import "../../lib/helpers/IsXML.mjs";
1357
+ var _a = Object.prototype;
199
1358
 
200
- import "../../../vendor/Package.internal.97.mjs";
1359
+ var Ia = _a.hasOwnProperty;
201
1360
 
202
- import "../../../vendor/Package.internal.98.mjs";
1361
+ function Oa(t) {
1362
+ if (!Aa(t)) {
1363
+ return wa(t);
1364
+ }
1365
+ var r = [];
1366
+ for (var e in Object(t)) {
1367
+ if (Ia.call(t, e) && e != "constructor") {
1368
+ r.push(e);
1369
+ }
1370
+ }
1371
+ return r;
1372
+ }
203
1373
 
204
- import "../../lib/helpers/ObjectConstructor.mjs";
1374
+ var Ca = Oa;
205
1375
 
206
- import "../../lib/helpers/ObjectParentConstructors.mjs";
1376
+ var Sa = wr, xa = mo;
207
1377
 
208
- import "../../lib/helpers/ObjectParentConstructor.mjs";
1378
+ function Pa(t) {
1379
+ return t != null && xa(t.length) && !Sa(t);
1380
+ }
209
1381
 
210
- import "../../lib/helpers/ObjectPrototype.mjs";
1382
+ var Ma = Pa;
211
1383
 
212
- import "../../decorators/dto/IndexSignature.mjs";
1384
+ var Ea = fa, Ta = Ca, ka = Ma;
213
1385
 
214
- import "../../lib/base/internal/ConfigurableRecordsInjection.mjs";
1386
+ function Da(t) {
1387
+ return ka(t) ? Ea(t) : Ta(t);
1388
+ }
215
1389
 
216
- import "../../lib/base/internal/ObjectInjection.mjs";
1390
+ var La = Da;
217
1391
 
218
- import "../../decorators/dto/Accept.mjs";
1392
+ var Ga = Hn, Na = La;
219
1393
 
220
- import "../../lib/base/internal/MethodValidation.mjs";
1394
+ function Fa(t, r) {
1395
+ return t && Ga(r, Na(r), t);
1396
+ }
221
1397
 
222
- import "../../exceptions/dto/InvalidMethodAcceptException.mjs";
1398
+ var za = Fa;
223
1399
 
224
- import "../../exceptions/dto/InvalidMethodReturnException.mjs";
1400
+ function Ha(t) {
1401
+ var r = [];
1402
+ if (t != null) {
1403
+ for (var e in Object(t)) {
1404
+ r.push(e);
1405
+ }
1406
+ }
1407
+ return r;
1408
+ }
225
1409
 
226
- import "../../lib/helpers/DevNull.mjs";
1410
+ var Ua = Ha;
227
1411
 
228
- import "../../lib/helpers/IsEmptyObject.mjs";
1412
+ var Ra = hr, Va = ma, Ba = Ua;
229
1413
 
230
- import "../../lib/base/internal/ObjectConfiguration.mjs";
1414
+ var Wa = Object.prototype;
231
1415
 
232
- import "../../lib/base/internal/ObjectContainer.mjs";
1416
+ var $a = Wa.hasOwnProperty;
233
1417
 
234
- import "../../lib/base/internal/ObjectType.mjs";
1418
+ function qa(t) {
1419
+ if (!Ra(t)) {
1420
+ return Ba(t);
1421
+ }
1422
+ var r = Va(t), e = [];
1423
+ for (var n in t) {
1424
+ if (!(n == "constructor" && (r || !$a.call(t, n)))) {
1425
+ e.push(n);
1426
+ }
1427
+ }
1428
+ return e;
1429
+ }
235
1430
 
236
- import "../../lib/base/EventEmitter.mjs";
1431
+ var Ka = qa;
237
1432
 
238
- import "../../../vendor/Package.internal.87.mjs";
1433
+ var Xa = fa, Ja = Ka, Qa = Ma;
239
1434
 
240
- import "../../lib/core/Provider.mjs";
1435
+ function Ya(t) {
1436
+ return Qa(t) ? Xa(t, true) : Ja(t);
1437
+ }
241
1438
 
242
- import "../../lib/helpers/ObjectHash.mjs";
1439
+ var Za = Ya;
243
1440
 
244
- import "../../../vendor/Package.internal.151.mjs";
1441
+ var ti = Hn, ri = Za;
245
1442
 
246
- import "crypto";
1443
+ function ei(t, r) {
1444
+ return t && ti(r, ri(r), t);
1445
+ }
247
1446
 
248
- import "../../lib/helpers/GetObjectNestingDepth.mjs";
1447
+ var ni = ei;
249
1448
 
250
- import "../../exceptions/InvalidActionPatternDepthException.mjs";
1449
+ var oi = {
1450
+ exports: {}
1451
+ };
251
1452
 
252
- import "../../lib/base/internal/StringifyPattern.mjs";
1453
+ oi.exports;
1454
+
1455
+ (function(t, r) {
1456
+ var e = Bt;
1457
+ var n = r && !r.nodeType && r;
1458
+ var o = n && "object" == "object" && t && !t.nodeType && t;
1459
+ var a = o && o.exports === n;
1460
+ var i = a ? e.Buffer : undefined, s = i ? i.allocUnsafe : undefined;
1461
+ function c(t, r) {
1462
+ if (r) {
1463
+ return t.slice();
1464
+ }
1465
+ var e = t.length, n = s ? s(e) : new t.constructor(e);
1466
+ t.copy(n);
1467
+ return n;
1468
+ }
1469
+ t.exports = c;
1470
+ })(oi, oi.exports);
1471
+
1472
+ var ai = oi.exports;
1473
+
1474
+ function ii(t, r) {
1475
+ var e = -1, n = t.length;
1476
+ r || (r = Array(n));
1477
+ while (++e < n) {
1478
+ r[e] = t[e];
1479
+ }
1480
+ return r;
1481
+ }
253
1482
 
254
- import "../../../vendor/Package.internal.181.mjs";
1483
+ var si = ii;
255
1484
 
256
- import "../../../vendor/Package.internal.29.mjs";
1485
+ function ci(t, r) {
1486
+ var e = -1, n = t == null ? 0 : t.length, o = 0, a = [];
1487
+ while (++e < n) {
1488
+ var i = t[e];
1489
+ if (r(i, e, t)) {
1490
+ a[o++] = i;
1491
+ }
1492
+ }
1493
+ return a;
1494
+ }
257
1495
 
258
- import "../../../vendor/Package.internal.182.mjs";
1496
+ var ui = ci;
259
1497
 
260
- import "../../../vendor/Package.internal.194.mjs";
1498
+ function pi() {
1499
+ return [];
1500
+ }
261
1501
 
262
- import "../../../vendor/Package.internal.156.mjs";
1502
+ var li = pi;
263
1503
 
264
- import "../../../vendor/Package.internal.110.mjs";
1504
+ var fi = ui, vi = li;
265
1505
 
266
- import "../../../vendor/Package.internal.130.mjs";
1506
+ var hi = Object.prototype;
267
1507
 
268
- import "../../../vendor/Package.internal.116.mjs";
1508
+ var mi = hi.propertyIsEnumerable;
269
1509
 
270
- import "../../../vendor/Package.internal.109.mjs";
1510
+ var di = Object.getOwnPropertySymbols;
1511
+
1512
+ var yi = !di ? vi : function(t) {
1513
+ if (t == null) {
1514
+ return [];
1515
+ }
1516
+ t = Object(t);
1517
+ return fi(di(t), function(r) {
1518
+ return mi.call(t, r);
1519
+ });
1520
+ };
271
1521
 
272
- import "../../../vendor/Package.internal.117.mjs";
1522
+ var bi = yi;
273
1523
 
274
- import "../../../vendor/Package.internal.118.mjs";
1524
+ var ji = Hn, gi = bi;
275
1525
 
276
- import "../../../vendor/Package.internal.132.mjs";
1526
+ function Ai(t, r) {
1527
+ return ji(t, gi(t), r);
1528
+ }
277
1529
 
278
- import "../../../vendor/Package.internal.60.mjs";
1530
+ var wi = Ai;
279
1531
 
280
- import "./exceptions/AccessDenyException.mjs";
1532
+ function _i(t, r) {
1533
+ var e = -1, n = r.length, o = t.length;
1534
+ while (++e < n) {
1535
+ t[o + e] = r[e];
1536
+ }
1537
+ return t;
1538
+ }
281
1539
 
282
- import "node:http";
1540
+ var Ii = _i;
1541
+
1542
+ var Oi = ya;
1543
+
1544
+ var Ci = Oi(Object.getPrototypeOf, Object);
1545
+
1546
+ var Si = Ci;
1547
+
1548
+ var xi = Ii, Pi = Si, Mi = bi, Ei = li;
1549
+
1550
+ var Ti = Object.getOwnPropertySymbols;
1551
+
1552
+ var ki = !Ti ? Ei : function(t) {
1553
+ var r = [];
1554
+ while (t) {
1555
+ xi(r, Mi(t));
1556
+ t = Pi(t);
1557
+ }
1558
+ return r;
1559
+ };
1560
+
1561
+ var Di = ki;
1562
+
1563
+ var Li = Hn, Gi = Di;
1564
+
1565
+ function Ni(t, r) {
1566
+ return Li(t, Gi(t), r);
1567
+ }
1568
+
1569
+ var Fi = Ni;
1570
+
1571
+ var zi = Ii, Hi = oo;
1572
+
1573
+ function Ui(t, r, e) {
1574
+ var n = r(t);
1575
+ return Hi(t) ? n : zi(n, e(t));
1576
+ }
1577
+
1578
+ var Ri = Ui;
1579
+
1580
+ var Vi = Ri, Bi = bi, Wi = La;
283
1581
 
284
- const P = t => t;
1582
+ function $i(t) {
1583
+ return Vi(t, Wi, Bi);
1584
+ }
285
1585
 
286
- const C = t => t;
1586
+ var qi = $i;
287
1587
 
288
- const I = t => t;
1588
+ var Ki = Ri, Xi = Di, Ji = Za;
289
1589
 
290
- const M = t => t;
1590
+ function Qi(t) {
1591
+ return Ki(t, Ji, Xi);
1592
+ }
291
1593
 
292
- let w = class Entrypoint extends o {
1594
+ var Yi = Qi;
1595
+
1596
+ var Zi = Yr, ts = Bt;
1597
+
1598
+ var rs = Zi(ts, "DataView");
1599
+
1600
+ var es = rs;
1601
+
1602
+ var ns = Yr, os = Bt;
1603
+
1604
+ var as = ns(os, "Promise");
1605
+
1606
+ var is = as;
1607
+
1608
+ var ss = Yr, cs = Bt;
1609
+
1610
+ var us = ss(cs, "Set");
1611
+
1612
+ var ps = us;
1613
+
1614
+ var ls = Yr, fs = Bt;
1615
+
1616
+ var vs = ls(fs, "WeakMap");
1617
+
1618
+ var hs = vs;
1619
+
1620
+ var ms = es, ds = ee, ys = is, bs = ps, js = hs, gs = fr, As = kr;
1621
+
1622
+ var ws = "[object Map]", _s = "[object Object]", Is = "[object Promise]", Os = "[object Set]", Cs = "[object WeakMap]";
1623
+
1624
+ var Ss = "[object DataView]";
1625
+
1626
+ var xs = As(ms), Ps = As(ds), Ms = As(ys), Es = As(bs), Ts = As(js);
1627
+
1628
+ var ks = gs;
1629
+
1630
+ if (ms && ks(new ms(new ArrayBuffer(1))) != Ss || ds && ks(new ds) != ws || ys && ks(ys.resolve()) != Is || bs && ks(new bs) != Os || js && ks(new js) != Cs) {
1631
+ ks = function(t) {
1632
+ var r = gs(t), e = r == _s ? t.constructor : undefined, n = e ? As(e) : "";
1633
+ if (n) {
1634
+ switch (n) {
1635
+ case xs:
1636
+ return Ss;
1637
+
1638
+ case Ps:
1639
+ return ws;
1640
+
1641
+ case Ms:
1642
+ return Is;
1643
+
1644
+ case Es:
1645
+ return Os;
1646
+
1647
+ case Ts:
1648
+ return Cs;
1649
+ }
1650
+ }
1651
+ return r;
1652
+ };
1653
+ }
1654
+
1655
+ var Ds = ks;
1656
+
1657
+ var Ls = Object.prototype;
1658
+
1659
+ var Gs = Ls.hasOwnProperty;
1660
+
1661
+ function Ns(t) {
1662
+ var r = t.length, e = new t.constructor(r);
1663
+ if (r && typeof t[0] == "string" && Gs.call(t, "index")) {
1664
+ e.index = t.index;
1665
+ e.input = t.input;
1666
+ }
1667
+ return e;
1668
+ }
1669
+
1670
+ var Fs = Ns;
1671
+
1672
+ var zs = Bt;
1673
+
1674
+ var Hs = zs.Uint8Array;
1675
+
1676
+ var Us = Hs;
1677
+
1678
+ var Rs = Us;
1679
+
1680
+ function Vs(t) {
1681
+ var r = new t.constructor(t.byteLength);
1682
+ new Rs(r).set(new Rs(t));
1683
+ return r;
1684
+ }
1685
+
1686
+ var Bs = Vs;
1687
+
1688
+ var Ws = Bs;
1689
+
1690
+ function $s(t, r) {
1691
+ var e = r ? Ws(t.buffer) : t.buffer;
1692
+ return new t.constructor(e, t.byteOffset, t.byteLength);
1693
+ }
1694
+
1695
+ var qs = $s;
1696
+
1697
+ var Ks = /\w*$/;
1698
+
1699
+ function Xs(t) {
1700
+ var r = new t.constructor(t.source, Ks.exec(t));
1701
+ r.lastIndex = t.lastIndex;
1702
+ return r;
1703
+ }
1704
+
1705
+ var Js = Xs;
1706
+
1707
+ var Qs = qt;
1708
+
1709
+ var Ys = Qs ? Qs.prototype : undefined, Zs = Ys ? Ys.valueOf : undefined;
1710
+
1711
+ function tc(t) {
1712
+ return Zs ? Object(Zs.call(t)) : {};
1713
+ }
1714
+
1715
+ var rc = tc;
1716
+
1717
+ var ec = Bs;
1718
+
1719
+ function nc(t, r) {
1720
+ var e = r ? ec(t.buffer) : t.buffer;
1721
+ return new t.constructor(e, t.byteOffset, t.length);
1722
+ }
1723
+
1724
+ var oc = nc;
1725
+
1726
+ var ac = Bs, ic = qs, sc = Js, cc = rc, uc = oc;
1727
+
1728
+ var pc = "[object Boolean]", lc = "[object Date]", fc = "[object Map]", vc = "[object Number]", hc = "[object RegExp]", mc = "[object Set]", dc = "[object String]", yc = "[object Symbol]";
1729
+
1730
+ var bc = "[object ArrayBuffer]", jc = "[object DataView]", gc = "[object Float32Array]", Ac = "[object Float64Array]", wc = "[object Int8Array]", _c = "[object Int16Array]", Ic = "[object Int32Array]", Oc = "[object Uint8Array]", Cc = "[object Uint8ClampedArray]", Sc = "[object Uint16Array]", xc = "[object Uint32Array]";
1731
+
1732
+ function Pc(t, r, e) {
1733
+ var n = t.constructor;
1734
+ switch (r) {
1735
+ case bc:
1736
+ return ac(t);
1737
+
1738
+ case pc:
1739
+ case lc:
1740
+ return new n(+t);
1741
+
1742
+ case jc:
1743
+ return ic(t, e);
1744
+
1745
+ case gc:
1746
+ case Ac:
1747
+ case wc:
1748
+ case _c:
1749
+ case Ic:
1750
+ case Oc:
1751
+ case Cc:
1752
+ case Sc:
1753
+ case xc:
1754
+ return uc(t, e);
1755
+
1756
+ case fc:
1757
+ return new n;
1758
+
1759
+ case vc:
1760
+ case dc:
1761
+ return new n(t);
1762
+
1763
+ case hc:
1764
+ return sc(t);
1765
+
1766
+ case mc:
1767
+ return new n;
1768
+
1769
+ case yc:
1770
+ return cc(t);
1771
+ }
1772
+ }
1773
+
1774
+ var Mc = Pc;
1775
+
1776
+ var Ec = hr;
1777
+
1778
+ var Tc = Object.create;
1779
+
1780
+ var kc = function() {
1781
+ function t() {}
1782
+ return function(r) {
1783
+ if (!Ec(r)) {
1784
+ return {};
1785
+ }
1786
+ if (Tc) {
1787
+ return Tc(r);
1788
+ }
1789
+ t.prototype = r;
1790
+ var e = new t;
1791
+ t.prototype = undefined;
1792
+ return e;
1793
+ };
1794
+ }();
1795
+
1796
+ var Dc = kc;
1797
+
1798
+ var Lc = Dc, Gc = Si, Nc = ma;
1799
+
1800
+ function Fc(t) {
1801
+ return typeof t.constructor == "function" && !Nc(t) ? Lc(Gc(t)) : {};
1802
+ }
1803
+
1804
+ var zc = Fc;
1805
+
1806
+ var Hc = Ds, Uc = Bn;
1807
+
1808
+ var Rc = "[object Map]";
1809
+
1810
+ function Vc(t) {
1811
+ return Uc(t) && Hc(t) == Rc;
1812
+ }
1813
+
1814
+ var Bc = Vc;
1815
+
1816
+ var Wc = Bc, $c = Ko, qc = Jo;
1817
+
1818
+ var Kc = qc && qc.isMap;
1819
+
1820
+ var Xc = Kc ? $c(Kc) : Wc;
1821
+
1822
+ var Jc = Xc;
1823
+
1824
+ var Qc = Ds, Yc = Bn;
1825
+
1826
+ var Zc = "[object Set]";
1827
+
1828
+ function tu(t) {
1829
+ return Yc(t) && Qc(t) == Zc;
1830
+ }
1831
+
1832
+ var ru = tu;
1833
+
1834
+ var eu = ru, nu = Ko, ou = Jo;
1835
+
1836
+ var au = ou && ou.isSet;
1837
+
1838
+ var iu = au ? nu(au) : eu;
1839
+
1840
+ var su = iu;
1841
+
1842
+ var cu = wn, uu = In, pu = Gn, lu = za, fu = ni, vu = ai, hu = si, mu = wi, du = Fi, yu = qi, bu = Yi, ju = Ds, gu = Fs, Au = Mc, wu = zc, _u = oo, Iu = co, Ou = Jc, Cu = hr, Su = su, xu = La, Pu = Za;
1843
+
1844
+ var Mu = 1, Eu = 2, Tu = 4;
1845
+
1846
+ var ku = "[object Arguments]", Du = "[object Array]", Lu = "[object Boolean]", Gu = "[object Date]", Nu = "[object Error]", Fu = "[object Function]", zu = "[object GeneratorFunction]", Hu = "[object Map]", Uu = "[object Number]", Ru = "[object Object]", Vu = "[object RegExp]", Bu = "[object Set]", Wu = "[object String]", $u = "[object Symbol]", qu = "[object WeakMap]";
1847
+
1848
+ var Ku = "[object ArrayBuffer]", Xu = "[object DataView]", Ju = "[object Float32Array]", Qu = "[object Float64Array]", Yu = "[object Int8Array]", Zu = "[object Int16Array]", tp = "[object Int32Array]", rp = "[object Uint8Array]", ep = "[object Uint8ClampedArray]", np = "[object Uint16Array]", op = "[object Uint32Array]";
1849
+
1850
+ var ap = {};
1851
+
1852
+ ap[ku] = ap[Du] = ap[Ku] = ap[Xu] = ap[Lu] = ap[Gu] = ap[Ju] = ap[Qu] = ap[Yu] = ap[Zu] = ap[tp] = ap[Hu] = ap[Uu] = ap[Ru] = ap[Vu] = ap[Bu] = ap[Wu] = ap[$u] = ap[rp] = ap[ep] = ap[np] = ap[op] = true;
1853
+
1854
+ ap[Nu] = ap[Fu] = ap[qu] = false;
1855
+
1856
+ function ip(t, r, e, n, o, a) {
1857
+ var i, s = r & Mu, c = r & Eu, u = r & Tu;
1858
+ if (e) {
1859
+ i = o ? e(t, n, o, a) : e(t);
1860
+ }
1861
+ if (i !== undefined) {
1862
+ return i;
1863
+ }
1864
+ if (!Cu(t)) {
1865
+ return t;
1866
+ }
1867
+ var p = _u(t);
1868
+ if (p) {
1869
+ i = gu(t);
1870
+ if (!s) {
1871
+ return hu(t, i);
1872
+ }
1873
+ } else {
1874
+ var l = ju(t), f = l == Fu || l == zu;
1875
+ if (Iu(t)) {
1876
+ return vu(t, s);
1877
+ }
1878
+ if (l == Ru || l == ku || f && !o) {
1879
+ i = c || f ? {} : wu(t);
1880
+ if (!s) {
1881
+ return c ? du(t, fu(i, t)) : mu(t, lu(i, t));
1882
+ }
1883
+ } else {
1884
+ if (!ap[l]) {
1885
+ return o ? t : {};
1886
+ }
1887
+ i = Au(t, l, s);
1888
+ }
1889
+ }
1890
+ a || (a = new cu);
1891
+ var v = a.get(t);
1892
+ if (v) {
1893
+ return v;
1894
+ }
1895
+ a.set(t, i);
1896
+ if (Su(t)) {
1897
+ t.forEach(function(n) {
1898
+ i.add(ip(n, r, e, n, t, a));
1899
+ });
1900
+ } else if (Ou(t)) {
1901
+ t.forEach(function(n, o) {
1902
+ i.set(o, ip(n, r, e, o, t, a));
1903
+ });
1904
+ }
1905
+ var h = u ? c ? bu : yu : c ? Pu : xu;
1906
+ var m = p ? undefined : h(t);
1907
+ uu(m || t, function(n, o) {
1908
+ if (m) {
1909
+ o = n;
1910
+ n = t[o];
1911
+ }
1912
+ pu(i, o, ip(n, r, e, o, t, a));
1913
+ });
1914
+ return i;
1915
+ }
1916
+
1917
+ var sp = ip;
1918
+
1919
+ var cp = sp;
1920
+
1921
+ var up = 1, pp = 4;
1922
+
1923
+ function lp(t) {
1924
+ return cp(t, up | pp);
1925
+ }
1926
+
1927
+ var fp = lp;
1928
+
1929
+ const vp = v(fp);
1930
+
1931
+ const hp = t => t;
1932
+
1933
+ const mp = t => t;
1934
+
1935
+ const dp = t => t;
1936
+
1937
+ const yp = t => t;
1938
+
1939
+ let bp = class Entrypoint extends e {
293
1940
  constructor() {
294
1941
  super(...arguments);
295
1942
  this.CLIActionPatternMap = new Map;
296
1943
  this.HTTPActionPatternMap = new Map;
297
1944
  this.ServiceActionPatternMap = new Map;
298
- this.CLIActionPatternManager = new s;
299
- this.HTTPActionPatternManager = new s;
300
- this.ServiceActionPatternManager = new s;
1945
+ this.CLIActionPatternManager = new i;
1946
+ this.HTTPActionPatternManager = new i;
1947
+ this.ServiceActionPatternManager = new i;
301
1948
  this.entrypointDestroyers = [];
302
1949
  this.httpActionInfoMap = new Map;
303
1950
  this.serviceActionInfoMap = new Map;
304
1951
  this.cliActionInfoMap = new Map;
305
- this.accessControl = f;
1952
+ this.accessControl = j;
306
1953
  }
307
1954
  async init() {
308
1955
  await Promise.all(this.controllers.map(t => {
309
- i(this, t);
310
- return new Promise((e, o) => this.container.register(t).then(e).catch(o));
1956
+ o(this, t);
1957
+ return new Promise((r, e) => this.container.register(t).then(r).catch(e));
311
1958
  }));
312
- const {CLI: t, HTTP: e, Service: o} = n(this);
313
- t.forEach((t, e) => {
1959
+ const {CLI: t, HTTP: r, Service: e} = a(this);
1960
+ t.forEach((t, r) => {
314
1961
  this.cliActionInfoMap.set(t.id, {
315
1962
  id: t.id,
316
1963
  command: t.pattern.command,
@@ -322,10 +1969,10 @@ let w = class Entrypoint extends o {
322
1969
  method: t.method.toString(),
323
1970
  jsonSchema: t.jsonSchema
324
1971
  });
325
- this.CLIActionPatternMap.set(e, t);
326
- this.CLIActionPatternManager.add(e, t);
1972
+ this.CLIActionPatternMap.set(r, t);
1973
+ this.CLIActionPatternManager.add(r, t);
327
1974
  });
328
- e.forEach((t, e) => {
1975
+ r.forEach((t, r) => {
329
1976
  this.httpActionInfoMap.set(t.id, {
330
1977
  id: t.id,
331
1978
  route: t.pattern.route,
@@ -337,10 +1984,10 @@ let w = class Entrypoint extends o {
337
1984
  method: t.method.toString(),
338
1985
  jsonSchema: t.jsonSchema
339
1986
  });
340
- this.HTTPActionPatternMap.set(e, t);
341
- this.HTTPActionPatternManager.add(e, t);
1987
+ this.HTTPActionPatternMap.set(r, t);
1988
+ this.HTTPActionPatternManager.add(r, t);
342
1989
  });
343
- o.forEach((t, e) => {
1990
+ e.forEach((t, r) => {
344
1991
  this.serviceActionInfoMap.set(t.id, {
345
1992
  id: t.id,
346
1993
  pattern: t.pattern,
@@ -352,41 +1999,41 @@ let w = class Entrypoint extends o {
352
1999
  method: t.method.toString(),
353
2000
  jsonSchema: t.jsonSchema
354
2001
  });
355
- this.ServiceActionPatternMap.set(e, t);
356
- this.ServiceActionPatternManager.add(e, t);
2002
+ this.ServiceActionPatternMap.set(r, t);
2003
+ this.ServiceActionPatternManager.add(r, t);
357
2004
  });
358
2005
  this.register(this.service, t => this.registerServiceEntrypoint(t));
359
2006
  this.register(this.cli, t => this.registerCLIEntrypoint(t));
360
2007
  this.register(this.http, t => this.registerHTTPEntrypoint(t));
361
- const r = this.findInvalidActionGroupIds(this.cliActionInfoMap, "cli");
362
- if (r.length) throw new y("Found {type} action groups are not defined in cliActionGroups: {groupIds}", {
2008
+ const n = this.findInvalidActionGroupIds(this.cliActionInfoMap, "cli");
2009
+ if (n.length) throw new w("Found {type} action groups are not defined in cliActionGroups: {groupIds}", {
363
2010
  type: "CLI",
364
- groupIds: r
2011
+ groupIds: n
365
2012
  });
366
- const s = this.findInvalidActionGroupIds(this.httpActionInfoMap, "http");
367
- if (s.length) throw new y("Found {type} action groups are not defined in httpActionGroups: {groupIds}", {
2013
+ const i = this.findInvalidActionGroupIds(this.httpActionInfoMap, "http");
2014
+ if (i.length) throw new w("Found {type} action groups are not defined in httpActionGroups: {groupIds}", {
368
2015
  type: "HTTP",
369
- groupIds: s
2016
+ groupIds: i
370
2017
  });
371
- const a = this.findInvalidActionGroupIds(this.serviceActionInfoMap, "service");
372
- if (a.length) throw new y("Found {type} action groups are not defined in serviceActionGroups: {groupIds}", {
2018
+ const s = this.findInvalidActionGroupIds(this.serviceActionInfoMap, "service");
2019
+ if (s.length) throw new w("Found {type} action groups are not defined in serviceActionGroups: {groupIds}", {
373
2020
  type: "Service",
374
- groupIds: a
2021
+ groupIds: s
375
2022
  });
376
2023
  const c = this.findDuplicateActionNames(this.cliActionInfoMap);
377
2024
  if (c.length) throw new b("Duplicate {type} action names found: {names}", {
378
2025
  type: "CLI",
379
2026
  names: c
380
2027
  });
381
- const p = this.findDuplicateActionNames(this.httpActionInfoMap);
382
- if (p.length) throw new b("Duplicate {type} action names found: {names}", {
2028
+ const u = this.findDuplicateActionNames(this.httpActionInfoMap);
2029
+ if (u.length) throw new b("Duplicate {type} action names found: {names}", {
383
2030
  type: "HTTP",
384
- names: p
2031
+ names: u
385
2032
  });
386
- const m = this.findDuplicateActionNames(this.serviceActionInfoMap);
387
- if (m.length) throw new b("Duplicate {type} action names found: {names}", {
2033
+ const p = this.findDuplicateActionNames(this.serviceActionInfoMap);
2034
+ if (p.length) throw new b("Duplicate {type} action names found: {names}", {
388
2035
  type: "Service",
389
- names: m
2036
+ names: p
390
2037
  });
391
2038
  }
392
2039
  get HTTP_ACTIONS() {
@@ -399,61 +2046,61 @@ let w = class Entrypoint extends o {
399
2046
  return [ ...this.cliActionInfoMap.values() ];
400
2047
  }
401
2048
  async destroy() {
402
- await Promise.all(this.entrypointDestroyers.map(t => new Promise((e, o) => Promise.resolve(t()).then(e).catch(o))));
2049
+ await Promise.all(this.entrypointDestroyers.map(t => new Promise((r, e) => Promise.resolve(t()).then(r).catch(e))));
403
2050
  }
404
2051
  getEntrypointActions(t) {
405
- const e = new Map;
406
- let o;
407
- let r;
2052
+ const r = new Map;
2053
+ let e;
2054
+ let n;
408
2055
  switch (t) {
409
2056
  case "http":
410
2057
  {
411
- r = c(this.HTTP_ACTIONS);
412
- o = this.httpActionGroups;
2058
+ n = c(this.HTTP_ACTIONS);
2059
+ e = this.httpActionGroups;
413
2060
  }
414
2061
  break;
415
2062
 
416
2063
  case "cli":
417
2064
  {
418
- r = c(this.CLI_ACTIONS);
419
- o = this.cliActionGroups;
2065
+ n = c(this.CLI_ACTIONS);
2066
+ e = this.cliActionGroups;
420
2067
  }
421
2068
  break;
422
2069
 
423
2070
  case "service":
424
2071
  {
425
- r = c(this.SERVICE_ACTIONS);
426
- o = this.serviceActionGroups;
2072
+ n = c(this.SERVICE_ACTIONS);
2073
+ e = this.serviceActionGroups;
427
2074
  }
428
2075
  break;
429
2076
 
430
2077
  default:
431
2078
  {
432
- r = [];
433
- o = {};
2079
+ n = [];
2080
+ e = {};
434
2081
  }
435
2082
  }
436
- r.forEach(t => {
437
- t.groups.forEach(r => {
438
- if (!e.has(r)) e.set(r, {
439
- id: r,
440
- name: o[r],
2083
+ n.forEach(t => {
2084
+ t.groups.forEach(n => {
2085
+ if (!r.has(n)) r.set(n, {
2086
+ id: n,
2087
+ name: e[n],
441
2088
  actions: []
442
2089
  });
443
- e.get(r)?.actions.push(t);
2090
+ r.get(n)?.actions.push(t);
444
2091
  });
445
2092
  });
446
2093
  return {
447
- groups: [ ...e.values() ],
448
- actions: r
2094
+ groups: [ ...r.values() ],
2095
+ actions: n
449
2096
  };
450
2097
  }
451
- findInvalidActionGroupIds(t, e) {
452
- const o = [ ...t.values() ];
453
- const r = new Set;
454
- o.forEach(t => {
2098
+ findInvalidActionGroupIds(t, r) {
2099
+ const e = [ ...t.values() ];
2100
+ const n = new Set;
2101
+ e.forEach(t => {
455
2102
  t.groups.forEach(t => {
456
- switch (e) {
2103
+ switch (r) {
457
2104
  case "cli":
458
2105
  if (this.cliActionGroups[t] !== undefined) return;
459
2106
  break;
@@ -466,127 +2113,127 @@ let w = class Entrypoint extends o {
466
2113
  if (this.serviceActionGroups[t] !== undefined) return;
467
2114
  break;
468
2115
  }
469
- r.add(t);
2116
+ n.add(t);
470
2117
  });
471
2118
  });
472
- return [ ...r ];
2119
+ return [ ...n ];
473
2120
  }
474
2121
  findDuplicateActionNames(t) {
475
- const e = [ ...t.values() ].map(t => t.name);
476
- const o = new Set;
477
- const r = new Set;
478
- e.forEach(t => o.has(t) ? r.add(t) : o.add(t));
479
- return Array.from(r);
480
- }
481
- async runAccessControl(t, e, o, r, i) {
482
- const [n, s] = await this.accessControl.run(t, e, o, r, i, t => {
2122
+ const r = [ ...t.values() ].map(t => t.name);
2123
+ const e = new Set;
2124
+ const n = new Set;
2125
+ r.forEach(t => e.has(t) ? n.add(t) : e.add(t));
2126
+ return Array.from(n);
2127
+ }
2128
+ async runAccessControl(t, r, e, n, o) {
2129
+ const [a, i] = await this.accessControl.run(t, r, e, n, o, t => {
483
2130
  switch (t) {
484
- case v.HTTP:
2131
+ case g.HTTP:
485
2132
  return this.HTTP_ACTIONS;
486
2133
 
487
- case v.SERVICE:
2134
+ case g.SERVICE:
488
2135
  return this.SERVICE_ACTIONS;
489
2136
 
490
- case v.CLI:
2137
+ case g.CLI:
491
2138
  return this.CLI_ACTIONS;
492
2139
 
493
2140
  default:
494
2141
  return [];
495
2142
  }
496
2143
  });
497
- if (!n) throw s;
2144
+ if (!a) throw i;
498
2145
  }
499
- async runControllerMethodWithoutAbortController(t, e, o) {
500
- const r = this.createScope();
501
- const i = await r.get(t.constructor, {
502
- context: e
2146
+ async runControllerMethodWithoutAbortController(t, r, e) {
2147
+ const n = this.createScope();
2148
+ const o = await n.get(t.constructor, {
2149
+ context: r
503
2150
  });
504
2151
  try {
505
- const n = g(await o.validateAsync(e.data));
506
- await this.runAccessControl(this.rules, r, e, n, t);
507
- return await i.getMethod(c(t.method))(n);
2152
+ const a = vp(await e.validateAsync(r.data));
2153
+ await this.runAccessControl(this.rules, n, r, a, t);
2154
+ return await o.getMethod(c(t.method))(a);
508
2155
  } catch (t) {
509
2156
  throw t;
510
2157
  } finally {
511
- r.destroy().catch(t => {
512
- throw new m(t.message);
2158
+ n.destroy().catch(t => {
2159
+ throw new p(t.message);
513
2160
  });
514
2161
  }
515
2162
  }
516
- async runControllerMethodWithAbortController(t, e, o, r) {
517
- let i = false;
518
- const n = () => {
519
- i = true;
520
- s.destroy().catch(t => {
521
- throw new m(t.message);
2163
+ async runControllerMethodWithAbortController(t, r, e, n) {
2164
+ let o = false;
2165
+ const a = () => {
2166
+ o = true;
2167
+ i.destroy().catch(t => {
2168
+ throw new p(t.message);
522
2169
  });
523
2170
  };
524
- r.signal.addEventListener("abort", n, {
2171
+ n.signal.addEventListener("abort", a, {
525
2172
  once: true
526
2173
  });
527
- const s = this.createScope();
528
- const a = await s.get(t.constructor, {
529
- context: e
2174
+ const i = this.createScope();
2175
+ const s = await i.get(t.constructor, {
2176
+ context: r
530
2177
  });
531
2178
  try {
532
- const r = g(await o.validateAsync(e.data));
533
- await this.runAccessControl(this.rules, s, e, r, t);
534
- const n = await a.getMethod(c(t.method))(r);
535
- if (!i) return n;
2179
+ const n = vp(await e.validateAsync(r.data));
2180
+ await this.runAccessControl(this.rules, i, r, n, t);
2181
+ const a = await s.getMethod(c(t.method))(n);
2182
+ if (!o) return a;
536
2183
  } catch (t) {
537
- if (!i) r.signal.removeEventListener("abort", n);
2184
+ if (!o) n.signal.removeEventListener("abort", a);
538
2185
  throw t;
539
2186
  }
540
2187
  }
541
- async runControllerMethod(t, e, o, r) {
542
- if (r) return await this.runControllerMethodWithAbortController(t, e, o, r);
543
- return await this.runControllerMethodWithoutAbortController(t, e, o);
2188
+ async runControllerMethod(t, r, e, n) {
2189
+ if (n) return await this.runControllerMethodWithAbortController(t, r, e, n);
2190
+ return await this.runControllerMethodWithoutAbortController(t, r, e);
544
2191
  }
545
- register(t, e) {
546
- (t ? Array.isArray(t) ? t : [ t ] : []).forEach(t => e(t));
2192
+ register(t, r) {
2193
+ (t ? Array.isArray(t) ? t : [ t ] : []).forEach(t => r(t));
547
2194
  }
548
2195
  registerCLIEntrypoint(t) {
549
- const e = new Map;
550
- this.CLIActionPatternMap.forEach((t, o) => e.set(o.command, t.jsonSchema));
551
- return t(this.getModule(), e, async (t, e) => {
552
- const o = {
2196
+ const r = new Map;
2197
+ this.CLIActionPatternMap.forEach((t, e) => r.set(e.command, t.jsonSchema));
2198
+ return t(this.getModule(), r, async (t, r) => {
2199
+ const e = {
553
2200
  command: t.command
554
2201
  };
555
- const r = this.CLIActionPatternManager.find(o);
556
- if (!r) throw new p("Command not found");
557
- return await this.runControllerMethod(r, t, r.dtoConstructor, e);
2202
+ const n = this.CLIActionPatternManager.find(e);
2203
+ if (!n) throw new u("Command not found");
2204
+ return await this.runControllerMethod(n, t, n.dtoConstructor, r);
558
2205
  }, t => this.entrypointDestroyers.push(t));
559
2206
  }
560
2207
  registerHTTPEntrypoint(t) {
561
- const e = new Map;
2208
+ const r = new Map;
562
2209
  for (const t of this.HTTPActionPatternMap.keys()) {
563
- const o = e.get(t.route) || new Set;
564
- o.add(t.method);
565
- e.set(t.route, o);
2210
+ const e = r.get(t.route) || new Set;
2211
+ e.add(t.method);
2212
+ r.set(t.route, e);
566
2213
  }
567
- return t(this.getModule(), e, async (t, e) => {
568
- const o = {
2214
+ return t(this.getModule(), r, async (t, r) => {
2215
+ const e = {
569
2216
  route: t.route,
570
2217
  method: t.method
571
2218
  };
572
- const r = this.HTTPActionPatternManager.find(o);
573
- if (!r) throw new p("Route '{route}' not found", t);
574
- return await this.runControllerMethod(r, t, r.dtoConstructor, e);
2219
+ const n = this.HTTPActionPatternManager.find(e);
2220
+ if (!n) throw new u("Route '{route}' not found", t);
2221
+ return await this.runControllerMethod(n, t, n.dtoConstructor, r);
575
2222
  }, t => this.entrypointDestroyers.push(t));
576
2223
  }
577
2224
  registerServiceEntrypoint(t) {
578
- return t(this.getModule(), async (t, e) => {
579
- const o = this.ServiceActionPatternManager.find(t.input);
580
- if (!o) throw new p("Controller action not found");
581
- const r = l(o.pattern);
582
- r.forEach(e => d(t.data, e));
583
- const i = h(r.map(t => t.substring(0, t.lastIndexOf("."))).filter(t => !!t));
584
- i.forEach(e => {
585
- let o = t.data;
586
- e.split(".").forEach(t => o = o[t] ? o[t] : undefined);
587
- if (o && !Object.keys(o).length) d(t.data, e);
2225
+ return t(this.getModule(), async (t, r) => {
2226
+ const e = this.ServiceActionPatternManager.find(t.input);
2227
+ if (!e) throw new u("Controller action not found");
2228
+ const n = l(e.pattern);
2229
+ n.forEach(r => rt(t.data, r));
2230
+ const o = m(n.map(t => t.substring(0, t.lastIndexOf("."))).filter(t => !!t));
2231
+ o.forEach(r => {
2232
+ let e = t.data;
2233
+ r.split(".").forEach(t => e = e[t] ? e[t] : undefined);
2234
+ if (e && !Object.keys(e).length) rt(t.data, r);
588
2235
  });
589
- return await this.runControllerMethod(o, t, o.dtoConstructor, e);
2236
+ return await this.runControllerMethod(e, t, e.dtoConstructor, r);
590
2237
  }, t => this.entrypointDestroyers.push(t));
591
2238
  }
592
2239
  getHttpActionGroups() {
@@ -609,22 +2256,22 @@ let w = class Entrypoint extends o {
609
2256
  }
610
2257
  };
611
2258
 
612
- t([ r(u.Array(u.Class(a)).optional().default([])), e("design:type", Array) ], w.prototype, "controllers", void 0);
2259
+ t([ n(d.Array(d.Class(s)).optional().default([])), r("design:type", Array) ], bp.prototype, "controllers", void 0);
613
2260
 
614
- t([ r(u.Array(u.Class(A)).optional().default([])), e("design:type", Array) ], w.prototype, "rules", void 0);
2261
+ t([ n(d.Array(d.Class(A)).optional().default([])), r("design:type", Array) ], bp.prototype, "rules", void 0);
615
2262
 
616
- t([ r(u.Object().pattern(u.String(), u.String()).optional().default({})), e("design:type", Object) ], w.prototype, "cliActionGroups", void 0);
2263
+ t([ n(d.Object().pattern(d.String(), d.String()).optional().default({})), r("design:type", Object) ], bp.prototype, "cliActionGroups", void 0);
617
2264
 
618
- t([ r(u.Object().pattern(u.String(), u.String()).optional().default({})), e("design:type", Object) ], w.prototype, "httpActionGroups", void 0);
2265
+ t([ n(d.Object().pattern(d.String(), d.String()).optional().default({})), r("design:type", Object) ], bp.prototype, "httpActionGroups", void 0);
619
2266
 
620
- t([ r(u.Object().pattern(u.String(), u.String()).optional().default({})), e("design:type", Object) ], w.prototype, "serviceActionGroups", void 0);
2267
+ t([ n(d.Object().pattern(d.String(), d.String()).optional().default({})), r("design:type", Object) ], bp.prototype, "serviceActionGroups", void 0);
621
2268
 
622
- t([ r(), e("design:type", Object) ], w.prototype, "cli", void 0);
2269
+ t([ n(), r("design:type", Object) ], bp.prototype, "cli", void 0);
623
2270
 
624
- t([ r(), e("design:type", Object) ], w.prototype, "http", void 0);
2271
+ t([ n(), r("design:type", Object) ], bp.prototype, "http", void 0);
625
2272
 
626
- t([ r(), e("design:type", Object) ], w.prototype, "service", void 0);
2273
+ t([ n(), r("design:type", Object) ], bp.prototype, "service", void 0);
627
2274
 
628
- w = t([ j() ], w);
2275
+ bp = t([ y() ], bp);
629
2276
 
630
- export { P as BuildCLIEntrypoint, M as BuildEntrypoints, C as BuildHTTPEntrypoint, I as BuildServiceEntrypoint, v as ContextType, w as Entrypoint };
2277
+ export { hp as BuildCLIEntrypoint, yp as BuildEntrypoints, mp as BuildHTTPEntrypoint, dp as BuildServiceEntrypoint, g as ContextType, bp as Entrypoint };