lakutata 2.0.96 → 2.0.97

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 (1189) 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 +5 -7
  471. package/src/lib/core/Time.mjs +5 -7
  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/Package.internal.100.cjs +0 -69
  907. package/vendor/Package.internal.100.mjs +0 -67
  908. package/vendor/Package.internal.101.cjs +0 -123
  909. package/vendor/Package.internal.101.mjs +0 -121
  910. package/vendor/Package.internal.102.cjs +0 -16
  911. package/vendor/Package.internal.102.mjs +0 -8
  912. package/vendor/Package.internal.103.cjs +0 -4
  913. package/vendor/Package.internal.103.mjs +0 -2
  914. package/vendor/Package.internal.104.cjs +0 -4
  915. package/vendor/Package.internal.104.mjs +0 -2
  916. package/vendor/Package.internal.105.cjs +0 -112
  917. package/vendor/Package.internal.105.mjs +0 -98
  918. package/vendor/Package.internal.106.cjs +0 -88
  919. package/vendor/Package.internal.106.mjs +0 -84
  920. package/vendor/Package.internal.107.cjs +0 -58
  921. package/vendor/Package.internal.107.mjs +0 -52
  922. package/vendor/Package.internal.108.cjs +0 -20
  923. package/vendor/Package.internal.108.mjs +0 -18
  924. package/vendor/Package.internal.109.cjs +0 -96
  925. package/vendor/Package.internal.109.mjs +0 -96
  926. package/vendor/Package.internal.110.cjs +0 -113
  927. package/vendor/Package.internal.110.mjs +0 -113
  928. package/vendor/Package.internal.111.cjs +0 -2176
  929. package/vendor/Package.internal.111.mjs +0 -2174
  930. package/vendor/Package.internal.112.cjs +0 -2466
  931. package/vendor/Package.internal.112.mjs +0 -2434
  932. package/vendor/Package.internal.113.cjs +0 -1306
  933. package/vendor/Package.internal.113.mjs +0 -1292
  934. package/vendor/Package.internal.114.cjs +0 -33
  935. package/vendor/Package.internal.114.mjs +0 -31
  936. package/vendor/Package.internal.115.cjs +0 -20
  937. package/vendor/Package.internal.115.mjs +0 -18
  938. package/vendor/Package.internal.116.cjs +0 -21
  939. package/vendor/Package.internal.116.mjs +0 -21
  940. package/vendor/Package.internal.117.cjs +0 -52
  941. package/vendor/Package.internal.117.mjs +0 -52
  942. package/vendor/Package.internal.118.cjs +0 -141
  943. package/vendor/Package.internal.118.mjs +0 -141
  944. package/vendor/Package.internal.119.cjs +0 -2
  945. package/vendor/Package.internal.119.mjs +0 -1
  946. package/vendor/Package.internal.120.cjs +0 -6
  947. package/vendor/Package.internal.120.mjs +0 -4
  948. package/vendor/Package.internal.121.cjs +0 -4
  949. package/vendor/Package.internal.121.mjs +0 -2
  950. package/vendor/Package.internal.122.cjs +0 -4
  951. package/vendor/Package.internal.122.mjs +0 -2
  952. package/vendor/Package.internal.123.cjs +0 -4
  953. package/vendor/Package.internal.123.mjs +0 -2
  954. package/vendor/Package.internal.124.cjs +0 -49
  955. package/vendor/Package.internal.124.mjs +0 -47
  956. package/vendor/Package.internal.125.cjs +0 -14
  957. package/vendor/Package.internal.125.mjs +0 -14
  958. package/vendor/Package.internal.126.cjs +0 -12
  959. package/vendor/Package.internal.126.mjs +0 -12
  960. package/vendor/Package.internal.127.cjs +0 -20
  961. package/vendor/Package.internal.127.mjs +0 -18
  962. package/vendor/Package.internal.128.cjs +0 -118
  963. package/vendor/Package.internal.128.mjs +0 -116
  964. package/vendor/Package.internal.129.cjs +0 -18
  965. package/vendor/Package.internal.129.mjs +0 -16
  966. package/vendor/Package.internal.130.cjs +0 -19
  967. package/vendor/Package.internal.130.mjs +0 -17
  968. package/vendor/Package.internal.131.cjs +0 -8876
  969. package/vendor/Package.internal.131.mjs +0 -8874
  970. package/vendor/Package.internal.132.cjs +0 -899
  971. package/vendor/Package.internal.132.mjs +0 -897
  972. package/vendor/Package.internal.133.cjs +0 -6769
  973. package/vendor/Package.internal.133.mjs +0 -6775
  974. package/vendor/Package.internal.134.cjs +0 -473
  975. package/vendor/Package.internal.134.mjs +0 -459
  976. package/vendor/Package.internal.135.cjs +0 -617
  977. package/vendor/Package.internal.135.mjs +0 -611
  978. package/vendor/Package.internal.136.cjs +0 -97
  979. package/vendor/Package.internal.136.mjs +0 -89
  980. package/vendor/Package.internal.137.cjs +0 -4
  981. package/vendor/Package.internal.137.mjs +0 -2
  982. package/vendor/Package.internal.138.cjs +0 -3753
  983. package/vendor/Package.internal.138.mjs +0 -3751
  984. package/vendor/Package.internal.139.cjs +0 -561
  985. package/vendor/Package.internal.139.mjs +0 -559
  986. package/vendor/Package.internal.140.cjs +0 -4
  987. package/vendor/Package.internal.140.mjs +0 -2
  988. package/vendor/Package.internal.141.cjs +0 -4
  989. package/vendor/Package.internal.141.mjs +0 -2
  990. package/vendor/Package.internal.142.cjs +0 -4
  991. package/vendor/Package.internal.142.mjs +0 -2
  992. package/vendor/Package.internal.143.cjs +0 -4
  993. package/vendor/Package.internal.143.mjs +0 -2
  994. package/vendor/Package.internal.144.cjs +0 -4
  995. package/vendor/Package.internal.144.mjs +0 -2
  996. package/vendor/Package.internal.145.cjs +0 -4
  997. package/vendor/Package.internal.145.mjs +0 -2
  998. package/vendor/Package.internal.146.cjs +0 -4
  999. package/vendor/Package.internal.146.mjs +0 -2
  1000. package/vendor/Package.internal.147.cjs +0 -4
  1001. package/vendor/Package.internal.147.mjs +0 -2
  1002. package/vendor/Package.internal.148.cjs +0 -4
  1003. package/vendor/Package.internal.148.mjs +0 -2
  1004. package/vendor/Package.internal.149.cjs +0 -4
  1005. package/vendor/Package.internal.149.mjs +0 -2
  1006. package/vendor/Package.internal.150.cjs +0 -4
  1007. package/vendor/Package.internal.150.mjs +0 -2
  1008. package/vendor/Package.internal.151.cjs +0 -408
  1009. package/vendor/Package.internal.151.mjs +0 -400
  1010. package/vendor/Package.internal.152.cjs +0 -104
  1011. package/vendor/Package.internal.152.mjs +0 -104
  1012. package/vendor/Package.internal.153.cjs +0 -27
  1013. package/vendor/Package.internal.153.mjs +0 -27
  1014. package/vendor/Package.internal.154.cjs +0 -4
  1015. package/vendor/Package.internal.154.mjs +0 -2
  1016. package/vendor/Package.internal.155.cjs +0 -4
  1017. package/vendor/Package.internal.155.mjs +0 -2
  1018. package/vendor/Package.internal.156.cjs +0 -723
  1019. package/vendor/Package.internal.156.mjs +0 -723
  1020. package/vendor/Package.internal.157.cjs +0 -1548
  1021. package/vendor/Package.internal.157.mjs +0 -1540
  1022. package/vendor/Package.internal.158.cjs +0 -364
  1023. package/vendor/Package.internal.158.mjs +0 -364
  1024. package/vendor/Package.internal.159.cjs +0 -107
  1025. package/vendor/Package.internal.159.mjs +0 -107
  1026. package/vendor/Package.internal.160.cjs +0 -636
  1027. package/vendor/Package.internal.160.mjs +0 -622
  1028. package/vendor/Package.internal.161.cjs +0 -543
  1029. package/vendor/Package.internal.161.mjs +0 -533
  1030. package/vendor/Package.internal.162.cjs +0 -605
  1031. package/vendor/Package.internal.162.mjs +0 -605
  1032. package/vendor/Package.internal.163.cjs +0 -139
  1033. package/vendor/Package.internal.163.mjs +0 -131
  1034. package/vendor/Package.internal.164.cjs +0 -119
  1035. package/vendor/Package.internal.164.mjs +0 -111
  1036. package/vendor/Package.internal.165.cjs +0 -1224
  1037. package/vendor/Package.internal.165.mjs +0 -1214
  1038. package/vendor/Package.internal.166.cjs +0 -90
  1039. package/vendor/Package.internal.166.mjs +0 -98
  1040. package/vendor/Package.internal.167.cjs +0 -4
  1041. package/vendor/Package.internal.167.mjs +0 -2
  1042. package/vendor/Package.internal.168.cjs +0 -4
  1043. package/vendor/Package.internal.168.mjs +0 -2
  1044. package/vendor/Package.internal.169.cjs +0 -55
  1045. package/vendor/Package.internal.169.mjs +0 -55
  1046. package/vendor/Package.internal.170.cjs +0 -10
  1047. package/vendor/Package.internal.170.mjs +0 -10
  1048. package/vendor/Package.internal.171.cjs +0 -12
  1049. package/vendor/Package.internal.171.mjs +0 -6
  1050. package/vendor/Package.internal.172.cjs +0 -165
  1051. package/vendor/Package.internal.172.mjs +0 -163
  1052. package/vendor/Package.internal.173.cjs +0 -23
  1053. package/vendor/Package.internal.173.mjs +0 -15
  1054. package/vendor/Package.internal.174.cjs +0 -251
  1055. package/vendor/Package.internal.174.mjs +0 -249
  1056. package/vendor/Package.internal.175.cjs +0 -949
  1057. package/vendor/Package.internal.175.mjs +0 -947
  1058. package/vendor/Package.internal.176.cjs +0 -27
  1059. package/vendor/Package.internal.176.mjs +0 -27
  1060. package/vendor/Package.internal.177.cjs +0 -80
  1061. package/vendor/Package.internal.177.mjs +0 -72
  1062. package/vendor/Package.internal.178.cjs +0 -655
  1063. package/vendor/Package.internal.178.mjs +0 -653
  1064. package/vendor/Package.internal.179.cjs +0 -77
  1065. package/vendor/Package.internal.179.mjs +0 -75
  1066. package/vendor/Package.internal.181.cjs +0 -70
  1067. package/vendor/Package.internal.181.mjs +0 -68
  1068. package/vendor/Package.internal.182.cjs +0 -112
  1069. package/vendor/Package.internal.182.mjs +0 -110
  1070. package/vendor/Package.internal.183.cjs +0 -102
  1071. package/vendor/Package.internal.183.mjs +0 -100
  1072. package/vendor/Package.internal.184.cjs +0 -45450
  1073. package/vendor/Package.internal.184.mjs +0 -45432
  1074. package/vendor/Package.internal.185.cjs +0 -8
  1075. package/vendor/Package.internal.185.mjs +0 -6
  1076. package/vendor/Package.internal.186.cjs +0 -30
  1077. package/vendor/Package.internal.186.mjs +0 -28
  1078. package/vendor/Package.internal.187.cjs +0 -317
  1079. package/vendor/Package.internal.187.mjs +0 -315
  1080. package/vendor/Package.internal.188.cjs +0 -943
  1081. package/vendor/Package.internal.188.mjs +0 -951
  1082. package/vendor/Package.internal.189.cjs +0 -1090
  1083. package/vendor/Package.internal.189.mjs +0 -1090
  1084. package/vendor/Package.internal.190.cjs +0 -165
  1085. package/vendor/Package.internal.190.mjs +0 -165
  1086. package/vendor/Package.internal.191.cjs +0 -15
  1087. package/vendor/Package.internal.191.mjs +0 -13
  1088. package/vendor/Package.internal.192.cjs +0 -14
  1089. package/vendor/Package.internal.192.mjs +0 -12
  1090. package/vendor/Package.internal.193.cjs +0 -49
  1091. package/vendor/Package.internal.193.mjs +0 -47
  1092. package/vendor/Package.internal.194.cjs +0 -493
  1093. package/vendor/Package.internal.194.mjs +0 -471
  1094. package/vendor/Package.internal.195.cjs +0 -4
  1095. package/vendor/Package.internal.195.mjs +0 -2
  1096. package/vendor/Package.internal.196.cjs +0 -4
  1097. package/vendor/Package.internal.196.mjs +0 -2
  1098. package/vendor/Package.internal.197.cjs +0 -4
  1099. package/vendor/Package.internal.197.mjs +0 -2
  1100. package/vendor/Package.internal.198.cjs +0 -4
  1101. package/vendor/Package.internal.198.mjs +0 -2
  1102. package/vendor/Package.internal.199.cjs +0 -4
  1103. package/vendor/Package.internal.199.mjs +0 -2
  1104. package/vendor/Package.internal.200.cjs +0 -4
  1105. package/vendor/Package.internal.200.mjs +0 -2
  1106. package/vendor/Package.internal.201.cjs +0 -4
  1107. package/vendor/Package.internal.201.mjs +0 -2
  1108. package/vendor/Package.internal.202.cjs +0 -4
  1109. package/vendor/Package.internal.202.mjs +0 -2
  1110. package/vendor/Package.internal.60.cjs +0 -27
  1111. package/vendor/Package.internal.60.mjs +0 -27
  1112. package/vendor/Package.internal.61.cjs +0 -4
  1113. package/vendor/Package.internal.61.mjs +0 -2
  1114. package/vendor/Package.internal.62.cjs +0 -200
  1115. package/vendor/Package.internal.62.mjs +0 -200
  1116. package/vendor/Package.internal.63.cjs +0 -4019
  1117. package/vendor/Package.internal.63.mjs +0 -4027
  1118. package/vendor/Package.internal.64.cjs +0 -4
  1119. package/vendor/Package.internal.64.mjs +0 -2
  1120. package/vendor/Package.internal.65.cjs +0 -321
  1121. package/vendor/Package.internal.65.mjs +0 -321
  1122. package/vendor/Package.internal.66.cjs +0 -365
  1123. package/vendor/Package.internal.66.mjs +0 -363
  1124. package/vendor/Package.internal.67.cjs +0 -403
  1125. package/vendor/Package.internal.67.mjs +0 -395
  1126. package/vendor/Package.internal.68.cjs +0 -127
  1127. package/vendor/Package.internal.68.mjs +0 -125
  1128. package/vendor/Package.internal.69.cjs +0 -31
  1129. package/vendor/Package.internal.69.mjs +0 -29
  1130. package/vendor/Package.internal.70.cjs +0 -87
  1131. package/vendor/Package.internal.70.mjs +0 -85
  1132. package/vendor/Package.internal.71.cjs +0 -61
  1133. package/vendor/Package.internal.71.mjs +0 -59
  1134. package/vendor/Package.internal.72.cjs +0 -34
  1135. package/vendor/Package.internal.72.mjs +0 -32
  1136. package/vendor/Package.internal.73.cjs +0 -4
  1137. package/vendor/Package.internal.73.mjs +0 -2
  1138. package/vendor/Package.internal.74.cjs +0 -684
  1139. package/vendor/Package.internal.74.mjs +0 -662
  1140. package/vendor/Package.internal.75.cjs +0 -13896
  1141. package/vendor/Package.internal.75.mjs +0 -13870
  1142. package/vendor/Package.internal.76.cjs +0 -37
  1143. package/vendor/Package.internal.76.mjs +0 -31
  1144. package/vendor/Package.internal.77.cjs +0 -4077
  1145. package/vendor/Package.internal.77.mjs +0 -4077
  1146. package/vendor/Package.internal.78.cjs +0 -1664
  1147. package/vendor/Package.internal.78.mjs +0 -1664
  1148. package/vendor/Package.internal.79.cjs +0 -259
  1149. package/vendor/Package.internal.79.mjs +0 -257
  1150. package/vendor/Package.internal.80.cjs +0 -4964
  1151. package/vendor/Package.internal.80.mjs +0 -4948
  1152. package/vendor/Package.internal.81.cjs +0 -1239
  1153. package/vendor/Package.internal.81.mjs +0 -1225
  1154. package/vendor/Package.internal.82.cjs +0 -340
  1155. package/vendor/Package.internal.82.mjs +0 -326
  1156. package/vendor/Package.internal.83.cjs +0 -34
  1157. package/vendor/Package.internal.83.mjs +0 -32
  1158. package/vendor/Package.internal.84.cjs +0 -88
  1159. package/vendor/Package.internal.84.mjs +0 -88
  1160. package/vendor/Package.internal.85.cjs +0 -55
  1161. package/vendor/Package.internal.85.mjs +0 -55
  1162. package/vendor/Package.internal.86.cjs +0 -15
  1163. package/vendor/Package.internal.86.mjs +0 -13
  1164. package/vendor/Package.internal.87.cjs +0 -1355
  1165. package/vendor/Package.internal.87.mjs +0 -1355
  1166. package/vendor/Package.internal.88.cjs +0 -12
  1167. package/vendor/Package.internal.88.mjs +0 -6
  1168. package/vendor/Package.internal.89.cjs +0 -4
  1169. package/vendor/Package.internal.89.mjs +0 -2
  1170. package/vendor/Package.internal.90.cjs +0 -351
  1171. package/vendor/Package.internal.90.mjs +0 -351
  1172. package/vendor/Package.internal.91.cjs +0 -80
  1173. package/vendor/Package.internal.91.mjs +0 -80
  1174. package/vendor/Package.internal.92.cjs +0 -1445
  1175. package/vendor/Package.internal.92.mjs +0 -1433
  1176. package/vendor/Package.internal.93.cjs +0 -144
  1177. package/vendor/Package.internal.93.mjs +0 -142
  1178. package/vendor/Package.internal.94.cjs +0 -1822
  1179. package/vendor/Package.internal.94.mjs +0 -1814
  1180. package/vendor/Package.internal.95.cjs +0 -130
  1181. package/vendor/Package.internal.95.mjs +0 -124
  1182. package/vendor/Package.internal.96.cjs +0 -208
  1183. package/vendor/Package.internal.96.mjs +0 -208
  1184. package/vendor/Package.internal.97.cjs +0 -1641
  1185. package/vendor/Package.internal.97.mjs +0 -1641
  1186. package/vendor/Package.internal.98.cjs +0 -74
  1187. package/vendor/Package.internal.98.mjs +0 -74
  1188. package/vendor/Package.internal.99.cjs +0 -28
  1189. package/vendor/Package.internal.99.mjs +0 -28
