@quantiya/codevibe-claude-plugin 2.0.25 → 2.0.27

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 (316) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/node_modules/@iarna/toml/CHANGELOG.md +278 -0
  3. package/node_modules/@quantiya/codevibe-core/dist/__tests__/terminal-menu.test.d.ts +1 -0
  4. package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +4 -1
  5. package/node_modules/@quantiya/codevibe-core/dist/index.js +625 -430
  6. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/audit-browser.d.ts +42 -2
  7. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/audit-runner.d.ts +13 -1
  8. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +8 -0
  9. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +649 -87
  10. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/flag-command.d.ts +4 -1
  11. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +16 -2
  12. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +2 -0
  13. package/node_modules/@quantiya/codevibe-core/dist/prompt-parser.d.ts +3 -1
  14. package/node_modules/@quantiya/codevibe-core/dist/terminal-menu.d.ts +22 -0
  15. package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +32 -32
  16. package/node_modules/@quantiya/codevibe-core/package.json +1 -1
  17. package/node_modules/color-convert/CHANGELOG.md +54 -0
  18. package/node_modules/cross-spawn/node_modules/which/CHANGELOG.md +166 -0
  19. package/node_modules/deep-extend/CHANGELOG.md +46 -0
  20. package/node_modules/es-toolkit/CHANGELOG.md +1053 -0
  21. package/node_modules/es-toolkit/dist/browser.global.js +4 -4
  22. package/node_modules/es-toolkit/dist/compat/array/differenceWith.js +2 -1
  23. package/node_modules/es-toolkit/dist/compat/array/differenceWith.mjs +2 -1
  24. package/node_modules/es-toolkit/dist/compat/array/findLastIndex.js +5 -3
  25. package/node_modules/es-toolkit/dist/compat/array/findLastIndex.mjs +5 -3
  26. package/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.js +1 -1
  27. package/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.mjs +1 -1
  28. package/node_modules/es-toolkit/dist/compat/array/without.js +8 -2
  29. package/node_modules/es-toolkit/dist/compat/array/without.mjs +8 -2
  30. package/node_modules/es-toolkit/dist/compat/array/xorWith.js +4 -6
  31. package/node_modules/es-toolkit/dist/compat/array/xorWith.mjs +4 -6
  32. package/node_modules/es-toolkit/dist/compat/compat.js +1 -1
  33. package/node_modules/es-toolkit/dist/compat/compat.mjs +1 -1
  34. package/node_modules/es-toolkit/dist/compat/function/debounce.js +1 -1
  35. package/node_modules/es-toolkit/dist/compat/function/debounce.mjs +1 -1
  36. package/node_modules/es-toolkit/dist/compat/index.js +1 -1
  37. package/node_modules/es-toolkit/dist/compat/index.mjs +1 -1
  38. package/node_modules/es-toolkit/dist/compat/object/has.js +3 -2
  39. package/node_modules/es-toolkit/dist/compat/object/has.mjs +3 -2
  40. package/node_modules/es-toolkit/dist/compat/object/hasIn.js +3 -2
  41. package/node_modules/es-toolkit/dist/compat/object/hasIn.mjs +3 -2
  42. package/node_modules/es-toolkit/dist/compat/object/mergeWith.js +1 -1
  43. package/node_modules/es-toolkit/dist/compat/object/mergeWith.mjs +1 -1
  44. package/node_modules/es-toolkit/dist/compat/object/omitBy.js +1 -1
  45. package/node_modules/es-toolkit/dist/compat/object/omitBy.mjs +1 -1
  46. package/node_modules/es-toolkit/dist/compat/object/pickBy.js +1 -1
  47. package/node_modules/es-toolkit/dist/compat/object/pickBy.mjs +1 -1
  48. package/node_modules/es-toolkit/dist/compat/util/toString.js +3 -1
  49. package/node_modules/es-toolkit/dist/compat/util/toString.mjs +3 -1
  50. package/node_modules/es-toolkit/dist/fp/flowAsync.d.mts +213 -0
  51. package/node_modules/es-toolkit/dist/fp/flowAsync.d.ts +213 -0
  52. package/node_modules/es-toolkit/dist/fp/flowAsync.js +37 -0
  53. package/node_modules/es-toolkit/dist/fp/flowAsync.mjs +37 -0
  54. package/node_modules/es-toolkit/dist/fp/index.d.mts +2 -1
  55. package/node_modules/es-toolkit/dist/fp/index.d.ts +2 -1
  56. package/node_modules/es-toolkit/dist/fp/index.js +2 -0
  57. package/node_modules/es-toolkit/dist/fp/index.mjs +2 -1
  58. package/node_modules/es-toolkit/dist/fp/iterator/cartesianProduct.d.mts +23 -0
  59. package/node_modules/es-toolkit/dist/fp/iterator/cartesianProduct.d.ts +23 -0
  60. package/node_modules/es-toolkit/dist/fp/iterator/cartesianProduct.js +28 -0
  61. package/node_modules/es-toolkit/dist/fp/iterator/cartesianProduct.mjs +28 -0
  62. package/node_modules/es-toolkit/dist/fp/iterator/chunk.d.mts +19 -0
  63. package/node_modules/es-toolkit/dist/fp/iterator/chunk.d.ts +19 -0
  64. package/node_modules/es-toolkit/dist/fp/iterator/chunk.js +24 -0
  65. package/node_modules/es-toolkit/dist/fp/iterator/chunk.mjs +24 -0
  66. package/node_modules/es-toolkit/dist/fp/iterator/count.d.mts +20 -0
  67. package/node_modules/es-toolkit/dist/fp/iterator/count.d.ts +20 -0
  68. package/node_modules/es-toolkit/dist/fp/iterator/count.js +25 -0
  69. package/node_modules/es-toolkit/dist/fp/iterator/count.mjs +25 -0
  70. package/node_modules/es-toolkit/dist/fp/iterator/drop.d.mts +20 -0
  71. package/node_modules/es-toolkit/dist/fp/iterator/drop.d.ts +20 -0
  72. package/node_modules/es-toolkit/dist/fp/iterator/drop.js +24 -0
  73. package/node_modules/es-toolkit/dist/fp/iterator/drop.mjs +24 -0
  74. package/node_modules/es-toolkit/dist/fp/iterator/dropWhile.d.mts +18 -0
  75. package/node_modules/es-toolkit/dist/fp/iterator/dropWhile.d.ts +18 -0
  76. package/node_modules/es-toolkit/dist/fp/iterator/dropWhile.js +23 -0
  77. package/node_modules/es-toolkit/dist/fp/iterator/dropWhile.mjs +23 -0
  78. package/node_modules/es-toolkit/dist/fp/iterator/every.d.mts +20 -0
  79. package/node_modules/es-toolkit/dist/fp/iterator/every.d.ts +20 -0
  80. package/node_modules/es-toolkit/dist/fp/iterator/every.js +24 -0
  81. package/node_modules/es-toolkit/dist/fp/iterator/every.mjs +24 -0
  82. package/node_modules/es-toolkit/dist/fp/iterator/filter.d.mts +37 -0
  83. package/node_modules/es-toolkit/dist/fp/iterator/filter.d.ts +37 -0
  84. package/node_modules/es-toolkit/dist/fp/iterator/filter.js +8 -0
  85. package/node_modules/es-toolkit/dist/fp/iterator/filter.mjs +8 -0
  86. package/node_modules/es-toolkit/dist/fp/iterator/find.d.mts +20 -0
  87. package/node_modules/es-toolkit/dist/fp/iterator/find.d.ts +20 -0
  88. package/node_modules/es-toolkit/dist/fp/iterator/find.js +24 -0
  89. package/node_modules/es-toolkit/dist/fp/iterator/find.mjs +24 -0
  90. package/node_modules/es-toolkit/dist/fp/iterator/flatMap.d.mts +20 -0
  91. package/node_modules/es-toolkit/dist/fp/iterator/flatMap.d.ts +20 -0
  92. package/node_modules/es-toolkit/dist/fp/iterator/flatMap.js +24 -0
  93. package/node_modules/es-toolkit/dist/fp/iterator/flatMap.mjs +24 -0
  94. package/node_modules/es-toolkit/dist/fp/iterator/forEach.d.mts +22 -0
  95. package/node_modules/es-toolkit/dist/fp/iterator/forEach.d.ts +22 -0
  96. package/node_modules/es-toolkit/dist/fp/iterator/forEach.js +26 -0
  97. package/node_modules/es-toolkit/dist/fp/iterator/forEach.mjs +26 -0
  98. package/node_modules/es-toolkit/dist/fp/iterator/head.d.mts +19 -0
  99. package/node_modules/es-toolkit/dist/fp/iterator/head.d.ts +19 -0
  100. package/node_modules/es-toolkit/dist/fp/iterator/head.js +24 -0
  101. package/node_modules/es-toolkit/dist/fp/iterator/head.mjs +24 -0
  102. package/node_modules/es-toolkit/dist/fp/iterator/index.d.mts +22 -0
  103. package/node_modules/es-toolkit/dist/fp/iterator/index.d.ts +22 -0
  104. package/node_modules/es-toolkit/dist/fp/iterator/index.js +43 -0
  105. package/node_modules/es-toolkit/dist/fp/iterator/index.mjs +22 -0
  106. package/node_modules/es-toolkit/dist/fp/iterator/map.d.mts +20 -0
  107. package/node_modules/es-toolkit/dist/fp/iterator/map.d.ts +20 -0
  108. package/node_modules/es-toolkit/dist/fp/iterator/map.js +24 -0
  109. package/node_modules/es-toolkit/dist/fp/iterator/map.mjs +24 -0
  110. package/node_modules/es-toolkit/dist/fp/iterator/partition.d.mts +22 -0
  111. package/node_modules/es-toolkit/dist/fp/iterator/partition.d.ts +22 -0
  112. package/node_modules/es-toolkit/dist/fp/iterator/partition.js +27 -0
  113. package/node_modules/es-toolkit/dist/fp/iterator/partition.mjs +27 -0
  114. package/node_modules/es-toolkit/dist/fp/iterator/reduce.d.mts +24 -0
  115. package/node_modules/es-toolkit/dist/fp/iterator/reduce.d.ts +24 -0
  116. package/node_modules/es-toolkit/dist/fp/iterator/reduce.js +28 -0
  117. package/node_modules/es-toolkit/dist/fp/iterator/reduce.mjs +28 -0
  118. package/node_modules/es-toolkit/dist/fp/iterator/scan.d.mts +21 -0
  119. package/node_modules/es-toolkit/dist/fp/iterator/scan.d.ts +21 -0
  120. package/node_modules/es-toolkit/dist/fp/iterator/scan.js +26 -0
  121. package/node_modules/es-toolkit/dist/fp/iterator/scan.mjs +26 -0
  122. package/node_modules/es-toolkit/dist/fp/iterator/some.d.mts +20 -0
  123. package/node_modules/es-toolkit/dist/fp/iterator/some.d.ts +20 -0
  124. package/node_modules/es-toolkit/dist/fp/iterator/some.js +24 -0
  125. package/node_modules/es-toolkit/dist/fp/iterator/some.mjs +24 -0
  126. package/node_modules/es-toolkit/dist/fp/iterator/take.d.mts +21 -0
  127. package/node_modules/es-toolkit/dist/fp/iterator/take.d.ts +21 -0
  128. package/node_modules/es-toolkit/dist/fp/iterator/take.js +25 -0
  129. package/node_modules/es-toolkit/dist/fp/iterator/take.mjs +25 -0
  130. package/node_modules/es-toolkit/dist/fp/iterator/takeWhile.d.mts +19 -0
  131. package/node_modules/es-toolkit/dist/fp/iterator/takeWhile.d.ts +19 -0
  132. package/node_modules/es-toolkit/dist/fp/iterator/takeWhile.js +24 -0
  133. package/node_modules/es-toolkit/dist/fp/iterator/takeWhile.mjs +24 -0
  134. package/node_modules/es-toolkit/dist/fp/iterator/toArray.d.mts +21 -0
  135. package/node_modules/es-toolkit/dist/fp/iterator/toArray.d.ts +21 -0
  136. package/node_modules/es-toolkit/dist/fp/iterator/toArray.js +25 -0
  137. package/node_modules/es-toolkit/dist/fp/iterator/toArray.mjs +25 -0
  138. package/node_modules/es-toolkit/dist/fp/iterator/uniqBy.d.mts +20 -0
  139. package/node_modules/es-toolkit/dist/fp/iterator/uniqBy.d.ts +20 -0
  140. package/node_modules/es-toolkit/dist/fp/iterator/uniqBy.js +25 -0
  141. package/node_modules/es-toolkit/dist/fp/iterator/uniqBy.mjs +25 -0
  142. package/node_modules/es-toolkit/dist/fp/iterator/zip.d.mts +20 -0
  143. package/node_modules/es-toolkit/dist/fp/iterator/zip.d.ts +20 -0
  144. package/node_modules/es-toolkit/dist/fp/iterator/zip.js +25 -0
  145. package/node_modules/es-toolkit/dist/fp/iterator/zip.mjs +25 -0
  146. package/node_modules/es-toolkit/dist/index.d.mts +3 -1
  147. package/node_modules/es-toolkit/dist/index.d.ts +3 -1
  148. package/node_modules/es-toolkit/dist/index.js +4 -0
  149. package/node_modules/es-toolkit/dist/index.mjs +3 -1
  150. package/node_modules/es-toolkit/dist/iterator/_internal/iterator.js +74 -0
  151. package/node_modules/es-toolkit/dist/iterator/_internal/iterator.mjs +74 -0
  152. package/node_modules/es-toolkit/dist/iterator/cartesianProduct.d.mts +33 -0
  153. package/node_modules/es-toolkit/dist/iterator/cartesianProduct.d.ts +33 -0
  154. package/node_modules/es-toolkit/dist/iterator/cartesianProduct.js +95 -0
  155. package/node_modules/es-toolkit/dist/iterator/cartesianProduct.mjs +95 -0
  156. package/node_modules/es-toolkit/dist/iterator/chunk.d.mts +21 -0
  157. package/node_modules/es-toolkit/dist/iterator/chunk.d.ts +21 -0
  158. package/node_modules/es-toolkit/dist/iterator/chunk.js +40 -0
  159. package/node_modules/es-toolkit/dist/iterator/chunk.mjs +40 -0
  160. package/node_modules/es-toolkit/dist/iterator/count.d.mts +18 -0
  161. package/node_modules/es-toolkit/dist/iterator/count.d.ts +18 -0
  162. package/node_modules/es-toolkit/dist/iterator/count.js +26 -0
  163. package/node_modules/es-toolkit/dist/iterator/count.mjs +26 -0
  164. package/node_modules/es-toolkit/dist/iterator/dropWhile.d.mts +20 -0
  165. package/node_modules/es-toolkit/dist/iterator/dropWhile.d.ts +20 -0
  166. package/node_modules/es-toolkit/dist/iterator/dropWhile.js +52 -0
  167. package/node_modules/es-toolkit/dist/iterator/dropWhile.mjs +52 -0
  168. package/node_modules/es-toolkit/dist/iterator/head.d.mts +21 -0
  169. package/node_modules/es-toolkit/dist/iterator/head.d.ts +21 -0
  170. package/node_modules/es-toolkit/dist/iterator/head.js +26 -0
  171. package/node_modules/es-toolkit/dist/iterator/head.mjs +26 -0
  172. package/node_modules/es-toolkit/dist/iterator/index.d.mts +13 -0
  173. package/node_modules/es-toolkit/dist/iterator/index.d.ts +13 -0
  174. package/node_modules/es-toolkit/dist/iterator/index.js +25 -0
  175. package/node_modules/es-toolkit/dist/iterator/index.mjs +13 -0
  176. package/node_modules/es-toolkit/dist/iterator/iterate.d.mts +20 -0
  177. package/node_modules/es-toolkit/dist/iterator/iterate.d.ts +20 -0
  178. package/node_modules/es-toolkit/dist/iterator/iterate.js +32 -0
  179. package/node_modules/es-toolkit/dist/iterator/iterate.mjs +32 -0
  180. package/node_modules/es-toolkit/dist/iterator/partition.d.mts +18 -0
  181. package/node_modules/es-toolkit/dist/iterator/partition.d.ts +18 -0
  182. package/node_modules/es-toolkit/dist/iterator/partition.js +36 -0
  183. package/node_modules/es-toolkit/dist/iterator/partition.mjs +36 -0
  184. package/node_modules/es-toolkit/dist/iterator/range.d.mts +42 -0
  185. package/node_modules/es-toolkit/dist/iterator/range.d.ts +42 -0
  186. package/node_modules/es-toolkit/dist/iterator/range.js +25 -0
  187. package/node_modules/es-toolkit/dist/iterator/range.mjs +25 -0
  188. package/node_modules/es-toolkit/dist/iterator/scan.d.mts +23 -0
  189. package/node_modules/es-toolkit/dist/iterator/scan.d.ts +23 -0
  190. package/node_modules/es-toolkit/dist/iterator/scan.js +47 -0
  191. package/node_modules/es-toolkit/dist/iterator/scan.mjs +47 -0
  192. package/node_modules/es-toolkit/dist/iterator/takeWhile.d.mts +20 -0
  193. package/node_modules/es-toolkit/dist/iterator/takeWhile.d.ts +20 -0
  194. package/node_modules/es-toolkit/dist/iterator/takeWhile.js +34 -0
  195. package/node_modules/es-toolkit/dist/iterator/takeWhile.mjs +34 -0
  196. package/node_modules/es-toolkit/dist/iterator/uniqBy.d.mts +22 -0
  197. package/node_modules/es-toolkit/dist/iterator/uniqBy.d.ts +22 -0
  198. package/node_modules/es-toolkit/dist/iterator/uniqBy.js +43 -0
  199. package/node_modules/es-toolkit/dist/iterator/uniqBy.mjs +43 -0
  200. package/node_modules/es-toolkit/dist/iterator/zip.d.mts +23 -0
  201. package/node_modules/es-toolkit/dist/iterator/zip.d.ts +23 -0
  202. package/node_modules/es-toolkit/dist/iterator/zip.js +45 -0
  203. package/node_modules/es-toolkit/dist/iterator/zip.mjs +45 -0
  204. package/node_modules/es-toolkit/dist/object/merge.d.mts +3 -1
  205. package/node_modules/es-toolkit/dist/object/merge.d.ts +3 -1
  206. package/node_modules/es-toolkit/dist/object/merge.js +0 -40
  207. package/node_modules/es-toolkit/dist/object/merge.mjs +0 -40
  208. package/node_modules/es-toolkit/dist/object/omitBy.d.mts +4 -2
  209. package/node_modules/es-toolkit/dist/object/omitBy.d.ts +4 -2
  210. package/node_modules/es-toolkit/dist/object/omitBy.js +4 -3
  211. package/node_modules/es-toolkit/dist/object/omitBy.mjs +4 -3
  212. package/node_modules/es-toolkit/dist/object/pickBy.d.mts +4 -2
  213. package/node_modules/es-toolkit/dist/object/pickBy.d.ts +4 -2
  214. package/node_modules/es-toolkit/dist/object/pickBy.js +4 -3
  215. package/node_modules/es-toolkit/dist/object/pickBy.mjs +4 -3
  216. package/node_modules/es-toolkit/dist/types/EmptyObject.d.mts +21 -0
  217. package/node_modules/es-toolkit/dist/types/EmptyObject.d.ts +21 -0
  218. package/node_modules/es-toolkit/dist/types/IsEqual.d.mts +18 -0
  219. package/node_modules/es-toolkit/dist/types/IsEqual.d.ts +18 -0
  220. package/node_modules/es-toolkit/dist/types/JSONValue.d.mts +24 -0
  221. package/node_modules/es-toolkit/dist/types/JSONValue.d.ts +24 -0
  222. package/node_modules/es-toolkit/dist/types/Merge.d.mts +37 -0
  223. package/node_modules/es-toolkit/dist/types/Merge.d.ts +37 -0
  224. package/node_modules/es-toolkit/dist/types/ObjectKeys.d.mts +19 -0
  225. package/node_modules/es-toolkit/dist/types/ObjectKeys.d.ts +19 -0
  226. package/node_modules/es-toolkit/dist/types/Primitive.d.mts +14 -0
  227. package/node_modules/es-toolkit/dist/types/Primitive.d.ts +14 -0
  228. package/node_modules/es-toolkit/dist/types/SetOptional.d.mts +20 -0
  229. package/node_modules/es-toolkit/dist/types/SetOptional.d.ts +20 -0
  230. package/node_modules/es-toolkit/dist/types/SetRequired.d.mts +20 -0
  231. package/node_modules/es-toolkit/dist/types/SetRequired.d.ts +20 -0
  232. package/node_modules/es-toolkit/dist/types/UnknownRecord.d.mts +24 -0
  233. package/node_modules/es-toolkit/dist/types/UnknownRecord.d.ts +24 -0
  234. package/node_modules/es-toolkit/dist/types/index.d.mts +11 -2
  235. package/node_modules/es-toolkit/dist/types/index.d.ts +11 -2
  236. package/node_modules/es-toolkit/dist/util/attempt.d.mts +1 -1
  237. package/node_modules/es-toolkit/dist/util/attempt.d.ts +1 -1
  238. package/node_modules/es-toolkit/dist/util/attemptAsync.d.mts +1 -1
  239. package/node_modules/es-toolkit/dist/util/attemptAsync.d.ts +1 -1
  240. package/node_modules/es-toolkit/dist/util/defer.d.mts +27 -0
  241. package/node_modules/es-toolkit/dist/util/defer.d.ts +27 -0
  242. package/node_modules/es-toolkit/dist/util/defer.js +31 -0
  243. package/node_modules/es-toolkit/dist/util/defer.mjs +31 -0
  244. package/node_modules/es-toolkit/dist/util/deferAsync.d.mts +30 -0
  245. package/node_modules/es-toolkit/dist/util/deferAsync.d.ts +30 -0
  246. package/node_modules/es-toolkit/dist/util/deferAsync.js +34 -0
  247. package/node_modules/es-toolkit/dist/util/deferAsync.mjs +34 -0
  248. package/node_modules/es-toolkit/dist/util/index.d.mts +3 -1
  249. package/node_modules/es-toolkit/dist/util/index.d.ts +3 -1
  250. package/node_modules/es-toolkit/dist/util/index.js +4 -0
  251. package/node_modules/es-toolkit/dist/util/index.mjs +3 -1
  252. package/node_modules/es-toolkit/fp/iterator.d.ts +1 -0
  253. package/node_modules/es-toolkit/fp/iterator.js +1 -0
  254. package/node_modules/es-toolkit/iterator.d.ts +1 -0
  255. package/node_modules/es-toolkit/iterator.js +1 -0
  256. package/node_modules/es-toolkit/package.json +44 -1
  257. package/node_modules/es-toolkit/src/compat/_internal/Equals.d.ts +1 -0
  258. package/node_modules/es-toolkit/src/compat/_internal/IsWritable.d.ts +3 -0
  259. package/node_modules/es-toolkit/src/compat/_internal/MutableList.d.ts +4 -0
  260. package/node_modules/es-toolkit/src/compat/_internal/RejectReadonly.d.ts +4 -0
  261. package/node_modules/keytar/build/Release/keytar.node +0 -0
  262. package/node_modules/node-abi/abi_registry.json +7 -0
  263. package/node_modules/node-abi/package.json +1 -1
  264. package/node_modules/qs/.github/THREAT_MODEL.md +3 -3
  265. package/node_modules/qs/CHANGELOG.md +15 -0
  266. package/node_modules/qs/README.md +19 -1
  267. package/node_modules/qs/dist/qs.js +21 -21
  268. package/node_modules/qs/eslint.config.mjs +1 -1
  269. package/node_modules/qs/lib/parse.js +3 -4
  270. package/node_modules/qs/lib/stringify.js +23 -8
  271. package/node_modules/qs/lib/utils.js +10 -3
  272. package/node_modules/qs/package.json +4 -4
  273. package/node_modules/qs/test/parse.js +192 -3
  274. package/node_modules/qs/test/stringify.js +317 -0
  275. package/node_modules/qs/test/utils.js +12 -0
  276. package/node_modules/type-fest/index.d.ts +6 -7
  277. package/node_modules/type-fest/package.json +1 -1
  278. package/node_modules/type-fest/readme.md +6 -5
  279. package/node_modules/type-fest/source/delimiter-case.d.ts +1 -1
  280. package/node_modules/type-fest/source/get.d.ts +1 -1
  281. package/node_modules/type-fest/source/internal/object.d.ts +30 -1
  282. package/node_modules/type-fest/source/is-boolean-literal.d.ts +39 -0
  283. package/node_modules/type-fest/source/is-literal.d.ts +43 -269
  284. package/node_modules/type-fest/source/is-numeric-literal.d.ts +50 -0
  285. package/node_modules/type-fest/source/is-string-literal.d.ts +72 -0
  286. package/node_modules/type-fest/source/is-symbol-literal.d.ts +39 -0
  287. package/node_modules/type-fest/source/jsonify.d.ts +1 -5
  288. package/node_modules/type-fest/source/remove-prefix.d.ts +1 -1
  289. package/node_modules/type-fest/source/remove-suffix.d.ts +1 -1
  290. package/node_modules/type-fest/source/rename-keys.d.ts +163 -0
  291. package/node_modules/type-fest/source/shared-union-fields-deep.d.ts +4 -3
  292. package/node_modules/type-fest/source/split.d.ts +1 -1
  293. package/node_modules/type-fest/source/string-repeat.d.ts +1 -1
  294. package/node_modules/type-fest/source/string-to-array.d.ts +1 -1
  295. package/node_modules/type-fest/source/tsconfig-json.d.ts +1 -1
  296. package/node_modules/type-fest/source/typed-array.d.ts +1 -0
  297. package/node_modules/type-fest/source/writable.d.ts +2 -2
  298. package/package.json +2 -2
  299. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/LICENSE.md +0 -0
  300. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/README.md +0 -0
  301. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/common.gypi +0 -0
  302. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/except.gypi +0 -0
  303. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/index.js +0 -0
  304. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/napi-inl.deprecated.h +0 -0
  305. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/napi-inl.h +0 -0
  306. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/napi.h +0 -0
  307. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/node_api.gyp +0 -0
  308. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/noexcept.gypi +0 -0
  309. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/nothing.c +0 -0
  310. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/package-support.json +0 -0
  311. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/package.json +0 -0
  312. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/tools/README.md +0 -0
  313. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/tools/check-napi.js +0 -0
  314. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/tools/clang-format.js +0 -0
  315. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/tools/conversion.js +0 -0
  316. /package/node_modules/{node-addon-api → keytar/node_modules/node-addon-api}/tools/eslint-format.js +0 -0
