lakutata 2.0.81 → 2.0.82

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 (369) hide show
  1. package/orm.cjs +731 -731
  2. package/orm.mjs +835 -835
  3. package/package.json +1 -1
  4. package/src/components/Database.cjs +2 -2
  5. package/src/components/Database.mjs +6 -6
  6. package/src/components/cacher/Cacher.cjs +129 -129
  7. package/src/components/cacher/Cacher.mjs +117 -117
  8. package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +94 -94
  9. package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +100 -100
  10. package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +12 -12
  11. package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +11 -11
  12. package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +16 -16
  13. package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +14 -14
  14. package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +11 -11
  15. package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +11 -11
  16. package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +12 -12
  17. package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +13 -13
  18. package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +2 -2
  19. package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +2 -2
  20. package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +10 -10
  21. package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +10 -10
  22. package/src/components/cacher/lib/IsDriverPackageInstalled.cjs +2 -2
  23. package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +5 -5
  24. package/src/components/docker/ConnectionOptionsBuilder.cjs +10 -10
  25. package/src/components/docker/ConnectionOptionsBuilder.mjs +6 -6
  26. package/src/components/docker/Docker.cjs +1687 -1687
  27. package/src/components/docker/Docker.mjs +1563 -1563
  28. package/src/components/docker/lib/ParseEnvToRecord.cjs +2 -2
  29. package/src/components/docker/lib/ParseEnvToRecord.mjs +12 -12
  30. package/src/components/docker/lib/ParseRepositoryTag.cjs +9 -9
  31. package/src/components/docker/lib/ParseRepositoryTag.mjs +11 -11
  32. package/src/components/entrypoint/Entrypoint.cjs +1789 -1789
  33. package/src/components/entrypoint/Entrypoint.mjs +1632 -1632
  34. package/src/components/monitor/AliveMonitor.cjs +2 -2
  35. package/src/components/monitor/AliveMonitor.mjs +2 -2
  36. package/src/components/monitor/MemoryMonitor.cjs +3 -3
  37. package/src/decorators/asst/After.cjs +3 -3
  38. package/src/decorators/asst/After.mjs +2 -2
  39. package/src/decorators/asst/Before.cjs +2 -2
  40. package/src/decorators/asst/Before.mjs +4 -4
  41. package/src/decorators/ctrl/CLIAction.cjs +2 -2
  42. package/src/decorators/ctrl/CLIAction.mjs +7 -7
  43. package/src/decorators/ctrl/HTTPAction.cjs +6 -6
  44. package/src/decorators/ctrl/HTTPAction.mjs +4 -4
  45. package/src/decorators/ctrl/ServiceAction.cjs +3 -3
  46. package/src/decorators/ctrl/ServiceAction.mjs +4 -4
  47. package/src/decorators/ctrl/http/DELETE.cjs +2 -2
  48. package/src/decorators/ctrl/http/DELETE.mjs +2 -2
  49. package/src/decorators/ctrl/http/GET.cjs +2 -2
  50. package/src/decorators/ctrl/http/GET.mjs +2 -2
  51. package/src/decorators/ctrl/http/HEAD.cjs +2 -2
  52. package/src/decorators/ctrl/http/HEAD.mjs +2 -2
  53. package/src/decorators/ctrl/http/OPTIONS.cjs +2 -2
  54. package/src/decorators/ctrl/http/OPTIONS.mjs +2 -2
  55. package/src/decorators/ctrl/http/PATCH.cjs +2 -2
  56. package/src/decorators/ctrl/http/PATCH.mjs +2 -2
  57. package/src/decorators/ctrl/http/POST.cjs +2 -2
  58. package/src/decorators/ctrl/http/POST.mjs +2 -2
  59. package/src/decorators/ctrl/http/PUT.cjs +2 -2
  60. package/src/decorators/ctrl/http/PUT.mjs +2 -2
  61. package/src/decorators/di/Autoload.cjs +2 -2
  62. package/src/decorators/di/Autoload.mjs +2 -2
  63. package/src/decorators/di/Configurable.cjs +3 -3
  64. package/src/decorators/di/Configurable.mjs +2 -2
  65. package/src/decorators/di/Inject.cjs +6 -6
  66. package/src/decorators/di/Inject.mjs +11 -11
  67. package/src/decorators/di/Lifetime.cjs +18 -18
  68. package/src/decorators/di/Lifetime.mjs +13 -13
  69. package/src/decorators/dto/Accept.cjs +3 -3
  70. package/src/decorators/dto/Accept.mjs +2 -2
  71. package/src/decorators/dto/Expect.cjs +2 -2
  72. package/src/decorators/dto/Expect.mjs +3 -3
  73. package/src/decorators/dto/IndexSignature.cjs +2 -2
  74. package/src/decorators/dto/IndexSignature.mjs +3 -3
  75. package/src/decorators/dto/Return.cjs +3 -3
  76. package/src/decorators/dto/Return.mjs +2 -2
  77. package/src/lib/base/EventEmitter.cjs +238 -238
  78. package/src/lib/base/EventEmitter.mjs +221 -221
  79. package/src/lib/base/async-constructor/Append.cjs +11 -11
  80. package/src/lib/base/async-constructor/Append.mjs +7 -7
  81. package/src/lib/base/internal/BasicInfo.cjs +10 -10
  82. package/src/lib/base/internal/BasicInfo.mjs +9 -9
  83. package/src/lib/base/internal/CamelCase.cjs +4 -4
  84. package/src/lib/base/internal/CamelCase.mjs +11 -11
  85. package/src/lib/base/internal/ConfigurableRecordsInjection.cjs +19 -19
  86. package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +18 -18
  87. package/src/lib/base/internal/ConstructorSymbol.cjs +10 -10
  88. package/src/lib/base/internal/ConstructorSymbol.mjs +8 -8
  89. package/src/lib/base/internal/ControllerEntrypoint.cjs +65 -65
  90. package/src/lib/base/internal/ControllerEntrypoint.mjs +36 -36
  91. package/src/lib/base/internal/DataValidator.cjs +70 -70
  92. package/src/lib/base/internal/DataValidator.mjs +137 -137
  93. package/src/lib/base/internal/GetActionDTOAndOptions.cjs +9 -9
  94. package/src/lib/base/internal/GetActionDTOAndOptions.mjs +10 -10
  95. package/src/lib/base/internal/IEEE754.cjs +74 -74
  96. package/src/lib/base/internal/IEEE754.mjs +70 -70
  97. package/src/lib/base/internal/MethodAssistantFunction.cjs +28 -28
  98. package/src/lib/base/internal/MethodAssistantFunction.mjs +38 -38
  99. package/src/lib/base/internal/MethodValidation.cjs +25 -25
  100. package/src/lib/base/internal/MethodValidation.mjs +20 -20
  101. package/src/lib/base/internal/ObjectConfiguration.cjs +10 -10
  102. package/src/lib/base/internal/ObjectConfiguration.mjs +15 -15
  103. package/src/lib/base/internal/ObjectContainer.cjs +7 -7
  104. package/src/lib/base/internal/ObjectContainer.mjs +6 -6
  105. package/src/lib/base/internal/ObjectInjection.cjs +16 -16
  106. package/src/lib/base/internal/ObjectInjection.mjs +13 -13
  107. package/src/lib/base/internal/ObjectLifetime.cjs +10 -10
  108. package/src/lib/base/internal/ObjectLifetime.mjs +9 -9
  109. package/src/lib/base/internal/ObjectWeakRefs.cjs +11 -11
  110. package/src/lib/base/internal/ObjectWeakRefs.mjs +9 -9
  111. package/src/lib/base/internal/PatternManager.cjs +235 -235
  112. package/src/lib/base/internal/PatternManager.mjs +233 -233
  113. package/src/lib/base/internal/StringifyPattern.cjs +26 -26
  114. package/src/lib/base/internal/StringifyPattern.mjs +26 -26
  115. package/src/lib/base/internal/ThrowWarning.cjs +2 -2
  116. package/src/lib/base/internal/ThrowWarning.mjs +2 -2
  117. package/src/lib/core/Alias.cjs +5 -5
  118. package/src/lib/core/Application.cjs +57 -57
  119. package/src/lib/core/Application.mjs +63 -63
  120. package/src/lib/helpers/ArrayToSet.cjs +2 -2
  121. package/src/lib/helpers/ArrayToSet.mjs +3 -3
  122. package/src/lib/helpers/As.cjs +2 -2
  123. package/src/lib/helpers/As.mjs +2 -2
  124. package/src/lib/helpers/ConvertArrayLikeToIterable.cjs +3 -3
  125. package/src/lib/helpers/ConvertArrayLikeToIterable.mjs +3 -3
  126. package/src/lib/helpers/ConvertArrayLikeToStream.cjs +2 -2
  127. package/src/lib/helpers/ConvertArrayLikeToStream.mjs +2 -2
  128. package/src/lib/helpers/Delay.cjs +2 -2
  129. package/src/lib/helpers/Delay.mjs +2 -2
  130. package/src/lib/helpers/DevNull.cjs +2 -2
  131. package/src/lib/helpers/DevNull.mjs +2 -2
  132. package/src/lib/helpers/GetObjectNestingDepth.cjs +12 -12
  133. package/src/lib/helpers/GetObjectNestingDepth.mjs +11 -11
  134. package/src/lib/helpers/GetObjectPropertyPaths.cjs +7 -7
  135. package/src/lib/helpers/GetObjectPropertyPaths.mjs +9 -9
  136. package/src/lib/helpers/Glob.cjs +890 -890
  137. package/src/lib/helpers/Glob.mjs +889 -889
  138. package/src/lib/helpers/GraceExit.cjs +3 -3
  139. package/src/lib/helpers/GraceExit.mjs +7 -7
  140. package/src/lib/helpers/HexToIEEE754.cjs +4 -4
  141. package/src/lib/helpers/HexToIEEE754.mjs +2 -2
  142. package/src/lib/helpers/HexToSigned.cjs +5 -5
  143. package/src/lib/helpers/HexToSigned.mjs +4 -4
  144. package/src/lib/helpers/HexToUnsigned.cjs +2 -2
  145. package/src/lib/helpers/HexToUnsigned.mjs +2 -2
  146. package/src/lib/helpers/IEEE754ToHex.cjs +5 -5
  147. package/src/lib/helpers/IEEE754ToHex.mjs +5 -5
  148. package/src/lib/helpers/IsAbortError.cjs +2 -2
  149. package/src/lib/helpers/IsAbortError.mjs +3 -3
  150. package/src/lib/helpers/IsEmptyObject.cjs +3 -3
  151. package/src/lib/helpers/IsEmptyObject.mjs +3 -3
  152. package/src/lib/helpers/IsExists.cjs +5 -5
  153. package/src/lib/helpers/IsExists.mjs +4 -4
  154. package/src/lib/helpers/IsHtml.cjs +23 -7
  155. package/src/lib/helpers/IsHtml.mjs +23 -7
  156. package/src/lib/helpers/IsNativeFunction.cjs +2 -2
  157. package/src/lib/helpers/IsNativeFunction.mjs +2 -2
  158. package/src/lib/helpers/IsPath.cjs +2 -2
  159. package/src/lib/helpers/IsPath.mjs +5 -5
  160. package/src/lib/helpers/IsPromise.cjs +2 -2
  161. package/src/lib/helpers/IsPromise.mjs +2 -2
  162. package/src/lib/helpers/IsPromiseLike.cjs +5 -5
  163. package/src/lib/helpers/IsPromiseLike.mjs +6 -6
  164. package/src/lib/helpers/IsXML.cjs +1502 -1650
  165. package/src/lib/helpers/IsXML.mjs +1500 -1648
  166. package/src/lib/helpers/MD5.cjs +2 -2
  167. package/src/lib/helpers/MD5.mjs +2 -2
  168. package/src/lib/helpers/MergeArray.cjs +3 -3
  169. package/src/lib/helpers/MergeArray.mjs +3 -3
  170. package/src/lib/helpers/MergeMap.cjs +3 -3
  171. package/src/lib/helpers/MergeMap.mjs +3 -3
  172. package/src/lib/helpers/MergeSet.cjs +2 -2
  173. package/src/lib/helpers/MergeSet.mjs +3 -3
  174. package/src/lib/helpers/NoCase.cjs +27 -27
  175. package/src/lib/helpers/NoCase.mjs +24 -24
  176. package/src/lib/helpers/NonceStr.cjs +2 -2
  177. package/src/lib/helpers/NonceStr.mjs +2 -2
  178. package/src/lib/helpers/ObjectConstructor.cjs +2 -2
  179. package/src/lib/helpers/ObjectConstructor.mjs +4 -4
  180. package/src/lib/helpers/ObjectHash.cjs +234 -234
  181. package/src/lib/helpers/ObjectHash.mjs +227 -227
  182. package/src/lib/helpers/ObjectParentConstructor.cjs +2 -2
  183. package/src/lib/helpers/ObjectParentConstructor.mjs +5 -5
  184. package/src/lib/helpers/ObjectParentConstructors.cjs +6 -6
  185. package/src/lib/helpers/ObjectParentConstructors.mjs +2 -2
  186. package/src/lib/helpers/ObjectPrototype.cjs +2 -2
  187. package/src/lib/helpers/ObjectPrototype.mjs +2 -2
  188. package/src/lib/helpers/ObjectToMap.cjs +2 -2
  189. package/src/lib/helpers/ObjectToMap.mjs +3 -3
  190. package/src/lib/helpers/Paginator.cjs +2 -2
  191. package/src/lib/helpers/Paginator.mjs +6 -6
  192. package/src/lib/helpers/RandomString.cjs +82 -82
  193. package/src/lib/helpers/RandomString.mjs +67 -67
  194. package/src/lib/helpers/SHA1.cjs +2 -2
  195. package/src/lib/helpers/SHA1.mjs +2 -2
  196. package/src/lib/helpers/SHA256.cjs +2 -2
  197. package/src/lib/helpers/SHA256.mjs +2 -2
  198. package/src/lib/helpers/SetToArray.cjs +2 -2
  199. package/src/lib/helpers/SetToArray.mjs +2 -2
  200. package/src/lib/helpers/SignedToHex.cjs +4 -4
  201. package/src/lib/helpers/SignedToHex.mjs +4 -4
  202. package/src/lib/helpers/SortArray.cjs +16 -16
  203. package/src/lib/helpers/SortArray.mjs +15 -15
  204. package/src/lib/helpers/SortKeys.cjs +41 -41
  205. package/src/lib/helpers/SortKeys.mjs +41 -41
  206. package/src/lib/helpers/SortObject.cjs +2 -2
  207. package/src/lib/helpers/SortObject.mjs +2 -2
  208. package/src/lib/helpers/Templating.cjs +25 -25
  209. package/src/lib/helpers/Templating.mjs +25 -25
  210. package/src/lib/helpers/URLBuilder.cjs +234 -234
  211. package/src/lib/helpers/URLBuilder.mjs +231 -231
  212. package/src/lib/helpers/UniqueArray.cjs +3 -3
  213. package/src/lib/helpers/UniqueArray.mjs +2 -2
  214. package/src/lib/helpers/UnsignedToHex.cjs +3 -3
  215. package/src/lib/helpers/UnsignedToHex.mjs +3 -3
  216. package/src/lib/ioc/DependencyInjectionContainer.cjs +106 -106
  217. package/src/lib/ioc/DependencyInjectionContainer.mjs +122 -122
  218. package/src/lib/ioc/FunctionTokenizer.cjs +115 -115
  219. package/src/lib/ioc/FunctionTokenizer.mjs +102 -102
  220. package/src/lib/ioc/Lifetime.cjs +5 -5
  221. package/src/lib/ioc/Lifetime.mjs +5 -5
  222. package/src/lib/ioc/ListModules.cjs +3359 -3359
  223. package/src/lib/ioc/ListModules.mjs +2274 -2274
  224. package/src/lib/ioc/LoadModules.cjs +56 -56
  225. package/src/lib/ioc/LoadModules.mjs +69 -69
  226. package/src/lib/ioc/ParamParser.cjs +30 -30
  227. package/src/lib/ioc/ParamParser.mjs +41 -41
  228. package/src/lib/ioc/Resolvers.cjs +87 -87
  229. package/src/lib/ioc/Resolvers.mjs +109 -109
  230. package/src/lib/ioc/Utils.cjs +12 -12
  231. package/src/lib/ioc/Utils.mjs +18 -18
  232. package/src/lib/validation/VLD.cjs +1124 -1124
  233. package/src/lib/validation/VLD.mjs +1113 -1113
  234. package/src/providers/Database.cjs +2 -2
  235. package/src/providers/Database.mjs +7 -7
  236. package/src/providers/PasswordHash.cjs +330 -330
  237. package/src/providers/PasswordHash.mjs +397 -397
  238. package/vendor/Package.1.cjs +256 -256
  239. package/vendor/Package.1.mjs +254 -254
  240. package/vendor/Package.112.cjs +32208 -32208
  241. package/vendor/Package.112.mjs +32111 -32111
  242. package/vendor/Package.13.cjs +36 -36
  243. package/vendor/Package.13.mjs +24 -24
  244. package/vendor/Package.16.cjs +10312 -10312
  245. package/vendor/Package.16.mjs +10309 -10309
  246. package/vendor/Package.17.cjs +924 -924
  247. package/vendor/Package.17.mjs +943 -943
  248. package/vendor/Package.18.cjs +19 -19
  249. package/vendor/Package.18.mjs +21 -21
  250. package/vendor/Package.19.cjs +19 -19
  251. package/vendor/Package.19.mjs +20 -20
  252. package/vendor/Package.2.cjs +3913 -3913
  253. package/vendor/Package.2.mjs +3931 -3931
  254. package/vendor/Package.20.cjs +16 -16
  255. package/vendor/Package.20.mjs +12 -12
  256. package/vendor/Package.21.cjs +19 -19
  257. package/vendor/Package.21.mjs +17 -17
  258. package/vendor/Package.22.cjs +11 -11
  259. package/vendor/Package.22.mjs +12 -12
  260. package/vendor/Package.23.cjs +8 -8
  261. package/vendor/Package.23.mjs +12 -12
  262. package/vendor/Package.24.cjs +16 -16
  263. package/vendor/Package.24.mjs +14 -14
  264. package/vendor/Package.25.cjs +11 -11
  265. package/vendor/Package.25.mjs +12 -12
  266. package/vendor/Package.26.cjs +19 -19
  267. package/vendor/Package.26.mjs +12 -12
  268. package/vendor/Package.27.cjs +16 -16
  269. package/vendor/Package.27.mjs +6 -6
  270. package/vendor/Package.28.cjs +19 -19
  271. package/vendor/Package.28.mjs +17 -17
  272. package/vendor/Package.29.cjs +15 -15
  273. package/vendor/Package.29.mjs +13 -13
  274. package/vendor/Package.3.cjs +60 -60
  275. package/vendor/Package.3.mjs +85 -85
  276. package/vendor/Package.30.cjs +9 -9
  277. package/vendor/Package.30.mjs +9 -9
  278. package/vendor/Package.31.cjs +14 -14
  279. package/vendor/Package.31.mjs +27 -27
  280. package/vendor/Package.32.cjs +11 -11
  281. package/vendor/Package.32.mjs +11 -11
  282. package/vendor/Package.33.cjs +4 -4
  283. package/vendor/Package.33.mjs +6 -6
  284. package/vendor/Package.34.cjs +10 -10
  285. package/vendor/Package.34.mjs +23 -23
  286. package/vendor/Package.35.cjs +6 -6
  287. package/vendor/Package.35.mjs +16 -16
  288. package/vendor/Package.36.cjs +17 -17
  289. package/vendor/Package.36.mjs +21 -21
  290. package/vendor/Package.37.cjs +15 -15
  291. package/vendor/Package.37.mjs +17 -17
  292. package/vendor/Package.38.cjs +12 -12
  293. package/vendor/Package.38.mjs +16 -16
  294. package/vendor/Package.39.cjs +17 -17
  295. package/vendor/Package.39.mjs +13 -13
  296. package/vendor/Package.4.cjs +412 -412
  297. package/vendor/Package.4.mjs +537 -537
  298. package/vendor/Package.40.cjs +5 -5
  299. package/vendor/Package.40.mjs +6 -6
  300. package/vendor/Package.41.cjs +18 -18
  301. package/vendor/Package.41.mjs +17 -17
  302. package/vendor/Package.42.cjs +24 -24
  303. package/vendor/Package.42.mjs +17 -17
  304. package/vendor/Package.43.cjs +5 -5
  305. package/vendor/Package.43.mjs +19 -19
  306. package/vendor/Package.44.cjs +16 -16
  307. package/vendor/Package.44.mjs +13 -13
  308. package/vendor/Package.45.cjs +21 -21
  309. package/vendor/Package.45.mjs +22 -22
  310. package/vendor/Package.46.cjs +6 -6
  311. package/vendor/Package.46.mjs +22 -22
  312. package/vendor/Package.47.cjs +16 -16
  313. package/vendor/Package.47.mjs +29 -29
  314. package/vendor/Package.48.cjs +8 -8
  315. package/vendor/Package.48.mjs +16 -16
  316. package/vendor/Package.49.cjs +6 -6
  317. package/vendor/Package.49.mjs +20 -20
  318. package/vendor/Package.5.cjs +10 -10
  319. package/vendor/Package.5.mjs +9 -9
  320. package/vendor/Package.50.cjs +13 -13
  321. package/vendor/Package.50.mjs +14 -14
  322. package/vendor/Package.51.cjs +18 -18
  323. package/vendor/Package.51.mjs +23 -23
  324. package/vendor/Package.52.cjs +4 -4
  325. package/vendor/Package.52.mjs +5 -5
  326. package/vendor/Package.53.cjs +6 -6
  327. package/vendor/Package.53.mjs +8 -8
  328. package/vendor/Package.54.cjs +30 -30
  329. package/vendor/Package.54.mjs +29 -29
  330. package/vendor/Package.55.cjs +16 -16
  331. package/vendor/Package.55.mjs +20 -20
  332. package/vendor/Package.56.cjs +14 -14
  333. package/vendor/Package.56.mjs +18 -18
  334. package/vendor/Package.57.cjs +6 -6
  335. package/vendor/Package.57.mjs +17 -17
  336. package/vendor/Package.58.cjs +22 -22
  337. package/vendor/Package.58.mjs +19 -19
  338. package/vendor/Package.59.cjs +18 -18
  339. package/vendor/Package.59.mjs +13 -13
  340. package/vendor/Package.6.cjs +1739 -1739
  341. package/vendor/Package.6.mjs +1739 -1739
  342. package/vendor/Package.60.cjs +13553 -13553
  343. package/vendor/Package.60.mjs +13562 -13562
  344. package/vendor/Package.610.cjs +9 -9
  345. package/vendor/Package.611.cjs +39 -39
  346. package/vendor/Package.611.mjs +22 -22
  347. package/vendor/Package.612.cjs +33 -33
  348. package/vendor/Package.612.mjs +17 -17
  349. package/vendor/Package.613.cjs +62 -62
  350. package/vendor/Package.613.mjs +29 -29
  351. package/vendor/Package.62.cjs +292 -292
  352. package/vendor/Package.62.mjs +312 -312
  353. package/vendor/Package.63.cjs +354 -354
  354. package/vendor/Package.63.mjs +229 -229
  355. package/vendor/Package.64.cjs +74 -74
  356. package/vendor/Package.64.mjs +74 -74
  357. package/vendor/Package.65.cjs +1833 -1833
  358. package/vendor/Package.65.mjs +1656 -1656
  359. package/vendor/Package.66.cjs +16 -16
  360. package/vendor/Package.66.mjs +16 -16
  361. package/vendor/Package.67.cjs +87 -87
  362. package/vendor/Package.67.mjs +85 -85
  363. package/vendor/Package.68.cjs +115 -256
  364. package/vendor/Package.68.mjs +134 -268
  365. package/vendor/Package.69.cjs +8 -8
  366. package/vendor/Package.7.cjs +3 -3
  367. package/vendor/Package.7.mjs +3 -3
  368. package/vendor/Package.9.cjs +45 -45
  369. package/vendor/Package.9.mjs +79 -79
