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
@@ -294,20 +294,20 @@ const q = a(T);
294
294
 
295
295
  var F = m();
296
296
 
297
- const $ = a(F);
297
+ const U = a(F);
298
298
 
299
- var U = {};
299
+ var $ = {};
300
300
 
301
301
  var G;
302
302
 
303
- function Q() {
304
- if (G) return U;
303
+ function requireCommandUtils() {
304
+ if (G) return $;
305
305
  G = 1;
306
306
  "use strict";
307
- Object.defineProperty(U, "__esModule", {
307
+ Object.defineProperty($, "__esModule", {
308
308
  value: true
309
309
  });
310
- U.CommandUtils = void 0;
310
+ $.CommandUtils = void 0;
311
311
  const t = g;
312
312
  const e = t.__importDefault(f);
313
313
  const o = t.__importDefault(n);
@@ -375,28 +375,28 @@ function Q() {
375
375
  return t ? new Date(Number(t)).getTime() : Date.now();
376
376
  }
377
377
  }
378
- U.CommandUtils = CommandUtils;
379
- return U;
378
+ $.CommandUtils = CommandUtils;
379
+ return $;
380
380
  }
381
381
 
382
- var _ = Q();
382
+ var Q = requireCommandUtils();
383
383
 
384
- const J = a(_);
384
+ const _ = a(Q);
385
385
 
386
- var V = d();
386
+ var J = d();
387
387
 
388
- const H = a(V);
388
+ const V = a(J);
389
389
 
390
- const {Ansis: z, ansi256: W, fg: K, bgAnsi256: X, bg: Y, rgb: Z, bgRgb: tt, hex: et, bgHex: ot, reset: it, inverse: rt, hidden: nt, visible: st, bold: at, dim: ct, italic: pt, underline: mt, strikethrough: lt, strike: ut, black: ht, red: dt, green: gt, yellow: ft, blue: jt, magenta: yt, cyan: bt, white: vt, grey: xt, gray: Et, blackBright: wt, redBright: Ot, greenBright: Ct, yellowBright: Pt, blueBright: At, magentaBright: St, cyanBright: kt, whiteBright: It, bgBlack: Dt, bgRed: Rt, bgGreen: Nt, bgYellow: Bt, bgBlue: Mt, bgMagenta: Lt, bgCyan: Tt, bgWhite: qt, bgGrey: Ft, bgGray: $t, bgBlackBright: Ut, bgRedBright: Gt, bgGreenBright: Qt, bgYellowBright: _t, bgBlueBright: Jt, bgMagentaBright: Vt, bgCyanBright: Ht, bgWhiteBright: zt} = H;
390
+ const {Ansis: H, ansi256: z, fg: W, bgAnsi256: K, bg: X, rgb: Y, bgRgb: Z, hex: tt, bgHex: et, reset: ot, inverse: it, hidden: rt, visible: nt, bold: st, dim: at, italic: ct, underline: pt, strikethrough: mt, strike: lt, black: ut, red: ht, green: dt, yellow: gt, blue: ft, magenta: jt, cyan: yt, white: bt, grey: vt, gray: xt, blackBright: Et, redBright: wt, greenBright: Ot, yellowBright: Ct, blueBright: Pt, magentaBright: At, cyanBright: St, whiteBright: kt, bgBlack: It, bgRed: Dt, bgGreen: Rt, bgYellow: Nt, bgBlue: Bt, bgMagenta: Mt, bgCyan: Lt, bgWhite: Tt, bgGrey: qt, bgGray: Ft, bgBlackBright: Ut, bgRedBright: $t, bgGreenBright: Gt, bgYellowBright: Qt, bgBlueBright: _t, bgMagentaBright: Jt, bgCyanBright: Vt, bgWhiteBright: Ht} = V;
391
391
 
392
- var Wt;
392
+ var zt;
393
393
 
394
394
  (function(t) {
395
395
  t["Launched"] = "LAUNCHED";
396
396
  t["Done"] = "DONE";
397
397
  t["UncaughtException"] = "UNCAUGHT_EXCEPTION";
398
398
  t["FatalException"] = "FATAL_EXCEPTION";
399
- })(Wt || (Wt = {}));
399
+ })(zt || (zt = {}));
400
400
 
