@entelligentsia/forgecli 0.3.0 → 0.7.6

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 (3740) hide show
  1. package/CHANGELOG.md +476 -6
  2. package/README.md +77 -6
  3. package/dist/bin/argv.d.ts +13 -2
  4. package/dist/bin/argv.js +27 -0
  5. package/dist/bin/argv.js.map +1 -1
  6. package/dist/bin/forge.js +36 -2
  7. package/dist/bin/forge.js.map +1 -1
  8. package/dist/extensions/forgecli/approve.d.ts +24 -0
  9. package/dist/extensions/forgecli/approve.js +202 -0
  10. package/dist/extensions/forgecli/approve.js.map +1 -0
  11. package/dist/extensions/forgecli/ask-user-tool.d.ts +1 -1
  12. package/dist/extensions/forgecli/ask-user-tool.js +17 -3
  13. package/dist/extensions/forgecli/ask-user-tool.js.map +1 -1
  14. package/dist/extensions/forgecli/audience-gate.d.ts +30 -0
  15. package/dist/extensions/forgecli/audience-gate.js +49 -0
  16. package/dist/extensions/forgecli/audience-gate.js.map +1 -0
  17. package/dist/extensions/forgecli/collate.d.ts +24 -0
  18. package/dist/extensions/forgecli/collate.js +199 -0
  19. package/dist/extensions/forgecli/collate.js.map +1 -0
  20. package/dist/extensions/forgecli/commit.d.ts +24 -0
  21. package/dist/extensions/forgecli/commit.js +202 -0
  22. package/dist/extensions/forgecli/commit.js.map +1 -0
  23. package/dist/extensions/forgecli/enhance.d.ts +29 -0
  24. package/dist/extensions/forgecli/enhance.js +264 -0
  25. package/dist/extensions/forgecli/enhance.js.map +1 -0
  26. package/dist/extensions/forgecli/fix-bug.d.ts +75 -0
  27. package/dist/extensions/forgecli/fix-bug.js +1133 -0
  28. package/dist/extensions/forgecli/fix-bug.js.map +1 -0
  29. package/dist/extensions/forgecli/forge-commands.d.ts +2 -1
  30. package/dist/extensions/forgecli/forge-commands.js +41 -20
  31. package/dist/extensions/forgecli/forge-commands.js.map +1 -1
  32. package/dist/extensions/forgecli/forge-header.d.ts +12 -0
  33. package/dist/extensions/forgecli/forge-header.js +108 -0
  34. package/dist/extensions/forgecli/forge-header.js.map +1 -0
  35. package/dist/extensions/forgecli/forge-init.d.ts +3 -3
  36. package/dist/extensions/forgecli/forge-init.js +196 -41
  37. package/dist/extensions/forgecli/forge-init.js.map +1 -1
  38. package/dist/extensions/forgecli/forge-subagent.d.ts +110 -0
  39. package/dist/extensions/forgecli/forge-subagent.js +246 -0
  40. package/dist/extensions/forgecli/forge-subagent.js.map +1 -0
  41. package/dist/extensions/forgecli/forge-tools.d.ts +1 -1
  42. package/dist/extensions/forgecli/forge-tools.js +191 -17
  43. package/dist/extensions/forgecli/forge-tools.js.map +1 -1
  44. package/dist/extensions/forgecli/forge-update-command.d.ts +1 -1
  45. package/dist/extensions/forgecli/health-check.d.ts +1 -1
  46. package/dist/extensions/forgecli/health-check.js +2 -2
  47. package/dist/extensions/forgecli/health-check.js.map +1 -1
  48. package/dist/extensions/forgecli/hook-dispatcher.d.ts +53 -1
  49. package/dist/extensions/forgecli/hook-dispatcher.js +64 -2
  50. package/dist/extensions/forgecli/hook-dispatcher.js.map +1 -1
  51. package/dist/extensions/forgecli/hooks/post-init-hook.d.ts +15 -0
  52. package/dist/extensions/forgecli/hooks/post-init-hook.js +127 -0
  53. package/dist/extensions/forgecli/hooks/post-init-hook.js.map +1 -0
  54. package/dist/extensions/forgecli/hooks/post-sprint-hook.d.ts +37 -0
  55. package/dist/extensions/forgecli/hooks/post-sprint-hook.js +166 -0
  56. package/dist/extensions/forgecli/hooks/post-sprint-hook.js.map +1 -0
  57. package/dist/extensions/forgecli/hooks/two-layer-guard.d.ts +28 -0
  58. package/dist/extensions/forgecli/hooks/two-layer-guard.js +57 -0
  59. package/dist/extensions/forgecli/hooks/two-layer-guard.js.map +1 -0
  60. package/dist/extensions/forgecli/implement.d.ts +24 -0
  61. package/dist/extensions/forgecli/implement.js +217 -0
  62. package/dist/extensions/forgecli/implement.js.map +1 -0
  63. package/dist/extensions/forgecli/index.d.ts +1 -1
  64. package/dist/extensions/forgecli/index.js +177 -1
  65. package/dist/extensions/forgecli/index.js.map +1 -1
  66. package/dist/extensions/forgecli/kickoff.d.ts +10 -0
  67. package/dist/extensions/forgecli/kickoff.js +24 -0
  68. package/dist/extensions/forgecli/kickoff.js.map +1 -0
  69. package/dist/extensions/forgecli/loaders/persona-skill-loader.d.ts +45 -0
  70. package/dist/extensions/forgecli/loaders/persona-skill-loader.js +227 -0
  71. package/dist/extensions/forgecli/loaders/persona-skill-loader.js.map +1 -0
  72. package/dist/extensions/forgecli/loaders/template-render.d.ts +20 -0
  73. package/dist/extensions/forgecli/loaders/template-render.js +85 -0
  74. package/dist/extensions/forgecli/loaders/template-render.js.map +1 -0
  75. package/dist/extensions/forgecli/loaders/workflow-loader.d.ts +41 -0
  76. package/dist/extensions/forgecli/loaders/workflow-loader.js +164 -0
  77. package/dist/extensions/forgecli/loaders/workflow-loader.js.map +1 -0
  78. package/dist/extensions/forgecli/plan.d.ts +24 -0
  79. package/dist/extensions/forgecli/plan.js +212 -0
  80. package/dist/extensions/forgecli/plan.js.map +1 -0
  81. package/dist/extensions/forgecli/project-orientation.d.ts +1 -0
  82. package/dist/extensions/forgecli/project-orientation.js +83 -0
  83. package/dist/extensions/forgecli/project-orientation.js.map +1 -0
  84. package/dist/extensions/forgecli/read-command.d.ts +2 -0
  85. package/dist/extensions/forgecli/read-command.js +100 -0
  86. package/dist/extensions/forgecli/read-command.js.map +1 -0
  87. package/dist/extensions/forgecli/regenerate.d.ts +2 -0
  88. package/dist/extensions/forgecli/regenerate.js +169 -0
  89. package/dist/extensions/forgecli/regenerate.js.map +1 -0
  90. package/dist/extensions/forgecli/review-code.d.ts +24 -0
  91. package/dist/extensions/forgecli/review-code.js +202 -0
  92. package/dist/extensions/forgecli/review-code.js.map +1 -0
  93. package/dist/extensions/forgecli/review-plan.d.ts +24 -0
  94. package/dist/extensions/forgecli/review-plan.js +203 -0
  95. package/dist/extensions/forgecli/review-plan.js.map +1 -0
  96. package/dist/extensions/forgecli/review-server.d.ts +10 -0
  97. package/dist/extensions/forgecli/review-server.js +894 -0
  98. package/dist/extensions/forgecli/review-server.js.map +1 -0
  99. package/dist/extensions/forgecli/run-sprint.d.ts +23 -0
  100. package/dist/extensions/forgecli/run-sprint.js +561 -0
  101. package/dist/extensions/forgecli/run-sprint.js.map +1 -0
  102. package/dist/extensions/forgecli/run-task.d.ts +133 -0
  103. package/dist/extensions/forgecli/run-task.js +892 -0
  104. package/dist/extensions/forgecli/run-task.js.map +1 -0
  105. package/dist/extensions/forgecli/session-registry.d.ts +81 -0
  106. package/dist/extensions/forgecli/session-registry.js +224 -0
  107. package/dist/extensions/forgecli/session-registry.js.map +1 -0
  108. package/dist/extensions/forgecli/sprint-intake.d.ts +10 -0
  109. package/dist/extensions/forgecli/sprint-intake.js +91 -0
  110. package/dist/extensions/forgecli/sprint-intake.js.map +1 -0
  111. package/dist/extensions/forgecli/sprint-plan.d.ts +14 -0
  112. package/dist/extensions/forgecli/sprint-plan.js +122 -0
  113. package/dist/extensions/forgecli/sprint-plan.js.map +1 -0
  114. package/dist/extensions/forgecli/store-resolver.d.ts +38 -0
  115. package/dist/extensions/forgecli/store-resolver.js +232 -0
  116. package/dist/extensions/forgecli/store-resolver.js.map +1 -0
  117. package/dist/extensions/forgecli/subagent/agents.d.ts +1 -1
  118. package/dist/extensions/forgecli/subagent/agents.js +2 -2
  119. package/dist/extensions/forgecli/subagent/caller-context.d.ts +26 -0
  120. package/dist/extensions/forgecli/subagent/caller-context.js +67 -0
  121. package/dist/extensions/forgecli/subagent/caller-context.js.map +1 -0
  122. package/dist/extensions/forgecli/subagent/index.d.ts +2 -2
  123. package/dist/extensions/forgecli/subagent/index.js +4 -4
  124. package/dist/extensions/forgecli/test-orchestrate.d.ts +2 -0
  125. package/dist/extensions/forgecli/test-orchestrate.js +181 -0
  126. package/dist/extensions/forgecli/test-orchestrate.js.map +1 -0
  127. package/dist/extensions/forgecli/thread-switcher.d.ts +2 -0
  128. package/dist/extensions/forgecli/thread-switcher.js +476 -0
  129. package/dist/extensions/forgecli/thread-switcher.js.map +1 -0
  130. package/dist/extensions/forgecli/usage-hook.d.ts +49 -0
  131. package/dist/extensions/forgecli/usage-hook.js +123 -0
  132. package/dist/extensions/forgecli/usage-hook.js.map +1 -0
  133. package/dist/extensions/forgecli/validate.d.ts +24 -0
  134. package/dist/extensions/forgecli/validate.js +202 -0
  135. package/dist/extensions/forgecli/validate.js.map +1 -0
  136. package/dist/extensions/forgecli/wf-engine/engine.d.ts +23 -0
  137. package/dist/extensions/forgecli/wf-engine/engine.js +384 -0
  138. package/dist/extensions/forgecli/wf-engine/engine.js.map +1 -0
  139. package/dist/extensions/forgecli/wf-engine/event-parser.d.ts +6 -0
  140. package/dist/extensions/forgecli/wf-engine/event-parser.js +29 -0
  141. package/dist/extensions/forgecli/wf-engine/event-parser.js.map +1 -0
  142. package/dist/extensions/forgecli/wf-engine/id-gen.d.ts +6 -0
  143. package/dist/extensions/forgecli/wf-engine/id-gen.js +17 -0
  144. package/dist/extensions/forgecli/wf-engine/id-gen.js.map +1 -0
  145. package/dist/extensions/forgecli/wf-engine/loader.d.ts +2 -0
  146. package/dist/extensions/forgecli/wf-engine/loader.js +100 -0
  147. package/dist/extensions/forgecli/wf-engine/loader.js.map +1 -0
  148. package/dist/extensions/forgecli/wf-engine/predicate.d.ts +7 -0
  149. package/dist/extensions/forgecli/wf-engine/predicate.js +36 -0
  150. package/dist/extensions/forgecli/wf-engine/predicate.js.map +1 -0
  151. package/dist/extensions/forgecli/wf-engine/prompt-compiler.d.ts +15 -0
  152. package/dist/extensions/forgecli/wf-engine/prompt-compiler.js +23 -0
  153. package/dist/extensions/forgecli/wf-engine/prompt-compiler.js.map +1 -0
  154. package/dist/extensions/forgecli/wf-engine/register.d.ts +9 -0
  155. package/dist/extensions/forgecli/wf-engine/register.js +59 -0
  156. package/dist/extensions/forgecli/wf-engine/register.js.map +1 -0
  157. package/dist/extensions/forgecli/wf-engine/remit-check.d.ts +6 -0
  158. package/dist/extensions/forgecli/wf-engine/remit-check.js +42 -0
  159. package/dist/extensions/forgecli/wf-engine/remit-check.js.map +1 -0
  160. package/dist/extensions/forgecli/wf-engine/state-store.d.ts +13 -0
  161. package/dist/extensions/forgecli/wf-engine/state-store.js +43 -0
  162. package/dist/extensions/forgecli/wf-engine/state-store.js.map +1 -0
  163. package/dist/extensions/forgecli/wf-engine/types.d.ts +66 -0
  164. package/dist/extensions/forgecli/wf-engine/types.js.map +1 -0
  165. package/dist/extensions/forgecli/wf-engine/worker.d.ts +11 -0
  166. package/dist/extensions/forgecli/wf-engine/worker.js +50 -0
  167. package/dist/extensions/forgecli/wf-engine/worker.js.map +1 -0
  168. package/dist/forge-payload/.base-pack/workflows/_fragments/context-injection.md +10 -4
  169. package/dist/forge-payload/.base-pack/workflows/_fragments/event-emission-schema.md +71 -27
  170. package/dist/forge-payload/.base-pack/workflows/_fragments/finalize.md +9 -19
  171. package/dist/forge-payload/.base-pack/workflows/_fragments/friction-emit.md +73 -0
  172. package/dist/forge-payload/.base-pack/workflows/_fragments/store-cli-verbs.md +23 -0
  173. package/dist/forge-payload/.base-pack/workflows/architect_approve.md +27 -5
  174. package/dist/forge-payload/.base-pack/workflows/architect_review_sprint_completion.md +10 -3
  175. package/dist/forge-payload/.base-pack/workflows/architect_sprint_intake.md +21 -14
  176. package/dist/forge-payload/.base-pack/workflows/architect_sprint_plan.md +9 -11
  177. package/dist/forge-payload/.base-pack/workflows/collator_agent.md +20 -2
  178. package/dist/forge-payload/.base-pack/workflows/commit_task.md +22 -4
  179. package/dist/forge-payload/.base-pack/workflows/enhance.md +274 -0
  180. package/dist/forge-payload/.base-pack/workflows/fix_bug.md +30 -3
  181. package/dist/forge-payload/.base-pack/workflows/implement_plan.md +33 -5
  182. package/dist/forge-payload/.base-pack/workflows/orchestrate_task.md +71 -14
  183. package/dist/forge-payload/.base-pack/workflows/plan_task.md +29 -4
  184. package/dist/forge-payload/.base-pack/workflows/review_code.md +18 -5
  185. package/dist/forge-payload/.base-pack/workflows/review_plan.md +23 -5
  186. package/dist/forge-payload/.base-pack/workflows/run_sprint.md +27 -1
  187. package/dist/forge-payload/.base-pack/workflows/sprint_retrospective.md +2 -3
  188. package/dist/forge-payload/.base-pack/workflows/update_implementation.md +21 -4
  189. package/dist/forge-payload/.base-pack/workflows/update_plan.md +20 -3
  190. package/dist/forge-payload/.base-pack/workflows/validate_task.md +25 -4
  191. package/dist/forge-payload/.claude-plugin/plugin.json +10 -4
  192. package/dist/forge-payload/.schemas/bug.schema.json +4 -2
  193. package/dist/forge-payload/.schemas/event-sidecar.schema.json +1 -1
  194. package/dist/forge-payload/.schemas/event.schema.json +140 -6
  195. package/dist/forge-payload/commands/add-pipeline.md +342 -0
  196. package/dist/forge-payload/commands/add-task.md +269 -0
  197. package/dist/forge-payload/commands/ask.md +43 -0
  198. package/dist/forge-payload/commands/calibrate.md +356 -0
  199. package/dist/forge-payload/commands/config.md +202 -0
  200. package/dist/forge-payload/commands/enhance.md +38 -0
  201. package/dist/forge-payload/commands/health.md +225 -0
  202. package/dist/forge-payload/commands/init.md +165 -0
  203. package/dist/forge-payload/commands/materialize.md +119 -0
  204. package/dist/forge-payload/commands/migrate.md +160 -0
  205. package/dist/forge-payload/commands/quiz-agent.md +38 -0
  206. package/dist/forge-payload/commands/regenerate.md +673 -0
  207. package/dist/forge-payload/commands/remove.md +174 -0
  208. package/dist/forge-payload/commands/report-bug.md +191 -0
  209. package/dist/forge-payload/commands/store-query.md +73 -0
  210. package/dist/forge-payload/commands/store-repair.md +187 -0
  211. package/dist/forge-payload/commands/update-tools.md +56 -0
  212. package/dist/forge-payload/commands/update.md +1376 -0
  213. package/dist/forge-payload/tools/backfill-provider.cjs +112 -0
  214. package/dist/forge-payload/tools/collate.cjs +1042 -0
  215. package/dist/forge-payload/tools/friction-emit.cjs +112 -0
  216. package/dist/forge-payload/tools/lib/store-facade.cjs +162 -0
  217. package/dist/forge-payload/tools/lib/store-nlp.cjs +250 -0
  218. package/dist/forge-payload/tools/lib/store-query-exec.cjs +272 -0
  219. package/dist/forge-payload/tools/lib/validate.js +141 -0
  220. package/dist/forge-payload/tools/package.json +3 -0
  221. package/dist/forge-payload/tools/parse-gates.cjs +151 -0
  222. package/dist/forge-payload/tools/preflight-gate.cjs +367 -0
  223. package/dist/forge-payload/tools/prompts/sprint-plan-prompt.md +70 -0
  224. package/dist/forge-payload/tools/read-verdict.cjs +154 -0
  225. package/dist/forge-payload/tools/schemas/task-list.schema.json +53 -0
  226. package/dist/forge-payload/tools/store-cli.cjs +1350 -0
  227. package/dist/forge-payload/tools/store-query.cjs +362 -0
  228. package/dist/forge-payload/tools/validate-store.cjs +597 -0
  229. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  230. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/endpoint/bdd.js +2 -2
  231. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/endpoint/endpointResolver.js +4 -4
  232. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js +38 -39
  233. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/models/BedrockRuntimeServiceException.js +3 -3
  234. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.browser.js +14 -16
  235. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.js +20 -24
  236. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.native.js +2 -2
  237. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.shared.js +9 -10
  238. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/BedrockRuntime.js +1 -1
  239. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/BedrockRuntimeClient.js +6 -6
  240. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  241. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ApplyGuardrailCommand.js +2 -2
  242. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ConverseCommand.js +2 -2
  243. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ConverseStreamCommand.js +2 -2
  244. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/CountTokensCommand.js +2 -2
  245. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/GetAsyncInvokeCommand.js +2 -2
  246. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/InvokeModelCommand.js +2 -2
  247. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/InvokeModelWithBidirectionalStreamCommand.js +2 -2
  248. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/InvokeModelWithResponseStreamCommand.js +2 -2
  249. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ListAsyncInvokesCommand.js +2 -2
  250. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/StartAsyncInvokeCommand.js +2 -2
  251. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/endpoint/bdd.js +1 -1
  252. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/endpoint/endpointResolver.js +1 -1
  253. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/models/BedrockRuntimeServiceException.js +1 -1
  254. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.browser.js +5 -7
  255. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.js +5 -9
  256. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.native.js +1 -1
  257. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.shared.js +3 -4
  258. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeExtensions.js +2 -2
  259. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/BedrockRuntimeClient.d.ts +6 -6
  260. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ApplyGuardrailCommand.d.ts +6 -4
  261. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ConverseCommand.d.ts +6 -4
  262. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ConverseStreamCommand.d.ts +6 -4
  263. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/CountTokensCommand.d.ts +6 -4
  264. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/GetAsyncInvokeCommand.d.ts +6 -4
  265. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/InvokeModelCommand.d.ts +7 -5
  266. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/InvokeModelWithBidirectionalStreamCommand.d.ts +6 -4
  267. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/InvokeModelWithResponseStreamCommand.d.ts +6 -4
  268. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ListAsyncInvokesCommand.d.ts +6 -4
  269. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/StartAsyncInvokeCommand.d.ts +6 -4
  270. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/endpoint/bdd.d.ts +1 -1
  271. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/extensionConfiguration.d.ts +1 -1
  272. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/models/BedrockRuntimeServiceException.d.ts +1 -1
  273. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/models/errors.d.ts +1 -1
  274. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/runtimeConfig.browser.d.ts +1 -1
  275. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/runtimeConfig.d.ts +2 -2
  276. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/runtimeConfig.native.d.ts +2 -2
  277. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/BedrockRuntimeClient.d.ts +12 -18
  278. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ApplyGuardrailCommand.d.ts +6 -4
  279. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ConverseCommand.d.ts +6 -8
  280. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ConverseStreamCommand.d.ts +6 -4
  281. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/CountTokensCommand.d.ts +6 -4
  282. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/GetAsyncInvokeCommand.d.ts +6 -4
  283. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/InvokeModelCommand.d.ts +7 -5
  284. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/InvokeModelWithBidirectionalStreamCommand.d.ts +6 -4
  285. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/InvokeModelWithResponseStreamCommand.d.ts +6 -4
  286. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ListAsyncInvokesCommand.d.ts +6 -4
  287. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/StartAsyncInvokeCommand.d.ts +6 -4
  288. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  289. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  290. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/models/BedrockRuntimeServiceException.d.ts +1 -1
  291. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/models/errors.d.ts +1 -1
  292. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  293. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  294. package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
  295. package/node_modules/@aws-sdk/client-bedrock-runtime/package.json +18 -43
  296. package/node_modules/@aws-sdk/core/dist-cjs/index.js +65 -51
  297. package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -2
  298. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +2 -2
  299. package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +7 -7
  300. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +56 -41
  301. package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +59 -0
  302. package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +1 -1
  303. package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +1 -1
  304. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +1 -1
  305. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +1 -1
  306. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +1 -1
  307. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +1 -1
  308. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +1 -1
  309. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +1 -1
  310. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -2
  311. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +7 -6
  312. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +1 -1
  313. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +1 -1
  314. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +1 -2
  315. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +1 -1
  316. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +1 -2
  317. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +28 -13
  318. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +1 -1
  319. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +2 -3
  320. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +1 -1
  321. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +2 -2
  322. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +2 -3
  323. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +1 -1
  324. package/node_modules/@aws-sdk/core/dist-es/submodules/util/index.js +2 -0
  325. package/node_modules/@aws-sdk/core/dist-es/submodules/util/util-format-url/format-url.js +29 -0
  326. package/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +1 -0
  327. package/node_modules/@aws-sdk/core/dist-types/index.d.ts +1 -0
  328. package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
  329. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
  330. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
  331. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +1 -1
  332. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +4 -0
  333. package/node_modules/@aws-sdk/core/dist-types/submodules/util/index.d.ts +2 -0
  334. package/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +1 -0
  335. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
  336. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
  337. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
  338. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +1 -1
  339. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +6 -0
  340. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/index.d.ts +2 -0
  341. package/node_modules/@aws-sdk/core/package.json +16 -13
  342. package/node_modules/@aws-sdk/core/util.d.ts +7 -0
  343. package/node_modules/@aws-sdk/core/util.js +5 -0
  344. package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +2 -2
  345. package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +1 -1
  346. package/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
  347. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +2 -2
  348. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +2 -2
  349. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +3 -3
  350. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +10 -10
  351. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +7 -5
  352. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +1 -1
  353. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +1 -1
  354. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +1 -1
  355. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +4 -4
  356. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +1 -1
  357. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +1 -1
  358. package/node_modules/@aws-sdk/credential-provider-http/package.json +15 -10
  359. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +9 -10
  360. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +1 -1
  361. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +1 -2
  362. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +1 -1
  363. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +1 -1
  364. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +1 -1
  365. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +1 -1
  366. package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -12
  367. package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +14 -15
  368. package/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +2 -3
  369. package/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +1 -2
  370. package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +1 -1
  371. package/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +1 -1
  372. package/node_modules/@aws-sdk/credential-provider-login/package.json +4 -6
  373. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +7 -8
  374. package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +1 -2
  375. package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +1 -1
  376. package/node_modules/@aws-sdk/credential-provider-node/package.json +9 -10
  377. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +7 -8
  378. package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +1 -1
  379. package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +1 -2
  380. package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +1 -1
  381. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +1 -1
  382. package/node_modules/@aws-sdk/credential-provider-process/package.json +3 -4
  383. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +16 -17
  384. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +1 -2
  385. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +2 -3
  386. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +1 -1
  387. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +1 -1
  388. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +1 -1
  389. package/node_modules/@aws-sdk/credential-provider-sso/package.json +5 -6
  390. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +3 -4
  391. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +1 -34
  392. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +1 -2
  393. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +4 -5
  394. package/node_modules/@aws-sdk/eventstream-handler-node/dist-cjs/index.js +2 -2
  395. package/node_modules/@aws-sdk/eventstream-handler-node/dist-es/EventStreamPayloadHandler.js +1 -1
  396. package/node_modules/@aws-sdk/eventstream-handler-node/dist-types/EventSigningTransformStream.d.ts +1 -1
  397. package/node_modules/@aws-sdk/eventstream-handler-node/dist-types/ts3.4/EventSigningTransformStream.d.ts +1 -1
  398. package/node_modules/@aws-sdk/eventstream-handler-node/package.json +2 -3
  399. package/node_modules/@aws-sdk/middleware-eventstream/dist-cjs/index.js +3 -3
  400. package/node_modules/@aws-sdk/middleware-eventstream/dist-es/eventStreamHandlingMiddleware.js +1 -1
  401. package/node_modules/@aws-sdk/middleware-eventstream/dist-es/eventStreamHeaderMiddleware.js +1 -1
  402. package/node_modules/@aws-sdk/middleware-eventstream/package.json +2 -2
  403. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +2 -2
  404. package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +1 -1
  405. package/node_modules/@aws-sdk/middleware-host-header/package.json +2 -2
  406. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.browser.js +5 -0
  407. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +2 -2
  408. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +1 -1
  409. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +6 -3
  410. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +5 -5
  411. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +1 -1
  412. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +1 -1
  413. package/node_modules/@aws-sdk/middleware-user-agent/package.json +4 -6
  414. package/node_modules/@aws-sdk/middleware-websocket/dist-cjs/index.js +13 -15
  415. package/node_modules/@aws-sdk/middleware-websocket/dist-es/WebSocketFetchHandler.js +5 -5
  416. package/node_modules/@aws-sdk/middleware-websocket/dist-es/WebsocketSignatureV4.js +1 -1
  417. package/node_modules/@aws-sdk/middleware-websocket/dist-es/middlewares/websocketEndpointMiddleware.js +1 -1
  418. package/node_modules/@aws-sdk/middleware-websocket/dist-es/ws-eventstream/EventSigningTransformStream.js +1 -1
  419. package/node_modules/@aws-sdk/middleware-websocket/dist-es/ws-eventstream/EventStreamPayloadHandler.js +1 -1
  420. package/node_modules/@aws-sdk/middleware-websocket/dist-types/WebSocketFetchHandler.d.ts +2 -2
  421. package/node_modules/@aws-sdk/middleware-websocket/dist-types/ts3.4/WebSocketFetchHandler.d.ts +2 -2
  422. package/node_modules/@aws-sdk/middleware-websocket/dist-types/ts3.4/ws-eventstream/EventSigningTransformStream.d.ts +1 -1
  423. package/node_modules/@aws-sdk/middleware-websocket/dist-types/ws-eventstream/EventSigningTransformStream.d.ts +1 -1
  424. package/node_modules/@aws-sdk/middleware-websocket/package.json +5 -10
  425. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +520 -52
  426. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +454 -49
  427. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +399 -49
  428. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +593 -49
  429. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +835 -55
  430. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentity.js +1 -1
  431. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +5 -5
  432. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +1 -1
  433. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -2
  434. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -2
  435. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +1 -1
  436. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +1 -1
  437. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/CognitoIdentityServiceException.js +1 -1
  438. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +4 -6
  439. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +4 -8
  440. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +3 -4
  441. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeExtensions.js +2 -2
  442. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +1 -1
  443. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +5 -5
  444. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +1 -1
  445. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -2
  446. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +1 -1
  447. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +1 -1
  448. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +1 -1
  449. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +4 -6
  450. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +4 -8
  451. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +3 -4
  452. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +2 -2
  453. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js +1 -1
  454. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js +5 -5
  455. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +1 -1
  456. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -2
  457. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +1 -1
  458. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +1 -1
  459. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/SSOServiceException.js +1 -1
  460. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +4 -6
  461. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +4 -8
  462. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +3 -4
  463. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js +2 -2
  464. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +1 -1
  465. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +5 -5
  466. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +1 -1
  467. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -2
  468. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +1 -1
  469. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +1 -1
  470. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +1 -1
  471. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +4 -6
  472. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +4 -8
  473. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +3 -4
  474. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +2 -2
  475. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +1 -1
  476. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +5 -5
  477. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +5 -10
  478. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -2
  479. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -2
  480. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +0 -5
  481. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +1 -1
  482. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +1 -1
  483. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +1 -1
  484. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +4 -6
  485. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +4 -8
  486. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +3 -4
  487. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +2 -2
  488. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +5 -5
  489. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +6 -4
  490. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +6 -4
  491. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/bdd.d.ts +1 -1
  492. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
  493. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
  494. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/errors.d.ts +1 -1
  495. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +4 -4
  496. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +3 -3
  497. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +4 -4
  498. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +5 -5
  499. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +6 -4
  500. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/bdd.d.ts +1 -1
  501. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +1 -1
  502. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +1 -1
  503. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +1 -1
  504. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +4 -4
  505. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +3 -3
  506. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +4 -4
  507. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSOClient.d.ts +5 -5
  508. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +6 -4
  509. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/bdd.d.ts +1 -1
  510. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/extensionConfiguration.d.ts +1 -1
  511. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/SSOServiceException.d.ts +1 -1
  512. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/errors.d.ts +1 -1
  513. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +4 -4
  514. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +3 -3
  515. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +4 -4
  516. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +5 -5
  517. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +6 -4
  518. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/bdd.d.ts +1 -1
  519. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
  520. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
  521. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +1 -1
  522. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +4 -4
  523. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +3 -3
  524. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +4 -4
  525. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +5 -5
  526. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +3 -13
  527. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +6 -4
  528. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +6 -4
  529. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +0 -9
  530. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/bdd.d.ts +1 -1
  531. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +1 -1
  532. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +1 -1
  533. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +1 -1
  534. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +4 -4
  535. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +3 -3
  536. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +4 -4
  537. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +8 -14
  538. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +6 -4
  539. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +6 -4
  540. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/bdd.d.ts +1 -1
  541. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
  542. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
  543. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/errors.d.ts +1 -1
  544. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +4 -4
  545. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +3 -3
  546. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +5 -5
  547. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +8 -14
  548. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +6 -4
  549. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/bdd.d.ts +1 -1
  550. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +1 -1
  551. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +1 -1
  552. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +1 -1
  553. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +4 -4
  554. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +3 -3
  555. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +5 -5
  556. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +8 -14
  557. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +6 -4
  558. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/bdd.d.ts +1 -1
  559. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/extensionConfiguration.d.ts +1 -1
  560. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/SSOServiceException.d.ts +1 -1
  561. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/errors.d.ts +1 -1
  562. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +4 -4
  563. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +3 -3
  564. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +5 -5
  565. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +8 -14
  566. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +6 -4
  567. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/bdd.d.ts +1 -1
  568. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
  569. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
  570. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +1 -1
  571. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +4 -4
  572. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +3 -3
  573. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +5 -5
  574. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +8 -14
  575. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +2 -12
  576. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +6 -4
  577. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +6 -4
  578. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +0 -3
  579. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/bdd.d.ts +1 -1
  580. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +1 -1
  581. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +1 -1
  582. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +1 -1
  583. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +4 -4
  584. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +3 -3
  585. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +5 -5
  586. package/node_modules/@aws-sdk/nested-clients/package.json +13 -34
  587. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +6 -6
  588. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.browser.js +6 -0
  589. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +4 -5
  590. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -2
  591. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +1 -2
  592. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +3 -3
  593. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +1 -1
  594. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +3 -6
  595. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +1 -1
  596. package/node_modules/@aws-sdk/region-config-resolver/package.json +6 -4
  597. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +38 -2
  598. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js +2 -2
  599. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4SignWithCredentials.js +36 -0
  600. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/index.js +3 -2
  601. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4MultiRegion.d.ts +1 -1
  602. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4SignWithCredentials.d.ts +20 -0
  603. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/index.d.ts +3 -5
  604. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4SignWithCredentials.d.ts +21 -0
  605. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +9 -2
  606. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +3 -4
  607. package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +18 -19
  608. package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +1 -1
  609. package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +1 -2
  610. package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +1 -1
  611. package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +1 -1
  612. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +1 -1
  613. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +1 -1
  614. package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +1 -1
  615. package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +1 -1
  616. package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +1 -1
  617. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +1 -1
  618. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +1 -1
  619. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +1 -1
  620. package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +1 -1
  621. package/node_modules/@aws-sdk/token-providers/package.json +4 -5
  622. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +9 -9
  623. package/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +1 -1
  624. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +1 -1
  625. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -1
  626. package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +1 -1
  627. package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -1
  628. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -1
  629. package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +1 -1
  630. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -1
  631. package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -1
  632. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +1 -1
  633. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -1
  634. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -1
  635. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -1
  636. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +1 -1
  637. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -1
  638. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +1 -1
  639. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -1
  640. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +1 -1
  641. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -1
  642. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -1
  643. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -1
  644. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -1
  645. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -1
  646. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -1
  647. package/node_modules/@aws-sdk/util-endpoints/package.json +2 -3
  648. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +1 -34
  649. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.browser.js +4 -0
  650. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +13 -10
  651. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.browser.js +1 -0
  652. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.browser.d.ts +1 -0
  653. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.browser.d.ts +1 -0
  654. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +8 -3
  655. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +2 -2
  656. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +1 -1
  657. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +1 -1
  658. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +1 -1
  659. package/node_modules/@aws-sdk/util-user-agent-node/package.json +3 -4
  660. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +60 -0
  661. package/node_modules/@aws-sdk/xml-builder/package.json +3 -3
  662. package/node_modules/@entelligentsia/pi-agent-core/README.md +488 -0
  663. package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.d.ts +24 -0
  664. package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.d.ts.map +1 -0
  665. package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.js +458 -0
  666. package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.js.map +1 -0
  667. package/node_modules/@entelligentsia/pi-agent-core/dist/agent.d.ts +117 -0
  668. package/node_modules/@entelligentsia/pi-agent-core/dist/agent.d.ts.map +1 -0
  669. package/node_modules/@entelligentsia/pi-agent-core/dist/agent.js +398 -0
  670. package/node_modules/@entelligentsia/pi-agent-core/dist/agent.js.map +1 -0
  671. package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.d.ts +69 -0
  672. package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.d.ts.map +1 -0
  673. package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.js +278 -0
  674. package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.js.map +1 -0
  675. package/node_modules/@entelligentsia/pi-agent-core/dist/types.d.ts +369 -0
  676. package/node_modules/@entelligentsia/pi-agent-core/dist/types.d.ts.map +1 -0
  677. package/node_modules/@entelligentsia/pi-agent-core/dist/types.js.map +1 -0
  678. package/node_modules/@entelligentsia/pi-agent-core/package.json +45 -0
  679. package/node_modules/@entelligentsia/pi-ai/README.md +1313 -0
  680. package/node_modules/@entelligentsia/pi-ai/dist/cli.d.ts.map +1 -0
  681. package/node_modules/@entelligentsia/pi-ai/dist/cli.js +116 -0
  682. package/node_modules/@entelligentsia/pi-ai/dist/cli.js.map +1 -0
  683. package/node_modules/@entelligentsia/pi-ai/dist/models.generated.d.ts +17265 -0
  684. package/node_modules/@entelligentsia/pi-ai/dist/models.generated.d.ts.map +1 -0
  685. package/node_modules/@entelligentsia/pi-ai/dist/models.generated.js +16500 -0
  686. package/node_modules/@entelligentsia/pi-ai/dist/models.generated.js.map +1 -0
  687. package/node_modules/@entelligentsia/pi-ai/dist/utils/oauth/types.js +2 -0
  688. package/node_modules/@entelligentsia/pi-ai/package.json +108 -0
  689. package/node_modules/@entelligentsia/pi-coding-agent/CHANGELOG.md +4166 -0
  690. package/node_modules/@entelligentsia/pi-coding-agent/README.md +652 -0
  691. package/node_modules/@entelligentsia/pi-coding-agent/dist/bun/register-bedrock.d.ts.map +1 -0
  692. package/node_modules/@entelligentsia/pi-coding-agent/dist/bun/register-bedrock.js +4 -0
  693. package/node_modules/@entelligentsia/pi-coding-agent/dist/bun/register-bedrock.js.map +1 -0
  694. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/args.d.ts +53 -0
  695. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/args.d.ts.map +1 -0
  696. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/args.js.map +1 -0
  697. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/config-selector.d.ts.map +1 -0
  698. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/config-selector.js +31 -0
  699. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/config-selector.js.map +1 -0
  700. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/file-processor.d.ts +15 -0
  701. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/file-processor.d.ts.map +1 -0
  702. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/file-processor.js.map +1 -0
  703. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/initial-message.d.ts +18 -0
  704. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/initial-message.d.ts.map +1 -0
  705. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/initial-message.js.map +1 -0
  706. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/list-models.d.ts.map +1 -0
  707. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/list-models.js +98 -0
  708. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/list-models.js.map +1 -0
  709. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/session-picker.d.ts.map +1 -0
  710. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/session-picker.js +35 -0
  711. package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/session-picker.js.map +1 -0
  712. package/node_modules/@entelligentsia/pi-coding-agent/dist/config.d.ts.map +1 -0
  713. package/node_modules/@entelligentsia/pi-coding-agent/dist/config.js +399 -0
  714. package/node_modules/@entelligentsia/pi-coding-agent/dist/config.js.map +1 -0
  715. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session-services.d.ts +86 -0
  716. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session-services.d.ts.map +1 -0
  717. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session-services.js.map +1 -0
  718. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.d.ts +595 -0
  719. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.d.ts.map +1 -0
  720. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.js +2521 -0
  721. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.js.map +1 -0
  722. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.d.ts +141 -0
  723. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.d.ts.map +1 -0
  724. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.js +441 -0
  725. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.js.map +1 -0
  726. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts +88 -0
  727. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts.map +1 -0
  728. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.js +243 -0
  729. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.js.map +1 -0
  730. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.d.ts +121 -0
  731. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.d.ts.map +1 -0
  732. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.js +615 -0
  733. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.js.map +1 -0
  734. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/utils.d.ts +38 -0
  735. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/utils.d.ts.map +1 -0
  736. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/utils.js.map +1 -0
  737. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/defaults.d.ts +3 -0
  738. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/defaults.d.ts.map +1 -0
  739. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/defaults.js.map +1 -0
  740. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/index.d.ts +37 -0
  741. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/index.d.ts.map +1 -0
  742. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/index.js.map +1 -0
  743. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/tool-renderer.d.ts.map +1 -0
  744. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/tool-renderer.js.map +1 -0
  745. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/loader.d.ts.map +1 -0
  746. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/loader.js +498 -0
  747. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/loader.js.map +1 -0
  748. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.d.ts +159 -0
  749. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.d.ts.map +1 -0
  750. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.js +825 -0
  751. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.js.map +1 -0
  752. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/types.d.ts +1187 -0
  753. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/types.d.ts.map +1 -0
  754. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/types.js.map +1 -0
  755. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/wrapper.d.ts +20 -0
  756. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/wrapper.d.ts.map +1 -0
  757. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/wrapper.js.map +1 -0
  758. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.d.ts +353 -0
  759. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.d.ts.map +1 -0
  760. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.js +295 -0
  761. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.js.map +1 -0
  762. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/messages.d.ts +77 -0
  763. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/messages.d.ts.map +1 -0
  764. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/messages.js.map +1 -0
  765. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.d.ts +150 -0
  766. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.d.ts.map +1 -0
  767. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.js +727 -0
  768. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.js.map +1 -0
  769. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.d.ts +110 -0
  770. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.d.ts.map +1 -0
  771. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.js +494 -0
  772. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.js.map +1 -0
  773. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.d.ts +107 -0
  774. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.d.ts.map +1 -0
  775. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.js +282 -0
  776. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.js.map +1 -0
  777. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/session-manager.d.ts +333 -0
  778. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/session-manager.d.ts.map +1 -0
  779. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/session-manager.js.map +1 -0
  780. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/settings-manager.d.ts +261 -0
  781. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/settings-manager.d.ts.map +1 -0
  782. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/settings-manager.js.map +1 -0
  783. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.d.ts +68 -0
  784. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.d.ts.map +1 -0
  785. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.js +335 -0
  786. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.js.map +1 -0
  787. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.d.ts +49 -0
  788. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.d.ts.map +1 -0
  789. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.js +324 -0
  790. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.js.map +1 -0
  791. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.d.ts +35 -0
  792. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.d.ts.map +1 -0
  793. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.js +298 -0
  794. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.js.map +1 -0
  795. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.d.ts +37 -0
  796. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.d.ts.map +1 -0
  797. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.js +304 -0
  798. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.js.map +1 -0
  799. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/index.d.ts +40 -0
  800. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/index.d.ts.map +1 -0
  801. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/index.js.map +1 -0
  802. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.d.ts +37 -0
  803. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.d.ts.map +1 -0
  804. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.js +169 -0
  805. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.js.map +1 -0
  806. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.d.ts +35 -0
  807. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.d.ts.map +1 -0
  808. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.js +289 -0
  809. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.js.map +1 -0
  810. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.d.ts +21 -0
  811. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.d.ts.map +1 -0
  812. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.js +49 -0
  813. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.js.map +1 -0
  814. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts +14 -0
  815. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts.map +1 -0
  816. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/tool-definition-wrapper.js.map +1 -0
  817. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.d.ts +26 -0
  818. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.d.ts.map +1 -0
  819. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.js +213 -0
  820. package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.js.map +1 -0
  821. package/node_modules/@entelligentsia/pi-coding-agent/dist/main.d.ts.map +1 -0
  822. package/node_modules/@entelligentsia/pi-coding-agent/dist/main.js +583 -0
  823. package/node_modules/@entelligentsia/pi-coding-agent/dist/main.js.map +1 -0
  824. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/armin.d.ts +34 -0
  825. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/armin.d.ts.map +1 -0
  826. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/armin.js.map +1 -0
  827. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts +20 -0
  828. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts.map +1 -0
  829. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.js +121 -0
  830. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.js.map +1 -0
  831. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts +34 -0
  832. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts.map +1 -0
  833. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.js +175 -0
  834. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.js.map +1 -0
  835. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts +16 -0
  836. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts.map +1 -0
  837. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js +54 -0
  838. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js.map +1 -0
  839. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts +16 -0
  840. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts.map +1 -0
  841. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js +44 -0
  842. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js.map +1 -0
  843. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts +16 -0
  844. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts.map +1 -0
  845. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js +45 -0
  846. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js.map +1 -0
  847. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts +71 -0
  848. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts.map +1 -0
  849. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.js +481 -0
  850. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.js.map +1 -0
  851. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts +14 -0
  852. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts.map +1 -0
  853. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js.map +1 -0
  854. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts +21 -0
  855. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts.map +1 -0
  856. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.js +70 -0
  857. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.js.map +1 -0
  858. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts +20 -0
  859. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts.map +1 -0
  860. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.js +79 -0
  861. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.js.map +1 -0
  862. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts +23 -0
  863. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts.map +1 -0
  864. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/daxnuts.js.map +1 -0
  865. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts +15 -0
  866. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts.map +1 -0
  867. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js.map +1 -0
  868. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts +5 -0
  869. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts.map +1 -0
  870. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js +40 -0
  871. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js.map +1 -0
  872. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts +20 -0
  873. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts.map +1 -0
  874. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.js +111 -0
  875. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.js.map +1 -0
  876. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts +23 -0
  877. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts.map +1 -0
  878. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.js +61 -0
  879. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.js.map +1 -0
  880. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts +24 -0
  881. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts.map +1 -0
  882. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.js +78 -0
  883. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.js.map +1 -0
  884. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.d.ts +27 -0
  885. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.d.ts.map +1 -0
  886. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.js +201 -0
  887. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.js.map +1 -0
  888. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts +8 -0
  889. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts.map +1 -0
  890. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js +22 -0
  891. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js.map +1 -0
  892. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts +46 -0
  893. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +1 -0
  894. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +160 -0
  895. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.js.map +1 -0
  896. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts +47 -0
  897. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts.map +1 -0
  898. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.js +278 -0
  899. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.js.map +1 -0
  900. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts +31 -0
  901. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -0
  902. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js +165 -0
  903. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js.map +1 -0
  904. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts +42 -0
  905. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -0
  906. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js +290 -0
  907. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js.map +1 -0
  908. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector-search.d.ts.map +1 -0
  909. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js +155 -0
  910. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js.map +1 -0
  911. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts +96 -0
  912. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts.map +1 -0
  913. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.js +861 -0
  914. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.js.map +1 -0
  915. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts +67 -0
  916. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts.map +1 -0
  917. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.js +373 -0
  918. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.js.map +1 -0
  919. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts +10 -0
  920. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts.map +1 -0
  921. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js +39 -0
  922. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js.map +1 -0
  923. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts +17 -0
  924. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts.map +1 -0
  925. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js +47 -0
  926. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js.map +1 -0
  927. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts +11 -0
  928. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts.map +1 -0
  929. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.js +50 -0
  930. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.js.map +1 -0
  931. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts +11 -0
  932. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -0
  933. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js +51 -0
  934. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js.map +1 -0
  935. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts +63 -0
  936. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +1 -0
  937. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.js +295 -0
  938. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.js.map +1 -0
  939. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts +89 -0
  940. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts.map +1 -0
  941. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.js +1092 -0
  942. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.js.map +1 -0
  943. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts +30 -0
  944. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts.map +1 -0
  945. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js +114 -0
  946. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js.map +1 -0
  947. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts +10 -0
  948. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts.map +1 -0
  949. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.js +29 -0
  950. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.js.map +1 -0
  951. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/visual-truncate.d.ts.map +1 -0
  952. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js +33 -0
  953. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js.map +1 -0
  954. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts +374 -0
  955. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +1 -0
  956. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.js +4625 -0
  957. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.js.map +1 -0
  958. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts +81 -0
  959. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts.map +1 -0
  960. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.js +971 -0
  961. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.js.map +1 -0
  962. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/print-mode.d.ts +28 -0
  963. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/print-mode.d.ts.map +1 -0
  964. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/print-mode.js.map +1 -0
  965. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts +224 -0
  966. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts.map +1 -0
  967. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-client.js.map +1 -0
  968. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts.map +1 -0
  969. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-mode.js +604 -0
  970. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-mode.js.map +1 -0
  971. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts +419 -0
  972. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts.map +1 -0
  973. package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-types.js.map +1 -0
  974. package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/image-resize.d.ts +36 -0
  975. package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/image-resize.d.ts.map +1 -0
  976. package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/image-resize.js.map +1 -0
  977. package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.d.ts +16 -0
  978. package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.d.ts.map +1 -0
  979. package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.js +50 -0
  980. package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.js.map +1 -0
  981. package/node_modules/@entelligentsia/pi-coding-agent/docs/compaction.md +394 -0
  982. package/node_modules/@entelligentsia/pi-coding-agent/docs/custom-provider.md +646 -0
  983. package/node_modules/@entelligentsia/pi-coding-agent/docs/extensions.md +2596 -0
  984. package/node_modules/@entelligentsia/pi-coding-agent/docs/index.md +70 -0
  985. package/node_modules/@entelligentsia/pi-coding-agent/docs/packages.md +223 -0
  986. package/node_modules/@entelligentsia/pi-coding-agent/docs/quickstart.md +142 -0
  987. package/node_modules/@entelligentsia/pi-coding-agent/docs/rpc.md +1407 -0
  988. package/node_modules/@entelligentsia/pi-coding-agent/docs/sdk.md +1149 -0
  989. package/node_modules/@entelligentsia/pi-coding-agent/docs/session-format.md +412 -0
  990. package/node_modules/@entelligentsia/pi-coding-agent/docs/termux.md +127 -0
  991. package/node_modules/@entelligentsia/pi-coding-agent/docs/tui.md +918 -0
  992. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/README.md +208 -0
  993. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/auto-commit-on-exit.ts +49 -0
  994. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/bash-spawn-hook.ts +30 -0
  995. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/bookmark.ts +50 -0
  996. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/border-status-editor.ts +150 -0
  997. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/built-in-tool-renderer.ts +249 -0
  998. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/claude-rules.ts +86 -0
  999. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/commands.ts +72 -0
  1000. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/confirm-destructive.ts +59 -0
  1001. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-compaction.ts +127 -0
  1002. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-footer.ts +64 -0
  1003. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-header.ts +73 -0
  1004. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-anthropic/index.ts +604 -0
  1005. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-anthropic/package-lock.json +24 -0
  1006. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-anthropic/package.json +19 -0
  1007. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/index.ts +349 -0
  1008. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/package.json +16 -0
  1009. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/test.ts +82 -0
  1010. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/dirty-repo-guard.ts +56 -0
  1011. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/doom-overlay/doom-component.ts +132 -0
  1012. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/doom-overlay/doom-keys.ts +104 -0
  1013. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/doom-overlay/index.ts +74 -0
  1014. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/dynamic-resources/index.ts +15 -0
  1015. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/dynamic-tools.ts +74 -0
  1016. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/event-bus.ts +43 -0
  1017. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/file-trigger.ts +41 -0
  1018. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/git-checkpoint.ts +53 -0
  1019. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/github-issue-autocomplete.ts +185 -0
  1020. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/handoff.ts +191 -0
  1021. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/hello.ts +26 -0
  1022. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/hidden-thinking-label.ts +53 -0
  1023. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/inline-bash.ts +94 -0
  1024. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/input-transform.ts +43 -0
  1025. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/interactive-shell.ts +196 -0
  1026. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/mac-system-theme.ts +47 -0
  1027. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/message-renderer.ts +59 -0
  1028. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/minimal-mode.ts +426 -0
  1029. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/modal-editor.ts +85 -0
  1030. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/model-status.ts +31 -0
  1031. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/notify.ts +55 -0
  1032. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/overlay-qa-tests.ts +1348 -0
  1033. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/overlay-test.ts +150 -0
  1034. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/permission-gate.ts +34 -0
  1035. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/pirate.ts +47 -0
  1036. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/plan-mode/index.ts +340 -0
  1037. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/preset.ts +430 -0
  1038. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/prompt-customizer.ts +97 -0
  1039. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/protected-paths.ts +30 -0
  1040. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/provider-payload.ts +18 -0
  1041. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/qna.ts +122 -0
  1042. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/question.ts +264 -0
  1043. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/questionnaire.ts +427 -0
  1044. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/rainbow-editor.ts +88 -0
  1045. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/reload-runtime.ts +37 -0
  1046. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/rpc-demo.ts +118 -0
  1047. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/sandbox/index.ts +321 -0
  1048. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/sandbox/package-lock.json +92 -0
  1049. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/sandbox/package.json +19 -0
  1050. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/send-user-message.ts +97 -0
  1051. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/session-name.ts +27 -0
  1052. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/shutdown-command.ts +63 -0
  1053. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/snake.ts +343 -0
  1054. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/space-invaders.ts +560 -0
  1055. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/ssh.ts +220 -0
  1056. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/status-line.ts +32 -0
  1057. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/structured-output.ts +65 -0
  1058. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/subagent/agents.ts +126 -0
  1059. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/subagent/index.ts +987 -0
  1060. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/summarize.ts +206 -0
  1061. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/system-prompt-header.ts +17 -0
  1062. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/tic-tac-toe.ts +1008 -0
  1063. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/timed-confirm.ts +70 -0
  1064. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/titlebar-spinner.ts +58 -0
  1065. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/todo.ts +297 -0
  1066. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/tool-override.ts +144 -0
  1067. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/tools.ts +141 -0
  1068. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/trigger-compact.ts +50 -0
  1069. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/truncated-tool.ts +195 -0
  1070. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/widget-placement.ts +9 -0
  1071. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/with-deps/index.ts +32 -0
  1072. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/with-deps/package-lock.json +31 -0
  1073. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/with-deps/package.json +22 -0
  1074. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/working-indicator.ts +123 -0
  1075. package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/working-message-test.ts +25 -0
  1076. package/node_modules/@entelligentsia/pi-coding-agent/examples/rpc-extension-ui.ts +632 -0
  1077. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/01-minimal.ts +22 -0
  1078. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/02-custom-model.ts +49 -0
  1079. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/03-custom-prompt.ts +67 -0
  1080. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/04-skills.ts +55 -0
  1081. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/05-tools.ts +44 -0
  1082. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/06-extensions.ts +95 -0
  1083. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/07-context-files.ts +47 -0
  1084. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/08-prompt-templates.ts +51 -0
  1085. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/09-api-keys-and-oauth.ts +48 -0
  1086. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/10-settings.ts +53 -0
  1087. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/11-sessions.ts +48 -0
  1088. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/12-full-control.ts +73 -0
  1089. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/13-session-runtime.ts +67 -0
  1090. package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/README.md +147 -0
  1091. package/node_modules/@entelligentsia/pi-coding-agent/package.json +97 -0
  1092. package/node_modules/@entelligentsia/pi-tui/README.md +779 -0
  1093. package/node_modules/@entelligentsia/pi-tui/package.json +49 -0
  1094. package/node_modules/@smithy/core/checksum.d.ts +5 -0
  1095. package/node_modules/@smithy/core/checksum.js +5 -0
  1096. package/node_modules/@smithy/core/client.d.ts +7 -0
  1097. package/node_modules/@smithy/core/client.js +6 -0
  1098. package/node_modules/@smithy/core/config.d.ts +5 -0
  1099. package/node_modules/@smithy/core/config.js +5 -0
  1100. package/node_modules/@smithy/core/dist-cjs/index.js +6 -7
  1101. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +2 -2
  1102. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +4 -4
  1103. package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +9 -13
  1104. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +202 -0
  1105. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +259 -0
  1106. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +229 -0
  1107. package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1136 -0
  1108. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +375 -0
  1109. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +735 -0
  1110. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +364 -0
  1111. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +860 -0
  1112. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +873 -3
  1113. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +866 -0
  1114. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +627 -3
  1115. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +297 -20
  1116. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +800 -0
  1117. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +827 -0
  1118. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +17 -5
  1119. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +1405 -0
  1120. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +1094 -2
  1121. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +1405 -0
  1122. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +2 -2
  1123. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +2 -2
  1124. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -1
  1125. package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +2 -2
  1126. package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +1 -3
  1127. package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +3 -4
  1128. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +1 -2
  1129. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +1 -2
  1130. package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +2 -3
  1131. package/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.js +9 -0
  1132. package/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.js +27 -0
  1133. package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-blob-browser/blobHasher.js +8 -0
  1134. package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/HashCalculator.js +18 -0
  1135. package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/fileStreamHasher.js +24 -0
  1136. package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/readableStreamHasher.js +19 -0
  1137. package/node_modules/@smithy/core/dist-es/submodules/checksum/index.browser.js +6 -0
  1138. package/node_modules/@smithy/core/dist-es/submodules/checksum/index.js +5 -0
  1139. package/node_modules/@smithy/core/dist-es/submodules/checksum/index.native.js +6 -0
  1140. package/node_modules/@smithy/core/dist-es/submodules/checksum/md5-js/constants.js +3 -0
  1141. package/node_modules/@smithy/core/dist-es/submodules/checksum/md5-js/md5.js +168 -0
  1142. package/node_modules/@smithy/core/dist-es/submodules/client/index.js +26 -0
  1143. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client.js +51 -0
  1144. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/command.js +131 -0
  1145. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/checksum.js +49 -0
  1146. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.js +9 -0
  1147. package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/circularReplacer.js +12 -0
  1148. package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/createWaiter.js +48 -0
  1149. package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/poller.js +87 -0
  1150. package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/sleep.js +3 -0
  1151. package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/validate.js +17 -0
  1152. package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/waiter.js +35 -0
  1153. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +15 -0
  1154. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +15 -0
  1155. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
  1156. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.js +14 -0
  1157. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js +15 -0
  1158. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.js +30 -0
  1159. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js +98 -0
  1160. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.js +19 -0
  1161. package/node_modules/@smithy/core/dist-es/submodules/config/index.browser.js +43 -0
  1162. package/node_modules/@smithy/core/dist-es/submodules/config/index.js +29 -0
  1163. package/node_modules/@smithy/core/dist-es/submodules/config/index.native.js +43 -0
  1164. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/configLoader.js +10 -0
  1165. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromEnv.js +14 -0
  1166. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromSharedConfigFiles.js +24 -0
  1167. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromStatic.js +3 -0
  1168. package/node_modules/@smithy/core/dist-es/submodules/config/property-provider/fromValue.js +1 -0
  1169. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigFilepath.js +4 -0
  1170. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getCredentialsFilepath.js +4 -0
  1171. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getHomeDir.js +22 -0
  1172. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.js +8 -0
  1173. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.js +11 -0
  1174. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.js +39 -0
  1175. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +22 -0
  1176. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +21 -0
  1177. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.js +3 -0
  1178. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.js +65 -0
  1179. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.js +31 -0
  1180. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js +1 -0
  1181. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +47 -0
  1182. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/getEndpointPlugin.js +26 -0
  1183. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js +25 -0
  1184. package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +1 -1
  1185. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateExpression.js +46 -0
  1186. package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +1 -1
  1187. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/HeaderMarshaller.js +184 -0
  1188. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/Int64.js +44 -0
  1189. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.js +21 -0
  1190. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.js +45 -0
  1191. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/utils.js +28 -0
  1192. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.js +30 -0
  1193. package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.browser.js +14 -0
  1194. package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +14 -1
  1195. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +3 -4
  1196. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +3 -2
  1197. package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +2 -2
  1198. package/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +1 -1
  1199. package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +12 -0
  1200. package/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js +39 -0
  1201. package/node_modules/@smithy/core/dist-es/submodules/protocols/querystring-builder/buildQueryString.js +21 -0
  1202. package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +1 -1
  1203. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +1 -3
  1204. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +1 -1
  1205. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +1 -2
  1206. package/node_modules/@smithy/core/dist-es/submodules/protocols/url-parser/parseUrl.js +18 -0
  1207. package/node_modules/@smithy/core/dist-es/submodules/retry/index.browser.js +27 -0
  1208. package/node_modules/@smithy/core/dist-es/submodules/retry/index.js +20 -0
  1209. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js +50 -0
  1210. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.js +3 -0
  1211. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.js +22 -0
  1212. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/parseRetryAfterHeader.js +49 -0
  1213. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +22 -0
  1214. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +95 -0
  1215. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.js +27 -0
  1216. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.js +2 -0
  1217. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.js +7 -0
  1218. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js +109 -0
  1219. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/AdaptiveRetryStrategy.js +36 -0
  1220. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js +19 -0
  1221. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +111 -0
  1222. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js +93 -0
  1223. package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +12 -0
  1224. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +2 -2
  1225. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +1 -1
  1226. package/node_modules/@smithy/core/dist-es/submodules/serde/hash-node/hash-node.js +36 -0
  1227. package/node_modules/@smithy/core/dist-es/submodules/serde/index.browser.js +41 -0
  1228. package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +40 -10
  1229. package/node_modules/@smithy/core/dist-es/submodules/serde/index.native.js +43 -0
  1230. package/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js +58 -0
  1231. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.browser.js +36 -0
  1232. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.js +12 -0
  1233. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.browser.js +35 -0
  1234. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.js +15 -0
  1235. package/node_modules/@smithy/core/dist-es/submodules/serde/util-body-length/calculateBodyLength.js +27 -0
  1236. package/node_modules/@smithy/core/dist-es/submodules/serde/util-buffer-from/buffer-from.js +13 -0
  1237. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.js +23 -0
  1238. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +60 -0
  1239. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.browser.js +35 -0
  1240. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.js +9 -0
  1241. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.js +57 -0
  1242. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js +38 -0
  1243. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.browser.js +64 -0
  1244. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.js +50 -0
  1245. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.js +13 -0
  1246. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js +53 -0
  1247. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js +48 -0
  1248. package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.js +5 -0
  1249. package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.browser.js +10 -0
  1250. package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.js +10 -0
  1251. package/node_modules/@smithy/core/dist-es/submodules/serde/uuid/v4.js +32 -0
  1252. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +2 -2
  1253. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +1 -1
  1254. package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +1 -1
  1255. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +1 -1
  1256. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +1 -1
  1257. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +1 -1
  1258. package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +2 -2
  1259. package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +2 -1
  1260. package/node_modules/@smithy/core/dist-types/setFeature.d.ts +3 -3
  1261. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +5 -4
  1262. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +4 -4
  1263. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +3 -4
  1264. package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +3 -3
  1265. package/node_modules/@smithy/core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.d.ts +6 -0
  1266. package/node_modules/@smithy/core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.d.ts +4 -0
  1267. package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-blob-browser/blobHasher.d.ts +5 -0
  1268. package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/HashCalculator.d.ts +10 -0
  1269. package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/fileStreamHasher.d.ts +6 -0
  1270. package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/readableStreamHasher.d.ts +6 -0
  1271. package/node_modules/@smithy/core/dist-types/submodules/checksum/index.browser.d.ts +5 -0
  1272. package/node_modules/@smithy/core/dist-types/submodules/checksum/index.d.ts +5 -0
  1273. package/node_modules/@smithy/core/dist-types/submodules/checksum/index.native.d.ts +5 -0
  1274. package/node_modules/@smithy/core/dist-types/submodules/checksum/md5-js/constants.d.ts +12 -0
  1275. package/node_modules/@smithy/core/dist-types/submodules/checksum/md5-js/md5.d.ts +16 -0
  1276. package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +26 -0
  1277. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client.d.ts +84 -0
  1278. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/command.d.ts +119 -0
  1279. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/create-aggregated-client.d.ts +16 -0
  1280. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/default-error-handler.d.ts +15 -0
  1281. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.d.ts +7 -0
  1282. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/exceptions.d.ts +42 -0
  1283. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/checksum.d.ts +25 -0
  1284. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.d.ts +38 -0
  1285. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-array-if-single-item.d.ts +7 -0
  1286. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-value-from-text-node.d.ts +7 -0
  1287. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/object-mapping.d.ts +163 -0
  1288. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/ser-utils.d.ts +14 -0
  1289. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/serde-json.d.ts +10 -0
  1290. package/node_modules/@smithy/core/dist-types/submodules/client/util-middleware/getSmithyContext.d.ts +5 -0
  1291. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/circularReplacer.d.ts +6 -0
  1292. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/createWaiter.d.ts +11 -0
  1293. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/poller.d.ts +11 -0
  1294. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/utils/sleep.d.ts +4 -0
  1295. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/utils/validate.d.ts +8 -0
  1296. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/waiter.d.ts +49 -0
  1297. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +23 -0
  1298. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +23 -0
  1299. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
  1300. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/config.d.ts +17 -0
  1301. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/defaultsModeConfig.d.ts +6 -0
  1302. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.d.ts +17 -0
  1303. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.d.ts +17 -0
  1304. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.d.ts +16 -0
  1305. package/node_modules/@smithy/core/dist-types/submodules/config/index.browser.d.ts +55 -0
  1306. package/node_modules/@smithy/core/dist-types/submodules/config/index.d.ts +36 -0
  1307. package/node_modules/@smithy/core/dist-types/submodules/config/index.native.d.ts +55 -0
  1308. package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/configLoader.d.ts +31 -0
  1309. package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/fromSharedConfigFiles.d.ts +22 -0
  1310. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/CredentialsProviderError.d.ts +29 -0
  1311. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/ProviderError.d.ts +38 -0
  1312. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/TokenProviderError.d.ts +29 -0
  1313. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/chain.d.ts +12 -0
  1314. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/fromValue.d.ts +5 -0
  1315. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getConfigData.d.ts +8 -0
  1316. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.d.ts +53 -0
  1317. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSsoSessionData.d.ts +6 -0
  1318. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseIni.d.ts +2 -0
  1319. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseKnownFiles.d.ts +18 -0
  1320. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +24 -0
  1321. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +23 -0
  1322. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
  1323. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +21 -0
  1324. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.d.ts +2 -0
  1325. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +5 -0
  1326. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +11 -0
  1327. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +12 -0
  1328. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.d.ts +110 -0
  1329. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/cache/EndpointCache.d.ts +34 -0
  1330. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/decideEndpoint.d.ts +7 -0
  1331. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/getEndpointUrlConfig.d.ts +12 -0
  1332. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/parseURL.d.ts +5 -0
  1333. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/resolveEndpoint.d.ts +6 -0
  1334. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateCondition.d.ts +11 -0
  1335. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.d.ts +2 -0
  1336. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateExpression.d.ts +7 -0
  1337. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateRules.d.ts +8 -0
  1338. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.d.ts +2 -0
  1339. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointProperties.d.ts +8 -0
  1340. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointUrl.d.ts +2 -0
  1341. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/EventStreamCodec.d.ts +30 -0
  1342. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.d.ts +46 -0
  1343. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.d.ts +31 -0
  1344. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/utils.d.ts +11 -0
  1345. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.d.ts +22 -0
  1346. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.d.ts +18 -0
  1347. package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.browser.d.ts +23 -0
  1348. package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +23 -1
  1349. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +2 -2
  1350. package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +3 -3
  1351. package/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +2 -2
  1352. package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +14 -0
  1353. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/Field.d.ts +49 -0
  1354. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.d.ts +33 -0
  1355. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpHandler.d.ts +32 -0
  1356. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpRequest.d.ts +55 -0
  1357. package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +3 -2
  1358. package/node_modules/@smithy/core/dist-types/submodules/retry/index.browser.d.ts +26 -0
  1359. package/node_modules/@smithy/core/dist-types/submodules/retry/index.d.ts +20 -0
  1360. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/configurations.d.ts +68 -0
  1361. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  1362. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  1363. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +23 -0
  1364. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retryMiddleware.d.ts +19 -0
  1365. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/AdaptiveRetryStrategy.d.ts +38 -0
  1366. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/constants.d.ts +60 -0
  1367. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/retries-2026-config.d.ts +11 -0
  1368. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +1 -1
  1369. package/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +7 -19
  1370. package/node_modules/@smithy/core/dist-types/submodules/serde/index.browser.d.ts +39 -0
  1371. package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +37 -10
  1372. package/node_modules/@smithy/core/dist-types/submodules/serde/index.native.d.ts +37 -0
  1373. package/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +4 -6
  1374. package/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +31 -51
  1375. package/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +3 -12
  1376. package/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +1 -2
  1377. package/node_modules/@smithy/core/dist-types/submodules/serde/util-buffer-from/buffer-from.d.ts +12 -0
  1378. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.d.ts +18 -0
  1379. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +60 -0
  1380. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.browser.d.ts +14 -0
  1381. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.d.ts +13 -0
  1382. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.browser.d.ts +51 -0
  1383. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.d.ts +16 -0
  1384. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/getAwsChunkedEncodingStream.d.ts +10 -0
  1385. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/headStream.d.ts +9 -0
  1386. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/sdk-stream-mixin.d.ts +8 -0
  1387. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/splitStream.d.ts +11 -0
  1388. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.browser.d.ts +6 -0
  1389. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.d.ts +3 -0
  1390. package/node_modules/@smithy/core/dist-types/submodules/serde/util-utf8/toUint8Array.browser.d.ts +4 -0
  1391. package/node_modules/@smithy/core/dist-types/submodules/serde/uuid/v4.d.ts +24 -0
  1392. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +2 -2
  1393. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +2 -2
  1394. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +2 -1
  1395. package/node_modules/@smithy/core/package.json +110 -11
  1396. package/node_modules/@smithy/core/retry.d.ts +5 -0
  1397. package/node_modules/@smithy/core/retry.js +5 -0
  1398. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +39 -41
  1399. package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +1 -1
  1400. package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +3 -3
  1401. package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +2 -3
  1402. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +2 -3
  1403. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +2 -2
  1404. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +1 -1
  1405. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +1 -1
  1406. package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +3 -3
  1407. package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +3 -3
  1408. package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +3 -3
  1409. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -2
  1410. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +1 -2
  1411. package/node_modules/@smithy/credential-provider-imds/package.json +2 -4
  1412. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -7
  1413. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +1 -2
  1414. package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +1 -1
  1415. package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +2 -1
  1416. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +6 -7
  1417. package/node_modules/@smithy/fetch-http-handler/package.json +2 -4
  1418. package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +30 -4
  1419. package/node_modules/@smithy/is-array-buffer/package.json +12 -13
  1420. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +45 -25
  1421. package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +1 -1
  1422. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +26 -16
  1423. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +9 -2
  1424. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +6 -4
  1425. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +1 -1
  1426. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +2 -2
  1427. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +1 -1
  1428. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +6 -5
  1429. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +4 -0
  1430. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +1 -1
  1431. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +7 -2
  1432. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +1 -2
  1433. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +3 -3
  1434. package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +1 -1
  1435. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -1
  1436. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +1 -2
  1437. package/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +2 -1
  1438. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +2 -2
  1439. package/node_modules/@smithy/node-http-handler/package.json +2 -3
  1440. package/node_modules/@smithy/signature-v4/dist-cjs/index.js +167 -170
  1441. package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +1 -2
  1442. package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +3 -4
  1443. package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +3 -4
  1444. package/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +1 -2
  1445. package/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +1 -1
  1446. package/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +1 -3
  1447. package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +1 -1
  1448. package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +1 -1
  1449. package/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +2 -1
  1450. package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +1 -2
  1451. package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +1 -1
  1452. package/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +2 -3
  1453. package/node_modules/@smithy/signature-v4/package.json +2 -7
  1454. package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +44 -17
  1455. package/node_modules/@smithy/util-buffer-from/package.json +14 -15
  1456. package/node_modules/@smithy/util-utf8/dist-cjs/index.js +60 -27
  1457. package/node_modules/@smithy/util-utf8/package.json +13 -14
  1458. package/node_modules/@types/node/README.md +1 -1
  1459. package/node_modules/@types/node/http2.d.ts +21 -12
  1460. package/node_modules/@types/node/package.json +2 -2
  1461. package/node_modules/argparse/CHANGELOG.md +216 -0
  1462. package/node_modules/argparse/LICENSE +254 -0
  1463. package/node_modules/argparse/README.md +84 -0
  1464. package/node_modules/argparse/argparse.js +3707 -0
  1465. package/node_modules/argparse/lib/sub.js +67 -0
  1466. package/node_modules/argparse/lib/textwrap.js +440 -0
  1467. package/node_modules/argparse/package.json +31 -0
  1468. package/node_modules/fast-xml-builder/CHANGELOG.md +4 -0
  1469. package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -1
  1470. package/node_modules/fast-xml-builder/lib/fxb.d.cts +91 -1
  1471. package/node_modules/fast-xml-builder/lib/fxb.min.js +1 -1
  1472. package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -1
  1473. package/node_modules/fast-xml-builder/package.json +3 -2
  1474. package/node_modules/fast-xml-builder/src/fxb.d.ts +92 -3
  1475. package/node_modules/fast-xml-builder/src/fxb.js +92 -31
  1476. package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +87 -33
  1477. package/node_modules/js-yaml/LICENSE +21 -0
  1478. package/node_modules/js-yaml/README.md +247 -0
  1479. package/node_modules/js-yaml/bin/js-yaml.js +126 -0
  1480. package/node_modules/js-yaml/dist/js-yaml.js +3880 -0
  1481. package/node_modules/js-yaml/dist/js-yaml.min.js +2 -0
  1482. package/node_modules/js-yaml/dist/js-yaml.mjs +3856 -0
  1483. package/node_modules/js-yaml/index.js +47 -0
  1484. package/node_modules/js-yaml/lib/common.js +59 -0
  1485. package/node_modules/js-yaml/lib/dumper.js +965 -0
  1486. package/node_modules/js-yaml/lib/exception.js +55 -0
  1487. package/node_modules/js-yaml/lib/loader.js +1733 -0
  1488. package/node_modules/js-yaml/lib/schema/core.js +11 -0
  1489. package/node_modules/js-yaml/lib/schema/default.js +22 -0
  1490. package/node_modules/js-yaml/lib/schema/failsafe.js +17 -0
  1491. package/node_modules/js-yaml/lib/schema/json.js +19 -0
  1492. package/node_modules/js-yaml/lib/schema.js +121 -0
  1493. package/node_modules/js-yaml/lib/snippet.js +101 -0
  1494. package/node_modules/js-yaml/lib/type/binary.js +125 -0
  1495. package/node_modules/js-yaml/lib/type/bool.js +35 -0
  1496. package/node_modules/js-yaml/lib/type/float.js +97 -0
  1497. package/node_modules/js-yaml/lib/type/int.js +156 -0
  1498. package/node_modules/js-yaml/lib/type/map.js +8 -0
  1499. package/node_modules/js-yaml/lib/type/merge.js +12 -0
  1500. package/node_modules/js-yaml/lib/type/null.js +35 -0
  1501. package/node_modules/js-yaml/lib/type/omap.js +44 -0
  1502. package/node_modules/js-yaml/lib/type/pairs.js +53 -0
  1503. package/node_modules/js-yaml/lib/type/seq.js +8 -0
  1504. package/node_modules/js-yaml/lib/type/set.js +29 -0
  1505. package/node_modules/js-yaml/lib/type/str.js +8 -0
  1506. package/node_modules/js-yaml/lib/type/timestamp.js +88 -0
  1507. package/node_modules/js-yaml/lib/type.js +66 -0
  1508. package/node_modules/js-yaml/package.json +66 -0
  1509. package/node_modules/protobufjs/dist/light/protobuf.js +39 -13
  1510. package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
  1511. package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
  1512. package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
  1513. package/node_modules/protobufjs/dist/minimal/protobuf.js +2 -2
  1514. package/node_modules/protobufjs/dist/minimal/protobuf.min.js +2 -2
  1515. package/node_modules/protobufjs/dist/protobuf.js +74 -43
  1516. package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
  1517. package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
  1518. package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
  1519. package/node_modules/protobufjs/index.d.ts +18 -5
  1520. package/node_modules/protobufjs/package.json +1 -1
  1521. package/node_modules/protobufjs/src/namespace.js +11 -5
  1522. package/node_modules/protobufjs/src/parse.js +35 -30
  1523. package/node_modules/protobufjs/src/root.js +4 -2
  1524. package/node_modules/protobufjs/src/service.js +4 -2
  1525. package/node_modules/protobufjs/src/type.js +4 -2
  1526. package/node_modules/protobufjs/src/util.js +14 -0
  1527. package/node_modules/socks/package.json +2 -2
  1528. package/node_modules/ws/lib/sender.js +6 -1
  1529. package/node_modules/ws/package.json +1 -1
  1530. package/node_modules/xml-naming/README.md +189 -0
  1531. package/node_modules/xml-naming/package.json +54 -0
  1532. package/node_modules/xml-naming/src/index.d.ts +74 -0
  1533. package/node_modules/xml-naming/src/index.js +270 -0
  1534. package/node_modules/yaml/browser/dist/compose/composer.js +4 -2
  1535. package/node_modules/yaml/browser/dist/parse/lexer.js +28 -24
  1536. package/node_modules/yaml/browser/dist/parse/parser.js +12 -4
  1537. package/node_modules/yaml/dist/compose/composer.js +4 -2
  1538. package/node_modules/yaml/dist/parse/lexer.js +28 -24
  1539. package/node_modules/yaml/dist/parse/parser.js +12 -4
  1540. package/node_modules/yaml/package.json +1 -1
  1541. package/package.json +93 -81
  1542. package/themes/forge-dark.json +84 -0
  1543. package/workflows/lead-qualifier/prompts/digest.md +44 -0
  1544. package/workflows/lead-qualifier/prompts/draft-outreach.md +44 -0
  1545. package/workflows/lead-qualifier/prompts/enrich.md +52 -0
  1546. package/workflows/lead-qualifier/prompts/intake.md +48 -0
  1547. package/workflows/lead-qualifier/prompts/mark-cold.md +38 -0
  1548. package/workflows/lead-qualifier/prompts/score.md +45 -0
  1549. package/workflows/lead-qualifier/workflow.yaml +95 -0
  1550. package/workflows/research-brief/prompts/brief-synthesize.md +43 -0
  1551. package/workflows/research-brief/prompts/intake.md +51 -0
  1552. package/workflows/research-brief/prompts/source-critique.md +38 -0
  1553. package/workflows/research-brief/prompts/source-score.md +38 -0
  1554. package/workflows/research-brief/prompts/source-summarize.md +54 -0
  1555. package/workflows/research-brief/workflow.yaml +66 -0
  1556. package/dist/forge-payload/.tools/collate.cjs +0 -1041
  1557. package/dist/forge-payload/.tools/lib/validate.js +0 -131
  1558. package/dist/forge-payload/.tools/store-cli.cjs +0 -1123
  1559. package/dist/forge-payload/.tools/validate-store.cjs +0 -522
  1560. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  1561. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/README.md +0 -10
  1562. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
  1563. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
  1564. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/package.json +0 -60
  1565. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  1566. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/README.md +0 -10
  1567. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
  1568. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  1569. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  1570. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  1571. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/package.json +0 -61
  1572. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/LICENSE +0 -201
  1573. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/README.md +0 -4
  1574. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
  1575. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
  1576. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
  1577. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
  1578. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
  1579. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
  1580. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
  1581. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
  1582. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
  1583. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
  1584. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
  1585. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/package.json +0 -66
  1586. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  1587. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/README.md +0 -10
  1588. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
  1589. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
  1590. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
  1591. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
  1592. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/package.json +0 -60
  1593. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  1594. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/README.md +0 -10
  1595. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
  1596. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  1597. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  1598. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  1599. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/package.json +0 -61
  1600. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/LICENSE +0 -201
  1601. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/README.md +0 -4
  1602. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
  1603. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
  1604. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
  1605. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
  1606. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
  1607. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
  1608. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
  1609. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
  1610. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
  1611. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
  1612. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
  1613. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
  1614. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
  1615. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
  1616. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
  1617. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
  1618. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
  1619. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
  1620. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
  1621. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
  1622. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
  1623. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
  1624. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
  1625. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
  1626. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/package.json +0 -66
  1627. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +0 -2
  1628. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/LICENSE +0 -201
  1629. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/README.md +0 -62
  1630. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +0 -157
  1631. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/constants.js +0 -2
  1632. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +0 -16
  1633. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +0 -81
  1634. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +0 -8
  1635. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +0 -11
  1636. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +0 -10
  1637. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -4
  1638. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +0 -5
  1639. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +0 -7
  1640. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +0 -7
  1641. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +0 -8
  1642. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +0 -8
  1643. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/fromEnvSigningName.d.ts +0 -18
  1644. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +0 -12
  1645. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +0 -9
  1646. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +0 -8
  1647. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +0 -7
  1648. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -4
  1649. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +0 -18
  1650. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +0 -3
  1651. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromEnvSigningName.d.ts +0 -11
  1652. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +0 -14
  1653. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +0 -12
  1654. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +0 -11
  1655. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +0 -7
  1656. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -4
  1657. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +0 -5
  1658. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +0 -2
  1659. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +0 -5
  1660. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +0 -5
  1661. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +0 -5
  1662. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +0 -4
  1663. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +0 -5
  1664. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/package.json +0 -70
  1665. package/node_modules/@aws-sdk/middleware-sdk-s3/LICENSE +0 -201
  1666. package/node_modules/@aws-sdk/middleware-sdk-s3/README.md +0 -4
  1667. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +0 -581
  1668. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.browser.js +0 -11
  1669. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.js +0 -7
  1670. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/bucket-endpoint-middleware.js +0 -36
  1671. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/check-content-length-header.js +0 -32
  1672. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +0 -9
  1673. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/protocol/S3RestXmlProtocol.js +0 -25
  1674. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-endpoint-middleware.js +0 -41
  1675. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-middleware.js +0 -42
  1676. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-expires-middleware.js +0 -33
  1677. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityCache.js +0 -39
  1678. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityCacheEntry.js +0 -14
  1679. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityProviderImpl.js +0 -49
  1680. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/SignatureV4S3Express.js +0 -41
  1681. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/constants.js +0 -13
  1682. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressHttpSigningMiddleware.js +0 -38
  1683. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressMiddleware.js +0 -41
  1684. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/signS3Express.js +0 -7
  1685. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js +0 -7
  1686. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/interfaces/S3ExpressIdentity.js +0 -1
  1687. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/interfaces/S3ExpressIdentityProvider.js +0 -1
  1688. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3Configuration.js +0 -17
  1689. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +0 -51
  1690. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.browser.js +0 -8
  1691. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.js +0 -4
  1692. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/validate-bucket-name.js +0 -25
  1693. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/bucket-endpoint-middleware.d.ts +0 -13
  1694. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/check-content-length-header.d.ts +0 -16
  1695. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +0 -9
  1696. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/protocol/S3RestXmlProtocol.d.ts +0 -20
  1697. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-endpoint-middleware.d.ts +0 -10
  1698. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-middleware.d.ts +0 -20
  1699. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-expires-middleware.d.ts +0 -26
  1700. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCache.d.ts +0 -16
  1701. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCacheEntry.d.ts +0 -16
  1702. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityProviderImpl.d.ts +0 -32
  1703. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/SignatureV4S3Express.d.ts +0 -17
  1704. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/constants.d.ts +0 -37
  1705. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -27
  1706. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressMiddleware.d.ts +0 -32
  1707. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/signS3Express.d.ts +0 -9
  1708. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts +0 -9
  1709. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentity.d.ts +0 -6
  1710. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentityProvider.d.ts +0 -12
  1711. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3Configuration.d.ts +0 -79
  1712. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts +0 -21
  1713. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.browser.d.ts +0 -4
  1714. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.d.ts +0 -5
  1715. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/bucket-endpoint-middleware.d.ts +0 -9
  1716. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/check-content-length-header.d.ts +0 -13
  1717. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +0 -9
  1718. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/protocol/S3RestXmlProtocol.d.ts +0 -15
  1719. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/region-redirect-endpoint-middleware.d.ts +0 -6
  1720. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/region-redirect-middleware.d.ts +0 -17
  1721. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-expires-middleware.d.ts +0 -14
  1722. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityCache.d.ts +0 -14
  1723. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityCacheEntry.d.ts +0 -12
  1724. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityProviderImpl.d.ts +0 -31
  1725. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/SignatureV4S3Express.d.ts +0 -19
  1726. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/constants.d.ts +0 -11
  1727. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -40
  1728. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressMiddleware.d.ts +0 -27
  1729. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/signS3Express.d.ts +0 -21
  1730. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/index.d.ts +0 -17
  1731. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/interfaces/S3ExpressIdentity.d.ts +0 -2
  1732. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/interfaces/S3ExpressIdentityProvider.d.ts +0 -8
  1733. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3Configuration.d.ts +0 -33
  1734. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +0 -19
  1735. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.browser.d.ts +0 -1
  1736. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.d.ts +0 -2
  1737. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/validate-bucket-name.d.ts +0 -13
  1738. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/validate-bucket-name.d.ts +0 -14
  1739. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +0 -79
  1740. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +0 -60
  1741. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/bdd.js +0 -100
  1742. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +0 -18
  1743. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/CognitoIdentityServiceException.js +0 -12
  1744. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/errors.js +0 -121
  1745. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.browser.js +0 -38
  1746. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.js +0 -54
  1747. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.native.js +0 -15
  1748. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +0 -50
  1749. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/schemas/schemas_0.js +0 -110
  1750. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +0 -56
  1751. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/bdd.js +0 -90
  1752. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +0 -18
  1753. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/SigninServiceException.js +0 -12
  1754. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/errors.js +0 -64
  1755. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +0 -39
  1756. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +0 -54
  1757. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +0 -15
  1758. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +0 -49
  1759. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/schemas/schemas_0.js +0 -125
  1760. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +0 -56
  1761. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/bdd.js +0 -80
  1762. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +0 -18
  1763. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/SSOServiceException.js +0 -12
  1764. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/errors.js +0 -56
  1765. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.browser.js +0 -38
  1766. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.js +0 -54
  1767. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.native.js +0 -15
  1768. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.shared.js +0 -49
  1769. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/schemas/schemas_0.js +0 -90
  1770. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +0 -56
  1771. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/bdd.js +0 -80
  1772. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +0 -18
  1773. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/SSOOIDCServiceException.js +0 -12
  1774. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/errors.js +0 -195
  1775. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +0 -38
  1776. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +0 -54
  1777. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +0 -15
  1778. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +0 -49
  1779. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/schemas/schemas_0.js +0 -140
  1780. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +0 -55
  1781. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +0 -43
  1782. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +0 -144
  1783. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +0 -19
  1784. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/bdd.js +0 -150
  1785. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +0 -18
  1786. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/STSServiceException.js +0 -12
  1787. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +0 -96
  1788. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +0 -39
  1789. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +0 -74
  1790. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +0 -15
  1791. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +0 -57
  1792. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +0 -13
  1793. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/schemas/schemas_0.js +0 -195
  1794. package/node_modules/@aws-sdk/util-arn-parser/LICENSE +0 -201
  1795. package/node_modules/@aws-sdk/util-arn-parser/README.md +0 -4
  1796. package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +0 -27
  1797. package/node_modules/@aws-sdk/util-arn-parser/package.json +0 -55
  1798. package/node_modules/@aws-sdk/util-format-url/LICENSE +0 -201
  1799. package/node_modules/@aws-sdk/util-format-url/README.md +0 -4
  1800. package/node_modules/@aws-sdk/util-format-url/dist-cjs/index.js +0 -34
  1801. package/node_modules/@aws-sdk/util-format-url/dist-es/index.js +0 -29
  1802. package/node_modules/@aws-sdk/util-format-url/package.json +0 -56
  1803. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +0 -2
  1804. package/node_modules/@earendil-works/pi-agent-core/README.md +0 -488
  1805. package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.d.ts +0 -24
  1806. package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.d.ts.map +0 -1
  1807. package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js +0 -458
  1808. package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js.map +0 -1
  1809. package/node_modules/@earendil-works/pi-agent-core/dist/agent.d.ts +0 -117
  1810. package/node_modules/@earendil-works/pi-agent-core/dist/agent.d.ts.map +0 -1
  1811. package/node_modules/@earendil-works/pi-agent-core/dist/agent.js +0 -398
  1812. package/node_modules/@earendil-works/pi-agent-core/dist/agent.js.map +0 -1
  1813. package/node_modules/@earendil-works/pi-agent-core/dist/proxy.d.ts +0 -69
  1814. package/node_modules/@earendil-works/pi-agent-core/dist/proxy.d.ts.map +0 -1
  1815. package/node_modules/@earendil-works/pi-agent-core/dist/proxy.js +0 -278
  1816. package/node_modules/@earendil-works/pi-agent-core/dist/proxy.js.map +0 -1
  1817. package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts +0 -369
  1818. package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts.map +0 -1
  1819. package/node_modules/@earendil-works/pi-agent-core/dist/types.js.map +0 -1
  1820. package/node_modules/@earendil-works/pi-agent-core/package.json +0 -45
  1821. package/node_modules/@earendil-works/pi-ai/README.md +0 -1313
  1822. package/node_modules/@earendil-works/pi-ai/dist/cli.d.ts.map +0 -1
  1823. package/node_modules/@earendil-works/pi-ai/dist/cli.js +0 -116
  1824. package/node_modules/@earendil-works/pi-ai/dist/cli.js.map +0 -1
  1825. package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts +0 -17588
  1826. package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts.map +0 -1
  1827. package/node_modules/@earendil-works/pi-ai/dist/models.generated.js +0 -16796
  1828. package/node_modules/@earendil-works/pi-ai/dist/models.generated.js.map +0 -1
  1829. package/node_modules/@earendil-works/pi-ai/package.json +0 -108
  1830. package/node_modules/@earendil-works/pi-coding-agent/CHANGELOG.md +0 -4164
  1831. package/node_modules/@earendil-works/pi-coding-agent/README.md +0 -651
  1832. package/node_modules/@earendil-works/pi-coding-agent/dist/bun/register-bedrock.d.ts.map +0 -1
  1833. package/node_modules/@earendil-works/pi-coding-agent/dist/bun/register-bedrock.js +0 -4
  1834. package/node_modules/@earendil-works/pi-coding-agent/dist/bun/register-bedrock.js.map +0 -1
  1835. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.d.ts +0 -53
  1836. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.d.ts.map +0 -1
  1837. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.js.map +0 -1
  1838. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/config-selector.d.ts.map +0 -1
  1839. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/config-selector.js +0 -31
  1840. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/config-selector.js.map +0 -1
  1841. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/file-processor.d.ts +0 -15
  1842. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/file-processor.d.ts.map +0 -1
  1843. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/file-processor.js.map +0 -1
  1844. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/initial-message.d.ts +0 -18
  1845. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/initial-message.d.ts.map +0 -1
  1846. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/initial-message.js.map +0 -1
  1847. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/list-models.d.ts.map +0 -1
  1848. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/list-models.js +0 -98
  1849. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/list-models.js.map +0 -1
  1850. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/session-picker.d.ts.map +0 -1
  1851. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/session-picker.js +0 -35
  1852. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/session-picker.js.map +0 -1
  1853. package/node_modules/@earendil-works/pi-coding-agent/dist/config.d.ts.map +0 -1
  1854. package/node_modules/@earendil-works/pi-coding-agent/dist/config.js +0 -402
  1855. package/node_modules/@earendil-works/pi-coding-agent/dist/config.js.map +0 -1
  1856. package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.d.ts +0 -86
  1857. package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.d.ts.map +0 -1
  1858. package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.js.map +0 -1
  1859. package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.d.ts +0 -595
  1860. package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.d.ts.map +0 -1
  1861. package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.js +0 -2521
  1862. package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.js.map +0 -1
  1863. package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.d.ts +0 -141
  1864. package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.d.ts.map +0 -1
  1865. package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.js +0 -441
  1866. package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.js.map +0 -1
  1867. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts +0 -88
  1868. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts.map +0 -1
  1869. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.js +0 -243
  1870. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.js.map +0 -1
  1871. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.d.ts +0 -121
  1872. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.d.ts.map +0 -1
  1873. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.js +0 -615
  1874. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.js.map +0 -1
  1875. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.d.ts +0 -38
  1876. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.d.ts.map +0 -1
  1877. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.js.map +0 -1
  1878. package/node_modules/@earendil-works/pi-coding-agent/dist/core/defaults.d.ts +0 -3
  1879. package/node_modules/@earendil-works/pi-coding-agent/dist/core/defaults.d.ts.map +0 -1
  1880. package/node_modules/@earendil-works/pi-coding-agent/dist/core/defaults.js.map +0 -1
  1881. package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/index.d.ts +0 -37
  1882. package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/index.d.ts.map +0 -1
  1883. package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/index.js.map +0 -1
  1884. package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/tool-renderer.d.ts.map +0 -1
  1885. package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/tool-renderer.js.map +0 -1
  1886. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.d.ts.map +0 -1
  1887. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.js +0 -498
  1888. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.js.map +0 -1
  1889. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.d.ts +0 -159
  1890. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.d.ts.map +0 -1
  1891. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.js +0 -824
  1892. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.js.map +0 -1
  1893. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.d.ts +0 -1173
  1894. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.d.ts.map +0 -1
  1895. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.js.map +0 -1
  1896. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/wrapper.d.ts +0 -20
  1897. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/wrapper.d.ts.map +0 -1
  1898. package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/wrapper.js.map +0 -1
  1899. package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.d.ts +0 -353
  1900. package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.d.ts.map +0 -1
  1901. package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.js +0 -295
  1902. package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.js.map +0 -1
  1903. package/node_modules/@earendil-works/pi-coding-agent/dist/core/messages.d.ts +0 -77
  1904. package/node_modules/@earendil-works/pi-coding-agent/dist/core/messages.d.ts.map +0 -1
  1905. package/node_modules/@earendil-works/pi-coding-agent/dist/core/messages.js.map +0 -1
  1906. package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.d.ts +0 -150
  1907. package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.d.ts.map +0 -1
  1908. package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.js +0 -727
  1909. package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.js.map +0 -1
  1910. package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.d.ts +0 -110
  1911. package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.d.ts.map +0 -1
  1912. package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.js +0 -494
  1913. package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.js.map +0 -1
  1914. package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.d.ts +0 -107
  1915. package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.d.ts.map +0 -1
  1916. package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.js +0 -282
  1917. package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.js.map +0 -1
  1918. package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.d.ts +0 -333
  1919. package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.d.ts.map +0 -1
  1920. package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.js.map +0 -1
  1921. package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.d.ts +0 -261
  1922. package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.d.ts.map +0 -1
  1923. package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.js.map +0 -1
  1924. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.d.ts +0 -68
  1925. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.d.ts.map +0 -1
  1926. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.js +0 -335
  1927. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.js.map +0 -1
  1928. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.d.ts +0 -49
  1929. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.d.ts.map +0 -1
  1930. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.js +0 -324
  1931. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.js.map +0 -1
  1932. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.d.ts +0 -35
  1933. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.d.ts.map +0 -1
  1934. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.js +0 -298
  1935. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.js.map +0 -1
  1936. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.d.ts +0 -37
  1937. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.d.ts.map +0 -1
  1938. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.js +0 -304
  1939. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.js.map +0 -1
  1940. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/index.d.ts +0 -40
  1941. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/index.d.ts.map +0 -1
  1942. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/index.js.map +0 -1
  1943. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.d.ts +0 -37
  1944. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.d.ts.map +0 -1
  1945. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.js +0 -169
  1946. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.js.map +0 -1
  1947. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.d.ts +0 -35
  1948. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.d.ts.map +0 -1
  1949. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.js +0 -288
  1950. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.js.map +0 -1
  1951. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.d.ts +0 -21
  1952. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.d.ts.map +0 -1
  1953. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.js +0 -49
  1954. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.js.map +0 -1
  1955. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts +0 -14
  1956. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts.map +0 -1
  1957. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/tool-definition-wrapper.js.map +0 -1
  1958. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.d.ts +0 -26
  1959. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.d.ts.map +0 -1
  1960. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.js +0 -213
  1961. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.js.map +0 -1
  1962. package/node_modules/@earendil-works/pi-coding-agent/dist/main.d.ts.map +0 -1
  1963. package/node_modules/@earendil-works/pi-coding-agent/dist/main.js +0 -583
  1964. package/node_modules/@earendil-works/pi-coding-agent/dist/main.js.map +0 -1
  1965. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/armin.d.ts +0 -34
  1966. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/armin.d.ts.map +0 -1
  1967. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/armin.js.map +0 -1
  1968. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts +0 -20
  1969. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts.map +0 -1
  1970. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.js +0 -121
  1971. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.js.map +0 -1
  1972. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts +0 -34
  1973. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts.map +0 -1
  1974. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.js +0 -175
  1975. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.js.map +0 -1
  1976. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts +0 -16
  1977. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts.map +0 -1
  1978. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js +0 -54
  1979. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js.map +0 -1
  1980. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts +0 -16
  1981. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts.map +0 -1
  1982. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js +0 -44
  1983. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js.map +0 -1
  1984. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts +0 -16
  1985. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts.map +0 -1
  1986. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js +0 -45
  1987. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js.map +0 -1
  1988. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts +0 -71
  1989. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts.map +0 -1
  1990. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.js +0 -481
  1991. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.js.map +0 -1
  1992. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts +0 -14
  1993. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts.map +0 -1
  1994. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js.map +0 -1
  1995. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts +0 -21
  1996. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts.map +0 -1
  1997. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.js +0 -70
  1998. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.js.map +0 -1
  1999. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts +0 -20
  2000. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts.map +0 -1
  2001. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.js +0 -79
  2002. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.js.map +0 -1
  2003. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts +0 -23
  2004. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts.map +0 -1
  2005. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/daxnuts.js.map +0 -1
  2006. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts +0 -15
  2007. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts.map +0 -1
  2008. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js.map +0 -1
  2009. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts +0 -5
  2010. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts.map +0 -1
  2011. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js +0 -40
  2012. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js.map +0 -1
  2013. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts +0 -20
  2014. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts.map +0 -1
  2015. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.js +0 -111
  2016. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.js.map +0 -1
  2017. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts +0 -23
  2018. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts.map +0 -1
  2019. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.js +0 -61
  2020. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.js.map +0 -1
  2021. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts +0 -24
  2022. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts.map +0 -1
  2023. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.js +0 -78
  2024. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.js.map +0 -1
  2025. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.d.ts +0 -27
  2026. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.d.ts.map +0 -1
  2027. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.js +0 -201
  2028. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.js.map +0 -1
  2029. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts +0 -8
  2030. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts.map +0 -1
  2031. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js +0 -22
  2032. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js.map +0 -1
  2033. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts +0 -46
  2034. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +0 -1
  2035. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +0 -160
  2036. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.js.map +0 -1
  2037. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts +0 -47
  2038. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts.map +0 -1
  2039. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.js +0 -278
  2040. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.js.map +0 -1
  2041. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts +0 -31
  2042. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts.map +0 -1
  2043. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js +0 -165
  2044. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js.map +0 -1
  2045. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts +0 -42
  2046. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts.map +0 -1
  2047. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js +0 -290
  2048. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js.map +0 -1
  2049. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector-search.d.ts.map +0 -1
  2050. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js +0 -155
  2051. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js.map +0 -1
  2052. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts +0 -96
  2053. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts.map +0 -1
  2054. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.js +0 -861
  2055. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.js.map +0 -1
  2056. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts +0 -67
  2057. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts.map +0 -1
  2058. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.js +0 -373
  2059. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.js.map +0 -1
  2060. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts +0 -10
  2061. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts.map +0 -1
  2062. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js +0 -39
  2063. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js.map +0 -1
  2064. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts +0 -17
  2065. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts.map +0 -1
  2066. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js +0 -47
  2067. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js.map +0 -1
  2068. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts +0 -11
  2069. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts.map +0 -1
  2070. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.js +0 -50
  2071. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.js.map +0 -1
  2072. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts +0 -11
  2073. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts.map +0 -1
  2074. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js +0 -51
  2075. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js.map +0 -1
  2076. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts +0 -63
  2077. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +0 -1
  2078. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.js +0 -295
  2079. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.js.map +0 -1
  2080. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts +0 -89
  2081. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts.map +0 -1
  2082. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.js +0 -1092
  2083. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.js.map +0 -1
  2084. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts +0 -30
  2085. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts.map +0 -1
  2086. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js +0 -114
  2087. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js.map +0 -1
  2088. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts +0 -10
  2089. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts.map +0 -1
  2090. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.js +0 -29
  2091. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.js.map +0 -1
  2092. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/visual-truncate.d.ts.map +0 -1
  2093. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js +0 -33
  2094. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js.map +0 -1
  2095. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts +0 -361
  2096. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +0 -1
  2097. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.js +0 -4585
  2098. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.js.map +0 -1
  2099. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts +0 -81
  2100. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts.map +0 -1
  2101. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.js +0 -971
  2102. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.js.map +0 -1
  2103. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.d.ts +0 -28
  2104. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.d.ts.map +0 -1
  2105. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.js.map +0 -1
  2106. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts +0 -224
  2107. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts.map +0 -1
  2108. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-client.js.map +0 -1
  2109. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts.map +0 -1
  2110. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.js +0 -601
  2111. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.js.map +0 -1
  2112. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts +0 -419
  2113. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts.map +0 -1
  2114. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-types.js.map +0 -1
  2115. package/node_modules/@earendil-works/pi-coding-agent/dist/utils/image-resize.d.ts +0 -36
  2116. package/node_modules/@earendil-works/pi-coding-agent/dist/utils/image-resize.d.ts.map +0 -1
  2117. package/node_modules/@earendil-works/pi-coding-agent/dist/utils/image-resize.js.map +0 -1
  2118. package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.d.ts +0 -14
  2119. package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.d.ts.map +0 -1
  2120. package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.js +0 -34
  2121. package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.js.map +0 -1
  2122. package/node_modules/@earendil-works/pi-coding-agent/docs/compaction.md +0 -394
  2123. package/node_modules/@earendil-works/pi-coding-agent/docs/custom-provider.md +0 -646
  2124. package/node_modules/@earendil-works/pi-coding-agent/docs/extensions.md +0 -2596
  2125. package/node_modules/@earendil-works/pi-coding-agent/docs/index.md +0 -64
  2126. package/node_modules/@earendil-works/pi-coding-agent/docs/packages.md +0 -223
  2127. package/node_modules/@earendil-works/pi-coding-agent/docs/quickstart.md +0 -142
  2128. package/node_modules/@earendil-works/pi-coding-agent/docs/rpc.md +0 -1407
  2129. package/node_modules/@earendil-works/pi-coding-agent/docs/sdk.md +0 -1149
  2130. package/node_modules/@earendil-works/pi-coding-agent/docs/session-format.md +0 -412
  2131. package/node_modules/@earendil-works/pi-coding-agent/docs/termux.md +0 -127
  2132. package/node_modules/@earendil-works/pi-coding-agent/docs/tui.md +0 -918
  2133. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/README.md +0 -208
  2134. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/auto-commit-on-exit.ts +0 -49
  2135. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/bash-spawn-hook.ts +0 -30
  2136. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/bookmark.ts +0 -50
  2137. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/border-status-editor.ts +0 -150
  2138. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/built-in-tool-renderer.ts +0 -249
  2139. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/claude-rules.ts +0 -86
  2140. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/commands.ts +0 -72
  2141. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/confirm-destructive.ts +0 -59
  2142. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-compaction.ts +0 -127
  2143. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-footer.ts +0 -64
  2144. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-header.ts +0 -73
  2145. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/index.ts +0 -604
  2146. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/package-lock.json +0 -24
  2147. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/package.json +0 -19
  2148. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/index.ts +0 -349
  2149. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/package.json +0 -16
  2150. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/test.ts +0 -82
  2151. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/dirty-repo-guard.ts +0 -56
  2152. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/doom-overlay/doom-component.ts +0 -132
  2153. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/doom-overlay/doom-keys.ts +0 -104
  2154. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/doom-overlay/index.ts +0 -74
  2155. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/dynamic-resources/index.ts +0 -15
  2156. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/dynamic-tools.ts +0 -74
  2157. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/event-bus.ts +0 -43
  2158. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/file-trigger.ts +0 -41
  2159. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/git-checkpoint.ts +0 -53
  2160. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/github-issue-autocomplete.ts +0 -185
  2161. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/handoff.ts +0 -191
  2162. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/hello.ts +0 -26
  2163. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/hidden-thinking-label.ts +0 -53
  2164. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/inline-bash.ts +0 -94
  2165. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/input-transform.ts +0 -43
  2166. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/interactive-shell.ts +0 -196
  2167. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/mac-system-theme.ts +0 -47
  2168. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/message-renderer.ts +0 -59
  2169. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/minimal-mode.ts +0 -426
  2170. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/modal-editor.ts +0 -85
  2171. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/model-status.ts +0 -31
  2172. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/notify.ts +0 -55
  2173. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/overlay-qa-tests.ts +0 -1348
  2174. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/overlay-test.ts +0 -150
  2175. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/permission-gate.ts +0 -34
  2176. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/pirate.ts +0 -47
  2177. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/plan-mode/index.ts +0 -340
  2178. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/preset.ts +0 -430
  2179. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/prompt-customizer.ts +0 -97
  2180. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/protected-paths.ts +0 -30
  2181. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/provider-payload.ts +0 -18
  2182. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/qna.ts +0 -122
  2183. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/question.ts +0 -264
  2184. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/questionnaire.ts +0 -427
  2185. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/rainbow-editor.ts +0 -88
  2186. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/reload-runtime.ts +0 -37
  2187. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/rpc-demo.ts +0 -118
  2188. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/index.ts +0 -321
  2189. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/package-lock.json +0 -92
  2190. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/package.json +0 -19
  2191. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/send-user-message.ts +0 -97
  2192. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/session-name.ts +0 -27
  2193. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/shutdown-command.ts +0 -63
  2194. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/snake.ts +0 -343
  2195. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/space-invaders.ts +0 -560
  2196. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/ssh.ts +0 -220
  2197. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/status-line.ts +0 -32
  2198. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/structured-output.ts +0 -65
  2199. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/subagent/agents.ts +0 -126
  2200. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/subagent/index.ts +0 -987
  2201. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/summarize.ts +0 -206
  2202. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/system-prompt-header.ts +0 -17
  2203. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/tic-tac-toe.ts +0 -1008
  2204. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/timed-confirm.ts +0 -70
  2205. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/titlebar-spinner.ts +0 -58
  2206. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/todo.ts +0 -297
  2207. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/tool-override.ts +0 -144
  2208. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/tools.ts +0 -141
  2209. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/trigger-compact.ts +0 -50
  2210. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/truncated-tool.ts +0 -195
  2211. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/widget-placement.ts +0 -9
  2212. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/index.ts +0 -32
  2213. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/package-lock.json +0 -31
  2214. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/package.json +0 -22
  2215. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/working-indicator.ts +0 -123
  2216. package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/working-message-test.ts +0 -25
  2217. package/node_modules/@earendil-works/pi-coding-agent/examples/rpc-extension-ui.ts +0 -632
  2218. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/01-minimal.ts +0 -22
  2219. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/02-custom-model.ts +0 -49
  2220. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/03-custom-prompt.ts +0 -67
  2221. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/04-skills.ts +0 -55
  2222. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/05-tools.ts +0 -44
  2223. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/06-extensions.ts +0 -95
  2224. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/07-context-files.ts +0 -47
  2225. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/08-prompt-templates.ts +0 -51
  2226. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/09-api-keys-and-oauth.ts +0 -48
  2227. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/10-settings.ts +0 -53
  2228. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/11-sessions.ts +0 -48
  2229. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/12-full-control.ts +0 -73
  2230. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/13-session-runtime.ts +0 -67
  2231. package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/README.md +0 -147
  2232. package/node_modules/@earendil-works/pi-coding-agent/package.json +0 -100
  2233. package/node_modules/@earendil-works/pi-tui/README.md +0 -779
  2234. package/node_modules/@earendil-works/pi-tui/package.json +0 -52
  2235. package/node_modules/@mariozechner/clipboard/.yarnrc.yml +0 -1
  2236. package/node_modules/@mariozechner/clipboard/Cargo.toml +0 -26
  2237. package/node_modules/@mariozechner/clipboard/README.md +0 -58
  2238. package/node_modules/@mariozechner/clipboard/build.rs +0 -5
  2239. package/node_modules/@mariozechner/clipboard/exp.ts +0 -12
  2240. package/node_modules/@mariozechner/clipboard/index.d.ts +0 -23
  2241. package/node_modules/@mariozechner/clipboard/index.js +0 -317
  2242. package/node_modules/@mariozechner/clipboard/package.json +0 -56
  2243. package/node_modules/@mariozechner/clipboard/src/lib.rs +0 -196
  2244. package/node_modules/@mariozechner/clipboard-linux-x64-gnu/README.md +0 -3
  2245. package/node_modules/@mariozechner/clipboard-linux-x64-gnu/clipboard.linux-x64-gnu.node +0 -0
  2246. package/node_modules/@mariozechner/clipboard-linux-x64-gnu/package.json +0 -25
  2247. package/node_modules/@smithy/config-resolver/LICENSE +0 -201
  2248. package/node_modules/@smithy/config-resolver/README.md +0 -17
  2249. package/node_modules/@smithy/config-resolver/dist-cjs/index.js +0 -198
  2250. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -14
  2251. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -14
  2252. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +0 -4
  2253. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +0 -10
  2254. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +0 -14
  2255. package/node_modules/@smithy/config-resolver/dist-es/index.js +0 -3
  2256. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +0 -15
  2257. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +0 -2
  2258. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +0 -3
  2259. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -23
  2260. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -23
  2261. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +0 -16
  2262. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +0 -57
  2263. package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +0 -12
  2264. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +0 -17
  2265. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +0 -8
  2266. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +0 -12
  2267. package/node_modules/@smithy/config-resolver/package.json +0 -65
  2268. package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +0 -2
  2269. package/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +0 -2
  2270. package/node_modules/@smithy/eventstream-codec/LICENSE +0 -201
  2271. package/node_modules/@smithy/eventstream-codec/README.md +0 -17
  2272. package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +0 -401
  2273. package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +0 -184
  2274. package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +0 -44
  2275. package/node_modules/@smithy/eventstream-codec/dist-es/index.js +0 -8
  2276. package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +0 -31
  2277. package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +0 -8
  2278. package/node_modules/@smithy/eventstream-codec/package.json +0 -64
  2279. package/node_modules/@smithy/eventstream-serde-browser/LICENSE +0 -201
  2280. package/node_modules/@smithy/eventstream-serde-browser/README.md +0 -17
  2281. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +0 -58
  2282. package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +0 -20
  2283. package/node_modules/@smithy/eventstream-serde-browser/dist-es/index.js +0 -3
  2284. package/node_modules/@smithy/eventstream-serde-browser/dist-es/provider.js +0 -2
  2285. package/node_modules/@smithy/eventstream-serde-browser/dist-es/utils.js +0 -28
  2286. package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +0 -47
  2287. package/node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts +0 -12
  2288. package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +0 -3
  2289. package/node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts +0 -13
  2290. package/node_modules/@smithy/eventstream-serde-browser/package.json +0 -60
  2291. package/node_modules/@smithy/eventstream-serde-config-resolver/LICENSE +0 -201
  2292. package/node_modules/@smithy/eventstream-serde-config-resolver/README.md +0 -17
  2293. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js +0 -7
  2294. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-es/index.js +0 -1
  2295. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts +0 -4
  2296. package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +0 -61
  2297. package/node_modules/@smithy/eventstream-serde-node/LICENSE +0 -201
  2298. package/node_modules/@smithy/eventstream-serde-node/README.md +0 -17
  2299. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +0 -53
  2300. package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +0 -19
  2301. package/node_modules/@smithy/eventstream-serde-node/dist-es/index.js +0 -2
  2302. package/node_modules/@smithy/eventstream-serde-node/dist-es/provider.js +0 -2
  2303. package/node_modules/@smithy/eventstream-serde-node/dist-es/utils.js +0 -26
  2304. package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +0 -23
  2305. package/node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts +0 -8
  2306. package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +0 -3
  2307. package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +0 -12
  2308. package/node_modules/@smithy/eventstream-serde-node/package.json +0 -61
  2309. package/node_modules/@smithy/eventstream-serde-universal/LICENSE +0 -201
  2310. package/node_modules/@smithy/eventstream-serde-universal/README.md +0 -17
  2311. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +0 -132
  2312. package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +0 -25
  2313. package/node_modules/@smithy/eventstream-serde-universal/dist-es/index.js +0 -2
  2314. package/node_modules/@smithy/eventstream-serde-universal/dist-es/provider.js +0 -2
  2315. package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +0 -23
  2316. package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +0 -18
  2317. package/node_modules/@smithy/eventstream-serde-universal/dist-types/index.d.ts +0 -8
  2318. package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +0 -3
  2319. package/node_modules/@smithy/eventstream-serde-universal/package.json +0 -65
  2320. package/node_modules/@smithy/hash-node/LICENSE +0 -201
  2321. package/node_modules/@smithy/hash-node/README.md +0 -17
  2322. package/node_modules/@smithy/hash-node/dist-cjs/index.js +0 -42
  2323. package/node_modules/@smithy/hash-node/dist-es/index.js +0 -37
  2324. package/node_modules/@smithy/hash-node/package.json +0 -64
  2325. package/node_modules/@smithy/invalid-dependency/LICENSE +0 -201
  2326. package/node_modules/@smithy/invalid-dependency/README.md +0 -17
  2327. package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +0 -10
  2328. package/node_modules/@smithy/invalid-dependency/dist-es/index.js +0 -2
  2329. package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +0 -8
  2330. package/node_modules/@smithy/invalid-dependency/package.json +0 -60
  2331. package/node_modules/@smithy/middleware-content-length/LICENSE +0 -201
  2332. package/node_modules/@smithy/middleware-content-length/README.md +0 -17
  2333. package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +0 -46
  2334. package/node_modules/@smithy/middleware-content-length/dist-es/index.js +0 -39
  2335. package/node_modules/@smithy/middleware-content-length/package.json +0 -63
  2336. package/node_modules/@smithy/middleware-endpoint/LICENSE +0 -201
  2337. package/node_modules/@smithy/middleware-endpoint/README.md +0 -17
  2338. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +0 -5
  2339. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +0 -7
  2340. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +0 -35
  2341. package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +0 -264
  2342. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +0 -3
  2343. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +0 -64
  2344. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +0 -31
  2345. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +0 -2
  2346. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +0 -17
  2347. package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +0 -36
  2348. package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +0 -18
  2349. package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +0 -6
  2350. package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +0 -24
  2351. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
  2352. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +0 -28
  2353. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +0 -2
  2354. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +0 -8
  2355. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +0 -6
  2356. package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +0 -10
  2357. package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +0 -11
  2358. package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +0 -18
  2359. package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +0 -109
  2360. package/node_modules/@smithy/middleware-endpoint/package.json +0 -74
  2361. package/node_modules/@smithy/middleware-retry/LICENSE +0 -201
  2362. package/node_modules/@smithy/middleware-retry/README.md +0 -24
  2363. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +0 -396
  2364. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +0 -5
  2365. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +0 -7
  2366. package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +0 -48
  2367. package/node_modules/@smithy/middleware-retry/dist-es/index.js +0 -8
  2368. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +0 -3
  2369. package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +0 -22
  2370. package/node_modules/@smithy/middleware-retry/dist-es/parseRetryAfterHeader.js +0 -49
  2371. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +0 -21
  2372. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/StandardRetryStrategy.js +0 -94
  2373. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/defaultRetryQuota.js +0 -27
  2374. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/delayDecider.js +0 -2
  2375. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/retryDecider.js +0 -7
  2376. package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +0 -105
  2377. package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +0 -68
  2378. package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +0 -8
  2379. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
  2380. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +0 -5
  2381. package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +0 -24
  2382. package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +0 -14
  2383. package/node_modules/@smithy/middleware-retry/package.json +0 -79
  2384. package/node_modules/@smithy/middleware-serde/LICENSE +0 -201
  2385. package/node_modules/@smithy/middleware-serde/README.md +0 -17
  2386. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +0 -104
  2387. package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +0 -58
  2388. package/node_modules/@smithy/middleware-serde/dist-es/index.js +0 -3
  2389. package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +0 -3
  2390. package/node_modules/@smithy/middleware-serde/package.json +0 -65
  2391. package/node_modules/@smithy/middleware-stack/LICENSE +0 -201
  2392. package/node_modules/@smithy/middleware-stack/README.md +0 -91
  2393. package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +0 -285
  2394. package/node_modules/@smithy/middleware-stack/dist-es/index.js +0 -1
  2395. package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +0 -1
  2396. package/node_modules/@smithy/middleware-stack/package.json +0 -63
  2397. package/node_modules/@smithy/node-config-provider/LICENSE +0 -201
  2398. package/node_modules/@smithy/node-config-provider/README.md +0 -17
  2399. package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +0 -62
  2400. package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +0 -9
  2401. package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +0 -14
  2402. package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +0 -23
  2403. package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +0 -3
  2404. package/node_modules/@smithy/node-config-provider/dist-es/index.js +0 -1
  2405. package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +0 -31
  2406. package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +0 -22
  2407. package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +0 -4
  2408. package/node_modules/@smithy/node-config-provider/package.json +0 -65
  2409. package/node_modules/@smithy/property-provider/LICENSE +0 -201
  2410. package/node_modules/@smithy/property-provider/README.md +0 -17
  2411. package/node_modules/@smithy/property-provider/dist-cjs/index.js +0 -117
  2412. package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +0 -1
  2413. package/node_modules/@smithy/property-provider/dist-es/index.js +0 -6
  2414. package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +0 -31
  2415. package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +0 -39
  2416. package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +0 -31
  2417. package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +0 -13
  2418. package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +0 -5
  2419. package/node_modules/@smithy/property-provider/dist-types/index.d.ts +0 -24
  2420. package/node_modules/@smithy/property-provider/package.json +0 -60
  2421. package/node_modules/@smithy/protocol-http/LICENSE +0 -201
  2422. package/node_modules/@smithy/protocol-http/README.md +0 -17
  2423. package/node_modules/@smithy/protocol-http/dist-cjs/index.js +0 -169
  2424. package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +0 -1
  2425. package/node_modules/@smithy/protocol-http/dist-es/index.js +0 -8
  2426. package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +0 -50
  2427. package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +0 -33
  2428. package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +0 -1
  2429. package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +0 -35
  2430. package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +0 -56
  2431. package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +0 -8
  2432. package/node_modules/@smithy/protocol-http/package.json +0 -61
  2433. package/node_modules/@smithy/querystring-builder/LICENSE +0 -201
  2434. package/node_modules/@smithy/querystring-builder/README.md +0 -17
  2435. package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +0 -26
  2436. package/node_modules/@smithy/querystring-builder/dist-es/index.js +0 -21
  2437. package/node_modules/@smithy/querystring-builder/package.json +0 -60
  2438. package/node_modules/@smithy/querystring-parser/LICENSE +0 -201
  2439. package/node_modules/@smithy/querystring-parser/README.md +0 -17
  2440. package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +0 -27
  2441. package/node_modules/@smithy/querystring-parser/package.json +0 -60
  2442. package/node_modules/@smithy/service-error-classification/LICENSE +0 -201
  2443. package/node_modules/@smithy/service-error-classification/README.md +0 -17
  2444. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +0 -83
  2445. package/node_modules/@smithy/service-error-classification/package.json +0 -59
  2446. package/node_modules/@smithy/shared-ini-file-loader/LICENSE +0 -201
  2447. package/node_modules/@smithy/shared-ini-file-loader/README.md +0 -105
  2448. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +0 -26
  2449. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +0 -12
  2450. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +0 -15
  2451. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +0 -196
  2452. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +0 -16
  2453. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +0 -4
  2454. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +0 -4
  2455. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +0 -22
  2456. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +0 -8
  2457. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +0 -11
  2458. package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +0 -10
  2459. package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +0 -39
  2460. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +0 -8
  2461. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +0 -52
  2462. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +0 -6
  2463. package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +0 -10
  2464. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +0 -2
  2465. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +0 -18
  2466. package/node_modules/@smithy/shared-ini-file-loader/package.json +0 -72
  2467. package/node_modules/@smithy/smithy-client/LICENSE +0 -201
  2468. package/node_modules/@smithy/smithy-client/README.md +0 -17
  2469. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +0 -642
  2470. package/node_modules/@smithy/smithy-client/dist-es/client.js +0 -51
  2471. package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +0 -1
  2472. package/node_modules/@smithy/smithy-client/dist-es/command.js +0 -131
  2473. package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +0 -1
  2474. package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +0 -49
  2475. package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +0 -9
  2476. package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +0 -1
  2477. package/node_modules/@smithy/smithy-client/dist-es/index.js +0 -20
  2478. package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +0 -1
  2479. package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +0 -87
  2480. package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +0 -5
  2481. package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +0 -119
  2482. package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +0 -18
  2483. package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +0 -15
  2484. package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +0 -8
  2485. package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +0 -42
  2486. package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +0 -5
  2487. package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +0 -26
  2488. package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -38
  2489. package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +0 -1
  2490. package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +0 -7
  2491. package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +0 -7
  2492. package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +0 -21
  2493. package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +0 -162
  2494. package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +0 -5
  2495. package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +0 -15
  2496. package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +0 -12
  2497. package/node_modules/@smithy/smithy-client/package.json +0 -69
  2498. package/node_modules/@smithy/url-parser/LICENSE +0 -201
  2499. package/node_modules/@smithy/url-parser/README.md +0 -17
  2500. package/node_modules/@smithy/url-parser/dist-cjs/index.js +0 -23
  2501. package/node_modules/@smithy/url-parser/dist-es/index.js +0 -18
  2502. package/node_modules/@smithy/url-parser/package.json +0 -61
  2503. package/node_modules/@smithy/util-base64/LICENSE +0 -201
  2504. package/node_modules/@smithy/util-base64/README.md +0 -4
  2505. package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +0 -12
  2506. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +0 -40
  2507. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +0 -16
  2508. package/node_modules/@smithy/util-base64/dist-cjs/index.js +0 -27
  2509. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +0 -38
  2510. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +0 -19
  2511. package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +0 -36
  2512. package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +0 -12
  2513. package/node_modules/@smithy/util-base64/dist-es/index.js +0 -2
  2514. package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +0 -35
  2515. package/node_modules/@smithy/util-base64/dist-es/toBase64.js +0 -15
  2516. package/node_modules/@smithy/util-base64/dist-types/index.d.ts +0 -2
  2517. package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +0 -5
  2518. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +0 -8
  2519. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +0 -7
  2520. package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +0 -2
  2521. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +0 -9
  2522. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +0 -8
  2523. package/node_modules/@smithy/util-base64/package.json +0 -74
  2524. package/node_modules/@smithy/util-body-length-browser/LICENSE +0 -201
  2525. package/node_modules/@smithy/util-body-length-browser/README.md +0 -12
  2526. package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +0 -30
  2527. package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +0 -1
  2528. package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +0 -4
  2529. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
  2530. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +0 -4
  2531. package/node_modules/@smithy/util-body-length-browser/package.json +0 -61
  2532. package/node_modules/@smithy/util-body-length-node/LICENSE +0 -201
  2533. package/node_modules/@smithy/util-body-length-node/README.md +0 -12
  2534. package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +0 -32
  2535. package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +0 -27
  2536. package/node_modules/@smithy/util-body-length-node/dist-es/index.js +0 -1
  2537. package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +0 -4
  2538. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
  2539. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +0 -4
  2540. package/node_modules/@smithy/util-body-length-node/package.json +0 -62
  2541. package/node_modules/@smithy/util-config-provider/LICENSE +0 -201
  2542. package/node_modules/@smithy/util-config-provider/README.md +0 -4
  2543. package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +0 -30
  2544. package/node_modules/@smithy/util-config-provider/dist-es/index.js +0 -3
  2545. package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +0 -3
  2546. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +0 -10
  2547. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +0 -3
  2548. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +0 -9
  2549. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +0 -4
  2550. package/node_modules/@smithy/util-config-provider/package.json +0 -63
  2551. package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +0 -201
  2552. package/node_modules/@smithy/util-defaults-mode-browser/README.md +0 -17
  2553. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +0 -4
  2554. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +0 -16
  2555. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +0 -34
  2556. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +0 -23
  2557. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +0 -1
  2558. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +0 -1
  2559. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +0 -30
  2560. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +0 -19
  2561. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +0 -12
  2562. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +0 -4
  2563. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
  2564. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +0 -16
  2565. package/node_modules/@smithy/util-defaults-mode-browser/package.json +0 -65
  2566. package/node_modules/@smithy/util-defaults-mode-node/LICENSE +0 -201
  2567. package/node_modules/@smithy/util-defaults-mode-node/README.md +0 -17
  2568. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +0 -74
  2569. package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +0 -1
  2570. package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +0 -52
  2571. package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +0 -6
  2572. package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +0 -4
  2573. package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
  2574. package/node_modules/@smithy/util-defaults-mode-node/package.json +0 -66
  2575. package/node_modules/@smithy/util-endpoints/LICENSE +0 -201
  2576. package/node_modules/@smithy/util-endpoints/README.md +0 -17
  2577. package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +0 -573
  2578. package/node_modules/@smithy/util-endpoints/dist-es/index.js +0 -8
  2579. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +0 -46
  2580. package/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +0 -34
  2581. package/node_modules/@smithy/util-endpoints/dist-types/decideEndpoint.d.ts +0 -7
  2582. package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +0 -2
  2583. package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +0 -8
  2584. package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +0 -5
  2585. package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -6
  2586. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +0 -11
  2587. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +0 -2
  2588. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +0 -7
  2589. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +0 -8
  2590. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +0 -2
  2591. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +0 -8
  2592. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +0 -2
  2593. package/node_modules/@smithy/util-endpoints/package.json +0 -68
  2594. package/node_modules/@smithy/util-hex-encoding/LICENSE +0 -201
  2595. package/node_modules/@smithy/util-hex-encoding/README.md +0 -4
  2596. package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +0 -38
  2597. package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +0 -12
  2598. package/node_modules/@smithy/util-hex-encoding/package.json +0 -61
  2599. package/node_modules/@smithy/util-middleware/LICENSE +0 -201
  2600. package/node_modules/@smithy/util-middleware/README.md +0 -17
  2601. package/node_modules/@smithy/util-middleware/dist-cjs/index.js +0 -15
  2602. package/node_modules/@smithy/util-middleware/dist-es/index.js +0 -2
  2603. package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +0 -5
  2604. package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +0 -8
  2605. package/node_modules/@smithy/util-middleware/package.json +0 -66
  2606. package/node_modules/@smithy/util-retry/LICENSE +0 -201
  2607. package/node_modules/@smithy/util-retry/README.md +0 -78
  2608. package/node_modules/@smithy/util-retry/dist-cjs/index.js +0 -347
  2609. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +0 -36
  2610. package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +0 -19
  2611. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +0 -111
  2612. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +0 -93
  2613. package/node_modules/@smithy/util-retry/dist-es/index.js +0 -8
  2614. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -38
  2615. package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +0 -60
  2616. package/node_modules/@smithy/util-retry/dist-types/index.d.ts +0 -8
  2617. package/node_modules/@smithy/util-retry/dist-types/retries-2026-config.d.ts +0 -11
  2618. package/node_modules/@smithy/util-retry/package.json +0 -70
  2619. package/node_modules/@smithy/util-stream/LICENSE +0 -201
  2620. package/node_modules/@smithy/util-stream/README.md +0 -6
  2621. package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +0 -36
  2622. package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +0 -7
  2623. package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +0 -64
  2624. package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +0 -39
  2625. package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +0 -12
  2626. package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +0 -60
  2627. package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +0 -103
  2628. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +0 -31
  2629. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +0 -41
  2630. package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +0 -34
  2631. package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +0 -42
  2632. package/node_modules/@smithy/util-stream/dist-cjs/index.js +0 -108
  2633. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +0 -68
  2634. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +0 -54
  2635. package/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +0 -10
  2636. package/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +0 -16
  2637. package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +0 -10
  2638. package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +0 -23
  2639. package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +0 -60
  2640. package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +0 -35
  2641. package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +0 -9
  2642. package/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +0 -57
  2643. package/node_modules/@smithy/util-stream/dist-es/headStream.js +0 -38
  2644. package/node_modules/@smithy/util-stream/dist-es/index.js +0 -9
  2645. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +0 -64
  2646. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +0 -50
  2647. package/node_modules/@smithy/util-stream/dist-es/splitStream.js +0 -13
  2648. package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +0 -22
  2649. package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +0 -61
  2650. package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +0 -14
  2651. package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +0 -13
  2652. package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +0 -15
  2653. package/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +0 -50
  2654. package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +0 -10
  2655. package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +0 -9
  2656. package/node_modules/@smithy/util-stream/dist-types/index.d.ts +0 -12
  2657. package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +0 -8
  2658. package/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +0 -11
  2659. package/node_modules/@smithy/util-stream/package.json +0 -98
  2660. package/node_modules/@smithy/util-uri-escape/LICENSE +0 -201
  2661. package/node_modules/@smithy/util-uri-escape/README.md +0 -10
  2662. package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +0 -9
  2663. package/node_modules/@smithy/util-uri-escape/dist-es/index.js +0 -2
  2664. package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +0 -8
  2665. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +0 -4
  2666. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +0 -4
  2667. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +0 -8
  2668. package/node_modules/@smithy/util-uri-escape/package.json +0 -60
  2669. package/node_modules/@smithy/uuid/LICENSE +0 -201
  2670. package/node_modules/@smithy/uuid/README.md +0 -10
  2671. package/node_modules/@smithy/uuid/dist-cjs/index.js +0 -36
  2672. package/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +0 -6
  2673. package/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +0 -4
  2674. package/node_modules/@smithy/uuid/dist-es/index.js +0 -1
  2675. package/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +0 -1
  2676. package/node_modules/@smithy/uuid/dist-es/randomUUID.js +0 -2
  2677. package/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +0 -1
  2678. package/node_modules/@smithy/uuid/dist-es/v4.js +0 -31
  2679. package/node_modules/@smithy/uuid/dist-types/index.d.ts +0 -1
  2680. package/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +0 -1
  2681. package/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +0 -2
  2682. package/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +0 -1
  2683. package/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +0 -1
  2684. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +0 -1
  2685. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +0 -2
  2686. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +0 -1
  2687. package/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +0 -19
  2688. package/node_modules/@smithy/uuid/dist-types/v4.d.ts +0 -19
  2689. package/node_modules/@smithy/uuid/package.json +0 -66
  2690. package/node_modules/koffi/CHANGELOG.md +0 -1093
  2691. package/node_modules/koffi/LICENSE.txt +0 -22
  2692. package/node_modules/koffi/README.md +0 -43
  2693. package/node_modules/koffi/build/koffi/darwin_arm64/koffi.node +0 -0
  2694. package/node_modules/koffi/build/koffi/darwin_x64/koffi.node +0 -0
  2695. package/node_modules/koffi/build/koffi/freebsd_arm64/koffi.node +0 -0
  2696. package/node_modules/koffi/build/koffi/freebsd_ia32/koffi.node +0 -0
  2697. package/node_modules/koffi/build/koffi/freebsd_x64/koffi.node +0 -0
  2698. package/node_modules/koffi/build/koffi/linux_arm64/koffi.node +0 -0
  2699. package/node_modules/koffi/build/koffi/linux_armhf/koffi.node +0 -0
  2700. package/node_modules/koffi/build/koffi/linux_ia32/koffi.node +0 -0
  2701. package/node_modules/koffi/build/koffi/linux_loong64/koffi.node +0 -0
  2702. package/node_modules/koffi/build/koffi/linux_riscv64d/koffi.node +0 -0
  2703. package/node_modules/koffi/build/koffi/linux_x64/koffi.node +0 -0
  2704. package/node_modules/koffi/build/koffi/musl_arm64/koffi.node +0 -0
  2705. package/node_modules/koffi/build/koffi/musl_x64/koffi.node +0 -0
  2706. package/node_modules/koffi/build/koffi/openbsd_ia32/koffi.node +0 -0
  2707. package/node_modules/koffi/build/koffi/openbsd_x64/koffi.node +0 -0
  2708. package/node_modules/koffi/build/koffi/win32_arm64/koffi.exp +0 -0
  2709. package/node_modules/koffi/build/koffi/win32_arm64/koffi.lib +0 -0
  2710. package/node_modules/koffi/build/koffi/win32_arm64/koffi.node +0 -0
  2711. package/node_modules/koffi/build/koffi/win32_ia32/koffi.exp +0 -0
  2712. package/node_modules/koffi/build/koffi/win32_ia32/koffi.lib +0 -0
  2713. package/node_modules/koffi/build/koffi/win32_ia32/koffi.node +0 -0
  2714. package/node_modules/koffi/build/koffi/win32_x64/koffi.exp +0 -0
  2715. package/node_modules/koffi/build/koffi/win32_x64/koffi.lib +0 -0
  2716. package/node_modules/koffi/build/koffi/win32_x64/koffi.node +0 -0
  2717. package/node_modules/koffi/doc/benchmarks.md +0 -126
  2718. package/node_modules/koffi/doc/callbacks.md +0 -210
  2719. package/node_modules/koffi/doc/contribute.md +0 -148
  2720. package/node_modules/koffi/doc/functions.md +0 -250
  2721. package/node_modules/koffi/doc/index.md +0 -61
  2722. package/node_modules/koffi/doc/input.md +0 -471
  2723. package/node_modules/koffi/doc/migration.md +0 -159
  2724. package/node_modules/koffi/doc/misc.md +0 -180
  2725. package/node_modules/koffi/doc/output.md +0 -305
  2726. package/node_modules/koffi/doc/packaging.md +0 -88
  2727. package/node_modules/koffi/doc/platforms.md +0 -36
  2728. package/node_modules/koffi/doc/pointers.md +0 -328
  2729. package/node_modules/koffi/doc/start.md +0 -118
  2730. package/node_modules/koffi/doc/unions.md +0 -186
  2731. package/node_modules/koffi/doc/variables.md +0 -102
  2732. package/node_modules/koffi/index.d.ts +0 -288
  2733. package/node_modules/koffi/index.js +0 -634
  2734. package/node_modules/koffi/indirect.js +0 -533
  2735. package/node_modules/koffi/lib/native/base/base.cc +0 -11015
  2736. package/node_modules/koffi/lib/native/base/base.hh +0 -6003
  2737. package/node_modules/koffi/lib/native/base/crc.inc +0 -2214
  2738. package/node_modules/koffi/lib/native/base/crc_gen.py +0 -72
  2739. package/node_modules/koffi/lib/native/base/mimetypes.inc +0 -1248
  2740. package/node_modules/koffi/lib/native/base/mimetypes_gen.py +0 -58
  2741. package/node_modules/koffi/lib/native/base/tower.cc +0 -821
  2742. package/node_modules/koffi/lib/native/base/tower.hh +0 -81
  2743. package/node_modules/koffi/lib/native/base/unicode.inc +0 -408
  2744. package/node_modules/koffi/lib/native/base/unicode_gen.py +0 -152
  2745. package/node_modules/koffi/package.json +0 -38
  2746. package/node_modules/koffi/src/cnoke/LICENSE.txt +0 -22
  2747. package/node_modules/koffi/src/cnoke/README.md +0 -99
  2748. package/node_modules/koffi/src/cnoke/assets/FindCNoke.cmake +0 -127
  2749. package/node_modules/koffi/src/cnoke/assets/toolchains.json +0 -126
  2750. package/node_modules/koffi/src/cnoke/assets/win_delay_hook.c +0 -36
  2751. package/node_modules/koffi/src/cnoke/cnoke.js +0 -170
  2752. package/node_modules/koffi/src/cnoke/package.json +0 -24
  2753. package/node_modules/koffi/src/cnoke/src/builder.js +0 -511
  2754. package/node_modules/koffi/src/cnoke/src/index.js +0 -10
  2755. package/node_modules/koffi/src/cnoke/src/tools.js +0 -407
  2756. package/node_modules/koffi/src/koffi/CMakeLists.txt +0 -182
  2757. package/node_modules/koffi/src/koffi/src/abi_arm32.cc +0 -1018
  2758. package/node_modules/koffi/src/koffi/src/abi_arm32_asm.S +0 -169
  2759. package/node_modules/koffi/src/koffi/src/abi_arm64.cc +0 -1295
  2760. package/node_modules/koffi/src/koffi/src/abi_arm64_asm.S +0 -195
  2761. package/node_modules/koffi/src/koffi/src/abi_arm64_asm.asm +0 -174
  2762. package/node_modules/koffi/src/koffi/src/abi_loong64.cc +0 -5
  2763. package/node_modules/koffi/src/koffi/src/abi_loong64_asm.S +0 -204
  2764. package/node_modules/koffi/src/koffi/src/abi_riscv64.cc +0 -915
  2765. package/node_modules/koffi/src/koffi/src/abi_riscv64_asm.S +0 -203
  2766. package/node_modules/koffi/src/koffi/src/abi_x64_sysv.cc +0 -939
  2767. package/node_modules/koffi/src/koffi/src/abi_x64_sysv_asm.S +0 -231
  2768. package/node_modules/koffi/src/koffi/src/abi_x64_win.cc +0 -715
  2769. package/node_modules/koffi/src/koffi/src/abi_x64_win_asm.S +0 -166
  2770. package/node_modules/koffi/src/koffi/src/abi_x64_win_asm.asm +0 -192
  2771. package/node_modules/koffi/src/koffi/src/abi_x86.cc +0 -860
  2772. package/node_modules/koffi/src/koffi/src/abi_x86_asm.S +0 -193
  2773. package/node_modules/koffi/src/koffi/src/abi_x86_asm.asm +0 -177
  2774. package/node_modules/koffi/src/koffi/src/call.cc +0 -1326
  2775. package/node_modules/koffi/src/koffi/src/call.hh +0 -179
  2776. package/node_modules/koffi/src/koffi/src/errno.inc +0 -462
  2777. package/node_modules/koffi/src/koffi/src/ffi.cc +0 -2702
  2778. package/node_modules/koffi/src/koffi/src/ffi.hh +0 -354
  2779. package/node_modules/koffi/src/koffi/src/init.js +0 -105
  2780. package/node_modules/koffi/src/koffi/src/parser.cc +0 -220
  2781. package/node_modules/koffi/src/koffi/src/parser.hh +0 -54
  2782. package/node_modules/koffi/src/koffi/src/util.cc +0 -1807
  2783. package/node_modules/koffi/src/koffi/src/util.hh +0 -221
  2784. package/node_modules/koffi/src/koffi/src/uv.cc +0 -193
  2785. package/node_modules/koffi/src/koffi/src/uv.def +0 -10
  2786. package/node_modules/koffi/src/koffi/src/uv.hh +0 -40
  2787. package/node_modules/koffi/src/koffi/src/win32.cc +0 -198
  2788. package/node_modules/koffi/src/koffi/src/win32.hh +0 -119
  2789. package/node_modules/koffi/src/koffi/tools/write_trampolines.js +0 -77
  2790. package/node_modules/koffi/vendor/node-addon-api/LICENSE.md +0 -9
  2791. package/node_modules/koffi/vendor/node-addon-api/README.md +0 -95
  2792. package/node_modules/koffi/vendor/node-addon-api/napi-inl.deprecated.h +0 -186
  2793. package/node_modules/koffi/vendor/node-addon-api/napi-inl.h +0 -7033
  2794. package/node_modules/koffi/vendor/node-addon-api/napi.h +0 -3309
  2795. package/node_modules/koffi/vendor/node-api-headers/LICENSE +0 -21
  2796. package/node_modules/koffi/vendor/node-api-headers/README.md +0 -95
  2797. package/node_modules/koffi/vendor/node-api-headers/def/js_native_api.def +0 -125
  2798. package/node_modules/koffi/vendor/node-api-headers/def/node_api.def +0 -157
  2799. package/node_modules/koffi/vendor/node-api-headers/include/js_native_api.h +0 -591
  2800. package/node_modules/koffi/vendor/node-api-headers/include/js_native_api_types.h +0 -210
  2801. package/node_modules/koffi/vendor/node-api-headers/include/node_api.h +0 -265
  2802. package/node_modules/koffi/vendor/node-api-headers/include/node_api_types.h +0 -58
  2803. package/node_modules/koffi/vendor/node-api-headers/include/uv/aix.h +0 -32
  2804. package/node_modules/koffi/vendor/node-api-headers/include/uv/bsd.h +0 -34
  2805. package/node_modules/koffi/vendor/node-api-headers/include/uv/darwin.h +0 -61
  2806. package/node_modules/koffi/vendor/node-api-headers/include/uv/errno.h +0 -483
  2807. package/node_modules/koffi/vendor/node-api-headers/include/uv/linux.h +0 -34
  2808. package/node_modules/koffi/vendor/node-api-headers/include/uv/os390.h +0 -33
  2809. package/node_modules/koffi/vendor/node-api-headers/include/uv/posix.h +0 -31
  2810. package/node_modules/koffi/vendor/node-api-headers/include/uv/sunos.h +0 -44
  2811. package/node_modules/koffi/vendor/node-api-headers/include/uv/threadpool.h +0 -37
  2812. package/node_modules/koffi/vendor/node-api-headers/include/uv/tree.h +0 -521
  2813. package/node_modules/koffi/vendor/node-api-headers/include/uv/unix.h +0 -512
  2814. package/node_modules/koffi/vendor/node-api-headers/include/uv/version.h +0 -43
  2815. package/node_modules/koffi/vendor/node-api-headers/include/uv/win.h +0 -698
  2816. package/node_modules/koffi/vendor/node-api-headers/include/uv.h +0 -1990
  2817. package/node_modules/socks/.claude/settings.local.json +0 -26
  2818. /package/{node_modules/@earendil-works/pi-agent-core/dist → dist/extensions/forgecli/wf-engine}/types.js +0 -0
  2819. /package/dist/forge-payload/{.tools → tools}/banners.cjs +0 -0
  2820. /package/dist/forge-payload/{.tools → tools}/build-context-pack.cjs +0 -0
  2821. /package/dist/forge-payload/{.tools → tools}/build-init-context.cjs +0 -0
  2822. /package/dist/forge-payload/{.tools → tools}/build-overlay.cjs +0 -0
  2823. /package/dist/forge-payload/{.tools → tools}/build-persona-pack.cjs +0 -0
  2824. /package/dist/forge-payload/{.tools → tools}/generation-manifest.cjs +0 -0
  2825. /package/dist/forge-payload/{.tools → tools}/lib/forge-root.cjs +0 -0
  2826. /package/dist/forge-payload/{.tools → tools}/lib/paths.cjs +0 -0
  2827. /package/dist/forge-payload/{.tools → tools}/lib/pricing.cjs +0 -0
  2828. /package/dist/forge-payload/{.tools → tools}/lib/project-root.cjs +0 -0
  2829. /package/dist/forge-payload/{.tools → tools}/lib/result.js +0 -0
  2830. /package/dist/forge-payload/{.tools → tools}/manage-config.cjs +0 -0
  2831. /package/dist/forge-payload/{.tools → tools}/manage-versions.cjs +0 -0
  2832. /package/dist/forge-payload/{.tools → tools}/seed-store.cjs +0 -0
  2833. /package/dist/forge-payload/{.tools → tools}/store.cjs +0 -0
  2834. /package/dist/forge-payload/{.tools → tools}/substitute-placeholders.cjs +0 -0
  2835. /package/node_modules/@aws-sdk/{util-arn-parser/dist-es/index.js → core/dist-es/submodules/util/util-arn-parser/arn.js} +0 -0
  2836. /package/node_modules/@aws-sdk/{util-arn-parser/dist-types/index.d.ts → core/dist-types/submodules/util/util-arn-parser/arn.d.ts} +0 -0
  2837. /package/node_modules/@aws-sdk/{util-format-url/dist-types/index.d.ts → core/dist-types/submodules/util/util-format-url/format-url.d.ts} +0 -0
  2838. /package/node_modules/@aws-sdk/{util-arn-parser/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/util/util-arn-parser/arn.d.ts} +0 -0
  2839. /package/node_modules/@aws-sdk/{util-format-url/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/util/util-format-url/format-url.d.ts} +0 -0
  2840. /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.d.ts +0 -0
  2841. /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.d.ts.map +0 -0
  2842. /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.js +0 -0
  2843. /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.js.map +0 -0
  2844. /package/node_modules/{@earendil-works/pi-ai → @entelligentsia/pi-agent-core}/dist/types.js +0 -0
  2845. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.d.ts +0 -0
  2846. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.d.ts.map +0 -0
  2847. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.js +0 -0
  2848. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.js.map +0 -0
  2849. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.d.ts +0 -0
  2850. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.d.ts.map +0 -0
  2851. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.js +0 -0
  2852. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.js.map +0 -0
  2853. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/cli.d.ts +0 -0
  2854. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.d.ts +0 -0
  2855. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.d.ts.map +0 -0
  2856. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.js +0 -0
  2857. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.js.map +0 -0
  2858. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.d.ts +0 -0
  2859. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.d.ts.map +0 -0
  2860. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.js +0 -0
  2861. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.js.map +0 -0
  2862. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.d.ts +0 -0
  2863. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.d.ts.map +0 -0
  2864. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.js +0 -0
  2865. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.js.map +0 -0
  2866. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.d.ts +0 -0
  2867. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.d.ts.map +0 -0
  2868. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.js +0 -0
  2869. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.js.map +0 -0
  2870. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.d.ts +0 -0
  2871. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.d.ts.map +0 -0
  2872. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.js +0 -0
  2873. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.js.map +0 -0
  2874. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.d.ts +0 -0
  2875. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.d.ts.map +0 -0
  2876. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.js +0 -0
  2877. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.js.map +0 -0
  2878. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.d.ts +0 -0
  2879. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.d.ts.map +0 -0
  2880. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.js +0 -0
  2881. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.js.map +0 -0
  2882. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.d.ts +0 -0
  2883. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.d.ts.map +0 -0
  2884. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.js +0 -0
  2885. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.js.map +0 -0
  2886. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.d.ts +0 -0
  2887. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.d.ts.map +0 -0
  2888. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.js +0 -0
  2889. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.js.map +0 -0
  2890. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.d.ts +0 -0
  2891. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.d.ts.map +0 -0
  2892. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.js +0 -0
  2893. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.js.map +0 -0
  2894. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.d.ts +0 -0
  2895. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.d.ts.map +0 -0
  2896. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.js +0 -0
  2897. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.js.map +0 -0
  2898. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.d.ts +0 -0
  2899. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.d.ts.map +0 -0
  2900. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.js +0 -0
  2901. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.js.map +0 -0
  2902. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.d.ts +0 -0
  2903. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.d.ts.map +0 -0
  2904. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.js +0 -0
  2905. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.js.map +0 -0
  2906. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.d.ts +0 -0
  2907. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.d.ts.map +0 -0
  2908. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.js +0 -0
  2909. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.js.map +0 -0
  2910. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.d.ts +0 -0
  2911. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.d.ts.map +0 -0
  2912. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.js +0 -0
  2913. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.js.map +0 -0
  2914. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.d.ts +0 -0
  2915. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.d.ts.map +0 -0
  2916. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.js +0 -0
  2917. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.js.map +0 -0
  2918. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.d.ts +0 -0
  2919. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.d.ts.map +0 -0
  2920. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.js +0 -0
  2921. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.js.map +0 -0
  2922. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.d.ts +0 -0
  2923. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.d.ts.map +0 -0
  2924. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.js +0 -0
  2925. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.js.map +0 -0
  2926. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.d.ts +0 -0
  2927. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.d.ts.map +0 -0
  2928. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.js +0 -0
  2929. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.js.map +0 -0
  2930. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.d.ts +0 -0
  2931. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.d.ts.map +0 -0
  2932. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.js +0 -0
  2933. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.js.map +0 -0
  2934. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.d.ts +0 -0
  2935. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.d.ts.map +0 -0
  2936. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.js +0 -0
  2937. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.js.map +0 -0
  2938. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.d.ts +0 -0
  2939. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.d.ts.map +0 -0
  2940. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.js +0 -0
  2941. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.js.map +0 -0
  2942. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.d.ts +0 -0
  2943. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.d.ts.map +0 -0
  2944. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.js +0 -0
  2945. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.js.map +0 -0
  2946. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/types.d.ts +0 -0
  2947. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/types.d.ts.map +0 -0
  2948. /package/node_modules/{@earendil-works/pi-ai/dist/utils/oauth → @entelligentsia/pi-ai/dist}/types.js +0 -0
  2949. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/types.js.map +0 -0
  2950. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.d.ts +0 -0
  2951. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.d.ts.map +0 -0
  2952. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.js +0 -0
  2953. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.js.map +0 -0
  2954. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.d.ts +0 -0
  2955. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.d.ts.map +0 -0
  2956. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.js +0 -0
  2957. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.js.map +0 -0
  2958. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.d.ts +0 -0
  2959. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.d.ts.map +0 -0
  2960. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.js +0 -0
  2961. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.js.map +0 -0
  2962. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.d.ts +0 -0
  2963. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.d.ts.map +0 -0
  2964. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.js +0 -0
  2965. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.js.map +0 -0
  2966. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.d.ts +0 -0
  2967. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.d.ts.map +0 -0
  2968. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.js +0 -0
  2969. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.js.map +0 -0
  2970. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.d.ts +0 -0
  2971. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.d.ts.map +0 -0
  2972. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.js +0 -0
  2973. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.js.map +0 -0
  2974. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.d.ts +0 -0
  2975. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.d.ts.map +0 -0
  2976. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.js +0 -0
  2977. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.js.map +0 -0
  2978. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.d.ts +0 -0
  2979. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.d.ts.map +0 -0
  2980. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.js +0 -0
  2981. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.js.map +0 -0
  2982. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.d.ts +0 -0
  2983. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.d.ts.map +0 -0
  2984. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.js +0 -0
  2985. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.js.map +0 -0
  2986. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.d.ts +0 -0
  2987. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.d.ts.map +0 -0
  2988. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.js +0 -0
  2989. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.js.map +0 -0
  2990. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.d.ts +0 -0
  2991. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.d.ts.map +0 -0
  2992. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.js +0 -0
  2993. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.js.map +0 -0
  2994. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/types.d.ts +0 -0
  2995. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/types.d.ts.map +0 -0
  2996. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/types.js.map +0 -0
  2997. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.d.ts +0 -0
  2998. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.d.ts.map +0 -0
  2999. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.js +0 -0
  3000. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.js.map +0 -0
  3001. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.d.ts +0 -0
  3002. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.d.ts.map +0 -0
  3003. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.js +0 -0
  3004. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.js.map +0 -0
  3005. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.d.ts +0 -0
  3006. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.d.ts.map +0 -0
  3007. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.js +0 -0
  3008. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.js.map +0 -0
  3009. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.d.ts +0 -0
  3010. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.d.ts.map +0 -0
  3011. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.js +0 -0
  3012. /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.js.map +0 -0
  3013. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.d.ts +0 -0
  3014. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.d.ts.map +0 -0
  3015. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.js +0 -0
  3016. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.js.map +0 -0
  3017. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/register-bedrock.d.ts +0 -0
  3018. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.d.ts +0 -0
  3019. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.d.ts.map +0 -0
  3020. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.js +0 -0
  3021. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.js.map +0 -0
  3022. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/args.js +0 -0
  3023. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/config-selector.d.ts +0 -0
  3024. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/file-processor.js +0 -0
  3025. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/initial-message.js +0 -0
  3026. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/list-models.d.ts +0 -0
  3027. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/session-picker.d.ts +0 -0
  3028. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.d.ts +0 -0
  3029. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.d.ts.map +0 -0
  3030. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.js +0 -0
  3031. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.js.map +0 -0
  3032. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/config.d.ts +0 -0
  3033. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.d.ts +0 -0
  3034. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.d.ts.map +0 -0
  3035. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.js +0 -0
  3036. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.js.map +0 -0
  3037. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-services.js +0 -0
  3038. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.d.ts +0 -0
  3039. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.d.ts.map +0 -0
  3040. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.js +0 -0
  3041. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.js.map +0 -0
  3042. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.d.ts +0 -0
  3043. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.d.ts.map +0 -0
  3044. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.js +0 -0
  3045. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.js.map +0 -0
  3046. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.d.ts +0 -0
  3047. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.d.ts.map +0 -0
  3048. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.js +0 -0
  3049. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.js.map +0 -0
  3050. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/utils.js +0 -0
  3051. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/defaults.js +0 -0
  3052. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.d.ts +0 -0
  3053. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.d.ts.map +0 -0
  3054. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.js +0 -0
  3055. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.js.map +0 -0
  3056. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.d.ts +0 -0
  3057. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.d.ts.map +0 -0
  3058. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.js +0 -0
  3059. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.js.map +0 -0
  3060. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.d.ts +0 -0
  3061. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.d.ts.map +0 -0
  3062. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.js +0 -0
  3063. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.js.map +0 -0
  3064. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.d.ts +0 -0
  3065. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.d.ts.map +0 -0
  3066. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.js +0 -0
  3067. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.js.map +0 -0
  3068. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/index.js +0 -0
  3069. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/template.css +0 -0
  3070. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/template.html +0 -0
  3071. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/template.js +0 -0
  3072. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/tool-renderer.d.ts +0 -0
  3073. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/tool-renderer.js +0 -0
  3074. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/vendor/highlight.min.js +0 -0
  3075. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/vendor/marked.min.js +0 -0
  3076. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.d.ts +0 -0
  3077. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.d.ts.map +0 -0
  3078. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.js +0 -0
  3079. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.js.map +0 -0
  3080. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/loader.d.ts +0 -0
  3081. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/types.js +0 -0
  3082. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/wrapper.js +0 -0
  3083. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.d.ts +0 -0
  3084. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.d.ts.map +0 -0
  3085. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.js +0 -0
  3086. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.js.map +0 -0
  3087. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.d.ts +0 -0
  3088. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.d.ts.map +0 -0
  3089. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.js +0 -0
  3090. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.js.map +0 -0
  3091. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/messages.js +0 -0
  3092. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.d.ts +0 -0
  3093. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.d.ts.map +0 -0
  3094. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.js +0 -0
  3095. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.js.map +0 -0
  3096. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.d.ts +0 -0
  3097. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.d.ts.map +0 -0
  3098. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.js +0 -0
  3099. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.js.map +0 -0
  3100. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.d.ts +0 -0
  3101. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.d.ts.map +0 -0
  3102. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.js +0 -0
  3103. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.js.map +0 -0
  3104. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.d.ts +0 -0
  3105. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.d.ts.map +0 -0
  3106. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.js +0 -0
  3107. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.js.map +0 -0
  3108. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.d.ts +0 -0
  3109. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.d.ts.map +0 -0
  3110. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.js +0 -0
  3111. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.js.map +0 -0
  3112. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.d.ts +0 -0
  3113. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.d.ts.map +0 -0
  3114. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.js +0 -0
  3115. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.js.map +0 -0
  3116. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.d.ts +0 -0
  3117. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.d.ts.map +0 -0
  3118. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.js +0 -0
  3119. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.js.map +0 -0
  3120. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-manager.js +0 -0
  3121. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/settings-manager.js +0 -0
  3122. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.d.ts +0 -0
  3123. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.d.ts.map +0 -0
  3124. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.js +0 -0
  3125. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.js.map +0 -0
  3126. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.d.ts +0 -0
  3127. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.d.ts.map +0 -0
  3128. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.js +0 -0
  3129. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.js.map +0 -0
  3130. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.d.ts +0 -0
  3131. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.d.ts.map +0 -0
  3132. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.js +0 -0
  3133. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.js.map +0 -0
  3134. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.d.ts +0 -0
  3135. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.d.ts.map +0 -0
  3136. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.js +0 -0
  3137. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.js.map +0 -0
  3138. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.d.ts +0 -0
  3139. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.d.ts.map +0 -0
  3140. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.js +0 -0
  3141. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.js.map +0 -0
  3142. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.d.ts +0 -0
  3143. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.d.ts.map +0 -0
  3144. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.js +0 -0
  3145. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.js.map +0 -0
  3146. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.d.ts +0 -0
  3147. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.d.ts.map +0 -0
  3148. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.js +0 -0
  3149. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.js.map +0 -0
  3150. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.d.ts +0 -0
  3151. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.d.ts.map +0 -0
  3152. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.js +0 -0
  3153. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.js.map +0 -0
  3154. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/index.js +0 -0
  3155. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.d.ts +0 -0
  3156. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.d.ts.map +0 -0
  3157. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.js +0 -0
  3158. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.js.map +0 -0
  3159. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.d.ts +0 -0
  3160. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.d.ts.map +0 -0
  3161. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.js +0 -0
  3162. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.js.map +0 -0
  3163. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/tool-definition-wrapper.js +0 -0
  3164. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.d.ts +0 -0
  3165. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.d.ts.map +0 -0
  3166. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.js +0 -0
  3167. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.js.map +0 -0
  3168. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.d.ts +0 -0
  3169. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.d.ts.map +0 -0
  3170. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.js +0 -0
  3171. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.js.map +0 -0
  3172. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/main.d.ts +0 -0
  3173. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.d.ts +0 -0
  3174. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.d.ts.map +0 -0
  3175. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.js +0 -0
  3176. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.js.map +0 -0
  3177. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.d.ts +0 -0
  3178. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.d.ts.map +0 -0
  3179. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.js +0 -0
  3180. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.js.map +0 -0
  3181. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/assets/clankolas.png +0 -0
  3182. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/armin.js +0 -0
  3183. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js +0 -0
  3184. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/daxnuts.js +0 -0
  3185. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.d.ts +0 -0
  3186. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.d.ts.map +0 -0
  3187. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.js +0 -0
  3188. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.js.map +0 -0
  3189. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js +0 -0
  3190. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.d.ts +0 -0
  3191. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.d.ts.map +0 -0
  3192. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.js +0 -0
  3193. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.js.map +0 -0
  3194. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/session-selector-search.d.ts +0 -0
  3195. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/visual-truncate.d.ts +0 -0
  3196. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/theme/dark.json +0 -0
  3197. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/theme/light.json +0 -0
  3198. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/theme/theme-schema.json +0 -0
  3199. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/print-mode.js +0 -0
  3200. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.d.ts +0 -0
  3201. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.d.ts.map +0 -0
  3202. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.js +0 -0
  3203. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.js.map +0 -0
  3204. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/rpc-client.js +0 -0
  3205. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts +0 -0
  3206. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/rpc-types.js +0 -0
  3207. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.d.ts +0 -0
  3208. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.d.ts.map +0 -0
  3209. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.js +0 -0
  3210. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.js.map +0 -0
  3211. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.d.ts +0 -0
  3212. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.d.ts.map +0 -0
  3213. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.js +0 -0
  3214. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.js.map +0 -0
  3215. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.d.ts +0 -0
  3216. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.d.ts.map +0 -0
  3217. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.js +0 -0
  3218. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.js.map +0 -0
  3219. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.d.ts +0 -0
  3220. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.d.ts.map +0 -0
  3221. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.js +0 -0
  3222. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.js.map +0 -0
  3223. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.d.ts +0 -0
  3224. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.d.ts.map +0 -0
  3225. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.js +0 -0
  3226. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.js.map +0 -0
  3227. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.d.ts +0 -0
  3228. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.d.ts.map +0 -0
  3229. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.js +0 -0
  3230. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.js.map +0 -0
  3231. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.d.ts +0 -0
  3232. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.d.ts.map +0 -0
  3233. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.js +0 -0
  3234. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.js.map +0 -0
  3235. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.d.ts +0 -0
  3236. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.d.ts.map +0 -0
  3237. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.js +0 -0
  3238. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.js.map +0 -0
  3239. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.d.ts +0 -0
  3240. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.d.ts.map +0 -0
  3241. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.js +0 -0
  3242. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.js.map +0 -0
  3243. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.d.ts +0 -0
  3244. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.d.ts.map +0 -0
  3245. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.js +0 -0
  3246. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.js.map +0 -0
  3247. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.d.ts +0 -0
  3248. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.d.ts.map +0 -0
  3249. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.js +0 -0
  3250. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.js.map +0 -0
  3251. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-resize.js +0 -0
  3252. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.d.ts +0 -0
  3253. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.d.ts.map +0 -0
  3254. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.js +0 -0
  3255. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.js.map +0 -0
  3256. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.d.ts +0 -0
  3257. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.d.ts.map +0 -0
  3258. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.js +0 -0
  3259. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.js.map +0 -0
  3260. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.d.ts +0 -0
  3261. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.d.ts.map +0 -0
  3262. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.js +0 -0
  3263. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.js.map +0 -0
  3264. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.d.ts +0 -0
  3265. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.d.ts.map +0 -0
  3266. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.js +0 -0
  3267. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.js.map +0 -0
  3268. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.d.ts +0 -0
  3269. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.d.ts.map +0 -0
  3270. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.js +0 -0
  3271. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.js.map +0 -0
  3272. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.d.ts +0 -0
  3273. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.d.ts.map +0 -0
  3274. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.js +0 -0
  3275. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.js.map +0 -0
  3276. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.d.ts +0 -0
  3277. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.d.ts.map +0 -0
  3278. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.js +0 -0
  3279. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.js.map +0 -0
  3280. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/development.md +0 -0
  3281. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/docs.json +0 -0
  3282. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/doom-extension.png +0 -0
  3283. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/exy.png +0 -0
  3284. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/interactive-mode.png +0 -0
  3285. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/tree-view.png +0 -0
  3286. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/json.md +0 -0
  3287. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/keybindings.md +0 -0
  3288. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/models.md +0 -0
  3289. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/prompt-templates.md +0 -0
  3290. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/providers.md +0 -0
  3291. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/sessions.md +0 -0
  3292. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/settings.md +0 -0
  3293. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/shell-aliases.md +0 -0
  3294. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/skills.md +0 -0
  3295. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/terminal-setup.md +0 -0
  3296. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/themes.md +0 -0
  3297. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/tmux.md +0 -0
  3298. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/usage.md +0 -0
  3299. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/windows.md +0 -0
  3300. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/README.md +0 -0
  3301. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/README.md +0 -0
  3302. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/build/doom.js +0 -0
  3303. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/build/doom.wasm +0 -0
  3304. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/build.sh +0 -0
  3305. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/doomgeneric_pi.c +0 -0
  3306. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom-engine.ts +0 -0
  3307. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/wad-finder.ts +0 -0
  3308. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/dynamic-resources/SKILL.md +0 -0
  3309. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/dynamic-resources/dynamic.json +0 -0
  3310. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/dynamic-resources/dynamic.md +0 -0
  3311. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/plan-mode/README.md +0 -0
  3312. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/plan-mode/utils.ts +0 -0
  3313. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/README.md +0 -0
  3314. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/planner.md +0 -0
  3315. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/reviewer.md +0 -0
  3316. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/scout.md +0 -0
  3317. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/worker.md +0 -0
  3318. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/prompts/implement-and-review.md +0 -0
  3319. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/prompts/implement.md +0 -0
  3320. /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/prompts/scout-and-plan.md +0 -0
  3321. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.d.ts +0 -0
  3322. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.d.ts.map +0 -0
  3323. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.js +0 -0
  3324. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.js.map +0 -0
  3325. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.d.ts +0 -0
  3326. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.d.ts.map +0 -0
  3327. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.js +0 -0
  3328. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.js.map +0 -0
  3329. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.d.ts +0 -0
  3330. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.d.ts.map +0 -0
  3331. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.js +0 -0
  3332. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.js.map +0 -0
  3333. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.d.ts +0 -0
  3334. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.d.ts.map +0 -0
  3335. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.js +0 -0
  3336. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.js.map +0 -0
  3337. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.d.ts +0 -0
  3338. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.d.ts.map +0 -0
  3339. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.js +0 -0
  3340. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.js.map +0 -0
  3341. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.d.ts +0 -0
  3342. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.d.ts.map +0 -0
  3343. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.js +0 -0
  3344. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.js.map +0 -0
  3345. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.d.ts +0 -0
  3346. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.d.ts.map +0 -0
  3347. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.js +0 -0
  3348. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.js.map +0 -0
  3349. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.d.ts +0 -0
  3350. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.d.ts.map +0 -0
  3351. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.js +0 -0
  3352. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.js.map +0 -0
  3353. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.d.ts +0 -0
  3354. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.d.ts.map +0 -0
  3355. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.js +0 -0
  3356. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.js.map +0 -0
  3357. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.d.ts +0 -0
  3358. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.d.ts.map +0 -0
  3359. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.js +0 -0
  3360. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.js.map +0 -0
  3361. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.d.ts +0 -0
  3362. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.d.ts.map +0 -0
  3363. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.js +0 -0
  3364. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.js.map +0 -0
  3365. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.d.ts +0 -0
  3366. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.d.ts.map +0 -0
  3367. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.js +0 -0
  3368. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.js.map +0 -0
  3369. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.d.ts +0 -0
  3370. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.d.ts.map +0 -0
  3371. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.js +0 -0
  3372. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.js.map +0 -0
  3373. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.d.ts +0 -0
  3374. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.d.ts.map +0 -0
  3375. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.js +0 -0
  3376. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.js.map +0 -0
  3377. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.d.ts +0 -0
  3378. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.d.ts.map +0 -0
  3379. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.js +0 -0
  3380. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.js.map +0 -0
  3381. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.d.ts +0 -0
  3382. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.d.ts.map +0 -0
  3383. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.js +0 -0
  3384. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.js.map +0 -0
  3385. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.d.ts +0 -0
  3386. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.d.ts.map +0 -0
  3387. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.js +0 -0
  3388. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.js.map +0 -0
  3389. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.d.ts +0 -0
  3390. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.d.ts.map +0 -0
  3391. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.js +0 -0
  3392. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.js.map +0 -0
  3393. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.d.ts +0 -0
  3394. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.d.ts.map +0 -0
  3395. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.js +0 -0
  3396. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.js.map +0 -0
  3397. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.d.ts +0 -0
  3398. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.d.ts.map +0 -0
  3399. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.js +0 -0
  3400. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.js.map +0 -0
  3401. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.d.ts +0 -0
  3402. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.d.ts.map +0 -0
  3403. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.js +0 -0
  3404. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.js.map +0 -0
  3405. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.d.ts +0 -0
  3406. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.d.ts.map +0 -0
  3407. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.js +0 -0
  3408. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.js.map +0 -0
  3409. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.d.ts +0 -0
  3410. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.d.ts.map +0 -0
  3411. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.js +0 -0
  3412. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.js.map +0 -0
  3413. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.d.ts +0 -0
  3414. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.d.ts.map +0 -0
  3415. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.js +0 -0
  3416. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.js.map +0 -0
  3417. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.d.ts +0 -0
  3418. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.d.ts.map +0 -0
  3419. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.js +0 -0
  3420. /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.js.map +0 -0
  3421. /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidFunction.js +0 -0
  3422. /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidProvider.js +0 -0
  3423. /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/client/middleware-stack}/MiddlewareStack.js +0 -0
  3424. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/client/middleware-stack}/types.js +0 -0
  3425. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/NoOpLogger.js +0 -0
  3426. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/constants.js +0 -0
  3427. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/create-aggregated-client.js +0 -0
  3428. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/default-error-handler.js +0 -0
  3429. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/defaults-mode.js +0 -0
  3430. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/emitWarningIfUnsupportedVersion.js +0 -0
  3431. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/exceptions.js +0 -0
  3432. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/extensions/retry.js +0 -0
  3433. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/get-array-if-single-item.js +0 -0
  3434. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/get-value-from-text-node.js +0 -0
  3435. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/is-serializable-header-value.js +0 -0
  3436. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/object-mapping.js +0 -0
  3437. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/schemaLogFilter.js +0 -0
  3438. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/ser-utils.js +0 -0
  3439. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/serde-json.js +0 -0
  3440. /package/node_modules/@smithy/{util-middleware/dist-es → core/dist-es/submodules/client/util-middleware}/getSmithyContext.js +0 -0
  3441. /package/node_modules/@smithy/{util-middleware/dist-es → core/dist-es/submodules/client/util-middleware}/normalizeProvider.js +0 -0
  3442. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.js +0 -0
  3443. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/config.js +0 -0
  3444. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/getRealRegion.js +0 -0
  3445. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/isFipsRegion.js +0 -0
  3446. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.js +0 -0
  3447. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariant.js +0 -0
  3448. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.js +0 -0
  3449. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/PartitionHash.js +0 -0
  3450. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/RegionHash.js +0 -0
  3451. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.js +0 -0
  3452. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getRegionInfo.js +0 -0
  3453. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedHostname.js +0 -0
  3454. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedPartition.js +0 -0
  3455. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.js +0 -0
  3456. /package/node_modules/@smithy/{util-defaults-mode-node/dist-es → core/dist-es/submodules/config/defaults-mode}/constants.js +0 -0
  3457. /package/node_modules/@smithy/{util-defaults-mode-node/dist-es → core/dist-es/submodules/config/defaults-mode}/defaultsModeConfig.js +0 -0
  3458. /package/node_modules/@smithy/{node-config-provider/dist-es → core/dist-es/submodules/config/node-config-provider}/getSelectorName.js +0 -0
  3459. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/CredentialsProviderError.js +0 -0
  3460. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/ProviderError.js +0 -0
  3461. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/TokenProviderError.js +0 -0
  3462. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/chain.js +0 -0
  3463. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/memoize.js +0 -0
  3464. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/constants.js +0 -0
  3465. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/externalDataInterceptor.js +0 -0
  3466. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getConfigData.js +0 -0
  3467. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getProfileName.js +0 -0
  3468. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getSsoSessionData.js +0 -0
  3469. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/loadSsoSessionData.js +0 -0
  3470. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/mergeConfigFiles.js +0 -0
  3471. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseIni.js +0 -0
  3472. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseKnownFiles.js +0 -0
  3473. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/readFile.js +0 -0
  3474. /package/node_modules/@smithy/{middleware-retry/dist-es/retry-pre-sra-deprecated → core/dist-es/submodules/config/shared-ini-file-loader}/types.js +0 -0
  3475. /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/booleanSelector.js +0 -0
  3476. /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/numberSelector.js +0 -0
  3477. /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/types.js +0 -0
  3478. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.js +0 -0
  3479. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.browser.js +0 -0
  3480. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.js +0 -0
  3481. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/service-customizations/index.js +0 -0
  3482. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/service-customizations/s3.js +0 -0
  3483. /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/types.js +0 -0
  3484. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/bdd/BinaryDecisionDiagram.js +0 -0
  3485. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/cache/EndpointCache.js +0 -0
  3486. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/debugId.js +0 -0
  3487. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/index.js +0 -0
  3488. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/toDebugString.js +0 -0
  3489. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/decideEndpoint.js +0 -0
  3490. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/getEndpointUrlConfig.js +0 -0
  3491. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/booleanEquals.js +0 -0
  3492. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/coalesce.js +0 -0
  3493. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/getAttr.js +0 -0
  3494. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/getAttrPathList.js +0 -0
  3495. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/index.js +0 -0
  3496. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isIpAddress.js +0 -0
  3497. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isSet.js +0 -0
  3498. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isValidHostLabel.js +0 -0
  3499. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/ite.js +0 -0
  3500. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/not.js +0 -0
  3501. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/parseURL.js +0 -0
  3502. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/split.js +0 -0
  3503. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/stringEquals.js +0 -0
  3504. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/substring.js +0 -0
  3505. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/uriEncode.js +0 -0
  3506. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/resolveEndpoint.js +0 -0
  3507. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointError.js +0 -0
  3508. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointFunctions.js +0 -0
  3509. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.js +0 -0
  3510. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.js +0 -0
  3511. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/RuleSetObject.js +0 -0
  3512. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/TreeRuleObject.js +0 -0
  3513. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/index.js +0 -0
  3514. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/shared.js +0 -0
  3515. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/callFunction.js +0 -0
  3516. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.js +0 -0
  3517. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/endpointFunctions.js +0 -0
  3518. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateCondition.js +0 -0
  3519. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateConditions.js +0 -0
  3520. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateEndpointRule.js +0 -0
  3521. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateErrorRule.js +0 -0
  3522. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateRules.js +0 -0
  3523. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateTemplate.js +0 -0
  3524. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.js +0 -0
  3525. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointHeaders.js +0 -0
  3526. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointProperties.js +0 -0
  3527. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.js +0 -0
  3528. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointUrl.js +0 -0
  3529. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getReferenceValue.js +0 -0
  3530. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/index.js +0 -0
  3531. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/EventStreamCodec.js +0 -0
  3532. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/Message.js +0 -0
  3533. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageDecoderStream.js +0 -0
  3534. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageEncoderStream.js +0 -0
  3535. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.js +0 -0
  3536. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.js +0 -0
  3537. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/TestVectors.fixture.js +0 -0
  3538. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/splitMessage.js +0 -0
  3539. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/vectorTypes.fixture.js +0 -0
  3540. /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.js +0 -0
  3541. /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.js +0 -0
  3542. /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getUnmarshalledStream.js +0 -0
  3543. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Field.js +0 -0
  3544. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Fields.js +0 -0
  3545. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/extensions/httpExtensionConfiguration.js +0 -0
  3546. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpHandler.js +0 -0
  3547. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpRequest.js +0 -0
  3548. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpResponse.js +0 -0
  3549. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/isValidHostname.js +0 -0
  3550. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/types.js +0 -0
  3551. /package/node_modules/@smithy/{querystring-parser/dist-es/index.js → core/dist-es/submodules/protocols/querystring-parser/parseQueryString.js} +0 -0
  3552. /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri-path.js +0 -0
  3553. /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri.js +0 -0
  3554. /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/isStreamingPayload/isStreamingPayload.browser.js +0 -0
  3555. /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/longPollMiddleware.js +0 -0
  3556. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated}/types.js +0 -0
  3557. /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/util.js +0 -0
  3558. /package/node_modules/@smithy/{service-error-classification/dist-es → core/dist-es/submodules/retry/service-error-classification}/constants.js +0 -0
  3559. /package/node_modules/@smithy/{service-error-classification/dist-es/index.js → core/dist-es/submodules/retry/service-error-classification/service-error-classification.js} +0 -0
  3560. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.js +0 -0
  3561. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/DefaultRetryToken.js +0 -0
  3562. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/config.js +0 -0
  3563. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/constants.js +0 -0
  3564. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/retries-2026-config.js +0 -0
  3565. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/types.js +0 -0
  3566. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js → @smithy/core/dist-es/submodules/serde/is-array-buffer/is-array-buffer.js} +0 -0
  3567. /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serdePlugin.js +0 -0
  3568. /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serializerMiddleware.js +0 -0
  3569. /package/node_modules/@smithy/{util-base64/dist-es/constants.browser.js → core/dist-es/submodules/serde/util-base64/constants-for-browser.js} +0 -0
  3570. /package/node_modules/@smithy/{util-body-length-browser/dist-es/calculateBodyLength.js → core/dist-es/submodules/serde/util-body-length/calculateBodyLength.browser.js} +0 -0
  3571. /package/node_modules/@smithy/{util-hex-encoding/dist-es/index.js → core/dist-es/submodules/serde/util-hex-encoding/hex-encoding.js} +0 -0
  3572. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/ByteArrayCollector.js +0 -0
  3573. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/checksum/ChecksumStream.browser.js +0 -0
  3574. /package/node_modules/@smithy/{util-stream/dist-es/createBufferedReadableStream.js → core/dist-es/submodules/serde/util-stream/createBufferedReadable.browser.js} +0 -0
  3575. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.js +0 -0
  3576. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.js +0 -0
  3577. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/headStream.browser.js +0 -0
  3578. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/splitStream.browser.js +0 -0
  3579. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/stream-type-check.js +0 -0
  3580. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/fromUtf8.browser.js +0 -0
  3581. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/toUint8Array.js +0 -0
  3582. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/toUtf8.browser.js +0 -0
  3583. /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidFunction.d.ts +0 -0
  3584. /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidProvider.d.ts +0 -0
  3585. /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/MiddlewareStack.d.ts +0 -0
  3586. /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/types.d.ts +0 -0
  3587. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/NoOpLogger.d.ts +0 -0
  3588. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/constants.d.ts +0 -0
  3589. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/defaults-mode.d.ts +0 -0
  3590. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/extensions/retry.d.ts +0 -0
  3591. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/is-serializable-header-value.d.ts +0 -0
  3592. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/schemaLogFilter.d.ts +0 -0
  3593. /package/node_modules/@smithy/{util-middleware/dist-types → core/dist-types/submodules/client/util-middleware}/normalizeProvider.d.ts +0 -0
  3594. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -0
  3595. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -0
  3596. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/checkRegion.d.ts +0 -0
  3597. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/getRealRegion.d.ts +0 -0
  3598. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/isFipsRegion.d.ts +0 -0
  3599. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.d.ts +0 -0
  3600. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariant.d.ts +0 -0
  3601. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.d.ts +0 -0
  3602. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/PartitionHash.d.ts +0 -0
  3603. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/RegionHash.d.ts +0 -0
  3604. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.d.ts +0 -0
  3605. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getRegionInfo.d.ts +0 -0
  3606. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedHostname.d.ts +0 -0
  3607. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedPartition.d.ts +0 -0
  3608. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.d.ts +0 -0
  3609. /package/node_modules/@smithy/{util-defaults-mode-node/dist-types → core/dist-types/submodules/config/defaults-mode}/constants.d.ts +0 -0
  3610. /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromEnv.d.ts +0 -0
  3611. /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromStatic.d.ts +0 -0
  3612. /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/getSelectorName.d.ts +0 -0
  3613. /package/node_modules/@smithy/{property-provider/dist-types → core/dist-types/submodules/config/property-provider}/memoize.d.ts +0 -0
  3614. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/constants.d.ts +0 -0
  3615. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/externalDataInterceptor.d.ts +0 -0
  3616. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getConfigFilepath.d.ts +0 -0
  3617. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getCredentialsFilepath.d.ts +0 -0
  3618. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getHomeDir.d.ts +0 -0
  3619. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getProfileName.d.ts +0 -0
  3620. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getSSOTokenFilepath.d.ts +0 -0
  3621. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSharedConfigFiles.d.ts +0 -0
  3622. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSsoSessionData.d.ts +0 -0
  3623. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/mergeConfigFiles.d.ts +0 -0
  3624. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/readFile.d.ts +0 -0
  3625. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/types.d.ts +0 -0
  3626. /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/booleanSelector.d.ts +0 -0
  3627. /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/numberSelector.d.ts +0 -0
  3628. /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/types.d.ts +0 -0
  3629. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.d.ts +0 -0
  3630. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.d.ts +0 -0
  3631. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.d.ts +0 -0
  3632. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/service-customizations/index.d.ts +0 -0
  3633. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/service-customizations/s3.d.ts +0 -0
  3634. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/types.d.ts +0 -0
  3635. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/bdd/BinaryDecisionDiagram.d.ts +0 -0
  3636. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/debugId.d.ts +0 -0
  3637. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/index.d.ts +0 -0
  3638. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/toDebugString.d.ts +0 -0
  3639. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/booleanEquals.d.ts +0 -0
  3640. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/coalesce.d.ts +0 -0
  3641. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttr.d.ts +0 -0
  3642. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttrPathList.d.ts +0 -0
  3643. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/index.d.ts +0 -0
  3644. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isIpAddress.d.ts +0 -0
  3645. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isSet.d.ts +0 -0
  3646. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isValidHostLabel.d.ts +0 -0
  3647. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/ite.d.ts +0 -0
  3648. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/not.d.ts +0 -0
  3649. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/split.d.ts +0 -0
  3650. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/stringEquals.d.ts +0 -0
  3651. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/substring.d.ts +0 -0
  3652. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/uriEncode.d.ts +0 -0
  3653. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointError.d.ts +0 -0
  3654. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointFunctions.d.ts +0 -0
  3655. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.d.ts +0 -0
  3656. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.d.ts +0 -0
  3657. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/RuleSetObject.d.ts +0 -0
  3658. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/TreeRuleObject.d.ts +0 -0
  3659. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/index.d.ts +0 -0
  3660. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/shared.d.ts +0 -0
  3661. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/callFunction.d.ts +0 -0
  3662. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.d.ts +0 -0
  3663. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/endpointFunctions.d.ts +0 -0
  3664. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateConditions.d.ts +0 -0
  3665. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateEndpointRule.d.ts +0 -0
  3666. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTemplate.d.ts +0 -0
  3667. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.d.ts +0 -0
  3668. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.d.ts +0 -0
  3669. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/getReferenceValue.d.ts +0 -0
  3670. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/index.d.ts +0 -0
  3671. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/HeaderMarshaller.d.ts +0 -0
  3672. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Int64.d.ts +0 -0
  3673. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Message.d.ts +0 -0
  3674. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageDecoderStream.d.ts +0 -0
  3675. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageEncoderStream.d.ts +0 -0
  3676. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.d.ts +0 -0
  3677. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.d.ts +0 -0
  3678. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/TestVectors.fixture.d.ts +0 -0
  3679. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/splitMessage.d.ts +0 -0
  3680. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/vectorTypes.fixture.d.ts +0 -0
  3681. /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.d.ts +0 -0
  3682. /package/node_modules/@smithy/{eventstream-serde-universal/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.d.ts +0 -0
  3683. /package/node_modules/@smithy/{middleware-content-length/dist-types/index.d.ts → core/dist-types/submodules/protocols/middleware-content-length/contentLengthMiddleware.d.ts} +0 -0
  3684. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/Fields.d.ts +0 -0
  3685. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/httpResponse.d.ts +0 -0
  3686. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/isValidHostname.d.ts +0 -0
  3687. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/types.d.ts +0 -0
  3688. /package/node_modules/@smithy/{querystring-builder/dist-types/index.d.ts → core/dist-types/submodules/protocols/querystring-builder/buildQueryString.d.ts} +0 -0
  3689. /package/node_modules/@smithy/{querystring-parser/dist-types/index.d.ts → core/dist-types/submodules/protocols/querystring-parser/parseQueryString.d.ts} +0 -0
  3690. /package/node_modules/@smithy/{url-parser/dist-types/index.d.ts → core/dist-types/submodules/protocols/url-parser/parseUrl.d.ts} +0 -0
  3691. /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri-path.d.ts +0 -0
  3692. /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri.d.ts +0 -0
  3693. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/longPollMiddleware.d.ts +0 -0
  3694. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/omitRetryHeadersMiddleware.d.ts +0 -0
  3695. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/parseRetryAfterHeader.d.ts +0 -0
  3696. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +0 -0
  3697. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +0 -0
  3698. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/delayDecider.d.ts +0 -0
  3699. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/retryDecider.d.ts +0 -0
  3700. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/types.d.ts +0 -0
  3701. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/util.d.ts +0 -0
  3702. /package/node_modules/@smithy/{service-error-classification/dist-types → core/dist-types/submodules/retry/service-error-classification}/constants.d.ts +0 -0
  3703. /package/node_modules/@smithy/{service-error-classification/dist-types/index.d.ts → core/dist-types/submodules/retry/service-error-classification/service-error-classification.d.ts} +0 -0
  3704. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/ConfiguredRetryStrategy.d.ts +0 -0
  3705. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRateLimiter.d.ts +0 -0
  3706. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.d.ts +0 -0
  3707. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRetryToken.d.ts +0 -0
  3708. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/StandardRetryStrategy.d.ts +0 -0
  3709. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/config.d.ts +0 -0
  3710. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/types.d.ts +0 -0
  3711. /package/node_modules/@smithy/{hash-node/dist-types/index.d.ts → core/dist-types/submodules/serde/hash-node/hash-node.d.ts} +0 -0
  3712. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts → @smithy/core/dist-types/submodules/serde/is-array-buffer/is-array-buffer.d.ts} +0 -0
  3713. /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/deserializerMiddleware.d.ts +0 -0
  3714. /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serdePlugin.d.ts +0 -0
  3715. /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serializerMiddleware.d.ts +0 -0
  3716. /package/node_modules/@smithy/{util-base64/dist-types/constants.browser.d.ts → core/dist-types/submodules/serde/util-base64/constants-for-browser.d.ts} +0 -0
  3717. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.browser.d.ts +0 -0
  3718. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.d.ts +0 -0
  3719. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.browser.d.ts +0 -0
  3720. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.d.ts +0 -0
  3721. /package/node_modules/@smithy/{util-body-length-browser/dist-types/calculateBodyLength.d.ts → core/dist-types/submodules/serde/util-body-length/calculateBodyLength.browser.d.ts} +0 -0
  3722. /package/node_modules/@smithy/{util-body-length-node/dist-types → core/dist-types/submodules/serde/util-body-length}/calculateBodyLength.d.ts +0 -0
  3723. /package/node_modules/@smithy/{util-hex-encoding/dist-types/index.d.ts → core/dist-types/submodules/serde/util-hex-encoding/hex-encoding.d.ts} +0 -0
  3724. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/ByteArrayCollector.d.ts +0 -0
  3725. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/checksum/ChecksumStream.browser.d.ts +0 -0
  3726. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.d.ts +0 -0
  3727. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/headStream.browser.d.ts +0 -0
  3728. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/sdk-stream-mixin.browser.d.ts +0 -0
  3729. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/splitStream.browser.d.ts +0 -0
  3730. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/stream-type-check.d.ts +0 -0
  3731. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/fromUtf8.browser.d.ts +0 -0
  3732. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/fromUtf8.d.ts +0 -0
  3733. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUint8Array.d.ts +0 -0
  3734. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUtf8.browser.d.ts +0 -0
  3735. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUtf8.d.ts +0 -0
  3736. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/fromUtf8.browser.js +0 -0
  3737. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/fromUtf8.js +0 -0
  3738. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUint8Array.js +0 -0
  3739. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUtf8.browser.js +0 -0
  3740. /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUtf8.js +0 -0
@@ -0,0 +1,3707 @@
1
+ // Port of python's argparse module, version 3.9.0:
2
+ // https://github.com/python/cpython/blob/v3.9.0rc1/Lib/argparse.py
3
+
4
+ 'use strict'
5
+
6
+ // Copyright (C) 2010-2020 Python Software Foundation.
7
+ // Copyright (C) 2020 argparse.js authors
8
+
9
+ /*
10
+ * Command-line parsing library
11
+ *
12
+ * This module is an optparse-inspired command-line parsing library that:
13
+ *
14
+ * - handles both optional and positional arguments
15
+ * - produces highly informative usage messages
16
+ * - supports parsers that dispatch to sub-parsers
17
+ *
18
+ * The following is a simple usage example that sums integers from the
19
+ * command-line and writes the result to a file::
20
+ *
21
+ * parser = argparse.ArgumentParser(
22
+ * description='sum the integers at the command line')
23
+ * parser.add_argument(
24
+ * 'integers', metavar='int', nargs='+', type=int,
25
+ * help='an integer to be summed')
26
+ * parser.add_argument(
27
+ * '--log', default=sys.stdout, type=argparse.FileType('w'),
28
+ * help='the file where the sum should be written')
29
+ * args = parser.parse_args()
30
+ * args.log.write('%s' % sum(args.integers))
31
+ * args.log.close()
32
+ *
33
+ * The module contains the following public classes:
34
+ *
35
+ * - ArgumentParser -- The main entry point for command-line parsing. As the
36
+ * example above shows, the add_argument() method is used to populate
37
+ * the parser with actions for optional and positional arguments. Then
38
+ * the parse_args() method is invoked to convert the args at the
39
+ * command-line into an object with attributes.
40
+ *
41
+ * - ArgumentError -- The exception raised by ArgumentParser objects when
42
+ * there are errors with the parser's actions. Errors raised while
43
+ * parsing the command-line are caught by ArgumentParser and emitted
44
+ * as command-line messages.
45
+ *
46
+ * - FileType -- A factory for defining types of files to be created. As the
47
+ * example above shows, instances of FileType are typically passed as
48
+ * the type= argument of add_argument() calls.
49
+ *
50
+ * - Action -- The base class for parser actions. Typically actions are
51
+ * selected by passing strings like 'store_true' or 'append_const' to
52
+ * the action= argument of add_argument(). However, for greater
53
+ * customization of ArgumentParser actions, subclasses of Action may
54
+ * be defined and passed as the action= argument.
55
+ *
56
+ * - HelpFormatter, RawDescriptionHelpFormatter, RawTextHelpFormatter,
57
+ * ArgumentDefaultsHelpFormatter -- Formatter classes which
58
+ * may be passed as the formatter_class= argument to the
59
+ * ArgumentParser constructor. HelpFormatter is the default,
60
+ * RawDescriptionHelpFormatter and RawTextHelpFormatter tell the parser
61
+ * not to change the formatting for help text, and
62
+ * ArgumentDefaultsHelpFormatter adds information about argument defaults
63
+ * to the help.
64
+ *
65
+ * All other classes in this module are considered implementation details.
66
+ * (Also note that HelpFormatter and RawDescriptionHelpFormatter are only
67
+ * considered public as object names -- the API of the formatter objects is
68
+ * still considered an implementation detail.)
69
+ */
70
+
71
+ const SUPPRESS = '==SUPPRESS=='
72
+
73
+ const OPTIONAL = '?'
74
+ const ZERO_OR_MORE = '*'
75
+ const ONE_OR_MORE = '+'
76
+ const PARSER = 'A...'
77
+ const REMAINDER = '...'
78
+ const _UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args'
79
+
80
+
81
+ // ==================================
82
+ // Utility functions used for porting
83
+ // ==================================
84
+ const assert = require('assert')
85
+ const util = require('util')
86
+ const fs = require('fs')
87
+ const sub = require('./lib/sub')
88
+ const path = require('path')
89
+ const repr = util.inspect
90
+
91
+ function get_argv() {
92
+ // omit first argument (which is assumed to be interpreter - `node`, `coffee`, `ts-node`, etc.)
93
+ return process.argv.slice(1)
94
+ }
95
+
96
+ function get_terminal_size() {
97
+ return {
98
+ columns: +process.env.COLUMNS || process.stdout.columns || 80
99
+ }
100
+ }
101
+
102
+ function hasattr(object, name) {
103
+ return Object.prototype.hasOwnProperty.call(object, name)
104
+ }
105
+
106
+ function getattr(object, name, value) {
107
+ return hasattr(object, name) ? object[name] : value
108
+ }
109
+
110
+ function setattr(object, name, value) {
111
+ object[name] = value
112
+ }
113
+
114
+ function setdefault(object, name, value) {
115
+ if (!hasattr(object, name)) object[name] = value
116
+ return object[name]
117
+ }
118
+
119
+ function delattr(object, name) {
120
+ delete object[name]
121
+ }
122
+
123
+ function range(from, to, step=1) {
124
+ // range(10) is equivalent to range(0, 10)
125
+ if (arguments.length === 1) [ to, from ] = [ from, 0 ]
126
+ if (typeof from !== 'number' || typeof to !== 'number' || typeof step !== 'number') {
127
+ throw new TypeError('argument cannot be interpreted as an integer')
128
+ }
129
+ if (step === 0) throw new TypeError('range() arg 3 must not be zero')
130
+
131
+ let result = []
132
+ if (step > 0) {
133
+ for (let i = from; i < to; i += step) result.push(i)
134
+ } else {
135
+ for (let i = from; i > to; i += step) result.push(i)
136
+ }
137
+ return result
138
+ }
139
+
140
+ function splitlines(str, keepends = false) {
141
+ let result
142
+ if (!keepends) {
143
+ result = str.split(/\r\n|[\n\r\v\f\x1c\x1d\x1e\x85\u2028\u2029]/)
144
+ } else {
145
+ result = []
146
+ let parts = str.split(/(\r\n|[\n\r\v\f\x1c\x1d\x1e\x85\u2028\u2029])/)
147
+ for (let i = 0; i < parts.length; i += 2) {
148
+ result.push(parts[i] + (i + 1 < parts.length ? parts[i + 1] : ''))
149
+ }
150
+ }
151
+ if (!result[result.length - 1]) result.pop()
152
+ return result
153
+ }
154
+
155
+ function _string_lstrip(string, prefix_chars) {
156
+ let idx = 0
157
+ while (idx < string.length && prefix_chars.includes(string[idx])) idx++
158
+ return idx ? string.slice(idx) : string
159
+ }
160
+
161
+ function _string_split(string, sep, maxsplit) {
162
+ let result = string.split(sep)
163
+ if (result.length > maxsplit) {
164
+ result = result.slice(0, maxsplit).concat([ result.slice(maxsplit).join(sep) ])
165
+ }
166
+ return result
167
+ }
168
+
169
+ function _array_equal(array1, array2) {
170
+ if (array1.length !== array2.length) return false
171
+ for (let i = 0; i < array1.length; i++) {
172
+ if (array1[i] !== array2[i]) return false
173
+ }
174
+ return true
175
+ }
176
+
177
+ function _array_remove(array, item) {
178
+ let idx = array.indexOf(item)
179
+ if (idx === -1) throw new TypeError(sub('%r not in list', item))
180
+ array.splice(idx, 1)
181
+ }
182
+
183
+ // normalize choices to array;
184
+ // this isn't required in python because `in` and `map` operators work with anything,
185
+ // but in js dealing with multiple types here is too clunky
186
+ function _choices_to_array(choices) {
187
+ if (choices === undefined) {
188
+ return []
189
+ } else if (Array.isArray(choices)) {
190
+ return choices
191
+ } else if (choices !== null && typeof choices[Symbol.iterator] === 'function') {
192
+ return Array.from(choices)
193
+ } else if (typeof choices === 'object' && choices !== null) {
194
+ return Object.keys(choices)
195
+ } else {
196
+ throw new Error(sub('invalid choices value: %r', choices))
197
+ }
198
+ }
199
+
200
+ // decorator that allows a class to be called without new
201
+ function _callable(cls) {
202
+ let result = { // object is needed for inferred class name
203
+ [cls.name]: function (...args) {
204
+ let this_class = new.target === result || !new.target
205
+ return Reflect.construct(cls, args, this_class ? cls : new.target)
206
+ }
207
+ }
208
+ result[cls.name].prototype = cls.prototype
209
+ // fix default tag for toString, e.g. [object Action] instead of [object Object]
210
+ cls.prototype[Symbol.toStringTag] = cls.name
211
+ return result[cls.name]
212
+ }
213
+
214
+ function _alias(object, from, to) {
215
+ try {
216
+ let name = object.constructor.name
217
+ Object.defineProperty(object, from, {
218
+ value: util.deprecate(object[to], sub('%s.%s() is renamed to %s.%s()',
219
+ name, from, name, to)),
220
+ enumerable: false
221
+ })
222
+ } catch {}
223
+ }
224
+
225
+ // decorator that allows snake_case class methods to be called with camelCase and vice versa
226
+ function _camelcase_alias(_class) {
227
+ for (let name of Object.getOwnPropertyNames(_class.prototype)) {
228
+ let camelcase = name.replace(/\w_[a-z]/g, s => s[0] + s[2].toUpperCase())
229
+ if (camelcase !== name) _alias(_class.prototype, camelcase, name)
230
+ }
231
+ return _class
232
+ }
233
+
234
+ function _to_legacy_name(key) {
235
+ key = key.replace(/\w_[a-z]/g, s => s[0] + s[2].toUpperCase())
236
+ if (key === 'default') key = 'defaultValue'
237
+ if (key === 'const') key = 'constant'
238
+ return key
239
+ }
240
+
241
+ function _to_new_name(key) {
242
+ if (key === 'defaultValue') key = 'default'
243
+ if (key === 'constant') key = 'const'
244
+ key = key.replace(/[A-Z]/g, c => '_' + c.toLowerCase())
245
+ return key
246
+ }
247
+
248
+ // parse options
249
+ let no_default = Symbol('no_default_value')
250
+ function _parse_opts(args, descriptor) {
251
+ function get_name() {
252
+ let stack = new Error().stack.split('\n')
253
+ .map(x => x.match(/^ at (.*) \(.*\)$/))
254
+ .filter(Boolean)
255
+ .map(m => m[1])
256
+ .map(fn => fn.match(/[^ .]*$/)[0])
257
+
258
+ if (stack.length && stack[0] === get_name.name) stack.shift()
259
+ if (stack.length && stack[0] === _parse_opts.name) stack.shift()
260
+ return stack.length ? stack[0] : ''
261
+ }
262
+
263
+ args = Array.from(args)
264
+ let kwargs = {}
265
+ let result = []
266
+ let last_opt = args.length && args[args.length - 1]
267
+
268
+ if (typeof last_opt === 'object' && last_opt !== null && !Array.isArray(last_opt) &&
269
+ (!last_opt.constructor || last_opt.constructor.name === 'Object')) {
270
+ kwargs = Object.assign({}, args.pop())
271
+ }
272
+
273
+ // LEGACY (v1 compatibility): camelcase
274
+ let renames = []
275
+ for (let key of Object.keys(descriptor)) {
276
+ let old_name = _to_legacy_name(key)
277
+ if (old_name !== key && (old_name in kwargs)) {
278
+ if (key in kwargs) {
279
+ // default and defaultValue specified at the same time, happens often in old tests
280
+ //throw new TypeError(sub('%s() got multiple values for argument %r', get_name(), key))
281
+ } else {
282
+ kwargs[key] = kwargs[old_name]
283
+ }
284
+ renames.push([ old_name, key ])
285
+ delete kwargs[old_name]
286
+ }
287
+ }
288
+ if (renames.length) {
289
+ let name = get_name()
290
+ deprecate('camelcase_' + name, sub('%s(): following options are renamed: %s',
291
+ name, renames.map(([ a, b ]) => sub('%r -> %r', a, b))))
292
+ }
293
+ // end
294
+
295
+ let missing_positionals = []
296
+ let positional_count = args.length
297
+
298
+ for (let [ key, def ] of Object.entries(descriptor)) {
299
+ if (key[0] === '*') {
300
+ if (key.length > 0 && key[1] === '*') {
301
+ // LEGACY (v1 compatibility): camelcase
302
+ let renames = []
303
+ for (let key of Object.keys(kwargs)) {
304
+ let new_name = _to_new_name(key)
305
+ if (new_name !== key && (key in kwargs)) {
306
+ if (new_name in kwargs) {
307
+ // default and defaultValue specified at the same time, happens often in old tests
308
+ //throw new TypeError(sub('%s() got multiple values for argument %r', get_name(), new_name))
309
+ } else {
310
+ kwargs[new_name] = kwargs[key]
311
+ }
312
+ renames.push([ key, new_name ])
313
+ delete kwargs[key]
314
+ }
315
+ }
316
+ if (renames.length) {
317
+ let name = get_name()
318
+ deprecate('camelcase_' + name, sub('%s(): following options are renamed: %s',
319
+ name, renames.map(([ a, b ]) => sub('%r -> %r', a, b))))
320
+ }
321
+ // end
322
+ result.push(kwargs)
323
+ kwargs = {}
324
+ } else {
325
+ result.push(args)
326
+ args = []
327
+ }
328
+ } else if (key in kwargs && args.length > 0) {
329
+ throw new TypeError(sub('%s() got multiple values for argument %r', get_name(), key))
330
+ } else if (key in kwargs) {
331
+ result.push(kwargs[key])
332
+ delete kwargs[key]
333
+ } else if (args.length > 0) {
334
+ result.push(args.shift())
335
+ } else if (def !== no_default) {
336
+ result.push(def)
337
+ } else {
338
+ missing_positionals.push(key)
339
+ }
340
+ }
341
+
342
+ if (Object.keys(kwargs).length) {
343
+ throw new TypeError(sub('%s() got an unexpected keyword argument %r',
344
+ get_name(), Object.keys(kwargs)[0]))
345
+ }
346
+
347
+ if (args.length) {
348
+ let from = Object.entries(descriptor).filter(([ k, v ]) => k[0] !== '*' && v !== no_default).length
349
+ let to = Object.entries(descriptor).filter(([ k ]) => k[0] !== '*').length
350
+ throw new TypeError(sub('%s() takes %s positional argument%s but %s %s given',
351
+ get_name(),
352
+ from === to ? sub('from %s to %s', from, to) : to,
353
+ from === to && to === 1 ? '' : 's',
354
+ positional_count,
355
+ positional_count === 1 ? 'was' : 'were'))
356
+ }
357
+
358
+ if (missing_positionals.length) {
359
+ let strs = missing_positionals.map(repr)
360
+ if (strs.length > 1) strs[strs.length - 1] = 'and ' + strs[strs.length - 1]
361
+ let str_joined = strs.join(strs.length === 2 ? '' : ', ')
362
+ throw new TypeError(sub('%s() missing %i required positional argument%s: %s',
363
+ get_name(), strs.length, strs.length === 1 ? '' : 's', str_joined))
364
+ }
365
+
366
+ return result
367
+ }
368
+
369
+ let _deprecations = {}
370
+ function deprecate(id, string) {
371
+ _deprecations[id] = _deprecations[id] || util.deprecate(() => {}, string)
372
+ _deprecations[id]()
373
+ }
374
+
375
+
376
+ // =============================
377
+ // Utility functions and classes
378
+ // =============================
379
+ function _AttributeHolder(cls = Object) {
380
+ /*
381
+ * Abstract base class that provides __repr__.
382
+ *
383
+ * The __repr__ method returns a string in the format::
384
+ * ClassName(attr=name, attr=name, ...)
385
+ * The attributes are determined either by a class-level attribute,
386
+ * '_kwarg_names', or by inspecting the instance __dict__.
387
+ */
388
+
389
+ return class _AttributeHolder extends cls {
390
+ [util.inspect.custom]() {
391
+ let type_name = this.constructor.name
392
+ let arg_strings = []
393
+ let star_args = {}
394
+ for (let arg of this._get_args()) {
395
+ arg_strings.push(repr(arg))
396
+ }
397
+ for (let [ name, value ] of this._get_kwargs()) {
398
+ if (/^[a-z_][a-z0-9_$]*$/i.test(name)) {
399
+ arg_strings.push(sub('%s=%r', name, value))
400
+ } else {
401
+ star_args[name] = value
402
+ }
403
+ }
404
+ if (Object.keys(star_args).length) {
405
+ arg_strings.push(sub('**%s', repr(star_args)))
406
+ }
407
+ return sub('%s(%s)', type_name, arg_strings.join(', '))
408
+ }
409
+
410
+ toString() {
411
+ return this[util.inspect.custom]()
412
+ }
413
+
414
+ _get_kwargs() {
415
+ return Object.entries(this)
416
+ }
417
+
418
+ _get_args() {
419
+ return []
420
+ }
421
+ }
422
+ }
423
+
424
+
425
+ function _copy_items(items) {
426
+ if (items === undefined) {
427
+ return []
428
+ }
429
+ return items.slice(0)
430
+ }
431
+
432
+
433
+ // ===============
434
+ // Formatting Help
435
+ // ===============
436
+ const HelpFormatter = _camelcase_alias(_callable(class HelpFormatter {
437
+ /*
438
+ * Formatter for generating usage messages and argument help strings.
439
+ *
440
+ * Only the name of this class is considered a public API. All the methods
441
+ * provided by the class are considered an implementation detail.
442
+ */
443
+
444
+ constructor() {
445
+ let [
446
+ prog,
447
+ indent_increment,
448
+ max_help_position,
449
+ width
450
+ ] = _parse_opts(arguments, {
451
+ prog: no_default,
452
+ indent_increment: 2,
453
+ max_help_position: 24,
454
+ width: undefined
455
+ })
456
+
457
+ // default setting for width
458
+ if (width === undefined) {
459
+ width = get_terminal_size().columns
460
+ width -= 2
461
+ }
462
+
463
+ this._prog = prog
464
+ this._indent_increment = indent_increment
465
+ this._max_help_position = Math.min(max_help_position,
466
+ Math.max(width - 20, indent_increment * 2))
467
+ this._width = width
468
+
469
+ this._current_indent = 0
470
+ this._level = 0
471
+ this._action_max_length = 0
472
+
473
+ this._root_section = this._Section(this, undefined)
474
+ this._current_section = this._root_section
475
+
476
+ this._whitespace_matcher = /[ \t\n\r\f\v]+/g // equivalent to python /\s+/ with ASCII flag
477
+ this._long_break_matcher = /\n\n\n+/g
478
+ }
479
+
480
+ // ===============================
481
+ // Section and indentation methods
482
+ // ===============================
483
+ _indent() {
484
+ this._current_indent += this._indent_increment
485
+ this._level += 1
486
+ }
487
+
488
+ _dedent() {
489
+ this._current_indent -= this._indent_increment
490
+ assert(this._current_indent >= 0, 'Indent decreased below 0.')
491
+ this._level -= 1
492
+ }
493
+
494
+ _add_item(func, args) {
495
+ this._current_section.items.push([ func, args ])
496
+ }
497
+
498
+ // ========================
499
+ // Message building methods
500
+ // ========================
501
+ start_section(heading) {
502
+ this._indent()
503
+ let section = this._Section(this, this._current_section, heading)
504
+ this._add_item(section.format_help.bind(section), [])
505
+ this._current_section = section
506
+ }
507
+
508
+ end_section() {
509
+ this._current_section = this._current_section.parent
510
+ this._dedent()
511
+ }
512
+
513
+ add_text(text) {
514
+ if (text !== SUPPRESS && text !== undefined) {
515
+ this._add_item(this._format_text.bind(this), [text])
516
+ }
517
+ }
518
+
519
+ add_usage(usage, actions, groups, prefix = undefined) {
520
+ if (usage !== SUPPRESS) {
521
+ let args = [ usage, actions, groups, prefix ]
522
+ this._add_item(this._format_usage.bind(this), args)
523
+ }
524
+ }
525
+
526
+ add_argument(action) {
527
+ if (action.help !== SUPPRESS) {
528
+
529
+ // find all invocations
530
+ let invocations = [this._format_action_invocation(action)]
531
+ for (let subaction of this._iter_indented_subactions(action)) {
532
+ invocations.push(this._format_action_invocation(subaction))
533
+ }
534
+
535
+ // update the maximum item length
536
+ let invocation_length = Math.max(...invocations.map(invocation => invocation.length))
537
+ let action_length = invocation_length + this._current_indent
538
+ this._action_max_length = Math.max(this._action_max_length,
539
+ action_length)
540
+
541
+ // add the item to the list
542
+ this._add_item(this._format_action.bind(this), [action])
543
+ }
544
+ }
545
+
546
+ add_arguments(actions) {
547
+ for (let action of actions) {
548
+ this.add_argument(action)
549
+ }
550
+ }
551
+
552
+ // =======================
553
+ // Help-formatting methods
554
+ // =======================
555
+ format_help() {
556
+ let help = this._root_section.format_help()
557
+ if (help) {
558
+ help = help.replace(this._long_break_matcher, '\n\n')
559
+ help = help.replace(/^\n+|\n+$/g, '') + '\n'
560
+ }
561
+ return help
562
+ }
563
+
564
+ _join_parts(part_strings) {
565
+ return part_strings.filter(part => part && part !== SUPPRESS).join('')
566
+ }
567
+
568
+ _format_usage(usage, actions, groups, prefix) {
569
+ if (prefix === undefined) {
570
+ prefix = 'usage: '
571
+ }
572
+
573
+ // if usage is specified, use that
574
+ if (usage !== undefined) {
575
+ usage = sub(usage, { prog: this._prog })
576
+
577
+ // if no optionals or positionals are available, usage is just prog
578
+ } else if (usage === undefined && !actions.length) {
579
+ usage = sub('%(prog)s', { prog: this._prog })
580
+
581
+ // if optionals and positionals are available, calculate usage
582
+ } else if (usage === undefined) {
583
+ let prog = sub('%(prog)s', { prog: this._prog })
584
+
585
+ // split optionals from positionals
586
+ let optionals = []
587
+ let positionals = []
588
+ for (let action of actions) {
589
+ if (action.option_strings.length) {
590
+ optionals.push(action)
591
+ } else {
592
+ positionals.push(action)
593
+ }
594
+ }
595
+
596
+ // build full usage string
597
+ let action_usage = this._format_actions_usage([].concat(optionals).concat(positionals), groups)
598
+ usage = [ prog, action_usage ].map(String).join(' ')
599
+
600
+ // wrap the usage parts if it's too long
601
+ let text_width = this._width - this._current_indent
602
+ if (prefix.length + usage.length > text_width) {
603
+
604
+ // break usage into wrappable parts
605
+ let part_regexp = /\(.*?\)+(?=\s|$)|\[.*?\]+(?=\s|$)|\S+/g
606
+ let opt_usage = this._format_actions_usage(optionals, groups)
607
+ let pos_usage = this._format_actions_usage(positionals, groups)
608
+ let opt_parts = opt_usage.match(part_regexp) || []
609
+ let pos_parts = pos_usage.match(part_regexp) || []
610
+ assert(opt_parts.join(' ') === opt_usage)
611
+ assert(pos_parts.join(' ') === pos_usage)
612
+
613
+ // helper for wrapping lines
614
+ let get_lines = (parts, indent, prefix = undefined) => {
615
+ let lines = []
616
+ let line = []
617
+ let line_len
618
+ if (prefix !== undefined) {
619
+ line_len = prefix.length - 1
620
+ } else {
621
+ line_len = indent.length - 1
622
+ }
623
+ for (let part of parts) {
624
+ if (line_len + 1 + part.length > text_width && line) {
625
+ lines.push(indent + line.join(' '))
626
+ line = []
627
+ line_len = indent.length - 1
628
+ }
629
+ line.push(part)
630
+ line_len += part.length + 1
631
+ }
632
+ if (line.length) {
633
+ lines.push(indent + line.join(' '))
634
+ }
635
+ if (prefix !== undefined) {
636
+ lines[0] = lines[0].slice(indent.length)
637
+ }
638
+ return lines
639
+ }
640
+
641
+ let lines
642
+
643
+ // if prog is short, follow it with optionals or positionals
644
+ if (prefix.length + prog.length <= 0.75 * text_width) {
645
+ let indent = ' '.repeat(prefix.length + prog.length + 1)
646
+ if (opt_parts.length) {
647
+ lines = get_lines([prog].concat(opt_parts), indent, prefix)
648
+ lines = lines.concat(get_lines(pos_parts, indent))
649
+ } else if (pos_parts.length) {
650
+ lines = get_lines([prog].concat(pos_parts), indent, prefix)
651
+ } else {
652
+ lines = [prog]
653
+ }
654
+
655
+ // if prog is long, put it on its own line
656
+ } else {
657
+ let indent = ' '.repeat(prefix.length)
658
+ let parts = [].concat(opt_parts).concat(pos_parts)
659
+ lines = get_lines(parts, indent)
660
+ if (lines.length > 1) {
661
+ lines = []
662
+ lines = lines.concat(get_lines(opt_parts, indent))
663
+ lines = lines.concat(get_lines(pos_parts, indent))
664
+ }
665
+ lines = [prog].concat(lines)
666
+ }
667
+
668
+ // join lines into usage
669
+ usage = lines.join('\n')
670
+ }
671
+ }
672
+
673
+ // prefix with 'usage:'
674
+ return sub('%s%s\n\n', prefix, usage)
675
+ }
676
+
677
+ _format_actions_usage(actions, groups) {
678
+ // find group indices and identify actions in groups
679
+ let group_actions = new Set()
680
+ let inserts = {}
681
+ for (let group of groups) {
682
+ let start = actions.indexOf(group._group_actions[0])
683
+ if (start === -1) {
684
+ continue
685
+ } else {
686
+ let end = start + group._group_actions.length
687
+ if (_array_equal(actions.slice(start, end), group._group_actions)) {
688
+ for (let action of group._group_actions) {
689
+ group_actions.add(action)
690
+ }
691
+ if (!group.required) {
692
+ if (start in inserts) {
693
+ inserts[start] += ' ['
694
+ } else {
695
+ inserts[start] = '['
696
+ }
697
+ if (end in inserts) {
698
+ inserts[end] += ']'
699
+ } else {
700
+ inserts[end] = ']'
701
+ }
702
+ } else {
703
+ if (start in inserts) {
704
+ inserts[start] += ' ('
705
+ } else {
706
+ inserts[start] = '('
707
+ }
708
+ if (end in inserts) {
709
+ inserts[end] += ')'
710
+ } else {
711
+ inserts[end] = ')'
712
+ }
713
+ }
714
+ for (let i of range(start + 1, end)) {
715
+ inserts[i] = '|'
716
+ }
717
+ }
718
+ }
719
+ }
720
+
721
+ // collect all actions format strings
722
+ let parts = []
723
+ for (let [ i, action ] of Object.entries(actions)) {
724
+
725
+ // suppressed arguments are marked with None
726
+ // remove | separators for suppressed arguments
727
+ if (action.help === SUPPRESS) {
728
+ parts.push(undefined)
729
+ if (inserts[+i] === '|') {
730
+ delete inserts[+i]
731
+ } else if (inserts[+i + 1] === '|') {
732
+ delete inserts[+i + 1]
733
+ }
734
+
735
+ // produce all arg strings
736
+ } else if (!action.option_strings.length) {
737
+ let default_value = this._get_default_metavar_for_positional(action)
738
+ let part = this._format_args(action, default_value)
739
+
740
+ // if it's in a group, strip the outer []
741
+ if (group_actions.has(action)) {
742
+ if (part[0] === '[' && part[part.length - 1] === ']') {
743
+ part = part.slice(1, -1)
744
+ }
745
+ }
746
+
747
+ // add the action string to the list
748
+ parts.push(part)
749
+
750
+ // produce the first way to invoke the option in brackets
751
+ } else {
752
+ let option_string = action.option_strings[0]
753
+ let part
754
+
755
+ // if the Optional doesn't take a value, format is:
756
+ // -s or --long
757
+ if (action.nargs === 0) {
758
+ part = action.format_usage()
759
+
760
+ // if the Optional takes a value, format is:
761
+ // -s ARGS or --long ARGS
762
+ } else {
763
+ let default_value = this._get_default_metavar_for_optional(action)
764
+ let args_string = this._format_args(action, default_value)
765
+ part = sub('%s %s', option_string, args_string)
766
+ }
767
+
768
+ // make it look optional if it's not required or in a group
769
+ if (!action.required && !group_actions.has(action)) {
770
+ part = sub('[%s]', part)
771
+ }
772
+
773
+ // add the action string to the list
774
+ parts.push(part)
775
+ }
776
+ }
777
+
778
+ // insert things at the necessary indices
779
+ for (let i of Object.keys(inserts).map(Number).sort((a, b) => b - a)) {
780
+ parts.splice(+i, 0, inserts[+i])
781
+ }
782
+
783
+ // join all the action items with spaces
784
+ let text = parts.filter(Boolean).join(' ')
785
+
786
+ // clean up separators for mutually exclusive groups
787
+ text = text.replace(/([\[(]) /g, '$1')
788
+ text = text.replace(/ ([\])])/g, '$1')
789
+ text = text.replace(/[\[(] *[\])]/g, '')
790
+ text = text.replace(/\(([^|]*)\)/g, '$1', text)
791
+ text = text.trim()
792
+
793
+ // return the text
794
+ return text
795
+ }
796
+
797
+ _format_text(text) {
798
+ if (text.includes('%(prog)')) {
799
+ text = sub(text, { prog: this._prog })
800
+ }
801
+ let text_width = Math.max(this._width - this._current_indent, 11)
802
+ let indent = ' '.repeat(this._current_indent)
803
+ return this._fill_text(text, text_width, indent) + '\n\n'
804
+ }
805
+
806
+ _format_action(action) {
807
+ // determine the required width and the entry label
808
+ let help_position = Math.min(this._action_max_length + 2,
809
+ this._max_help_position)
810
+ let help_width = Math.max(this._width - help_position, 11)
811
+ let action_width = help_position - this._current_indent - 2
812
+ let action_header = this._format_action_invocation(action)
813
+ let indent_first
814
+
815
+ // no help; start on same line and add a final newline
816
+ if (!action.help) {
817
+ let tup = [ this._current_indent, '', action_header ]
818
+ action_header = sub('%*s%s\n', ...tup)
819
+
820
+ // short action name; start on the same line and pad two spaces
821
+ } else if (action_header.length <= action_width) {
822
+ let tup = [ this._current_indent, '', action_width, action_header ]
823
+ action_header = sub('%*s%-*s ', ...tup)
824
+ indent_first = 0
825
+
826
+ // long action name; start on the next line
827
+ } else {
828
+ let tup = [ this._current_indent, '', action_header ]
829
+ action_header = sub('%*s%s\n', ...tup)
830
+ indent_first = help_position
831
+ }
832
+
833
+ // collect the pieces of the action help
834
+ let parts = [action_header]
835
+
836
+ // if there was help for the action, add lines of help text
837
+ if (action.help) {
838
+ let help_text = this._expand_help(action)
839
+ let help_lines = this._split_lines(help_text, help_width)
840
+ parts.push(sub('%*s%s\n', indent_first, '', help_lines[0]))
841
+ for (let line of help_lines.slice(1)) {
842
+ parts.push(sub('%*s%s\n', help_position, '', line))
843
+ }
844
+
845
+ // or add a newline if the description doesn't end with one
846
+ } else if (!action_header.endsWith('\n')) {
847
+ parts.push('\n')
848
+ }
849
+
850
+ // if there are any sub-actions, add their help as well
851
+ for (let subaction of this._iter_indented_subactions(action)) {
852
+ parts.push(this._format_action(subaction))
853
+ }
854
+
855
+ // return a single string
856
+ return this._join_parts(parts)
857
+ }
858
+
859
+ _format_action_invocation(action) {
860
+ if (!action.option_strings.length) {
861
+ let default_value = this._get_default_metavar_for_positional(action)
862
+ let metavar = this._metavar_formatter(action, default_value)(1)[0]
863
+ return metavar
864
+
865
+ } else {
866
+ let parts = []
867
+
868
+ // if the Optional doesn't take a value, format is:
869
+ // -s, --long
870
+ if (action.nargs === 0) {
871
+ parts = parts.concat(action.option_strings)
872
+
873
+ // if the Optional takes a value, format is:
874
+ // -s ARGS, --long ARGS
875
+ } else {
876
+ let default_value = this._get_default_metavar_for_optional(action)
877
+ let args_string = this._format_args(action, default_value)
878
+ for (let option_string of action.option_strings) {
879
+ parts.push(sub('%s %s', option_string, args_string))
880
+ }
881
+ }
882
+
883
+ return parts.join(', ')
884
+ }
885
+ }
886
+
887
+ _metavar_formatter(action, default_metavar) {
888
+ let result
889
+ if (action.metavar !== undefined) {
890
+ result = action.metavar
891
+ } else if (action.choices !== undefined) {
892
+ let choice_strs = _choices_to_array(action.choices).map(String)
893
+ result = sub('{%s}', choice_strs.join(','))
894
+ } else {
895
+ result = default_metavar
896
+ }
897
+
898
+ function format(tuple_size) {
899
+ if (Array.isArray(result)) {
900
+ return result
901
+ } else {
902
+ return Array(tuple_size).fill(result)
903
+ }
904
+ }
905
+ return format
906
+ }
907
+
908
+ _format_args(action, default_metavar) {
909
+ let get_metavar = this._metavar_formatter(action, default_metavar)
910
+ let result
911
+ if (action.nargs === undefined) {
912
+ result = sub('%s', ...get_metavar(1))
913
+ } else if (action.nargs === OPTIONAL) {
914
+ result = sub('[%s]', ...get_metavar(1))
915
+ } else if (action.nargs === ZERO_OR_MORE) {
916
+ let metavar = get_metavar(1)
917
+ if (metavar.length === 2) {
918
+ result = sub('[%s [%s ...]]', ...metavar)
919
+ } else {
920
+ result = sub('[%s ...]', ...metavar)
921
+ }
922
+ } else if (action.nargs === ONE_OR_MORE) {
923
+ result = sub('%s [%s ...]', ...get_metavar(2))
924
+ } else if (action.nargs === REMAINDER) {
925
+ result = '...'
926
+ } else if (action.nargs === PARSER) {
927
+ result = sub('%s ...', ...get_metavar(1))
928
+ } else if (action.nargs === SUPPRESS) {
929
+ result = ''
930
+ } else {
931
+ let formats
932
+ try {
933
+ formats = range(action.nargs).map(() => '%s')
934
+ } catch (err) {
935
+ throw new TypeError('invalid nargs value')
936
+ }
937
+ result = sub(formats.join(' '), ...get_metavar(action.nargs))
938
+ }
939
+ return result
940
+ }
941
+
942
+ _expand_help(action) {
943
+ let params = Object.assign({ prog: this._prog }, action)
944
+ for (let name of Object.keys(params)) {
945
+ if (params[name] === SUPPRESS) {
946
+ delete params[name]
947
+ }
948
+ }
949
+ for (let name of Object.keys(params)) {
950
+ if (params[name] && params[name].name) {
951
+ params[name] = params[name].name
952
+ }
953
+ }
954
+ if (params.choices !== undefined) {
955
+ let choices_str = _choices_to_array(params.choices).map(String).join(', ')
956
+ params.choices = choices_str
957
+ }
958
+ // LEGACY (v1 compatibility): camelcase
959
+ for (let key of Object.keys(params)) {
960
+ let old_name = _to_legacy_name(key)
961
+ if (old_name !== key) {
962
+ params[old_name] = params[key]
963
+ }
964
+ }
965
+ // end
966
+ return sub(this._get_help_string(action), params)
967
+ }
968
+
969
+ * _iter_indented_subactions(action) {
970
+ if (typeof action._get_subactions === 'function') {
971
+ this._indent()
972
+ yield* action._get_subactions()
973
+ this._dedent()
974
+ }
975
+ }
976
+
977
+ _split_lines(text, width) {
978
+ text = text.replace(this._whitespace_matcher, ' ').trim()
979
+ // The textwrap module is used only for formatting help.
980
+ // Delay its import for speeding up the common usage of argparse.
981
+ let textwrap = require('./lib/textwrap')
982
+ return textwrap.wrap(text, { width })
983
+ }
984
+
985
+ _fill_text(text, width, indent) {
986
+ text = text.replace(this._whitespace_matcher, ' ').trim()
987
+ let textwrap = require('./lib/textwrap')
988
+ return textwrap.fill(text, { width,
989
+ initial_indent: indent,
990
+ subsequent_indent: indent })
991
+ }
992
+
993
+ _get_help_string(action) {
994
+ return action.help
995
+ }
996
+
997
+ _get_default_metavar_for_optional(action) {
998
+ return action.dest.toUpperCase()
999
+ }
1000
+
1001
+ _get_default_metavar_for_positional(action) {
1002
+ return action.dest
1003
+ }
1004
+ }))
1005
+
1006
+ HelpFormatter.prototype._Section = _callable(class _Section {
1007
+
1008
+ constructor(formatter, parent, heading = undefined) {
1009
+ this.formatter = formatter
1010
+ this.parent = parent
1011
+ this.heading = heading
1012
+ this.items = []
1013
+ }
1014
+
1015
+ format_help() {
1016
+ // format the indented section
1017
+ if (this.parent !== undefined) {
1018
+ this.formatter._indent()
1019
+ }
1020
+ let item_help = this.formatter._join_parts(this.items.map(([ func, args ]) => func.apply(null, args)))
1021
+ if (this.parent !== undefined) {
1022
+ this.formatter._dedent()
1023
+ }
1024
+
1025
+ // return nothing if the section was empty
1026
+ if (!item_help) {
1027
+ return ''
1028
+ }
1029
+
1030
+ // add the heading if the section was non-empty
1031
+ let heading
1032
+ if (this.heading !== SUPPRESS && this.heading !== undefined) {
1033
+ let current_indent = this.formatter._current_indent
1034
+ heading = sub('%*s%s:\n', current_indent, '', this.heading)
1035
+ } else {
1036
+ heading = ''
1037
+ }
1038
+
1039
+ // join the section-initial newline, the heading and the help
1040
+ return this.formatter._join_parts(['\n', heading, item_help, '\n'])
1041
+ }
1042
+ })
1043
+
1044
+
1045
+ const RawDescriptionHelpFormatter = _camelcase_alias(_callable(class RawDescriptionHelpFormatter extends HelpFormatter {
1046
+ /*
1047
+ * Help message formatter which retains any formatting in descriptions.
1048
+ *
1049
+ * Only the name of this class is considered a public API. All the methods
1050
+ * provided by the class are considered an implementation detail.
1051
+ */
1052
+
1053
+ _fill_text(text, width, indent) {
1054
+ return splitlines(text, true).map(line => indent + line).join('')
1055
+ }
1056
+ }))
1057
+
1058
+
1059
+ const RawTextHelpFormatter = _camelcase_alias(_callable(class RawTextHelpFormatter extends RawDescriptionHelpFormatter {
1060
+ /*
1061
+ * Help message formatter which retains formatting of all help text.
1062
+ *
1063
+ * Only the name of this class is considered a public API. All the methods
1064
+ * provided by the class are considered an implementation detail.
1065
+ */
1066
+
1067
+ _split_lines(text/*, width*/) {
1068
+ return splitlines(text)
1069
+ }
1070
+ }))
1071
+
1072
+
1073
+ const ArgumentDefaultsHelpFormatter = _camelcase_alias(_callable(class ArgumentDefaultsHelpFormatter extends HelpFormatter {
1074
+ /*
1075
+ * Help message formatter which adds default values to argument help.
1076
+ *
1077
+ * Only the name of this class is considered a public API. All the methods
1078
+ * provided by the class are considered an implementation detail.
1079
+ */
1080
+
1081
+ _get_help_string(action) {
1082
+ let help = action.help
1083
+ // LEGACY (v1 compatibility): additional check for defaultValue needed
1084
+ if (!action.help.includes('%(default)') && !action.help.includes('%(defaultValue)')) {
1085
+ if (action.default !== SUPPRESS) {
1086
+ let defaulting_nargs = [OPTIONAL, ZERO_OR_MORE]
1087
+ if (action.option_strings.length || defaulting_nargs.includes(action.nargs)) {
1088
+ help += ' (default: %(default)s)'
1089
+ }
1090
+ }
1091
+ }
1092
+ return help
1093
+ }
1094
+ }))
1095
+
1096
+
1097
+ const MetavarTypeHelpFormatter = _camelcase_alias(_callable(class MetavarTypeHelpFormatter extends HelpFormatter {
1098
+ /*
1099
+ * Help message formatter which uses the argument 'type' as the default
1100
+ * metavar value (instead of the argument 'dest')
1101
+ *
1102
+ * Only the name of this class is considered a public API. All the methods
1103
+ * provided by the class are considered an implementation detail.
1104
+ */
1105
+
1106
+ _get_default_metavar_for_optional(action) {
1107
+ return typeof action.type === 'function' ? action.type.name : action.type
1108
+ }
1109
+
1110
+ _get_default_metavar_for_positional(action) {
1111
+ return typeof action.type === 'function' ? action.type.name : action.type
1112
+ }
1113
+ }))
1114
+
1115
+
1116
+ // =====================
1117
+ // Options and Arguments
1118
+ // =====================
1119
+ function _get_action_name(argument) {
1120
+ if (argument === undefined) {
1121
+ return undefined
1122
+ } else if (argument.option_strings.length) {
1123
+ return argument.option_strings.join('/')
1124
+ } else if (![ undefined, SUPPRESS ].includes(argument.metavar)) {
1125
+ return argument.metavar
1126
+ } else if (![ undefined, SUPPRESS ].includes(argument.dest)) {
1127
+ return argument.dest
1128
+ } else {
1129
+ return undefined
1130
+ }
1131
+ }
1132
+
1133
+
1134
+ const ArgumentError = _callable(class ArgumentError extends Error {
1135
+ /*
1136
+ * An error from creating or using an argument (optional or positional).
1137
+ *
1138
+ * The string value of this exception is the message, augmented with
1139
+ * information about the argument that caused it.
1140
+ */
1141
+
1142
+ constructor(argument, message) {
1143
+ super()
1144
+ this.name = 'ArgumentError'
1145
+ this._argument_name = _get_action_name(argument)
1146
+ this._message = message
1147
+ this.message = this.str()
1148
+ }
1149
+
1150
+ str() {
1151
+ let format
1152
+ if (this._argument_name === undefined) {
1153
+ format = '%(message)s'
1154
+ } else {
1155
+ format = 'argument %(argument_name)s: %(message)s'
1156
+ }
1157
+ return sub(format, { message: this._message,
1158
+ argument_name: this._argument_name })
1159
+ }
1160
+ })
1161
+
1162
+
1163
+ const ArgumentTypeError = _callable(class ArgumentTypeError extends Error {
1164
+ /*
1165
+ * An error from trying to convert a command line string to a type.
1166
+ */
1167
+
1168
+ constructor(message) {
1169
+ super(message)
1170
+ this.name = 'ArgumentTypeError'
1171
+ }
1172
+ })
1173
+
1174
+
1175
+ // ==============
1176
+ // Action classes
1177
+ // ==============
1178
+ const Action = _camelcase_alias(_callable(class Action extends _AttributeHolder(Function) {
1179
+ /*
1180
+ * Information about how to convert command line strings to Python objects.
1181
+ *
1182
+ * Action objects are used by an ArgumentParser to represent the information
1183
+ * needed to parse a single argument from one or more strings from the
1184
+ * command line. The keyword arguments to the Action constructor are also
1185
+ * all attributes of Action instances.
1186
+ *
1187
+ * Keyword Arguments:
1188
+ *
1189
+ * - option_strings -- A list of command-line option strings which
1190
+ * should be associated with this action.
1191
+ *
1192
+ * - dest -- The name of the attribute to hold the created object(s)
1193
+ *
1194
+ * - nargs -- The number of command-line arguments that should be
1195
+ * consumed. By default, one argument will be consumed and a single
1196
+ * value will be produced. Other values include:
1197
+ * - N (an integer) consumes N arguments (and produces a list)
1198
+ * - '?' consumes zero or one arguments
1199
+ * - '*' consumes zero or more arguments (and produces a list)
1200
+ * - '+' consumes one or more arguments (and produces a list)
1201
+ * Note that the difference between the default and nargs=1 is that
1202
+ * with the default, a single value will be produced, while with
1203
+ * nargs=1, a list containing a single value will be produced.
1204
+ *
1205
+ * - const -- The value to be produced if the option is specified and the
1206
+ * option uses an action that takes no values.
1207
+ *
1208
+ * - default -- The value to be produced if the option is not specified.
1209
+ *
1210
+ * - type -- A callable that accepts a single string argument, and
1211
+ * returns the converted value. The standard Python types str, int,
1212
+ * float, and complex are useful examples of such callables. If None,
1213
+ * str is used.
1214
+ *
1215
+ * - choices -- A container of values that should be allowed. If not None,
1216
+ * after a command-line argument has been converted to the appropriate
1217
+ * type, an exception will be raised if it is not a member of this
1218
+ * collection.
1219
+ *
1220
+ * - required -- True if the action must always be specified at the
1221
+ * command line. This is only meaningful for optional command-line
1222
+ * arguments.
1223
+ *
1224
+ * - help -- The help string describing the argument.
1225
+ *
1226
+ * - metavar -- The name to be used for the option's argument with the
1227
+ * help string. If None, the 'dest' value will be used as the name.
1228
+ */
1229
+
1230
+ constructor() {
1231
+ let [
1232
+ option_strings,
1233
+ dest,
1234
+ nargs,
1235
+ const_value,
1236
+ default_value,
1237
+ type,
1238
+ choices,
1239
+ required,
1240
+ help,
1241
+ metavar
1242
+ ] = _parse_opts(arguments, {
1243
+ option_strings: no_default,
1244
+ dest: no_default,
1245
+ nargs: undefined,
1246
+ const: undefined,
1247
+ default: undefined,
1248
+ type: undefined,
1249
+ choices: undefined,
1250
+ required: false,
1251
+ help: undefined,
1252
+ metavar: undefined
1253
+ })
1254
+
1255
+ // when this class is called as a function, redirect it to .call() method of itself
1256
+ super('return arguments.callee.call.apply(arguments.callee, arguments)')
1257
+
1258
+ this.option_strings = option_strings
1259
+ this.dest = dest
1260
+ this.nargs = nargs
1261
+ this.const = const_value
1262
+ this.default = default_value
1263
+ this.type = type
1264
+ this.choices = choices
1265
+ this.required = required
1266
+ this.help = help
1267
+ this.metavar = metavar
1268
+ }
1269
+
1270
+ _get_kwargs() {
1271
+ let names = [
1272
+ 'option_strings',
1273
+ 'dest',
1274
+ 'nargs',
1275
+ 'const',
1276
+ 'default',
1277
+ 'type',
1278
+ 'choices',
1279
+ 'help',
1280
+ 'metavar'
1281
+ ]
1282
+ return names.map(name => [ name, getattr(this, name) ])
1283
+ }
1284
+
1285
+ format_usage() {
1286
+ return this.option_strings[0]
1287
+ }
1288
+
1289
+ call(/*parser, namespace, values, option_string = undefined*/) {
1290
+ throw new Error('.call() not defined')
1291
+ }
1292
+ }))
1293
+
1294
+
1295
+ const BooleanOptionalAction = _camelcase_alias(_callable(class BooleanOptionalAction extends Action {
1296
+
1297
+ constructor() {
1298
+ let [
1299
+ option_strings,
1300
+ dest,
1301
+ default_value,
1302
+ type,
1303
+ choices,
1304
+ required,
1305
+ help,
1306
+ metavar
1307
+ ] = _parse_opts(arguments, {
1308
+ option_strings: no_default,
1309
+ dest: no_default,
1310
+ default: undefined,
1311
+ type: undefined,
1312
+ choices: undefined,
1313
+ required: false,
1314
+ help: undefined,
1315
+ metavar: undefined
1316
+ })
1317
+
1318
+ let _option_strings = []
1319
+ for (let option_string of option_strings) {
1320
+ _option_strings.push(option_string)
1321
+
1322
+ if (option_string.startsWith('--')) {
1323
+ option_string = '--no-' + option_string.slice(2)
1324
+ _option_strings.push(option_string)
1325
+ }
1326
+ }
1327
+
1328
+ if (help !== undefined && default_value !== undefined) {
1329
+ help += ` (default: ${default_value})`
1330
+ }
1331
+
1332
+ super({
1333
+ option_strings: _option_strings,
1334
+ dest,
1335
+ nargs: 0,
1336
+ default: default_value,
1337
+ type,
1338
+ choices,
1339
+ required,
1340
+ help,
1341
+ metavar
1342
+ })
1343
+ }
1344
+
1345
+ call(parser, namespace, values, option_string = undefined) {
1346
+ if (this.option_strings.includes(option_string)) {
1347
+ setattr(namespace, this.dest, !option_string.startsWith('--no-'))
1348
+ }
1349
+ }
1350
+
1351
+ format_usage() {
1352
+ return this.option_strings.join(' | ')
1353
+ }
1354
+ }))
1355
+
1356
+
1357
+ const _StoreAction = _callable(class _StoreAction extends Action {
1358
+
1359
+ constructor() {
1360
+ let [
1361
+ option_strings,
1362
+ dest,
1363
+ nargs,
1364
+ const_value,
1365
+ default_value,
1366
+ type,
1367
+ choices,
1368
+ required,
1369
+ help,
1370
+ metavar
1371
+ ] = _parse_opts(arguments, {
1372
+ option_strings: no_default,
1373
+ dest: no_default,
1374
+ nargs: undefined,
1375
+ const: undefined,
1376
+ default: undefined,
1377
+ type: undefined,
1378
+ choices: undefined,
1379
+ required: false,
1380
+ help: undefined,
1381
+ metavar: undefined
1382
+ })
1383
+
1384
+ if (nargs === 0) {
1385
+ throw new TypeError('nargs for store actions must be != 0; if you ' +
1386
+ 'have nothing to store, actions such as store ' +
1387
+ 'true or store const may be more appropriate')
1388
+ }
1389
+ if (const_value !== undefined && nargs !== OPTIONAL) {
1390
+ throw new TypeError(sub('nargs must be %r to supply const', OPTIONAL))
1391
+ }
1392
+ super({
1393
+ option_strings,
1394
+ dest,
1395
+ nargs,
1396
+ const: const_value,
1397
+ default: default_value,
1398
+ type,
1399
+ choices,
1400
+ required,
1401
+ help,
1402
+ metavar
1403
+ })
1404
+ }
1405
+
1406
+ call(parser, namespace, values/*, option_string = undefined*/) {
1407
+ setattr(namespace, this.dest, values)
1408
+ }
1409
+ })
1410
+
1411
+
1412
+ const _StoreConstAction = _callable(class _StoreConstAction extends Action {
1413
+
1414
+ constructor() {
1415
+ let [
1416
+ option_strings,
1417
+ dest,
1418
+ const_value,
1419
+ default_value,
1420
+ required,
1421
+ help
1422
+ //, metavar
1423
+ ] = _parse_opts(arguments, {
1424
+ option_strings: no_default,
1425
+ dest: no_default,
1426
+ const: no_default,
1427
+ default: undefined,
1428
+ required: false,
1429
+ help: undefined,
1430
+ metavar: undefined
1431
+ })
1432
+
1433
+ super({
1434
+ option_strings,
1435
+ dest,
1436
+ nargs: 0,
1437
+ const: const_value,
1438
+ default: default_value,
1439
+ required,
1440
+ help
1441
+ })
1442
+ }
1443
+
1444
+ call(parser, namespace/*, values, option_string = undefined*/) {
1445
+ setattr(namespace, this.dest, this.const)
1446
+ }
1447
+ })
1448
+
1449
+
1450
+ const _StoreTrueAction = _callable(class _StoreTrueAction extends _StoreConstAction {
1451
+
1452
+ constructor() {
1453
+ let [
1454
+ option_strings,
1455
+ dest,
1456
+ default_value,
1457
+ required,
1458
+ help
1459
+ ] = _parse_opts(arguments, {
1460
+ option_strings: no_default,
1461
+ dest: no_default,
1462
+ default: false,
1463
+ required: false,
1464
+ help: undefined
1465
+ })
1466
+
1467
+ super({
1468
+ option_strings,
1469
+ dest,
1470
+ const: true,
1471
+ default: default_value,
1472
+ required,
1473
+ help
1474
+ })
1475
+ }
1476
+ })
1477
+
1478
+
1479
+ const _StoreFalseAction = _callable(class _StoreFalseAction extends _StoreConstAction {
1480
+
1481
+ constructor() {
1482
+ let [
1483
+ option_strings,
1484
+ dest,
1485
+ default_value,
1486
+ required,
1487
+ help
1488
+ ] = _parse_opts(arguments, {
1489
+ option_strings: no_default,
1490
+ dest: no_default,
1491
+ default: true,
1492
+ required: false,
1493
+ help: undefined
1494
+ })
1495
+
1496
+ super({
1497
+ option_strings,
1498
+ dest,
1499
+ const: false,
1500
+ default: default_value,
1501
+ required,
1502
+ help
1503
+ })
1504
+ }
1505
+ })
1506
+
1507
+
1508
+ const _AppendAction = _callable(class _AppendAction extends Action {
1509
+
1510
+ constructor() {
1511
+ let [
1512
+ option_strings,
1513
+ dest,
1514
+ nargs,
1515
+ const_value,
1516
+ default_value,
1517
+ type,
1518
+ choices,
1519
+ required,
1520
+ help,
1521
+ metavar
1522
+ ] = _parse_opts(arguments, {
1523
+ option_strings: no_default,
1524
+ dest: no_default,
1525
+ nargs: undefined,
1526
+ const: undefined,
1527
+ default: undefined,
1528
+ type: undefined,
1529
+ choices: undefined,
1530
+ required: false,
1531
+ help: undefined,
1532
+ metavar: undefined
1533
+ })
1534
+
1535
+ if (nargs === 0) {
1536
+ throw new TypeError('nargs for append actions must be != 0; if arg ' +
1537
+ 'strings are not supplying the value to append, ' +
1538
+ 'the append const action may be more appropriate')
1539
+ }
1540
+ if (const_value !== undefined && nargs !== OPTIONAL) {
1541
+ throw new TypeError(sub('nargs must be %r to supply const', OPTIONAL))
1542
+ }
1543
+ super({
1544
+ option_strings,
1545
+ dest,
1546
+ nargs,
1547
+ const: const_value,
1548
+ default: default_value,
1549
+ type,
1550
+ choices,
1551
+ required,
1552
+ help,
1553
+ metavar
1554
+ })
1555
+ }
1556
+
1557
+ call(parser, namespace, values/*, option_string = undefined*/) {
1558
+ let items = getattr(namespace, this.dest, undefined)
1559
+ items = _copy_items(items)
1560
+ items.push(values)
1561
+ setattr(namespace, this.dest, items)
1562
+ }
1563
+ })
1564
+
1565
+
1566
+ const _AppendConstAction = _callable(class _AppendConstAction extends Action {
1567
+
1568
+ constructor() {
1569
+ let [
1570
+ option_strings,
1571
+ dest,
1572
+ const_value,
1573
+ default_value,
1574
+ required,
1575
+ help,
1576
+ metavar
1577
+ ] = _parse_opts(arguments, {
1578
+ option_strings: no_default,
1579
+ dest: no_default,
1580
+ const: no_default,
1581
+ default: undefined,
1582
+ required: false,
1583
+ help: undefined,
1584
+ metavar: undefined
1585
+ })
1586
+
1587
+ super({
1588
+ option_strings,
1589
+ dest,
1590
+ nargs: 0,
1591
+ const: const_value,
1592
+ default: default_value,
1593
+ required,
1594
+ help,
1595
+ metavar
1596
+ })
1597
+ }
1598
+
1599
+ call(parser, namespace/*, values, option_string = undefined*/) {
1600
+ let items = getattr(namespace, this.dest, undefined)
1601
+ items = _copy_items(items)
1602
+ items.push(this.const)
1603
+ setattr(namespace, this.dest, items)
1604
+ }
1605
+ })
1606
+
1607
+
1608
+ const _CountAction = _callable(class _CountAction extends Action {
1609
+
1610
+ constructor() {
1611
+ let [
1612
+ option_strings,
1613
+ dest,
1614
+ default_value,
1615
+ required,
1616
+ help
1617
+ ] = _parse_opts(arguments, {
1618
+ option_strings: no_default,
1619
+ dest: no_default,
1620
+ default: undefined,
1621
+ required: false,
1622
+ help: undefined
1623
+ })
1624
+
1625
+ super({
1626
+ option_strings,
1627
+ dest,
1628
+ nargs: 0,
1629
+ default: default_value,
1630
+ required,
1631
+ help
1632
+ })
1633
+ }
1634
+
1635
+ call(parser, namespace/*, values, option_string = undefined*/) {
1636
+ let count = getattr(namespace, this.dest, undefined)
1637
+ if (count === undefined) {
1638
+ count = 0
1639
+ }
1640
+ setattr(namespace, this.dest, count + 1)
1641
+ }
1642
+ })
1643
+
1644
+
1645
+ const _HelpAction = _callable(class _HelpAction extends Action {
1646
+
1647
+ constructor() {
1648
+ let [
1649
+ option_strings,
1650
+ dest,
1651
+ default_value,
1652
+ help
1653
+ ] = _parse_opts(arguments, {
1654
+ option_strings: no_default,
1655
+ dest: SUPPRESS,
1656
+ default: SUPPRESS,
1657
+ help: undefined
1658
+ })
1659
+
1660
+ super({
1661
+ option_strings,
1662
+ dest,
1663
+ default: default_value,
1664
+ nargs: 0,
1665
+ help
1666
+ })
1667
+ }
1668
+
1669
+ call(parser/*, namespace, values, option_string = undefined*/) {
1670
+ parser.print_help()
1671
+ parser.exit()
1672
+ }
1673
+ })
1674
+
1675
+
1676
+ const _VersionAction = _callable(class _VersionAction extends Action {
1677
+
1678
+ constructor() {
1679
+ let [
1680
+ option_strings,
1681
+ version,
1682
+ dest,
1683
+ default_value,
1684
+ help
1685
+ ] = _parse_opts(arguments, {
1686
+ option_strings: no_default,
1687
+ version: undefined,
1688
+ dest: SUPPRESS,
1689
+ default: SUPPRESS,
1690
+ help: "show program's version number and exit"
1691
+ })
1692
+
1693
+ super({
1694
+ option_strings,
1695
+ dest,
1696
+ default: default_value,
1697
+ nargs: 0,
1698
+ help
1699
+ })
1700
+ this.version = version
1701
+ }
1702
+
1703
+ call(parser/*, namespace, values, option_string = undefined*/) {
1704
+ let version = this.version
1705
+ if (version === undefined) {
1706
+ version = parser.version
1707
+ }
1708
+ let formatter = parser._get_formatter()
1709
+ formatter.add_text(version)
1710
+ parser._print_message(formatter.format_help(), process.stdout)
1711
+ parser.exit()
1712
+ }
1713
+ })
1714
+
1715
+
1716
+ const _SubParsersAction = _camelcase_alias(_callable(class _SubParsersAction extends Action {
1717
+
1718
+ constructor() {
1719
+ let [
1720
+ option_strings,
1721
+ prog,
1722
+ parser_class,
1723
+ dest,
1724
+ required,
1725
+ help,
1726
+ metavar
1727
+ ] = _parse_opts(arguments, {
1728
+ option_strings: no_default,
1729
+ prog: no_default,
1730
+ parser_class: no_default,
1731
+ dest: SUPPRESS,
1732
+ required: false,
1733
+ help: undefined,
1734
+ metavar: undefined
1735
+ })
1736
+
1737
+ let name_parser_map = {}
1738
+
1739
+ super({
1740
+ option_strings,
1741
+ dest,
1742
+ nargs: PARSER,
1743
+ choices: name_parser_map,
1744
+ required,
1745
+ help,
1746
+ metavar
1747
+ })
1748
+
1749
+ this._prog_prefix = prog
1750
+ this._parser_class = parser_class
1751
+ this._name_parser_map = name_parser_map
1752
+ this._choices_actions = []
1753
+ }
1754
+
1755
+ add_parser() {
1756
+ let [
1757
+ name,
1758
+ kwargs
1759
+ ] = _parse_opts(arguments, {
1760
+ name: no_default,
1761
+ '**kwargs': no_default
1762
+ })
1763
+
1764
+ // set prog from the existing prefix
1765
+ if (kwargs.prog === undefined) {
1766
+ kwargs.prog = sub('%s %s', this._prog_prefix, name)
1767
+ }
1768
+
1769
+ let aliases = getattr(kwargs, 'aliases', [])
1770
+ delete kwargs.aliases
1771
+
1772
+ // create a pseudo-action to hold the choice help
1773
+ if ('help' in kwargs) {
1774
+ let help = kwargs.help
1775
+ delete kwargs.help
1776
+ let choice_action = this._ChoicesPseudoAction(name, aliases, help)
1777
+ this._choices_actions.push(choice_action)
1778
+ }
1779
+
1780
+ // create the parser and add it to the map
1781
+ let parser = new this._parser_class(kwargs)
1782
+ this._name_parser_map[name] = parser
1783
+
1784
+ // make parser available under aliases also
1785
+ for (let alias of aliases) {
1786
+ this._name_parser_map[alias] = parser
1787
+ }
1788
+
1789
+ return parser
1790
+ }
1791
+
1792
+ _get_subactions() {
1793
+ return this._choices_actions
1794
+ }
1795
+
1796
+ call(parser, namespace, values/*, option_string = undefined*/) {
1797
+ let parser_name = values[0]
1798
+ let arg_strings = values.slice(1)
1799
+
1800
+ // set the parser name if requested
1801
+ if (this.dest !== SUPPRESS) {
1802
+ setattr(namespace, this.dest, parser_name)
1803
+ }
1804
+
1805
+ // select the parser
1806
+ if (hasattr(this._name_parser_map, parser_name)) {
1807
+ parser = this._name_parser_map[parser_name]
1808
+ } else {
1809
+ let args = {parser_name,
1810
+ choices: this._name_parser_map.join(', ')}
1811
+ let msg = sub('unknown parser %(parser_name)r (choices: %(choices)s)', args)
1812
+ throw new ArgumentError(this, msg)
1813
+ }
1814
+
1815
+ // parse all the remaining options into the namespace
1816
+ // store any unrecognized options on the object, so that the top
1817
+ // level parser can decide what to do with them
1818
+
1819
+ // In case this subparser defines new defaults, we parse them
1820
+ // in a new namespace object and then update the original
1821
+ // namespace for the relevant parts.
1822
+ let subnamespace
1823
+ [ subnamespace, arg_strings ] = parser.parse_known_args(arg_strings, undefined)
1824
+ for (let [ key, value ] of Object.entries(subnamespace)) {
1825
+ setattr(namespace, key, value)
1826
+ }
1827
+
1828
+ if (arg_strings.length) {
1829
+ setdefault(namespace, _UNRECOGNIZED_ARGS_ATTR, [])
1830
+ getattr(namespace, _UNRECOGNIZED_ARGS_ATTR).push(...arg_strings)
1831
+ }
1832
+ }
1833
+ }))
1834
+
1835
+
1836
+ _SubParsersAction.prototype._ChoicesPseudoAction = _callable(class _ChoicesPseudoAction extends Action {
1837
+ constructor(name, aliases, help) {
1838
+ let metavar = name, dest = name
1839
+ if (aliases.length) {
1840
+ metavar += sub(' (%s)', aliases.join(', '))
1841
+ }
1842
+ super({ option_strings: [], dest, help, metavar })
1843
+ }
1844
+ })
1845
+
1846
+
1847
+ const _ExtendAction = _callable(class _ExtendAction extends _AppendAction {
1848
+ call(parser, namespace, values/*, option_string = undefined*/) {
1849
+ let items = getattr(namespace, this.dest, undefined)
1850
+ items = _copy_items(items)
1851
+ items = items.concat(values)
1852
+ setattr(namespace, this.dest, items)
1853
+ }
1854
+ })
1855
+
1856
+
1857
+ // ==============
1858
+ // Type classes
1859
+ // ==============
1860
+ const FileType = _callable(class FileType extends Function {
1861
+ /*
1862
+ * Factory for creating file object types
1863
+ *
1864
+ * Instances of FileType are typically passed as type= arguments to the
1865
+ * ArgumentParser add_argument() method.
1866
+ *
1867
+ * Keyword Arguments:
1868
+ * - mode -- A string indicating how the file is to be opened. Accepts the
1869
+ * same values as the builtin open() function.
1870
+ * - bufsize -- The file's desired buffer size. Accepts the same values as
1871
+ * the builtin open() function.
1872
+ * - encoding -- The file's encoding. Accepts the same values as the
1873
+ * builtin open() function.
1874
+ * - errors -- A string indicating how encoding and decoding errors are to
1875
+ * be handled. Accepts the same value as the builtin open() function.
1876
+ */
1877
+
1878
+ constructor() {
1879
+ let [
1880
+ flags,
1881
+ encoding,
1882
+ mode,
1883
+ autoClose,
1884
+ emitClose,
1885
+ start,
1886
+ end,
1887
+ highWaterMark,
1888
+ fs
1889
+ ] = _parse_opts(arguments, {
1890
+ flags: 'r',
1891
+ encoding: undefined,
1892
+ mode: undefined, // 0o666
1893
+ autoClose: undefined, // true
1894
+ emitClose: undefined, // false
1895
+ start: undefined, // 0
1896
+ end: undefined, // Infinity
1897
+ highWaterMark: undefined, // 64 * 1024
1898
+ fs: undefined
1899
+ })
1900
+
1901
+ // when this class is called as a function, redirect it to .call() method of itself
1902
+ super('return arguments.callee.call.apply(arguments.callee, arguments)')
1903
+
1904
+ Object.defineProperty(this, 'name', {
1905
+ get() {
1906
+ return sub('FileType(%r)', flags)
1907
+ }
1908
+ })
1909
+ this._flags = flags
1910
+ this._options = {}
1911
+ if (encoding !== undefined) this._options.encoding = encoding
1912
+ if (mode !== undefined) this._options.mode = mode
1913
+ if (autoClose !== undefined) this._options.autoClose = autoClose
1914
+ if (emitClose !== undefined) this._options.emitClose = emitClose
1915
+ if (start !== undefined) this._options.start = start
1916
+ if (end !== undefined) this._options.end = end
1917
+ if (highWaterMark !== undefined) this._options.highWaterMark = highWaterMark
1918
+ if (fs !== undefined) this._options.fs = fs
1919
+ }
1920
+
1921
+ call(string) {
1922
+ // the special argument "-" means sys.std{in,out}
1923
+ if (string === '-') {
1924
+ if (this._flags.includes('r')) {
1925
+ return process.stdin
1926
+ } else if (this._flags.includes('w')) {
1927
+ return process.stdout
1928
+ } else {
1929
+ let msg = sub('argument "-" with mode %r', this._flags)
1930
+ throw new TypeError(msg)
1931
+ }
1932
+ }
1933
+
1934
+ // all other arguments are used as file names
1935
+ let fd
1936
+ try {
1937
+ fd = fs.openSync(string, this._flags, this._options.mode)
1938
+ } catch (e) {
1939
+ let args = { filename: string, error: e.message }
1940
+ let message = "can't open '%(filename)s': %(error)s"
1941
+ throw new ArgumentTypeError(sub(message, args))
1942
+ }
1943
+
1944
+ let options = Object.assign({ fd, flags: this._flags }, this._options)
1945
+ if (this._flags.includes('r')) {
1946
+ return fs.createReadStream(undefined, options)
1947
+ } else if (this._flags.includes('w')) {
1948
+ return fs.createWriteStream(undefined, options)
1949
+ } else {
1950
+ let msg = sub('argument "%s" with mode %r', string, this._flags)
1951
+ throw new TypeError(msg)
1952
+ }
1953
+ }
1954
+
1955
+ [util.inspect.custom]() {
1956
+ let args = [ this._flags ]
1957
+ let kwargs = Object.entries(this._options).map(([ k, v ]) => {
1958
+ if (k === 'mode') v = { value: v, [util.inspect.custom]() { return '0o' + this.value.toString(8) } }
1959
+ return [ k, v ]
1960
+ })
1961
+ let args_str = []
1962
+ .concat(args.filter(arg => arg !== -1).map(repr))
1963
+ .concat(kwargs.filter(([/*kw*/, arg]) => arg !== undefined)
1964
+ .map(([kw, arg]) => sub('%s=%r', kw, arg)))
1965
+ .join(', ')
1966
+ return sub('%s(%s)', this.constructor.name, args_str)
1967
+ }
1968
+
1969
+ toString() {
1970
+ return this[util.inspect.custom]()
1971
+ }
1972
+ })
1973
+
1974
+ // ===========================
1975
+ // Optional and Positional Parsing
1976
+ // ===========================
1977
+ const Namespace = _callable(class Namespace extends _AttributeHolder() {
1978
+ /*
1979
+ * Simple object for storing attributes.
1980
+ *
1981
+ * Implements equality by attribute names and values, and provides a simple
1982
+ * string representation.
1983
+ */
1984
+
1985
+ constructor(options = {}) {
1986
+ super()
1987
+ Object.assign(this, options)
1988
+ }
1989
+ })
1990
+
1991
+ // unset string tag to mimic plain object
1992
+ Namespace.prototype[Symbol.toStringTag] = undefined
1993
+
1994
+
1995
+ const _ActionsContainer = _camelcase_alias(_callable(class _ActionsContainer {
1996
+
1997
+ constructor() {
1998
+ let [
1999
+ description,
2000
+ prefix_chars,
2001
+ argument_default,
2002
+ conflict_handler
2003
+ ] = _parse_opts(arguments, {
2004
+ description: no_default,
2005
+ prefix_chars: no_default,
2006
+ argument_default: no_default,
2007
+ conflict_handler: no_default
2008
+ })
2009
+
2010
+ this.description = description
2011
+ this.argument_default = argument_default
2012
+ this.prefix_chars = prefix_chars
2013
+ this.conflict_handler = conflict_handler
2014
+
2015
+ // set up registries
2016
+ this._registries = {}
2017
+
2018
+ // register actions
2019
+ this.register('action', undefined, _StoreAction)
2020
+ this.register('action', 'store', _StoreAction)
2021
+ this.register('action', 'store_const', _StoreConstAction)
2022
+ this.register('action', 'store_true', _StoreTrueAction)
2023
+ this.register('action', 'store_false', _StoreFalseAction)
2024
+ this.register('action', 'append', _AppendAction)
2025
+ this.register('action', 'append_const', _AppendConstAction)
2026
+ this.register('action', 'count', _CountAction)
2027
+ this.register('action', 'help', _HelpAction)
2028
+ this.register('action', 'version', _VersionAction)
2029
+ this.register('action', 'parsers', _SubParsersAction)
2030
+ this.register('action', 'extend', _ExtendAction)
2031
+ // LEGACY (v1 compatibility): camelcase variants
2032
+ ;[ 'storeConst', 'storeTrue', 'storeFalse', 'appendConst' ].forEach(old_name => {
2033
+ let new_name = _to_new_name(old_name)
2034
+ this.register('action', old_name, util.deprecate(this._registry_get('action', new_name),
2035
+ sub('{action: "%s"} is renamed to {action: "%s"}', old_name, new_name)))
2036
+ })
2037
+ // end
2038
+
2039
+ // raise an exception if the conflict handler is invalid
2040
+ this._get_handler()
2041
+
2042
+ // action storage
2043
+ this._actions = []
2044
+ this._option_string_actions = {}
2045
+
2046
+ // groups
2047
+ this._action_groups = []
2048
+ this._mutually_exclusive_groups = []
2049
+
2050
+ // defaults storage
2051
+ this._defaults = {}
2052
+
2053
+ // determines whether an "option" looks like a negative number
2054
+ this._negative_number_matcher = /^-\d+$|^-\d*\.\d+$/
2055
+
2056
+ // whether or not there are any optionals that look like negative
2057
+ // numbers -- uses a list so it can be shared and edited
2058
+ this._has_negative_number_optionals = []
2059
+ }
2060
+
2061
+ // ====================
2062
+ // Registration methods
2063
+ // ====================
2064
+ register(registry_name, value, object) {
2065
+ let registry = setdefault(this._registries, registry_name, {})
2066
+ registry[value] = object
2067
+ }
2068
+
2069
+ _registry_get(registry_name, value, default_value = undefined) {
2070
+ return getattr(this._registries[registry_name], value, default_value)
2071
+ }
2072
+
2073
+ // ==================================
2074
+ // Namespace default accessor methods
2075
+ // ==================================
2076
+ set_defaults(kwargs) {
2077
+ Object.assign(this._defaults, kwargs)
2078
+
2079
+ // if these defaults match any existing arguments, replace
2080
+ // the previous default on the object with the new one
2081
+ for (let action of this._actions) {
2082
+ if (action.dest in kwargs) {
2083
+ action.default = kwargs[action.dest]
2084
+ }
2085
+ }
2086
+ }
2087
+
2088
+ get_default(dest) {
2089
+ for (let action of this._actions) {
2090
+ if (action.dest === dest && action.default !== undefined) {
2091
+ return action.default
2092
+ }
2093
+ }
2094
+ return this._defaults[dest]
2095
+ }
2096
+
2097
+
2098
+ // =======================
2099
+ // Adding argument actions
2100
+ // =======================
2101
+ add_argument() {
2102
+ /*
2103
+ * add_argument(dest, ..., name=value, ...)
2104
+ * add_argument(option_string, option_string, ..., name=value, ...)
2105
+ */
2106
+ let [
2107
+ args,
2108
+ kwargs
2109
+ ] = _parse_opts(arguments, {
2110
+ '*args': no_default,
2111
+ '**kwargs': no_default
2112
+ })
2113
+ // LEGACY (v1 compatibility), old-style add_argument([ args ], { options })
2114
+ if (args.length === 1 && Array.isArray(args[0])) {
2115
+ args = args[0]
2116
+ deprecate('argument-array',
2117
+ sub('use add_argument(%(args)s, {...}) instead of add_argument([ %(args)s ], { ... })', {
2118
+ args: args.map(repr).join(', ')
2119
+ }))
2120
+ }
2121
+ // end
2122
+
2123
+ // if no positional args are supplied or only one is supplied and
2124
+ // it doesn't look like an option string, parse a positional
2125
+ // argument
2126
+ let chars = this.prefix_chars
2127
+ if (!args.length || args.length === 1 && !chars.includes(args[0][0])) {
2128
+ if (args.length && 'dest' in kwargs) {
2129
+ throw new TypeError('dest supplied twice for positional argument')
2130
+ }
2131
+ kwargs = this._get_positional_kwargs(...args, kwargs)
2132
+
2133
+ // otherwise, we're adding an optional argument
2134
+ } else {
2135
+ kwargs = this._get_optional_kwargs(...args, kwargs)
2136
+ }
2137
+
2138
+ // if no default was supplied, use the parser-level default
2139
+ if (!('default' in kwargs)) {
2140
+ let dest = kwargs.dest
2141
+ if (dest in this._defaults) {
2142
+ kwargs.default = this._defaults[dest]
2143
+ } else if (this.argument_default !== undefined) {
2144
+ kwargs.default = this.argument_default
2145
+ }
2146
+ }
2147
+
2148
+ // create the action object, and add it to the parser
2149
+ let action_class = this._pop_action_class(kwargs)
2150
+ if (typeof action_class !== 'function') {
2151
+ throw new TypeError(sub('unknown action "%s"', action_class))
2152
+ }
2153
+ // eslint-disable-next-line new-cap
2154
+ let action = new action_class(kwargs)
2155
+
2156
+ // raise an error if the action type is not callable
2157
+ let type_func = this._registry_get('type', action.type, action.type)
2158
+ if (typeof type_func !== 'function') {
2159
+ throw new TypeError(sub('%r is not callable', type_func))
2160
+ }
2161
+
2162
+ if (type_func === FileType) {
2163
+ throw new TypeError(sub('%r is a FileType class object, instance of it' +
2164
+ ' must be passed', type_func))
2165
+ }
2166
+
2167
+ // raise an error if the metavar does not match the type
2168
+ if ('_get_formatter' in this) {
2169
+ try {
2170
+ this._get_formatter()._format_args(action, undefined)
2171
+ } catch (err) {
2172
+ // check for 'invalid nargs value' is an artifact of TypeError and ValueError in js being the same
2173
+ if (err instanceof TypeError && err.message !== 'invalid nargs value') {
2174
+ throw new TypeError('length of metavar tuple does not match nargs')
2175
+ } else {
2176
+ throw err
2177
+ }
2178
+ }
2179
+ }
2180
+
2181
+ return this._add_action(action)
2182
+ }
2183
+
2184
+ add_argument_group() {
2185
+ let group = _ArgumentGroup(this, ...arguments)
2186
+ this._action_groups.push(group)
2187
+ return group
2188
+ }
2189
+
2190
+ add_mutually_exclusive_group() {
2191
+ // eslint-disable-next-line no-use-before-define
2192
+ let group = _MutuallyExclusiveGroup(this, ...arguments)
2193
+ this._mutually_exclusive_groups.push(group)
2194
+ return group
2195
+ }
2196
+
2197
+ _add_action(action) {
2198
+ // resolve any conflicts
2199
+ this._check_conflict(action)
2200
+
2201
+ // add to actions list
2202
+ this._actions.push(action)
2203
+ action.container = this
2204
+
2205
+ // index the action by any option strings it has
2206
+ for (let option_string of action.option_strings) {
2207
+ this._option_string_actions[option_string] = action
2208
+ }
2209
+
2210
+ // set the flag if any option strings look like negative numbers
2211
+ for (let option_string of action.option_strings) {
2212
+ if (this._negative_number_matcher.test(option_string)) {
2213
+ if (!this._has_negative_number_optionals.length) {
2214
+ this._has_negative_number_optionals.push(true)
2215
+ }
2216
+ }
2217
+ }
2218
+
2219
+ // return the created action
2220
+ return action
2221
+ }
2222
+
2223
+ _remove_action(action) {
2224
+ _array_remove(this._actions, action)
2225
+ }
2226
+
2227
+ _add_container_actions(container) {
2228
+ // collect groups by titles
2229
+ let title_group_map = {}
2230
+ for (let group of this._action_groups) {
2231
+ if (group.title in title_group_map) {
2232
+ let msg = 'cannot merge actions - two groups are named %r'
2233
+ throw new TypeError(sub(msg, group.title))
2234
+ }
2235
+ title_group_map[group.title] = group
2236
+ }
2237
+
2238
+ // map each action to its group
2239
+ let group_map = new Map()
2240
+ for (let group of container._action_groups) {
2241
+
2242
+ // if a group with the title exists, use that, otherwise
2243
+ // create a new group matching the container's group
2244
+ if (!(group.title in title_group_map)) {
2245
+ title_group_map[group.title] = this.add_argument_group({
2246
+ title: group.title,
2247
+ description: group.description,
2248
+ conflict_handler: group.conflict_handler
2249
+ })
2250
+ }
2251
+
2252
+ // map the actions to their new group
2253
+ for (let action of group._group_actions) {
2254
+ group_map.set(action, title_group_map[group.title])
2255
+ }
2256
+ }
2257
+
2258
+ // add container's mutually exclusive groups
2259
+ // NOTE: if add_mutually_exclusive_group ever gains title= and
2260
+ // description= then this code will need to be expanded as above
2261
+ for (let group of container._mutually_exclusive_groups) {
2262
+ let mutex_group = this.add_mutually_exclusive_group({
2263
+ required: group.required
2264
+ })
2265
+
2266
+ // map the actions to their new mutex group
2267
+ for (let action of group._group_actions) {
2268
+ group_map.set(action, mutex_group)
2269
+ }
2270
+ }
2271
+
2272
+ // add all actions to this container or their group
2273
+ for (let action of container._actions) {
2274
+ group_map.get(action)._add_action(action)
2275
+ }
2276
+ }
2277
+
2278
+ _get_positional_kwargs() {
2279
+ let [
2280
+ dest,
2281
+ kwargs
2282
+ ] = _parse_opts(arguments, {
2283
+ dest: no_default,
2284
+ '**kwargs': no_default
2285
+ })
2286
+
2287
+ // make sure required is not specified
2288
+ if ('required' in kwargs) {
2289
+ let msg = "'required' is an invalid argument for positionals"
2290
+ throw new TypeError(msg)
2291
+ }
2292
+
2293
+ // mark positional arguments as required if at least one is
2294
+ // always required
2295
+ if (![OPTIONAL, ZERO_OR_MORE].includes(kwargs.nargs)) {
2296
+ kwargs.required = true
2297
+ }
2298
+ if (kwargs.nargs === ZERO_OR_MORE && !('default' in kwargs)) {
2299
+ kwargs.required = true
2300
+ }
2301
+
2302
+ // return the keyword arguments with no option strings
2303
+ return Object.assign(kwargs, { dest, option_strings: [] })
2304
+ }
2305
+
2306
+ _get_optional_kwargs() {
2307
+ let [
2308
+ args,
2309
+ kwargs
2310
+ ] = _parse_opts(arguments, {
2311
+ '*args': no_default,
2312
+ '**kwargs': no_default
2313
+ })
2314
+
2315
+ // determine short and long option strings
2316
+ let option_strings = []
2317
+ let long_option_strings = []
2318
+ let option_string
2319
+ for (option_string of args) {
2320
+ // error on strings that don't start with an appropriate prefix
2321
+ if (!this.prefix_chars.includes(option_string[0])) {
2322
+ let args = {option: option_string,
2323
+ prefix_chars: this.prefix_chars}
2324
+ let msg = 'invalid option string %(option)r: ' +
2325
+ 'must start with a character %(prefix_chars)r'
2326
+ throw new TypeError(sub(msg, args))
2327
+ }
2328
+
2329
+ // strings starting with two prefix characters are long options
2330
+ option_strings.push(option_string)
2331
+ if (option_string.length > 1 && this.prefix_chars.includes(option_string[1])) {
2332
+ long_option_strings.push(option_string)
2333
+ }
2334
+ }
2335
+
2336
+ // infer destination, '--foo-bar' -> 'foo_bar' and '-x' -> 'x'
2337
+ let dest = kwargs.dest
2338
+ delete kwargs.dest
2339
+ if (dest === undefined) {
2340
+ let dest_option_string
2341
+ if (long_option_strings.length) {
2342
+ dest_option_string = long_option_strings[0]
2343
+ } else {
2344
+ dest_option_string = option_strings[0]
2345
+ }
2346
+ dest = _string_lstrip(dest_option_string, this.prefix_chars)
2347
+ if (!dest) {
2348
+ let msg = 'dest= is required for options like %r'
2349
+ throw new TypeError(sub(msg, option_string))
2350
+ }
2351
+ dest = dest.replace(/-/g, '_')
2352
+ }
2353
+
2354
+ // return the updated keyword arguments
2355
+ return Object.assign(kwargs, { dest, option_strings })
2356
+ }
2357
+
2358
+ _pop_action_class(kwargs, default_value = undefined) {
2359
+ let action = getattr(kwargs, 'action', default_value)
2360
+ delete kwargs.action
2361
+ return this._registry_get('action', action, action)
2362
+ }
2363
+
2364
+ _get_handler() {
2365
+ // determine function from conflict handler string
2366
+ let handler_func_name = sub('_handle_conflict_%s', this.conflict_handler)
2367
+ if (typeof this[handler_func_name] === 'function') {
2368
+ return this[handler_func_name]
2369
+ } else {
2370
+ let msg = 'invalid conflict_resolution value: %r'
2371
+ throw new TypeError(sub(msg, this.conflict_handler))
2372
+ }
2373
+ }
2374
+
2375
+ _check_conflict(action) {
2376
+
2377
+ // find all options that conflict with this option
2378
+ let confl_optionals = []
2379
+ for (let option_string of action.option_strings) {
2380
+ if (hasattr(this._option_string_actions, option_string)) {
2381
+ let confl_optional = this._option_string_actions[option_string]
2382
+ confl_optionals.push([ option_string, confl_optional ])
2383
+ }
2384
+ }
2385
+
2386
+ // resolve any conflicts
2387
+ if (confl_optionals.length) {
2388
+ let conflict_handler = this._get_handler()
2389
+ conflict_handler.call(this, action, confl_optionals)
2390
+ }
2391
+ }
2392
+
2393
+ _handle_conflict_error(action, conflicting_actions) {
2394
+ let message = conflicting_actions.length === 1 ?
2395
+ 'conflicting option string: %s' :
2396
+ 'conflicting option strings: %s'
2397
+ let conflict_string = conflicting_actions.map(([ option_string/*, action*/ ]) => option_string).join(', ')
2398
+ throw new ArgumentError(action, sub(message, conflict_string))
2399
+ }
2400
+
2401
+ _handle_conflict_resolve(action, conflicting_actions) {
2402
+
2403
+ // remove all conflicting options
2404
+ for (let [ option_string, action ] of conflicting_actions) {
2405
+
2406
+ // remove the conflicting option
2407
+ _array_remove(action.option_strings, option_string)
2408
+ delete this._option_string_actions[option_string]
2409
+
2410
+ // if the option now has no option string, remove it from the
2411
+ // container holding it
2412
+ if (!action.option_strings.length) {
2413
+ action.container._remove_action(action)
2414
+ }
2415
+ }
2416
+ }
2417
+ }))
2418
+
2419
+
2420
+ const _ArgumentGroup = _callable(class _ArgumentGroup extends _ActionsContainer {
2421
+
2422
+ constructor() {
2423
+ let [
2424
+ container,
2425
+ title,
2426
+ description,
2427
+ kwargs
2428
+ ] = _parse_opts(arguments, {
2429
+ container: no_default,
2430
+ title: undefined,
2431
+ description: undefined,
2432
+ '**kwargs': no_default
2433
+ })
2434
+
2435
+ // add any missing keyword arguments by checking the container
2436
+ setdefault(kwargs, 'conflict_handler', container.conflict_handler)
2437
+ setdefault(kwargs, 'prefix_chars', container.prefix_chars)
2438
+ setdefault(kwargs, 'argument_default', container.argument_default)
2439
+ super(Object.assign({ description }, kwargs))
2440
+
2441
+ // group attributes
2442
+ this.title = title
2443
+ this._group_actions = []
2444
+
2445
+ // share most attributes with the container
2446
+ this._registries = container._registries
2447
+ this._actions = container._actions
2448
+ this._option_string_actions = container._option_string_actions
2449
+ this._defaults = container._defaults
2450
+ this._has_negative_number_optionals =
2451
+ container._has_negative_number_optionals
2452
+ this._mutually_exclusive_groups = container._mutually_exclusive_groups
2453
+ }
2454
+
2455
+ _add_action(action) {
2456
+ action = super._add_action(action)
2457
+ this._group_actions.push(action)
2458
+ return action
2459
+ }
2460
+
2461
+ _remove_action(action) {
2462
+ super._remove_action(action)
2463
+ _array_remove(this._group_actions, action)
2464
+ }
2465
+ })
2466
+
2467
+
2468
+ const _MutuallyExclusiveGroup = _callable(class _MutuallyExclusiveGroup extends _ArgumentGroup {
2469
+
2470
+ constructor() {
2471
+ let [
2472
+ container,
2473
+ required
2474
+ ] = _parse_opts(arguments, {
2475
+ container: no_default,
2476
+ required: false
2477
+ })
2478
+
2479
+ super(container)
2480
+ this.required = required
2481
+ this._container = container
2482
+ }
2483
+
2484
+ _add_action(action) {
2485
+ if (action.required) {
2486
+ let msg = 'mutually exclusive arguments must be optional'
2487
+ throw new TypeError(msg)
2488
+ }
2489
+ action = this._container._add_action(action)
2490
+ this._group_actions.push(action)
2491
+ return action
2492
+ }
2493
+
2494
+ _remove_action(action) {
2495
+ this._container._remove_action(action)
2496
+ _array_remove(this._group_actions, action)
2497
+ }
2498
+ })
2499
+
2500
+
2501
+ const ArgumentParser = _camelcase_alias(_callable(class ArgumentParser extends _AttributeHolder(_ActionsContainer) {
2502
+ /*
2503
+ * Object for parsing command line strings into Python objects.
2504
+ *
2505
+ * Keyword Arguments:
2506
+ * - prog -- The name of the program (default: sys.argv[0])
2507
+ * - usage -- A usage message (default: auto-generated from arguments)
2508
+ * - description -- A description of what the program does
2509
+ * - epilog -- Text following the argument descriptions
2510
+ * - parents -- Parsers whose arguments should be copied into this one
2511
+ * - formatter_class -- HelpFormatter class for printing help messages
2512
+ * - prefix_chars -- Characters that prefix optional arguments
2513
+ * - fromfile_prefix_chars -- Characters that prefix files containing
2514
+ * additional arguments
2515
+ * - argument_default -- The default value for all arguments
2516
+ * - conflict_handler -- String indicating how to handle conflicts
2517
+ * - add_help -- Add a -h/-help option
2518
+ * - allow_abbrev -- Allow long options to be abbreviated unambiguously
2519
+ * - exit_on_error -- Determines whether or not ArgumentParser exits with
2520
+ * error info when an error occurs
2521
+ */
2522
+
2523
+ constructor() {
2524
+ let [
2525
+ prog,
2526
+ usage,
2527
+ description,
2528
+ epilog,
2529
+ parents,
2530
+ formatter_class,
2531
+ prefix_chars,
2532
+ fromfile_prefix_chars,
2533
+ argument_default,
2534
+ conflict_handler,
2535
+ add_help,
2536
+ allow_abbrev,
2537
+ exit_on_error,
2538
+ debug, // LEGACY (v1 compatibility), debug mode
2539
+ version // LEGACY (v1 compatibility), version
2540
+ ] = _parse_opts(arguments, {
2541
+ prog: undefined,
2542
+ usage: undefined,
2543
+ description: undefined,
2544
+ epilog: undefined,
2545
+ parents: [],
2546
+ formatter_class: HelpFormatter,
2547
+ prefix_chars: '-',
2548
+ fromfile_prefix_chars: undefined,
2549
+ argument_default: undefined,
2550
+ conflict_handler: 'error',
2551
+ add_help: true,
2552
+ allow_abbrev: true,
2553
+ exit_on_error: true,
2554
+ debug: undefined, // LEGACY (v1 compatibility), debug mode
2555
+ version: undefined // LEGACY (v1 compatibility), version
2556
+ })
2557
+
2558
+ // LEGACY (v1 compatibility)
2559
+ if (debug !== undefined) {
2560
+ deprecate('debug',
2561
+ 'The "debug" argument to ArgumentParser is deprecated. Please ' +
2562
+ 'override ArgumentParser.exit function instead.'
2563
+ )
2564
+ }
2565
+
2566
+ if (version !== undefined) {
2567
+ deprecate('version',
2568
+ 'The "version" argument to ArgumentParser is deprecated. Please use ' +
2569
+ "add_argument(..., { action: 'version', version: 'N', ... }) instead."
2570
+ )
2571
+ }
2572
+ // end
2573
+
2574
+ super({
2575
+ description,
2576
+ prefix_chars,
2577
+ argument_default,
2578
+ conflict_handler
2579
+ })
2580
+
2581
+ // default setting for prog
2582
+ if (prog === undefined) {
2583
+ prog = path.basename(get_argv()[0] || '')
2584
+ }
2585
+
2586
+ this.prog = prog
2587
+ this.usage = usage
2588
+ this.epilog = epilog
2589
+ this.formatter_class = formatter_class
2590
+ this.fromfile_prefix_chars = fromfile_prefix_chars
2591
+ this.add_help = add_help
2592
+ this.allow_abbrev = allow_abbrev
2593
+ this.exit_on_error = exit_on_error
2594
+ // LEGACY (v1 compatibility), debug mode
2595
+ this.debug = debug
2596
+ // end
2597
+
2598
+ this._positionals = this.add_argument_group('positional arguments')
2599
+ this._optionals = this.add_argument_group('optional arguments')
2600
+ this._subparsers = undefined
2601
+
2602
+ // register types
2603
+ function identity(string) {
2604
+ return string
2605
+ }
2606
+ this.register('type', undefined, identity)
2607
+ this.register('type', null, identity)
2608
+ this.register('type', 'auto', identity)
2609
+ this.register('type', 'int', function (x) {
2610
+ let result = Number(x)
2611
+ if (!Number.isInteger(result)) {
2612
+ throw new TypeError(sub('could not convert string to int: %r', x))
2613
+ }
2614
+ return result
2615
+ })
2616
+ this.register('type', 'float', function (x) {
2617
+ let result = Number(x)
2618
+ if (isNaN(result)) {
2619
+ throw new TypeError(sub('could not convert string to float: %r', x))
2620
+ }
2621
+ return result
2622
+ })
2623
+ this.register('type', 'str', String)
2624
+ // LEGACY (v1 compatibility): custom types
2625
+ this.register('type', 'string',
2626
+ util.deprecate(String, 'use {type:"str"} or {type:String} instead of {type:"string"}'))
2627
+ // end
2628
+
2629
+ // add help argument if necessary
2630
+ // (using explicit default to override global argument_default)
2631
+ let default_prefix = prefix_chars.includes('-') ? '-' : prefix_chars[0]
2632
+ if (this.add_help) {
2633
+ this.add_argument(
2634
+ default_prefix + 'h',
2635
+ default_prefix.repeat(2) + 'help',
2636
+ {
2637
+ action: 'help',
2638
+ default: SUPPRESS,
2639
+ help: 'show this help message and exit'
2640
+ }
2641
+ )
2642
+ }
2643
+ // LEGACY (v1 compatibility), version
2644
+ if (version) {
2645
+ this.add_argument(
2646
+ default_prefix + 'v',
2647
+ default_prefix.repeat(2) + 'version',
2648
+ {
2649
+ action: 'version',
2650
+ default: SUPPRESS,
2651
+ version: this.version,
2652
+ help: "show program's version number and exit"
2653
+ }
2654
+ )
2655
+ }
2656
+ // end
2657
+
2658
+ // add parent arguments and defaults
2659
+ for (let parent of parents) {
2660
+ this._add_container_actions(parent)
2661
+ Object.assign(this._defaults, parent._defaults)
2662
+ }
2663
+ }
2664
+
2665
+ // =======================
2666
+ // Pretty __repr__ methods
2667
+ // =======================
2668
+ _get_kwargs() {
2669
+ let names = [
2670
+ 'prog',
2671
+ 'usage',
2672
+ 'description',
2673
+ 'formatter_class',
2674
+ 'conflict_handler',
2675
+ 'add_help'
2676
+ ]
2677
+ return names.map(name => [ name, getattr(this, name) ])
2678
+ }
2679
+
2680
+ // ==================================
2681
+ // Optional/Positional adding methods
2682
+ // ==================================
2683
+ add_subparsers() {
2684
+ let [
2685
+ kwargs
2686
+ ] = _parse_opts(arguments, {
2687
+ '**kwargs': no_default
2688
+ })
2689
+
2690
+ if (this._subparsers !== undefined) {
2691
+ this.error('cannot have multiple subparser arguments')
2692
+ }
2693
+
2694
+ // add the parser class to the arguments if it's not present
2695
+ setdefault(kwargs, 'parser_class', this.constructor)
2696
+
2697
+ if ('title' in kwargs || 'description' in kwargs) {
2698
+ let title = getattr(kwargs, 'title', 'subcommands')
2699
+ let description = getattr(kwargs, 'description', undefined)
2700
+ delete kwargs.title
2701
+ delete kwargs.description
2702
+ this._subparsers = this.add_argument_group(title, description)
2703
+ } else {
2704
+ this._subparsers = this._positionals
2705
+ }
2706
+
2707
+ // prog defaults to the usage message of this parser, skipping
2708
+ // optional arguments and with no "usage:" prefix
2709
+ if (kwargs.prog === undefined) {
2710
+ let formatter = this._get_formatter()
2711
+ let positionals = this._get_positional_actions()
2712
+ let groups = this._mutually_exclusive_groups
2713
+ formatter.add_usage(this.usage, positionals, groups, '')
2714
+ kwargs.prog = formatter.format_help().trim()
2715
+ }
2716
+
2717
+ // create the parsers action and add it to the positionals list
2718
+ let parsers_class = this._pop_action_class(kwargs, 'parsers')
2719
+ // eslint-disable-next-line new-cap
2720
+ let action = new parsers_class(Object.assign({ option_strings: [] }, kwargs))
2721
+ this._subparsers._add_action(action)
2722
+
2723
+ // return the created parsers action
2724
+ return action
2725
+ }
2726
+
2727
+ _add_action(action) {
2728
+ if (action.option_strings.length) {
2729
+ this._optionals._add_action(action)
2730
+ } else {
2731
+ this._positionals._add_action(action)
2732
+ }
2733
+ return action
2734
+ }
2735
+
2736
+ _get_optional_actions() {
2737
+ return this._actions.filter(action => action.option_strings.length)
2738
+ }
2739
+
2740
+ _get_positional_actions() {
2741
+ return this._actions.filter(action => !action.option_strings.length)
2742
+ }
2743
+
2744
+ // =====================================
2745
+ // Command line argument parsing methods
2746
+ // =====================================
2747
+ parse_args(args = undefined, namespace = undefined) {
2748
+ let argv
2749
+ [ args, argv ] = this.parse_known_args(args, namespace)
2750
+ if (argv && argv.length > 0) {
2751
+ let msg = 'unrecognized arguments: %s'
2752
+ this.error(sub(msg, argv.join(' ')))
2753
+ }
2754
+ return args
2755
+ }
2756
+
2757
+ parse_known_args(args = undefined, namespace = undefined) {
2758
+ if (args === undefined) {
2759
+ args = get_argv().slice(1)
2760
+ }
2761
+
2762
+ // default Namespace built from parser defaults
2763
+ if (namespace === undefined) {
2764
+ namespace = new Namespace()
2765
+ }
2766
+
2767
+ // add any action defaults that aren't present
2768
+ for (let action of this._actions) {
2769
+ if (action.dest !== SUPPRESS) {
2770
+ if (!hasattr(namespace, action.dest)) {
2771
+ if (action.default !== SUPPRESS) {
2772
+ setattr(namespace, action.dest, action.default)
2773
+ }
2774
+ }
2775
+ }
2776
+ }
2777
+
2778
+ // add any parser defaults that aren't present
2779
+ for (let dest of Object.keys(this._defaults)) {
2780
+ if (!hasattr(namespace, dest)) {
2781
+ setattr(namespace, dest, this._defaults[dest])
2782
+ }
2783
+ }
2784
+
2785
+ // parse the arguments and exit if there are any errors
2786
+ if (this.exit_on_error) {
2787
+ try {
2788
+ [ namespace, args ] = this._parse_known_args(args, namespace)
2789
+ } catch (err) {
2790
+ if (err instanceof ArgumentError) {
2791
+ this.error(err.message)
2792
+ } else {
2793
+ throw err
2794
+ }
2795
+ }
2796
+ } else {
2797
+ [ namespace, args ] = this._parse_known_args(args, namespace)
2798
+ }
2799
+
2800
+ if (hasattr(namespace, _UNRECOGNIZED_ARGS_ATTR)) {
2801
+ args = args.concat(getattr(namespace, _UNRECOGNIZED_ARGS_ATTR))
2802
+ delattr(namespace, _UNRECOGNIZED_ARGS_ATTR)
2803
+ }
2804
+
2805
+ return [ namespace, args ]
2806
+ }
2807
+
2808
+ _parse_known_args(arg_strings, namespace) {
2809
+ // replace arg strings that are file references
2810
+ if (this.fromfile_prefix_chars !== undefined) {
2811
+ arg_strings = this._read_args_from_files(arg_strings)
2812
+ }
2813
+
2814
+ // map all mutually exclusive arguments to the other arguments
2815
+ // they can't occur with
2816
+ let action_conflicts = new Map()
2817
+ for (let mutex_group of this._mutually_exclusive_groups) {
2818
+ let group_actions = mutex_group._group_actions
2819
+ for (let [ i, mutex_action ] of Object.entries(mutex_group._group_actions)) {
2820
+ let conflicts = action_conflicts.get(mutex_action) || []
2821
+ conflicts = conflicts.concat(group_actions.slice(0, +i))
2822
+ conflicts = conflicts.concat(group_actions.slice(+i + 1))
2823
+ action_conflicts.set(mutex_action, conflicts)
2824
+ }
2825
+ }
2826
+
2827
+ // find all option indices, and determine the arg_string_pattern
2828
+ // which has an 'O' if there is an option at an index,
2829
+ // an 'A' if there is an argument, or a '-' if there is a '--'
2830
+ let option_string_indices = {}
2831
+ let arg_string_pattern_parts = []
2832
+ let arg_strings_iter = Object.entries(arg_strings)[Symbol.iterator]()
2833
+ for (let [ i, arg_string ] of arg_strings_iter) {
2834
+
2835
+ // all args after -- are non-options
2836
+ if (arg_string === '--') {
2837
+ arg_string_pattern_parts.push('-')
2838
+ for ([ i, arg_string ] of arg_strings_iter) {
2839
+ arg_string_pattern_parts.push('A')
2840
+ }
2841
+
2842
+ // otherwise, add the arg to the arg strings
2843
+ // and note the index if it was an option
2844
+ } else {
2845
+ let option_tuple = this._parse_optional(arg_string)
2846
+ let pattern
2847
+ if (option_tuple === undefined) {
2848
+ pattern = 'A'
2849
+ } else {
2850
+ option_string_indices[i] = option_tuple
2851
+ pattern = 'O'
2852
+ }
2853
+ arg_string_pattern_parts.push(pattern)
2854
+ }
2855
+ }
2856
+
2857
+ // join the pieces together to form the pattern
2858
+ let arg_strings_pattern = arg_string_pattern_parts.join('')
2859
+
2860
+ // converts arg strings to the appropriate and then takes the action
2861
+ let seen_actions = new Set()
2862
+ let seen_non_default_actions = new Set()
2863
+ let extras
2864
+
2865
+ let take_action = (action, argument_strings, option_string = undefined) => {
2866
+ seen_actions.add(action)
2867
+ let argument_values = this._get_values(action, argument_strings)
2868
+
2869
+ // error if this argument is not allowed with other previously
2870
+ // seen arguments, assuming that actions that use the default
2871
+ // value don't really count as "present"
2872
+ if (argument_values !== action.default) {
2873
+ seen_non_default_actions.add(action)
2874
+ for (let conflict_action of action_conflicts.get(action) || []) {
2875
+ if (seen_non_default_actions.has(conflict_action)) {
2876
+ let msg = 'not allowed with argument %s'
2877
+ let action_name = _get_action_name(conflict_action)
2878
+ throw new ArgumentError(action, sub(msg, action_name))
2879
+ }
2880
+ }
2881
+ }
2882
+
2883
+ // take the action if we didn't receive a SUPPRESS value
2884
+ // (e.g. from a default)
2885
+ if (argument_values !== SUPPRESS) {
2886
+ action(this, namespace, argument_values, option_string)
2887
+ }
2888
+ }
2889
+
2890
+ // function to convert arg_strings into an optional action
2891
+ let consume_optional = start_index => {
2892
+
2893
+ // get the optional identified at this index
2894
+ let option_tuple = option_string_indices[start_index]
2895
+ let [ action, option_string, explicit_arg ] = option_tuple
2896
+
2897
+ // identify additional optionals in the same arg string
2898
+ // (e.g. -xyz is the same as -x -y -z if no args are required)
2899
+ let action_tuples = []
2900
+ let stop
2901
+ for (;;) {
2902
+
2903
+ // if we found no optional action, skip it
2904
+ if (action === undefined) {
2905
+ extras.push(arg_strings[start_index])
2906
+ return start_index + 1
2907
+ }
2908
+
2909
+ // if there is an explicit argument, try to match the
2910
+ // optional's string arguments to only this
2911
+ if (explicit_arg !== undefined) {
2912
+ let arg_count = this._match_argument(action, 'A')
2913
+
2914
+ // if the action is a single-dash option and takes no
2915
+ // arguments, try to parse more single-dash options out
2916
+ // of the tail of the option string
2917
+ let chars = this.prefix_chars
2918
+ if (arg_count === 0 && !chars.includes(option_string[1])) {
2919
+ action_tuples.push([ action, [], option_string ])
2920
+ let char = option_string[0]
2921
+ option_string = char + explicit_arg[0]
2922
+ let new_explicit_arg = explicit_arg.slice(1) || undefined
2923
+ let optionals_map = this._option_string_actions
2924
+ if (hasattr(optionals_map, option_string)) {
2925
+ action = optionals_map[option_string]
2926
+ explicit_arg = new_explicit_arg
2927
+ } else {
2928
+ let msg = 'ignored explicit argument %r'
2929
+ throw new ArgumentError(action, sub(msg, explicit_arg))
2930
+ }
2931
+
2932
+ // if the action expect exactly one argument, we've
2933
+ // successfully matched the option; exit the loop
2934
+ } else if (arg_count === 1) {
2935
+ stop = start_index + 1
2936
+ let args = [ explicit_arg ]
2937
+ action_tuples.push([ action, args, option_string ])
2938
+ break
2939
+
2940
+ // error if a double-dash option did not use the
2941
+ // explicit argument
2942
+ } else {
2943
+ let msg = 'ignored explicit argument %r'
2944
+ throw new ArgumentError(action, sub(msg, explicit_arg))
2945
+ }
2946
+
2947
+ // if there is no explicit argument, try to match the
2948
+ // optional's string arguments with the following strings
2949
+ // if successful, exit the loop
2950
+ } else {
2951
+ let start = start_index + 1
2952
+ let selected_patterns = arg_strings_pattern.slice(start)
2953
+ let arg_count = this._match_argument(action, selected_patterns)
2954
+ stop = start + arg_count
2955
+ let args = arg_strings.slice(start, stop)
2956
+ action_tuples.push([ action, args, option_string ])
2957
+ break
2958
+ }
2959
+ }
2960
+
2961
+ // add the Optional to the list and return the index at which
2962
+ // the Optional's string args stopped
2963
+ assert(action_tuples.length)
2964
+ for (let [ action, args, option_string ] of action_tuples) {
2965
+ take_action(action, args, option_string)
2966
+ }
2967
+ return stop
2968
+ }
2969
+
2970
+ // the list of Positionals left to be parsed; this is modified
2971
+ // by consume_positionals()
2972
+ let positionals = this._get_positional_actions()
2973
+
2974
+ // function to convert arg_strings into positional actions
2975
+ let consume_positionals = start_index => {
2976
+ // match as many Positionals as possible
2977
+ let selected_pattern = arg_strings_pattern.slice(start_index)
2978
+ let arg_counts = this._match_arguments_partial(positionals, selected_pattern)
2979
+
2980
+ // slice off the appropriate arg strings for each Positional
2981
+ // and add the Positional and its args to the list
2982
+ for (let i = 0; i < positionals.length && i < arg_counts.length; i++) {
2983
+ let action = positionals[i]
2984
+ let arg_count = arg_counts[i]
2985
+ let args = arg_strings.slice(start_index, start_index + arg_count)
2986
+ start_index += arg_count
2987
+ take_action(action, args)
2988
+ }
2989
+
2990
+ // slice off the Positionals that we just parsed and return the
2991
+ // index at which the Positionals' string args stopped
2992
+ positionals = positionals.slice(arg_counts.length)
2993
+ return start_index
2994
+ }
2995
+
2996
+ // consume Positionals and Optionals alternately, until we have
2997
+ // passed the last option string
2998
+ extras = []
2999
+ let start_index = 0
3000
+ let max_option_string_index = Math.max(-1, ...Object.keys(option_string_indices).map(Number))
3001
+ while (start_index <= max_option_string_index) {
3002
+
3003
+ // consume any Positionals preceding the next option
3004
+ let next_option_string_index = Math.min(
3005
+ // eslint-disable-next-line no-loop-func
3006
+ ...Object.keys(option_string_indices).map(Number).filter(index => index >= start_index)
3007
+ )
3008
+ if (start_index !== next_option_string_index) {
3009
+ let positionals_end_index = consume_positionals(start_index)
3010
+
3011
+ // only try to parse the next optional if we didn't consume
3012
+ // the option string during the positionals parsing
3013
+ if (positionals_end_index > start_index) {
3014
+ start_index = positionals_end_index
3015
+ continue
3016
+ } else {
3017
+ start_index = positionals_end_index
3018
+ }
3019
+ }
3020
+
3021
+ // if we consumed all the positionals we could and we're not
3022
+ // at the index of an option string, there were extra arguments
3023
+ if (!(start_index in option_string_indices)) {
3024
+ let strings = arg_strings.slice(start_index, next_option_string_index)
3025
+ extras = extras.concat(strings)
3026
+ start_index = next_option_string_index
3027
+ }
3028
+
3029
+ // consume the next optional and any arguments for it
3030
+ start_index = consume_optional(start_index)
3031
+ }
3032
+
3033
+ // consume any positionals following the last Optional
3034
+ let stop_index = consume_positionals(start_index)
3035
+
3036
+ // if we didn't consume all the argument strings, there were extras
3037
+ extras = extras.concat(arg_strings.slice(stop_index))
3038
+
3039
+ // make sure all required actions were present and also convert
3040
+ // action defaults which were not given as arguments
3041
+ let required_actions = []
3042
+ for (let action of this._actions) {
3043
+ if (!seen_actions.has(action)) {
3044
+ if (action.required) {
3045
+ required_actions.push(_get_action_name(action))
3046
+ } else {
3047
+ // Convert action default now instead of doing it before
3048
+ // parsing arguments to avoid calling convert functions
3049
+ // twice (which may fail) if the argument was given, but
3050
+ // only if it was defined already in the namespace
3051
+ if (action.default !== undefined &&
3052
+ typeof action.default === 'string' &&
3053
+ hasattr(namespace, action.dest) &&
3054
+ action.default === getattr(namespace, action.dest)) {
3055
+ setattr(namespace, action.dest,
3056
+ this._get_value(action, action.default))
3057
+ }
3058
+ }
3059
+ }
3060
+ }
3061
+
3062
+ if (required_actions.length) {
3063
+ this.error(sub('the following arguments are required: %s',
3064
+ required_actions.join(', ')))
3065
+ }
3066
+
3067
+ // make sure all required groups had one option present
3068
+ for (let group of this._mutually_exclusive_groups) {
3069
+ if (group.required) {
3070
+ let no_actions_used = true
3071
+ for (let action of group._group_actions) {
3072
+ if (seen_non_default_actions.has(action)) {
3073
+ no_actions_used = false
3074
+ break
3075
+ }
3076
+ }
3077
+
3078
+ // if no actions were used, report the error
3079
+ if (no_actions_used) {
3080
+ let names = group._group_actions
3081
+ .filter(action => action.help !== SUPPRESS)
3082
+ .map(action => _get_action_name(action))
3083
+ let msg = 'one of the arguments %s is required'
3084
+ this.error(sub(msg, names.join(' ')))
3085
+ }
3086
+ }
3087
+ }
3088
+
3089
+ // return the updated namespace and the extra arguments
3090
+ return [ namespace, extras ]
3091
+ }
3092
+
3093
+ _read_args_from_files(arg_strings) {
3094
+ // expand arguments referencing files
3095
+ let new_arg_strings = []
3096
+ for (let arg_string of arg_strings) {
3097
+
3098
+ // for regular arguments, just add them back into the list
3099
+ if (!arg_string || !this.fromfile_prefix_chars.includes(arg_string[0])) {
3100
+ new_arg_strings.push(arg_string)
3101
+
3102
+ // replace arguments referencing files with the file content
3103
+ } else {
3104
+ try {
3105
+ let args_file = fs.readFileSync(arg_string.slice(1), 'utf8')
3106
+ let arg_strings = []
3107
+ for (let arg_line of splitlines(args_file)) {
3108
+ for (let arg of this.convert_arg_line_to_args(arg_line)) {
3109
+ arg_strings.push(arg)
3110
+ }
3111
+ }
3112
+ arg_strings = this._read_args_from_files(arg_strings)
3113
+ new_arg_strings = new_arg_strings.concat(arg_strings)
3114
+ } catch (err) {
3115
+ this.error(err.message)
3116
+ }
3117
+ }
3118
+ }
3119
+
3120
+ // return the modified argument list
3121
+ return new_arg_strings
3122
+ }
3123
+
3124
+ convert_arg_line_to_args(arg_line) {
3125
+ return [arg_line]
3126
+ }
3127
+
3128
+ _match_argument(action, arg_strings_pattern) {
3129
+ // match the pattern for this action to the arg strings
3130
+ let nargs_pattern = this._get_nargs_pattern(action)
3131
+ let match = arg_strings_pattern.match(new RegExp('^' + nargs_pattern))
3132
+
3133
+ // raise an exception if we weren't able to find a match
3134
+ if (match === null) {
3135
+ let nargs_errors = {
3136
+ undefined: 'expected one argument',
3137
+ [OPTIONAL]: 'expected at most one argument',
3138
+ [ONE_OR_MORE]: 'expected at least one argument'
3139
+ }
3140
+ let msg = nargs_errors[action.nargs]
3141
+ if (msg === undefined) {
3142
+ msg = sub(action.nargs === 1 ? 'expected %s argument' : 'expected %s arguments', action.nargs)
3143
+ }
3144
+ throw new ArgumentError(action, msg)
3145
+ }
3146
+
3147
+ // return the number of arguments matched
3148
+ return match[1].length
3149
+ }
3150
+
3151
+ _match_arguments_partial(actions, arg_strings_pattern) {
3152
+ // progressively shorten the actions list by slicing off the
3153
+ // final actions until we find a match
3154
+ let result = []
3155
+ for (let i of range(actions.length, 0, -1)) {
3156
+ let actions_slice = actions.slice(0, i)
3157
+ let pattern = actions_slice.map(action => this._get_nargs_pattern(action)).join('')
3158
+ let match = arg_strings_pattern.match(new RegExp('^' + pattern))
3159
+ if (match !== null) {
3160
+ result = result.concat(match.slice(1).map(string => string.length))
3161
+ break
3162
+ }
3163
+ }
3164
+
3165
+ // return the list of arg string counts
3166
+ return result
3167
+ }
3168
+
3169
+ _parse_optional(arg_string) {
3170
+ // if it's an empty string, it was meant to be a positional
3171
+ if (!arg_string) {
3172
+ return undefined
3173
+ }
3174
+
3175
+ // if it doesn't start with a prefix, it was meant to be positional
3176
+ if (!this.prefix_chars.includes(arg_string[0])) {
3177
+ return undefined
3178
+ }
3179
+
3180
+ // if the option string is present in the parser, return the action
3181
+ if (arg_string in this._option_string_actions) {
3182
+ let action = this._option_string_actions[arg_string]
3183
+ return [ action, arg_string, undefined ]
3184
+ }
3185
+
3186
+ // if it's just a single character, it was meant to be positional
3187
+ if (arg_string.length === 1) {
3188
+ return undefined
3189
+ }
3190
+
3191
+ // if the option string before the "=" is present, return the action
3192
+ if (arg_string.includes('=')) {
3193
+ let [ option_string, explicit_arg ] = _string_split(arg_string, '=', 1)
3194
+ if (option_string in this._option_string_actions) {
3195
+ let action = this._option_string_actions[option_string]
3196
+ return [ action, option_string, explicit_arg ]
3197
+ }
3198
+ }
3199
+
3200
+ // search through all possible prefixes of the option string
3201
+ // and all actions in the parser for possible interpretations
3202
+ let option_tuples = this._get_option_tuples(arg_string)
3203
+
3204
+ // if multiple actions match, the option string was ambiguous
3205
+ if (option_tuples.length > 1) {
3206
+ let options = option_tuples.map(([ /*action*/, option_string/*, explicit_arg*/ ]) => option_string).join(', ')
3207
+ let args = {option: arg_string, matches: options}
3208
+ let msg = 'ambiguous option: %(option)s could match %(matches)s'
3209
+ this.error(sub(msg, args))
3210
+
3211
+ // if exactly one action matched, this segmentation is good,
3212
+ // so return the parsed action
3213
+ } else if (option_tuples.length === 1) {
3214
+ let [ option_tuple ] = option_tuples
3215
+ return option_tuple
3216
+ }
3217
+
3218
+ // if it was not found as an option, but it looks like a negative
3219
+ // number, it was meant to be positional
3220
+ // unless there are negative-number-like options
3221
+ if (this._negative_number_matcher.test(arg_string)) {
3222
+ if (!this._has_negative_number_optionals.length) {
3223
+ return undefined
3224
+ }
3225
+ }
3226
+
3227
+ // if it contains a space, it was meant to be a positional
3228
+ if (arg_string.includes(' ')) {
3229
+ return undefined
3230
+ }
3231
+
3232
+ // it was meant to be an optional but there is no such option
3233
+ // in this parser (though it might be a valid option in a subparser)
3234
+ return [ undefined, arg_string, undefined ]
3235
+ }
3236
+
3237
+ _get_option_tuples(option_string) {
3238
+ let result = []
3239
+
3240
+ // option strings starting with two prefix characters are only
3241
+ // split at the '='
3242
+ let chars = this.prefix_chars
3243
+ if (chars.includes(option_string[0]) && chars.includes(option_string[1])) {
3244
+ if (this.allow_abbrev) {
3245
+ let option_prefix, explicit_arg
3246
+ if (option_string.includes('=')) {
3247
+ [ option_prefix, explicit_arg ] = _string_split(option_string, '=', 1)
3248
+ } else {
3249
+ option_prefix = option_string
3250
+ explicit_arg = undefined
3251
+ }
3252
+ for (let option_string of Object.keys(this._option_string_actions)) {
3253
+ if (option_string.startsWith(option_prefix)) {
3254
+ let action = this._option_string_actions[option_string]
3255
+ let tup = [ action, option_string, explicit_arg ]
3256
+ result.push(tup)
3257
+ }
3258
+ }
3259
+ }
3260
+
3261
+ // single character options can be concatenated with their arguments
3262
+ // but multiple character options always have to have their argument
3263
+ // separate
3264
+ } else if (chars.includes(option_string[0]) && !chars.includes(option_string[1])) {
3265
+ let option_prefix = option_string
3266
+ let explicit_arg = undefined
3267
+ let short_option_prefix = option_string.slice(0, 2)
3268
+ let short_explicit_arg = option_string.slice(2)
3269
+
3270
+ for (let option_string of Object.keys(this._option_string_actions)) {
3271
+ if (option_string === short_option_prefix) {
3272
+ let action = this._option_string_actions[option_string]
3273
+ let tup = [ action, option_string, short_explicit_arg ]
3274
+ result.push(tup)
3275
+ } else if (option_string.startsWith(option_prefix)) {
3276
+ let action = this._option_string_actions[option_string]
3277
+ let tup = [ action, option_string, explicit_arg ]
3278
+ result.push(tup)
3279
+ }
3280
+ }
3281
+
3282
+ // shouldn't ever get here
3283
+ } else {
3284
+ this.error(sub('unexpected option string: %s', option_string))
3285
+ }
3286
+
3287
+ // return the collected option tuples
3288
+ return result
3289
+ }
3290
+
3291
+ _get_nargs_pattern(action) {
3292
+ // in all examples below, we have to allow for '--' args
3293
+ // which are represented as '-' in the pattern
3294
+ let nargs = action.nargs
3295
+ let nargs_pattern
3296
+
3297
+ // the default (None) is assumed to be a single argument
3298
+ if (nargs === undefined) {
3299
+ nargs_pattern = '(-*A-*)'
3300
+
3301
+ // allow zero or one arguments
3302
+ } else if (nargs === OPTIONAL) {
3303
+ nargs_pattern = '(-*A?-*)'
3304
+
3305
+ // allow zero or more arguments
3306
+ } else if (nargs === ZERO_OR_MORE) {
3307
+ nargs_pattern = '(-*[A-]*)'
3308
+
3309
+ // allow one or more arguments
3310
+ } else if (nargs === ONE_OR_MORE) {
3311
+ nargs_pattern = '(-*A[A-]*)'
3312
+
3313
+ // allow any number of options or arguments
3314
+ } else if (nargs === REMAINDER) {
3315
+ nargs_pattern = '([-AO]*)'
3316
+
3317
+ // allow one argument followed by any number of options or arguments
3318
+ } else if (nargs === PARSER) {
3319
+ nargs_pattern = '(-*A[-AO]*)'
3320
+
3321
+ // suppress action, like nargs=0
3322
+ } else if (nargs === SUPPRESS) {
3323
+ nargs_pattern = '(-*-*)'
3324
+
3325
+ // all others should be integers
3326
+ } else {
3327
+ nargs_pattern = sub('(-*%s-*)', 'A'.repeat(nargs).split('').join('-*'))
3328
+ }
3329
+
3330
+ // if this is an optional action, -- is not allowed
3331
+ if (action.option_strings.length) {
3332
+ nargs_pattern = nargs_pattern.replace(/-\*/g, '')
3333
+ nargs_pattern = nargs_pattern.replace(/-/g, '')
3334
+ }
3335
+
3336
+ // return the pattern
3337
+ return nargs_pattern
3338
+ }
3339
+
3340
+ // ========================
3341
+ // Alt command line argument parsing, allowing free intermix
3342
+ // ========================
3343
+
3344
+ parse_intermixed_args(args = undefined, namespace = undefined) {
3345
+ let argv
3346
+ [ args, argv ] = this.parse_known_intermixed_args(args, namespace)
3347
+ if (argv.length) {
3348
+ let msg = 'unrecognized arguments: %s'
3349
+ this.error(sub(msg, argv.join(' ')))
3350
+ }
3351
+ return args
3352
+ }
3353
+
3354
+ parse_known_intermixed_args(args = undefined, namespace = undefined) {
3355
+ // returns a namespace and list of extras
3356
+ //
3357
+ // positional can be freely intermixed with optionals. optionals are
3358
+ // first parsed with all positional arguments deactivated. The 'extras'
3359
+ // are then parsed. If the parser definition is incompatible with the
3360
+ // intermixed assumptions (e.g. use of REMAINDER, subparsers) a
3361
+ // TypeError is raised.
3362
+ //
3363
+ // positionals are 'deactivated' by setting nargs and default to
3364
+ // SUPPRESS. This blocks the addition of that positional to the
3365
+ // namespace
3366
+
3367
+ let extras
3368
+ let positionals = this._get_positional_actions()
3369
+ let a = positionals.filter(action => [ PARSER, REMAINDER ].includes(action.nargs))
3370
+ if (a.length) {
3371
+ throw new TypeError(sub('parse_intermixed_args: positional arg' +
3372
+ ' with nargs=%s', a[0].nargs))
3373
+ }
3374
+
3375
+ for (let group of this._mutually_exclusive_groups) {
3376
+ for (let action of group._group_actions) {
3377
+ if (positionals.includes(action)) {
3378
+ throw new TypeError('parse_intermixed_args: positional in' +
3379
+ ' mutuallyExclusiveGroup')
3380
+ }
3381
+ }
3382
+ }
3383
+
3384
+ let save_usage
3385
+ try {
3386
+ save_usage = this.usage
3387
+ let remaining_args
3388
+ try {
3389
+ if (this.usage === undefined) {
3390
+ // capture the full usage for use in error messages
3391
+ this.usage = this.format_usage().slice(7)
3392
+ }
3393
+ for (let action of positionals) {
3394
+ // deactivate positionals
3395
+ action.save_nargs = action.nargs
3396
+ // action.nargs = 0
3397
+ action.nargs = SUPPRESS
3398
+ action.save_default = action.default
3399
+ action.default = SUPPRESS
3400
+ }
3401
+ [ namespace, remaining_args ] = this.parse_known_args(args,
3402
+ namespace)
3403
+ for (let action of positionals) {
3404
+ // remove the empty positional values from namespace
3405
+ let attr = getattr(namespace, action.dest)
3406
+ if (Array.isArray(attr) && attr.length === 0) {
3407
+ // eslint-disable-next-line no-console
3408
+ console.warn(sub('Do not expect %s in %s', action.dest, namespace))
3409
+ delattr(namespace, action.dest)
3410
+ }
3411
+ }
3412
+ } finally {
3413
+ // restore nargs and usage before exiting
3414
+ for (let action of positionals) {
3415
+ action.nargs = action.save_nargs
3416
+ action.default = action.save_default
3417
+ }
3418
+ }
3419
+ let optionals = this._get_optional_actions()
3420
+ try {
3421
+ // parse positionals. optionals aren't normally required, but
3422
+ // they could be, so make sure they aren't.
3423
+ for (let action of optionals) {
3424
+ action.save_required = action.required
3425
+ action.required = false
3426
+ }
3427
+ for (let group of this._mutually_exclusive_groups) {
3428
+ group.save_required = group.required
3429
+ group.required = false
3430
+ }
3431
+ [ namespace, extras ] = this.parse_known_args(remaining_args,
3432
+ namespace)
3433
+ } finally {
3434
+ // restore parser values before exiting
3435
+ for (let action of optionals) {
3436
+ action.required = action.save_required
3437
+ }
3438
+ for (let group of this._mutually_exclusive_groups) {
3439
+ group.required = group.save_required
3440
+ }
3441
+ }
3442
+ } finally {
3443
+ this.usage = save_usage
3444
+ }
3445
+ return [ namespace, extras ]
3446
+ }
3447
+
3448
+ // ========================
3449
+ // Value conversion methods
3450
+ // ========================
3451
+ _get_values(action, arg_strings) {
3452
+ // for everything but PARSER, REMAINDER args, strip out first '--'
3453
+ if (![PARSER, REMAINDER].includes(action.nargs)) {
3454
+ try {
3455
+ _array_remove(arg_strings, '--')
3456
+ } catch (err) {}
3457
+ }
3458
+
3459
+ let value
3460
+ // optional argument produces a default when not present
3461
+ if (!arg_strings.length && action.nargs === OPTIONAL) {
3462
+ if (action.option_strings.length) {
3463
+ value = action.const
3464
+ } else {
3465
+ value = action.default
3466
+ }
3467
+ if (typeof value === 'string') {
3468
+ value = this._get_value(action, value)
3469
+ this._check_value(action, value)
3470
+ }
3471
+
3472
+ // when nargs='*' on a positional, if there were no command-line
3473
+ // args, use the default if it is anything other than None
3474
+ } else if (!arg_strings.length && action.nargs === ZERO_OR_MORE &&
3475
+ !action.option_strings.length) {
3476
+ if (action.default !== undefined) {
3477
+ value = action.default
3478
+ } else {
3479
+ value = arg_strings
3480
+ }
3481
+ this._check_value(action, value)
3482
+
3483
+ // single argument or optional argument produces a single value
3484
+ } else if (arg_strings.length === 1 && [undefined, OPTIONAL].includes(action.nargs)) {
3485
+ let arg_string = arg_strings[0]
3486
+ value = this._get_value(action, arg_string)
3487
+ this._check_value(action, value)
3488
+
3489
+ // REMAINDER arguments convert all values, checking none
3490
+ } else if (action.nargs === REMAINDER) {
3491
+ value = arg_strings.map(v => this._get_value(action, v))
3492
+
3493
+ // PARSER arguments convert all values, but check only the first
3494
+ } else if (action.nargs === PARSER) {
3495
+ value = arg_strings.map(v => this._get_value(action, v))
3496
+ this._check_value(action, value[0])
3497
+
3498
+ // SUPPRESS argument does not put anything in the namespace
3499
+ } else if (action.nargs === SUPPRESS) {
3500
+ value = SUPPRESS
3501
+
3502
+ // all other types of nargs produce a list
3503
+ } else {
3504
+ value = arg_strings.map(v => this._get_value(action, v))
3505
+ for (let v of value) {
3506
+ this._check_value(action, v)
3507
+ }
3508
+ }
3509
+
3510
+ // return the converted value
3511
+ return value
3512
+ }
3513
+
3514
+ _get_value(action, arg_string) {
3515
+ let type_func = this._registry_get('type', action.type, action.type)
3516
+ if (typeof type_func !== 'function') {
3517
+ let msg = '%r is not callable'
3518
+ throw new ArgumentError(action, sub(msg, type_func))
3519
+ }
3520
+
3521
+ // convert the value to the appropriate type
3522
+ let result
3523
+ try {
3524
+ try {
3525
+ result = type_func(arg_string)
3526
+ } catch (err) {
3527
+ // Dear TC39, why would you ever consider making es6 classes not callable?
3528
+ // We had one universal interface, [[Call]], which worked for anything
3529
+ // (with familiar this-instanceof guard for classes). Now we have two.
3530
+ if (err instanceof TypeError &&
3531
+ /Class constructor .* cannot be invoked without 'new'/.test(err.message)) {
3532
+ // eslint-disable-next-line new-cap
3533
+ result = new type_func(arg_string)
3534
+ } else {
3535
+ throw err
3536
+ }
3537
+ }
3538
+
3539
+ } catch (err) {
3540
+ // ArgumentTypeErrors indicate errors
3541
+ if (err instanceof ArgumentTypeError) {
3542
+ //let name = getattr(action.type, 'name', repr(action.type))
3543
+ let msg = err.message
3544
+ throw new ArgumentError(action, msg)
3545
+
3546
+ // TypeErrors or ValueErrors also indicate errors
3547
+ } else if (err instanceof TypeError) {
3548
+ let name = getattr(action.type, 'name', repr(action.type))
3549
+ let args = {type: name, value: arg_string}
3550
+ let msg = 'invalid %(type)s value: %(value)r'
3551
+ throw new ArgumentError(action, sub(msg, args))
3552
+ } else {
3553
+ throw err
3554
+ }
3555
+ }
3556
+
3557
+ // return the converted value
3558
+ return result
3559
+ }
3560
+
3561
+ _check_value(action, value) {
3562
+ // converted value must be one of the choices (if specified)
3563
+ if (action.choices !== undefined && !_choices_to_array(action.choices).includes(value)) {
3564
+ let args = {value,
3565
+ choices: _choices_to_array(action.choices).map(repr).join(', ')}
3566
+ let msg = 'invalid choice: %(value)r (choose from %(choices)s)'
3567
+ throw new ArgumentError(action, sub(msg, args))
3568
+ }
3569
+ }
3570
+
3571
+ // =======================
3572
+ // Help-formatting methods
3573
+ // =======================
3574
+ format_usage() {
3575
+ let formatter = this._get_formatter()
3576
+ formatter.add_usage(this.usage, this._actions,
3577
+ this._mutually_exclusive_groups)
3578
+ return formatter.format_help()
3579
+ }
3580
+
3581
+ format_help() {
3582
+ let formatter = this._get_formatter()
3583
+
3584
+ // usage
3585
+ formatter.add_usage(this.usage, this._actions,
3586
+ this._mutually_exclusive_groups)
3587
+
3588
+ // description
3589
+ formatter.add_text(this.description)
3590
+
3591
+ // positionals, optionals and user-defined groups
3592
+ for (let action_group of this._action_groups) {
3593
+ formatter.start_section(action_group.title)
3594
+ formatter.add_text(action_group.description)
3595
+ formatter.add_arguments(action_group._group_actions)
3596
+ formatter.end_section()
3597
+ }
3598
+
3599
+ // epilog
3600
+ formatter.add_text(this.epilog)
3601
+
3602
+ // determine help from format above
3603
+ return formatter.format_help()
3604
+ }
3605
+
3606
+ _get_formatter() {
3607
+ // eslint-disable-next-line new-cap
3608
+ return new this.formatter_class({ prog: this.prog })
3609
+ }
3610
+
3611
+ // =====================
3612
+ // Help-printing methods
3613
+ // =====================
3614
+ print_usage(file = undefined) {
3615
+ if (file === undefined) file = process.stdout
3616
+ this._print_message(this.format_usage(), file)
3617
+ }
3618
+
3619
+ print_help(file = undefined) {
3620
+ if (file === undefined) file = process.stdout
3621
+ this._print_message(this.format_help(), file)
3622
+ }
3623
+
3624
+ _print_message(message, file = undefined) {
3625
+ if (message) {
3626
+ if (file === undefined) file = process.stderr
3627
+ file.write(message)
3628
+ }
3629
+ }
3630
+
3631
+ // ===============
3632
+ // Exiting methods
3633
+ // ===============
3634
+ exit(status = 0, message = undefined) {
3635
+ if (message) {
3636
+ this._print_message(message, process.stderr)
3637
+ }
3638
+ process.exit(status)
3639
+ }
3640
+
3641
+ error(message) {
3642
+ /*
3643
+ * error(message: string)
3644
+ *
3645
+ * Prints a usage message incorporating the message to stderr and
3646
+ * exits.
3647
+ *
3648
+ * If you override this in a subclass, it should not return -- it
3649
+ * should either exit or raise an exception.
3650
+ */
3651
+
3652
+ // LEGACY (v1 compatibility), debug mode
3653
+ if (this.debug === true) throw new Error(message)
3654
+ // end
3655
+ this.print_usage(process.stderr)
3656
+ let args = {prog: this.prog, message: message}
3657
+ this.exit(2, sub('%(prog)s: error: %(message)s\n', args))
3658
+ }
3659
+ }))
3660
+
3661
+
3662
+ module.exports = {
3663
+ ArgumentParser,
3664
+ ArgumentError,
3665
+ ArgumentTypeError,
3666
+ BooleanOptionalAction,
3667
+ FileType,
3668
+ HelpFormatter,
3669
+ ArgumentDefaultsHelpFormatter,
3670
+ RawDescriptionHelpFormatter,
3671
+ RawTextHelpFormatter,
3672
+ MetavarTypeHelpFormatter,
3673
+ Namespace,
3674
+ Action,
3675
+ ONE_OR_MORE,
3676
+ OPTIONAL,
3677
+ PARSER,
3678
+ REMAINDER,
3679
+ SUPPRESS,
3680
+ ZERO_OR_MORE
3681
+ }
3682
+
3683
+ // LEGACY (v1 compatibility), Const alias
3684
+ Object.defineProperty(module.exports, 'Const', {
3685
+ get() {
3686
+ let result = {}
3687
+ Object.entries({ ONE_OR_MORE, OPTIONAL, PARSER, REMAINDER, SUPPRESS, ZERO_OR_MORE }).forEach(([ n, v ]) => {
3688
+ Object.defineProperty(result, n, {
3689
+ get() {
3690
+ deprecate(n, sub('use argparse.%s instead of argparse.Const.%s', n, n))
3691
+ return v
3692
+ }
3693
+ })
3694
+ })
3695
+ Object.entries({ _UNRECOGNIZED_ARGS_ATTR }).forEach(([ n, v ]) => {
3696
+ Object.defineProperty(result, n, {
3697
+ get() {
3698
+ deprecate(n, sub('argparse.Const.%s is an internal symbol and will no longer be available', n))
3699
+ return v
3700
+ }
3701
+ })
3702
+ })
3703
+ return result
3704
+ },
3705
+ enumerable: false
3706
+ })
3707
+ // end