@@ -1,97 +1,97 @@
1
- function t(t, e, o, l, i) {
1
+ function readIEEE754(t, e, o, i, l) {
2
+ let a;
2
3
  let n;
3
- let s;
4
- const a = i * 8 - l - 1;
5
- const h = (1 << a) - 1;
6
- const f = h >> 1;
7
- let w = -7;
8
- let M = o ? i - 1 : 0;
9
- const c = o ? -1 : 1;
10
- let p = t[e + M];
11
- M += c;
12
- n = p & (1 << -w) - 1;
13
- p >>= -w;
14
- w += a;
15
- while (w > 0) {
16
- n = n * 256 + t[e + M];
17
- M += c;
18
- w -= 8;
4
+ const s = l * 8 - i - 1;
5
+ const h = (1 << s) - 1;
6
+ const w = h >> 1;
7
+ let f = -7;
8
+ let M = o ? l - 1 : 0;
9
+ const E = o ? -1 : 1;
10
+ let c = t[e + M];
11
+ M += E;
12
+ a = c & (1 << -f) - 1;
13
+ c >>= -f;
14
+ f += s;
15
+ while (f > 0) {
16
+ a = a * 256 + t[e + M];
17
+ M += E;
18
+ f -= 8;
19
19
  }
20
- s = n & (1 << -w) - 1;
21
- n >>= -w;
22
- w += l;
23
- while (w > 0) {
24
- s = s * 256 + t[e + M];
25
- M += c;
26
- w -= 8;
20
+ n = a & (1 << -f) - 1;
21
+ a >>= -f;
22
+ f += i;
23
+ while (f > 0) {
24
+ n = n * 256 + t[e + M];
25
+ M += E;
26
+ f -= 8;
27
27
  }
28
- if (n === 0) {
29
- n = 1 - f;
30
- } else if (n === h) {
31
- return s ? NaN : (p ? -1 : 1) * Infinity;
28
+ if (a === 0) {
29
+ a = 1 - w;
30
+ } else if (a === h) {
31
+ return n ? NaN : (c ? -1 : 1) * Infinity;
32
32
  } else {
33
- s = s + Math.pow(2, l);
34
- n = n - f;
33
+ n = n + Math.pow(2, i);
34
+ a = a - w;
35
35
  }
36
- return (p ? -1 : 1) * s * Math.pow(2, n - l);
36
+ return (c ? -1 : 1) * n * Math.pow(2, a - i);
37
37
  }
38
38
 
39
- function e(t, e, o, l, i, n) {
39
+ function writeIEEE754(t, e, o, i, l, a) {
40
+ let n;
40
41
  let s;
41
- let a;
42
42
  let h;
43
- let f = n * 8 - i - 1;
44
- const w = (1 << f) - 1;
45
- const M = w >> 1;
46
- const c = i === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0;
47
- let p = l ? 0 : n - 1;
48
- const N = l ? 1 : -1;
43
+ let w = a * 8 - l - 1;
44
+ const f = (1 << w) - 1;
45
+ const M = f >> 1;
46
+ const E = l === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0;
47
+ let c = i ? 0 : a - 1;
48
+ const p = i ? 1 : -1;
49
49
  const r = e < 0 || e === 0 && 1 / e < 0 ? 1 : 0;
50
50
  e = Math.abs(e);
51
51
  if (isNaN(e) || e === Infinity) {
52
- a = isNaN(e) ? 1 : 0;
53
- s = w;
52
+ s = isNaN(e) ? 1 : 0;
53
+ n = f;
54
54
  } else {
55
- s = Math.floor(Math.log(e) / Math.LN2);
56
- if (e * (h = Math.pow(2, -s)) < 1) {
57
- s--;
55
+ n = Math.floor(Math.log(e) / Math.LN2);
56
+ if (e * (h = Math.pow(2, -n)) < 1) {
57
+ n--;
58
58
  h *= 2;
59
59
  }
60
- if (s + M >= 1) {
61
- e += c / h;
60
+ if (n + M >= 1) {
61
+ e += E / h;
62
62
  } else {
63
- e += c * Math.pow(2, 1 - M);
63
+ e += E * Math.pow(2, 1 - M);
64
64
  }
65
65
  if (e * h >= 2) {
66
- s++;
66
+ n++;
67
67
  h /= 2;
68
68
  }
69
- if (s + M >= w) {
70
- a = 0;
71
- s = w;
72
- } else if (s + M >= 1) {
73
- a = (e * h - 1) * Math.pow(2, i);
74
- s = s + M;
75
- } else {
76
- a = e * Math.pow(2, M - 1) * Math.pow(2, i);
69
+ if (n + M >= f) {
77
70
  s = 0;
71
+ n = f;
72
+ } else if (n + M >= 1) {
73
+ s = (e * h - 1) * Math.pow(2, l);
74
+ n = n + M;
75
+ } else {
76
+ s = e * Math.pow(2, M - 1) * Math.pow(2, l);
77
+ n = 0;
78
78
  }
79
79
  }
80
- while (i >= 8) {
81
- t[o + p] = a & 255;
82
- p += N;
83
- a /= 256;
84
- i -= 8;
85
- }
86
- s = s << i | a;
87
- f += i;
88
- while (f > 0) {
89
- t[o + p] = s & 255;
90
- p += N;
80
+ while (l >= 8) {
81
+ t[o + c] = s & 255;
82
+ c += p;
91
83
  s /= 256;
92
- f -= 8;
84
+ l -= 8;
85
+ }
86
+ n = n << l | s;
87
+ w += l;
88
+ while (w > 0) {
89
+ t[o + c] = n & 255;
90
+ c += p;
91
+ n /= 256;
92
+ w -= 8;
93
93
  }
94
- t[o + p - N] |= r * 128;
94
+ t[o + c - p] |= r * 128;
95
95
  }
96
96
 
97
- export { t as readIEEE754, e as writeIEEE754 };
97
+ export { readIEEE754, writeIEEE754 };
@@ -28,49 +28,49 @@ require("./CamelCase.cjs");
28
28
 
29
29
  require("../../helpers/NoCase.cjs");
30
30
 
31
- const s = Symbol("ASST.BEFORE.FUNC.SET");
31
+ const i = Symbol("ASST.BEFORE.FUNC.SET");
32
32
 
33
- const i = Symbol("ASST.AFTER.FUNC.SET");
33
+ const s = Symbol("ASST.AFTER.FUNC.SET");
34
34
 
35
35
  const c = Symbol("ASST.MODIFIED");
36
36
 
37
- function a(e, t, n, s) {
38
- n.value = r(e, t, f(n.value, s), {
39
- before: s
37
+ function RegisterBeforeFunction(e, t, n, i) {
38
+ n.value = registerAssistantFunctionToMethod(e, t, applicabilityCheck(n.value, i), {
39
+ before: i
40
40
  });
41
41
  return n;
42
42
  }
43
43
 
44
- function o(e, t, n, s) {
45
- n.value = r(e, t, f(n.value, s), {
46
- after: s
44
+ function RegisterAfterFunction(e, t, n, i) {
45
+ n.value = registerAssistantFunctionToMethod(e, t, applicabilityCheck(n.value, i), {
46
+ after: i
47
47
  });
48
48
  return n;
49
49
  }
50
50
 
51
- function r(t, a, o, r) {
52
- const f = Reflect.getOwnMetadata(s, t, a) || new Set;
53
- const u = Reflect.getOwnMetadata(i, t, a) || new Set;
51
+ function registerAssistantFunctionToMethod(t, o, a, r) {
52
+ const f = Reflect.getOwnMetadata(i, t, o) || new Set;
53
+ const u = Reflect.getOwnMetadata(s, t, o) || new Set;
54
54
  if (r.before) {
55
55
  f.add(r.before);
56
- Reflect.defineMetadata(s, f, t, a);
56
+ Reflect.defineMetadata(i, f, t, o);
57
57
  }
58
58
  if (r.after) {
59
59
  u.add(r.after);
60
- Reflect.defineMetadata(i, u, t, a);
60
+ Reflect.defineMetadata(s, u, t, o);
61
61
  }
62
- if (Reflect.hasOwnMetadata(c, t, a)) return n.As(o);
63
- Reflect.defineMetadata(c, true, t, a);
62
+ if (Reflect.hasOwnMetadata(c, t, o)) return n.As(a);
63
+ Reflect.defineMetadata(c, true, t, o);
64
64
  let l;
65
- if (e.isAsyncFunction(o)) {
65
+ if (e.isAsyncFunction(a)) {
66
66
  l = async function(...e) {
67
- const n = Reflect.getOwnMetadata(s, t, a) || new Set;
68
- const c = Reflect.getOwnMetadata(i, t, a) || new Set;
67
+ const n = Reflect.getOwnMetadata(i, t, o) || new Set;
68
+ const c = Reflect.getOwnMetadata(s, t, o) || new Set;
69
69
  for (const t of n) {
70
70
  const n = await t.call(this, ...e);
71
71
  if (n !== undefined) e = n;
72
72
  }
73
- let r = await o.call(this, ...e);
73
+ let r = await a.call(this, ...e);
74
74
  for (const e of c) {
75
75
  const t = await e.call(this, r);
76
76
  if (t !== undefined) r = t;
@@ -79,13 +79,13 @@ function r(t, a, o, r) {
79
79
  };
80
80
  } else {
81
81
  l = function(...e) {
82
- const c = Reflect.getOwnMetadata(s, t, a) || new Set;
83
- const r = Reflect.getOwnMetadata(i, t, a) || new Set;
82
+ const c = Reflect.getOwnMetadata(i, t, o) || new Set;
83
+ const r = Reflect.getOwnMetadata(s, t, o) || new Set;
84
84
  for (const t of c) {
85
- const s = n.As(t.call(this, ...e));
86
- if (s !== undefined) e = s;
85
+ const i = n.As(t.call(this, ...e));
86
+ if (i !== undefined) e = i;
87
87
  }
88
- let f = o.call(this, ...e);
88
+ let f = a.call(this, ...e);
89
89
  for (const e of r) {
90
90
  const t = n.As(e.call(this, f));
91
91
  if (t !== undefined) f = t;
@@ -96,13 +96,13 @@ function r(t, a, o, r) {
96
96
  return l;
97
97
  }
98
98
 
99
- function f(n, s) {
99
+ function applicabilityCheck(n, i) {
100
100
  if (!n) throw new t.InvalidAssistantFunctionTypeException("Target method is undefined");
101
101
  if (e.isAsyncFunction(n)) return n;
102
- if (!e.isAsyncFunction(s)) return n;
102
+ if (!e.isAsyncFunction(i)) return n;
103
103
  throw new t.InvalidAssistantFunctionTypeException("Assistant function must not be async function when target method is not async function");
104
104
  }
105
105
 
106
- exports.RegisterAfterFunction = o;
106
+ exports.RegisterAfterFunction = RegisterAfterFunction;
107
107
 
108
- exports.RegisterBeforeFunction = a;
108
+ exports.RegisterBeforeFunction = RegisterBeforeFunction;
@@ -22,79 +22,79 @@ import "./CamelCase.mjs";
22
22
 
23
23
  import "../../helpers/NoCase.mjs";
24
24
 
25
- const a = Symbol("ASST.BEFORE.FUNC.SET");
25
+ const i = Symbol("ASST.BEFORE.FUNC.SET");
26
26
 
27
27
  const o = Symbol("ASST.AFTER.FUNC.SET");
28
28
 
29
- const i = Symbol("ASST.MODIFIED");
29
+ const a = Symbol("ASST.MODIFIED");
30
30
 
31
- function s(t, e, n, a) {
32
- n.value = r(t, e, c(n.value, a), {
33
- before: a
31
+ function RegisterBeforeFunction(t, e, n, i) {
32
+ n.value = registerAssistantFunctionToMethod(t, e, applicabilityCheck(n.value, i), {
33
+ before: i
34
34
  });
35
35
  return n;
36
36
  }
37
37
 
38
- function f(t, e, n, a) {
39
- n.value = r(t, e, c(n.value, a), {
40
- after: a
38
+ function RegisterAfterFunction(t, e, n, i) {
39
+ n.value = registerAssistantFunctionToMethod(t, e, applicabilityCheck(n.value, i), {
40
+ after: i
41
41
  });
42
42
  return n;
43
43
  }
44
44
 
45
- function r(e, s, f, r) {
46
- const c = Reflect.getOwnMetadata(a, e, s) || new Set;
45
+ function registerAssistantFunctionToMethod(e, s, r, c) {
46
+ const f = Reflect.getOwnMetadata(i, e, s) || new Set;
47
47
  const l = Reflect.getOwnMetadata(o, e, s) || new Set;
48
- if (r.before) {
49
- c.add(r.before);
50
- Reflect.defineMetadata(a, c, e, s);
48
+ if (c.before) {
49
+ f.add(c.before);
50
+ Reflect.defineMetadata(i, f, e, s);
51
51
  }
52
- if (r.after) {
53
- l.add(r.after);
52
+ if (c.after) {
53
+ l.add(c.after);
54
54
  Reflect.defineMetadata(o, l, e, s);
55
55
  }
56
- if (Reflect.hasOwnMetadata(i, e, s)) return n(f);
57
- Reflect.defineMetadata(i, true, e, s);
56
+ if (Reflect.hasOwnMetadata(a, e, s)) return n(r);
57
+ Reflect.defineMetadata(a, true, e, s);
58
58
  let d;
59
- if (t(f)) {
59
+ if (t(r)) {
60
60
  d = async function(...t) {
61
- const n = Reflect.getOwnMetadata(a, e, s) || new Set;
62
- const i = Reflect.getOwnMetadata(o, e, s) || new Set;
61
+ const n = Reflect.getOwnMetadata(i, e, s) || new Set;
62
+ const a = Reflect.getOwnMetadata(o, e, s) || new Set;
63
63
  for (const e of n) {
64
64
  const n = await e.call(this, ...t);
65
65
  if (n !== undefined) t = n;
66
66
  }
67
- let r = await f.call(this, ...t);
68
- for (const t of i) {
69
- const e = await t.call(this, r);
70
- if (e !== undefined) r = e;
67
+ let c = await r.call(this, ...t);
68
+ for (const t of a) {
69
+ const e = await t.call(this, c);
70
+ if (e !== undefined) c = e;
71
71
  }
72
- return r;
72
+ return c;
73
73
  };
74
74
  } else {
75
75
  d = function(...t) {
76
- const i = Reflect.getOwnMetadata(a, e, s) || new Set;
77
- const r = Reflect.getOwnMetadata(o, e, s) || new Set;
78
- for (const e of i) {
79
- const a = n(e.call(this, ...t));
80
- if (a !== undefined) t = a;
76
+ const a = Reflect.getOwnMetadata(i, e, s) || new Set;
77
+ const c = Reflect.getOwnMetadata(o, e, s) || new Set;
78
+ for (const e of a) {
79
+ const i = n(e.call(this, ...t));
80
+ if (i !== undefined) t = i;
81
81
  }
82
- let c = f.call(this, ...t);
83
- for (const t of r) {
84
- const e = n(t.call(this, c));
85
- if (e !== undefined) c = e;
82
+ let f = r.call(this, ...t);
83
+ for (const t of c) {
84
+ const e = n(t.call(this, f));
85
+ if (e !== undefined) f = e;
86
86
  }
87
- return c;
87
+ return f;
88
88
  };
89
89
  }
90
90
  return d;
91
91
  }
92
92
 
93
- function c(n, a) {
93
+ function applicabilityCheck(n, i) {
94
94
  if (!n) throw new e("Target method is undefined");
95
95
  if (t(n)) return n;
96
- if (!t(a)) return n;
96
+ if (!t(i)) return n;
97
97
  throw new e("Assistant function must not be async function when target method is not async function");
98
98
  }
99
99
 
100
- export { f as RegisterAfterFunction, s as RegisterBeforeFunction };
100
+ export { RegisterAfterFunction, RegisterBeforeFunction };
@@ -62,81 +62,81 @@ require("../../helpers/ObjectParentConstructor.cjs");
62
62
 
63
63
  require("../../helpers/ObjectPrototype.cjs");
64
64
 
65
- function s(n, s, a, c) {
65
+ function SetMethodAcceptArgumentsValidator(n, a, c, s) {
66
66
  const i = [];
67
- c.forEach((r => i.push(e.IsDTO(o.As(r)) ? o.As(r).Schema() : o.As(r))));
68
- a.writable = false;
69
- const u = a.value;
67
+ s.forEach((r => i.push(e.IsDTO(o.As(r)) ? o.As(r).Schema() : o.As(r))));
68
+ c.writable = false;
69
+ const u = c.value;
70
70
  const p = e.DTO.Array().ordered(...i);
71
- const l = Array.isArray(i) ? i.length : 1;
71
+ const d = Array.isArray(i) ? i.length : 1;
72
72
  if (r.isAsyncFunction(u)) {
73
- a.value = async function(...r) {
74
- const n = r.length - l;
73
+ c.value = async function(...r) {
74
+ const n = r.length - d;
75
75
  try {
76
76
  r = await e.DTO.validateAsync(r, p.concat(e.DTO.Array().ordered(...new Array(n >= 0 ? n : 0).fill(e.DTO.Any()))));
77
77
  } catch (e) {
78
78
  throw new t.InvalidMethodAcceptException("Method [{propertyKey}] accept argument {reason}", {
79
- propertyKey: s,
79
+ propertyKey: a,
80
80
  reason: e.message
81
81
  });
82
82
  }
83
83
  return u.apply(this, r);
84
84
  };
85
85
  } else {
86
- a.value = function(...r) {
87
- const n = r.length - l;
86
+ c.value = function(...r) {
87
+ const n = r.length - d;
88
88
  try {
89
89
  r = e.DTO.validate(r, p.concat(e.DTO.Array().ordered(...new Array(n >= 0 ? n : 0).fill(e.DTO.Any()))));
90
90
  } catch (e) {
91
91
  throw new t.InvalidMethodAcceptException("Method [{propertyKey}] accept argument {reason}", {
92
- propertyKey: s,
92
+ propertyKey: a,
93
93
  reason: e.message
94
94
  });
95
95
  }
96
96
  return u.apply(this, r);
97
97
  };
98
98
  }
99
- return a;
99
+ return c;
100
100
  }
101
101
 
102
- function a(t, s, a, c) {
103
- const i = e.IsDTO(o.As(c)) ? o.As(c).Schema() : o.As(c);
104
- a.writable = false;
105
- const u = a.value;
102
+ function SetMethodReturnValueValidator(t, a, c, s) {
103
+ const i = e.IsDTO(o.As(s)) ? o.As(s).Schema() : o.As(s);
104
+ c.writable = false;
105
+ const u = c.value;
106
106
  if (r.isAsyncFunction(u)) {
107
- a.value = async function(...r) {
107
+ c.value = async function(...r) {
108
108
  const t = await u.apply(this, r);
109
109
  if (t === undefined) throw new n.InvalidMethodReturnException("Method [{propertyKey}] return undefined", {
110
- propertyKey: s
110
+ propertyKey: a
111
111
  });
112
112
  try {
113
113
  return await e.DTO.validateAsync(t, i);
114
114
  } catch (e) {
115
115
  throw new n.InvalidMethodReturnException("Method [{propertyKey}] return value {reason}", {
116
- propertyKey: s,
116
+ propertyKey: a,
117
117
  reason: e.message
118
118
  });
119
119
  }
120
120
  };
121
121
  } else {
122
- a.value = function(...r) {
122
+ c.value = function(...r) {
123
123
  const t = u.apply(this, r);
124
124
  if (t === undefined) throw new n.InvalidMethodReturnException("Method [{propertyKey}] return undefined", {
125
- propertyKey: s
125
+ propertyKey: a
126
126
  });
127
127
  try {
128
128
  return e.DTO.validate(t, i);
129
129
  } catch (e) {
130
130
  throw new n.InvalidMethodReturnException("Method [{propertyKey}] return value {reason}", {
131
- propertyKey: s,
131
+ propertyKey: a,
132
132
  reason: e.message
133
133
  });
134
134
  }
135
135
  };
136
136
  }
137
- return a;
137
+ return c;
138
138
  }
139
139
 
140
- exports.SetMethodAcceptArgumentsValidator = s;
140
+ exports.SetMethodAcceptArgumentsValidator = SetMethodAcceptArgumentsValidator;
141
141
 
142
- exports.SetMethodReturnValueValidator = a;
142
+ exports.SetMethodReturnValueValidator = SetMethodReturnValueValidator;
@@ -1,6 +1,6 @@
1
- import { b as e, D as r } from "../../../../vendor/Package.2.mjs";
1
+ import { b as e, D as t } from "../../../../vendor/Package.2.mjs";
2
2
 
3
- import { isAsyncFunction as t } from "node:util/types";
3
+ import { isAsyncFunction as r } from "node:util/types";
4
4
 
5
5
  import { InvalidMethodAcceptException as o } from "../../../exceptions/dto/InvalidMethodAcceptException.mjs";
6
6
 
@@ -56,18 +56,18 @@ import "../../helpers/ObjectParentConstructor.mjs";
56
56
 
57
57
  import "../../helpers/ObjectPrototype.mjs";
58
58
 
59
- function s(a, s, p, i) {
59
+ function SetMethodAcceptArgumentsValidator(a, s, p, i) {
60
60
  const m = [];
61
- i.forEach((r => m.push(e(n(r)) ? n(r).Schema() : n(r))));
61
+ i.forEach((t => m.push(e(n(t)) ? n(t).Schema() : n(t))));
62
62
  p.writable = false;
63
63
  const c = p.value;
64
- const l = r.Array().ordered(...m);
65
- const y = Array.isArray(m) ? m.length : 1;
66
- if (t(c)) {
64
+ const l = t.Array().ordered(...m);
65
+ const d = Array.isArray(m) ? m.length : 1;
66
+ if (r(c)) {
67
67
  p.value = async function(...e) {
68
- const t = e.length - y;
68
+ const r = e.length - d;
69
69
  try {
70
- e = await r.validateAsync(e, l.concat(r.Array().ordered(...new Array(t >= 0 ? t : 0).fill(r.Any()))));
70
+ e = await t.validateAsync(e, l.concat(t.Array().ordered(...new Array(r >= 0 ? r : 0).fill(t.Any()))));
71
71
  } catch (e) {
72
72
  throw new o("Method [{propertyKey}] accept argument {reason}", {
73
73
  propertyKey: s,
@@ -78,9 +78,9 @@ function s(a, s, p, i) {
78
78
  };
79
79
  } else {
80
80
  p.value = function(...e) {
81
- const t = e.length - y;
81
+ const r = e.length - d;
82
82
  try {
83
- e = r.validate(e, l.concat(r.Array().ordered(...new Array(t >= 0 ? t : 0).fill(r.Any()))));
83
+ e = t.validate(e, l.concat(t.Array().ordered(...new Array(r >= 0 ? r : 0).fill(t.Any()))));
84
84
  } catch (e) {
85
85
  throw new o("Method [{propertyKey}] accept argument {reason}", {
86
86
  propertyKey: s,
@@ -93,18 +93,18 @@ function s(a, s, p, i) {
93
93
  return p;
94
94
  }
95
95
 
96
- function p(o, s, p, i) {
96
+ function SetMethodReturnValueValidator(o, s, p, i) {
97
97
  const m = e(n(i)) ? n(i).Schema() : n(i);
98
98
  p.writable = false;
99
99
  const c = p.value;
100
- if (t(c)) {
100
+ if (r(c)) {
101
101
  p.value = async function(...e) {
102
- const t = await c.apply(this, e);
103
- if (t === undefined) throw new a("Method [{propertyKey}] return undefined", {
102
+ const r = await c.apply(this, e);
103
+ if (r === undefined) throw new a("Method [{propertyKey}] return undefined", {
104
104
  propertyKey: s
105
105
  });
106
106
  try {
107
- return await r.validateAsync(t, m);
107
+ return await t.validateAsync(r, m);
108
108
  } catch (e) {
109
109
  throw new a("Method [{propertyKey}] return value {reason}", {
110
110
  propertyKey: s,
@@ -114,12 +114,12 @@ function p(o, s, p, i) {
114
114
  };
115
115
  } else {
116
116
  p.value = function(...e) {
117
- const t = c.apply(this, e);
118
- if (t === undefined) throw new a("Method [{propertyKey}] return undefined", {
117
+ const r = c.apply(this, e);
118
+ if (r === undefined) throw new a("Method [{propertyKey}] return undefined", {
119
119
  propertyKey: s
120
120
  });
121
121
  try {
122
- return r.validate(t, m);
122
+ return t.validate(r, m);
123
123
  } catch (e) {
124
124
  throw new a("Method [{propertyKey}] return value {reason}", {
125
125
  propertyKey: s,
@@ -131,4 +131,4 @@ function p(o, s, p, i) {
131
131
  return p;
132
132
  }
133
133
 
134
- export { s as SetMethodAcceptArgumentsValidator, p as SetMethodReturnValueValidator };
134
+ export { SetMethodAcceptArgumentsValidator, SetMethodReturnValueValidator };
@@ -60,24 +60,24 @@ require("../../helpers/ObjectPrototype.cjs");
60
60
 
61
61
  require("../../helpers/ObjectParentConstructor.cjs");
62
62
 
63
- function a(a, o, n = r.DTO.Any(), R) {
64
- let O;
63
+ function SetObjectConfigurableProperty(a, o, n = r.DTO.Any(), O) {
64
+ let R;
65
65
  if (Reflect.hasOwnMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, t.ObjectConstructor(a))) {
66
- O = Reflect.getOwnMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, t.ObjectConstructor(a));
66
+ R = Reflect.getOwnMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, t.ObjectConstructor(a));
67
67
  } else {
68
- O = new Map;
68
+ R = new Map;
69
69
  c.ObjectParentConstructors(t.ObjectConstructor(a)).forEach((r => {
70
- if (Reflect.hasOwnMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, r)) s.As(Reflect.getOwnMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, r)).forEach(((e, r) => O.set(r, e)));
70
+ if (Reflect.hasOwnMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, r)) s.As(Reflect.getOwnMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, r)).forEach(((e, r) => R.set(r, e)));
71
71
  }));
72
72
  }
73
- Reflect.defineMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, O, t.ObjectConstructor(a));
73
+ Reflect.defineMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, R, t.ObjectConstructor(a));
74
74
  Reflect.getOwnMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, t.ObjectConstructor(a)).set(o, {
75
75
  schema: n,
76
- fn: R ? R : e => e
76
+ fn: O ? O : e => e
77
77
  });
78
78
  }
79
79
 
80
- function o(r) {
80
+ function GetObjectConfigurableProperties(r) {
81
81
  const a = new Map;
82
82
  c.ObjectParentConstructors(t.ObjectConstructor(r)).forEach((r => {
83
83
  if (Reflect.hasOwnMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, r)) s.As(Reflect.getOwnMetadata(e.DI_TARGET_CONSTRUCTOR_CONFIGURABLE_PROPERTIES, r)).forEach(((e, r) => a.set(r, e)));
@@ -86,6 +86,6 @@ function o(r) {
86
86
  return a;
87
87
  }
88
88
 
89
- exports.GetObjectConfigurableProperties = o;
89
+ exports.GetObjectConfigurableProperties = GetObjectConfigurableProperties;
90
90
 
91
- exports.SetObjectConfigurableProperty = a;
91
+ exports.SetObjectConfigurableProperty = SetObjectConfigurableProperty;