401
401
  class Application extends y {
402
402
  constructor() {
@@ -438,22 +438,22 @@ class Application extends y {
438
438
  return this.launch();
439
439
  }
440
440
  static onLaunched(t) {
441
- this.eventEmitter.once(Wt.Launched, (async e => t(e, await e.getObject("log"))));
441
+ this.eventEmitter.once(zt.Launched, (async e => t(e, await e.getObject("log"))));
442
442
  return this.launch();
443
443
  }
444
444
  static onDone(t) {
445
- this.eventEmitter.once(Wt.Done, (async e => t(e, await e.getObject("log"))));
445
+ this.eventEmitter.once(zt.Done, (async e => t(e, await e.getObject("log"))));
446
446
  return this.launch();
447
447
  }
448
448
  static onUncaughtException(t) {
449
- this.eventEmitter.on(Wt.UncaughtException, (async e => {
449
+ this.eventEmitter.on(zt.UncaughtException, (async e => {
450
450
  const o = await this.getLogger();
451
451
  await t(e, o);
452
452
  }));
453
453
  return this.launch();
454
454
  }
455
455
  static onFatalException(t) {
456
- this.eventEmitter.once(Wt.FatalException, (async e => {
456
+ this.eventEmitter.once(zt.FatalException, (async e => {
457
457
  const o = await this.getLogger();
458
458
  let i = await t(e, o);
459
459
  if (typeof i !== "number") i = 1;
@@ -469,7 +469,7 @@ class Application extends y {
469
469
  if (this.launchTimeout) clearTimeout(this.launchTimeout);
470
470
  this.launchTimeout = setTimeout((async () => {
471
471
  process.on("uncaughtException", (async t => {
472
- if (this.eventEmitter.listenerCount(Wt.UncaughtException)) return this.eventEmitter.emit(Wt.UncaughtException, t);
472
+ if (this.eventEmitter.listenerCount(zt.UncaughtException)) return this.eventEmitter.emit(zt.UncaughtException, t);
473
473
  const e = await this.getLogger();
474
474
  return e.warn(new Error("UncaughtException", {
475
475
  cause: t
@@ -484,7 +484,7 @@ class Application extends y {
484
484
  return this;
485
485
  }
486
486
  static processFatalException(t) {
487
- if (!this.eventEmitter.listenerCount(Wt.FatalException)) {
487
+ if (!this.eventEmitter.listenerCount(zt.FatalException)) {
488
488
  return process.nextTick((async () => {
489
489
  const e = await this.getLogger();
490
490
  e.error(new Error("FatalException", {
@@ -492,12 +492,12 @@ class Application extends y {
492
492
  }));
493
493
  }));
494
494
  }
495
- this.eventEmitter.emit(Wt.FatalException, t);
495
+ this.eventEmitter.emit(zt.FatalException, t);
496
496
  }
497
497
  static async launchApplication() {
498
498
  this.eventEmitter.once("exit", (async (t, e) => {
499
499
  try {
500
- await this.eventEmitter.emitRequest(Wt.Done, t);
500
+ await this.eventEmitter.emitRequest(zt.Done, t);
501
501
  await o.destroy();
502
502
  process.exit(e ? e : 0);
503
503
  } catch (t) {
@@ -525,12 +525,12 @@ class Application extends y {
525
525
  switch (t.toUpperCase()) {
526
526
  case "MIGRATION_GENERATE":
527
527
  {
528
- this.eventEmitter.removeAllListeners(Wt.Launched);
529
- this.eventEmitter.removeAllListeners(Wt.Done);
530
- this.eventEmitter.removeAllListeners(Wt.UncaughtException);
531
- this.eventEmitter.removeAllListeners(Wt.FatalException);
528
+ this.eventEmitter.removeAllListeners(zt.Launched);
529
+ this.eventEmitter.removeAllListeners(zt.Done);
530
+ this.eventEmitter.removeAllListeners(zt.UncaughtException);
531
+ this.eventEmitter.removeAllListeners(zt.FatalException);
532
532
  const o = process.env[t];
533
- const i = t => {
533
+ const getDataSourceOptionsArray = t => {
534
534
  const e = [];
535
535
  for (const o in t) {
536
536
  if (t[o] && t[o].class && t[o].class.databaseSymbol && t[o].class.databaseSymbol === B) {
@@ -542,17 +542,17 @@ class Application extends y {
542
542
  }
543
543
  return e;
544
544
  };
545
- const r = [ ...e.components ? i(e.components) : [], ...e.providers ? i(e.providers) : [] ];
546
- if (!r.length) process.exit(0);
545
+ const i = [ ...e.components ? getDataSourceOptionsArray(e.components) : [], ...e.providers ? getDataSourceOptionsArray(e.providers) : [] ];
546
+ if (!i.length) process.exit(0);
547
547
  e.bootstrap = [];
548
- r.forEach(((t, i) => {
549
- const n = `GenerateMigration${i}${Date.now()}`;
548
+ i.forEach(((t, r) => {
549
+ const n = `GenerateMigration${r}${Date.now()}`;
550
550
  if (!e.providers) e.providers = {};
551
551
  e.providers[n] = {
552
- class: Xt,
552
+ class: Kt,
553
553
  path: o,
554
554
  outputJs: false,
555
- exitProcess: i === r.length - 1,
555
+ exitProcess: r === i.length - 1,
556
556
  dataSourceName: Reflect.get(t, "dataSourceName"),
557
557
  dataSource: t
558
558
  };
@@ -566,12 +566,12 @@ class Application extends y {
566
566
  return new Promise(((t, i) => {
567
567
  w.validateAsync(e).then((e => {
568
568
  e.bootstrap?.push((async t => {
569
- const e = function() {
569
+ const launchedCallbackRemover = function() {
570
570
  this.options.bootstrap?.pop();
571
571
  R(Reflect.getOwnMetadata("#bootstrap", this))?.pop();
572
572
  };
573
- e.bind(R(t))();
574
- this.eventEmitter.emit(Wt.Launched, R(t));
573
+ launchedCallbackRemover.bind(R(t))();
574
+ this.eventEmitter.emit(zt.Launched, R(t));
575
575
  }));
576
576
  o.set(Application, {
577
577
  options: e
@@ -607,9 +607,9 @@ t([ S(r.Object().pattern(r.String(), r.String()).required()), e("design:type", F
607
607
 
608
608
  t([ S(r.Object().pattern(r.String(), r.String()).required(), r.Boolean().optional().default(false)), e("design:type", Function), e("design:paramtypes", [ Object, Boolean ]), e("design:returntype", Object) ], Application, "alias", null);
609
609
 
610
- var Kt;
610
+ var Wt;
611
611
 
612
- let Xt = Kt = class GenerateMigration extends o {
612
+ let Kt = Wt = class GenerateMigration extends o {
613
613
  get extension() {
614
614
  return this.outputJs ? ".js" : ".ts";
615
615
  }
@@ -640,31 +640,31 @@ let Xt = Kt = class GenerateMigration extends o {
640
640
  const o = await this.#e.driver.createSchemaBuilder().log();
641
641
  if (this.pretty) {
642
642
  o.upQueries.forEach((t => {
643
- t.query = Kt.prettifyQuery(t.query);
643
+ t.query = Wt.prettifyQuery(t.query);
644
644
  }));
645
645
  o.downQueries.forEach((t => {
646
- t.query = Kt.prettifyQuery(t.query);
646
+ t.query = Wt.prettifyQuery(t.query);
647
647
  }));
648
648
  }
649
649
  o.upQueries.forEach((e => {
650
- t.push(" await queryRunner.query(`" + e.query.replaceAll("`", "\\`") + "`" + Kt.queryParams(e.parameters) + ");");
650
+ t.push(" await queryRunner.query(`" + e.query.replaceAll("`", "\\`") + "`" + Wt.queryParams(e.parameters) + ");");
651
651
  }));
652
652
  o.downQueries.forEach((t => {
653
- e.push(" await queryRunner.query(`" + t.query.replaceAll("`", "\\`") + "`" + Kt.queryParams(t.parameters) + ");");
653
+ e.push(" await queryRunner.query(`" + t.query.replaceAll("`", "\\`") + "`" + Wt.queryParams(t.parameters) + ");");
654
654
  }));
655
655
  } finally {
656
656
  await this.#e.destroy();
657
657
  }
658
658
  if (!t.length) {
659
659
  if (this.check) {
660
- console.log(H.green`No changes in database schema were found`);
660
+ console.log(V.green`No changes in database schema were found`);
661
661
  if (this.exitProcess) {
662
662
  return this.#t.exit(0);
663
663
  } else {
664
664
  return;
665
665
  }
666
666
  } else {
667
- console.log(H.yellow`No changes in database schema were found`);
667
+ console.log(V.yellow`No changes in database schema were found`);
668
668
  if (this.exitProcess) {
669
669
  return this.#t.exit(1);
670
670
  } else {
@@ -672,12 +672,12 @@ let Xt = Kt = class GenerateMigration extends o {
672
672
  }
673
673
  }
674
674
  } else if (!this.path) {
675
- console.log(H.yellow`Please specify a migration path`);
675
+ console.log(V.yellow`Please specify a migration path`);
676
676
  return this.#t.exit(1);
677
677
  }
678
- const o = this.outputJs ? Kt.getJavascriptTemplate(n.basename(this.path), this.timestamp, t, e.reverse(), this.esm) : Kt.getTemplate(n.basename(this.path), this.timestamp, t, e.reverse());
678
+ const o = this.outputJs ? Wt.getJavascriptTemplate(n.basename(this.path), this.timestamp, t, e.reverse(), this.esm) : Wt.getTemplate(n.basename(this.path), this.timestamp, t, e.reverse());
679
679
  if (this.check) {
680
- console.log(H.yellow`Unexpected changes in database schema were found in check mode:\n\n${H.white(o)}`);
680
+ console.log(V.yellow`Unexpected changes in database schema were found in check mode:\n\n${V.white(o)}`);
681
681
  if (this.exitProcess) {
682
682
  return this.#t.exit(0);
683
683
  } else {
@@ -685,11 +685,11 @@ let Xt = Kt = class GenerateMigration extends o {
685
685
  }
686
686
  }
687
687
  if (this.dryRun) {
688
- console.log(H.green(`Migration ${H.blue(this.path + this.extension)} has content:\n\n${H.white(o)}`));
688
+ console.log(V.green(`Migration ${V.blue(this.path + this.extension)} has content:\n\n${V.white(o)}`));
689
689
  } else {
690
690
  const t = n.isAbsolute(this.path) ? n.join(this.path, this.filename) : n.join(process.cwd(), this.path, this.filename);
691
- await _.CommandUtils.createFile(t, o);
692
- console.log(H.green`Migration ${H.blue(t)} has been generated successfully.`);
691
+ await Q.CommandUtils.createFile(t, o);
692
+ console.log(V.green`Migration ${V.blue(t)} has been generated successfully.`);
693
693
  if (this.exitProcess) {
694
694
  return this.#t.exit(0);
695
695
  } else {
@@ -724,26 +724,26 @@ let Xt = Kt = class GenerateMigration extends o {
724
724
  }
725
725
  };
726
726
 
727
- t([ i(r.String().required()), e("design:type", String) ], Xt.prototype, "path", void 0);
727
+ t([ i(r.String().required()), e("design:type", String) ], Kt.prototype, "path", void 0);
728
728
 
729
- t([ i(r.String().allow("").optional().default("")), e("design:type", String) ], Xt.prototype, "dataSourceName", void 0);
729
+ t([ i(r.String().allow("").optional().default("")), e("design:type", String) ], Kt.prototype, "dataSourceName", void 0);
730
730
 
731
- t([ i(), e("design:type", Object) ], Xt.prototype, "dataSource", void 0);
731
+ t([ i(), e("design:type", Object) ], Kt.prototype, "dataSource", void 0);
732
732
 
733
- t([ i(r.Boolean().optional().default(true)), e("design:type", Boolean) ], Xt.prototype, "pretty", void 0);
733
+ t([ i(r.Boolean().optional().default(true)), e("design:type", Boolean) ], Kt.prototype, "pretty", void 0);
734
734
 
735
- t([ i(r.Boolean().optional().default(false)), e("design:type", Boolean) ], Xt.prototype, "outputJs", void 0);
735
+ t([ i(r.Boolean().optional().default(false)), e("design:type", Boolean) ], Kt.prototype, "outputJs", void 0);
736
736
 
737
- t([ i(r.Boolean().optional().default(false)), e("design:type", Boolean) ], Xt.prototype, "esm", void 0);
737
+ t([ i(r.Boolean().optional().default(false)), e("design:type", Boolean) ], Kt.prototype, "esm", void 0);
738
738
 
739
- t([ i(r.Boolean().optional().default(false)), e("design:type", Boolean) ], Xt.prototype, "dryRun", void 0);
739
+ t([ i(r.Boolean().optional().default(false)), e("design:type", Boolean) ], Kt.prototype, "dryRun", void 0);
740
740
 
741
- t([ i(r.Boolean().optional().default(false)), e("design:type", Boolean) ], Xt.prototype, "check", void 0);
741
+ t([ i(r.Boolean().optional().default(false)), e("design:type", Boolean) ], Kt.prototype, "check", void 0);
742
742
 
743
- t([ i(r.Number().optional().default((() => Date.now()))), e("design:type", Number) ], Xt.prototype, "timestamp", void 0);
743
+ t([ i(r.Number().optional().default((() => Date.now()))), e("design:type", Number) ], Kt.prototype, "timestamp", void 0);
744
744
 
745
- t([ i(r.Boolean().optional().default(true)), e("design:type", Boolean) ], Xt.prototype, "exitProcess", void 0);
745
+ t([ i(r.Boolean().optional().default(true)), e("design:type", Boolean) ], Kt.prototype, "exitProcess", void 0);
746
746
 
747
- Xt = Kt = t([ j() ], Xt);
747
+ Kt = Wt = t([ j() ], Kt);
748
748
 
749
- export { Application, Wt as ApplicationState, Xt as G };
749
+ export { Application, zt as ApplicationState, Kt as G };
@@ -4,8 +4,8 @@ Object.defineProperty(exports, Symbol.toStringTag, {
4
4
  value: "Module"
5
5
  });
6
6
 
7
- function e(e) {
7
+ function ArrayToSet(e) {
8
8
  return new Set(e);
9
9
  }
10
10
 
11
- exports.ArrayToSet = e;
11
+ exports.ArrayToSet = ArrayToSet;
@@ -1,5 +1,5 @@
1
- function e(e) {
2
- return new Set(e);
1
+ function ArrayToSet(r) {
2
+ return new Set(r);
3
3
  }
4
4
 
5
- export { e as ArrayToSet };
5
+ export { ArrayToSet };
@@ -4,8 +4,8 @@ Object.defineProperty(exports, Symbol.toStringTag, {
4
4
  value: "Module"
5
5
  });
6
6
 
7
- function e(e) {
7
+ function As(e) {
8
8
  return e;
9
9
  }
10
10
 
11
- exports.As = e;
11
+ exports.As = As;
@@ -1,5 +1,5 @@
1
- function n(n) {
1
+ function As(n) {
2
2
  return n;
3
3
  }
4
4
 
5
- export { n as As };
5
+ export { As };
@@ -4,8 +4,8 @@ Object.defineProperty(exports, Symbol.toStringTag, {
4
4
  value: "Module"
5
5
  });
6
6
 
7
- function* e(e) {
8
- for (let t = 0; t < e.length; t++) yield e[t];
7
+ function* ConvertArrayLikeToIterable(e) {
8
+ for (let r = 0; r < e.length; r++) yield e[r];
9
9
  }
10
10
 
11
- exports.ConvertArrayLikeToIterable = e;
11
+ exports.ConvertArrayLikeToIterable = ConvertArrayLikeToIterable;
@@ -1,5 +1,5 @@
1
- function* e(e) {
2
- for (let t = 0; t < e.length; t++) yield e[t];
1
+ function* ConvertArrayLikeToIterable(e) {
2
+ for (let r = 0; r < e.length; r++) yield e[r];
3
3
  }
4
4
 
5
- export { e as ConvertArrayLikeToIterable };
5
+ export { ConvertArrayLikeToIterable };
@@ -8,9 +8,9 @@ const e = require("./ConvertArrayLikeToIterable.cjs");
8
8
 
9
9
  const r = require("node:stream");
10
10
 
11
- function t(t, o) {
11
+ function ConvertArrayLikeToStream(t, o) {
12
12
  o = o ? o : {};
13
13
  return r.Stream.Readable.from(e.ConvertArrayLikeToIterable(t), o);
14
14
  }
15
15
 
16
- exports.ConvertArrayLikeToStream = t;
16
+ exports.ConvertArrayLikeToStream = ConvertArrayLikeToStream;
@@ -2,9 +2,9 @@ import { ConvertArrayLikeToIterable as r } from "./ConvertArrayLikeToIterable.mj
2
2
 
3
3
  import { Stream as e } from "node:stream";
4
4
 
5
- function o(o, t) {
5
+ function ConvertArrayLikeToStream(o, t) {
6
6
  t = t ? t : {};
7
7
  return e.Readable.from(r(o), t);
8
8
  }
9
9
 
10
- export { o as ConvertArrayLikeToStream };
10
+ export { ConvertArrayLikeToStream };
@@ -4,8 +4,8 @@ Object.defineProperty(exports, Symbol.toStringTag, {
4
4
  value: "Module"
5
5
  });
6
6
 
7
- async function e(e) {
7
+ async function Delay(e) {
8
8
  return new Promise((t => setTimeout((() => t()), e)));
9
9
  }
10
10
 
11
- exports.Delay = e;
11
+ exports.Delay = Delay;
@@ -1,5 +1,5 @@
1
- async function e(e) {
1
+ async function Delay(e) {
2
2
  return new Promise((n => setTimeout((() => n()), e)));
3
3
  }
4
4
 
5
- export { e as Delay };
5
+ export { Delay };
@@ -4,8 +4,8 @@ Object.defineProperty(exports, Symbol.toStringTag, {
4
4
  value: "Module"
5
5
  });
6
6
 
7
- function e(...e) {
7
+ function DevNull(...e) {
8
8
  return void 0;
9
9
  }
10
10
 
11
- exports.DevNull = e;
11
+ exports.DevNull = DevNull;
@@ -1,5 +1,5 @@
1
- function n(...n) {
1
+ function DevNull(...e) {
2
2
  return void 0;
3
3
  }
4
4
 
5
- export { n as DevNull };
5
+ export { DevNull };
@@ -4,19 +4,19 @@ Object.defineProperty(exports, Symbol.toStringTag, {
4
4
  value: "Module"
5
5
  });
6
6
 
7
- function t(e) {
8
- let o = 0;
9
- const r = Object.keys(e);
10
- if (!r.length) return o;
11
- let n = 0;
12
- o += 1;
13
- r.forEach((o => {
14
- if (typeof e[o] === "object") {
15
- const r = t(e[o]);
16
- n = n > r ? n : r;
7
+ function GetObjectNestingDepth(t) {
8
+ let e = 0;
9
+ const n = Object.keys(t);
10
+ if (!n.length) return e;
11
+ let c = 0;
12
+ e += 1;
13
+ n.forEach((e => {
14
+ if (typeof t[e] === "object") {
15
+ const n = GetObjectNestingDepth(t[e]);
16
+ c = c > n ? c : n;
17
17
  }
18
18
  }));
19
- return o + n;
19
+ return e + c;
20
20
  }
21
21
 
22
- exports.GetObjectNestingDepth = t;
22
+ exports.GetObjectNestingDepth = GetObjectNestingDepth;
@@ -1,16 +1,16 @@
1
- function t(e) {
2
- let n = 0;
3
- const o = Object.keys(e);
4
- if (!o.length) return n;
1
+ function GetObjectNestingDepth(t) {
2
+ let e = 0;
3
+ const n = Object.keys(t);
4
+ if (!n.length) return e;
5
5
  let c = 0;
6
- n += 1;
7
- o.forEach((n => {
8
- if (typeof e[n] === "object") {
9
- const o = t(e[n]);
10
- c = c > o ? c : o;
6
+ e += 1;
7
+ n.forEach((e => {
8
+ if (typeof t[e] === "object") {
9
+ const n = GetObjectNestingDepth(t[e]);
10
+ c = c > n ? c : n;
11
11
  }
12
12
  }));
13
- return n + c;
13
+ return e + c;
14
14
  }
15
15
 
16
- export { t as GetObjectNestingDepth };
16
+ export { GetObjectNestingDepth };
@@ -4,17 +4,17 @@ Object.defineProperty(exports, Symbol.toStringTag, {
4
4
  value: "Module"
5
5
  });
6
6
 
7
- function e(t, o = "") {
7
+ function GetObjectPropertyPaths(t, e = "") {
8
8
  const r = [];
9
- Object.keys(t).forEach((s => {
10
- const c = o ? `${o}.${s}` : s;
11
- if (typeof t[s] === "object") {
12
- e(t[s], c).forEach((e => r.push(e)));
9
+ Object.keys(t).forEach((o => {
10
+ const s = e ? `${e}.${o}` : o;
11
+ if (typeof t[o] === "object") {
12
+ GetObjectPropertyPaths(t[o], s).forEach((t => r.push(t)));
13
13
  } else {
14
- r.push(c);
14
+ r.push(s);
15
15
  }
16
16
  }));
17
17
  return r;
18
18
  }
19
19
 
20
- exports.GetObjectPropertyPaths = e;
20
+ exports.GetObjectPropertyPaths = GetObjectPropertyPaths;
@@ -1,14 +1,14 @@
1
- function e(o, t = "") {
2
- const c = [];
3
- Object.keys(o).forEach((s => {
4
- const f = t ? `${t}.${s}` : s;
5
- if (typeof o[s] === "object") {
6
- e(o[s], f).forEach((e => c.push(e)));
1
+ function GetObjectPropertyPaths(t, e = "") {
2
+ const o = [];
3
+ Object.keys(t).forEach((r => {
4
+ const c = e ? `${e}.${r}` : r;
5
+ if (typeof t[r] === "object") {
6
+ GetObjectPropertyPaths(t[r], c).forEach((t => o.push(t)));
7
7
  } else {
8
- c.push(f);
8
+ o.push(c);
9
9
  }
10
10
  }));
11
- return c;
11
+ return o;
12
12
  }
13
13
 
14
- export { e as GetObjectPropertyPaths };
14
+ export { GetObjectPropertyPaths };