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,2142 +1,26 @@
1
- /* Build Date: Mon Nov 24 2025 18:02:01 GMT+0800 (China Standard Time) */
2
- import { g as e, a as t } from "./Package.internal.8.mjs";
1
+ /* Build Date: Mon Nov 24 2025 18:10:51 GMT+0800 (China Standard Time) */
2
+ import { a as e, E as t } from "./Package.internal.51.mjs";
3
3
 
4
- import * as r from "url";
4
+ var r = {};
5
5
 
6
- import * as n from "util";
7
-
8
- var o = {};
9
-
10
- var s = {
11
- exports: {}
12
- };
13
-
14
- var i = class AssertError extends Error {
15
- name="AssertError";
16
- constructor(e, t) {
17
- super(e || "Unknown error");
18
- if (typeof Error.captureStackTrace === "function") {
19
- Error.captureStackTrace(this, t);
20
- }
21
- }
22
- };
23
-
24
- var a = function(...e) {
25
- try {
26
- return JSON.stringify(...e);
27
- } catch (e) {
28
- return "[Cannot display object: " + e.message + "]";
29
- }
30
- };
31
-
32
- s.exports;
33
-
34
- const c = i;
35
-
36
- const A = a;
37
-
38
- const f = s.exports = function(e, ...t) {
39
- if (e) {
40
- return;
41
- }
42
- if (t.length === 1 && t[0] instanceof Error) {
43
- throw t[0];
44
- }
45
- const r = t.filter(e => e !== "").map(e => typeof e === "string" ? e : e instanceof Error ? e.message : A(e));
46
- throw new c(r.join(" "), f);
47
- };
48
-
49
- var l = s.exports;
50
-
51
- const u = e(l);
52
-
53
- const E = l;
54
-
55
- const N = {};
56
-
57
- var O = function(e, t, r) {
58
- if (t === false || t === null || t === undefined) {
59
- return e;
60
- }
61
- r = r || {};
62
- if (typeof r === "string") {
63
- r = {
64
- separator: r
65
- };
66
- }
67
- const n = Array.isArray(t);
68
- E(!n || !r.separator, "Separator option is not valid for array-based chain");
69
- const o = n ? t : t.split(r.separator || ".");
70
- let s = e;
71
- for (let e = 0; e < o.length; ++e) {
72
- let n = o[e];
73
- const i = r.iterables && N.iterables(s);
74
- if (Array.isArray(s) || i === "set") {
75
- const e = Number(n);
76
- if (Number.isInteger(e)) {
77
- n = e < 0 ? s.length + e : e;
78
- }
79
- }
80
- if (!s || typeof s === "function" && r.functions === false || !i && s[n] === undefined) {
81
- E(!r.strict || e + 1 === o.length, "Missing segment", n, "in reach path ", t);
82
- E(typeof s === "object" || r.functions === true || typeof s !== "function", "Invalid segment", n, "in reach path ", t);
83
- s = r.default;
84
- break;
85
- }
86
- if (!i) {
87
- s = s[n];
88
- } else if (i === "set") {
89
- s = [ ...s ][n];
90
- } else {
91
- s = s.get(n);
92
- }
93
- }
94
- return s;
95
- };
96
-
97
- N.iterables = function(e) {
98
- if (e instanceof Set) {
99
- return "set";
100
- }
101
- if (e instanceof Map) {
102
- return "map";
103
- }
104
- };
105
-
106
- var S = {
107
- exports: {}
108
- };
109
-
110
- S.exports;
111
-
112
- (function(e, t) {
113
- const r = {};
114
- t = e.exports = {
115
- array: Array.prototype,
116
- buffer: Buffer && Buffer.prototype,
117
- date: Date.prototype,
118
- error: Error.prototype,
119
- generic: Object.prototype,
120
- map: Map.prototype,
121
- promise: Promise.prototype,
122
- regex: RegExp.prototype,
123
- set: Set.prototype,
124
- url: URL.prototype,
125
- weakMap: WeakMap.prototype,
126
- weakSet: WeakSet.prototype
127
- };
128
- 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 ] ]);
129
- t.getInternalProto = function(e) {
130
- if (Array.isArray(e)) {
131
- return t.array;
132
- }
133
- if (Buffer && e instanceof Buffer) {
134
- return t.buffer;
135
- }
136
- if (e instanceof Date) {
137
- return t.date;
138
- }
139
- if (e instanceof RegExp) {
140
- return t.regex;
141
- }
142
- if (e instanceof Error) {
143
- return t.error;
144
- }
145
- const n = Object.prototype.toString.call(e);
146
- return r.typeMap.get(n) || t.generic;
147
- };
148
- })(S, S.exports);
149
-
150
- var I = S.exports;
151
-
152
- var R = {};
153
-
154
- R.keys = function(e, t = {}) {
155
- return t.symbols !== false ? Reflect.ownKeys(e) : Object.getOwnPropertyNames(e);
156
- };
157
-
158
- const T = O;
159
-
160
- const p = I;
161
-
162
- const C = R;
163
-
164
- const L = {
165
- needsProtoHack: new Set([ p.set, p.map, p.weakSet, p.weakMap ]),
166
- structuredCloneExists: typeof structuredClone === "function"
167
- };
168
-
169
- var M = L.clone = function(e, t = {}, r = null) {
170
- if (typeof e !== "object" || e === null) {
171
- return e;
172
- }
173
- let n = L.clone;
174
- let o = r;
175
- if (t.shallow) {
176
- if (t.shallow !== true) {
177
- return L.cloneWithShallow(e, t);
178
- }
179
- n = e => e;
180
- } else if (o) {
181
- const t = o.get(e);
182
- if (t) {
183
- return t;
184
- }
185
- } else {
186
- o = new Map;
187
- }
188
- const s = p.getInternalProto(e);
189
- switch (s) {
190
- case p.buffer:
191
- return Buffer?.from(e);
192
-
193
- case p.date:
194
- return new Date(e.getTime());
195
-
196
- case p.regex:
197
- case p.url:
198
- return new s.constructor(e);
199
- }
200
- const i = L.base(e, s, t);
201
- if (i === e) {
202
- return e;
203
- }
204
- if (o) {
205
- o.set(e, i);
206
- }
207
- if (s === p.set) {
208
- for (const r of e) {
209
- i.add(n(r, t, o));
210
- }
211
- } else if (s === p.map) {
212
- for (const [r, s] of e) {
213
- i.set(r, n(s, t, o));
214
- }
215
- }
216
- const a = C.keys(e, t);
217
- for (const r of a) {
218
- if (r === "__proto__") {
219
- continue;
220
- }
221
- if (s === p.array && r === "length") {
222
- i.length = e.length;
223
- continue;
224
- }
225
- if (L.structuredCloneExists && s === p.error && r === "stack") {
226
- continue;
227
- }
228
- const a = Object.getOwnPropertyDescriptor(e, r);
229
- if (a) {
230
- if (a.get || a.set) {
231
- Object.defineProperty(i, r, a);
232
- } else if (a.enumerable) {
233
- i[r] = n(e[r], t, o);
234
- } else {
235
- Object.defineProperty(i, r, {
236
- enumerable: false,
237
- writable: true,
238
- configurable: true,
239
- value: n(e[r], t, o)
240
- });
241
- }
242
- } else {
243
- Object.defineProperty(i, r, {
244
- enumerable: true,
245
- writable: true,
246
- configurable: true,
247
- value: n(e[r], t, o)
248
- });
249
- }
250
- }
251
- return i;
252
- };
253
-
254
- L.cloneWithShallow = function(e, t) {
255
- const r = t.shallow;
256
- t = Object.assign({}, t);
257
- t.shallow = false;
258
- const n = new Map;
259
- for (const t of r) {
260
- const r = T(e, t);
261
- if (typeof r === "object" || typeof r === "function") {
262
- n.set(r, r);
263
- }
264
- }
265
- return L.clone(e, t, n);
266
- };
267
-
268
- L.base = function(e, t, r) {
269
- if (r.prototype === false) {
270
- if (L.needsProtoHack.has(t)) {
271
- return new t.constructor;
272
- }
273
- return t === p.array ? [] : {};
274
- }
275
- const n = Object.getPrototypeOf(e);
276
- if (n && n.isImmutable) {
277
- return e;
278
- }
279
- if (t === p.array) {
280
- const e = [];
281
- if (n !== t) {
282
- Object.setPrototypeOf(e, n);
283
- }
284
- return e;
285
- } else if (t === p.error && L.structuredCloneExists && (n === t || Error.isPrototypeOf(n.constructor))) {
286
- const t = structuredClone(e);
287
- if (Object.getPrototypeOf(t) !== n) {
288
- Object.setPrototypeOf(t, n);
289
- }
290
- return t;
291
- }
292
- if (L.needsProtoHack.has(t)) {
293
- const e = new n.constructor;
294
- if (n !== t) {
295
- Object.setPrototypeOf(e, n);
296
- }
297
- return e;
298
- }
299
- return Object.create(n);
300
- };
301
-
302
- const d = l;
303
-
304
- const D = M;
305
-
306
- const B = R;
307
-
308
- const h = {};
309
-
310
- var G = h.merge = function(e, t, r) {
311
- d(e && typeof e === "object", "Invalid target value: must be an object");
312
- d(t === null || t === undefined || typeof t === "object", "Invalid source value: must be null, undefined, or an object");
313
- if (!t) {
314
- return e;
315
- }
316
- r = Object.assign({
317
- nullOverride: true,
318
- mergeArrays: true
319
- }, r);
320
- if (Array.isArray(t)) {
321
- d(Array.isArray(e), "Cannot merge array onto an object");
322
- if (!r.mergeArrays) {
323
- e.length = 0;
324
- }
325
- for (let n = 0; n < t.length; ++n) {
326
- e.push(D(t[n], {
327
- symbols: r.symbols
328
- }));
329
- }
330
- return e;
331
- }
332
- const n = B.keys(t, r);
333
- for (let o = 0; o < n.length; ++o) {
334
- const s = n[o];
335
- if (s === "__proto__" || !Object.prototype.propertyIsEnumerable.call(t, s)) {
336
- continue;
337
- }
338
- const i = t[s];
339
- if (i && typeof i === "object") {
340
- if (e[s] === i) {
341
- continue;
342
- }
343
- if (!e[s] || typeof e[s] !== "object" || Array.isArray(e[s]) !== Array.isArray(i) || i instanceof Date || Buffer && Buffer.isBuffer(i) || i instanceof RegExp) {
344
- e[s] = D(i, {
345
- symbols: r.symbols
346
- });
347
- } else {
348
- h.merge(e[s], i, r);
349
- }
350
- } else {
351
- if (i !== null && i !== undefined) {
352
- e[s] = i;
353
- } else if (r.nullOverride) {
354
- e[s] = i;
355
- }
356
- }
357
- }
358
- return e;
359
- };
360
-
361
- const m = l;
362
-
363
- const y = M;
364
-
365
- const P = G;
366
-
367
- const g = O;
368
-
369
- const U = {};
370
-
371
- var X = function(e, t, r = {}) {
372
- m(e && typeof e === "object", "Invalid defaults value: must be an object");
373
- m(!t || t === true || typeof t === "object", "Invalid source value: must be true, falsy or an object");
374
- m(typeof r === "object", "Invalid options: must be an object");
375
- if (!t) {
376
- return null;
377
- }
378
- if (r.shallow) {
379
- return U.applyToDefaultsWithShallow(e, t, r);
380
- }
381
- const n = y(e);
382
- if (t === true) {
383
- return n;
384
- }
385
- const o = r.nullOverride !== undefined ? r.nullOverride : false;
386
- return P(n, t, {
387
- nullOverride: o,
388
- mergeArrays: false
389
- });
390
- };
391
-
392
- U.applyToDefaultsWithShallow = function(e, t, r) {
393
- const n = r.shallow;
394
- m(Array.isArray(n), "Invalid keys");
395
- const o = new Map;
396
- const s = t === true ? null : new Set;
397
- for (let r of n) {
398
- r = Array.isArray(r) ? r : r.split(".");
399
- const n = g(e, r);
400
- if (n && typeof n === "object") {
401
- o.set(n, s && g(t, r) || n);
402
- } else if (s) {
403
- s.add(r);
404
- }
405
- }
406
- const i = y(e, {}, o);
407
- if (!s) {
408
- return i;
409
- }
410
- for (const e of s) {
411
- U.reachCopy(i, t, e);
412
- }
413
- const a = r.nullOverride !== undefined ? r.nullOverride : false;
414
- return P(i, t, {
415
- nullOverride: a,
416
- mergeArrays: false
417
- });
418
- };
419
-
420
- U.reachCopy = function(e, t, r) {
421
- for (const e of r) {
422
- if (!(e in t)) {
423
- return;
424
- }
425
- const r = t[e];
426
- if (typeof r !== "object" || r === null) {
427
- return;
428
- }
429
- t = r;
430
- }
431
- const n = t;
432
- let o = e;
433
- for (let e = 0; e < r.length - 1; ++e) {
434
- const t = r[e];
435
- if (typeof o[t] !== "object") {
436
- o[t] = {};
437
- }
438
- o = o[t];
439
- }
440
- o[r[r.length - 1]] = n;
441
- };
442
-
443
- const H = {};
444
-
445
- var b = H.Bench = class {
446
- constructor() {
447
- this.ts = 0;
448
- this.reset();
449
- }
450
- reset() {
451
- this.ts = H.Bench.now();
452
- }
453
- elapsed() {
454
- return H.Bench.now() - this.ts;
455
- }
456
- static now() {
457
- const e = process.hrtime();
458
- return e[0] * 1e3 + e[1] / 1e6;
459
- }
460
- };
461
-
462
- var F = function() {};
463
-
464
- const v = F;
465
-
466
- var w = function() {
467
- return new Promise(v);
468
- };
469
-
470
- const K = I;
471
-
472
- const Y = {
473
- mismatched: null
474
- };
475
-
476
- var _ = function(e, t, r) {
477
- r = Object.assign({
478
- prototype: true
479
- }, r);
480
- return !!Y.isDeepEqual(e, t, r, []);
481
- };
482
-
483
- Y.isDeepEqual = function(e, t, r, n) {
484
- if (e === t) {
485
- return e !== 0 || 1 / e === 1 / t;
486
- }
487
- const o = typeof e;
488
- if (o !== typeof t) {
489
- return false;
490
- }
491
- if (e === null || t === null) {
492
- return false;
493
- }
494
- if (o === "function") {
495
- if (!r.deepFunction || e.toString() !== t.toString()) {
496
- return false;
497
- }
498
- } else if (o !== "object") {
499
- return e !== e && t !== t;
500
- }
501
- const s = Y.getSharedType(e, t, !!r.prototype);
502
- switch (s) {
503
- case K.buffer:
504
- return Buffer && Buffer.prototype.equals.call(e, t);
505
-
506
- case K.promise:
507
- return e === t;
508
-
509
- case K.regex:
510
- case K.url:
511
- return e.toString() === t.toString();
512
-
513
- case Y.mismatched:
514
- return false;
515
- }
516
- for (let r = n.length - 1; r >= 0; --r) {
517
- if (n[r].isSame(e, t)) {
518
- return true;
519
- }
520
- }
521
- n.push(new Y.SeenEntry(e, t));
522
- try {
523
- return !!Y.isDeepEqualObj(s, e, t, r, n);
524
- } finally {
525
- n.pop();
526
- }
527
- };
528
-
529
- Y.getSharedType = function(e, t, r) {
530
- if (r) {
531
- if (Object.getPrototypeOf(e) !== Object.getPrototypeOf(t)) {
532
- return Y.mismatched;
533
- }
534
- return K.getInternalProto(e);
535
- }
536
- const n = K.getInternalProto(e);
537
- if (n !== K.getInternalProto(t)) {
538
- return Y.mismatched;
539
- }
540
- return n;
541
- };
542
-
543
- Y.valueOf = function(e) {
544
- const t = e.valueOf;
545
- if (t === undefined) {
546
- return e;
547
- }
548
- try {
549
- return t.call(e);
550
- } catch (e) {
551
- return e;
552
- }
553
- };
554
-
555
- Y.hasOwnEnumerableProperty = function(e, t) {
556
- return Object.prototype.propertyIsEnumerable.call(e, t);
557
- };
558
-
559
- Y.isSetSimpleEqual = function(e, t) {
560
- for (const r of Set.prototype.values.call(e)) {
561
- if (!Set.prototype.has.call(t, r)) {
562
- return false;
563
- }
564
- }
565
- return true;
566
- };
567
-
568
- Y.isDeepEqualObj = function(e, t, r, n, o) {
569
- const {isDeepEqual: s, valueOf: i, hasOwnEnumerableProperty: a} = Y;
570
- const {keys: c, getOwnPropertySymbols: A} = Object;
571
- if (e === K.array) {
572
- if (n.part) {
573
- for (const e of t) {
574
- for (const t of r) {
575
- if (s(e, t, n, o)) {
576
- return true;
577
- }
578
- }
579
- }
580
- } else {
581
- if (t.length !== r.length) {
582
- return false;
583
- }
584
- for (let e = 0; e < t.length; ++e) {
585
- if (!s(t[e], r[e], n, o)) {
586
- return false;
587
- }
588
- }
589
- return true;
590
- }
591
- } else if (e === K.set) {
592
- if (t.size !== r.size) {
593
- return false;
594
- }
595
- if (!Y.isSetSimpleEqual(t, r)) {
596
- const e = new Set(Set.prototype.values.call(r));
597
- for (const r of Set.prototype.values.call(t)) {
598
- if (e.delete(r)) {
599
- continue;
600
- }
601
- let t = false;
602
- for (const i of e) {
603
- if (s(r, i, n, o)) {
604
- e.delete(i);
605
- t = true;
606
- break;
607
- }
608
- }
609
- if (!t) {
610
- return false;
611
- }
612
- }
613
- }
614
- } else if (e === K.map) {
615
- if (t.size !== r.size) {
616
- return false;
617
- }
618
- for (const [e, i] of Map.prototype.entries.call(t)) {
619
- if (i === undefined && !Map.prototype.has.call(r, e)) {
620
- return false;
621
- }
622
- if (!s(i, Map.prototype.get.call(r, e), n, o)) {
623
- return false;
624
- }
625
- }
626
- } else if (e === K.error) {
627
- if (t.name !== r.name || t.message !== r.message) {
628
- return false;
629
- }
630
- }
631
- const f = i(t);
632
- const l = i(r);
633
- if ((t !== f || r !== l) && !s(f, l, n, o)) {
634
- return false;
635
- }
636
- const u = c(t);
637
- if (!n.part && u.length !== c(r).length && !n.skip) {
638
- return false;
639
- }
640
- let E = 0;
641
- for (const e of u) {
642
- if (n.skip && n.skip.includes(e)) {
643
- if (r[e] === undefined) {
644
- ++E;
645
- }
646
- continue;
647
- }
648
- if (!a(r, e)) {
649
- return false;
650
- }
651
- if (!s(t[e], r[e], n, o)) {
652
- return false;
653
- }
654
- }
655
- if (!n.part && u.length - E !== c(r).length) {
656
- return false;
657
- }
658
- if (n.symbols !== false) {
659
- const e = A(t);
660
- const i = new Set(A(r));
661
- for (const c of e) {
662
- if (!n.skip?.includes(c)) {
663
- if (a(t, c)) {
664
- if (!a(r, c)) {
665
- return false;
666
- }
667
- if (!s(t[c], r[c], n, o)) {
668
- return false;
669
- }
670
- } else if (a(r, c)) {
671
- return false;
672
- }
673
- }
674
- i.delete(c);
675
- }
676
- for (const e of i) {
677
- if (a(r, e)) {
678
- return false;
679
- }
680
- }
681
- }
682
- return true;
683
- };
684
-
685
- Y.SeenEntry = class {
686
- constructor(e, t) {
687
- this.obj = e;
688
- this.ref = t;
689
- }
690
- isSame(e, t) {
691
- return this.obj === e && this.ref === t;
692
- }
693
- };
694
-
695
- var V = function(e) {
696
- return e.replace(/[\^\$\.\*\+\-\?\=\!\:\|\\\/\(\)\[\]\{\}\,]/g, "\\$&");
697
- };
698
-
699
- const W = e(V);
700
-
701
- const x = l;
702
-
703
- const j = _;
704
-
705
- const Z = V;
706
-
707
- const J = R;
708
-
709
- const k = {};
710
-
711
- var Q = function(e, t, r = {}) {
712
- if (typeof t !== "object") {
713
- t = [ t ];
714
- }
715
- x(!Array.isArray(t) || t.length, "Values array cannot be empty");
716
- if (typeof e === "string") {
717
- return k.string(e, t, r);
718
- }
719
- if (Array.isArray(e)) {
720
- return k.array(e, t, r);
721
- }
722
- x(typeof e === "object", "Reference must be string or an object");
723
- return k.object(e, t, r);
724
- };
725
-
726
- k.array = function(e, t, r) {
727
- if (!Array.isArray(t)) {
728
- t = [ t ];
729
- }
730
- if (!e.length) {
731
- return false;
732
- }
733
- if (r.only && r.once && e.length !== t.length) {
734
- return false;
735
- }
736
- let n;
737
- const o = new Map;
738
- for (const e of t) {
739
- if (!r.deep || !e || typeof e !== "object") {
740
- const t = o.get(e);
741
- if (t) {
742
- ++t.allowed;
743
- } else {
744
- o.set(e, {
745
- allowed: 1,
746
- hits: 0
747
- });
748
- }
749
- } else {
750
- n = n ?? k.compare(r);
751
- let t = false;
752
- for (const [r, s] of o.entries()) {
753
- if (n(r, e)) {
754
- ++s.allowed;
755
- t = true;
756
- break;
757
- }
758
- }
759
- if (!t) {
760
- o.set(e, {
761
- allowed: 1,
762
- hits: 0
763
- });
764
- }
765
- }
766
- }
767
- let s = 0;
768
- for (const t of e) {
769
- let e;
770
- if (!r.deep || !t || typeof t !== "object") {
771
- e = o.get(t);
772
- } else {
773
- n = n ?? k.compare(r);
774
- for (const [r, s] of o.entries()) {
775
- if (n(r, t)) {
776
- e = s;
777
- break;
778
- }
779
- }
780
- }
781
- if (e) {
782
- ++e.hits;
783
- ++s;
784
- if (r.once && e.hits > e.allowed) {
785
- return false;
786
- }
787
- }
788
- }
789
- if (r.only && s !== e.length) {
790
- return false;
791
- }
792
- for (const e of o.values()) {
793
- if (e.hits === e.allowed) {
794
- continue;
795
- }
796
- if (e.hits < e.allowed && !r.part) {
797
- return false;
798
- }
799
- }
800
- return !!s;
801
- };
802
-
803
- k.object = function(e, t, r) {
804
- x(r.once === undefined, "Cannot use option once with object");
805
- const n = J.keys(e, r);
806
- if (!n.length) {
807
- return false;
808
- }
809
- if (Array.isArray(t)) {
810
- return k.array(n, t, r);
811
- }
812
- const o = Object.getOwnPropertySymbols(t).filter(e => t.propertyIsEnumerable(e));
813
- const s = [ ...Object.keys(t), ...o ];
814
- const i = k.compare(r);
815
- const a = new Set(s);
816
- for (const o of n) {
817
- if (!a.has(o)) {
818
- if (r.only) {
819
- return false;
820
- }
821
- continue;
822
- }
823
- if (!i(t[o], e[o])) {
824
- return false;
825
- }
826
- a.delete(o);
827
- }
828
- if (a.size) {
829
- return r.part ? a.size < s.length : false;
830
- }
831
- return true;
832
- };
833
-
834
- k.string = function(e, t, r) {
835
- if (e === "") {
836
- return t.length === 1 && t[0] === "" || !r.once && !t.some(e => e !== "");
837
- }
838
- const n = new Map;
839
- const o = [];
840
- for (const e of t) {
841
- x(typeof e === "string", "Cannot compare string reference to non-string value");
842
- if (e) {
843
- const t = n.get(e);
844
- if (t) {
845
- ++t.allowed;
846
- } else {
847
- n.set(e, {
848
- allowed: 1,
849
- hits: 0
850
- });
851
- o.push(Z(e));
852
- }
853
- } else if (r.once || r.only) {
854
- return false;
855
- }
856
- }
857
- if (!o.length) {
858
- return true;
859
- }
860
- const s = new RegExp(`(${o.join("|")})`, "g");
861
- const i = e.replace(s, (e, t) => {
862
- ++n.get(t).hits;
863
- return "";
864
- });
865
- if (r.only && i) {
866
- return false;
867
- }
868
- let a = false;
869
- for (const e of n.values()) {
870
- if (e.hits) {
871
- a = true;
872
- }
873
- if (e.hits === e.allowed) {
874
- continue;
875
- }
876
- if (e.hits < e.allowed && !r.part) {
877
- return false;
878
- }
879
- if (r.once) {
880
- return false;
881
- }
882
- }
883
- return !!a;
884
- };
885
-
886
- k.compare = function(e) {
887
- if (!e.deep) {
888
- return k.shallow;
889
- }
890
- const t = e.only !== undefined;
891
- const r = e.part !== undefined;
892
- const n = {
893
- prototype: t ? e.only : r ? !e.part : false,
894
- part: t ? !e.only : r ? e.part : false
895
- };
896
- return (e, t) => j(e, t, n);
897
- };
898
-
899
- k.shallow = function(e, t) {
900
- return e === t;
901
- };
902
-
903
- const $ = l;
904
-
905
- var q = function(e) {
906
- $(/^[ \w\!#\$%&'\(\)\*\+,\-\.\/\:;<\=>\?@\[\]\^`\{\|\}~\"\\]*$/.test(e), "Bad attribute value (" + e + ")");
907
- return e.replace(/\\/g, "\\\\").replace(/\"/g, '\\"');
908
- };
909
-
910
- const z = {};
911
-
912
- var ee = function(e) {
913
- if (!e) {
914
- return "";
915
- }
916
- let t = "";
917
- for (let r = 0; r < e.length; ++r) {
918
- const n = e.charCodeAt(r);
919
- if (z.isSafe(n)) {
920
- t += e[r];
921
- } else {
922
- t += z.escapeHtmlChar(n);
923
- }
924
- }
925
- return t;
926
- };
927
-
928
- z.escapeHtmlChar = function(e) {
929
- const t = z.namedHtml.get(e);
930
- if (t) {
931
- return t;
932
- }
933
- if (e >= 256) {
934
- return "&#" + e + ";";
935
- }
936
- const r = e.toString(16).padStart(2, "0");
937
- return `&#x${r};`;
938
- };
939
-
940
- z.isSafe = function(e) {
941
- return z.safeCharCodes.has(e);
942
- };
943
-
944
- z.namedHtml = new Map([ [ 38, "&amp;" ], [ 60, "&lt;" ], [ 62, "&gt;" ], [ 34, "&quot;" ], [ 160, "&nbsp;" ], [ 162, "&cent;" ], [ 163, "&pound;" ], [ 164, "&curren;" ], [ 169, "&copy;" ], [ 174, "&reg;" ] ]);
945
-
946
- z.safeCharCodes = function() {
947
- const e = new Set;
948
- for (let t = 32; t < 123; ++t) {
949
- if (t >= 97 || t >= 65 && t <= 90 || t >= 48 && t <= 57 || t === 32 || t === 46 || t === 44 || t === 45 || t === 58 || t === 95) {
950
- e.add(t);
951
- }
952
- }
953
- return e;
954
- }();
955
-
956
- const te = {};
957
-
958
- var re = function(e) {
959
- if (!e) {
960
- return "";
961
- }
962
- return e.replace(/[<>&\u2028\u2029]/g, te.escape);
963
- };
964
-
965
- te.escape = function(e) {
966
- return te.replacements.get(e);
967
- };
968
-
969
- te.replacements = new Map([ [ "<", "\\u003c" ], [ ">", "\\u003e" ], [ "&", "\\u0026" ], [ "\u2028", "\\u2028" ], [ "\u2029", "\\u2029" ] ]);
970
-
971
- const ne = {};
972
-
973
- var oe = ne.flatten = function(e, t) {
974
- const r = t || [];
975
- for (const t of e) {
976
- if (Array.isArray(t)) {
977
- ne.flatten(t, r);
978
- } else {
979
- r.push(t);
980
- }
981
- }
982
- return r;
983
- };
984
-
985
- const se = {};
986
-
987
- var ie = function(e, t, r = {}) {
988
- if (!e || !t) {
989
- return r.first ? null : [];
990
- }
991
- const n = [];
992
- const o = Array.isArray(e) ? new Set(e) : e;
993
- const s = new Set;
994
- for (const e of t) {
995
- if (se.has(o, e) && !s.has(e)) {
996
- if (r.first) {
997
- return e;
998
- }
999
- n.push(e);
1000
- s.add(e);
1001
- }
1002
- }
1003
- return r.first ? null : n;
1004
- };
1005
-
1006
- se.has = function(e, t) {
1007
- if (typeof e.has === "function") {
1008
- return e.has(t);
1009
- }
1010
- return e[t] !== undefined;
1011
- };
1012
-
1013
- var ae = function(e) {
1014
- return typeof e?.then === "function";
1015
- };
1016
-
1017
- const ce = {
1018
- wrapped: Symbol("wrapped")
1019
- };
1020
-
1021
- var Ae = function(e) {
1022
- if (e[ce.wrapped]) {
1023
- return e;
1024
- }
1025
- let t = false;
1026
- const r = function(...r) {
1027
- if (!t) {
1028
- t = true;
1029
- e(...r);
1030
- }
1031
- };
1032
- r[ce.wrapped] = true;
1033
- return r;
1034
- };
1035
-
1036
- const fe = O;
1037
-
1038
- var le = function(e, t, r) {
1039
- return t.replace(/{([^{}]+)}/g, (t, n) => {
1040
- const o = fe(e, n, r);
1041
- return o ?? "";
1042
- });
1043
- };
1044
-
1045
- const ue = {
1046
- maxTimer: 2 ** 31 - 1
1047
- };
1048
-
1049
- var Ee = function(e, t, r) {
1050
- if (typeof e === "bigint") {
1051
- e = Number(e);
1052
- }
1053
- if (e >= Number.MAX_SAFE_INTEGER) {
1054
- e = Infinity;
1055
- }
1056
- if (typeof e !== "number" && e !== undefined) {
1057
- throw new TypeError("Timeout must be a number or bigint");
1058
- }
1059
- return new Promise(n => {
1060
- const o = r ? r.setTimeout : setTimeout;
1061
- const s = () => {
1062
- const r = Math.min(e, ue.maxTimer);
1063
- e -= r;
1064
- o(() => e > 0 ? s() : n(t), r);
1065
- };
1066
- if (e !== Infinity) {
1067
- s();
1068
- }
1069
- });
1070
- };
1071
-
1072
- o.applyToDefaults = X;
1073
-
1074
- o.assert = l;
1075
-
1076
- o.AssertError = i;
1077
-
1078
- o.Bench = b;
1079
-
1080
- o.block = w;
1081
-
1082
- o.clone = M;
1083
-
1084
- o.contain = Q;
1085
-
1086
- o.deepEqual = _;
1087
-
1088
- o.escapeHeaderAttribute = q;
1089
-
1090
- o.escapeHtml = ee;
1091
-
1092
- o.escapeJson = re;
1093
-
1094
- o.escapeRegex = V;
1095
-
1096
- o.flatten = oe;
1097
-
1098
- o.ignore = F;
1099
-
1100
- o.intersect = ie;
1101
-
1102
- o.isPromise = ae;
1103
-
1104
- o.merge = G;
1105
-
1106
- o.once = Ae;
1107
-
1108
- o.reach = O;
1109
-
1110
- o.reachTemplate = le;
1111
-
1112
- o.stringify = a;
1113
-
1114
- o.wait = Ee;
1115
-
1116
- var Ne = {};
1117
-
1118
- (function(e) {
1119
- const t = {
1120
- operators: [ "!", "^", "*", "/", "%", "+", "-", "<", "<=", ">", ">=", "==", "!=", "&&", "||", "??" ],
1121
- operatorCharacters: [ "!", "^", "*", "/", "%", "+", "-", "<", "=", ">", "&", "|", "?" ],
1122
- operatorsOrder: [ [ "^" ], [ "*", "/", "%" ], [ "+", "-" ], [ "<", "<=", ">", ">=" ], [ "==", "!=" ], [ "&&" ], [ "||", "??" ] ],
1123
- operatorsPrefix: [ "!", "n" ],
1124
- literals: {
1125
- '"': '"',
1126
- "`": "`",
1127
- "'": "'",
1128
- "[": "]"
1129
- },
1130
- numberRx: /^(?:[0-9]*(\.[0-9]*)?){1}$/,
1131
- tokenRx: /^[\w\$\#\.\@\:\{\}]+$/,
1132
- symbol: Symbol("formula"),
1133
- settings: Symbol("settings")
1134
- };
1135
- e.Parser = class {
1136
- constructor(e, r = {}) {
1137
- if (!r[t.settings] && r.constants) {
1138
- for (const e in r.constants) {
1139
- const t = r.constants[e];
1140
- if (t !== null && ![ "boolean", "number", "string" ].includes(typeof t)) {
1141
- throw new Error(`Formula constant ${e} contains invalid ${typeof t} value type`);
1142
- }
1143
- }
1144
- }
1145
- this.settings = r[t.settings] ? r : Object.assign({
1146
- [t.settings]: true,
1147
- constants: {},
1148
- functions: {}
1149
- }, r);
1150
- this.single = null;
1151
- this._parts = null;
1152
- this._parse(e);
1153
- }
1154
- _parse(r) {
1155
- let n = [];
1156
- let o = "";
1157
- let s = 0;
1158
- let i = false;
1159
- const a = r => {
1160
- if (s) {
1161
- throw new Error("Formula missing closing parenthesis");
1162
- }
1163
- const a = n.length ? n[n.length - 1] : null;
1164
- if (!i && !o && !r) {
1165
- return;
1166
- }
1167
- if (a && a.type === "reference" && r === ")") {
1168
- a.type = "function";
1169
- a.value = this._subFormula(o, a.value);
1170
- o = "";
1171
- return;
1172
- }
1173
- if (r === ")") {
1174
- const t = new e.Parser(o, this.settings);
1175
- n.push({
1176
- type: "segment",
1177
- value: t
1178
- });
1179
- } else if (i) {
1180
- if (i === "]") {
1181
- n.push({
1182
- type: "reference",
1183
- value: o
1184
- });
1185
- o = "";
1186
- return;
1187
- }
1188
- n.push({
1189
- type: "literal",
1190
- value: o
1191
- });
1192
- } else if (t.operatorCharacters.includes(o)) {
1193
- if (a && a.type === "operator" && t.operators.includes(a.value + o)) {
1194
- a.value += o;
1195
- } else {
1196
- n.push({
1197
- type: "operator",
1198
- value: o
1199
- });
1200
- }
1201
- } else if (o.match(t.numberRx)) {
1202
- n.push({
1203
- type: "constant",
1204
- value: parseFloat(o)
1205
- });
1206
- } else if (this.settings.constants[o] !== undefined) {
1207
- n.push({
1208
- type: "constant",
1209
- value: this.settings.constants[o]
1210
- });
1211
- } else {
1212
- if (!o.match(t.tokenRx)) {
1213
- throw new Error(`Formula contains invalid token: ${o}`);
1214
- }
1215
- n.push({
1216
- type: "reference",
1217
- value: o
1218
- });
1219
- }
1220
- o = "";
1221
- };
1222
- for (const e of r) {
1223
- if (i) {
1224
- if (e === i) {
1225
- a();
1226
- i = false;
1227
- } else {
1228
- o += e;
1229
- }
1230
- } else if (s) {
1231
- if (e === "(") {
1232
- o += e;
1233
- ++s;
1234
- } else if (e === ")") {
1235
- --s;
1236
- if (!s) {
1237
- a(e);
1238
- } else {
1239
- o += e;
1240
- }
1241
- } else {
1242
- o += e;
1243
- }
1244
- } else if (e in t.literals) {
1245
- i = t.literals[e];
1246
- } else if (e === "(") {
1247
- a();
1248
- ++s;
1249
- } else if (t.operatorCharacters.includes(e)) {
1250
- a();
1251
- o = e;
1252
- a();
1253
- } else if (e !== " ") {
1254
- o += e;
1255
- } else {
1256
- a();
1257
- }
1258
- }
1259
- a();
1260
- n = n.map((e, t) => {
1261
- if (e.type !== "operator" || e.value !== "-" || t && n[t - 1].type !== "operator") {
1262
- return e;
1263
- }
1264
- return {
1265
- type: "operator",
1266
- value: "n"
1267
- };
1268
- });
1269
- let c = false;
1270
- for (const e of n) {
1271
- if (e.type === "operator") {
1272
- if (t.operatorsPrefix.includes(e.value)) {
1273
- continue;
1274
- }
1275
- if (!c) {
1276
- throw new Error("Formula contains an operator in invalid position");
1277
- }
1278
- if (!t.operators.includes(e.value)) {
1279
- throw new Error(`Formula contains an unknown operator ${e.value}`);
1280
- }
1281
- } else if (c) {
1282
- throw new Error("Formula missing expected operator");
1283
- }
1284
- c = !c;
1285
- }
1286
- if (!c) {
1287
- throw new Error("Formula contains invalid trailing operator");
1288
- }
1289
- if (n.length === 1 && [ "reference", "literal", "constant" ].includes(n[0].type)) {
1290
- this.single = {
1291
- type: n[0].type === "reference" ? "reference" : "value",
1292
- value: n[0].value
1293
- };
1294
- }
1295
- this._parts = n.map(e => {
1296
- if (e.type === "operator") {
1297
- return t.operatorsPrefix.includes(e.value) ? e : e.value;
1298
- }
1299
- if (e.type !== "reference") {
1300
- return e.value;
1301
- }
1302
- if (this.settings.tokenRx && !this.settings.tokenRx.test(e.value)) {
1303
- throw new Error(`Formula contains invalid reference ${e.value}`);
1304
- }
1305
- if (this.settings.reference) {
1306
- return this.settings.reference(e.value);
1307
- }
1308
- return t.reference(e.value);
1309
- });
1310
- }
1311
- _subFormula(r, n) {
1312
- const o = this.settings.functions[n];
1313
- if (typeof o !== "function") {
1314
- throw new Error(`Formula contains unknown function ${n}`);
1315
- }
1316
- let s = [];
1317
- if (r) {
1318
- let e = "";
1319
- let o = 0;
1320
- let i = false;
1321
- const a = () => {
1322
- if (!e) {
1323
- throw new Error(`Formula contains function ${n} with invalid arguments ${r}`);
1324
- }
1325
- s.push(e);
1326
- e = "";
1327
- };
1328
- for (let n = 0; n < r.length; ++n) {
1329
- const s = r[n];
1330
- if (i) {
1331
- e += s;
1332
- if (s === i) {
1333
- i = false;
1334
- }
1335
- } else if (s in t.literals && !o) {
1336
- e += s;
1337
- i = t.literals[s];
1338
- } else if (s === "," && !o) {
1339
- a();
1340
- } else {
1341
- e += s;
1342
- if (s === "(") {
1343
- ++o;
1344
- } else if (s === ")") {
1345
- --o;
1346
- }
1347
- }
1348
- }
1349
- a();
1350
- }
1351
- s = s.map(t => new e.Parser(t, this.settings));
1352
- return function(e) {
1353
- const t = [];
1354
- for (const r of s) {
1355
- t.push(r.evaluate(e));
1356
- }
1357
- return o.call(e, ...t);
1358
- };
1359
- }
1360
- evaluate(e) {
1361
- const r = this._parts.slice();
1362
- for (let n = r.length - 2; n >= 0; --n) {
1363
- const o = r[n];
1364
- if (o && o.type === "operator") {
1365
- const s = r[n + 1];
1366
- r.splice(n + 1, 1);
1367
- const i = t.evaluate(s, e);
1368
- r[n] = t.single(o.value, i);
1369
- }
1370
- }
1371
- t.operatorsOrder.forEach(n => {
1372
- for (let o = 1; o < r.length - 1; ) {
1373
- if (n.includes(r[o])) {
1374
- const n = r[o];
1375
- const s = t.evaluate(r[o - 1], e);
1376
- const i = t.evaluate(r[o + 1], e);
1377
- r.splice(o, 2);
1378
- const a = t.calculate(n, s, i);
1379
- r[o - 1] = a === 0 ? 0 : a;
1380
- } else {
1381
- o += 2;
1382
- }
1383
- }
1384
- });
1385
- return t.evaluate(r[0], e);
1386
- }
1387
- };
1388
- e.Parser.prototype[t.symbol] = true;
1389
- t.reference = function(e) {
1390
- return function(t) {
1391
- return t && t[e] !== undefined ? t[e] : null;
1392
- };
1393
- };
1394
- t.evaluate = function(e, r) {
1395
- if (e === null) {
1396
- return null;
1397
- }
1398
- if (typeof e === "function") {
1399
- return e(r);
1400
- }
1401
- if (e[t.symbol]) {
1402
- return e.evaluate(r);
1403
- }
1404
- return e;
1405
- };
1406
- t.single = function(e, t) {
1407
- if (e === "!") {
1408
- return t ? false : true;
1409
- }
1410
- const r = -t;
1411
- if (r === 0) {
1412
- return 0;
1413
- }
1414
- return r;
1415
- };
1416
- t.calculate = function(e, r, n) {
1417
- if (e === "??") {
1418
- return t.exists(r) ? r : n;
1419
- }
1420
- if (typeof r === "string" || typeof n === "string") {
1421
- if (e === "+") {
1422
- r = t.exists(r) ? r : "";
1423
- n = t.exists(n) ? n : "";
1424
- return r + n;
1425
- }
1426
- } else {
1427
- switch (e) {
1428
- case "^":
1429
- return Math.pow(r, n);
1430
-
1431
- case "*":
1432
- return r * n;
1433
-
1434
- case "/":
1435
- return r / n;
1436
-
1437
- case "%":
1438
- return r % n;
1439
-
1440
- case "+":
1441
- return r + n;
1442
-
1443
- case "-":
1444
- return r - n;
1445
- }
1446
- }
1447
- switch (e) {
1448
- case "<":
1449
- return r < n;
1450
-
1451
- case "<=":
1452
- return r <= n;
1453
-
1454
- case ">":
1455
- return r > n;
1456
-
1457
- case ">=":
1458
- return r >= n;
1459
-
1460
- case "==":
1461
- return r === n;
1462
-
1463
- case "!=":
1464
- return r !== n;
1465
-
1466
- case "&&":
1467
- return r && n;
1468
-
1469
- case "||":
1470
- return r || n;
1471
- }
1472
- return null;
1473
- };
1474
- t.exists = function(e) {
1475
- return e !== null && e !== undefined;
1476
- };
1477
- })(Ne);
1478
-
1479
- var Oe = {};
1480
-
1481
- Oe.location = function(e = 0) {
1482
- const t = Error.prepareStackTrace;
1483
- Error.prepareStackTrace = (e, t) => t;
1484
- const r = {};
1485
- Error.captureStackTrace(r, this);
1486
- const n = r.stack[e + 1];
1487
- Error.prepareStackTrace = t;
1488
- return {
1489
- filename: n.getFileName(),
1490
- line: n.getLineNumber()
1491
- };
1492
- };
1493
-
1494
- var Se = {};
1495
-
1496
- const {assert: Ie} = o;
1497
-
1498
- const Re = {};
1499
-
1500
- Se.Sorter = class {
1501
- constructor() {
1502
- this._items = [];
1503
- this.nodes = [];
1504
- }
1505
- add(e, t) {
1506
- t = t ?? {};
1507
- const r = [].concat(t.before ?? []);
1508
- const n = [].concat(t.after ?? []);
1509
- const o = t.group ?? "?";
1510
- const s = t.sort ?? 0;
1511
- Ie(!r.includes(o), `Item cannot come before itself: ${o}`);
1512
- Ie(!r.includes("?"), "Item cannot come before unassociated items");
1513
- Ie(!n.includes(o), `Item cannot come after itself: ${o}`);
1514
- Ie(!n.includes("?"), "Item cannot come after unassociated items");
1515
- if (!Array.isArray(e)) {
1516
- e = [ e ];
1517
- }
1518
- for (const t of e) {
1519
- const e = {
1520
- seq: this._items.length,
1521
- sort: s,
1522
- before: r,
1523
- after: n,
1524
- group: o,
1525
- node: t
1526
- };
1527
- this._items.push(e);
1528
- }
1529
- if (!t.manual) {
1530
- const e = this._sort();
1531
- Ie(e, "item", o !== "?" ? `added into group ${o}` : "", "created a dependencies error");
1532
- }
1533
- return this.nodes;
1534
- }
1535
- merge(e) {
1536
- if (!Array.isArray(e)) {
1537
- e = [ e ];
1538
- }
1539
- for (const t of e) {
1540
- if (t) {
1541
- for (const e of t._items) {
1542
- this._items.push(Object.assign({}, e));
1543
- }
1544
- }
1545
- }
1546
- this._items.sort(Re.mergeSort);
1547
- for (let e = 0; e < this._items.length; ++e) {
1548
- this._items[e].seq = e;
1549
- }
1550
- const t = this._sort();
1551
- Ie(t, "merge created a dependencies error");
1552
- return this.nodes;
1553
- }
1554
- sort() {
1555
- const e = this._sort();
1556
- Ie(e, "sort created a dependencies error");
1557
- return this.nodes;
1558
- }
1559
- _sort() {
1560
- const e = {};
1561
- const t = Object.create(null);
1562
- const r = Object.create(null);
1563
- for (const n of this._items) {
1564
- const o = n.seq;
1565
- const s = n.group;
1566
- r[s] = r[s] ?? [];
1567
- r[s].push(o);
1568
- e[o] = n.before;
1569
- for (const e of n.after) {
1570
- t[e] = t[e] ?? [];
1571
- t[e].push(o);
1572
- }
1573
- }
1574
- for (const t in e) {
1575
- const n = [];
1576
- for (const o in e[t]) {
1577
- const s = e[t][o];
1578
- r[s] = r[s] ?? [];
1579
- n.push(...r[s]);
1580
- }
1581
- e[t] = n;
1582
- }
1583
- for (const n in t) {
1584
- if (r[n]) {
1585
- for (const o of r[n]) {
1586
- e[o].push(...t[n]);
1587
- }
1588
- }
1589
- }
1590
- const n = {};
1591
- for (const t in e) {
1592
- const r = e[t];
1593
- for (const e of r) {
1594
- n[e] = n[e] ?? [];
1595
- n[e].push(t);
1596
- }
1597
- }
1598
- const o = {};
1599
- const s = [];
1600
- for (let e = 0; e < this._items.length; ++e) {
1601
- let t = e;
1602
- if (n[e]) {
1603
- t = null;
1604
- for (let e = 0; e < this._items.length; ++e) {
1605
- if (o[e] === true) {
1606
- continue;
1607
- }
1608
- if (!n[e]) {
1609
- n[e] = [];
1610
- }
1611
- const r = n[e].length;
1612
- let s = 0;
1613
- for (let t = 0; t < r; ++t) {
1614
- if (o[n[e][t]]) {
1615
- ++s;
1616
- }
1617
- }
1618
- if (s === r) {
1619
- t = e;
1620
- break;
1621
- }
1622
- }
1623
- }
1624
- if (t !== null) {
1625
- o[t] = true;
1626
- s.push(t);
1627
- }
1628
- }
1629
- if (s.length !== this._items.length) {
1630
- return false;
1631
- }
1632
- const i = {};
1633
- for (const e of this._items) {
1634
- i[e.seq] = e;
1635
- }
1636
- this._items = [];
1637
- this.nodes = [];
1638
- for (const e of s) {
1639
- const t = i[e];
1640
- this.nodes.push(t.node);
1641
- this._items.push(t);
1642
- }
1643
- return true;
1644
- }
1645
- };
1646
-
1647
- Re.mergeSort = (e, t) => e.sort === t.sort ? 0 : e.sort < t.sort ? -1 : 1;
1648
-
1649
- const Te = {
1650
- EMPTY_STRING: "Address must be a non-empty string",
1651
- FORBIDDEN_UNICODE: "Address contains forbidden Unicode characters",
1652
- MULTIPLE_AT_CHAR: "Address cannot contain more than one @ character",
1653
- MISSING_AT_CHAR: "Address must contain one @ character",
1654
- EMPTY_LOCAL: "Address local part cannot be empty",
1655
- ADDRESS_TOO_LONG: "Address too long",
1656
- LOCAL_TOO_LONG: "Address local part too long",
1657
- EMPTY_LOCAL_SEGMENT: "Address local part contains empty dot-separated segment",
1658
- INVALID_LOCAL_CHARS: "Address local part contains invalid character",
1659
- DOMAIN_NON_EMPTY_STRING: "Domain must be a non-empty string",
1660
- DOMAIN_TOO_LONG: "Domain too long",
1661
- DOMAIN_INVALID_UNICODE_CHARS: "Domain contains forbidden Unicode characters",
1662
- DOMAIN_INVALID_CHARS: "Domain contains invalid character",
1663
- DOMAIN_INVALID_TLDS_CHARS: "Domain contains invalid tld character",
1664
- DOMAIN_SEGMENTS_COUNT: "Domain lacks the minimum required number of segments",
1665
- DOMAIN_SEGMENTS_COUNT_MAX: "Domain contains too many segments",
1666
- DOMAIN_FORBIDDEN_TLDS: "Domain uses forbidden TLD",
1667
- DOMAIN_EMPTY_SEGMENT: "Domain contains empty dot-separated segment",
1668
- DOMAIN_LONG_SEGMENT: "Domain contains dot-separated segment that is too long"
1669
- };
1670
-
1671
- function pe(e) {
1672
- return {
1673
- code: e,
1674
- error: Te[e]
1675
- };
1676
- }
1677
-
1678
- const Ce = 2;
1679
-
1680
- const Le = /[^\x00-\x7f]/;
1681
-
1682
- const Me = /[\x00-\x20@\:\/\\#!\$&\'\(\)\*\+,;=\?]/;
1683
-
1684
- const de = /^[a-zA-Z](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?$/;
1685
-
1686
- const De = /^[a-zA-Z0-9](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?$/;
1687
-
1688
- const Be = /^[a-zA-Z0-9_](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?$/;
1689
-
1690
- const he = r.URL || URL;
1691
-
1692
- function Ge(e) {
1693
- return !!e.allow;
1694
- }
1695
-
1696
- function me(e, t = {}) {
1697
- if (!e) {
1698
- return pe("DOMAIN_NON_EMPTY_STRING");
1699
- }
1700
- if (typeof e !== "string") {
1701
- throw new Error("Invalid input: domain must be a string");
1702
- }
1703
- if (e.length > 256) {
1704
- return pe("DOMAIN_TOO_LONG");
1705
- }
1706
- const r = !Le.test(e);
1707
- if (!r) {
1708
- if (t.allowUnicode === false) {
1709
- return pe("DOMAIN_INVALID_UNICODE_CHARS");
1710
- }
1711
- e = e.normalize("NFC");
1712
- }
1713
- if (Me.test(e)) {
1714
- return pe("DOMAIN_INVALID_CHARS");
1715
- }
1716
- e = Pe(e);
1717
- if (t.allowFullyQualified && e[e.length - 1] === ".") {
1718
- e = e.slice(0, -1);
1719
- }
1720
- const n = t.minDomainSegments || Ce;
1721
- const o = e.split(".");
1722
- if (o.length < n) {
1723
- return pe("DOMAIN_SEGMENTS_COUNT");
1724
- }
1725
- if (t.maxDomainSegments) {
1726
- if (o.length > t.maxDomainSegments) {
1727
- return pe("DOMAIN_SEGMENTS_COUNT_MAX");
1728
- }
1729
- }
1730
- const s = t.tlds;
1731
- if (s) {
1732
- const e = o[o.length - 1].toLowerCase();
1733
- if (Ge(s)) {
1734
- if (!s.allow.has(e)) {
1735
- return pe("DOMAIN_FORBIDDEN_TLDS");
1736
- }
1737
- } else if (s.deny.has(e)) {
1738
- return pe("DOMAIN_FORBIDDEN_TLDS");
1739
- }
1740
- }
1741
- for (let e = 0; e < o.length; ++e) {
1742
- const r = o[e];
1743
- if (!r.length) {
1744
- return pe("DOMAIN_EMPTY_SEGMENT");
1745
- }
1746
- if (r.length > 63) {
1747
- return pe("DOMAIN_LONG_SEGMENT");
1748
- }
1749
- if (e < o.length - 1) {
1750
- if (t.allowUnderscore) {
1751
- if (!Be.test(r)) {
1752
- return pe("DOMAIN_INVALID_CHARS");
1753
- }
1754
- } else {
1755
- if (!De.test(r)) {
1756
- return pe("DOMAIN_INVALID_CHARS");
1757
- }
1758
- }
1759
- } else {
1760
- if (!de.test(r)) {
1761
- return pe("DOMAIN_INVALID_TLDS_CHARS");
1762
- }
1763
- }
1764
- }
1765
- return null;
1766
- }
1767
-
1768
- function ye(e, t) {
1769
- return !me(e, t);
1770
- }
1771
-
1772
- function Pe(e) {
1773
- if (e.includes("%")) {
1774
- e = e.replace(/%/g, "%25");
1775
- }
1776
- try {
1777
- return new he(`http://${e}`).host;
1778
- } catch (t) {
1779
- return e;
1780
- }
1781
- }
1782
-
1783
- function ge(e) {
1784
- if (!e) {
1785
- return;
1786
- }
1787
- if (typeof e.tlds !== "object") {
1788
- throw new Error("Invalid options: tlds must be a boolean or an object");
1789
- }
1790
- if (Ge(e.tlds)) {
1791
- if (e.tlds.allow instanceof Set === false) {
1792
- throw new Error("Invalid options: tlds.allow must be a Set object or true");
1793
- }
1794
- if (e.tlds.deny) {
1795
- throw new Error("Invalid options: cannot specify both tlds.allow and tlds.deny lists");
1796
- }
1797
- } else {
1798
- if (e.tlds.deny instanceof Set === false) {
1799
- throw new Error("Invalid options: tlds.deny must be a Set object");
1800
- }
1801
- }
1802
- }
1803
-
1804
- const Ue = /[^\x00-\x7f]/;
1805
-
1806
- const Xe = new (n.TextEncoder || TextEncoder);
1807
-
1808
- function He(e, t) {
1809
- return Fe(e, t);
1810
- }
1811
-
1812
- function be(e, t) {
1813
- return !Fe(e, t);
1814
- }
1815
-
1816
- function Fe(e, t = {}) {
1817
- if (typeof e !== "string") {
1818
- throw new Error("Invalid input: email must be a string");
1819
- }
1820
- if (!e) {
1821
- return pe("EMPTY_STRING");
1822
- }
1823
- const r = !Ue.test(e);
1824
- if (!r) {
1825
- if (t.allowUnicode === false) {
1826
- return pe("FORBIDDEN_UNICODE");
1827
- }
1828
- e = e.normalize("NFC");
1829
- }
1830
- const n = e.split("@");
1831
- if (n.length !== 2) {
1832
- return n.length > 2 ? pe("MULTIPLE_AT_CHAR") : pe("MISSING_AT_CHAR");
1833
- }
1834
- const [o, s] = n;
1835
- if (!o) {
1836
- return pe("EMPTY_LOCAL");
1837
- }
1838
- if (!t.ignoreLength) {
1839
- if (e.length > 254) {
1840
- return pe("ADDRESS_TOO_LONG");
1841
- }
1842
- if (Xe.encode(o).length > 64) {
1843
- return pe("LOCAL_TOO_LONG");
1844
- }
1845
- }
1846
- return ve(o, r) || me(s, t);
1847
- }
1848
-
1849
- function ve(e, t) {
1850
- const r = e.split(".");
1851
- for (const e of r) {
1852
- if (!e.length) {
1853
- return pe("EMPTY_LOCAL_SEGMENT");
1854
- }
1855
- if (t) {
1856
- if (!Ke.test(e)) {
1857
- return pe("INVALID_LOCAL_CHARS");
1858
- }
1859
- continue;
1860
- }
1861
- for (const t of e) {
1862
- if (Ke.test(t)) {
1863
- continue;
1864
- }
1865
- const e = we(t);
1866
- if (!Ye.test(e)) {
1867
- return pe("INVALID_LOCAL_CHARS");
1868
- }
1869
- }
1870
- }
1871
- return null;
1872
- }
1873
-
1874
- function we(e) {
1875
- return Array.from(Xe.encode(e), e => String.fromCharCode(e)).join("");
1876
- }
1877
-
1878
- const Ke = /^[\w!#\$%&'\*\+\-/=\?\^`\{\|\}~]+$/;
1879
-
1880
- const Ye = 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("|"));
1881
-
1882
- function _e() {
1883
- const e = {};
1884
- const t = "\\dA-Fa-f";
1885
- const r = "[" + t + "]";
1886
- const n = "\\w-\\.~";
1887
- const o = "!\\$&'\\(\\)\\*\\+,;=";
1888
- const s = "%" + t;
1889
- const i = n + s + o + ":@";
1890
- const a = "[" + i + "]";
1891
- const c = "(?:0{0,2}\\d|0?[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])";
1892
- e.ipv4address = "(?:" + c + "\\.){3}" + c;
1893
- const A = r + "{1,4}";
1894
- const f = "(?:" + A + ":" + A + "|" + e.ipv4address + ")";
1895
- const l = "(?:" + A + ":){6}" + f;
1896
- const u = "::(?:" + A + ":){5}" + f;
1897
- const E = "(?:" + A + ")?::(?:" + A + ":){4}" + f;
1898
- const N = "(?:(?:" + A + ":){0,1}" + A + ")?::(?:" + A + ":){3}" + f;
1899
- const O = "(?:(?:" + A + ":){0,2}" + A + ")?::(?:" + A + ":){2}" + f;
1900
- const S = "(?:(?:" + A + ":){0,3}" + A + ")?::" + A + ":" + f;
1901
- const I = "(?:(?:" + A + ":){0,4}" + A + ")?::" + f;
1902
- const R = "(?:(?:" + A + ":){0,5}" + A + ")?::" + A;
1903
- const T = "(?:(?:" + A + ":){0,6}" + A + ")?::";
1904
- e.ipv4Cidr = "(?:\\d|[1-2]\\d|3[0-2])";
1905
- e.ipv6Cidr = "(?:0{0,2}\\d|0?[1-9]\\d|1[01]\\d|12[0-8])";
1906
- e.ipv6address = "(?:" + l + "|" + u + "|" + E + "|" + N + "|" + O + "|" + S + "|" + I + "|" + R + "|" + T + ")";
1907
- e.ipvFuture = "v" + r + "+\\.[" + n + o + ":]+";
1908
- e.scheme = "[a-zA-Z][a-zA-Z\\d+-\\.]*";
1909
- e.schemeRegex = new RegExp(e.scheme);
1910
- const p = "[" + n + s + o + ":]*";
1911
- const C = "\\[(?:" + e.ipv6address + "|" + e.ipvFuture + ")\\]";
1912
- const L = "[" + n + s + o + "]{1,255}";
1913
- const M = "(?:" + C + "|" + e.ipv4address + "|" + L + ")";
1914
- const d = "\\d*";
1915
- const D = "(?:" + p + "@)?" + M + "(?::" + d + ")?";
1916
- const B = "(?:" + p + "@)?(" + M + ")(?::" + d + ")?";
1917
- const h = a + "*";
1918
- const G = a + "+";
1919
- const m = "[" + n + s + o + "@" + "]+";
1920
- const y = "";
1921
- const P = "(?:\\/" + h + ")*";
1922
- const g = "\\/(?:" + G + P + ")?";
1923
- const U = G + P;
1924
- const X = m + P;
1925
- const H = "(?:\\/\\/\\/" + h + P + ")";
1926
- e.hierPart = "(?:" + "(?:\\/\\/" + D + P + ")" + "|" + g + "|" + U + "|" + H + ")";
1927
- e.hierPartCapture = "(?:" + "(?:\\/\\/" + B + P + ")" + "|" + g + "|" + U + ")";
1928
- e.relativeRef = "(?:" + "(?:\\/\\/" + D + P + ")" + "|" + g + "|" + X + "|" + y + ")";
1929
- e.relativeRefCapture = "(?:" + "(?:\\/\\/" + B + P + ")" + "|" + g + "|" + X + "|" + y + ")";
1930
- e.query = "[" + i + "\\/\\?]*(?=#|$)";
1931
- e.queryWithSquareBrackets = "[" + i + "\\[\\]\\/\\?]*(?=#|$)";
1932
- e.fragment = "[" + i + "\\/\\?]*";
1933
- return e;
1934
- }
1935
-
1936
- const Ve = _e();
1937
-
1938
- const We = {
1939
- v4Cidr: Ve.ipv4Cidr,
1940
- v6Cidr: Ve.ipv6Cidr,
1941
- ipv4: Ve.ipv4address,
1942
- ipv6: Ve.ipv6address,
1943
- ipvfuture: Ve.ipvFuture
1944
- };
1945
-
1946
- function xe(e) {
1947
- const t = Ve;
1948
- const r = e.allowQuerySquareBrackets ? t.queryWithSquareBrackets : t.query;
1949
- const n = "(?:\\?" + r + ")?" + "(?:#" + t.fragment + ")?";
1950
- const o = e.domain ? t.relativeRefCapture : t.relativeRef;
1951
- if (e.relativeOnly) {
1952
- return je(o + n);
1953
- }
1954
- let s = "";
1955
- if (e.scheme) {
1956
- u(e.scheme instanceof RegExp || typeof e.scheme === "string" || Array.isArray(e.scheme), "scheme must be a RegExp, String, or Array");
1957
- const r = [].concat(e.scheme);
1958
- u(r.length >= 1, "scheme must have at least 1 scheme specified");
1959
- const n = [];
1960
- for (let e = 0; e < r.length; ++e) {
1961
- const o = r[e];
1962
- u(o instanceof RegExp || typeof o === "string", "scheme at position " + e + " must be a RegExp or String");
1963
- if (o instanceof RegExp) {
1964
- n.push(o.source.toString());
1965
- } else {
1966
- u(t.schemeRegex.test(o), "scheme at position " + e + " must be a valid scheme");
1967
- n.push(W(o));
1968
- }
1969
- }
1970
- s = n.join("|");
1971
- }
1972
- const i = s ? "(?:" + s + ")" : t.scheme;
1973
- const a = "(?:" + i + ":" + (e.domain ? t.hierPartCapture : t.hierPart) + ")";
1974
- const c = e.allowRelative ? "(?:" + a + "|" + o + ")" : a;
1975
- return je(c + n, s);
1976
- }
1977
-
1978
- function je(e, t = null) {
1979
- e = `(?=.)(?!https?:/(?:$|[^/]))(?!https?:///)(?!https?:[^/])${e}`;
1980
- return {
1981
- raw: e,
1982
- regex: new RegExp(`^${e}$`),
1983
- scheme: t
1984
- };
1985
- }
1986
-
1987
- const Ze = xe({});
1988
-
1989
- function Je(e = {}) {
1990
- if (e.scheme || e.allowRelative || e.relativeOnly || e.allowQuerySquareBrackets || e.domain) {
1991
- return xe(e);
1992
- }
1993
- return Ze;
1994
- }
1995
-
1996
- function ke(e = {}) {
1997
- const t = e.cidr || "optional";
1998
- u([ "required", "optional", "forbidden" ].includes(t), "options.cidr must be one of required, optional, forbidden");
1999
- u(e.version === undefined || typeof e.version === "string" || Array.isArray(e.version), "options.version must be a string or an array of string");
2000
- let r = e.version || [ "ipv4", "ipv6", "ipvfuture" ];
2001
- if (!Array.isArray(r)) {
2002
- r = [ r ];
2003
- }
2004
- u(r.length >= 1, "options.version must have at least 1 version specified");
2005
- for (const e of r) {
2006
- u(typeof e === "string" && e === e.toLowerCase(), "Invalid options.version value");
2007
- u([ "ipv4", "ipv6", "ipvfuture" ].includes(e), "options.version contains unknown version " + e + " - must be one of ipv4, ipv6, ipvfuture");
2008
- }
2009
- r = Array.from(new Set(r));
2010
- const n = r.map(e => {
2011
- if (t === "forbidden") {
2012
- return We[e];
2013
- }
2014
- const r = `\\/${e === "ipv4" ? We.v4Cidr : We.v6Cidr}`;
2015
- if (t === "required") {
2016
- return `${We[e]}${r}`;
2017
- }
2018
- return `${We[e]}(?:${r})?`;
2019
- });
2020
- const o = `(?:${n.join("|")})`;
2021
- const s = new RegExp(`^${o}$`);
2022
- return {
2023
- cidr: t,
2024
- versions: r,
2025
- regex: s,
2026
- raw: o
2027
- };
2028
- }
2029
-
2030
- const Qe = {
2031
- 0: 0,
2032
- 1: 1,
2033
- 2: 2,
2034
- 3: 3,
2035
- 4: 4,
2036
- 5: 5,
2037
- 6: 6,
2038
- 7: 7,
2039
- 8: 8,
2040
- 9: 9,
2041
- a: 10,
2042
- A: 10,
2043
- b: 11,
2044
- B: 11,
2045
- c: 12,
2046
- C: 12,
2047
- d: 13,
2048
- D: 13,
2049
- e: 14,
2050
- E: 14,
2051
- f: 15,
2052
- F: 15
2053
- };
2054
-
2055
- const $e = {
2056
- accept: 12,
2057
- reject: 0,
2058
- 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 ]
2059
- };
2060
-
2061
- function qe(e) {
2062
- let t = e.indexOf("%");
2063
- if (t === -1) {
2064
- return e;
2065
- }
2066
- let r = "";
2067
- let n = 0;
2068
- let o = 0;
2069
- let s = t;
2070
- let i = $e.accept;
2071
- while (t > -1 && t < e.length) {
2072
- const a = ze(e[t + 1], 4);
2073
- const c = ze(e[t + 2], 0);
2074
- const A = a | c;
2075
- const f = $e.data[A];
2076
- i = $e.data[256 + i + f];
2077
- o = o << 6 | A & $e.data[364 + f];
2078
- if (i === $e.accept) {
2079
- r += e.slice(n, s);
2080
- r += o <= 65535 ? String.fromCharCode(o) : String.fromCharCode(55232 + (o >> 10), 56320 + (o & 1023));
2081
- o = 0;
2082
- n = t + 3;
2083
- t = e.indexOf("%", n);
2084
- s = t;
2085
- continue;
2086
- }
2087
- if (i === $e.reject) {
2088
- return null;
2089
- }
2090
- t += 3;
2091
- if (t >= e.length || e[t] !== "%") {
2092
- return null;
2093
- }
2094
- }
2095
- return r + e.slice(n);
2096
- }
2097
-
2098
- function ze(e, t) {
2099
- const r = Qe[e];
2100
- return r === undefined ? 255 : r << t;
2101
- }
2102
-
2103
- const et = Object.freeze(Object.defineProperty({
2104
- __proto__: null,
2105
- analyzeDomain: me,
2106
- analyzeEmail: He,
2107
- errorCodes: Te,
2108
- ipRegex: ke,
2109
- isDomainValid: ye,
2110
- isEmailValid: be,
2111
- uriDecode: qe,
2112
- uriRegex: Je,
2113
- validateDomainOptions: ge
2114
- }, Symbol.toStringTag, {
2115
- value: "Module"
2116
- }));
2117
-
2118
- const tt = t(et);
2119
-
2120
- var rt = {};
2121
-
2122
- var nt = {};
2123
-
2124
- Object.defineProperty(nt, "__esModule", {
6
+ Object.defineProperty(r, "__esModule", {
2125
7
  value: true
2126
8
  });
2127
9
 
2128
- nt.TLDS = void 0;
10
+ var a = r.AfterRecover = s;
2129
11
 
2130
- nt.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" ];
12
+ const n = e();
2131
13
 
2132
- Object.defineProperty(rt, "__esModule", {
2133
- value: true
2134
- });
2135
-
2136
- rt.tlds = void 0;
14
+ const o = t;
2137
15
 
2138
- const ot = nt;
2139
-
2140
- rt.tlds = new Set(ot.TLDS.map(e => e.toLowerCase()));
16
+ function s() {
17
+ return function(e, t) {
18
+ (0, n.getMetadataArgsStorage)().entityListeners.push({
19
+ target: e.constructor,
20
+ propertyName: t,
21
+ type: o.EventListenerTypes.AFTER_RECOVER
22
+ });
23
+ };
24
+ }
2141
25
 
2142
- export { Ne as a, Oe as b, Se as c, rt as d, o as l, tt as r };
26
+ export { a as A };