@@ -8,6 +8,7 @@ const require_isArrayLike = require("./predicate/isArrayLike.js");
8
8
  const require_chunk = require("./array/chunk.js");
9
9
  const require_compact = require("./array/compact.js");
10
10
  const require_concat = require("./array/concat.js");
11
+ const require_isSymbol = require("./predicate/isSymbol.js");
11
12
  const require_toString = require("./util/toString.js");
12
13
  const require_toPath = require("./util/toPath.js");
13
14
  const require_get = require("./object/get.js");
@@ -29,7 +30,6 @@ const require_difference = require("./array/difference.js");
29
30
  const require_last = require("./array/last.js");
30
31
  const require_differenceBy = require("./array/differenceBy.js");
31
32
  const require_differenceWith = require("./array/differenceWith.js");
32
- const require_isSymbol = require("./predicate/isSymbol.js");
33
33
  const require_toNumber = require("./util/toNumber.js");
34
34
  const require_toFinite = require("./util/toFinite.js");
35
35
  const require_toInteger = require("./util/toInteger.js");
@@ -8,6 +8,7 @@ import { isArrayLike } from "./predicate/isArrayLike.mjs";
8
8
  import { chunk } from "./array/chunk.mjs";
9
9
  import { compact } from "./array/compact.mjs";