@@ -1,2170 +1,26 @@
1
- /* Build Date: Mon Nov 24 2025 18:02:01 GMT+0800 (China Standard Time) */
1
+ /* Build Date: Mon Nov 24 2025 18:10:51 GMT+0800 (China Standard Time) */
2
2
  "use strict";
3
3
 
4
- const e = require("./Package.internal.8.cjs");
4
+ const e = require("./Package.internal.51.cjs");
5
5
 
6
- const t = require("url");
6
+ var t = {};
7
7
 
8
- const r = require("util");
9
-
10
- function n(e) {
11
- if (e && e.__esModule) return e;
12
- const t = Object.create(null, {
13
- [Symbol.toStringTag]: {
14
- value: "Module"
15
- }
16
- });
17
- if (e) {
18
- for (const r in e) {
19
- if (r !== "default") {
20
- const n = Object.getOwnPropertyDescriptor(e, r);
21
- Object.defineProperty(t, r, n.get ? n : {
22
- enumerable: true,
23
- get: () => e[r]
24
- });
25
- }
26
- }
27
- }
28
- t.default = e;
29
- return Object.freeze(t);
30
- }
31
-
32
- const o = n(t);
33
-
34
- const s = n(r);
35
-
36
- exports.lib = {};
37
-
38
- var i = {
39
- exports: {}
40
- };
41
-
42
- var a = class AssertError extends Error {
43
- name="AssertError";
44
- constructor(e, t) {
45
- super(e || "Unknown error");
46
- if (typeof Error.captureStackTrace === "function") {
47
- Error.captureStackTrace(this, t);
48
- }
49
- }
50
- };
51
-
52
- var c = function(...e) {
53
- try {
54
- return JSON.stringify(...e);
55
- } catch (e) {
56
- return "[Cannot display object: " + e.message + "]";
57
- }
58
- };
59
-
60
- i.exports;
61
-
62
- const A = a;
63
-
64
- const l = c;
65
-
66
- const f = i.exports = function(e, ...t) {
67
- if (e) {
68
- return;
69
- }
70
- if (t.length === 1 && t[0] instanceof Error) {
71
- throw t[0];
72
- }
73
- const r = t.filter(e => e !== "").map(e => typeof e === "string" ? e : e instanceof Error ? e.message : l(e));
74
- throw new A(r.join(" "), f);
75
- };
76
-
77
- var u = i.exports;
78
-
79
- const E = e.getDefaultExportFromCjs(u);
80
-
81
- const N = u;
82
-
83
- const O = {};
84
-
85
- var S = function(e, t, r) {
86
- if (t === false || t === null || t === undefined) {
87
- return e;
88
- }
89
- r = r || {};
90
- if (typeof r === "string") {
91
- r = {
92
- separator: r
93
- };
94
- }
95
- const n = Array.isArray(t);
96
- N(!n || !r.separator, "Separator option is not valid for array-based chain");
97
- const o = n ? t : t.split(r.separator || ".");
98
- let s = e;
99
- for (let e = 0; e < o.length; ++e) {
100
- let n = o[e];
101
- const i = r.iterables && O.iterables(s);
102
- if (Array.isArray(s) || i === "set") {
103
- const e = Number(n);
104
- if (Number.isInteger(e)) {
105
- n = e < 0 ? s.length + e : e;
106
- }
107
- }
108
- if (!s || typeof s === "function" && r.functions === false || !i && s[n] === undefined) {
109
- N(!r.strict || e + 1 === o.length, "Missing segment", n, "in reach path ", t);
110
- N(typeof s === "object" || r.functions === true || typeof s !== "function", "Invalid segment", n, "in reach path ", t);
111
- s = r.default;
112
- break;
113
- }
114
- if (!i) {
115
- s = s[n];
116
- } else if (i === "set") {
117
- s = [ ...s ][n];
118
- } else {
119
- s = s.get(n);
120
- }
121
- }
122
- return s;
123
- };
124
-
125
- O.iterables = function(e) {
126
- if (e instanceof Set) {
127
- return "set";
128
- }
129
- if (e instanceof Map) {
130
- return "map";
131
- }
132
- };
133
-
134
- var I = {
135
- exports: {}
136
- };
137
-
138
- I.exports;
139
-
140
- (function(e, t) {
141
- const r = {};
142
- t = e.exports = {
143
- array: Array.prototype,
144
- buffer: Buffer && Buffer.prototype,
145
- date: Date.prototype,
146
- error: Error.prototype,
147
- generic: Object.prototype,
148
- map: Map.prototype,
149
- promise: Promise.prototype,
150
- regex: RegExp.prototype,
151
- set: Set.prototype,
152
- url: URL.prototype,
153
- weakMap: WeakMap.prototype,
154
- weakSet: WeakSet.prototype
155
- };
156
- r.typeMap = new Map([ [ "[object Error]", t.error ], [ "[object Map]", t.map ], [ "[object Promise]", t.promise ], [ "[object Set]", t.set ], [ "[object URL]", t.url ], [ "[object WeakMap]", t.weakMap ], [ "[object WeakSet]", t.weakSet ] ]);
157
- t.getInternalProto = function(e) {
158
- if (Array.isArray(e)) {
159
- return t.array;
160
- }
161
- if (Buffer && e instanceof Buffer) {
162
- return t.buffer;
163
- }
164
- if (e instanceof Date) {
165
- return t.date;
166
- }
167
- if (e instanceof RegExp) {
168
- return t.regex;
169
- }
170
- if (e instanceof Error) {
171
- return t.error;
172
- }
173
- const n = Object.prototype.toString.call(e);
174
- return r.typeMap.get(n) || t.generic;
175
- };
176
- })(I, I.exports);
177
-
178
- var R = I.exports;
179
-
180
- var p = {};
181
-
182
- p.keys = function(e, t = {}) {
183
- return t.symbols !== false ? Reflect.ownKeys(e) : Object.getOwnPropertyNames(e);
184
- };
185
-
186
- const T = S;
187
-
188
- const C = R;
189
-
190
- const L = p;
191
-
192
- const M = {
193
- needsProtoHack: new Set([ C.set, C.map, C.weakSet, C.weakMap ]),
194
- structuredCloneExists: typeof structuredClone === "function"
195
- };
196
-
197
- var d = M.clone = function(e, t = {}, r = null) {
198
- if (typeof e !== "object" || e === null) {
199
- return e;
200
- }
201
- let n = M.clone;
202
- let o = r;
203
- if (t.shallow) {
204
- if (t.shallow !== true) {
205
- return M.cloneWithShallow(e, t);
206
- }
207
- n = e => e;
208
- } else if (o) {
209
- const t = o.get(e);
210
- if (t) {
211
- return t;
212
- }
213
- } else {
214
- o = new Map;
215
- }
216
- const s = C.getInternalProto(e);
217
- switch (s) {
218
- case C.buffer:
219
- return Buffer?.from(e);
220
-
221
- case C.date:
222
- return new Date(e.getTime());
223
-
224
- case C.regex:
225
- case C.url:
226
- return new s.constructor(e);
227
- }
228
- const i = M.base(e, s, t);
229
- if (i === e) {
230
- return e;
231
- }
232
- if (o) {
233
- o.set(e, i);
234
- }
235
- if (s === C.set) {
236
- for (const r of e) {
237
- i.add(n(r, t, o));
238
- }
239
- } else if (s === C.map) {
240
- for (const [r, s] of e) {
241
- i.set(r, n(s, t, o));
242
- }
243
- }
244
- const a = L.keys(e, t);
245
- for (const r of a) {
246
- if (r === "__proto__") {
247
- continue;
248
- }
249
- if (s === C.array && r === "length") {
250
- i.length = e.length;
251
- continue;
252
- }
253
- if (M.structuredCloneExists && s === C.error && r === "stack") {
254
- continue;
255
- }
256
- const a = Object.getOwnPropertyDescriptor(e, r);
257
- if (a) {
258
- if (a.get || a.set) {
259
- Object.defineProperty(i, r, a);
260
- } else if (a.enumerable) {
261
- i[r] = n(e[r], t, o);
262
- } else {
263
- Object.defineProperty(i, r, {
264
- enumerable: false,
265
- writable: true,
266
- configurable: true,
267
- value: n(e[r], t, o)
268
- });
269
- }
270
- } else {
271
- Object.defineProperty(i, r, {
272
- enumerable: true,
273
- writable: true,
274
- configurable: true,
275
- value: n(e[r], t, o)
276
- });
277
- }
278
- }
279
- return i;
280
- };
281
-
282
- M.cloneWithShallow = function(e, t) {
283
- const r = t.shallow;
284
- t = Object.assign({}, t);
285
- t.shallow = false;
286
- const n = new Map;
287
- for (const t of r) {
288
- const r = T(e, t);
289
- if (typeof r === "object" || typeof r === "function") {
290
- n.set(r, r);
291
- }
292
- }
293
- return M.clone(e, t, n);
294
- };
295
-
296
- M.base = function(e, t, r) {
297
- if (r.prototype === false) {
298
- if (M.needsProtoHack.has(t)) {
299
- return new t.constructor;
300
- }
301
- return t === C.array ? [] : {};
302
- }
303
- const n = Object.getPrototypeOf(e);
304
- if (n && n.isImmutable) {
305
- return e;
306
- }
307
- if (t === C.array) {
308
- const e = [];
309
- if (n !== t) {
310
- Object.setPrototypeOf(e, n);
311
- }
312
- return e;
313
- } else if (t === C.error && M.structuredCloneExists && (n === t || Error.isPrototypeOf(n.constructor))) {
314
- const t = structuredClone(e);
315
- if (Object.getPrototypeOf(t) !== n) {
316
- Object.setPrototypeOf(t, n);
317
- }
318
- return t;
319
- }
320
- if (M.needsProtoHack.has(t)) {
321
- const e = new n.constructor;
322
- if (n !== t) {
323
- Object.setPrototypeOf(e, n);
324
- }
325
- return e;
326
- }
327
- return Object.create(n);
328
- };
329
-
330
- const D = u;
331
-
332
- const B = d;
333
-
334
- const h = p;
335
-
336
- const G = {};
337
-
338
- var m = G.merge = function(e, t, r) {
339
- D(e && typeof e === "object", "Invalid target value: must be an object");
340
- D(t === null || t === undefined || typeof t === "object", "Invalid source value: must be null, undefined, or an object");
341
- if (!t) {
342
- return e;
343
- }
344
- r = Object.assign({
345
- nullOverride: true,
346
- mergeArrays: true
347
- }, r);
348
- if (Array.isArray(t)) {
349
- D(Array.isArray(e), "Cannot merge array onto an object");
350
- if (!r.mergeArrays) {
351
- e.length = 0;
352
- }
353
- for (let n = 0; n < t.length; ++n) {
354
- e.push(B(t[n], {
355
- symbols: r.symbols
356
- }));
357
- }
358
- return e;
359
- }
360
- const n = h.keys(t, r);
361
- for (let o = 0; o < n.length; ++o) {
362
- const s = n[o];
363
- if (s === "__proto__" || !Object.prototype.propertyIsEnumerable.call(t, s)) {
364
- continue;
365
- }
366
- const i = t[s];
367
- if (i && typeof i === "object") {
368
- if (e[s] === i) {
369
- continue;
370
- }
371
- if (!e[s] || typeof e[s] !== "object" || Array.isArray(e[s]) !== Array.isArray(i) || i instanceof Date || Buffer && Buffer.isBuffer(i) || i instanceof RegExp) {
372
- e[s] = B(i, {
373
- symbols: r.symbols
374
- });
375
- } else {
376
- G.merge(e[s], i, r);
377
- }
378
- } else {
379
- if (i !== null && i !== undefined) {
380
- e[s] = i;
381
- } else if (r.nullOverride) {
382
- e[s] = i;
383
- }
384
- }
385
- }
386
- return e;
387
- };
388
-
389
- const y = u;
390
-
391
- const P = d;
392
-
393
- const g = m;
394
-
395
- const U = S;
396
-
397
- const X = {};
398
-
399
- var b = function(e, t, r = {}) {
400
- y(e && typeof e === "object", "Invalid defaults value: must be an object");
401
- y(!t || t === true || typeof t === "object", "Invalid source value: must be true, falsy or an object");
402
- y(typeof r === "object", "Invalid options: must be an object");
403
- if (!t) {
404
- return null;
405
- }
406
- if (r.shallow) {
407
- return X.applyToDefaultsWithShallow(e, t, r);
408
- }
409
- const n = P(e);
410
- if (t === true) {
411
- return n;
412
- }
413
- const o = r.nullOverride !== undefined ? r.nullOverride : false;
414
- return g(n, t, {
415
- nullOverride: o,
416
- mergeArrays: false
417
- });
418
- };
419
-
420
- X.applyToDefaultsWithShallow = function(e, t, r) {
421
- const n = r.shallow;
422
- y(Array.isArray(n), "Invalid keys");
423
- const o = new Map;
424
- const s = t === true ? null : new Set;
425
- for (let r of n) {
426
- r = Array.isArray(r) ? r : r.split(".");
427
- const n = U(e, r);
428
- if (n && typeof n === "object") {
429
- o.set(n, s && U(t, r) || n);
430
- } else if (s) {
431
- s.add(r);
432
- }
433
- }
434
- const i = P(e, {}, o);
435
- if (!s) {
436
- return i;
437
- }
438
- for (const e of s) {
439
- X.reachCopy(i, t, e);
440
- }
441
- const a = r.nullOverride !== undefined ? r.nullOverride : false;
442
- return g(i, t, {
443
- nullOverride: a,
444
- mergeArrays: false
445
- });
446
- };
447
-
448
- X.reachCopy = function(e, t, r) {
449
- for (const e of r) {
450
- if (!(e in t)) {
451
- return;
452
- }
453
- const r = t[e];
454
- if (typeof r !== "object" || r === null) {
455
- return;
456
- }
457
- t = r;
458
- }
459
- const n = t;
460
- let o = e;
461
- for (let e = 0; e < r.length - 1; ++e) {
462
- const t = r[e];
463
- if (typeof o[t] !== "object") {
464
- o[t] = {};
465
- }
466
- o = o[t];
467
- }
468
- o[r[r.length - 1]] = n;
469
- };
470
-
471
- const H = {};
472
-
473
- var F = H.Bench = class {
474
- constructor() {
475
- this.ts = 0;
476
- this.reset();
477
- }
478
- reset() {
479
- this.ts = H.Bench.now();
480
- }
481
- elapsed() {
482
- return H.Bench.now() - this.ts;
483
- }
484
- static now() {
485
- const e = process.hrtime();
486
- return e[0] * 1e3 + e[1] / 1e6;
487
- }
488
- };
489
-
490
- var v = function() {};
491
-
492
- const w = v;
493
-
494
- var K = function() {
495
- return new Promise(w);
496
- };
497
-
498
- const Y = R;
499
-
500
- const x = {
501
- mismatched: null
502
- };
503
-
504
- var _ = function(e, t, r) {
505
- r = Object.assign({
506
- prototype: true
507
- }, r);
508
- return !!x.isDeepEqual(e, t, r, []);
509
- };
510
-
511
- x.isDeepEqual = function(e, t, r, n) {
512
- if (e === t) {
513
- return e !== 0 || 1 / e === 1 / t;
514
- }
515
- const o = typeof e;
516
- if (o !== typeof t) {
517
- return false;
518
- }
519
- if (e === null || t === null) {
520
- return false;
521
- }
522
- if (o === "function") {
523
- if (!r.deepFunction || e.toString() !== t.toString()) {
524
- return false;
525
- }
526
- } else if (o !== "object") {
527
- return e !== e && t !== t;
528
- }
529
- const s = x.getSharedType(e, t, !!r.prototype);
530
- switch (s) {
531
- case Y.buffer:
532
- return Buffer && Buffer.prototype.equals.call(e, t);
533
-
534
- case Y.promise:
535
- return e === t;
536
-
537
- case Y.regex:
538
- case Y.url:
539
- return e.toString() === t.toString();
540
-
541
- case x.mismatched:
542
- return false;
543
- }
544
- for (let r = n.length - 1; r >= 0; --r) {
545
- if (n[r].isSame(e, t)) {
546
- return true;
547
- }
548
- }
549
- n.push(new x.SeenEntry(e, t));
550
- try {
551
- return !!x.isDeepEqualObj(s, e, t, r, n);
552
- } finally {
553
- n.pop();
554
- }
555
- };
556
-
557
- x.getSharedType = function(e, t, r) {
558
- if (r) {
559
- if (Object.getPrototypeOf(e) !== Object.getPrototypeOf(t)) {
560
- return x.mismatched;
561
- }
562
- return Y.getInternalProto(e);
563
- }
564
- const n = Y.getInternalProto(e);
565
- if (n !== Y.getInternalProto(t)) {
566
- return x.mismatched;
567
- }
568
- return n;
569
- };
570
-
571
- x.valueOf = function(e) {
572
- const t = e.valueOf;
573
- if (t === undefined) {
574
- return e;
575
- }
576
- try {
577
- return t.call(e);
578
- } catch (e) {
579
- return e;
580
- }
581
- };
582
-
583
- x.hasOwnEnumerableProperty = function(e, t) {
584
- return Object.prototype.propertyIsEnumerable.call(e, t);
585
- };
586
-
587
- x.isSetSimpleEqual = function(e, t) {
588
- for (const r of Set.prototype.values.call(e)) {
589
- if (!Set.prototype.has.call(t, r)) {
590
- return false;
591
- }
592
- }
593
- return true;
594
- };
595
-
596
- x.isDeepEqualObj = function(e, t, r, n, o) {
597
- const {isDeepEqual: s, valueOf: i, hasOwnEnumerableProperty: a} = x;
598
- const {keys: c, getOwnPropertySymbols: A} = Object;
599
- if (e === Y.array) {
600
- if (n.part) {
601
- for (const e of t) {
602
- for (const t of r) {
603
- if (s(e, t, n, o)) {
604
- return true;
605
- }
606
- }
607
- }
608
- } else {
609
- if (t.length !== r.length) {
610
- return false;
611
- }
612
- for (let e = 0; e < t.length; ++e) {
613
- if (!s(t[e], r[e], n, o)) {
614
- return false;
615
- }
616
- }
617
- return true;
618
- }
619
- } else if (e === Y.set) {
620
- if (t.size !== r.size) {
621
- return false;
622
- }
623
- if (!x.isSetSimpleEqual(t, r)) {
624
- const e = new Set(Set.prototype.values.call(r));
625
- for (const r of Set.prototype.values.call(t)) {
626
- if (e.delete(r)) {
627
- continue;
628
- }
629
- let t = false;
630
- for (const i of e) {
631
- if (s(r, i, n, o)) {
632
- e.delete(i);
633
- t = true;
634
- break;
635
- }
636
- }
637
- if (!t) {
638
- return false;
639
- }
640
- }
641
- }
642
- } else if (e === Y.map) {
643
- if (t.size !== r.size) {
644
- return false;
645
- }
646
- for (const [e, i] of Map.prototype.entries.call(t)) {
647
- if (i === undefined && !Map.prototype.has.call(r, e)) {
648
- return false;
649
- }
650
- if (!s(i, Map.prototype.get.call(r, e), n, o)) {
651
- return false;
652
- }
653
- }
654
- } else if (e === Y.error) {
655
- if (t.name !== r.name || t.message !== r.message) {
656
- return false;
657
- }
658
- }
659
- const l = i(t);
660
- const f = i(r);
661
- if ((t !== l || r !== f) && !s(l, f, n, o)) {
662
- return false;
663
- }
664
- const u = c(t);
665
- if (!n.part && u.length !== c(r).length && !n.skip) {
666
- return false;
667
- }
668
- let E = 0;
669
- for (const e of u) {
670
- if (n.skip && n.skip.includes(e)) {
671
- if (r[e] === undefined) {
672
- ++E;
673
- }
674
- continue;
675
- }
676
- if (!a(r, e)) {
677
- return false;
678
- }
679
- if (!s(t[e], r[e], n, o)) {
680
- return false;
681
- }
682
- }
683
- if (!n.part && u.length - E !== c(r).length) {
684
- return false;
685
- }
686
- if (n.symbols !== false) {
687
- const e = A(t);
688
- const i = new Set(A(r));
689
- for (const c of e) {
690
- if (!n.skip?.includes(c)) {
691
- if (a(t, c)) {
692
- if (!a(r, c)) {
693
- return false;
694
- }
695
- if (!s(t[c], r[c], n, o)) {
696
- return false;
697
- }
698
- } else if (a(r, c)) {
699
- return false;
700
- }
701
- }
702
- i.delete(c);
703
- }
704
- for (const e of i) {
705
- if (a(r, e)) {
706
- return false;
707
- }
708
- }
709
- }
710
- return true;
711
- };
712
-
713
- x.SeenEntry = class {
714
- constructor(e, t) {
715
- this.obj = e;
716
- this.ref = t;
717
- }
718
- isSame(e, t) {
719
- return this.obj === e && this.ref === t;
720
- }
721
- };
722
-
723
- var V = function(e) {
724
- return e.replace(/[\^\$\.\*\+\-\?\=\!\:\|\\\/\(\)\[\]\{\}\,]/g, "\\$&");
725
- };
726
-
727
- const W = e.getDefaultExportFromCjs(V);
728
-
729
- const j = u;
730
-
731
- const Z = _;
732
-
733
- const J = V;
734
-
735
- const k = p;
736
-
737
- const Q = {};
738
-
739
- var $ = function(e, t, r = {}) {
740
- if (typeof t !== "object") {
741
- t = [ t ];
742
- }
743
- j(!Array.isArray(t) || t.length, "Values array cannot be empty");
744
- if (typeof e === "string") {
745
- return Q.string(e, t, r);
746
- }
747
- if (Array.isArray(e)) {
748
- return Q.array(e, t, r);
749
- }
750
- j(typeof e === "object", "Reference must be string or an object");
751
- return Q.object(e, t, r);
752
- };
753
-
754
- Q.array = function(e, t, r) {
755
- if (!Array.isArray(t)) {
756
- t = [ t ];
757
- }
758
- if (!e.length) {
759
- return false;
760
- }
761
- if (r.only && r.once && e.length !== t.length) {
762
- return false;
763
- }
764
- let n;
765
- const o = new Map;
766
- for (const e of t) {
767
- if (!r.deep || !e || typeof e !== "object") {
768
- const t = o.get(e);
769
- if (t) {
770
- ++t.allowed;
771
- } else {
772
- o.set(e, {
773
- allowed: 1,
774
- hits: 0
775
- });
776
- }
777
- } else {
778
- n = n ?? Q.compare(r);
779
- let t = false;
780
- for (const [r, s] of o.entries()) {
781
- if (n(r, e)) {
782
- ++s.allowed;
783
- t = true;
784
- break;
785
- }
786
- }
787
- if (!t) {
788
- o.set(e, {
789
- allowed: 1,
790
- hits: 0
791
- });
792
- }
793
- }
794
- }
795
- let s = 0;
796
- for (const t of e) {
797
- let e;
798
- if (!r.deep || !t || typeof t !== "object") {
799
- e = o.get(t);
800
- } else {
801
- n = n ?? Q.compare(r);
802
- for (const [r, s] of o.entries()) {
803
- if (n(r, t)) {
804
- e = s;
805
- break;
806
- }
807
- }
808
- }
809
- if (e) {
810
- ++e.hits;
811
- ++s;
812
- if (r.once && e.hits > e.allowed) {
813
- return false;
814
- }
815
- }
816
- }
817
- if (r.only && s !== e.length) {
818
- return false;
819
- }
820
- for (const e of o.values()) {
821
- if (e.hits === e.allowed) {
822
- continue;
823
- }
824
- if (e.hits < e.allowed && !r.part) {
825
- return false;
826
- }
827
- }
828
- return !!s;
829
- };
830
-
831
- Q.object = function(e, t, r) {
832
- j(r.once === undefined, "Cannot use option once with object");
833
- const n = k.keys(e, r);
834
- if (!n.length) {
835
- return false;
836
- }
837
- if (Array.isArray(t)) {
838
- return Q.array(n, t, r);
839
- }
840
- const o = Object.getOwnPropertySymbols(t).filter(e => t.propertyIsEnumerable(e));
841
- const s = [ ...Object.keys(t), ...o ];
842
- const i = Q.compare(r);
843
- const a = new Set(s);
844
- for (const o of n) {
845
- if (!a.has(o)) {
846
- if (r.only) {
847
- return false;
848
- }
849
- continue;
850
- }
851
- if (!i(t[o], e[o])) {
852
- return false;
853
- }
854
- a.delete(o);
855
- }
856
- if (a.size) {
857
- return r.part ? a.size < s.length : false;
858
- }
859
- return true;
860
- };
861
-
862
- Q.string = function(e, t, r) {
863
- if (e === "") {
864
- return t.length === 1 && t[0] === "" || !r.once && !t.some(e => e !== "");
865
- }
866
- const n = new Map;
867
- const o = [];
868
- for (const e of t) {
869
- j(typeof e === "string", "Cannot compare string reference to non-string value");
870
- if (e) {
871
- const t = n.get(e);
872
- if (t) {
873
- ++t.allowed;
874
- } else {
875
- n.set(e, {
876
- allowed: 1,
877
- hits: 0
878
- });
879
- o.push(J(e));
880
- }
881
- } else if (r.once || r.only) {
882
- return false;
883
- }
884
- }
885
- if (!o.length) {
886
- return true;
887
- }
888
- const s = new RegExp(`(${o.join("|")})`, "g");
889
- const i = e.replace(s, (e, t) => {
890
- ++n.get(t).hits;
891
- return "";
892
- });
893
- if (r.only && i) {
894
- return false;
895
- }
896
- let a = false;
897
- for (const e of n.values()) {
898
- if (e.hits) {
899
- a = true;
900
- }
901
- if (e.hits === e.allowed) {
902
- continue;
903
- }
904
- if (e.hits < e.allowed && !r.part) {
905
- return false;
906
- }
907
- if (r.once) {
908
- return false;
909
- }
910
- }
911
- return !!a;
912
- };
913
-
914
- Q.compare = function(e) {
915
- if (!e.deep) {
916
- return Q.shallow;
917
- }
918
- const t = e.only !== undefined;
919
- const r = e.part !== undefined;
920
- const n = {
921
- prototype: t ? e.only : r ? !e.part : false,
922
- part: t ? !e.only : r ? e.part : false
923
- };
924
- return (e, t) => Z(e, t, n);
925
- };
926
-
927
- Q.shallow = function(e, t) {
928
- return e === t;
929
- };
930
-
931
- const q = u;
932
-
933
- var z = function(e) {
934
- q(/^[ \w\!#\$%&'\(\)\*\+,\-\.\/\:;<\=>\?@\[\]\^`\{\|\}~\"\\]*$/.test(e), "Bad attribute value (" + e + ")");
935
- return e.replace(/\\/g, "\\\\").replace(/\"/g, '\\"');
936
- };
937
-
938
- const ee = {};
939
-
940
- var te = function(e) {
941
- if (!e) {
942
- return "";
943
- }
944
- let t = "";
945
- for (let r = 0; r < e.length; ++r) {
946
- const n = e.charCodeAt(r);
947
- if (ee.isSafe(n)) {
948
- t += e[r];
949
- } else {
950
- t += ee.escapeHtmlChar(n);
951
- }
952
- }
953
- return t;
954
- };
955
-
956
- ee.escapeHtmlChar = function(e) {
957
- const t = ee.namedHtml.get(e);
958
- if (t) {
959
- return t;
960
- }
961
- if (e >= 256) {
962
- return "&#" + e + ";";
963
- }
964
- const r = e.toString(16).padStart(2, "0");
965
- return `&#x${r};`;
966
- };
967
-
968
- ee.isSafe = function(e) {
969
- return ee.safeCharCodes.has(e);
970
- };
971
-
972
- ee.namedHtml = new Map([ [ 38, "&amp;" ], [ 60, "&lt;" ], [ 62, "&gt;" ], [ 34, "&quot;" ], [ 160, "&nbsp;" ], [ 162, "&cent;" ], [ 163, "&pound;" ], [ 164, "&curren;" ], [ 169, "&copy;" ], [ 174, "&reg;" ] ]);
973
-
974
- ee.safeCharCodes = function() {
975
- const e = new Set;
976
- for (let t = 32; t < 123; ++t) {
977
- if (t >= 97 || t >= 65 && t <= 90 || t >= 48 && t <= 57 || t === 32 || t === 46 || t === 44 || t === 45 || t === 58 || t === 95) {
978
- e.add(t);
979
- }
980
- }
981
- return e;
982
- }();
983
-
984
- const re = {};
985
-
986
- var ne = function(e) {
987
- if (!e) {
988
- return "";
989
- }
990
- return e.replace(/[<>&\u2028\u2029]/g, re.escape);
991
- };
992
-
993
- re.escape = function(e) {
994
- return re.replacements.get(e);
995
- };
996
-
997
- re.replacements = new Map([ [ "<", "\\u003c" ], [ ">", "\\u003e" ], [ "&", "\\u0026" ], [ "\u2028", "\\u2028" ], [ "\u2029", "\\u2029" ] ]);
998
-
999
- const oe = {};
1000
-
1001
- var se = oe.flatten = function(e, t) {
1002
- const r = t || [];
1003
- for (const t of e) {
1004
- if (Array.isArray(t)) {
1005
- oe.flatten(t, r);
1006
- } else {
1007
- r.push(t);
1008
- }
1009
- }
1010
- return r;
1011
- };
1012
-
1013
- const ie = {};
1014
-
1015
- var ae = function(e, t, r = {}) {
1016
- if (!e || !t) {
1017
- return r.first ? null : [];
1018
- }
1019
- const n = [];
1020
- const o = Array.isArray(e) ? new Set(e) : e;
1021
- const s = new Set;
1022
- for (const e of t) {
1023
- if (ie.has(o, e) && !s.has(e)) {
1024
- if (r.first) {
1025
- return e;
1026
- }
1027
- n.push(e);
1028
- s.add(e);
1029
- }
1030
- }
1031
- return r.first ? null : n;
1032
- };
1033
-
1034
- ie.has = function(e, t) {
1035
- if (typeof e.has === "function") {
1036
- return e.has(t);
1037
- }
1038
- return e[t] !== undefined;
1039
- };
1040
-
1041
- var ce = function(e) {
1042
- return typeof e?.then === "function";
1043
- };
1044
-
1045
- const Ae = {
1046
- wrapped: Symbol("wrapped")
1047
- };
1048
-
1049
- var le = function(e) {
1050
- if (e[Ae.wrapped]) {
1051
- return e;
1052
- }
1053
- let t = false;
1054
- const r = function(...r) {
1055
- if (!t) {
1056
- t = true;
1057
- e(...r);
1058
- }
1059
- };
1060
- r[Ae.wrapped] = true;
1061
- return r;
1062
- };
1063
-
1064
- const fe = S;
1065
-
1066
- var ue = function(e, t, r) {
1067
- return t.replace(/{([^{}]+)}/g, (t, n) => {
1068
- const o = fe(e, n, r);
1069
- return o ?? "";
1070
- });
1071
- };
1072
-
1073
- const Ee = {
1074
- maxTimer: 2 ** 31 - 1
1075
- };
1076
-
1077
- var Ne = function(e, t, r) {
1078
- if (typeof e === "bigint") {
1079
- e = Number(e);
1080
- }
1081
- if (e >= Number.MAX_SAFE_INTEGER) {
1082
- e = Infinity;
1083
- }
1084
- if (typeof e !== "number" && e !== undefined) {
1085
- throw new TypeError("Timeout must be a number or bigint");
1086
- }
1087
- return new Promise(n => {
1088
- const o = r ? r.setTimeout : setTimeout;
1089
- const s = () => {
1090
- const r = Math.min(e, Ee.maxTimer);
1091
- e -= r;
1092
- o(() => e > 0 ? s() : n(t), r);
1093
- };
1094
- if (e !== Infinity) {
1095
- s();
1096
- }
1097
- });
1098
- };
1099
-
1100
- exports.lib.applyToDefaults = b;
1101
-
1102
- exports.lib.assert = u;
1103
-
1104
- exports.lib.AssertError = a;
1105
-
1106
- exports.lib.Bench = F;
1107
-
1108
- exports.lib.block = K;
1109
-
1110
- exports.lib.clone = d;
1111
-
1112
- exports.lib.contain = $;
1113
-
1114
- exports.lib.deepEqual = _;
1115
-
1116
- exports.lib.escapeHeaderAttribute = z;
1117
-
1118
- exports.lib.escapeHtml = te;
1119
-
1120
- exports.lib.escapeJson = ne;
1121
-
1122
- exports.lib.escapeRegex = V;
1123
-
1124
- exports.lib.flatten = se;
1125
-
1126
- exports.lib.ignore = v;
1127
-
1128
- exports.lib.intersect = ae;
1129
-
1130
- exports.lib.isPromise = ce;
1131
-
1132
- exports.lib.merge = m;
1133
-
1134
- exports.lib.once = le;
1135
-
1136
- exports.lib.reach = S;
1137
-
1138
- exports.lib.reachTemplate = ue;
1139
-
1140
- exports.lib.stringify = c;
1141
-
1142
- exports.lib.wait = Ne;
1143
-
1144
- exports.lib$1 = {};
1145
-
1146
- (function(e) {
1147
- const t = {
1148
- operators: [ "!", "^", "*", "/", "%", "+", "-", "<", "<=", ">", ">=", "==", "!=", "&&", "||", "??" ],
1149
- operatorCharacters: [ "!", "^", "*", "/", "%", "+", "-", "<", "=", ">", "&", "|", "?" ],
1150
- operatorsOrder: [ [ "^" ], [ "*", "/", "%" ], [ "+", "-" ], [ "<", "<=", ">", ">=" ], [ "==", "!=" ], [ "&&" ], [ "||", "??" ] ],
1151
- operatorsPrefix: [ "!", "n" ],
1152
- literals: {
1153
- '"': '"',
1154
- "`": "`",
1155
- "'": "'",
1156
- "[": "]"
1157
- },
1158
- numberRx: /^(?:[0-9]*(\.[0-9]*)?){1}$/,
1159
- tokenRx: /^[\w\$\#\.\@\:\{\}]+$/,
1160
- symbol: Symbol("formula"),
1161
- settings: Symbol("settings")
1162
- };
1163
- e.Parser = class {
1164
- constructor(e, r = {}) {
1165
- if (!r[t.settings] && r.constants) {
1166
- for (const e in r.constants) {
1167
- const t = r.constants[e];
1168
- if (t !== null && ![ "boolean", "number", "string" ].includes(typeof t)) {
1169
- throw new Error(`Formula constant ${e} contains invalid ${typeof t} value type`);
1170
- }
1171
- }
1172
- }
1173
- this.settings = r[t.settings] ? r : Object.assign({
1174
- [t.settings]: true,
1175
- constants: {},
1176
- functions: {}
1177
- }, r);
1178
- this.single = null;
1179
- this._parts = null;
1180
- this._parse(e);
1181
- }
1182
- _parse(r) {
1183
- let n = [];
1184
- let o = "";
1185
- let s = 0;
1186
- let i = false;
1187
- const a = r => {
1188
- if (s) {
1189
- throw new Error("Formula missing closing parenthesis");
1190
- }
1191
- const a = n.length ? n[n.length - 1] : null;
1192
- if (!i && !o && !r) {
1193
- return;
1194
- }
1195
- if (a && a.type === "reference" && r === ")") {
1196
- a.type = "function";
1197
- a.value = this._subFormula(o, a.value);
1198
- o = "";
1199
- return;
1200
- }
1201
- if (r === ")") {
1202
- const t = new e.Parser(o, this.settings);
1203
- n.push({
1204
- type: "segment",
1205
- value: t
1206
- });
1207
- } else if (i) {
1208
- if (i === "]") {
1209
- n.push({
1210
- type: "reference",
1211
- value: o
1212
- });
1213
- o = "";
1214
- return;
1215
- }
1216
- n.push({
1217
- type: "literal",
1218
- value: o
1219
- });
1220
- } else if (t.operatorCharacters.includes(o)) {
1221
- if (a && a.type === "operator" && t.operators.includes(a.value + o)) {
1222
- a.value += o;
1223
- } else {
1224
- n.push({
1225
- type: "operator",
1226
- value: o
1227
- });
1228
- }
1229
- } else if (o.match(t.numberRx)) {
1230
- n.push({
1231
- type: "constant",
1232
- value: parseFloat(o)
1233
- });
1234
- } else if (this.settings.constants[o] !== undefined) {
1235
- n.push({
1236
- type: "constant",
1237
- value: this.settings.constants[o]
1238
- });
1239
- } else {
1240
- if (!o.match(t.tokenRx)) {
1241
- throw new Error(`Formula contains invalid token: ${o}`);
1242
- }
1243
- n.push({
1244
- type: "reference",
1245
- value: o
1246
- });
1247
- }
1248
- o = "";
1249
- };
1250
- for (const e of r) {
1251
- if (i) {
1252
- if (e === i) {
1253
- a();
1254
- i = false;
1255
- } else {
1256
- o += e;
1257
- }
1258
- } else if (s) {
1259
- if (e === "(") {
1260
- o += e;
1261
- ++s;
1262
- } else if (e === ")") {
1263
- --s;
1264
- if (!s) {
1265
- a(e);
1266
- } else {
1267
- o += e;
1268
- }
1269
- } else {
1270
- o += e;
1271
- }
1272
- } else if (e in t.literals) {
1273
- i = t.literals[e];
1274
- } else if (e === "(") {
1275
- a();
1276
- ++s;
1277
- } else if (t.operatorCharacters.includes(e)) {
1278
- a();
1279
- o = e;
1280
- a();
1281
- } else if (e !== " ") {
1282
- o += e;
1283
- } else {
1284
- a();
1285
- }
1286
- }
1287
- a();
1288
- n = n.map((e, t) => {
1289
- if (e.type !== "operator" || e.value !== "-" || t && n[t - 1].type !== "operator") {
1290
- return e;
1291
- }
1292
- return {
1293
- type: "operator",
1294
- value: "n"
1295
- };
1296
- });
1297
- let c = false;
1298
- for (const e of n) {
1299
- if (e.type === "operator") {
1300
- if (t.operatorsPrefix.includes(e.value)) {
1301
- continue;
1302
- }
1303
- if (!c) {
1304
- throw new Error("Formula contains an operator in invalid position");
1305
- }
1306
- if (!t.operators.includes(e.value)) {
1307
- throw new Error(`Formula contains an unknown operator ${e.value}`);
1308
- }
1309
- } else if (c) {
1310
- throw new Error("Formula missing expected operator");
1311
- }
1312
- c = !c;
1313
- }
1314
- if (!c) {
1315
- throw new Error("Formula contains invalid trailing operator");
1316
- }
1317
- if (n.length === 1 && [ "reference", "literal", "constant" ].includes(n[0].type)) {
1318
- this.single = {
1319
- type: n[0].type === "reference" ? "reference" : "value",
1320
- value: n[0].value
1321
- };
1322
- }
1323
- this._parts = n.map(e => {
1324
- if (e.type === "operator") {
1325
- return t.operatorsPrefix.includes(e.value) ? e : e.value;
1326
- }
1327
- if (e.type !== "reference") {
1328
- return e.value;
1329
- }
1330
- if (this.settings.tokenRx && !this.settings.tokenRx.test(e.value)) {
1331
- throw new Error(`Formula contains invalid reference ${e.value}`);
1332
- }
1333
- if (this.settings.reference) {
1334
- return this.settings.reference(e.value);
1335
- }
1336
- return t.reference(e.value);
1337
- });
1338
- }
1339
- _subFormula(r, n) {
1340
- const o = this.settings.functions[n];
1341
- if (typeof o !== "function") {
1342
- throw new Error(`Formula contains unknown function ${n}`);
1343
- }
1344
- let s = [];
1345
- if (r) {
1346
- let e = "";
1347
- let o = 0;
1348
- let i = false;
1349
- const a = () => {
1350
- if (!e) {
1351
- throw new Error(`Formula contains function ${n} with invalid arguments ${r}`);
1352
- }
1353
- s.push(e);
1354
- e = "";
1355
- };
1356
- for (let n = 0; n < r.length; ++n) {
1357
- const s = r[n];
1358
- if (i) {
1359
- e += s;
1360
- if (s === i) {
1361
- i = false;
1362
- }
1363
- } else if (s in t.literals && !o) {
1364
- e += s;
1365
- i = t.literals[s];
1366
- } else if (s === "," && !o) {
1367
- a();
1368
- } else {
1369
- e += s;
1370
- if (s === "(") {
1371
- ++o;
1372
- } else if (s === ")") {
1373
- --o;
1374
- }
1375
- }
1376
- }
1377
- a();
1378
- }
1379
- s = s.map(t => new e.Parser(t, this.settings));
1380
- return function(e) {
1381
- const t = [];
1382
- for (const r of s) {
1383
- t.push(r.evaluate(e));
1384
- }
1385
- return o.call(e, ...t);
1386
- };
1387
- }
1388
- evaluate(e) {
1389
- const r = this._parts.slice();
1390
- for (let n = r.length - 2; n >= 0; --n) {
1391
- const o = r[n];
1392
- if (o && o.type === "operator") {
1393
- const s = r[n + 1];
1394
- r.splice(n + 1, 1);
1395
- const i = t.evaluate(s, e);
1396
- r[n] = t.single(o.value, i);
1397
- }
1398
- }
1399
- t.operatorsOrder.forEach(n => {
1400
- for (let o = 1; o < r.length - 1; ) {
1401
- if (n.includes(r[o])) {
1402
- const n = r[o];
1403
- const s = t.evaluate(r[o - 1], e);
1404
- const i = t.evaluate(r[o + 1], e);
1405
- r.splice(o, 2);
1406
- const a = t.calculate(n, s, i);
1407
- r[o - 1] = a === 0 ? 0 : a;
1408
- } else {
1409
- o += 2;
1410
- }
1411
- }
1412
- });
1413
- return t.evaluate(r[0], e);
1414
- }
1415
- };
1416
- e.Parser.prototype[t.symbol] = true;
1417
- t.reference = function(e) {
1418
- return function(t) {
1419
- return t && t[e] !== undefined ? t[e] : null;
1420
- };
1421
- };
1422
- t.evaluate = function(e, r) {
1423
- if (e === null) {
1424
- return null;
1425
- }
1426
- if (typeof e === "function") {
1427
- return e(r);
1428
- }
1429
- if (e[t.symbol]) {
1430
- return e.evaluate(r);
1431
- }
1432
- return e;
1433
- };
1434
- t.single = function(e, t) {
1435
- if (e === "!") {
1436
- return t ? false : true;
1437
- }
1438
- const r = -t;
1439
- if (r === 0) {
1440
- return 0;
1441
- }
1442
- return r;
1443
- };
1444
- t.calculate = function(e, r, n) {
1445
- if (e === "??") {
1446
- return t.exists(r) ? r : n;
1447
- }
1448
- if (typeof r === "string" || typeof n === "string") {
1449
- if (e === "+") {
1450
- r = t.exists(r) ? r : "";
1451
- n = t.exists(n) ? n : "";
1452
- return r + n;
1453
- }
1454
- } else {
1455
- switch (e) {
1456
- case "^":
1457
- return Math.pow(r, n);
1458
-
1459
- case "*":
1460
- return r * n;
1461
-
1462
- case "/":
1463
- return r / n;
1464
-
1465
- case "%":
1466
- return r % n;
1467
-
1468
- case "+":
1469
- return r + n;
1470
-
1471
- case "-":
1472
- return r - n;
1473
- }
1474
- }
1475
- switch (e) {
1476
- case "<":
1477
- return r < n;
1478
-
1479
- case "<=":
1480
- return r <= n;
1481
-
1482
- case ">":
1483
- return r > n;
1484
-
1485
- case ">=":
1486
- return r >= n;
1487
-
1488
- case "==":
1489
- return r === n;
1490
-
1491
- case "!=":
1492
- return r !== n;
1493
-
1494
- case "&&":
1495
- return r && n;
1496
-
1497
- case "||":
1498
- return r || n;
1499
- }
1500
- return null;
1501
- };
1502
- t.exists = function(e) {
1503
- return e !== null && e !== undefined;
1504
- };
1505
- })(exports.lib$1);
1506
-
1507
- exports.lib$2 = {};
1508
-
1509
- exports.lib$2.location = function(e = 0) {
1510
- const t = Error.prepareStackTrace;
1511
- Error.prepareStackTrace = (e, t) => t;
1512
- const r = {};
1513
- Error.captureStackTrace(r, this);
1514
- const n = r.stack[e + 1];
1515
- Error.prepareStackTrace = t;
1516
- return {
1517
- filename: n.getFileName(),
1518
- line: n.getLineNumber()
1519
- };
1520
- };
1521
-
1522
- exports.lib$3 = {};
1523
-
1524
- const {assert: Oe} = exports.lib;
1525
-
1526
- const Se = {};
1527
-
1528
- exports.lib$3.Sorter = class {
1529
- constructor() {
1530
- this._items = [];
1531
- this.nodes = [];
1532
- }
1533
- add(e, t) {
1534
- t = t ?? {};
1535
- const r = [].concat(t.before ?? []);
1536
- const n = [].concat(t.after ?? []);
1537
- const o = t.group ?? "?";
1538
- const s = t.sort ?? 0;
1539
- Oe(!r.includes(o), `Item cannot come before itself: ${o}`);
1540
- Oe(!r.includes("?"), "Item cannot come before unassociated items");
1541
- Oe(!n.includes(o), `Item cannot come after itself: ${o}`);
1542
- Oe(!n.includes("?"), "Item cannot come after unassociated items");
1543
- if (!Array.isArray(e)) {
1544
- e = [ e ];
1545
- }
1546
- for (const t of e) {
1547
- const e = {
1548
- seq: this._items.length,
1549
- sort: s,
1550
- before: r,
1551
- after: n,
1552
- group: o,
1553
- node: t
1554
- };
1555
- this._items.push(e);
1556
- }
1557
- if (!t.manual) {
1558
- const e = this._sort();
1559
- Oe(e, "item", o !== "?" ? `added into group ${o}` : "", "created a dependencies error");
1560
- }
1561
- return this.nodes;
1562
- }
1563
- merge(e) {
1564
- if (!Array.isArray(e)) {
1565
- e = [ e ];
1566
- }
1567
- for (const t of e) {
1568
- if (t) {
1569
- for (const e of t._items) {
1570
- this._items.push(Object.assign({}, e));
1571
- }
1572
- }
1573
- }
1574
- this._items.sort(Se.mergeSort);
1575
- for (let e = 0; e < this._items.length; ++e) {
1576
- this._items[e].seq = e;
1577
- }
1578
- const t = this._sort();
1579
- Oe(t, "merge created a dependencies error");
1580
- return this.nodes;
1581
- }
1582
- sort() {
1583
- const e = this._sort();
1584
- Oe(e, "sort created a dependencies error");
1585
- return this.nodes;
1586
- }
1587
- _sort() {
1588
- const e = {};
1589
- const t = Object.create(null);
1590
- const r = Object.create(null);
1591
- for (const n of this._items) {
1592
- const o = n.seq;
1593
- const s = n.group;
1594
- r[s] = r[s] ?? [];
1595
- r[s].push(o);
1596
- e[o] = n.before;
1597
- for (const e of n.after) {
1598
- t[e] = t[e] ?? [];
1599
- t[e].push(o);
1600
- }
1601
- }
1602
- for (const t in e) {
1603
- const n = [];
1604
- for (const o in e[t]) {
1605
- const s = e[t][o];
1606
- r[s] = r[s] ?? [];
1607
- n.push(...r[s]);
1608
- }
1609
- e[t] = n;
1610
- }
1611
- for (const n in t) {
1612
- if (r[n]) {
1613
- for (const o of r[n]) {
1614
- e[o].push(...t[n]);
1615
- }
1616
- }
1617
- }
1618
- const n = {};
1619
- for (const t in e) {
1620
- const r = e[t];
1621
- for (const e of r) {
1622
- n[e] = n[e] ?? [];
1623
- n[e].push(t);
1624
- }
1625
- }
1626
- const o = {};
1627
- const s = [];
1628
- for (let e = 0; e < this._items.length; ++e) {
1629
- let t = e;
1630
- if (n[e]) {
1631
- t = null;
1632
- for (let e = 0; e < this._items.length; ++e) {
1633
- if (o[e] === true) {
1634
- continue;
1635
- }
1636
- if (!n[e]) {
1637
- n[e] = [];
1638
- }
1639
- const r = n[e].length;
1640
- let s = 0;
1641
- for (let t = 0; t < r; ++t) {
1642
- if (o[n[e][t]]) {
1643
- ++s;
1644
- }
1645
- }
1646
- if (s === r) {
1647
- t = e;
1648
- break;
1649
- }
1650
- }
1651
- }
1652
- if (t !== null) {
1653
- o[t] = true;
1654
- s.push(t);
1655
- }
1656
- }
1657
- if (s.length !== this._items.length) {
1658
- return false;
1659
- }
1660
- const i = {};
1661
- for (const e of this._items) {
1662
- i[e.seq] = e;
1663
- }
1664
- this._items = [];
1665
- this.nodes = [];
1666
- for (const e of s) {
1667
- const t = i[e];
1668
- this.nodes.push(t.node);
1669
- this._items.push(t);
1670
- }
1671
- return true;
1672
- }
1673
- };
1674
-
1675
- Se.mergeSort = (e, t) => e.sort === t.sort ? 0 : e.sort < t.sort ? -1 : 1;
1676
-
1677
- const Ie = {
1678
- EMPTY_STRING: "Address must be a non-empty string",
1679
- FORBIDDEN_UNICODE: "Address contains forbidden Unicode characters",
1680
- MULTIPLE_AT_CHAR: "Address cannot contain more than one @ character",
1681
- MISSING_AT_CHAR: "Address must contain one @ character",
1682
- EMPTY_LOCAL: "Address local part cannot be empty",
1683
- ADDRESS_TOO_LONG: "Address too long",
1684
- LOCAL_TOO_LONG: "Address local part too long",
1685
- EMPTY_LOCAL_SEGMENT: "Address local part contains empty dot-separated segment",
1686
- INVALID_LOCAL_CHARS: "Address local part contains invalid character",
1687
- DOMAIN_NON_EMPTY_STRING: "Domain must be a non-empty string",
1688
- DOMAIN_TOO_LONG: "Domain too long",
1689
- DOMAIN_INVALID_UNICODE_CHARS: "Domain contains forbidden Unicode characters",
1690
- DOMAIN_INVALID_CHARS: "Domain contains invalid character",
1691
- DOMAIN_INVALID_TLDS_CHARS: "Domain contains invalid tld character",
1692
- DOMAIN_SEGMENTS_COUNT: "Domain lacks the minimum required number of segments",
1693
- DOMAIN_SEGMENTS_COUNT_MAX: "Domain contains too many segments",
1694
- DOMAIN_FORBIDDEN_TLDS: "Domain uses forbidden TLD",
1695
- DOMAIN_EMPTY_SEGMENT: "Domain contains empty dot-separated segment",
1696
- DOMAIN_LONG_SEGMENT: "Domain contains dot-separated segment that is too long"
1697
- };
1698
-
1699
- function Re(e) {
1700
- return {
1701
- code: e,
1702
- error: Ie[e]
1703
- };
1704
- }
1705
-
1706
- const pe = 2;
1707
-
1708
- const Te = /[^\x00-\x7f]/;
1709
-
1710
- const Ce = /[\x00-\x20@\:\/\\#!\$&\'\(\)\*\+,;=\?]/;
1711
-
1712
- const Le = /^[a-zA-Z](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?$/;
1713
-
1714
- const Me = /^[a-zA-Z0-9](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?$/;
1715
-
1716
- const de = /^[a-zA-Z0-9_](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?$/;
1717
-
1718
- const De = o.URL || URL;
1719
-
1720
- function Be(e) {
1721
- return !!e.allow;
1722
- }
1723
-
1724
- function he(e, t = {}) {
1725
- if (!e) {
1726
- return Re("DOMAIN_NON_EMPTY_STRING");
1727
- }
1728
- if (typeof e !== "string") {
1729
- throw new Error("Invalid input: domain must be a string");
1730
- }
1731
- if (e.length > 256) {
1732
- return Re("DOMAIN_TOO_LONG");
1733
- }
1734
- const r = !Te.test(e);
1735
- if (!r) {
1736
- if (t.allowUnicode === false) {
1737
- return Re("DOMAIN_INVALID_UNICODE_CHARS");
1738
- }
1739
- e = e.normalize("NFC");
1740
- }
1741
- if (Ce.test(e)) {
1742
- return Re("DOMAIN_INVALID_CHARS");
1743
- }
1744
- e = me(e);
1745
- if (t.allowFullyQualified && e[e.length - 1] === ".") {
1746
- e = e.slice(0, -1);
1747
- }
1748
- const n = t.minDomainSegments || pe;
1749
- const o = e.split(".");
1750
- if (o.length < n) {
1751
- return Re("DOMAIN_SEGMENTS_COUNT");
1752
- }
1753
- if (t.maxDomainSegments) {
1754
- if (o.length > t.maxDomainSegments) {
1755
- return Re("DOMAIN_SEGMENTS_COUNT_MAX");
1756
- }
1757
- }
1758
- const s = t.tlds;
1759
- if (s) {
1760
- const e = o[o.length - 1].toLowerCase();
1761
- if (Be(s)) {
1762
- if (!s.allow.has(e)) {
1763
- return Re("DOMAIN_FORBIDDEN_TLDS");
1764
- }
1765
- } else if (s.deny.has(e)) {
1766
- return Re("DOMAIN_FORBIDDEN_TLDS");
1767
- }
1768
- }
1769
- for (let e = 0; e < o.length; ++e) {
1770
- const r = o[e];
1771
- if (!r.length) {
1772
- return Re("DOMAIN_EMPTY_SEGMENT");
1773
- }
1774
- if (r.length > 63) {
1775
- return Re("DOMAIN_LONG_SEGMENT");
1776
- }
1777
- if (e < o.length - 1) {
1778
- if (t.allowUnderscore) {
1779
- if (!de.test(r)) {
1780
- return Re("DOMAIN_INVALID_CHARS");
1781
- }
1782
- } else {
1783
- if (!Me.test(r)) {
1784
- return Re("DOMAIN_INVALID_CHARS");
1785
- }
1786
- }
1787
- } else {
1788
- if (!Le.test(r)) {
1789
- return Re("DOMAIN_INVALID_TLDS_CHARS");
1790
- }
1791
- }
1792
- }
1793
- return null;
1794
- }
1795
-
1796
- function Ge(e, t) {
1797
- return !he(e, t);
1798
- }
1799
-
1800
- function me(e) {
1801
- if (e.includes("%")) {
1802
- e = e.replace(/%/g, "%25");
1803
- }
1804
- try {
1805
- return new De(`http://${e}`).host;
1806
- } catch (t) {
1807
- return e;
1808
- }
1809
- }
1810
-
1811
- function ye(e) {
1812
- if (!e) {
1813
- return;
1814
- }
1815
- if (typeof e.tlds !== "object") {
1816
- throw new Error("Invalid options: tlds must be a boolean or an object");
1817
- }
1818
- if (Be(e.tlds)) {
1819
- if (e.tlds.allow instanceof Set === false) {
1820
- throw new Error("Invalid options: tlds.allow must be a Set object or true");
1821
- }
1822
- if (e.tlds.deny) {
1823
- throw new Error("Invalid options: cannot specify both tlds.allow and tlds.deny lists");
1824
- }
1825
- } else {
1826
- if (e.tlds.deny instanceof Set === false) {
1827
- throw new Error("Invalid options: tlds.deny must be a Set object");
1828
- }
1829
- }
1830
- }
1831
-
1832
- const Pe = /[^\x00-\x7f]/;
1833
-
1834
- const ge = new (s.TextEncoder || TextEncoder);
1835
-
1836
- function Ue(e, t) {
1837
- return be(e, t);
1838
- }
1839
-
1840
- function Xe(e, t) {
1841
- return !be(e, t);
1842
- }
1843
-
1844
- function be(e, t = {}) {
1845
- if (typeof e !== "string") {
1846
- throw new Error("Invalid input: email must be a string");
1847
- }
1848
- if (!e) {
1849
- return Re("EMPTY_STRING");
1850
- }
1851
- const r = !Pe.test(e);
1852
- if (!r) {
1853
- if (t.allowUnicode === false) {
1854
- return Re("FORBIDDEN_UNICODE");
1855
- }
1856
- e = e.normalize("NFC");
1857
- }
1858
- const n = e.split("@");
1859
- if (n.length !== 2) {
1860
- return n.length > 2 ? Re("MULTIPLE_AT_CHAR") : Re("MISSING_AT_CHAR");
1861
- }
1862
- const [o, s] = n;
1863
- if (!o) {
1864
- return Re("EMPTY_LOCAL");
1865
- }
1866
- if (!t.ignoreLength) {
1867
- if (e.length > 254) {
1868
- return Re("ADDRESS_TOO_LONG");
1869
- }
1870
- if (ge.encode(o).length > 64) {
1871
- return Re("LOCAL_TOO_LONG");
1872
- }
1873
- }
1874
- return He(o, r) || he(s, t);
1875
- }
1876
-
1877
- function He(e, t) {
1878
- const r = e.split(".");
1879
- for (const e of r) {
1880
- if (!e.length) {
1881
- return Re("EMPTY_LOCAL_SEGMENT");
1882
- }
1883
- if (t) {
1884
- if (!ve.test(e)) {
1885
- return Re("INVALID_LOCAL_CHARS");
1886
- }
1887
- continue;
1888
- }
1889
- for (const t of e) {
1890
- if (ve.test(t)) {
1891
- continue;
1892
- }
1893
- const e = Fe(t);
1894
- if (!we.test(e)) {
1895
- return Re("INVALID_LOCAL_CHARS");
1896
- }
1897
- }
1898
- }
1899
- return null;
1900
- }
1901
-
1902
- function Fe(e) {
1903
- return Array.from(ge.encode(e), e => String.fromCharCode(e)).join("");
1904
- }
1905
-
1906
- const ve = /^[\w!#\$%&'\*\+\-/=\?\^`\{\|\}~]+$/;
1907
-
1908
- const we = new RegExp([ "(?:[\\xc2-\\xdf][\\x80-\\xbf])", "(?:\\xe0[\\xa0-\\xbf][\\x80-\\xbf])|(?:[\\xe1-\\xec][\\x80-\\xbf]{2})|(?:\\xed[\\x80-\\x9f][\\x80-\\xbf])|(?:[\\xee-\\xef][\\x80-\\xbf]{2})", "(?:\\xf0[\\x90-\\xbf][\\x80-\\xbf]{2})|(?:[\\xf1-\\xf3][\\x80-\\xbf]{3})|(?:\\xf4[\\x80-\\x8f][\\x80-\\xbf]{2})" ].join("|"));
1909
-
1910
- function Ke() {
1911
- const e = {};
1912
- const t = "\\dA-Fa-f";
1913
- const r = "[" + t + "]";
1914
- const n = "\\w-\\.~";
1915
- const o = "!\\$&'\\(\\)\\*\\+,;=";
1916
- const s = "%" + t;
1917
- const i = n + s + o + ":@";
1918
- const a = "[" + i + "]";
1919
- const c = "(?:0{0,2}\\d|0?[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])";
1920
- e.ipv4address = "(?:" + c + "\\.){3}" + c;
1921
- const A = r + "{1,4}";
1922
- const l = "(?:" + A + ":" + A + "|" + e.ipv4address + ")";
1923
- const f = "(?:" + A + ":){6}" + l;
1924
- const u = "::(?:" + A + ":){5}" + l;
1925
- const E = "(?:" + A + ")?::(?:" + A + ":){4}" + l;
1926
- const N = "(?:(?:" + A + ":){0,1}" + A + ")?::(?:" + A + ":){3}" + l;
1927
- const O = "(?:(?:" + A + ":){0,2}" + A + ")?::(?:" + A + ":){2}" + l;
1928
- const S = "(?:(?:" + A + ":){0,3}" + A + ")?::" + A + ":" + l;
1929
- const I = "(?:(?:" + A + ":){0,4}" + A + ")?::" + l;
1930
- const R = "(?:(?:" + A + ":){0,5}" + A + ")?::" + A;
1931
- const p = "(?:(?:" + A + ":){0,6}" + A + ")?::";
1932
- e.ipv4Cidr = "(?:\\d|[1-2]\\d|3[0-2])";
1933
- e.ipv6Cidr = "(?:0{0,2}\\d|0?[1-9]\\d|1[01]\\d|12[0-8])";
1934
- e.ipv6address = "(?:" + f + "|" + u + "|" + E + "|" + N + "|" + O + "|" + S + "|" + I + "|" + R + "|" + p + ")";
1935
- e.ipvFuture = "v" + r + "+\\.[" + n + o + ":]+";
1936
- e.scheme = "[a-zA-Z][a-zA-Z\\d+-\\.]*";
1937
- e.schemeRegex = new RegExp(e.scheme);
1938
- const T = "[" + n + s + o + ":]*";
1939
- const C = "\\[(?:" + e.ipv6address + "|" + e.ipvFuture + ")\\]";
1940
- const L = "[" + n + s + o + "]{1,255}";
1941
- const M = "(?:" + C + "|" + e.ipv4address + "|" + L + ")";
1942
- const d = "\\d*";
1943
- const D = "(?:" + T + "@)?" + M + "(?::" + d + ")?";
1944
- const B = "(?:" + T + "@)?(" + M + ")(?::" + d + ")?";
1945
- const h = a + "*";
1946
- const G = a + "+";
1947
- const m = "[" + n + s + o + "@" + "]+";
1948
- const y = "";
1949
- const P = "(?:\\/" + h + ")*";
1950
- const g = "\\/(?:" + G + P + ")?";
1951
- const U = G + P;
1952
- const X = m + P;
1953
- const b = "(?:\\/\\/\\/" + h + P + ")";
1954
- e.hierPart = "(?:" + "(?:\\/\\/" + D + P + ")" + "|" + g + "|" + U + "|" + b + ")";
1955
- e.hierPartCapture = "(?:" + "(?:\\/\\/" + B + P + ")" + "|" + g + "|" + U + ")";
1956
- e.relativeRef = "(?:" + "(?:\\/\\/" + D + P + ")" + "|" + g + "|" + X + "|" + y + ")";
1957
- e.relativeRefCapture = "(?:" + "(?:\\/\\/" + B + P + ")" + "|" + g + "|" + X + "|" + y + ")";
1958
- e.query = "[" + i + "\\/\\?]*(?=#|$)";
1959
- e.queryWithSquareBrackets = "[" + i + "\\[\\]\\/\\?]*(?=#|$)";
1960
- e.fragment = "[" + i + "\\/\\?]*";
1961
- return e;
1962
- }
1963
-
1964
- const Ye = Ke();
1965
-
1966
- const xe = {
1967
- v4Cidr: Ye.ipv4Cidr,
1968
- v6Cidr: Ye.ipv6Cidr,
1969
- ipv4: Ye.ipv4address,
1970
- ipv6: Ye.ipv6address,
1971
- ipvfuture: Ye.ipvFuture
1972
- };
1973
-
1974
- function _e(e) {
1975
- const t = Ye;
1976
- const r = e.allowQuerySquareBrackets ? t.queryWithSquareBrackets : t.query;
1977
- const n = "(?:\\?" + r + ")?" + "(?:#" + t.fragment + ")?";
1978
- const o = e.domain ? t.relativeRefCapture : t.relativeRef;
1979
- if (e.relativeOnly) {
1980
- return Ve(o + n);
1981
- }
1982
- let s = "";
1983
- if (e.scheme) {
1984
- E(e.scheme instanceof RegExp || typeof e.scheme === "string" || Array.isArray(e.scheme), "scheme must be a RegExp, String, or Array");
1985
- const r = [].concat(e.scheme);
1986
- E(r.length >= 1, "scheme must have at least 1 scheme specified");
1987
- const n = [];
1988
- for (let e = 0; e < r.length; ++e) {
1989
- const o = r[e];
1990
- E(o instanceof RegExp || typeof o === "string", "scheme at position " + e + " must be a RegExp or String");
1991
- if (o instanceof RegExp) {
1992
- n.push(o.source.toString());
1993
- } else {
1994
- E(t.schemeRegex.test(o), "scheme at position " + e + " must be a valid scheme");
1995
- n.push(W(o));
1996
- }
1997
- }
1998
- s = n.join("|");
1999
- }
2000
- const i = s ? "(?:" + s + ")" : t.scheme;
2001
- const a = "(?:" + i + ":" + (e.domain ? t.hierPartCapture : t.hierPart) + ")";
2002
- const c = e.allowRelative ? "(?:" + a + "|" + o + ")" : a;
2003
- return Ve(c + n, s);
2004
- }
2005
-
2006
- function Ve(e, t = null) {
2007
- e = `(?=.)(?!https?:/(?:$|[^/]))(?!https?:///)(?!https?:[^/])${e}`;
2008
- return {
2009
- raw: e,
2010
- regex: new RegExp(`^${e}$`),
2011
- scheme: t
2012
- };
2013
- }
2014
-
2015
- const We = _e({});
2016
-
2017
- function je(e = {}) {
2018
- if (e.scheme || e.allowRelative || e.relativeOnly || e.allowQuerySquareBrackets || e.domain) {
2019
- return _e(e);
2020
- }
2021
- return We;
2022
- }
2023
-
2024
- function Ze(e = {}) {
2025
- const t = e.cidr || "optional";
2026
- E([ "required", "optional", "forbidden" ].includes(t), "options.cidr must be one of required, optional, forbidden");
2027
- E(e.version === undefined || typeof e.version === "string" || Array.isArray(e.version), "options.version must be a string or an array of string");
2028
- let r = e.version || [ "ipv4", "ipv6", "ipvfuture" ];
2029
- if (!Array.isArray(r)) {
2030
- r = [ r ];
2031
- }
2032
- E(r.length >= 1, "options.version must have at least 1 version specified");
2033
- for (const e of r) {
2034
- E(typeof e === "string" && e === e.toLowerCase(), "Invalid options.version value");
2035
- E([ "ipv4", "ipv6", "ipvfuture" ].includes(e), "options.version contains unknown version " + e + " - must be one of ipv4, ipv6, ipvfuture");
2036
- }
2037
- r = Array.from(new Set(r));
2038
- const n = r.map(e => {
2039
- if (t === "forbidden") {
2040
- return xe[e];
2041
- }
2042
- const r = `\\/${e === "ipv4" ? xe.v4Cidr : xe.v6Cidr}`;
2043
- if (t === "required") {
2044
- return `${xe[e]}${r}`;
2045
- }
2046
- return `${xe[e]}(?:${r})?`;
2047
- });
2048
- const o = `(?:${n.join("|")})`;
2049
- const s = new RegExp(`^${o}$`);
2050
- return {
2051
- cidr: t,
2052
- versions: r,
2053
- regex: s,
2054
- raw: o
2055
- };
2056
- }
2057
-
2058
- const Je = {
2059
- 0: 0,
2060
- 1: 1,
2061
- 2: 2,
2062
- 3: 3,
2063
- 4: 4,
2064
- 5: 5,
2065
- 6: 6,
2066
- 7: 7,
2067
- 8: 8,
2068
- 9: 9,
2069
- a: 10,
2070
- A: 10,
2071
- b: 11,
2072
- B: 11,
2073
- c: 12,
2074
- C: 12,
2075
- d: 13,
2076
- D: 13,
2077
- e: 14,
2078
- E: 14,
2079
- f: 15,
2080
- F: 15
2081
- };
2082
-
2083
- const ke = {
2084
- accept: 12,
2085
- reject: 0,
2086
- data: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 7, 7, 10, 9, 9, 9, 11, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 24, 36, 48, 60, 72, 84, 96, 0, 12, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 24, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 48, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 63, 63, 63, 0, 31, 15, 15, 15, 7, 7, 7 ]
2087
- };
2088
-
2089
- function Qe(e) {
2090
- let t = e.indexOf("%");
2091
- if (t === -1) {
2092
- return e;
2093
- }
2094
- let r = "";
2095
- let n = 0;
2096
- let o = 0;
2097
- let s = t;
2098
- let i = ke.accept;
2099
- while (t > -1 && t < e.length) {
2100
- const a = $e(e[t + 1], 4);
2101
- const c = $e(e[t + 2], 0);
2102
- const A = a | c;
2103
- const l = ke.data[A];
2104
- i = ke.data[256 + i + l];
2105
- o = o << 6 | A & ke.data[364 + l];
2106
- if (i === ke.accept) {
2107
- r += e.slice(n, s);
2108
- r += o <= 65535 ? String.fromCharCode(o) : String.fromCharCode(55232 + (o >> 10), 56320 + (o & 1023));
2109
- o = 0;
2110
- n = t + 3;
2111
- t = e.indexOf("%", n);
2112
- s = t;
2113
- continue;
2114
- }
2115
- if (i === ke.reject) {
2116
- return null;
2117
- }
2118
- t += 3;
2119
- if (t >= e.length || e[t] !== "%") {
2120
- return null;
2121
- }
2122
- }
2123
- return r + e.slice(n);
2124
- }
2125
-
2126
- function $e(e, t) {
2127
- const r = Je[e];
2128
- return r === undefined ? 255 : r << t;
2129
- }
2130
-
2131
- const qe = Object.freeze(Object.defineProperty({
2132
- __proto__: null,
2133
- analyzeDomain: he,
2134
- analyzeEmail: Ue,
2135
- errorCodes: Ie,
2136
- ipRegex: Ze,
2137
- isDomainValid: Ge,
2138
- isEmailValid: Xe,
2139
- uriDecode: Qe,
2140
- uriRegex: je,
2141
- validateDomainOptions: ye
2142
- }, Symbol.toStringTag, {
2143
- value: "Module"
2144
- }));
2145
-
2146
- const ze = e.getAugmentedNamespace(qe);
2147
-
2148
- exports.commonjs = {};
2149
-
2150
- var et = {};
2151
-
2152
- Object.defineProperty(et, "__esModule", {
8
+ Object.defineProperty(t, "__esModule", {
2153
9
  value: true
2154
10
  });
2155
11
 
2156
- et.TLDS = void 0;
12
+ exports.AfterRecover_2 = t.AfterRecover = s;
2157
13
 
2158
- et.TLDS = [ "AAA", "AARP", "ABB", "ABBOTT", "ABBVIE", "ABC", "ABLE", "ABOGADO", "ABUDHABI", "AC", "ACADEMY", "ACCENTURE", "ACCOUNTANT", "ACCOUNTANTS", "ACO", "ACTOR", "AD", "ADS", "ADULT", "AE", "AEG", "AERO", "AETNA", "AF", "AFL", "AFRICA", "AG", "AGAKHAN", "AGENCY", "AI", "AIG", "AIRBUS", "AIRFORCE", "AIRTEL", "AKDN", "AL", "ALIBABA", "ALIPAY", "ALLFINANZ", "ALLSTATE", "ALLY", "ALSACE", "ALSTOM", "AM", "AMAZON", "AMERICANEXPRESS", "AMERICANFAMILY", "AMEX", "AMFAM", "AMICA", "AMSTERDAM", "ANALYTICS", "ANDROID", "ANQUAN", "ANZ", "AO", "AOL", "APARTMENTS", "APP", "APPLE", "AQ", "AQUARELLE", "AR", "ARAB", "ARAMCO", "ARCHI", "ARMY", "ARPA", "ART", "ARTE", "AS", "ASDA", "ASIA", "ASSOCIATES", "AT", "ATHLETA", "ATTORNEY", "AU", "AUCTION", "AUDI", "AUDIBLE", "AUDIO", "AUSPOST", "AUTHOR", "AUTO", "AUTOS", "AW", "AWS", "AX", "AXA", "AZ", "AZURE", "BA", "BABY", "BAIDU", "BANAMEX", "BAND", "BANK", "BAR", "BARCELONA", "BARCLAYCARD", "BARCLAYS", "BAREFOOT", "BARGAINS", "BASEBALL", "BASKETBALL", "BAUHAUS", "BAYERN", "BB", "BBC", "BBT", "BBVA", "BCG", "BCN", "BD", "BE", "BEATS", "BEAUTY", "BEER", "BERLIN", "BEST", "BESTBUY", "BET", "BF", "BG", "BH", "BHARTI", "BI", "BIBLE", "BID", "BIKE", "BING", "BINGO", "BIO", "BIZ", "BJ", "BLACK", "BLACKFRIDAY", "BLOCKBUSTER", "BLOG", "BLOOMBERG", "BLUE", "BM", "BMS", "BMW", "BN", "BNPPARIBAS", "BO", "BOATS", "BOEHRINGER", "BOFA", "BOM", "BOND", "BOO", "BOOK", "BOOKING", "BOSCH", "BOSTIK", "BOSTON", "BOT", "BOUTIQUE", "BOX", "BR", "BRADESCO", "BRIDGESTONE", "BROADWAY", "BROKER", "BROTHER", "BRUSSELS", "BS", "BT", "BUILD", "BUILDERS", "BUSINESS", "BUY", "BUZZ", "BV", "BW", "BY", "BZ", "BZH", "CA", "CAB", "CAFE", "CAL", "CALL", "CALVINKLEIN", "CAM", "CAMERA", "CAMP", "CANON", "CAPETOWN", "CAPITAL", "CAPITALONE", "CAR", "CARAVAN", "CARDS", "CARE", "CAREER", "CAREERS", "CARS", "CASA", "CASE", "CASH", "CASINO", "CAT", "CATERING", "CATHOLIC", "CBA", "CBN", "CBRE", "CC", "CD", "CENTER", "CEO", "CERN", "CF", "CFA", "CFD", "CG", "CH", "CHANEL", "CHANNEL", "CHARITY", "CHASE", "CHAT", "CHEAP", "CHINTAI", "CHRISTMAS", "CHROME", "CHURCH", "CI", "CIPRIANI", "CIRCLE", "CISCO", "CITADEL", "CITI", "CITIC", "CITY", "CK", "CL", "CLAIMS", "CLEANING", "CLICK", "CLINIC", "CLINIQUE", "CLOTHING", "CLOUD", "CLUB", "CLUBMED", "CM", "CN", "CO", "COACH", "CODES", "COFFEE", "COLLEGE", "COLOGNE", "COM", "COMMBANK", "COMMUNITY", "COMPANY", "COMPARE", "COMPUTER", "COMSEC", "CONDOS", "CONSTRUCTION", "CONSULTING", "CONTACT", "CONTRACTORS", "COOKING", "COOL", "COOP", "CORSICA", "COUNTRY", "COUPON", "COUPONS", "COURSES", "CPA", "CR", "CREDIT", "CREDITCARD", "CREDITUNION", "CRICKET", "CROWN", "CRS", "CRUISE", "CRUISES", "CU", "CUISINELLA", "CV", "CW", "CX", "CY", "CYMRU", "CYOU", "CZ", "DAD", "DANCE", "DATA", "DATE", "DATING", "DATSUN", "DAY", "DCLK", "DDS", "DE", "DEAL", "DEALER", "DEALS", "DEGREE", "DELIVERY", "DELL", "DELOITTE", "DELTA", "DEMOCRAT", "DENTAL", "DENTIST", "DESI", "DESIGN", "DEV", "DHL", "DIAMONDS", "DIET", "DIGITAL", "DIRECT", "DIRECTORY", "DISCOUNT", "DISCOVER", "DISH", "DIY", "DJ", "DK", "DM", "DNP", "DO", "DOCS", "DOCTOR", "DOG", "DOMAINS", "DOT", "DOWNLOAD", "DRIVE", "DTV", "DUBAI", "DUPONT", "DURBAN", "DVAG", "DVR", "DZ", "EARTH", "EAT", "EC", "ECO", "EDEKA", "EDU", "EDUCATION", "EE", "EG", "EMAIL", "EMERCK", "ENERGY", "ENGINEER", "ENGINEERING", "ENTERPRISES", "EPSON", "EQUIPMENT", "ER", "ERICSSON", "ERNI", "ES", "ESQ", "ESTATE", "ET", "EU", "EUROVISION", "EUS", "EVENTS", "EXCHANGE", "EXPERT", "EXPOSED", "EXPRESS", "EXTRASPACE", "FAGE", "FAIL", "FAIRWINDS", "FAITH", "FAMILY", "FAN", "FANS", "FARM", "FARMERS", "FASHION", "FAST", "FEDEX", "FEEDBACK", "FERRARI", "FERRERO", "FI", "FIDELITY", "FIDO", "FILM", "FINAL", "FINANCE", "FINANCIAL", "FIRE", "FIRESTONE", "FIRMDALE", "FISH", "FISHING", "FIT", "FITNESS", "FJ", "FK", "FLICKR", "FLIGHTS", "FLIR", "FLORIST", "FLOWERS", "FLY", "FM", "FO", "FOO", "FOOD", "FOOTBALL", "FORD", "FOREX", "FORSALE", "FORUM", "FOUNDATION", "FOX", "FR", "FREE", "FRESENIUS", "FRL", "FROGANS", "FRONTIER", "FTR", "FUJITSU", "FUN", "FUND", "FURNITURE", "FUTBOL", "FYI", "GA", "GAL", "GALLERY", "GALLO", "GALLUP", "GAME", "GAMES", "GAP", "GARDEN", "GAY", "GB", "GBIZ", "GD", "GDN", "GE", "GEA", "GENT", "GENTING", "GEORGE", "GF", "GG", "GGEE", "GH", "GI", "GIFT", "GIFTS", "GIVES", "GIVING", "GL", "GLASS", "GLE", "GLOBAL", "GLOBO", "GM", "GMAIL", "GMBH", "GMO", "GMX", "GN", "GODADDY", "GOLD", "GOLDPOINT", "GOLF", "GOO", "GOODYEAR", "GOOG", "GOOGLE", "GOP", "GOT", "GOV", "GP", "GQ", "GR", "GRAINGER", "GRAPHICS", "GRATIS", "GREEN", "GRIPE", "GROCERY", "GROUP", "GS", "GT", "GU", "GUCCI", "GUGE", "GUIDE", "GUITARS", "GURU", "GW", "GY", "HAIR", "HAMBURG", "HANGOUT", "HAUS", "HBO", "HDFC", "HDFCBANK", "HEALTH", "HEALTHCARE", "HELP", "HELSINKI", "HERE", "HERMES", "HIPHOP", "HISAMITSU", "HITACHI", "HIV", "HK", "HKT", "HM", "HN", "HOCKEY", "HOLDINGS", "HOLIDAY", "HOMEDEPOT", "HOMEGOODS", "HOMES", "HOMESENSE", "HONDA", "HORSE", "HOSPITAL", "HOST", "HOSTING", "HOT", "HOTELS", "HOTMAIL", "HOUSE", "HOW", "HR", "HSBC", "HT", "HU", "HUGHES", "HYATT", "HYUNDAI", "IBM", "ICBC", "ICE", "ICU", "ID", "IE", "IEEE", "IFM", "IKANO", "IL", "IM", "IMAMAT", "IMDB", "IMMO", "IMMOBILIEN", "IN", "INC", "INDUSTRIES", "INFINITI", "INFO", "ING", "INK", "INSTITUTE", "INSURANCE", "INSURE", "INT", "INTERNATIONAL", "INTUIT", "INVESTMENTS", "IO", "IPIRANGA", "IQ", "IR", "IRISH", "IS", "ISMAILI", "IST", "ISTANBUL", "IT", "ITAU", "ITV", "JAGUAR", "JAVA", "JCB", "JE", "JEEP", "JETZT", "JEWELRY", "JIO", "JLL", "JM", "JMP", "JNJ", "JO", "JOBS", "JOBURG", "JOT", "JOY", "JP", "JPMORGAN", "JPRS", "JUEGOS", "JUNIPER", "KAUFEN", "KDDI", "KE", "KERRYHOTELS", "KERRYPROPERTIES", "KFH", "KG", "KH", "KI", "KIA", "KIDS", "KIM", "KINDLE", "KITCHEN", "KIWI", "KM", "KN", "KOELN", "KOMATSU", "KOSHER", "KP", "KPMG", "KPN", "KR", "KRD", "KRED", "KUOKGROUP", "KW", "KY", "KYOTO", "KZ", "LA", "LACAIXA", "LAMBORGHINI", "LAMER", "LAND", "LANDROVER", "LANXESS", "LASALLE", "LAT", "LATINO", "LATROBE", "LAW", "LAWYER", "LB", "LC", "LDS", "LEASE", "LECLERC", "LEFRAK", "LEGAL", "LEGO", "LEXUS", "LGBT", "LI", "LIDL", "LIFE", "LIFEINSURANCE", "LIFESTYLE", "LIGHTING", "LIKE", "LILLY", "LIMITED", "LIMO", "LINCOLN", "LINK", "LIVE", "LIVING", "LK", "LLC", "LLP", "LOAN", "LOANS", "LOCKER", "LOCUS", "LOL", "LONDON", "LOTTE", "LOTTO", "LOVE", "LPL", "LPLFINANCIAL", "LR", "LS", "LT", "LTD", "LTDA", "LU", "LUNDBECK", "LUXE", "LUXURY", "LV", "LY", "MA", "MADRID", "MAIF", "MAISON", "MAKEUP", "MAN", "MANAGEMENT", "MANGO", "MAP", "MARKET", "MARKETING", "MARKETS", "MARRIOTT", "MARSHALLS", "MATTEL", "MBA", "MC", "MCKINSEY", "MD", "ME", "MED", "MEDIA", "MEET", "MELBOURNE", "MEME", "MEMORIAL", "MEN", "MENU", "MERCKMSD", "MG", "MH", "MIAMI", "MICROSOFT", "MIL", "MINI", "MINT", "MIT", "MITSUBISHI", "MK", "ML", "MLB", "MLS", "MM", "MMA", "MN", "MO", "MOBI", "MOBILE", "MODA", "MOE", "MOI", "MOM", "MONASH", "MONEY", "MONSTER", "MORMON", "MORTGAGE", "MOSCOW", "MOTO", "MOTORCYCLES", "MOV", "MOVIE", "MP", "MQ", "MR", "MS", "MSD", "MT", "MTN", "MTR", "MU", "MUSEUM", "MUSIC", "MV", "MW", "MX", "MY", "MZ", "NA", "NAB", "NAGOYA", "NAME", "NAVY", "NBA", "NC", "NE", "NEC", "NET", "NETBANK", "NETFLIX", "NETWORK", "NEUSTAR", "NEW", "NEWS", "NEXT", "NEXTDIRECT", "NEXUS", "NF", "NFL", "NG", "NGO", "NHK", "NI", "NICO", "NIKE", "NIKON", "NINJA", "NISSAN", "NISSAY", "NL", "NO", "NOKIA", "NORTON", "NOW", "NOWRUZ", "NOWTV", "NP", "NR", "NRA", "NRW", "NTT", "NU", "NYC", "NZ", "OBI", "OBSERVER", "OFFICE", "OKINAWA", "OLAYAN", "OLAYANGROUP", "OLLO", "OM", "OMEGA", "ONE", "ONG", "ONL", "ONLINE", "OOO", "OPEN", "ORACLE", "ORANGE", "ORG", "ORGANIC", "ORIGINS", "OSAKA", "OTSUKA", "OTT", "OVH", "PA", "PAGE", "PANASONIC", "PARIS", "PARS", "PARTNERS", "PARTS", "PARTY", "PAY", "PCCW", "PE", "PET", "PF", "PFIZER", "PG", "PH", "PHARMACY", "PHD", "PHILIPS", "PHONE", "PHOTO", "PHOTOGRAPHY", "PHOTOS", "PHYSIO", "PICS", "PICTET", "PICTURES", "PID", "PIN", "PING", "PINK", "PIONEER", "PIZZA", "PK", "PL", "PLACE", "PLAY", "PLAYSTATION", "PLUMBING", "PLUS", "PM", "PN", "PNC", "POHL", "POKER", "POLITIE", "PORN", "POST", "PR", "PRAXI", "PRESS", "PRIME", "PRO", "PROD", "PRODUCTIONS", "PROF", "PROGRESSIVE", "PROMO", "PROPERTIES", "PROPERTY", "PROTECTION", "PRU", "PRUDENTIAL", "PS", "PT", "PUB", "PW", "PWC", "PY", "QA", "QPON", "QUEBEC", "QUEST", "RACING", "RADIO", "RE", "READ", "REALESTATE", "REALTOR", "REALTY", "RECIPES", "RED", "REDUMBRELLA", "REHAB", "REISE", "REISEN", "REIT", "RELIANCE", "REN", "RENT", "RENTALS", "REPAIR", "REPORT", "REPUBLICAN", "REST", "RESTAURANT", "REVIEW", "REVIEWS", "REXROTH", "RICH", "RICHARDLI", "RICOH", "RIL", "RIO", "RIP", "RO", "ROCKS", "RODEO", "ROGERS", "ROOM", "RS", "RSVP", "RU", "RUGBY", "RUHR", "RUN", "RW", "RWE", "RYUKYU", "SA", "SAARLAND", "SAFE", "SAFETY", "SAKURA", "SALE", "SALON", "SAMSCLUB", "SAMSUNG", "SANDVIK", "SANDVIKCOROMANT", "SANOFI", "SAP", "SARL", "SAS", "SAVE", "SAXO", "SB", "SBI", "SBS", "SC", "SCB", "SCHAEFFLER", "SCHMIDT", "SCHOLARSHIPS", "SCHOOL", "SCHULE", "SCHWARZ", "SCIENCE", "SCOT", "SD", "SE", "SEARCH", "SEAT", "SECURE", "SECURITY", "SEEK", "SELECT", "SENER", "SERVICES", "SEVEN", "SEW", "SEX", "SEXY", "SFR", "SG", "SH", "SHANGRILA", "SHARP", "SHELL", "SHIA", "SHIKSHA", "SHOES", "SHOP", "SHOPPING", "SHOUJI", "SHOW", "SI", "SILK", "SINA", "SINGLES", "SITE", "SJ", "SK", "SKI", "SKIN", "SKY", "SKYPE", "SL", "SLING", "SM", "SMART", "SMILE", "SN", "SNCF", "SO", "SOCCER", "SOCIAL", "SOFTBANK", "SOFTWARE", "SOHU", "SOLAR", "SOLUTIONS", "SONG", "SONY", "SOY", "SPA", "SPACE", "SPORT", "SPOT", "SR", "SRL", "SS", "ST", "STADA", "STAPLES", "STAR", "STATEBANK", "STATEFARM", "STC", "STCGROUP", "STOCKHOLM", "STORAGE", "STORE", "STREAM", "STUDIO", "STUDY", "STYLE", "SU", "SUCKS", "SUPPLIES", "SUPPLY", "SUPPORT", "SURF", "SURGERY", "SUZUKI", "SV", "SWATCH", "SWISS", "SX", "SY", "SYDNEY", "SYSTEMS", "SZ", "TAB", "TAIPEI", "TALK", "TAOBAO", "TARGET", "TATAMOTORS", "TATAR", "TATTOO", "TAX", "TAXI", "TC", "TCI", "TD", "TDK", "TEAM", "TECH", "TECHNOLOGY", "TEL", "TEMASEK", "TENNIS", "TEVA", "TF", "TG", "TH", "THD", "THEATER", "THEATRE", "TIAA", "TICKETS", "TIENDA", "TIPS", "TIRES", "TIROL", "TJ", "TJMAXX", "TJX", "TK", "TKMAXX", "TL", "TM", "TMALL", "TN", "TO", "TODAY", "TOKYO", "TOOLS", "TOP", "TORAY", "TOSHIBA", "TOTAL", "TOURS", "TOWN", "TOYOTA", "TOYS", "TR", "TRADE", "TRADING", "TRAINING", "TRAVEL", "TRAVELERS", "TRAVELERSINSURANCE", "TRUST", "TRV", "TT", "TUBE", "TUI", "TUNES", "TUSHU", "TV", "TVS", "TW", "TZ", "UA", "UBANK", "UBS", "UG", "UK", "UNICOM", "UNIVERSITY", "UNO", "UOL", "UPS", "US", "UY", "UZ", "VA", "VACATIONS", "VANA", "VANGUARD", "VC", "VE", "VEGAS", "VENTURES", "VERISIGN", "VERSICHERUNG", "VET", "VG", "VI", "VIAJES", "VIDEO", "VIG", "VIKING", "VILLAS", "VIN", "VIP", "VIRGIN", "VISA", "VISION", "VIVA", "VIVO", "VLAANDEREN", "VN", "VODKA", "VOLVO", "VOTE", "VOTING", "VOTO", "VOYAGE", "VU", "WALES", "WALMART", "WALTER", "WANG", "WANGGOU", "WATCH", "WATCHES", "WEATHER", "WEATHERCHANNEL", "WEBCAM", "WEBER", "WEBSITE", "WED", "WEDDING", "WEIBO", "WEIR", "WF", "WHOSWHO", "WIEN", "WIKI", "WILLIAMHILL", "WIN", "WINDOWS", "WINE", "WINNERS", "WME", "WOLTERSKLUWER", "WOODSIDE", "WORK", "WORKS", "WORLD", "WOW", "WS", "WTC", "WTF", "XBOX", "XEROX", "XIHUAN", "XIN", "XN--11B4C3D", "XN--1CK2E1B", "XN--1QQW23A", "XN--2SCRJ9C", "XN--30RR7Y", "XN--3BST00M", "XN--3DS443G", "XN--3E0B707E", "XN--3HCRJ9C", "XN--3PXU8K", "XN--42C2D9A", "XN--45BR5CYL", "XN--45BRJ9C", "XN--45Q11C", "XN--4DBRK0CE", "XN--4GBRIM", "XN--54B7FTA0CC", "XN--55QW42G", "XN--55QX5D", "XN--5SU34J936BGSG", "XN--5TZM5G", "XN--6FRZ82G", "XN--6QQ986B3XL", "XN--80ADXHKS", "XN--80AO21A", "XN--80AQECDR1A", "XN--80ASEHDB", "XN--80ASWG", "XN--8Y0A063A", "XN--90A3AC", "XN--90AE", "XN--90AIS", "XN--9DBQ2A", "XN--9ET52U", "XN--9KRT00A", "XN--B4W605FERD", "XN--BCK1B9A5DRE4C", "XN--C1AVG", "XN--C2BR7G", "XN--CCK2B3B", "XN--CCKWCXETD", "XN--CG4BKI", "XN--CLCHC0EA0B2G2A9GCD", "XN--CZR694B", "XN--CZRS0T", "XN--CZRU2D", "XN--D1ACJ3B", "XN--D1ALF", "XN--E1A4C", "XN--ECKVDTC9D", "XN--EFVY88H", "XN--FCT429K", "XN--FHBEI", "XN--FIQ228C5HS", "XN--FIQ64B", "XN--FIQS8S", "XN--FIQZ9S", "XN--FJQ720A", "XN--FLW351E", "XN--FPCRJ9C3D", "XN--FZC2C9E2C", "XN--FZYS8D69UVGM", "XN--G2XX48C", "XN--GCKR3F0F", "XN--GECRJ9C", "XN--GK3AT1E", "XN--H2BREG3EVE", "XN--H2BRJ9C", "XN--H2BRJ9C8C", "XN--HXT814E", "XN--I1B6B1A6A2E", "XN--IMR513N", "XN--IO0A7I", "XN--J1AEF", "XN--J1AMH", "XN--J6W193G", "XN--JLQ480N2RG", "XN--JVR189M", "XN--KCRX77D1X4A", "XN--KPRW13D", "XN--KPRY57D", "XN--KPUT3I", "XN--L1ACC", "XN--LGBBAT1AD8J", "XN--MGB9AWBF", "XN--MGBA3A3EJT", "XN--MGBA3A4F16A", "XN--MGBA7C0BBN0A", "XN--MGBAAM7A8H", "XN--MGBAB2BD", "XN--MGBAH1A3HJKRD", "XN--MGBAI9AZGQP6J", "XN--MGBAYH7GPA", "XN--MGBBH1A", "XN--MGBBH1A71E", "XN--MGBC0A9AZCG", "XN--MGBCA7DZDO", "XN--MGBCPQ6GPA1A", "XN--MGBERP4A5D4AR", "XN--MGBGU82A", "XN--MGBI4ECEXP", "XN--MGBPL2FH", "XN--MGBT3DHD", "XN--MGBTX2B", "XN--MGBX4CD0AB", "XN--MIX891F", "XN--MK1BU44C", "XN--MXTQ1M", "XN--NGBC5AZD", "XN--NGBE9E0A", "XN--NGBRX", "XN--NODE", "XN--NQV7F", "XN--NQV7FS00EMA", "XN--NYQY26A", "XN--O3CW4H", "XN--OGBPF8FL", "XN--OTU796D", "XN--P1ACF", "XN--P1AI", "XN--PGBS0DH", "XN--PSSY2U", "XN--Q7CE6A", "XN--Q9JYB4C", "XN--QCKA1PMC", "XN--QXA6A", "XN--QXAM", "XN--RHQV96G", "XN--ROVU88B", "XN--RVC1E0AM3E", "XN--S9BRJ9C", "XN--SES554G", "XN--T60B56A", "XN--TCKWE", "XN--TIQ49XQYJ", "XN--UNUP4Y", "XN--VERMGENSBERATER-CTB", "XN--VERMGENSBERATUNG-PWB", "XN--VHQUV", "XN--VUQ861B", "XN--W4R85EL8FHU5DNRA", "XN--W4RS40L", "XN--WGBH1C", "XN--WGBL6A", "XN--XHQ521B", "XN--XKC2AL3HYE2A", "XN--XKC2DL3A5EE0H", "XN--Y9A3AQ", "XN--YFRO4I67O", "XN--YGBI2AMMX", "XN--ZFR164B", "XXX", "XYZ", "YACHTS", "YAHOO", "YAMAXUN", "YANDEX", "YE", "YODOBASHI", "YOGA", "YOKOHAMA", "YOU", "YOUTUBE", "YT", "YUN", "ZA", "ZAPPOS", "ZARA", "ZERO", "ZIP", "ZM", "ZONE", "ZUERICH", "ZW" ];
14
+ const r = e.requireGlobals();
2159
15
 
2160
- Object.defineProperty(exports.commonjs, "__esModule", {
2161
- value: true
2162
- });
2163
-
2164
- exports.commonjs.tlds = void 0;
2165
-
2166
- const tt = et;
16
+ const n = e.EventListenerTypes;
2167
17
 
2168
- exports.commonjs.tlds = new Set(tt.TLDS.map(e => e.toLowerCase()));
2169
-
2170
- exports.require$$1 = ze;
18
+ function s() {
19
+ return function(e, t) {
20
+ (0, r.getMetadataArgsStorage)().entityListeners.push({
21
+ target: e.constructor,
22
+ propertyName: t,
23
+ type: n.EventListenerTypes.AFTER_RECOVER
24
+ });
25
+ };
26
+ }