10
10
  import { concat } from "./array/concat.mjs";
11
+ import { isSymbol } from "./predicate/isSymbol.mjs";
11
12
  import { toString } from "./util/toString.mjs";
12
13
  import { toPath } from "./util/toPath.mjs";
13
14
  import { get } from "./object/get.mjs";
@@ -29,7 +30,6 @@ import { difference } from "./array/difference.mjs";
29
30
  import { last } from "./array/last.mjs";
30
31
  import { differenceBy } from "./array/differenceBy.mjs";
31
32
  import { differenceWith } from "./array/differenceWith.mjs";
32
- import { isSymbol } from "./predicate/isSymbol.mjs";
33
33
  import { toNumber } from "./util/toNumber.mjs";
34
34
  import { toFinite } from "./util/toFinite.mjs";
35
35
  import { toInteger } from "./util/toInteger.mjs";
@@ -16,7 +16,7 @@ function debounce(func, debounceMs = 0, options = {}) {
16
16
  if (maxWait != null) {
17
17
  if (pendingAt === null) pendingAt = Date.now();
18
18
  if (Date.now() - pendingAt >= maxWait) {
19
- result = func.apply(this, args);
19
+ if (leading || trailing) result = func.apply(this, args);
20
20
  pendingAt = Date.now();
21
21
  _debounced.cancel();
22
22
  _debounced.schedule();
@@ -16,7 +16,7 @@ function debounce(func, debounceMs = 0, options = {}) {
16
16
  if (maxWait != null) {
17
17
  if (pendingAt === null) pendingAt = Date.now();
18
18
  if (Date.now() - pendingAt >= maxWait) {
19
- result = func.apply(this, args);
19
+ if (leading || trailing) result = func.apply(this, args);
20
20
  pendingAt = Date.now();
21
21
  _debounced.cancel();
22
22
  _debounced.schedule();
@@ -11,6 +11,7 @@ const require_isArrayLike = require("./predicate/isArrayLike.js");
11
11
  const require_chunk = require("./array/chunk.js");
12
12
  const require_compact = require("./array/compact.js");
13
13
  const require_concat = require("./array/concat.js");
14
+ const require_isSymbol = require("./predicate/isSymbol.js");
14
15
  const require_toString = require("./util/toString.js");
15
16
  const require_toPath = require("./util/toPath.js");
16
17
  const require_get = require("./object/get.js");
@@ -32,7 +33,6 @@ const require_difference = require("./array/difference.js");
32
33
  const require_last = require("./array/last.js");
33
34
  const require_differenceBy = require("./array/differenceBy.js");
34
35
  const require_differenceWith = require("./array/differenceWith.js");
35
- const require_isSymbol = require("./predicate/isSymbol.js");
36
36
  const require_toNumber = require("./util/toNumber.js");
37
37
  const require_toFinite = require("./util/toFinite.js");
38
38
  const require_toInteger = require("./util/toInteger.js");
@@ -7,6 +7,7 @@ import { isArrayLike } from "./predicate/isArrayLike.mjs";
7
7
  import { chunk } from "./array/chunk.mjs";
8
8
  import { compact } from "./array/compact.mjs";
9
9
  import { concat } from "./array/concat.mjs";
10
+ import { isSymbol } from "./predicate/isSymbol.mjs";
10
11
  import { toString } from "./util/toString.mjs";
11
12
  import { toPath } from "./util/toPath.mjs";
12
13
  import { get } from "./object/get.mjs";
@@ -28,7 +29,6 @@ import { difference } from "./array/difference.mjs";
28
29
  import { last } from "./array/last.mjs";
29
30
  import { differenceBy } from "./array/differenceBy.mjs";
30
31
  import { differenceWith } from "./array/differenceWith.mjs";
31
- import { isSymbol } from "./predicate/isSymbol.mjs";
32
32
  import { toNumber } from "./util/toNumber.mjs";
33
33
  import { toFinite } from "./util/toFinite.mjs";
34
34
  import { toInteger } from "./util/toInteger.mjs";
@@ -1,4 +1,5 @@
1
1
  const require_isDeepKey = require("../_internal/isDeepKey.js");
2
+ const require_toKey = require("../_internal/toKey.js");
2
3
  const require_toPath = require("../util/toPath.js");
3
4
  const require_isIndex = require("../_internal/isIndex.js");
4
5
  const require_isArguments = require("../predicate/isArguments.js");
@@ -40,9 +41,9 @@ function has(object, path) {
40
41
  if (resolvedPath.length === 0) return false;
41
42
  let current = object;
42
43
  for (let i = 0; i < resolvedPath.length; i++) {
43
- const key = resolvedPath[i];
44
+ const key = require_toKey.toKey(resolvedPath[i]);
44
45
  if (current == null || !Object.hasOwn(current, key)) {
45
- if (!((Array.isArray(current) || require_isArguments.isArguments(current)) && require_isIndex.isIndex(key) && key < current.length)) return false;
46
+ if (!((Array.isArray(current) || require_isArguments.isArguments(current)) && require_isIndex.isIndex(key) && Number(key) < current.length)) return false;
46
47
  }
47
48
  current = current[key];
48
49
  }
@@ -1,4 +1,5 @@
1
1
  import { isDeepKey } from "../_internal/isDeepKey.mjs";
2
+ import { toKey } from "../_internal/toKey.mjs";
2
3
  import { toPath } from "../util/toPath.mjs";
3
4
  import { isIndex } from "../_internal/isIndex.mjs";
4
5
  import { isArguments } from "../predicate/isArguments.mjs";
@@ -40,9 +41,9 @@ function has(object, path) {
40
41
  if (resolvedPath.length === 0) return false;
41
42
  let current = object;
42
43
  for (let i = 0; i < resolvedPath.length; i++) {
43
- const key = resolvedPath[i];
44
+ const key = toKey(resolvedPath[i]);
44
45
  if (current == null || !Object.hasOwn(current, key)) {
45
- if (!((Array.isArray(current) || isArguments(current)) && isIndex(key) && key < current.length)) return false;
46
+ if (!((Array.isArray(current) || isArguments(current)) && isIndex(key) && Number(key) < current.length)) return false;
46
47
  }
47
48
  current = current[key];
48
49
  }
@@ -1,4 +1,5 @@
1
1
  const require_isDeepKey = require("../_internal/isDeepKey.js");
2
+ const require_toKey = require("../_internal/toKey.js");
2
3
  const require_toPath = require("../util/toPath.js");
3
4
  const require_isIndex = require("../_internal/isIndex.js");
4
5
  const require_isArguments = require("../predicate/isArguments.js");
@@ -50,9 +51,9 @@ function hasIn(object, path) {
50
51
  if (resolvedPath.length === 0) return false;
51
52
  let current = object;
52
53
  for (let i = 0; i < resolvedPath.length; i++) {
53
- const key = resolvedPath[i];
54
+ const key = require_toKey.toKey(resolvedPath[i]);
54
55
  if (current == null || !(key in Object(current))) {
55
- if (!((Array.isArray(current) || require_isArguments.isArguments(current)) && require_isIndex.isIndex(key) && key < current.length)) return false;
56
+ if (!((Array.isArray(current) || require_isArguments.isArguments(current)) && require_isIndex.isIndex(key) && Number(key) < current.length)) return false;
56
57
  }
57
58
  current = current[key];
58
59
  }
@@ -1,4 +1,5 @@
1
1
  import { isDeepKey } from "../_internal/isDeepKey.mjs";
2
+ import { toKey } from "../_internal/toKey.mjs";
2
3
  import { toPath } from "../util/toPath.mjs";
3
4
  import { isIndex } from "../_internal/isIndex.mjs";
4
5
  import { isArguments } from "../predicate/isArguments.mjs";
@@ -50,9 +51,9 @@ function hasIn(object, path) {
50
51
  if (resolvedPath.length === 0) return false;
51
52
  let current = object;
52
53
  for (let i = 0; i < resolvedPath.length; i++) {
53
- const key = resolvedPath[i];
54
+ const key = toKey(resolvedPath[i]);
54
55
  if (current == null || !(key in Object(current))) {
55
- if (!((Array.isArray(current) || isArguments(current)) && isIndex(key) && key < current.length)) return false;
56
+ if (!((Array.isArray(current) || isArguments(current)) && isIndex(key) && Number(key) < current.length)) return false;
56
57
  }
57
58
  current = current[key];
58
59
  }
@@ -73,7 +73,7 @@ function mergeWithDeep(target, source, merge, stack) {
73
73
  stack.set(source, target);
74
74
  if (Array.isArray(source)) {
75
75
  source = source.slice();
76
- for (let i = 0; i < source.length; i++) source[i] = source[i] ?? void 0;
76
+ for (let i = 0; i < source.length; i++) if (!(i in source)) source[i] = void 0;
77
77
  }
78
78
  const sourceKeys = [...Object.keys(source), ...require_getSymbols.getSymbols(source)];
79
79
  for (let i = 0; i < sourceKeys.length; i++) {
@@ -73,7 +73,7 @@ function mergeWithDeep(target, source, merge, stack) {
73
73
  stack.set(source, target);
74
74
  if (Array.isArray(source)) {
75
75
  source = source.slice();
76
- for (let i = 0; i < source.length; i++) source[i] = source[i] ?? void 0;
76
+ for (let i = 0; i < source.length; i++) if (!(i in source)) source[i] = void 0;
77
77
  }
78
78
  const sourceKeys = [...Object.keys(source), ...getSymbols(source)];
79
79
  for (let i = 0; i < sourceKeys.length; i++) {
@@ -1,5 +1,5 @@
1
- const require_iteratee = require("../util/iteratee.js");
2
1
  const require_isSymbol = require("../predicate/isSymbol.js");
2
+ const require_iteratee = require("../util/iteratee.js");
3
3
  const require_identity = require("../function/identity.js");
4
4
  const require_keysIn = require("./keysIn.js");
5
5
  const require_getSymbolsIn = require("../_internal/getSymbolsIn.js");
@@ -1,5 +1,5 @@
1
- import { iteratee } from "../util/iteratee.mjs";
2
1
  import { isSymbol } from "../predicate/isSymbol.mjs";
2
+ import { iteratee } from "../util/iteratee.mjs";
3
3
  import { identity } from "../function/identity.mjs";
4
4
  import { keysIn } from "./keysIn.mjs";
5
5
  import { getSymbolsIn } from "../_internal/getSymbolsIn.mjs";
@@ -1,7 +1,7 @@
1
1
  const require_range = require("../../math/range.js");
2
2
  const require_isArrayLike = require("../predicate/isArrayLike.js");
3
- const require_iteratee = require("../util/iteratee.js");
4
3
  const require_isSymbol = require("../predicate/isSymbol.js");
4
+ const require_iteratee = require("../util/iteratee.js");
5
5
  const require_identity = require("../function/identity.js");
6
6
  const require_keysIn = require("./keysIn.js");
7
7
  const require_getSymbolsIn = require("../_internal/getSymbolsIn.js");
@@ -1,7 +1,7 @@
1
1
  import { range } from "../../math/range.mjs";
2
2
  import { isArrayLike } from "../predicate/isArrayLike.mjs";
3
- import { iteratee } from "../util/iteratee.mjs";
4
3
  import { isSymbol } from "../predicate/isSymbol.mjs";
4
+ import { iteratee } from "../util/iteratee.mjs";
5
5
  import { identity } from "../function/identity.mjs";
6
6
  import { keysIn } from "./keysIn.mjs";
7
7
  import { getSymbolsIn } from "../_internal/getSymbolsIn.mjs";
@@ -1,3 +1,4 @@
1
+ const require_isSymbol = require("../predicate/isSymbol.js");
1
2
  //#region src/compat/util/toString.ts
2
3
  /**
3
4
  * Converts `value` to a string.
@@ -22,7 +23,8 @@ function toString(value) {
22
23
  function baseToString(value) {
23
24
  if (typeof value === "string") return value;
24
25
  if (Array.isArray(value)) return value.map(baseToString).join(",");
25
- const result = String(value);
26
+ if (require_isSymbol.isSymbol(value)) return value.toString();
27
+ const result = value + "";
26
28
  if (result === "0" && Object.is(Number(value), -0)) return "-0";
27
29
  return result;
28
30
  }
@@ -1,3 +1,4 @@
1
+ import { isSymbol } from "../predicate/isSymbol.mjs";
1
2
  //#region src/compat/util/toString.ts
2
3
  /**
3
4
  * Converts `value` to a string.
@@ -22,7 +23,8 @@ function toString(value) {
22
23
  function baseToString(value) {
23
24
  if (typeof value === "string") return value;
24
25
  if (Array.isArray(value)) return value.map(baseToString).join(",");
25
- const result = String(value);
26
+ if (isSymbol(value)) return value.toString();
27
+ const result = value + "";
26
28
  if (result === "0" && Object.is(Number(value), -0)) return "-0";
27
29
  return result;
28
30
  }
@@ -0,0 +1,213 @@
1
+ //#region src/fp/flowAsync.d.ts
2
+ /**
3
+ * Creates a reusable async function from a single function.
4
+ *
5
+ * @param fn1 - The first function, which may take any number of arguments.
6
+ * @returns An async function with the same parameters as `fn1` that resolves to its awaited result.
7
+ */
8
+ declare function flowAsync<A extends any[], R1>(fn1: (...args: A) => R1): (...args: A) => Promise<Awaited<R1>>;
9
+ /**
10
+ * Composes `fn1` and `fn2` left-to-right into a single reusable async function, awaiting each result.
11
+ *
12
+ * @param fn1 - The first function, which may take any number of arguments.
13
+ * @param fn2 - Applied to the awaited result of `fn1`.
14
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn2`.
15
+ */
16
+ declare function flowAsync<A extends any[], R1, R2>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2): (...args: A) => Promise<Awaited<R2>>;
17
+ /**
18
+ * Composes `fn1` through `fn3` left-to-right into a single reusable async function, awaiting each result.
19
+ *
20
+ * @param fn1 - The first function, which may take any number of arguments.
21
+ * @param fn2 - Applied to the awaited result of `fn1`.
22
+ * @param fn3 - Applied to the awaited result of `fn2`.
23
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn3`.
24
+ */
25
+ declare function flowAsync<A extends any[], R1, R2, R3>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3): (...args: A) => Promise<Awaited<R3>>;
26
+ /**
27
+ * Composes `fn1` through `fn4` left-to-right into a single reusable async function, awaiting each result.
28
+ *
29
+ * @param fn1 - The first function, which may take any number of arguments.
30
+ * @param fn2 - Applied to the awaited result of `fn1`.
31
+ * @param fn3 - Applied to the awaited result of `fn2`.
32
+ * @param fn4 - Applied to the awaited result of `fn3`.
33
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn4`.
34
+ */
35
+ declare function flowAsync<A extends any[], R1, R2, R3, R4>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4): (...args: A) => Promise<Awaited<R4>>;
36
+ /**
37
+ * Composes `fn1` through `fn5` left-to-right into a single reusable async function, awaiting each result.
38
+ *
39
+ * @param fn1 - The first function, which may take any number of arguments.
40
+ * @param fn2 - Applied to the awaited result of `fn1`.
41
+ * @param fn3 - Applied to the awaited result of `fn2`.
42
+ * @param fn4 - Applied to the awaited result of `fn3`.
43
+ * @param fn5 - Applied to the awaited result of `fn4`.
44
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn5`.
45
+ */
46
+ declare function flowAsync<A extends any[], R1, R2, R3, R4, R5>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4, fn5: (input: Awaited<R4>) => R5): (...args: A) => Promise<Awaited<R5>>;
47
+ /**
48
+ * Composes `fn1` through `fn6` left-to-right into a single reusable async function, awaiting each result.
49
+ *
50
+ * @param fn1 - The first function, which may take any number of arguments.
51
+ * @param fn2 - Applied to the awaited result of `fn1`.
52
+ * @param fn3 - Applied to the awaited result of `fn2`.
53
+ * @param fn4 - Applied to the awaited result of `fn3`.
54
+ * @param fn5 - Applied to the awaited result of `fn4`.
55
+ * @param fn6 - Applied to the awaited result of `fn5`.
56
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn6`.
57
+ */
58
+ declare function flowAsync<A extends any[], R1, R2, R3, R4, R5, R6>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4, fn5: (input: Awaited<R4>) => R5, fn6: (input: Awaited<R5>) => R6): (...args: A) => Promise<Awaited<R6>>;
59
+ /**
60
+ * Composes `fn1` through `fn7` left-to-right into a single reusable async function, awaiting each result.
61
+ *
62
+ * @param fn1 - The first function, which may take any number of arguments.
63
+ * @param fn2 - Applied to the awaited result of `fn1`.
64
+ * @param fn3 - Applied to the awaited result of `fn2`.
65
+ * @param fn4 - Applied to the awaited result of `fn3`.
66
+ * @param fn5 - Applied to the awaited result of `fn4`.
67
+ * @param fn6 - Applied to the awaited result of `fn5`.
68
+ * @param fn7 - Applied to the awaited result of `fn6`.
69
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn7`.
70
+ */
71
+ declare function flowAsync<A extends any[], R1, R2, R3, R4, R5, R6, R7>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4, fn5: (input: Awaited<R4>) => R5, fn6: (input: Awaited<R5>) => R6, fn7: (input: Awaited<R6>) => R7): (...args: A) => Promise<Awaited<R7>>;
72
+ /**
73
+ * Composes `fn1` through `fn8` left-to-right into a single reusable async function, awaiting each result.
74
+ *
75
+ * @param fn1 - The first function, which may take any number of arguments.
76
+ * @param fn2 - Applied to the awaited result of `fn1`.
77
+ * @param fn3 - Applied to the awaited result of `fn2`.
78
+ * @param fn4 - Applied to the awaited result of `fn3`.
79
+ * @param fn5 - Applied to the awaited result of `fn4`.
80
+ * @param fn6 - Applied to the awaited result of `fn5`.
81
+ * @param fn7 - Applied to the awaited result of `fn6`.
82
+ * @param fn8 - Applied to the awaited result of `fn7`.
83
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn8`.
84
+ */
85
+ declare function flowAsync<A extends any[], R1, R2, R3, R4, R5, R6, R7, R8>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4, fn5: (input: Awaited<R4>) => R5, fn6: (input: Awaited<R5>) => R6, fn7: (input: Awaited<R6>) => R7, fn8: (input: Awaited<R7>) => R8): (...args: A) => Promise<Awaited<R8>>;
86
+ /**
87
+ * Composes `fn1` through `fn9` left-to-right into a single reusable async function, awaiting each result.
88
+ *
89
+ * @param fn1 - The first function, which may take any number of arguments.
90
+ * @param fn2 - Applied to the awaited result of `fn1`.
91
+ * @param fn3 - Applied to the awaited result of `fn2`.
92
+ * @param fn4 - Applied to the awaited result of `fn3`.
93
+ * @param fn5 - Applied to the awaited result of `fn4`.
94
+ * @param fn6 - Applied to the awaited result of `fn5`.
95
+ * @param fn7 - Applied to the awaited result of `fn6`.
96
+ * @param fn8 - Applied to the awaited result of `fn7`.
97
+ * @param fn9 - Applied to the awaited result of `fn8`.
98
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn9`.
99
+ */
100
+ declare function flowAsync<A extends any[], R1, R2, R3, R4, R5, R6, R7, R8, R9>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4, fn5: (input: Awaited<R4>) => R5, fn6: (input: Awaited<R5>) => R6, fn7: (input: Awaited<R6>) => R7, fn8: (input: Awaited<R7>) => R8, fn9: (input: Awaited<R8>) => R9): (...args: A) => Promise<Awaited<R9>>;
101
+ /**
102
+ * Composes `fn1` through `fn10` left-to-right into a single reusable async function, awaiting each result.
103
+ *
104
+ * @param fn1 - The first function, which may take any number of arguments.
105
+ * @param fn2 - Applied to the awaited result of `fn1`.
106
+ * @param fn3 - Applied to the awaited result of `fn2`.
107
+ * @param fn4 - Applied to the awaited result of `fn3`.
108
+ * @param fn5 - Applied to the awaited result of `fn4`.
109
+ * @param fn6 - Applied to the awaited result of `fn5`.
110
+ * @param fn7 - Applied to the awaited result of `fn6`.
111
+ * @param fn8 - Applied to the awaited result of `fn7`.
112
+ * @param fn9 - Applied to the awaited result of `fn8`.
113
+ * @param fn10 - Applied to the awaited result of `fn9`.
114
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn10`.
115
+ */
116
+ declare function flowAsync<A extends any[], R1, R2, R3, R4, R5, R6, R7, R8, R9, R10>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4, fn5: (input: Awaited<R4>) => R5, fn6: (input: Awaited<R5>) => R6, fn7: (input: Awaited<R6>) => R7, fn8: (input: Awaited<R7>) => R8, fn9: (input: Awaited<R8>) => R9, fn10: (input: Awaited<R9>) => R10): (...args: A) => Promise<Awaited<R10>>;
117
+ /**
118
+ * Composes `fn1` through `fn11` left-to-right into a single reusable async function, awaiting each result.
119
+ *
120
+ * @param fn1 - The first function, which may take any number of arguments.
121
+ * @param fn2 - Applied to the awaited result of `fn1`.
122
+ * @param fn3 - Applied to the awaited result of `fn2`.
123
+ * @param fn4 - Applied to the awaited result of `fn3`.
124
+ * @param fn5 - Applied to the awaited result of `fn4`.
125
+ * @param fn6 - Applied to the awaited result of `fn5`.
126
+ * @param fn7 - Applied to the awaited result of `fn6`.
127
+ * @param fn8 - Applied to the awaited result of `fn7`.
128
+ * @param fn9 - Applied to the awaited result of `fn8`.
129
+ * @param fn10 - Applied to the awaited result of `fn9`.
130
+ * @param fn11 - Applied to the awaited result of `fn10`.
131
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn11`.
132
+ */
133
+ declare function flowAsync<A extends any[], R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4, fn5: (input: Awaited<R4>) => R5, fn6: (input: Awaited<R5>) => R6, fn7: (input: Awaited<R6>) => R7, fn8: (input: Awaited<R7>) => R8, fn9: (input: Awaited<R8>) => R9, fn10: (input: Awaited<R9>) => R10, fn11: (input: Awaited<R10>) => R11): (...args: A) => Promise<Awaited<R11>>;
134
+ /**
135
+ * Composes `fn1` through `fn12` left-to-right into a single reusable async function, awaiting each result.
136
+ *
137
+ * @param fn1 - The first function, which may take any number of arguments.
138
+ * @param fn2 - Applied to the awaited result of `fn1`.
139
+ * @param fn3 - Applied to the awaited result of `fn2`.
140
+ * @param fn4 - Applied to the awaited result of `fn3`.
141
+ * @param fn5 - Applied to the awaited result of `fn4`.
142
+ * @param fn6 - Applied to the awaited result of `fn5`.
143
+ * @param fn7 - Applied to the awaited result of `fn6`.
144
+ * @param fn8 - Applied to the awaited result of `fn7`.
145
+ * @param fn9 - Applied to the awaited result of `fn8`.
146
+ * @param fn10 - Applied to the awaited result of `fn9`.
147
+ * @param fn11 - Applied to the awaited result of `fn10`.
148
+ * @param fn12 - Applied to the awaited result of `fn11`.
149
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn12`.
150
+ */
151
+ declare function flowAsync<A extends any[], R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4, fn5: (input: Awaited<R4>) => R5, fn6: (input: Awaited<R5>) => R6, fn7: (input: Awaited<R6>) => R7, fn8: (input: Awaited<R7>) => R8, fn9: (input: Awaited<R8>) => R9, fn10: (input: Awaited<R9>) => R10, fn11: (input: Awaited<R10>) => R11, fn12: (input: Awaited<R11>) => R12): (...args: A) => Promise<Awaited<R12>>;
152
+ /**
153
+ * Composes `fn1` through `fn13` left-to-right into a single reusable async function, awaiting each result.
154
+ *
155
+ * @param fn1 - The first function, which may take any number of arguments.
156
+ * @param fn2 - Applied to the awaited result of `fn1`.
157
+ * @param fn3 - Applied to the awaited result of `fn2`.
158
+ * @param fn4 - Applied to the awaited result of `fn3`.
159
+ * @param fn5 - Applied to the awaited result of `fn4`.
160
+ * @param fn6 - Applied to the awaited result of `fn5`.
161
+ * @param fn7 - Applied to the awaited result of `fn6`.
162
+ * @param fn8 - Applied to the awaited result of `fn7`.
163
+ * @param fn9 - Applied to the awaited result of `fn8`.
164
+ * @param fn10 - Applied to the awaited result of `fn9`.
165
+ * @param fn11 - Applied to the awaited result of `fn10`.
166
+ * @param fn12 - Applied to the awaited result of `fn11`.
167
+ * @param fn13 - Applied to the awaited result of `fn12`.
168
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn13`.
169
+ */
170
+ declare function flowAsync<A extends any[], R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, R13>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4, fn5: (input: Awaited<R4>) => R5, fn6: (input: Awaited<R5>) => R6, fn7: (input: Awaited<R6>) => R7, fn8: (input: Awaited<R7>) => R8, fn9: (input: Awaited<R8>) => R9, fn10: (input: Awaited<R9>) => R10, fn11: (input: Awaited<R10>) => R11, fn12: (input: Awaited<R11>) => R12, fn13: (input: Awaited<R12>) => R13): (...args: A) => Promise<Awaited<R13>>;
171
+ /**
172
+ * Composes `fn1` through `fn14` left-to-right into a single reusable async function, awaiting each result.
173
+ *
174
+ * @param fn1 - The first function, which may take any number of arguments.
175
+ * @param fn2 - Applied to the awaited result of `fn1`.
176
+ * @param fn3 - Applied to the awaited result of `fn2`.
177
+ * @param fn4 - Applied to the awaited result of `fn3`.
178
+ * @param fn5 - Applied to the awaited result of `fn4`.
179
+ * @param fn6 - Applied to the awaited result of `fn5`.
180
+ * @param fn7 - Applied to the awaited result of `fn6`.
181
+ * @param fn8 - Applied to the awaited result of `fn7`.
182
+ * @param fn9 - Applied to the awaited result of `fn8`.
183
+ * @param fn10 - Applied to the awaited result of `fn9`.
184
+ * @param fn11 - Applied to the awaited result of `fn10`.
185
+ * @param fn12 - Applied to the awaited result of `fn11`.
186
+ * @param fn13 - Applied to the awaited result of `fn12`.
187
+ * @param fn14 - Applied to the awaited result of `fn13`.
188
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn14`.
189
+ */
190
+ declare function flowAsync<A extends any[], R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, R13, R14>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4, fn5: (input: Awaited<R4>) => R5, fn6: (input: Awaited<R5>) => R6, fn7: (input: Awaited<R6>) => R7, fn8: (input: Awaited<R7>) => R8, fn9: (input: Awaited<R8>) => R9, fn10: (input: Awaited<R9>) => R10, fn11: (input: Awaited<R10>) => R11, fn12: (input: Awaited<R11>) => R12, fn13: (input: Awaited<R12>) => R13, fn14: (input: Awaited<R13>) => R14): (...args: A) => Promise<Awaited<R14>>;
191
+ /**
192
+ * Composes `fn1` through `fn15` left-to-right into a single reusable async function, awaiting each result.
193
+ *
194
+ * @param fn1 - The first function, which may take any number of arguments.
195
+ * @param fn2 - Applied to the awaited result of `fn1`.
196
+ * @param fn3 - Applied to the awaited result of `fn2`.
197
+ * @param fn4 - Applied to the awaited result of `fn3`.
198
+ * @param fn5 - Applied to the awaited result of `fn4`.
199
+ * @param fn6 - Applied to the awaited result of `fn5`.
200
+ * @param fn7 - Applied to the awaited result of `fn6`.
201
+ * @param fn8 - Applied to the awaited result of `fn7`.
202
+ * @param fn9 - Applied to the awaited result of `fn8`.
203
+ * @param fn10 - Applied to the awaited result of `fn9`.
204
+ * @param fn11 - Applied to the awaited result of `fn10`.
205
+ * @param fn12 - Applied to the awaited result of `fn11`.
206
+ * @param fn13 - Applied to the awaited result of `fn12`.
207
+ * @param fn14 - Applied to the awaited result of `fn13`.
208
+ * @param fn15 - Applied to the awaited result of `fn14`.
209
+ * @returns An async function with the same parameters as `fn1` that resolves to the awaited result of `fn15`.
210
+ */
211
+ declare function flowAsync<A extends any[], R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, R13, R14, R15>(fn1: (...args: A) => R1, fn2: (input: Awaited<R1>) => R2, fn3: (input: Awaited<R2>) => R3, fn4: (input: Awaited<R3>) => R4, fn5: (input: Awaited<R4>) => R5, fn6: (input: Awaited<R5>) => R6, fn7: (input: Awaited<R6>) => R7, fn8: (input: Awaited<R7>) => R8, fn9: (input: Awaited<R8>) => R9, fn10: (input: Awaited<R9>) => R10, fn11: (input: Awaited<R10>) => R11, fn12: (input: Awaited<R11>) => R12, fn13: (input: Awaited<R12>) => R13, fn14: (input: Awaited<R13>) => R14, fn15: (input: Awaited<R14>) => R15): (...args: A) => Promise<Awaited<R15>>;
212
+ //#endregion
213
+ export { flowAsync };