@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.
- package/CHANGELOG.md +476 -6
- package/README.md +77 -6
- package/dist/bin/argv.d.ts +13 -2
- package/dist/bin/argv.js +27 -0
- package/dist/bin/argv.js.map +1 -1
- package/dist/bin/forge.js +36 -2
- package/dist/bin/forge.js.map +1 -1
- package/dist/extensions/forgecli/approve.d.ts +24 -0
- package/dist/extensions/forgecli/approve.js +202 -0
- package/dist/extensions/forgecli/approve.js.map +1 -0
- package/dist/extensions/forgecli/ask-user-tool.d.ts +1 -1
- package/dist/extensions/forgecli/ask-user-tool.js +17 -3
- package/dist/extensions/forgecli/ask-user-tool.js.map +1 -1
- package/dist/extensions/forgecli/audience-gate.d.ts +30 -0
- package/dist/extensions/forgecli/audience-gate.js +49 -0
- package/dist/extensions/forgecli/audience-gate.js.map +1 -0
- package/dist/extensions/forgecli/collate.d.ts +24 -0
- package/dist/extensions/forgecli/collate.js +199 -0
- package/dist/extensions/forgecli/collate.js.map +1 -0
- package/dist/extensions/forgecli/commit.d.ts +24 -0
- package/dist/extensions/forgecli/commit.js +202 -0
- package/dist/extensions/forgecli/commit.js.map +1 -0
- package/dist/extensions/forgecli/enhance.d.ts +29 -0
- package/dist/extensions/forgecli/enhance.js +264 -0
- package/dist/extensions/forgecli/enhance.js.map +1 -0
- package/dist/extensions/forgecli/fix-bug.d.ts +75 -0
- package/dist/extensions/forgecli/fix-bug.js +1133 -0
- package/dist/extensions/forgecli/fix-bug.js.map +1 -0
- package/dist/extensions/forgecli/forge-commands.d.ts +2 -1
- package/dist/extensions/forgecli/forge-commands.js +41 -20
- package/dist/extensions/forgecli/forge-commands.js.map +1 -1
- package/dist/extensions/forgecli/forge-header.d.ts +12 -0
- package/dist/extensions/forgecli/forge-header.js +108 -0
- package/dist/extensions/forgecli/forge-header.js.map +1 -0
- package/dist/extensions/forgecli/forge-init.d.ts +3 -3
- package/dist/extensions/forgecli/forge-init.js +196 -41
- package/dist/extensions/forgecli/forge-init.js.map +1 -1
- package/dist/extensions/forgecli/forge-subagent.d.ts +110 -0
- package/dist/extensions/forgecli/forge-subagent.js +246 -0
- package/dist/extensions/forgecli/forge-subagent.js.map +1 -0
- package/dist/extensions/forgecli/forge-tools.d.ts +1 -1
- package/dist/extensions/forgecli/forge-tools.js +191 -17
- package/dist/extensions/forgecli/forge-tools.js.map +1 -1
- package/dist/extensions/forgecli/forge-update-command.d.ts +1 -1
- package/dist/extensions/forgecli/health-check.d.ts +1 -1
- package/dist/extensions/forgecli/health-check.js +2 -2
- package/dist/extensions/forgecli/health-check.js.map +1 -1
- package/dist/extensions/forgecli/hook-dispatcher.d.ts +53 -1
- package/dist/extensions/forgecli/hook-dispatcher.js +64 -2
- package/dist/extensions/forgecli/hook-dispatcher.js.map +1 -1
- package/dist/extensions/forgecli/hooks/post-init-hook.d.ts +15 -0
- package/dist/extensions/forgecli/hooks/post-init-hook.js +127 -0
- package/dist/extensions/forgecli/hooks/post-init-hook.js.map +1 -0
- package/dist/extensions/forgecli/hooks/post-sprint-hook.d.ts +37 -0
- package/dist/extensions/forgecli/hooks/post-sprint-hook.js +166 -0
- package/dist/extensions/forgecli/hooks/post-sprint-hook.js.map +1 -0
- package/dist/extensions/forgecli/hooks/two-layer-guard.d.ts +28 -0
- package/dist/extensions/forgecli/hooks/two-layer-guard.js +57 -0
- package/dist/extensions/forgecli/hooks/two-layer-guard.js.map +1 -0
- package/dist/extensions/forgecli/implement.d.ts +24 -0
- package/dist/extensions/forgecli/implement.js +217 -0
- package/dist/extensions/forgecli/implement.js.map +1 -0
- package/dist/extensions/forgecli/index.d.ts +1 -1
- package/dist/extensions/forgecli/index.js +177 -1
- package/dist/extensions/forgecli/index.js.map +1 -1
- package/dist/extensions/forgecli/kickoff.d.ts +10 -0
- package/dist/extensions/forgecli/kickoff.js +24 -0
- package/dist/extensions/forgecli/kickoff.js.map +1 -0
- package/dist/extensions/forgecli/loaders/persona-skill-loader.d.ts +45 -0
- package/dist/extensions/forgecli/loaders/persona-skill-loader.js +227 -0
- package/dist/extensions/forgecli/loaders/persona-skill-loader.js.map +1 -0
- package/dist/extensions/forgecli/loaders/template-render.d.ts +20 -0
- package/dist/extensions/forgecli/loaders/template-render.js +85 -0
- package/dist/extensions/forgecli/loaders/template-render.js.map +1 -0
- package/dist/extensions/forgecli/loaders/workflow-loader.d.ts +41 -0
- package/dist/extensions/forgecli/loaders/workflow-loader.js +164 -0
- package/dist/extensions/forgecli/loaders/workflow-loader.js.map +1 -0
- package/dist/extensions/forgecli/plan.d.ts +24 -0
- package/dist/extensions/forgecli/plan.js +212 -0
- package/dist/extensions/forgecli/plan.js.map +1 -0
- package/dist/extensions/forgecli/project-orientation.d.ts +1 -0
- package/dist/extensions/forgecli/project-orientation.js +83 -0
- package/dist/extensions/forgecli/project-orientation.js.map +1 -0
- package/dist/extensions/forgecli/read-command.d.ts +2 -0
- package/dist/extensions/forgecli/read-command.js +100 -0
- package/dist/extensions/forgecli/read-command.js.map +1 -0
- package/dist/extensions/forgecli/regenerate.d.ts +2 -0
- package/dist/extensions/forgecli/regenerate.js +169 -0
- package/dist/extensions/forgecli/regenerate.js.map +1 -0
- package/dist/extensions/forgecli/review-code.d.ts +24 -0
- package/dist/extensions/forgecli/review-code.js +202 -0
- package/dist/extensions/forgecli/review-code.js.map +1 -0
- package/dist/extensions/forgecli/review-plan.d.ts +24 -0
- package/dist/extensions/forgecli/review-plan.js +203 -0
- package/dist/extensions/forgecli/review-plan.js.map +1 -0
- package/dist/extensions/forgecli/review-server.d.ts +10 -0
- package/dist/extensions/forgecli/review-server.js +894 -0
- package/dist/extensions/forgecli/review-server.js.map +1 -0
- package/dist/extensions/forgecli/run-sprint.d.ts +23 -0
- package/dist/extensions/forgecli/run-sprint.js +561 -0
- package/dist/extensions/forgecli/run-sprint.js.map +1 -0
- package/dist/extensions/forgecli/run-task.d.ts +133 -0
- package/dist/extensions/forgecli/run-task.js +892 -0
- package/dist/extensions/forgecli/run-task.js.map +1 -0
- package/dist/extensions/forgecli/session-registry.d.ts +81 -0
- package/dist/extensions/forgecli/session-registry.js +224 -0
- package/dist/extensions/forgecli/session-registry.js.map +1 -0
- package/dist/extensions/forgecli/sprint-intake.d.ts +10 -0
- package/dist/extensions/forgecli/sprint-intake.js +91 -0
- package/dist/extensions/forgecli/sprint-intake.js.map +1 -0
- package/dist/extensions/forgecli/sprint-plan.d.ts +14 -0
- package/dist/extensions/forgecli/sprint-plan.js +122 -0
- package/dist/extensions/forgecli/sprint-plan.js.map +1 -0
- package/dist/extensions/forgecli/store-resolver.d.ts +38 -0
- package/dist/extensions/forgecli/store-resolver.js +232 -0
- package/dist/extensions/forgecli/store-resolver.js.map +1 -0
- package/dist/extensions/forgecli/subagent/agents.d.ts +1 -1
- package/dist/extensions/forgecli/subagent/agents.js +2 -2
- package/dist/extensions/forgecli/subagent/caller-context.d.ts +26 -0
- package/dist/extensions/forgecli/subagent/caller-context.js +67 -0
- package/dist/extensions/forgecli/subagent/caller-context.js.map +1 -0
- package/dist/extensions/forgecli/subagent/index.d.ts +2 -2
- package/dist/extensions/forgecli/subagent/index.js +4 -4
- package/dist/extensions/forgecli/test-orchestrate.d.ts +2 -0
- package/dist/extensions/forgecli/test-orchestrate.js +181 -0
- package/dist/extensions/forgecli/test-orchestrate.js.map +1 -0
- package/dist/extensions/forgecli/thread-switcher.d.ts +2 -0
- package/dist/extensions/forgecli/thread-switcher.js +476 -0
- package/dist/extensions/forgecli/thread-switcher.js.map +1 -0
- package/dist/extensions/forgecli/usage-hook.d.ts +49 -0
- package/dist/extensions/forgecli/usage-hook.js +123 -0
- package/dist/extensions/forgecli/usage-hook.js.map +1 -0
- package/dist/extensions/forgecli/validate.d.ts +24 -0
- package/dist/extensions/forgecli/validate.js +202 -0
- package/dist/extensions/forgecli/validate.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/engine.d.ts +23 -0
- package/dist/extensions/forgecli/wf-engine/engine.js +384 -0
- package/dist/extensions/forgecli/wf-engine/engine.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/event-parser.d.ts +6 -0
- package/dist/extensions/forgecli/wf-engine/event-parser.js +29 -0
- package/dist/extensions/forgecli/wf-engine/event-parser.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/id-gen.d.ts +6 -0
- package/dist/extensions/forgecli/wf-engine/id-gen.js +17 -0
- package/dist/extensions/forgecli/wf-engine/id-gen.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/loader.d.ts +2 -0
- package/dist/extensions/forgecli/wf-engine/loader.js +100 -0
- package/dist/extensions/forgecli/wf-engine/loader.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/predicate.d.ts +7 -0
- package/dist/extensions/forgecli/wf-engine/predicate.js +36 -0
- package/dist/extensions/forgecli/wf-engine/predicate.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/prompt-compiler.d.ts +15 -0
- package/dist/extensions/forgecli/wf-engine/prompt-compiler.js +23 -0
- package/dist/extensions/forgecli/wf-engine/prompt-compiler.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/register.d.ts +9 -0
- package/dist/extensions/forgecli/wf-engine/register.js +59 -0
- package/dist/extensions/forgecli/wf-engine/register.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/remit-check.d.ts +6 -0
- package/dist/extensions/forgecli/wf-engine/remit-check.js +42 -0
- package/dist/extensions/forgecli/wf-engine/remit-check.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/state-store.d.ts +13 -0
- package/dist/extensions/forgecli/wf-engine/state-store.js +43 -0
- package/dist/extensions/forgecli/wf-engine/state-store.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/types.d.ts +66 -0
- package/dist/extensions/forgecli/wf-engine/types.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/worker.d.ts +11 -0
- package/dist/extensions/forgecli/wf-engine/worker.js +50 -0
- package/dist/extensions/forgecli/wf-engine/worker.js.map +1 -0
- package/dist/forge-payload/.base-pack/workflows/_fragments/context-injection.md +10 -4
- package/dist/forge-payload/.base-pack/workflows/_fragments/event-emission-schema.md +71 -27
- package/dist/forge-payload/.base-pack/workflows/_fragments/finalize.md +9 -19
- package/dist/forge-payload/.base-pack/workflows/_fragments/friction-emit.md +73 -0
- package/dist/forge-payload/.base-pack/workflows/_fragments/store-cli-verbs.md +23 -0
- package/dist/forge-payload/.base-pack/workflows/architect_approve.md +27 -5
- package/dist/forge-payload/.base-pack/workflows/architect_review_sprint_completion.md +10 -3
- package/dist/forge-payload/.base-pack/workflows/architect_sprint_intake.md +21 -14
- package/dist/forge-payload/.base-pack/workflows/architect_sprint_plan.md +9 -11
- package/dist/forge-payload/.base-pack/workflows/collator_agent.md +20 -2
- package/dist/forge-payload/.base-pack/workflows/commit_task.md +22 -4
- package/dist/forge-payload/.base-pack/workflows/enhance.md +274 -0
- package/dist/forge-payload/.base-pack/workflows/fix_bug.md +30 -3
- package/dist/forge-payload/.base-pack/workflows/implement_plan.md +33 -5
- package/dist/forge-payload/.base-pack/workflows/orchestrate_task.md +71 -14
- package/dist/forge-payload/.base-pack/workflows/plan_task.md +29 -4
- package/dist/forge-payload/.base-pack/workflows/review_code.md +18 -5
- package/dist/forge-payload/.base-pack/workflows/review_plan.md +23 -5
- package/dist/forge-payload/.base-pack/workflows/run_sprint.md +27 -1
- package/dist/forge-payload/.base-pack/workflows/sprint_retrospective.md +2 -3
- package/dist/forge-payload/.base-pack/workflows/update_implementation.md +21 -4
- package/dist/forge-payload/.base-pack/workflows/update_plan.md +20 -3
- package/dist/forge-payload/.base-pack/workflows/validate_task.md +25 -4
- package/dist/forge-payload/.claude-plugin/plugin.json +10 -4
- package/dist/forge-payload/.schemas/bug.schema.json +4 -2
- package/dist/forge-payload/.schemas/event-sidecar.schema.json +1 -1
- package/dist/forge-payload/.schemas/event.schema.json +140 -6
- package/dist/forge-payload/commands/add-pipeline.md +342 -0
- package/dist/forge-payload/commands/add-task.md +269 -0
- package/dist/forge-payload/commands/ask.md +43 -0
- package/dist/forge-payload/commands/calibrate.md +356 -0
- package/dist/forge-payload/commands/config.md +202 -0
- package/dist/forge-payload/commands/enhance.md +38 -0
- package/dist/forge-payload/commands/health.md +225 -0
- package/dist/forge-payload/commands/init.md +165 -0
- package/dist/forge-payload/commands/materialize.md +119 -0
- package/dist/forge-payload/commands/migrate.md +160 -0
- package/dist/forge-payload/commands/quiz-agent.md +38 -0
- package/dist/forge-payload/commands/regenerate.md +673 -0
- package/dist/forge-payload/commands/remove.md +174 -0
- package/dist/forge-payload/commands/report-bug.md +191 -0
- package/dist/forge-payload/commands/store-query.md +73 -0
- package/dist/forge-payload/commands/store-repair.md +187 -0
- package/dist/forge-payload/commands/update-tools.md +56 -0
- package/dist/forge-payload/commands/update.md +1376 -0
- package/dist/forge-payload/tools/backfill-provider.cjs +112 -0
- package/dist/forge-payload/tools/collate.cjs +1042 -0
- package/dist/forge-payload/tools/friction-emit.cjs +112 -0
- package/dist/forge-payload/tools/lib/store-facade.cjs +162 -0
- package/dist/forge-payload/tools/lib/store-nlp.cjs +250 -0
- package/dist/forge-payload/tools/lib/store-query-exec.cjs +272 -0
- package/dist/forge-payload/tools/lib/validate.js +141 -0
- package/dist/forge-payload/tools/package.json +3 -0
- package/dist/forge-payload/tools/parse-gates.cjs +151 -0
- package/dist/forge-payload/tools/preflight-gate.cjs +367 -0
- package/dist/forge-payload/tools/prompts/sprint-plan-prompt.md +70 -0
- package/dist/forge-payload/tools/read-verdict.cjs +154 -0
- package/dist/forge-payload/tools/schemas/task-list.schema.json +53 -0
- package/dist/forge-payload/tools/store-cli.cjs +1350 -0
- package/dist/forge-payload/tools/store-query.cjs +362 -0
- package/dist/forge-payload/tools/validate-store.cjs +597 -0
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/endpoint/bdd.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js +38 -39
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/models/BedrockRuntimeServiceException.js +3 -3
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.browser.js +14 -16
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.js +20 -24
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.native.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.shared.js +9 -10
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/BedrockRuntime.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/BedrockRuntimeClient.js +6 -6
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ApplyGuardrailCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ConverseCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ConverseStreamCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/CountTokensCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/GetAsyncInvokeCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/InvokeModelCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/InvokeModelWithBidirectionalStreamCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/InvokeModelWithResponseStreamCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ListAsyncInvokesCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/StartAsyncInvokeCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/models/BedrockRuntimeServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.browser.js +5 -7
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.js +5 -9
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.native.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/BedrockRuntimeClient.d.ts +6 -6
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ApplyGuardrailCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ConverseCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ConverseStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/CountTokensCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/GetAsyncInvokeCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/InvokeModelCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/InvokeModelWithBidirectionalStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/InvokeModelWithResponseStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ListAsyncInvokesCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/StartAsyncInvokeCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/models/BedrockRuntimeServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/BedrockRuntimeClient.d.ts +12 -18
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ApplyGuardrailCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ConverseCommand.d.ts +6 -8
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ConverseStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/CountTokensCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/GetAsyncInvokeCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/InvokeModelCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/InvokeModelWithBidirectionalStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/InvokeModelWithResponseStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ListAsyncInvokesCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/StartAsyncInvokeCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/models/BedrockRuntimeServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/package.json +18 -43
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +65 -51
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -2
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +2 -2
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +7 -7
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +56 -41
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +59 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +7 -6
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +1 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +1 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +28 -13
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +2 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +2 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/util/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/util/util-format-url/format-url.js +29 -0
- package/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/util/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/package.json +16 -13
- package/node_modules/@aws-sdk/core/util.d.ts +7 -0
- package/node_modules/@aws-sdk/core/util.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +3 -3
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +10 -10
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +7 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +4 -4
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/package.json +15 -10
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +9 -10
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -12
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +14 -15
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +2 -3
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-login/package.json +4 -6
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-node/package.json +9 -10
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/package.json +3 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +16 -17
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +2 -3
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +5 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +3 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +1 -34
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +4 -5
- package/node_modules/@aws-sdk/eventstream-handler-node/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/eventstream-handler-node/dist-es/EventStreamPayloadHandler.js +1 -1
- package/node_modules/@aws-sdk/eventstream-handler-node/dist-types/EventSigningTransformStream.d.ts +1 -1
- package/node_modules/@aws-sdk/eventstream-handler-node/dist-types/ts3.4/EventSigningTransformStream.d.ts +1 -1
- package/node_modules/@aws-sdk/eventstream-handler-node/package.json +2 -3
- package/node_modules/@aws-sdk/middleware-eventstream/dist-cjs/index.js +3 -3
- package/node_modules/@aws-sdk/middleware-eventstream/dist-es/eventStreamHandlingMiddleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-eventstream/dist-es/eventStreamHeaderMiddleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-eventstream/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/middleware-host-header/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.browser.js +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +2 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +6 -3
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +5 -5
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +1 -1
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +4 -6
- package/node_modules/@aws-sdk/middleware-websocket/dist-cjs/index.js +13 -15
- package/node_modules/@aws-sdk/middleware-websocket/dist-es/WebSocketFetchHandler.js +5 -5
- package/node_modules/@aws-sdk/middleware-websocket/dist-es/WebsocketSignatureV4.js +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/dist-es/middlewares/websocketEndpointMiddleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/dist-es/ws-eventstream/EventSigningTransformStream.js +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/dist-es/ws-eventstream/EventStreamPayloadHandler.js +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/dist-types/WebSocketFetchHandler.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-websocket/dist-types/ts3.4/WebSocketFetchHandler.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-websocket/dist-types/ts3.4/ws-eventstream/EventSigningTransformStream.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/dist-types/ws-eventstream/EventSigningTransformStream.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/package.json +5 -10
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +520 -52
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +454 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +399 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +593 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +835 -55
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentity.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/CognitoIdentityServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +4 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +4 -8
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +4 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +4 -8
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/SSOServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +4 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +4 -8
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +4 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +4 -8
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +5 -10
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +0 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +4 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +4 -8
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSOClient.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/SSOServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +3 -13
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +0 -9
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +8 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +8 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +8 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/SSOServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +8 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +8 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +2 -12
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +0 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/package.json +13 -34
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +6 -6
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.browser.js +6 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +4 -5
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +1 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +1 -1
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +3 -6
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +1 -1
- package/node_modules/@aws-sdk/region-config-resolver/package.json +6 -4
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +38 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js +2 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4SignWithCredentials.js +36 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/index.js +3 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4MultiRegion.d.ts +1 -1
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4SignWithCredentials.d.ts +20 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/index.d.ts +3 -5
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4SignWithCredentials.d.ts +21 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +9 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +3 -4
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +18 -19
- package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +1 -2
- package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/package.json +4 -5
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +9 -9
- package/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/package.json +2 -3
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +1 -34
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.browser.js +4 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +13 -10
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +8 -3
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +1 -1
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +3 -4
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +60 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -3
- package/node_modules/@entelligentsia/pi-agent-core/README.md +488 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.d.ts +24 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.js +458 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.js.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent.d.ts +117 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent.js +398 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent.js.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.d.ts +69 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.js +278 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.js.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/types.d.ts +369 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/types.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/types.js.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/package.json +45 -0
- package/node_modules/@entelligentsia/pi-ai/README.md +1313 -0
- package/node_modules/@entelligentsia/pi-ai/dist/cli.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-ai/dist/cli.js +116 -0
- package/node_modules/@entelligentsia/pi-ai/dist/cli.js.map +1 -0
- package/node_modules/@entelligentsia/pi-ai/dist/models.generated.d.ts +17265 -0
- package/node_modules/@entelligentsia/pi-ai/dist/models.generated.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-ai/dist/models.generated.js +16500 -0
- package/node_modules/@entelligentsia/pi-ai/dist/models.generated.js.map +1 -0
- package/node_modules/@entelligentsia/pi-ai/dist/utils/oauth/types.js +2 -0
- package/node_modules/@entelligentsia/pi-ai/package.json +108 -0
- package/node_modules/@entelligentsia/pi-coding-agent/CHANGELOG.md +4166 -0
- package/node_modules/@entelligentsia/pi-coding-agent/README.md +652 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/bun/register-bedrock.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/bun/register-bedrock.js +4 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/bun/register-bedrock.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/args.d.ts +53 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/args.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/args.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/config-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/config-selector.js +31 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/config-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/file-processor.d.ts +15 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/file-processor.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/file-processor.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/initial-message.d.ts +18 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/initial-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/initial-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/list-models.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/list-models.js +98 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/list-models.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/session-picker.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/session-picker.js +35 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/session-picker.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/config.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/config.js +399 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/config.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session-services.d.ts +86 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session-services.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session-services.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.d.ts +595 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.js +2521 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.d.ts +141 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.js +441 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts +88 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.js +243 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.d.ts +121 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.js +615 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/utils.d.ts +38 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/utils.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/utils.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/defaults.d.ts +3 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/defaults.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/defaults.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/index.d.ts +37 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/index.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/index.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/tool-renderer.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/tool-renderer.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/loader.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/loader.js +498 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/loader.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.d.ts +159 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.js +825 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/types.d.ts +1187 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/types.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/types.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/wrapper.d.ts +20 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/wrapper.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/wrapper.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.d.ts +353 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.js +295 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/messages.d.ts +77 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/messages.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/messages.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.d.ts +150 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.js +727 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.d.ts +110 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.js +494 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.d.ts +107 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.js +282 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/session-manager.d.ts +333 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/session-manager.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/session-manager.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/settings-manager.d.ts +261 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/settings-manager.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/settings-manager.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.d.ts +68 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.js +335 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.d.ts +49 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.js +324 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.d.ts +35 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.js +298 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.d.ts +37 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.js +304 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/index.d.ts +40 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/index.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/index.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.d.ts +37 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.js +169 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.d.ts +35 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.js +289 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.d.ts +21 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.js +49 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts +14 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/tool-definition-wrapper.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.d.ts +26 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.js +213 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/main.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/main.js +583 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/main.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/armin.d.ts +34 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/armin.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/armin.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts +20 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.js +121 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts +34 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.js +175 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts +16 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js +54 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts +16 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js +44 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts +16 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js +45 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts +71 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.js +481 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts +14 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts +21 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.js +70 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts +20 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.js +79 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts +23 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/daxnuts.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts +15 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts +5 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js +40 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts +20 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.js +111 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts +23 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.js +61 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts +24 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.js +78 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.d.ts +27 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.js +201 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts +8 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js +22 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts +46 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +160 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts +47 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.js +278 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts +31 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js +165 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts +42 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js +290 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector-search.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js +155 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts +96 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.js +861 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts +67 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.js +373 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts +10 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js +39 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts +17 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js +47 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts +11 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.js +50 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts +11 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js +51 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts +63 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.js +295 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts +89 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.js +1092 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts +30 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js +114 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts +10 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.js +29 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/visual-truncate.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js +33 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts +374 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.js +4625 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts +81 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.js +971 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/print-mode.d.ts +28 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/print-mode.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/print-mode.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts +224 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-client.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-mode.js +604 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-mode.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts +419 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-types.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/image-resize.d.ts +36 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/image-resize.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/image-resize.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.d.ts +16 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.js +50 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/compaction.md +394 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/custom-provider.md +646 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/extensions.md +2596 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/index.md +70 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/packages.md +223 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/quickstart.md +142 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/rpc.md +1407 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/sdk.md +1149 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/session-format.md +412 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/termux.md +127 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/tui.md +918 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/README.md +208 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/auto-commit-on-exit.ts +49 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/bash-spawn-hook.ts +30 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/bookmark.ts +50 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/border-status-editor.ts +150 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/built-in-tool-renderer.ts +249 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/claude-rules.ts +86 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/commands.ts +72 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/confirm-destructive.ts +59 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-compaction.ts +127 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-footer.ts +64 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-header.ts +73 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-anthropic/index.ts +604 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-anthropic/package-lock.json +24 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-anthropic/package.json +19 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/index.ts +349 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/package.json +16 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/test.ts +82 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/dirty-repo-guard.ts +56 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/doom-overlay/doom-component.ts +132 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/doom-overlay/doom-keys.ts +104 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/doom-overlay/index.ts +74 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/dynamic-resources/index.ts +15 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/dynamic-tools.ts +74 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/event-bus.ts +43 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/file-trigger.ts +41 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/git-checkpoint.ts +53 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/github-issue-autocomplete.ts +185 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/handoff.ts +191 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/hello.ts +26 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/hidden-thinking-label.ts +53 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/inline-bash.ts +94 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/input-transform.ts +43 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/interactive-shell.ts +196 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/mac-system-theme.ts +47 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/message-renderer.ts +59 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/minimal-mode.ts +426 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/modal-editor.ts +85 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/model-status.ts +31 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/notify.ts +55 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/overlay-qa-tests.ts +1348 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/overlay-test.ts +150 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/permission-gate.ts +34 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/pirate.ts +47 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/plan-mode/index.ts +340 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/preset.ts +430 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/prompt-customizer.ts +97 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/protected-paths.ts +30 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/provider-payload.ts +18 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/qna.ts +122 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/question.ts +264 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/questionnaire.ts +427 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/rainbow-editor.ts +88 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/reload-runtime.ts +37 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/rpc-demo.ts +118 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/sandbox/index.ts +321 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/sandbox/package-lock.json +92 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/sandbox/package.json +19 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/send-user-message.ts +97 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/session-name.ts +27 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/shutdown-command.ts +63 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/snake.ts +343 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/space-invaders.ts +560 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/ssh.ts +220 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/status-line.ts +32 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/structured-output.ts +65 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/subagent/agents.ts +126 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/subagent/index.ts +987 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/summarize.ts +206 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/system-prompt-header.ts +17 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/tic-tac-toe.ts +1008 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/timed-confirm.ts +70 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/titlebar-spinner.ts +58 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/todo.ts +297 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/tool-override.ts +144 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/tools.ts +141 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/trigger-compact.ts +50 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/truncated-tool.ts +195 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/widget-placement.ts +9 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/with-deps/index.ts +32 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/with-deps/package-lock.json +31 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/with-deps/package.json +22 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/working-indicator.ts +123 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/working-message-test.ts +25 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/rpc-extension-ui.ts +632 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/01-minimal.ts +22 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/02-custom-model.ts +49 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/03-custom-prompt.ts +67 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/04-skills.ts +55 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/05-tools.ts +44 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/06-extensions.ts +95 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/07-context-files.ts +47 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/08-prompt-templates.ts +51 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/09-api-keys-and-oauth.ts +48 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/10-settings.ts +53 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/11-sessions.ts +48 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/12-full-control.ts +73 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/13-session-runtime.ts +67 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/README.md +147 -0
- package/node_modules/@entelligentsia/pi-coding-agent/package.json +97 -0
- package/node_modules/@entelligentsia/pi-tui/README.md +779 -0
- package/node_modules/@entelligentsia/pi-tui/package.json +49 -0
- package/node_modules/@smithy/core/checksum.d.ts +5 -0
- package/node_modules/@smithy/core/checksum.js +5 -0
- package/node_modules/@smithy/core/client.d.ts +7 -0
- package/node_modules/@smithy/core/client.js +6 -0
- package/node_modules/@smithy/core/config.d.ts +5 -0
- package/node_modules/@smithy/core/config.js +5 -0
- package/node_modules/@smithy/core/dist-cjs/index.js +6 -7
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +4 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +9 -13
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +202 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +259 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +229 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1136 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +375 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +735 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +364 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +860 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +873 -3
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +866 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +627 -3
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +297 -20
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +800 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +827 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +17 -5
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +1405 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +1094 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +1405 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +2 -2
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +1 -3
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +3 -4
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +2 -3
- package/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-blob-browser/blobHasher.js +8 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/HashCalculator.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/fileStreamHasher.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/readableStreamHasher.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.browser.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.js +5 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.native.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5-js/constants.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5-js/md5.js +168 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/index.js +26 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client.js +51 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/command.js +131 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/checksum.js +49 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/circularReplacer.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/createWaiter.js +48 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/poller.js +87 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/sleep.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/validate.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/waiter.js +35 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.js +30 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js +98 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.browser.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.js +29 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.native.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/configLoader.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromEnv.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromSharedConfigFiles.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromStatic.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/property-provider/fromValue.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigFilepath.js +4 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getCredentialsFilepath.js +4 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getHomeDir.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.js +8 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.js +39 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.js +65 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.js +31 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +47 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/getEndpointPlugin.js +26 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js +25 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateExpression.js +46 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/HeaderMarshaller.js +184 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/Int64.js +44 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.js +45 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/utils.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.js +30 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.browser.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +14 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +3 -4
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +3 -2
- package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js +39 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/querystring-builder/buildQueryString.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +1 -3
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/protocols/url-parser/parseUrl.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/index.browser.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/index.js +20 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js +50 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/parseRetryAfterHeader.js +49 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +95 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.js +7 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js +109 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/AdaptiveRetryStrategy.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +111 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js +93 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/serde/hash-node/hash-node.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.browser.js +41 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +40 -10
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.native.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js +58 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.browser.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.browser.js +35 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-body-length/calculateBodyLength.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-buffer-from/buffer-from.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +60 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.js +57 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js +38 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js +53 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js +48 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.js +5 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.browser.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/uuid/v4.js +32 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +2 -2
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +1 -1
- package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +2 -1
- package/node_modules/@smithy/core/dist-types/setFeature.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +5 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +4 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +3 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-blob-browser/blobHasher.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/HashCalculator.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/fileStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/readableStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.native.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5-js/constants.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5-js/md5.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client.d.ts +84 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/command.d.ts +119 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/create-aggregated-client.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/default-error-handler.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/exceptions.d.ts +42 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/checksum.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/object-mapping.d.ts +163 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/ser-utils.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/serde-json.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-middleware/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/circularReplacer.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/poller.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/utils/sleep.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/waiter.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.browser.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.d.ts +36 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.native.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/configLoader.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/CredentialsProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/ProviderError.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/TokenProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/chain.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/fromValue.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.d.ts +53 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseIni.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseKnownFiles.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.d.ts +110 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/decideEndpoint.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/getEndpointUrlConfig.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateCondition.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/EventStreamCodec.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.d.ts +46 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/utils.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.browser.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +23 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/Field.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpHandler.d.ts +32 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpRequest.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +3 -2
- package/node_modules/@smithy/core/dist-types/submodules/retry/index.browser.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/index.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/configurations.d.ts +68 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retryMiddleware.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/AdaptiveRetryStrategy.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/constants.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/retries-2026-config.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +7 -19
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.browser.d.ts +39 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +37 -10
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.native.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +4 -6
- package/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +31 -51
- package/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +3 -12
- package/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +1 -2
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-buffer-from/buffer-from.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.browser.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.browser.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/getAwsChunkedEncodingStream.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/headStream.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/splitStream.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.browser.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-utf8/toUint8Array.browser.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/uuid/v4.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +2 -1
- package/node_modules/@smithy/core/package.json +110 -11
- package/node_modules/@smithy/core/retry.d.ts +5 -0
- package/node_modules/@smithy/core/retry.js +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +39 -41
- package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +2 -3
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +2 -3
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +2 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +1 -2
- package/node_modules/@smithy/credential-provider-imds/package.json +2 -4
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -7
- package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +1 -2
- package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +1 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +2 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +6 -7
- package/node_modules/@smithy/fetch-http-handler/package.json +2 -4
- package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +30 -4
- package/node_modules/@smithy/is-array-buffer/package.json +12 -13
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +45 -25
- package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +26 -16
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +9 -2
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +6 -4
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +6 -5
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +7 -2
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +1 -2
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +3 -3
- package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +1 -2
- package/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/package.json +2 -3
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +167 -170
- package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +1 -2
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +3 -4
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +3 -4
- package/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +1 -2
- package/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +1 -3
- package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +2 -1
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +1 -2
- package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +2 -3
- package/node_modules/@smithy/signature-v4/package.json +2 -7
- package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +44 -17
- package/node_modules/@smithy/util-buffer-from/package.json +14 -15
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +60 -27
- package/node_modules/@smithy/util-utf8/package.json +13 -14
- package/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/node/http2.d.ts +21 -12
- package/node_modules/@types/node/package.json +2 -2
- package/node_modules/argparse/CHANGELOG.md +216 -0
- package/node_modules/argparse/LICENSE +254 -0
- package/node_modules/argparse/README.md +84 -0
- package/node_modules/argparse/argparse.js +3707 -0
- package/node_modules/argparse/lib/sub.js +67 -0
- package/node_modules/argparse/lib/textwrap.js +440 -0
- package/node_modules/argparse/package.json +31 -0
- package/node_modules/fast-xml-builder/CHANGELOG.md +4 -0
- package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.d.cts +91 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -1
- package/node_modules/fast-xml-builder/package.json +3 -2
- package/node_modules/fast-xml-builder/src/fxb.d.ts +92 -3
- package/node_modules/fast-xml-builder/src/fxb.js +92 -31
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +87 -33
- package/node_modules/js-yaml/LICENSE +21 -0
- package/node_modules/js-yaml/README.md +247 -0
- package/node_modules/js-yaml/bin/js-yaml.js +126 -0
- package/node_modules/js-yaml/dist/js-yaml.js +3880 -0
- package/node_modules/js-yaml/dist/js-yaml.min.js +2 -0
- package/node_modules/js-yaml/dist/js-yaml.mjs +3856 -0
- package/node_modules/js-yaml/index.js +47 -0
- package/node_modules/js-yaml/lib/common.js +59 -0
- package/node_modules/js-yaml/lib/dumper.js +965 -0
- package/node_modules/js-yaml/lib/exception.js +55 -0
- package/node_modules/js-yaml/lib/loader.js +1733 -0
- package/node_modules/js-yaml/lib/schema/core.js +11 -0
- package/node_modules/js-yaml/lib/schema/default.js +22 -0
- package/node_modules/js-yaml/lib/schema/failsafe.js +17 -0
- package/node_modules/js-yaml/lib/schema/json.js +19 -0
- package/node_modules/js-yaml/lib/schema.js +121 -0
- package/node_modules/js-yaml/lib/snippet.js +101 -0
- package/node_modules/js-yaml/lib/type/binary.js +125 -0
- package/node_modules/js-yaml/lib/type/bool.js +35 -0
- package/node_modules/js-yaml/lib/type/float.js +97 -0
- package/node_modules/js-yaml/lib/type/int.js +156 -0
- package/node_modules/js-yaml/lib/type/map.js +8 -0
- package/node_modules/js-yaml/lib/type/merge.js +12 -0
- package/node_modules/js-yaml/lib/type/null.js +35 -0
- package/node_modules/js-yaml/lib/type/omap.js +44 -0
- package/node_modules/js-yaml/lib/type/pairs.js +53 -0
- package/node_modules/js-yaml/lib/type/seq.js +8 -0
- package/node_modules/js-yaml/lib/type/set.js +29 -0
- package/node_modules/js-yaml/lib/type/str.js +8 -0
- package/node_modules/js-yaml/lib/type/timestamp.js +88 -0
- package/node_modules/js-yaml/lib/type.js +66 -0
- package/node_modules/js-yaml/package.json +66 -0
- package/node_modules/protobufjs/dist/light/protobuf.js +39 -13
- package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.js +2 -2
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js +2 -2
- package/node_modules/protobufjs/dist/protobuf.js +74 -43
- package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/index.d.ts +18 -5
- package/node_modules/protobufjs/package.json +1 -1
- package/node_modules/protobufjs/src/namespace.js +11 -5
- package/node_modules/protobufjs/src/parse.js +35 -30
- package/node_modules/protobufjs/src/root.js +4 -2
- package/node_modules/protobufjs/src/service.js +4 -2
- package/node_modules/protobufjs/src/type.js +4 -2
- package/node_modules/protobufjs/src/util.js +14 -0
- package/node_modules/socks/package.json +2 -2
- package/node_modules/ws/lib/sender.js +6 -1
- package/node_modules/ws/package.json +1 -1
- package/node_modules/xml-naming/README.md +189 -0
- package/node_modules/xml-naming/package.json +54 -0
- package/node_modules/xml-naming/src/index.d.ts +74 -0
- package/node_modules/xml-naming/src/index.js +270 -0
- package/node_modules/yaml/browser/dist/compose/composer.js +4 -2
- package/node_modules/yaml/browser/dist/parse/lexer.js +28 -24
- package/node_modules/yaml/browser/dist/parse/parser.js +12 -4
- package/node_modules/yaml/dist/compose/composer.js +4 -2
- package/node_modules/yaml/dist/parse/lexer.js +28 -24
- package/node_modules/yaml/dist/parse/parser.js +12 -4
- package/node_modules/yaml/package.json +1 -1
- package/package.json +93 -81
- package/themes/forge-dark.json +84 -0
- package/workflows/lead-qualifier/prompts/digest.md +44 -0
- package/workflows/lead-qualifier/prompts/draft-outreach.md +44 -0
- package/workflows/lead-qualifier/prompts/enrich.md +52 -0
- package/workflows/lead-qualifier/prompts/intake.md +48 -0
- package/workflows/lead-qualifier/prompts/mark-cold.md +38 -0
- package/workflows/lead-qualifier/prompts/score.md +45 -0
- package/workflows/lead-qualifier/workflow.yaml +95 -0
- package/workflows/research-brief/prompts/brief-synthesize.md +43 -0
- package/workflows/research-brief/prompts/intake.md +51 -0
- package/workflows/research-brief/prompts/source-critique.md +38 -0
- package/workflows/research-brief/prompts/source-score.md +38 -0
- package/workflows/research-brief/prompts/source-summarize.md +54 -0
- package/workflows/research-brief/workflow.yaml +66 -0
- package/dist/forge-payload/.tools/collate.cjs +0 -1041
- package/dist/forge-payload/.tools/lib/validate.js +0 -131
- package/dist/forge-payload/.tools/store-cli.cjs +0 -1123
- package/dist/forge-payload/.tools/validate-store.cjs +0 -522
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/package.json +0 -66
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/package.json +0 -66
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +0 -2
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/LICENSE +0 -201
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/README.md +0 -62
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +0 -157
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/constants.js +0 -2
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +0 -16
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +0 -81
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +0 -8
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +0 -11
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +0 -10
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -4
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +0 -7
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +0 -7
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +0 -8
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +0 -8
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/fromEnvSigningName.d.ts +0 -18
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +0 -12
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +0 -9
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +0 -8
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +0 -7
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -4
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +0 -18
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +0 -3
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromEnvSigningName.d.ts +0 -11
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +0 -14
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +0 -12
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +0 -11
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +0 -7
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +0 -2
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +0 -4
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/package.json +0 -70
- package/node_modules/@aws-sdk/middleware-sdk-s3/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-sdk-s3/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +0 -581
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.browser.js +0 -11
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.js +0 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/bucket-endpoint-middleware.js +0 -36
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/check-content-length-header.js +0 -32
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/protocol/S3RestXmlProtocol.js +0 -25
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-endpoint-middleware.js +0 -41
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-middleware.js +0 -42
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-expires-middleware.js +0 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityCache.js +0 -39
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityCacheEntry.js +0 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityProviderImpl.js +0 -49
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/SignatureV4S3Express.js +0 -41
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/constants.js +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressHttpSigningMiddleware.js +0 -38
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressMiddleware.js +0 -41
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/signS3Express.js +0 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js +0 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/interfaces/S3ExpressIdentity.js +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/interfaces/S3ExpressIdentityProvider.js +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3Configuration.js +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +0 -51
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.browser.js +0 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.js +0 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/validate-bucket-name.js +0 -25
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/bucket-endpoint-middleware.d.ts +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/check-content-length-header.d.ts +0 -16
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/protocol/S3RestXmlProtocol.d.ts +0 -20
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-endpoint-middleware.d.ts +0 -10
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-middleware.d.ts +0 -20
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-expires-middleware.d.ts +0 -26
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCache.d.ts +0 -16
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCacheEntry.d.ts +0 -16
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityProviderImpl.d.ts +0 -32
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/SignatureV4S3Express.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/constants.d.ts +0 -37
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -27
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressMiddleware.d.ts +0 -32
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/signS3Express.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentity.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentityProvider.d.ts +0 -12
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3Configuration.d.ts +0 -79
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts +0 -21
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.browser.d.ts +0 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.d.ts +0 -5
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/bucket-endpoint-middleware.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/check-content-length-header.d.ts +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/protocol/S3RestXmlProtocol.d.ts +0 -15
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/region-redirect-endpoint-middleware.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/region-redirect-middleware.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-expires-middleware.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityCache.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityCacheEntry.d.ts +0 -12
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityProviderImpl.d.ts +0 -31
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/SignatureV4S3Express.d.ts +0 -19
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/constants.d.ts +0 -11
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -40
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressMiddleware.d.ts +0 -27
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/signS3Express.d.ts +0 -21
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/index.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/interfaces/S3ExpressIdentity.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/interfaces/S3ExpressIdentityProvider.d.ts +0 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3Configuration.d.ts +0 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +0 -19
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.browser.d.ts +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/validate-bucket-name.d.ts +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/validate-bucket-name.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +0 -79
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +0 -60
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/bdd.js +0 -100
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/CognitoIdentityServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/errors.js +0 -121
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +0 -50
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/schemas/schemas_0.js +0 -110
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/bdd.js +0 -90
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/SigninServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/errors.js +0 -64
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +0 -39
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/schemas/schemas_0.js +0 -125
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/bdd.js +0 -80
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/SSOServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/errors.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/schemas/schemas_0.js +0 -90
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/bdd.js +0 -80
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/SSOOIDCServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/errors.js +0 -195
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/schemas/schemas_0.js +0 -140
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +0 -55
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +0 -43
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +0 -144
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +0 -19
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/bdd.js +0 -150
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/STSServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +0 -96
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +0 -39
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +0 -74
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +0 -57
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +0 -13
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/schemas/schemas_0.js +0 -195
- package/node_modules/@aws-sdk/util-arn-parser/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-arn-parser/README.md +0 -4
- package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +0 -27
- package/node_modules/@aws-sdk/util-arn-parser/package.json +0 -55
- package/node_modules/@aws-sdk/util-format-url/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-format-url/README.md +0 -4
- package/node_modules/@aws-sdk/util-format-url/dist-cjs/index.js +0 -34
- package/node_modules/@aws-sdk/util-format-url/dist-es/index.js +0 -29
- package/node_modules/@aws-sdk/util-format-url/package.json +0 -56
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +0 -2
- package/node_modules/@earendil-works/pi-agent-core/README.md +0 -488
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.d.ts +0 -24
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js +0 -458
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.d.ts +0 -117
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.js +0 -398
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.d.ts +0 -69
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.js +0 -278
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts +0 -369
- package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/types.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/package.json +0 -45
- package/node_modules/@earendil-works/pi-ai/README.md +0 -1313
- package/node_modules/@earendil-works/pi-ai/dist/cli.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-ai/dist/cli.js +0 -116
- package/node_modules/@earendil-works/pi-ai/dist/cli.js.map +0 -1
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts +0 -17588
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.js +0 -16796
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.js.map +0 -1
- package/node_modules/@earendil-works/pi-ai/package.json +0 -108
- package/node_modules/@earendil-works/pi-coding-agent/CHANGELOG.md +0 -4164
- package/node_modules/@earendil-works/pi-coding-agent/README.md +0 -651
- package/node_modules/@earendil-works/pi-coding-agent/dist/bun/register-bedrock.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/bun/register-bedrock.js +0 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/bun/register-bedrock.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.d.ts +0 -53
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/config-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/config-selector.js +0 -31
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/config-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/file-processor.d.ts +0 -15
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/file-processor.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/file-processor.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/initial-message.d.ts +0 -18
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/initial-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/initial-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/list-models.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/list-models.js +0 -98
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/list-models.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/session-picker.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/session-picker.js +0 -35
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/session-picker.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/config.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/config.js +0 -402
- package/node_modules/@earendil-works/pi-coding-agent/dist/config.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.d.ts +0 -86
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.d.ts +0 -595
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.js +0 -2521
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.d.ts +0 -141
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.js +0 -441
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts +0 -88
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.js +0 -243
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.d.ts +0 -121
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.js +0 -615
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.d.ts +0 -38
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/defaults.d.ts +0 -3
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/defaults.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/defaults.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/index.d.ts +0 -37
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/index.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/index.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/tool-renderer.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/tool-renderer.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.js +0 -498
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.d.ts +0 -159
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.js +0 -824
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.d.ts +0 -1173
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/wrapper.d.ts +0 -20
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/wrapper.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/wrapper.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.d.ts +0 -353
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.js +0 -295
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/messages.d.ts +0 -77
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/messages.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/messages.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.d.ts +0 -150
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.js +0 -727
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.d.ts +0 -110
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.js +0 -494
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.d.ts +0 -107
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.js +0 -282
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.d.ts +0 -333
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.d.ts +0 -261
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.d.ts +0 -68
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.js +0 -335
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.d.ts +0 -49
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.js +0 -324
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.d.ts +0 -35
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.js +0 -298
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.d.ts +0 -37
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.js +0 -304
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/index.d.ts +0 -40
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/index.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/index.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.d.ts +0 -37
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.js +0 -169
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.d.ts +0 -35
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.js +0 -288
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.d.ts +0 -21
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.js +0 -49
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts +0 -14
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/tool-definition-wrapper.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.d.ts +0 -26
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.js +0 -213
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/main.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/main.js +0 -583
- package/node_modules/@earendil-works/pi-coding-agent/dist/main.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/armin.d.ts +0 -34
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/armin.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/armin.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts +0 -20
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.js +0 -121
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts +0 -34
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.js +0 -175
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts +0 -16
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js +0 -54
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts +0 -16
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js +0 -44
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts +0 -16
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js +0 -45
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts +0 -71
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.js +0 -481
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts +0 -14
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts +0 -21
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.js +0 -70
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts +0 -20
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.js +0 -79
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts +0 -23
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/daxnuts.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts +0 -15
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts +0 -5
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js +0 -40
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts +0 -20
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.js +0 -111
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts +0 -23
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.js +0 -61
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts +0 -24
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.js +0 -78
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.d.ts +0 -27
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.js +0 -201
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts +0 -8
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js +0 -22
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts +0 -46
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +0 -160
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts +0 -47
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.js +0 -278
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts +0 -31
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js +0 -165
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts +0 -42
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js +0 -290
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector-search.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js +0 -155
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts +0 -96
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.js +0 -861
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts +0 -67
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.js +0 -373
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts +0 -10
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js +0 -39
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts +0 -17
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js +0 -47
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts +0 -11
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.js +0 -50
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts +0 -11
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js +0 -51
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts +0 -63
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.js +0 -295
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts +0 -89
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.js +0 -1092
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts +0 -30
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js +0 -114
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts +0 -10
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.js +0 -29
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/visual-truncate.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js +0 -33
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts +0 -361
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.js +0 -4585
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts +0 -81
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.js +0 -971
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.d.ts +0 -28
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts +0 -224
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-client.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.js +0 -601
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts +0 -419
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-types.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/image-resize.d.ts +0 -36
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/image-resize.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/image-resize.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.d.ts +0 -14
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.js +0 -34
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/docs/compaction.md +0 -394
- package/node_modules/@earendil-works/pi-coding-agent/docs/custom-provider.md +0 -646
- package/node_modules/@earendil-works/pi-coding-agent/docs/extensions.md +0 -2596
- package/node_modules/@earendil-works/pi-coding-agent/docs/index.md +0 -64
- package/node_modules/@earendil-works/pi-coding-agent/docs/packages.md +0 -223
- package/node_modules/@earendil-works/pi-coding-agent/docs/quickstart.md +0 -142
- package/node_modules/@earendil-works/pi-coding-agent/docs/rpc.md +0 -1407
- package/node_modules/@earendil-works/pi-coding-agent/docs/sdk.md +0 -1149
- package/node_modules/@earendil-works/pi-coding-agent/docs/session-format.md +0 -412
- package/node_modules/@earendil-works/pi-coding-agent/docs/termux.md +0 -127
- package/node_modules/@earendil-works/pi-coding-agent/docs/tui.md +0 -918
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/README.md +0 -208
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/auto-commit-on-exit.ts +0 -49
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/bash-spawn-hook.ts +0 -30
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/bookmark.ts +0 -50
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/border-status-editor.ts +0 -150
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/built-in-tool-renderer.ts +0 -249
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/claude-rules.ts +0 -86
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/commands.ts +0 -72
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/confirm-destructive.ts +0 -59
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-compaction.ts +0 -127
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-footer.ts +0 -64
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-header.ts +0 -73
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/index.ts +0 -604
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/package-lock.json +0 -24
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/package.json +0 -19
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/index.ts +0 -349
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/package.json +0 -16
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/test.ts +0 -82
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/dirty-repo-guard.ts +0 -56
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/doom-overlay/doom-component.ts +0 -132
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/doom-overlay/doom-keys.ts +0 -104
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/doom-overlay/index.ts +0 -74
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/dynamic-resources/index.ts +0 -15
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/dynamic-tools.ts +0 -74
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/event-bus.ts +0 -43
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/file-trigger.ts +0 -41
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/git-checkpoint.ts +0 -53
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/github-issue-autocomplete.ts +0 -185
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/handoff.ts +0 -191
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/hello.ts +0 -26
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/hidden-thinking-label.ts +0 -53
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/inline-bash.ts +0 -94
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/input-transform.ts +0 -43
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/interactive-shell.ts +0 -196
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/mac-system-theme.ts +0 -47
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/message-renderer.ts +0 -59
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/minimal-mode.ts +0 -426
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/modal-editor.ts +0 -85
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/model-status.ts +0 -31
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/notify.ts +0 -55
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/overlay-qa-tests.ts +0 -1348
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/overlay-test.ts +0 -150
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/permission-gate.ts +0 -34
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/pirate.ts +0 -47
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/plan-mode/index.ts +0 -340
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/preset.ts +0 -430
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/prompt-customizer.ts +0 -97
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/protected-paths.ts +0 -30
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/provider-payload.ts +0 -18
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/qna.ts +0 -122
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/question.ts +0 -264
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/questionnaire.ts +0 -427
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/rainbow-editor.ts +0 -88
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/reload-runtime.ts +0 -37
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/rpc-demo.ts +0 -118
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/index.ts +0 -321
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/package-lock.json +0 -92
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/package.json +0 -19
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/send-user-message.ts +0 -97
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/session-name.ts +0 -27
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/shutdown-command.ts +0 -63
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/snake.ts +0 -343
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/space-invaders.ts +0 -560
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/ssh.ts +0 -220
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/status-line.ts +0 -32
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/structured-output.ts +0 -65
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/subagent/agents.ts +0 -126
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/subagent/index.ts +0 -987
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/summarize.ts +0 -206
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/system-prompt-header.ts +0 -17
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/tic-tac-toe.ts +0 -1008
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/timed-confirm.ts +0 -70
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/titlebar-spinner.ts +0 -58
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/todo.ts +0 -297
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/tool-override.ts +0 -144
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/tools.ts +0 -141
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/trigger-compact.ts +0 -50
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/truncated-tool.ts +0 -195
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/widget-placement.ts +0 -9
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/index.ts +0 -32
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/package-lock.json +0 -31
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/package.json +0 -22
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/working-indicator.ts +0 -123
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/working-message-test.ts +0 -25
- package/node_modules/@earendil-works/pi-coding-agent/examples/rpc-extension-ui.ts +0 -632
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/01-minimal.ts +0 -22
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/02-custom-model.ts +0 -49
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/03-custom-prompt.ts +0 -67
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/04-skills.ts +0 -55
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/05-tools.ts +0 -44
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/06-extensions.ts +0 -95
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/07-context-files.ts +0 -47
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/08-prompt-templates.ts +0 -51
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/09-api-keys-and-oauth.ts +0 -48
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/10-settings.ts +0 -53
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/11-sessions.ts +0 -48
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/12-full-control.ts +0 -73
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/13-session-runtime.ts +0 -67
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/README.md +0 -147
- package/node_modules/@earendil-works/pi-coding-agent/package.json +0 -100
- package/node_modules/@earendil-works/pi-tui/README.md +0 -779
- package/node_modules/@earendil-works/pi-tui/package.json +0 -52
- package/node_modules/@mariozechner/clipboard/.yarnrc.yml +0 -1
- package/node_modules/@mariozechner/clipboard/Cargo.toml +0 -26
- package/node_modules/@mariozechner/clipboard/README.md +0 -58
- package/node_modules/@mariozechner/clipboard/build.rs +0 -5
- package/node_modules/@mariozechner/clipboard/exp.ts +0 -12
- package/node_modules/@mariozechner/clipboard/index.d.ts +0 -23
- package/node_modules/@mariozechner/clipboard/index.js +0 -317
- package/node_modules/@mariozechner/clipboard/package.json +0 -56
- package/node_modules/@mariozechner/clipboard/src/lib.rs +0 -196
- package/node_modules/@mariozechner/clipboard-linux-x64-gnu/README.md +0 -3
- package/node_modules/@mariozechner/clipboard-linux-x64-gnu/clipboard.linux-x64-gnu.node +0 -0
- package/node_modules/@mariozechner/clipboard-linux-x64-gnu/package.json +0 -25
- package/node_modules/@smithy/config-resolver/LICENSE +0 -201
- package/node_modules/@smithy/config-resolver/README.md +0 -17
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +0 -198
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +0 -4
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +0 -10
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/index.js +0 -3
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +0 -15
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +0 -2
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +0 -3
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -23
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -23
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +0 -16
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +0 -57
- package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +0 -17
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +0 -8
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +0 -12
- package/node_modules/@smithy/config-resolver/package.json +0 -65
- package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +0 -2
- package/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +0 -2
- package/node_modules/@smithy/eventstream-codec/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-codec/README.md +0 -17
- package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +0 -401
- package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +0 -184
- package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +0 -44
- package/node_modules/@smithy/eventstream-codec/dist-es/index.js +0 -8
- package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +0 -31
- package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-codec/package.json +0 -64
- package/node_modules/@smithy/eventstream-serde-browser/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-browser/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +0 -58
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +0 -20
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/index.js +0 -3
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/utils.js +0 -28
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +0 -47
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts +0 -13
- package/node_modules/@smithy/eventstream-serde-browser/package.json +0 -60
- package/node_modules/@smithy/eventstream-serde-config-resolver/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-config-resolver/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js +0 -7
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-es/index.js +0 -1
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +0 -61
- package/node_modules/@smithy/eventstream-serde-node/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-node/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +0 -53
- package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +0 -19
- package/node_modules/@smithy/eventstream-serde-node/dist-es/index.js +0 -2
- package/node_modules/@smithy/eventstream-serde-node/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-node/dist-es/utils.js +0 -26
- package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +0 -23
- package/node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +0 -12
- package/node_modules/@smithy/eventstream-serde-node/package.json +0 -61
- package/node_modules/@smithy/eventstream-serde-universal/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-universal/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +0 -132
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +0 -25
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/index.js +0 -2
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +0 -23
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +0 -18
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-universal/package.json +0 -65
- package/node_modules/@smithy/hash-node/LICENSE +0 -201
- package/node_modules/@smithy/hash-node/README.md +0 -17
- package/node_modules/@smithy/hash-node/dist-cjs/index.js +0 -42
- package/node_modules/@smithy/hash-node/dist-es/index.js +0 -37
- package/node_modules/@smithy/hash-node/package.json +0 -64
- package/node_modules/@smithy/invalid-dependency/LICENSE +0 -201
- package/node_modules/@smithy/invalid-dependency/README.md +0 -17
- package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +0 -10
- package/node_modules/@smithy/invalid-dependency/dist-es/index.js +0 -2
- package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/invalid-dependency/package.json +0 -60
- package/node_modules/@smithy/middleware-content-length/LICENSE +0 -201
- package/node_modules/@smithy/middleware-content-length/README.md +0 -17
- package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +0 -46
- package/node_modules/@smithy/middleware-content-length/dist-es/index.js +0 -39
- package/node_modules/@smithy/middleware-content-length/package.json +0 -63
- package/node_modules/@smithy/middleware-endpoint/LICENSE +0 -201
- package/node_modules/@smithy/middleware-endpoint/README.md +0 -17
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +0 -5
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +0 -7
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +0 -35
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +0 -264
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +0 -3
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +0 -64
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +0 -31
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +0 -2
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +0 -17
- package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +0 -36
- package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +0 -18
- package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +0 -6
- package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +0 -24
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +0 -28
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +0 -2
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +0 -8
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +0 -6
- package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +0 -10
- package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +0 -11
- package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +0 -18
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +0 -109
- package/node_modules/@smithy/middleware-endpoint/package.json +0 -74
- package/node_modules/@smithy/middleware-retry/LICENSE +0 -201
- package/node_modules/@smithy/middleware-retry/README.md +0 -24
- package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +0 -396
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +0 -5
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +0 -7
- package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +0 -48
- package/node_modules/@smithy/middleware-retry/dist-es/index.js +0 -8
- package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +0 -3
- package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +0 -22
- package/node_modules/@smithy/middleware-retry/dist-es/parseRetryAfterHeader.js +0 -49
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +0 -21
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/StandardRetryStrategy.js +0 -94
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/defaultRetryQuota.js +0 -27
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/delayDecider.js +0 -2
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/retryDecider.js +0 -7
- package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +0 -105
- package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +0 -68
- package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +0 -24
- package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +0 -14
- package/node_modules/@smithy/middleware-retry/package.json +0 -79
- package/node_modules/@smithy/middleware-serde/LICENSE +0 -201
- package/node_modules/@smithy/middleware-serde/README.md +0 -17
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +0 -104
- package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +0 -58
- package/node_modules/@smithy/middleware-serde/dist-es/index.js +0 -3
- package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/middleware-serde/package.json +0 -65
- package/node_modules/@smithy/middleware-stack/LICENSE +0 -201
- package/node_modules/@smithy/middleware-stack/README.md +0 -91
- package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +0 -285
- package/node_modules/@smithy/middleware-stack/dist-es/index.js +0 -1
- package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +0 -1
- package/node_modules/@smithy/middleware-stack/package.json +0 -63
- package/node_modules/@smithy/node-config-provider/LICENSE +0 -201
- package/node_modules/@smithy/node-config-provider/README.md +0 -17
- package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +0 -62
- package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +0 -9
- package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +0 -14
- package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +0 -23
- package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +0 -3
- package/node_modules/@smithy/node-config-provider/dist-es/index.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +0 -31
- package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +0 -22
- package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/node-config-provider/package.json +0 -65
- package/node_modules/@smithy/property-provider/LICENSE +0 -201
- package/node_modules/@smithy/property-provider/README.md +0 -17
- package/node_modules/@smithy/property-provider/dist-cjs/index.js +0 -117
- package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +0 -1
- package/node_modules/@smithy/property-provider/dist-es/index.js +0 -6
- package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +0 -31
- package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +0 -39
- package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +0 -31
- package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +0 -13
- package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +0 -5
- package/node_modules/@smithy/property-provider/dist-types/index.d.ts +0 -24
- package/node_modules/@smithy/property-provider/package.json +0 -60
- package/node_modules/@smithy/protocol-http/LICENSE +0 -201
- package/node_modules/@smithy/protocol-http/README.md +0 -17
- package/node_modules/@smithy/protocol-http/dist-cjs/index.js +0 -169
- package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-es/index.js +0 -8
- package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +0 -50
- package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +0 -33
- package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +0 -1
- package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +0 -35
- package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +0 -56
- package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/protocol-http/package.json +0 -61
- package/node_modules/@smithy/querystring-builder/LICENSE +0 -201
- package/node_modules/@smithy/querystring-builder/README.md +0 -17
- package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +0 -26
- package/node_modules/@smithy/querystring-builder/dist-es/index.js +0 -21
- package/node_modules/@smithy/querystring-builder/package.json +0 -60
- package/node_modules/@smithy/querystring-parser/LICENSE +0 -201
- package/node_modules/@smithy/querystring-parser/README.md +0 -17
- package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +0 -27
- package/node_modules/@smithy/querystring-parser/package.json +0 -60
- package/node_modules/@smithy/service-error-classification/LICENSE +0 -201
- package/node_modules/@smithy/service-error-classification/README.md +0 -17
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +0 -83
- package/node_modules/@smithy/service-error-classification/package.json +0 -59
- package/node_modules/@smithy/shared-ini-file-loader/LICENSE +0 -201
- package/node_modules/@smithy/shared-ini-file-loader/README.md +0 -105
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +0 -26
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +0 -12
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +0 -15
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +0 -196
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +0 -16
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +0 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +0 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +0 -22
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +0 -8
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +0 -11
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +0 -10
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +0 -39
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +0 -8
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +0 -52
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +0 -6
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +0 -10
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +0 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +0 -18
- package/node_modules/@smithy/shared-ini-file-loader/package.json +0 -72
- package/node_modules/@smithy/smithy-client/LICENSE +0 -201
- package/node_modules/@smithy/smithy-client/README.md +0 -17
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +0 -642
- package/node_modules/@smithy/smithy-client/dist-es/client.js +0 -51
- package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/command.js +0 -131
- package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +0 -49
- package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +0 -9
- package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/index.js +0 -20
- package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +0 -87
- package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +0 -119
- package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +0 -18
- package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +0 -15
- package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +0 -8
- package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +0 -42
- package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +0 -26
- package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -38
- package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +0 -1
- package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +0 -7
- package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +0 -7
- package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +0 -21
- package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +0 -162
- package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +0 -15
- package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +0 -12
- package/node_modules/@smithy/smithy-client/package.json +0 -69
- package/node_modules/@smithy/url-parser/LICENSE +0 -201
- package/node_modules/@smithy/url-parser/README.md +0 -17
- package/node_modules/@smithy/url-parser/dist-cjs/index.js +0 -23
- package/node_modules/@smithy/url-parser/dist-es/index.js +0 -18
- package/node_modules/@smithy/url-parser/package.json +0 -61
- package/node_modules/@smithy/util-base64/LICENSE +0 -201
- package/node_modules/@smithy/util-base64/README.md +0 -4
- package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +0 -12
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +0 -40
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +0 -16
- package/node_modules/@smithy/util-base64/dist-cjs/index.js +0 -27
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +0 -38
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +0 -19
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +0 -36
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +0 -12
- package/node_modules/@smithy/util-base64/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +0 -35
- package/node_modules/@smithy/util-base64/dist-es/toBase64.js +0 -15
- package/node_modules/@smithy/util-base64/dist-types/index.d.ts +0 -2
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +0 -5
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +0 -8
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +0 -7
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +0 -9
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +0 -8
- package/node_modules/@smithy/util-base64/package.json +0 -74
- package/node_modules/@smithy/util-body-length-browser/LICENSE +0 -201
- package/node_modules/@smithy/util-body-length-browser/README.md +0 -12
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +0 -30
- package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/package.json +0 -61
- package/node_modules/@smithy/util-body-length-node/LICENSE +0 -201
- package/node_modules/@smithy/util-body-length-node/README.md +0 -12
- package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +0 -32
- package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +0 -27
- package/node_modules/@smithy/util-body-length-node/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/package.json +0 -62
- package/node_modules/@smithy/util-config-provider/LICENSE +0 -201
- package/node_modules/@smithy/util-config-provider/README.md +0 -4
- package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +0 -30
- package/node_modules/@smithy/util-config-provider/dist-es/index.js +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +0 -10
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +0 -9
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +0 -4
- package/node_modules/@smithy/util-config-provider/package.json +0 -63
- package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +0 -201
- package/node_modules/@smithy/util-defaults-mode-browser/README.md +0 -17
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +0 -4
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +0 -16
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +0 -34
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +0 -23
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +0 -30
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +0 -19
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +0 -12
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +0 -16
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +0 -65
- package/node_modules/@smithy/util-defaults-mode-node/LICENSE +0 -201
- package/node_modules/@smithy/util-defaults-mode-node/README.md +0 -17
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +0 -74
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +0 -52
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +0 -6
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
- package/node_modules/@smithy/util-defaults-mode-node/package.json +0 -66
- package/node_modules/@smithy/util-endpoints/LICENSE +0 -201
- package/node_modules/@smithy/util-endpoints/README.md +0 -17
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +0 -573
- package/node_modules/@smithy/util-endpoints/dist-es/index.js +0 -8
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +0 -46
- package/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +0 -34
- package/node_modules/@smithy/util-endpoints/dist-types/decideEndpoint.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +0 -5
- package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -6
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +0 -11
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/package.json +0 -68
- package/node_modules/@smithy/util-hex-encoding/LICENSE +0 -201
- package/node_modules/@smithy/util-hex-encoding/README.md +0 -4
- package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +0 -38
- package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +0 -12
- package/node_modules/@smithy/util-hex-encoding/package.json +0 -61
- package/node_modules/@smithy/util-middleware/LICENSE +0 -201
- package/node_modules/@smithy/util-middleware/README.md +0 -17
- package/node_modules/@smithy/util-middleware/dist-cjs/index.js +0 -15
- package/node_modules/@smithy/util-middleware/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +0 -5
- package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-middleware/package.json +0 -66
- package/node_modules/@smithy/util-retry/LICENSE +0 -201
- package/node_modules/@smithy/util-retry/README.md +0 -78
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +0 -347
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +0 -36
- package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +0 -19
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +0 -111
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +0 -93
- package/node_modules/@smithy/util-retry/dist-es/index.js +0 -8
- package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -38
- package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +0 -60
- package/node_modules/@smithy/util-retry/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-retry/dist-types/retries-2026-config.d.ts +0 -11
- package/node_modules/@smithy/util-retry/package.json +0 -70
- package/node_modules/@smithy/util-stream/LICENSE +0 -201
- package/node_modules/@smithy/util-stream/README.md +0 -6
- package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +0 -36
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +0 -7
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +0 -64
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +0 -39
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +0 -12
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +0 -60
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +0 -103
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +0 -31
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +0 -41
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +0 -34
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +0 -42
- package/node_modules/@smithy/util-stream/dist-cjs/index.js +0 -108
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +0 -68
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +0 -54
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +0 -10
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +0 -16
- package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +0 -10
- package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +0 -23
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +0 -60
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +0 -35
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +0 -9
- package/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +0 -57
- package/node_modules/@smithy/util-stream/dist-es/headStream.js +0 -38
- package/node_modules/@smithy/util-stream/dist-es/index.js +0 -9
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +0 -64
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +0 -50
- package/node_modules/@smithy/util-stream/dist-es/splitStream.js +0 -13
- package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +0 -22
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +0 -61
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +0 -14
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +0 -13
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +0 -15
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +0 -50
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +0 -10
- package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +0 -9
- package/node_modules/@smithy/util-stream/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +0 -8
- package/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +0 -11
- package/node_modules/@smithy/util-stream/package.json +0 -98
- package/node_modules/@smithy/util-uri-escape/LICENSE +0 -201
- package/node_modules/@smithy/util-uri-escape/README.md +0 -10
- package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +0 -9
- package/node_modules/@smithy/util-uri-escape/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +0 -4
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +0 -4
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/util-uri-escape/package.json +0 -60
- package/node_modules/@smithy/uuid/LICENSE +0 -201
- package/node_modules/@smithy/uuid/README.md +0 -10
- package/node_modules/@smithy/uuid/dist-cjs/index.js +0 -36
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +0 -6
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +0 -4
- package/node_modules/@smithy/uuid/dist-es/index.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/randomUUID.js +0 -2
- package/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/v4.js +0 -31
- package/node_modules/@smithy/uuid/dist-types/index.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +0 -2
- package/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +0 -2
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +0 -19
- package/node_modules/@smithy/uuid/dist-types/v4.d.ts +0 -19
- package/node_modules/@smithy/uuid/package.json +0 -66
- package/node_modules/koffi/CHANGELOG.md +0 -1093
- package/node_modules/koffi/LICENSE.txt +0 -22
- package/node_modules/koffi/README.md +0 -43
- package/node_modules/koffi/build/koffi/darwin_arm64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/darwin_x64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/freebsd_arm64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/freebsd_ia32/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/freebsd_x64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_arm64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_armhf/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_ia32/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_loong64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_riscv64d/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_x64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/musl_arm64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/musl_x64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/openbsd_ia32/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/openbsd_x64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/win32_arm64/koffi.exp +0 -0
- package/node_modules/koffi/build/koffi/win32_arm64/koffi.lib +0 -0
- package/node_modules/koffi/build/koffi/win32_arm64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/win32_ia32/koffi.exp +0 -0
- package/node_modules/koffi/build/koffi/win32_ia32/koffi.lib +0 -0
- package/node_modules/koffi/build/koffi/win32_ia32/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/win32_x64/koffi.exp +0 -0
- package/node_modules/koffi/build/koffi/win32_x64/koffi.lib +0 -0
- package/node_modules/koffi/build/koffi/win32_x64/koffi.node +0 -0
- package/node_modules/koffi/doc/benchmarks.md +0 -126
- package/node_modules/koffi/doc/callbacks.md +0 -210
- package/node_modules/koffi/doc/contribute.md +0 -148
- package/node_modules/koffi/doc/functions.md +0 -250
- package/node_modules/koffi/doc/index.md +0 -61
- package/node_modules/koffi/doc/input.md +0 -471
- package/node_modules/koffi/doc/migration.md +0 -159
- package/node_modules/koffi/doc/misc.md +0 -180
- package/node_modules/koffi/doc/output.md +0 -305
- package/node_modules/koffi/doc/packaging.md +0 -88
- package/node_modules/koffi/doc/platforms.md +0 -36
- package/node_modules/koffi/doc/pointers.md +0 -328
- package/node_modules/koffi/doc/start.md +0 -118
- package/node_modules/koffi/doc/unions.md +0 -186
- package/node_modules/koffi/doc/variables.md +0 -102
- package/node_modules/koffi/index.d.ts +0 -288
- package/node_modules/koffi/index.js +0 -634
- package/node_modules/koffi/indirect.js +0 -533
- package/node_modules/koffi/lib/native/base/base.cc +0 -11015
- package/node_modules/koffi/lib/native/base/base.hh +0 -6003
- package/node_modules/koffi/lib/native/base/crc.inc +0 -2214
- package/node_modules/koffi/lib/native/base/crc_gen.py +0 -72
- package/node_modules/koffi/lib/native/base/mimetypes.inc +0 -1248
- package/node_modules/koffi/lib/native/base/mimetypes_gen.py +0 -58
- package/node_modules/koffi/lib/native/base/tower.cc +0 -821
- package/node_modules/koffi/lib/native/base/tower.hh +0 -81
- package/node_modules/koffi/lib/native/base/unicode.inc +0 -408
- package/node_modules/koffi/lib/native/base/unicode_gen.py +0 -152
- package/node_modules/koffi/package.json +0 -38
- package/node_modules/koffi/src/cnoke/LICENSE.txt +0 -22
- package/node_modules/koffi/src/cnoke/README.md +0 -99
- package/node_modules/koffi/src/cnoke/assets/FindCNoke.cmake +0 -127
- package/node_modules/koffi/src/cnoke/assets/toolchains.json +0 -126
- package/node_modules/koffi/src/cnoke/assets/win_delay_hook.c +0 -36
- package/node_modules/koffi/src/cnoke/cnoke.js +0 -170
- package/node_modules/koffi/src/cnoke/package.json +0 -24
- package/node_modules/koffi/src/cnoke/src/builder.js +0 -511
- package/node_modules/koffi/src/cnoke/src/index.js +0 -10
- package/node_modules/koffi/src/cnoke/src/tools.js +0 -407
- package/node_modules/koffi/src/koffi/CMakeLists.txt +0 -182
- package/node_modules/koffi/src/koffi/src/abi_arm32.cc +0 -1018
- package/node_modules/koffi/src/koffi/src/abi_arm32_asm.S +0 -169
- package/node_modules/koffi/src/koffi/src/abi_arm64.cc +0 -1295
- package/node_modules/koffi/src/koffi/src/abi_arm64_asm.S +0 -195
- package/node_modules/koffi/src/koffi/src/abi_arm64_asm.asm +0 -174
- package/node_modules/koffi/src/koffi/src/abi_loong64.cc +0 -5
- package/node_modules/koffi/src/koffi/src/abi_loong64_asm.S +0 -204
- package/node_modules/koffi/src/koffi/src/abi_riscv64.cc +0 -915
- package/node_modules/koffi/src/koffi/src/abi_riscv64_asm.S +0 -203
- package/node_modules/koffi/src/koffi/src/abi_x64_sysv.cc +0 -939
- package/node_modules/koffi/src/koffi/src/abi_x64_sysv_asm.S +0 -231
- package/node_modules/koffi/src/koffi/src/abi_x64_win.cc +0 -715
- package/node_modules/koffi/src/koffi/src/abi_x64_win_asm.S +0 -166
- package/node_modules/koffi/src/koffi/src/abi_x64_win_asm.asm +0 -192
- package/node_modules/koffi/src/koffi/src/abi_x86.cc +0 -860
- package/node_modules/koffi/src/koffi/src/abi_x86_asm.S +0 -193
- package/node_modules/koffi/src/koffi/src/abi_x86_asm.asm +0 -177
- package/node_modules/koffi/src/koffi/src/call.cc +0 -1326
- package/node_modules/koffi/src/koffi/src/call.hh +0 -179
- package/node_modules/koffi/src/koffi/src/errno.inc +0 -462
- package/node_modules/koffi/src/koffi/src/ffi.cc +0 -2702
- package/node_modules/koffi/src/koffi/src/ffi.hh +0 -354
- package/node_modules/koffi/src/koffi/src/init.js +0 -105
- package/node_modules/koffi/src/koffi/src/parser.cc +0 -220
- package/node_modules/koffi/src/koffi/src/parser.hh +0 -54
- package/node_modules/koffi/src/koffi/src/util.cc +0 -1807
- package/node_modules/koffi/src/koffi/src/util.hh +0 -221
- package/node_modules/koffi/src/koffi/src/uv.cc +0 -193
- package/node_modules/koffi/src/koffi/src/uv.def +0 -10
- package/node_modules/koffi/src/koffi/src/uv.hh +0 -40
- package/node_modules/koffi/src/koffi/src/win32.cc +0 -198
- package/node_modules/koffi/src/koffi/src/win32.hh +0 -119
- package/node_modules/koffi/src/koffi/tools/write_trampolines.js +0 -77
- package/node_modules/koffi/vendor/node-addon-api/LICENSE.md +0 -9
- package/node_modules/koffi/vendor/node-addon-api/README.md +0 -95
- package/node_modules/koffi/vendor/node-addon-api/napi-inl.deprecated.h +0 -186
- package/node_modules/koffi/vendor/node-addon-api/napi-inl.h +0 -7033
- package/node_modules/koffi/vendor/node-addon-api/napi.h +0 -3309
- package/node_modules/koffi/vendor/node-api-headers/LICENSE +0 -21
- package/node_modules/koffi/vendor/node-api-headers/README.md +0 -95
- package/node_modules/koffi/vendor/node-api-headers/def/js_native_api.def +0 -125
- package/node_modules/koffi/vendor/node-api-headers/def/node_api.def +0 -157
- package/node_modules/koffi/vendor/node-api-headers/include/js_native_api.h +0 -591
- package/node_modules/koffi/vendor/node-api-headers/include/js_native_api_types.h +0 -210
- package/node_modules/koffi/vendor/node-api-headers/include/node_api.h +0 -265
- package/node_modules/koffi/vendor/node-api-headers/include/node_api_types.h +0 -58
- package/node_modules/koffi/vendor/node-api-headers/include/uv/aix.h +0 -32
- package/node_modules/koffi/vendor/node-api-headers/include/uv/bsd.h +0 -34
- package/node_modules/koffi/vendor/node-api-headers/include/uv/darwin.h +0 -61
- package/node_modules/koffi/vendor/node-api-headers/include/uv/errno.h +0 -483
- package/node_modules/koffi/vendor/node-api-headers/include/uv/linux.h +0 -34
- package/node_modules/koffi/vendor/node-api-headers/include/uv/os390.h +0 -33
- package/node_modules/koffi/vendor/node-api-headers/include/uv/posix.h +0 -31
- package/node_modules/koffi/vendor/node-api-headers/include/uv/sunos.h +0 -44
- package/node_modules/koffi/vendor/node-api-headers/include/uv/threadpool.h +0 -37
- package/node_modules/koffi/vendor/node-api-headers/include/uv/tree.h +0 -521
- package/node_modules/koffi/vendor/node-api-headers/include/uv/unix.h +0 -512
- package/node_modules/koffi/vendor/node-api-headers/include/uv/version.h +0 -43
- package/node_modules/koffi/vendor/node-api-headers/include/uv/win.h +0 -698
- package/node_modules/koffi/vendor/node-api-headers/include/uv.h +0 -1990
- package/node_modules/socks/.claude/settings.local.json +0 -26
- /package/{node_modules/@earendil-works/pi-agent-core/dist → dist/extensions/forgecli/wf-engine}/types.js +0 -0
- /package/dist/forge-payload/{.tools → tools}/banners.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/build-context-pack.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/build-init-context.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/build-overlay.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/build-persona-pack.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/generation-manifest.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/lib/forge-root.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/lib/paths.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/lib/pricing.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/lib/project-root.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/lib/result.js +0 -0
- /package/dist/forge-payload/{.tools → tools}/manage-config.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/manage-versions.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/seed-store.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/store.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/substitute-placeholders.cjs +0 -0
- /package/node_modules/@aws-sdk/{util-arn-parser/dist-es/index.js → core/dist-es/submodules/util/util-arn-parser/arn.js} +0 -0
- /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
- /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
- /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
- /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
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.js.map +0 -0
- /package/node_modules/{@earendil-works/pi-ai → @entelligentsia/pi-agent-core}/dist/types.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/cli.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/types.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/types.d.ts.map +0 -0
- /package/node_modules/{@earendil-works/pi-ai/dist/utils/oauth → @entelligentsia/pi-ai/dist}/types.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/types.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/types.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/types.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/types.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/register-bedrock.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/args.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/config-selector.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/file-processor.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/initial-message.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/list-models.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/session-picker.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/config.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-services.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/utils.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/defaults.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/template.css +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/template.html +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/template.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/tool-renderer.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/tool-renderer.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/vendor/highlight.min.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/vendor/marked.min.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/loader.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/types.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/wrapper.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/messages.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-manager.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/settings-manager.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/tool-definition-wrapper.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/main.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/assets/clankolas.png +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/armin.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/daxnuts.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/session-selector-search.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/visual-truncate.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/theme/dark.json +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/theme/light.json +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/theme/theme-schema.json +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/print-mode.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/rpc-client.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/rpc-types.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-resize.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/development.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/docs.json +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/doom-extension.png +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/exy.png +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/interactive-mode.png +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/tree-view.png +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/json.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/keybindings.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/models.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/prompt-templates.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/providers.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/sessions.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/settings.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/shell-aliases.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/skills.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/terminal-setup.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/themes.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/tmux.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/usage.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/windows.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/README.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/README.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/build/doom.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/build/doom.wasm +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/build.sh +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/doomgeneric_pi.c +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom-engine.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/wad-finder.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/dynamic-resources/SKILL.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/dynamic-resources/dynamic.json +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/dynamic-resources/dynamic.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/plan-mode/README.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/plan-mode/utils.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/README.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/planner.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/reviewer.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/scout.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/worker.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/prompts/implement-and-review.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/prompts/implement.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/prompts/scout-and-plan.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.js.map +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidFunction.js +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidProvider.js +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/client/middleware-stack}/MiddlewareStack.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/client/middleware-stack}/types.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/NoOpLogger.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/constants.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/create-aggregated-client.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/default-error-handler.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/defaults-mode.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/emitWarningIfUnsupportedVersion.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/exceptions.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/extensions/retry.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/get-array-if-single-item.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/get-value-from-text-node.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/is-serializable-header-value.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/object-mapping.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/schemaLogFilter.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/ser-utils.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/serde-json.js +0 -0
- /package/node_modules/@smithy/{util-middleware/dist-es → core/dist-es/submodules/client/util-middleware}/getSmithyContext.js +0 -0
- /package/node_modules/@smithy/{util-middleware/dist-es → core/dist-es/submodules/client/util-middleware}/normalizeProvider.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/config.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/getRealRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/isFipsRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariant.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/PartitionHash.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/RegionHash.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getRegionInfo.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedHostname.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedPartition.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.js +0 -0
- /package/node_modules/@smithy/{util-defaults-mode-node/dist-es → core/dist-es/submodules/config/defaults-mode}/constants.js +0 -0
- /package/node_modules/@smithy/{util-defaults-mode-node/dist-es → core/dist-es/submodules/config/defaults-mode}/defaultsModeConfig.js +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-es → core/dist-es/submodules/config/node-config-provider}/getSelectorName.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/CredentialsProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/ProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/TokenProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/chain.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/memoize.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/constants.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/externalDataInterceptor.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getConfigData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getProfileName.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getSsoSessionData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/loadSsoSessionData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/mergeConfigFiles.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseIni.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseKnownFiles.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/readFile.js +0 -0
- /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
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/booleanSelector.js +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/numberSelector.js +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/types.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.browser.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/service-customizations/index.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/service-customizations/s3.js +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/types.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/bdd/BinaryDecisionDiagram.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/cache/EndpointCache.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/debugId.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/index.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/toDebugString.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/decideEndpoint.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/getEndpointUrlConfig.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/booleanEquals.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/coalesce.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/getAttr.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/getAttrPathList.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/index.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isIpAddress.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isSet.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isValidHostLabel.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/ite.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/not.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/parseURL.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/split.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/stringEquals.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/substring.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/uriEncode.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/resolveEndpoint.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointError.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointFunctions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/RuleSetObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/TreeRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/index.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/shared.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/callFunction.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/endpointFunctions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateCondition.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateConditions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateEndpointRule.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateErrorRule.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateRules.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateTemplate.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointHeaders.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointProperties.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointUrl.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getReferenceValue.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/index.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/EventStreamCodec.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/Message.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageDecoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageEncoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/TestVectors.fixture.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/splitMessage.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/vectorTypes.fixture.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getUnmarshalledStream.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Field.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Fields.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/extensions/httpExtensionConfiguration.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpHandler.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpRequest.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpResponse.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/isValidHostname.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/types.js +0 -0
- /package/node_modules/@smithy/{querystring-parser/dist-es/index.js → core/dist-es/submodules/protocols/querystring-parser/parseQueryString.js} +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri-path.js +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/isStreamingPayload/isStreamingPayload.browser.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/longPollMiddleware.js +0 -0
- /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
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/util.js +0 -0
- /package/node_modules/@smithy/{service-error-classification/dist-es → core/dist-es/submodules/retry/service-error-classification}/constants.js +0 -0
- /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
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/DefaultRetryToken.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/config.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/constants.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/retries-2026-config.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/types.js +0 -0
- /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
- /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serdePlugin.js +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serializerMiddleware.js +0 -0
- /package/node_modules/@smithy/{util-base64/dist-es/constants.browser.js → core/dist-es/submodules/serde/util-base64/constants-for-browser.js} +0 -0
- /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
- /package/node_modules/@smithy/{util-hex-encoding/dist-es/index.js → core/dist-es/submodules/serde/util-hex-encoding/hex-encoding.js} +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/ByteArrayCollector.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/checksum/ChecksumStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es/createBufferedReadableStream.js → core/dist-es/submodules/serde/util-stream/createBufferedReadable.browser.js} +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/headStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/splitStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/stream-type-check.js +0 -0
- /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
- /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
- /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
- /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidFunction.d.ts +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidProvider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/MiddlewareStack.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/types.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/NoOpLogger.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/defaults-mode.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/extensions/retry.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/is-serializable-header-value.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/schemaLogFilter.d.ts +0 -0
- /package/node_modules/@smithy/{util-middleware/dist-types → core/dist-types/submodules/client/util-middleware}/normalizeProvider.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/checkRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/getRealRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/isFipsRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariant.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/PartitionHash.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/RegionHash.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getRegionInfo.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedHostname.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedPartition.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.d.ts +0 -0
- /package/node_modules/@smithy/{util-defaults-mode-node/dist-types → core/dist-types/submodules/config/defaults-mode}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromEnv.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromStatic.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/getSelectorName.d.ts +0 -0
- /package/node_modules/@smithy/{property-provider/dist-types → core/dist-types/submodules/config/property-provider}/memoize.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/externalDataInterceptor.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getConfigFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getCredentialsFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getHomeDir.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getProfileName.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getSSOTokenFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSharedConfigFiles.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSsoSessionData.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/mergeConfigFiles.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/readFile.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/types.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/booleanSelector.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/numberSelector.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/types.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/service-customizations/index.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/service-customizations/s3.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/types.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/bdd/BinaryDecisionDiagram.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/debugId.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/index.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/toDebugString.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/booleanEquals.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/coalesce.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttr.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttrPathList.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/index.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isIpAddress.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isSet.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isValidHostLabel.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/ite.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/not.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/split.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/stringEquals.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/substring.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/uriEncode.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointError.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointFunctions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/RuleSetObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/TreeRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/index.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/shared.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/callFunction.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/endpointFunctions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateConditions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateEndpointRule.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTemplate.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/getReferenceValue.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/index.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/HeaderMarshaller.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Int64.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Message.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageDecoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageEncoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/TestVectors.fixture.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/splitMessage.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/vectorTypes.fixture.d.ts +0 -0
- /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
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.d.ts +0 -0
- /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
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/Fields.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/httpResponse.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/isValidHostname.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/types.d.ts +0 -0
- /package/node_modules/@smithy/{querystring-builder/dist-types/index.d.ts → core/dist-types/submodules/protocols/querystring-builder/buildQueryString.d.ts} +0 -0
- /package/node_modules/@smithy/{querystring-parser/dist-types/index.d.ts → core/dist-types/submodules/protocols/querystring-parser/parseQueryString.d.ts} +0 -0
- /package/node_modules/@smithy/{url-parser/dist-types/index.d.ts → core/dist-types/submodules/protocols/url-parser/parseUrl.d.ts} +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri-path.d.ts +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/longPollMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/omitRetryHeadersMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/parseRetryAfterHeader.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/delayDecider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/retryDecider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/types.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/util.d.ts +0 -0
- /package/node_modules/@smithy/{service-error-classification/dist-types → core/dist-types/submodules/retry/service-error-classification}/constants.d.ts +0 -0
- /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
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/ConfiguredRetryStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRateLimiter.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRetryToken.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/StandardRetryStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/config.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/types.d.ts +0 -0
- /package/node_modules/@smithy/{hash-node/dist-types/index.d.ts → core/dist-types/submodules/serde/hash-node/hash-node.d.ts} +0 -0
- /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
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/deserializerMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serdePlugin.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serializerMiddleware.d.ts +0 -0
- /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
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.d.ts +0 -0
- /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
- /package/node_modules/@smithy/{util-body-length-node/dist-types → core/dist-types/submodules/serde/util-body-length}/calculateBodyLength.d.ts +0 -0
- /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
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/ByteArrayCollector.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/checksum/ChecksumStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/headStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/sdk-stream-mixin.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/splitStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/stream-type-check.d.ts +0 -0
- /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
- /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
- /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
- /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
- /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
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/fromUtf8.browser.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/fromUtf8.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUint8Array.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUtf8.browser.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUtf8.js +0 -0
|
@@ -1,2702 +0,0 @@
|
|
|
1
|
-
// SPDX-License-Identifier: MIT
|
|
2
|
-
// SPDX-FileCopyrightText: 2025 Niels Martignène <niels.martignene@protonmail.com>
|
|
3
|
-
|
|
4
|
-
#include "lib/native/base/base.hh"
|
|
5
|
-
#include "ffi.hh"
|
|
6
|
-
#include "call.hh"
|
|
7
|
-
#include "parser.hh"
|
|
8
|
-
#include "util.hh"
|
|
9
|
-
#include "uv.hh"
|
|
10
|
-
#if defined(_WIN32)
|
|
11
|
-
#include "win32.hh"
|
|
12
|
-
#endif
|
|
13
|
-
#include "errno.inc"
|
|
14
|
-
|
|
15
|
-
#if defined(_WIN32)
|
|
16
|
-
#if !defined(NOMINMAX)
|
|
17
|
-
#define NOMINMAX
|
|
18
|
-
#endif
|
|
19
|
-
#if !defined(WIN32_LEAN_AND_MEAN)
|
|
20
|
-
#define WIN32_LEAN_AND_MEAN
|
|
21
|
-
#endif
|
|
22
|
-
#include <windows.h>
|
|
23
|
-
#include <ntsecapi.h>
|
|
24
|
-
#else
|
|
25
|
-
#include <dlfcn.h>
|
|
26
|
-
#include <unistd.h>
|
|
27
|
-
#include <sys/mman.h>
|
|
28
|
-
#if !defined(MAP_STACK)
|
|
29
|
-
#define MAP_STACK 0
|
|
30
|
-
#endif
|
|
31
|
-
#endif
|
|
32
|
-
#include <wchar.h>
|
|
33
|
-
|
|
34
|
-
#include <napi.h>
|
|
35
|
-
|
|
36
|
-
namespace K {
|
|
37
|
-
|
|
38
|
-
SharedData shared;
|
|
39
|
-
|
|
40
|
-
static thread_local CallData *exec_call;
|
|
41
|
-
|
|
42
|
-
extern "C" napi_value SwitchAndRelay(CallData *call, Size idx, uint8_t *sp, uint8_t *saved_sp, Span<uint8_t> *new_stack);
|
|
43
|
-
|
|
44
|
-
static bool ChangeSize(const char *name, Napi::Value value, Size min_size, Size max_size, Size *out_size)
|
|
45
|
-
{
|
|
46
|
-
Napi::Env env = value.Env();
|
|
47
|
-
|
|
48
|
-
if (!value.IsNumber()) {
|
|
49
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
50
|
-
|
|
51
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for '%2', expected number", GetValueType(instance, value), name);
|
|
52
|
-
return false;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
int64_t size = value.As<Napi::Number>().Int64Value();
|
|
56
|
-
|
|
57
|
-
if (size < min_size || size > max_size) {
|
|
58
|
-
ThrowError<Napi::Error>(env, "Setting '%1' must be between %2 and %3", name, FmtMemSize(min_size), FmtMemSize(max_size));
|
|
59
|
-
return false;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
*out_size = (Size)size;
|
|
63
|
-
return true;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
static bool ChangeMemorySize(const char *name, Napi::Value value, Size *out_size)
|
|
67
|
-
{
|
|
68
|
-
const Size MinSize = Kibibytes(1);
|
|
69
|
-
const Size MaxSize = Mebibytes(16);
|
|
70
|
-
|
|
71
|
-
return ChangeSize(name, value, MinSize, MaxSize, out_size);
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
static bool ChangeAsyncLimit(const char *name, Napi::Value value, int max, int *out_limit)
|
|
75
|
-
{
|
|
76
|
-
Napi::Env env = value.Env();
|
|
77
|
-
|
|
78
|
-
if (!value.IsNumber()) {
|
|
79
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
80
|
-
|
|
81
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for '%2', expected number", GetValueType(instance, value), name);
|
|
82
|
-
return false;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
int64_t n = value.As<Napi::Number>().Int64Value();
|
|
86
|
-
|
|
87
|
-
if (n < 0 || n > max) {
|
|
88
|
-
ThrowError<Napi::Error>(env, "Setting '%1' must be between 0 and %2", name, max);
|
|
89
|
-
return false;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
*out_limit = (int)n;
|
|
93
|
-
return true;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
static Napi::Value GetSetConfig(const Napi::CallbackInfo &info)
|
|
97
|
-
{
|
|
98
|
-
Napi::Env env = info.Env();
|
|
99
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
100
|
-
|
|
101
|
-
if (info.Length()) {
|
|
102
|
-
if (instance->memories.len) {
|
|
103
|
-
ThrowError<Napi::Error>(env, "Cannot change Koffi configuration once a library has been loaded");
|
|
104
|
-
return env.Null();
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
if (!info[0].IsObject()) {
|
|
108
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for config, expected object", GetValueType(instance, info[0]));
|
|
109
|
-
return env.Null();
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
decltype(instance->config) new_config = instance->config;
|
|
113
|
-
int max_async_calls = new_config.resident_async_pools + new_config.max_temporaries;
|
|
114
|
-
|
|
115
|
-
Napi::Object obj = info[0].As<Napi::Object>();
|
|
116
|
-
Napi::Array keys = GetOwnPropertyNames(obj);
|
|
117
|
-
|
|
118
|
-
for (uint32_t i = 0; i < keys.Length(); i++) {
|
|
119
|
-
std::string key = keys.Get(i).As<Napi::String>();
|
|
120
|
-
Napi::Value value = obj[key];
|
|
121
|
-
|
|
122
|
-
if (key == "sync_stack_size") {
|
|
123
|
-
if (!ChangeMemorySize(key.c_str(), value, &new_config.sync_stack_size))
|
|
124
|
-
return env.Null();
|
|
125
|
-
} else if (key == "sync_heap_size") {
|
|
126
|
-
if (!ChangeMemorySize(key.c_str(), value, &new_config.sync_heap_size))
|
|
127
|
-
return env.Null();
|
|
128
|
-
} else if (key == "async_stack_size") {
|
|
129
|
-
if (!ChangeMemorySize(key.c_str(), value, &new_config.async_stack_size))
|
|
130
|
-
return env.Null();
|
|
131
|
-
} else if (key == "async_heap_size") {
|
|
132
|
-
if (!ChangeMemorySize(key.c_str(), value, &new_config.async_heap_size))
|
|
133
|
-
return env.Null();
|
|
134
|
-
} else if (key == "resident_async_pools") {
|
|
135
|
-
if (!ChangeAsyncLimit(key.c_str(), value, K_LEN(instance->memories.data) - 1, &new_config.resident_async_pools))
|
|
136
|
-
return env.Null();
|
|
137
|
-
} else if (key == "max_async_calls") {
|
|
138
|
-
if (!ChangeAsyncLimit(key.c_str(), value, MaxAsyncCalls, &max_async_calls))
|
|
139
|
-
return env.Null();
|
|
140
|
-
} else if (key == "max_type_size") {
|
|
141
|
-
if (!ChangeSize(key.c_str(), value, 32, Mebibytes(512), &new_config.max_type_size))
|
|
142
|
-
return env.Null();
|
|
143
|
-
} else {
|
|
144
|
-
ThrowError<Napi::Error>(env, "Unexpected config member '%1'", key.c_str());
|
|
145
|
-
return env.Null();
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
if (max_async_calls < new_config.resident_async_pools) {
|
|
150
|
-
ThrowError<Napi::Error>(env, "Setting max_async_calls must be >= to resident_async_pools");
|
|
151
|
-
return env.Null();
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
new_config.max_temporaries = max_async_calls - new_config.resident_async_pools;
|
|
155
|
-
instance->config = new_config;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
Napi::Object obj = Napi::Object::New(env);
|
|
159
|
-
|
|
160
|
-
obj.Set("sync_stack_size", instance->config.sync_stack_size);
|
|
161
|
-
obj.Set("sync_heap_size", instance->config.sync_heap_size);
|
|
162
|
-
obj.Set("async_stack_size", instance->config.async_stack_size);
|
|
163
|
-
obj.Set("async_heap_size", instance->config.async_heap_size);
|
|
164
|
-
obj.Set("resident_async_pools", instance->config.resident_async_pools);
|
|
165
|
-
obj.Set("max_async_calls", instance->config.resident_async_pools + instance->config.max_temporaries);
|
|
166
|
-
obj.Set("max_type_size", instance->config.max_type_size);
|
|
167
|
-
|
|
168
|
-
return obj;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
static Napi::Value GetStats(const Napi::CallbackInfo &info)
|
|
172
|
-
{
|
|
173
|
-
Napi::Env env = info.Env();
|
|
174
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
175
|
-
|
|
176
|
-
Napi::Object obj = Napi::Object::New(env);
|
|
177
|
-
|
|
178
|
-
obj.Set("disposed", instance->stats.disposed);
|
|
179
|
-
|
|
180
|
-
return obj;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
static inline bool CheckAlignment(int64_t align)
|
|
184
|
-
{
|
|
185
|
-
bool valid = (align > 0) && (align <= 8 && !(align & (align - 1)));
|
|
186
|
-
return valid;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
static bool IsNameValid(const char *name)
|
|
190
|
-
{
|
|
191
|
-
if (!IsXidStart(name[0]))
|
|
192
|
-
return false;
|
|
193
|
-
|
|
194
|
-
for (Size i = 1; name[i]; i++) {
|
|
195
|
-
if (!IsXidContinue(name[i])) [[unlikely]]
|
|
196
|
-
return false;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
return true;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
static bool MapType(Napi::Env env, InstanceData *instance, const TypeInfo *type, const char *name)
|
|
203
|
-
{
|
|
204
|
-
if (!IsNameValid(name)) {
|
|
205
|
-
ThrowError<Napi::Error>(env, "Invalid type name '%1'", name);
|
|
206
|
-
return false;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
bool inserted;
|
|
210
|
-
instance->types_map.InsertOrGet(name, type, &inserted);
|
|
211
|
-
|
|
212
|
-
if (!inserted) {
|
|
213
|
-
ThrowError<Napi::Error>(env, "Duplicate type name '%1'", name);
|
|
214
|
-
return false;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
return true;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
static Napi::Value CreateStructType(const Napi::CallbackInfo &info, bool pad)
|
|
221
|
-
{
|
|
222
|
-
Napi::Env env = info.Env();
|
|
223
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
224
|
-
|
|
225
|
-
if (info.Length() < 1) {
|
|
226
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 or 2 arguments, got %1", info.Length());
|
|
227
|
-
return env.Null();
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
bool skip = (info.Length() > 1);
|
|
231
|
-
bool named = skip && !IsNullOrUndefined(info[0]);
|
|
232
|
-
bool redefine = named && CheckValueTag(info[0], &TypeInfoMarker);
|
|
233
|
-
|
|
234
|
-
if (named && !info[0].IsString() && !redefine) {
|
|
235
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for name, expected string", GetValueType(instance, info[0]));
|
|
236
|
-
return env.Null();
|
|
237
|
-
}
|
|
238
|
-
if (!IsObject(info[skip])) {
|
|
239
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for members, expected object", GetValueType(instance, info[1]));
|
|
240
|
-
return env.Null();
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
Napi::String name = info[0].As<Napi::String>();
|
|
244
|
-
Napi::Object obj = info[skip].As<Napi::Object>();
|
|
245
|
-
Napi::Array keys = GetOwnPropertyNames(obj);
|
|
246
|
-
|
|
247
|
-
K_DEFER_NC(err_guard, count = instance->types.count) {
|
|
248
|
-
Size start = count + !skip;
|
|
249
|
-
|
|
250
|
-
for (Size i = start; i < instance->types.count; i++) {
|
|
251
|
-
const TypeInfo *it = &instance->types[i];
|
|
252
|
-
const TypeInfo **ptr = instance->types_map.Find(it->name);
|
|
253
|
-
|
|
254
|
-
if (ptr && *ptr == it) {
|
|
255
|
-
instance->types_map.Remove(ptr);
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
instance->types.RemoveFrom(count);
|
|
260
|
-
};
|
|
261
|
-
|
|
262
|
-
TypeInfo *type = instance->types.AppendDefault();
|
|
263
|
-
TypeInfo *replace = nullptr;
|
|
264
|
-
|
|
265
|
-
if (redefine) {
|
|
266
|
-
Napi::External<TypeInfo> external = name.As<Napi::External<TypeInfo>>();
|
|
267
|
-
const TypeInfo *raw = external.Data();
|
|
268
|
-
|
|
269
|
-
replace = (TypeInfo *)AlignDown(raw, 4);
|
|
270
|
-
type->name = replace->name;
|
|
271
|
-
|
|
272
|
-
if (replace->primitive != PrimitiveKind::Void || replace == instance->void_type) {
|
|
273
|
-
ThrowError<Napi::TypeError>(env, "Cannot redefine non-opaque type %1", replace->name);
|
|
274
|
-
return env.Null();
|
|
275
|
-
}
|
|
276
|
-
} else if (named) {
|
|
277
|
-
type->name = DuplicateString(name.Utf8Value().c_str(), &instance->str_alloc).ptr;
|
|
278
|
-
|
|
279
|
-
if (!MapType(env, instance, type, type->name))
|
|
280
|
-
return env.Null();
|
|
281
|
-
} else {
|
|
282
|
-
type->name = Fmt(&instance->str_alloc, "<anonymous_%1>", instance->types.count).ptr;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
type->primitive = PrimitiveKind::Record;
|
|
286
|
-
type->align = 1;
|
|
287
|
-
type->flags = (int)TypeFlag::IsIncomplete;
|
|
288
|
-
|
|
289
|
-
HashSet<const char *> members;
|
|
290
|
-
int64_t size = 0;
|
|
291
|
-
|
|
292
|
-
for (uint32_t i = 0; i < keys.Length(); i++) {
|
|
293
|
-
RecordMember member = {};
|
|
294
|
-
|
|
295
|
-
std::string key = keys.Get(i).As<Napi::String>();
|
|
296
|
-
Napi::Value value = obj[key];
|
|
297
|
-
int16_t align = 0;
|
|
298
|
-
|
|
299
|
-
member.name = DuplicateString(key.c_str(), &instance->str_alloc).ptr;
|
|
300
|
-
|
|
301
|
-
if (value.IsArray()) {
|
|
302
|
-
Napi::Array array = value.As<Napi::Array>();
|
|
303
|
-
|
|
304
|
-
if (array.Length() != 2 || !array.Get(0u).IsNumber()) {
|
|
305
|
-
ThrowError<Napi::Error>(env, "Member specifier array must contain alignement value and type");
|
|
306
|
-
return env.Null();
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
int64_t align64 = array.Get(0u).As<Napi::Number>().Int64Value();
|
|
310
|
-
|
|
311
|
-
if (!CheckAlignment(align64)) {
|
|
312
|
-
ThrowError<Napi::Error>(env, "Alignment of member '%1' must be 1, 2, 4 or 8", member.name);
|
|
313
|
-
return env.Null();
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
value = array[1u];
|
|
317
|
-
align = (int16_t)align64;
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
member.type = ResolveType(value);
|
|
321
|
-
if (!member.type)
|
|
322
|
-
return env.Null();
|
|
323
|
-
if (!CanStoreType(member.type)) {
|
|
324
|
-
ThrowError<Napi::TypeError>(env, "Type %1 cannot be used as a member (maybe try %1 *)", member.type->name);
|
|
325
|
-
return env.Null();
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
if (!align) {
|
|
329
|
-
align = pad ? member.type->align : 1;
|
|
330
|
-
}
|
|
331
|
-
member.offset = (int32_t)AlignLen(size, align);
|
|
332
|
-
|
|
333
|
-
size = member.offset + member.type->size;
|
|
334
|
-
type->align = std::max(type->align, align);
|
|
335
|
-
|
|
336
|
-
member.countedby = -1;
|
|
337
|
-
|
|
338
|
-
if (size > instance->config.max_type_size) {
|
|
339
|
-
ThrowError<Napi::Error>(env, "Struct '%1' size is too high (max = %2)", type->name, FmtMemSize(size));
|
|
340
|
-
return env.Null();
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
if (TestStr(member.name, "_"))
|
|
344
|
-
continue;
|
|
345
|
-
|
|
346
|
-
if (!IsNameValid(member.name)) {
|
|
347
|
-
ThrowError<Napi::Error>(env, "Invalid member name '%1'", member.name);
|
|
348
|
-
return env.Null();
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
bool inserted;
|
|
352
|
-
members.InsertOrGet(member.name, &inserted);
|
|
353
|
-
|
|
354
|
-
if (!inserted) {
|
|
355
|
-
ThrowError<Napi::Error>(env, "Duplicate member '%1' in struct '%2'", member.name, type->name);
|
|
356
|
-
return env.Null();
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
type->members.Append(member);
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
for (Size i = 0; i < type->members.len; i++) {
|
|
363
|
-
RecordMember *member = &type->members[i];
|
|
364
|
-
const char *countedby = member->type->countedby;
|
|
365
|
-
|
|
366
|
-
if (countedby) {
|
|
367
|
-
const RecordMember *by = std::find_if(type->members.begin(), type->members.end(),
|
|
368
|
-
[&](const RecordMember &member) { return TestStr(member.name, countedby); });
|
|
369
|
-
|
|
370
|
-
if (by == type->members.end()) {
|
|
371
|
-
ThrowError<Napi::Error>(env, "Record type %1 does not have member '%2'", type->name, countedby);
|
|
372
|
-
return env.Null();
|
|
373
|
-
}
|
|
374
|
-
if (!IsInteger(by->type)) {
|
|
375
|
-
ThrowError<Napi::Error>(env, "Dynamic length member %1 is not an integer", countedby);
|
|
376
|
-
return env.Null();
|
|
377
|
-
}
|
|
378
|
-
if (member->type->primitive == PrimitiveKind::Array && i < type->members.len - 1) {
|
|
379
|
-
ThrowError<Napi::Error>(env, "Flexible array '%1' is not the last member of struct", member->name);
|
|
380
|
-
return env.Null();
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
member->countedby = by - type->members.ptr;
|
|
384
|
-
}
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
size = (int32_t)AlignLen(size, type->align);
|
|
388
|
-
if (!size) {
|
|
389
|
-
ThrowError<Napi::Error>(env, "Empty struct '%1' is not allowed in C", type->name);
|
|
390
|
-
return env.Null();
|
|
391
|
-
}
|
|
392
|
-
type->size = (int32_t)size;
|
|
393
|
-
|
|
394
|
-
type->flags &= ~(int)TypeFlag::IsIncomplete;
|
|
395
|
-
err_guard.Disable();
|
|
396
|
-
|
|
397
|
-
if (replace) {
|
|
398
|
-
std::swap(*type, *replace);
|
|
399
|
-
type = replace;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
return WrapType(env, type);
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
static Napi::Value CreatePaddedStructType(const Napi::CallbackInfo &info)
|
|
406
|
-
{
|
|
407
|
-
return CreateStructType(info, true);
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
static Napi::Value CreatePackedStructType(const Napi::CallbackInfo &info)
|
|
411
|
-
{
|
|
412
|
-
return CreateStructType(info, false);
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
static Napi::Value CreateUnionType(const Napi::CallbackInfo &info)
|
|
416
|
-
{
|
|
417
|
-
Napi::Env env = info.Env();
|
|
418
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
419
|
-
|
|
420
|
-
if (info.Length() < 1) {
|
|
421
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 or 2 arguments, got %1", info.Length());
|
|
422
|
-
return env.Null();
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
bool skip = (info.Length() > 1);
|
|
426
|
-
bool named = skip && !IsNullOrUndefined(info[0]);
|
|
427
|
-
bool redefine = named && CheckValueTag(info[0], &TypeInfoMarker);
|
|
428
|
-
|
|
429
|
-
if (named && !info[0].IsString() && !redefine) {
|
|
430
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for name, expected string", GetValueType(instance, info[0]));
|
|
431
|
-
return env.Null();
|
|
432
|
-
}
|
|
433
|
-
if (!IsObject(info[skip])) {
|
|
434
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for members, expected object", GetValueType(instance, info[1]));
|
|
435
|
-
return env.Null();
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
Napi::String name = info[0].As<Napi::String>();
|
|
439
|
-
Napi::Object obj = info[skip].As<Napi::Object>();
|
|
440
|
-
Napi::Array keys = GetOwnPropertyNames(obj);
|
|
441
|
-
|
|
442
|
-
K_DEFER_NC(err_guard, count = instance->types.count) {
|
|
443
|
-
Size start = count + !skip;
|
|
444
|
-
|
|
445
|
-
for (Size i = start; i < instance->types.count; i++) {
|
|
446
|
-
const TypeInfo *it = &instance->types[i];
|
|
447
|
-
const TypeInfo **ptr = instance->types_map.Find(it->name);
|
|
448
|
-
|
|
449
|
-
if (ptr && *ptr == it) {
|
|
450
|
-
instance->types_map.Remove(ptr);
|
|
451
|
-
}
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
instance->types.RemoveFrom(count);
|
|
455
|
-
};
|
|
456
|
-
|
|
457
|
-
TypeInfo *type = instance->types.AppendDefault();
|
|
458
|
-
TypeInfo *replace = nullptr;
|
|
459
|
-
|
|
460
|
-
if (redefine) {
|
|
461
|
-
Napi::External<TypeInfo> external = name.As<Napi::External<TypeInfo>>();
|
|
462
|
-
const TypeInfo *raw = external.Data();
|
|
463
|
-
|
|
464
|
-
replace = (TypeInfo *)AlignDown(raw, 4);
|
|
465
|
-
type->name = replace->name;
|
|
466
|
-
|
|
467
|
-
if (replace->primitive != PrimitiveKind::Void || replace == instance->void_type) {
|
|
468
|
-
ThrowError<Napi::TypeError>(env, "Cannot redefine non-opaque type %1", replace->name);
|
|
469
|
-
return env.Null();
|
|
470
|
-
}
|
|
471
|
-
} else if (named) {
|
|
472
|
-
type->name = DuplicateString(name.Utf8Value().c_str(), &instance->str_alloc).ptr;
|
|
473
|
-
|
|
474
|
-
if (!MapType(env, instance, type, type->name))
|
|
475
|
-
return env.Null();
|
|
476
|
-
} else {
|
|
477
|
-
type->name = Fmt(&instance->str_alloc, "<anonymous_%1>", instance->types.count).ptr;
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
type->primitive = PrimitiveKind::Union;
|
|
481
|
-
type->align = 1;
|
|
482
|
-
type->flags = (int)TypeFlag::IsIncomplete;
|
|
483
|
-
|
|
484
|
-
HashSet<const char *> members;
|
|
485
|
-
int32_t size = 0;
|
|
486
|
-
|
|
487
|
-
for (uint32_t i = 0; i < keys.Length(); i++) {
|
|
488
|
-
RecordMember member = {};
|
|
489
|
-
|
|
490
|
-
std::string key = keys.Get(i).As<Napi::String>();
|
|
491
|
-
Napi::Value value = obj[key];
|
|
492
|
-
int16_t align = 0;
|
|
493
|
-
|
|
494
|
-
member.name = DuplicateString(key.c_str(), &instance->str_alloc).ptr;
|
|
495
|
-
|
|
496
|
-
if (value.IsArray()) {
|
|
497
|
-
Napi::Array array = value.As<Napi::Array>();
|
|
498
|
-
|
|
499
|
-
if (array.Length() != 2 || !array.Get(0u).IsNumber()) {
|
|
500
|
-
ThrowError<Napi::Error>(env, "Member specifier array must contain alignement value and type");
|
|
501
|
-
return env.Null();
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
int64_t align64 = array.Get(0u).As<Napi::Number>().Int64Value();
|
|
505
|
-
|
|
506
|
-
if (!CheckAlignment(align64)) {
|
|
507
|
-
ThrowError<Napi::Error>(env, "Alignment of member '%1' must be 1, 2, 4 or 8", member.name);
|
|
508
|
-
return env.Null();
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
value = array[1u];
|
|
512
|
-
align = (int16_t)align64;
|
|
513
|
-
}
|
|
514
|
-
|
|
515
|
-
member.type = ResolveType(value);
|
|
516
|
-
if (!member.type)
|
|
517
|
-
return env.Null();
|
|
518
|
-
if (!CanStoreType(member.type)) {
|
|
519
|
-
ThrowError<Napi::TypeError>(env, "Type %1 cannot be used as a member (maybe try %1 *)", member.type->name);
|
|
520
|
-
return env.Null();
|
|
521
|
-
}
|
|
522
|
-
if (member.type->countedby) {
|
|
523
|
-
ThrowError<Napi::TypeError>(env, "Cannot use dynamic-length array or pointer inside of union");
|
|
524
|
-
return env.Null();
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
align = align ? align : member.type->align;
|
|
528
|
-
size = std::max(size, member.type->size);
|
|
529
|
-
type->align = std::max(type->align, align);
|
|
530
|
-
|
|
531
|
-
member.countedby = -1;
|
|
532
|
-
|
|
533
|
-
if (TestStr(member.name, "_"))
|
|
534
|
-
continue;
|
|
535
|
-
|
|
536
|
-
if (!IsNameValid(member.name)) {
|
|
537
|
-
ThrowError<Napi::Error>(env, "Invalid member name '%1'", member.name);
|
|
538
|
-
return env.Null();
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
bool inserted;
|
|
542
|
-
members.InsertOrGet(member.name, &inserted);
|
|
543
|
-
|
|
544
|
-
if (!inserted) {
|
|
545
|
-
ThrowError<Napi::Error>(env, "Duplicate member '%1' in union '%2'", member.name, type->name);
|
|
546
|
-
return env.Null();
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
type->members.Append(member);
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
size = (int32_t)AlignLen(size, type->align);
|
|
553
|
-
if (!size) {
|
|
554
|
-
ThrowError<Napi::Error>(env, "Empty union '%1' is not allowed in C", type->name);
|
|
555
|
-
return env.Null();
|
|
556
|
-
}
|
|
557
|
-
type->size = (int32_t)size;
|
|
558
|
-
|
|
559
|
-
type->flags &= ~(int)TypeFlag::IsIncomplete;
|
|
560
|
-
err_guard.Disable();
|
|
561
|
-
|
|
562
|
-
// Union constructor
|
|
563
|
-
Napi::Function constructor = MagicUnion::InitClass(env, type);
|
|
564
|
-
type->construct.Reset(constructor, 1);
|
|
565
|
-
|
|
566
|
-
if (replace) {
|
|
567
|
-
std::swap(*type, *replace);
|
|
568
|
-
type = replace;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
return WrapType(env, type);
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
Napi::Value InstantiateUnion(const Napi::CallbackInfo &info)
|
|
575
|
-
{
|
|
576
|
-
Napi::Env env = info.Env();
|
|
577
|
-
|
|
578
|
-
if (!info.IsConstructCall()) {
|
|
579
|
-
ThrowError<Napi::TypeError>(env, "This function is a constructor and must be called with new");
|
|
580
|
-
return env.Null();
|
|
581
|
-
}
|
|
582
|
-
if (info.Length() < 1) {
|
|
583
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 argument, got %1", info.Length());
|
|
584
|
-
return env.Null();
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
const TypeInfo *type = ResolveType(info[0]);
|
|
588
|
-
if (!type)
|
|
589
|
-
return env.Null();
|
|
590
|
-
if (type->primitive != PrimitiveKind::Union) {
|
|
591
|
-
ThrowError<Napi::TypeError>(env, "Expected union type, got %1", PrimitiveKindNames[(int)type->primitive]);
|
|
592
|
-
return env.Null();
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
Napi::Object wrapper = type->construct.New({}).As<Napi::Object>();
|
|
596
|
-
SetValueTag(wrapper, &MagicUnionMarker);
|
|
597
|
-
|
|
598
|
-
return wrapper;
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
static Napi::Value CreateOpaqueType(const Napi::CallbackInfo &info)
|
|
602
|
-
{
|
|
603
|
-
Napi::Env env = info.Env();
|
|
604
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
605
|
-
|
|
606
|
-
bool named = (info.Length() >= 1) && !IsNullOrUndefined(info[0]);
|
|
607
|
-
|
|
608
|
-
if (named && !info[0].IsString()) {
|
|
609
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for name, expected string", GetValueType(instance, info[0]));
|
|
610
|
-
return env.Null();
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
Napi::String name = info[0].As<Napi::String>();
|
|
614
|
-
|
|
615
|
-
TypeInfo *type = instance->types.AppendDefault();
|
|
616
|
-
K_DEFER_N(err_guard) { instance->types.RemoveLast(1); };
|
|
617
|
-
|
|
618
|
-
type->name = named ? DuplicateString(name.Utf8Value().c_str(), &instance->str_alloc).ptr
|
|
619
|
-
: Fmt(&instance->str_alloc, "<anonymous_%1>", instance->types.count).ptr;
|
|
620
|
-
|
|
621
|
-
type->primitive = PrimitiveKind::Void;
|
|
622
|
-
type->size = 0;
|
|
623
|
-
type->align = 0;
|
|
624
|
-
|
|
625
|
-
// If the insert succeeds, we cannot fail anymore
|
|
626
|
-
if (named && !MapType(env, instance, type, type->name))
|
|
627
|
-
return env.Null();
|
|
628
|
-
err_guard.Disable();
|
|
629
|
-
|
|
630
|
-
return WrapType(env, type);
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
static Napi::Value CreatePointerType(const Napi::CallbackInfo &info)
|
|
634
|
-
{
|
|
635
|
-
Napi::Env env = info.Env();
|
|
636
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
637
|
-
|
|
638
|
-
if (info.Length() < 1) {
|
|
639
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 to 3 arguments, got %1", info.Length());
|
|
640
|
-
return env.Null();
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
bool skip = (info.Length() > 1) && !info[1].IsNumber();
|
|
644
|
-
bool named = skip && !IsNullOrUndefined(info[0]);
|
|
645
|
-
|
|
646
|
-
if (named && !info[0].IsString()) {
|
|
647
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for name, expected string", GetValueType(instance, info[0]));
|
|
648
|
-
return env.Null();
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
std::string name = named ? info[0].As<Napi::String>() : std::string();
|
|
652
|
-
|
|
653
|
-
const TypeInfo *ref = ResolveType(info[skip]);
|
|
654
|
-
if (!ref)
|
|
655
|
-
return env.Null();
|
|
656
|
-
|
|
657
|
-
Napi::Value countedby;
|
|
658
|
-
int count = 1;
|
|
659
|
-
|
|
660
|
-
if (info.Length() >= 2u + skip) {
|
|
661
|
-
if (info[1 + skip].IsString()) {
|
|
662
|
-
countedby = info[1 + skip];
|
|
663
|
-
} else if (info[1 + skip].IsNumber()) {
|
|
664
|
-
count = info[1 + skip].As<Napi::Number>();
|
|
665
|
-
|
|
666
|
-
if (count < 1 || count > 4) {
|
|
667
|
-
ThrowError<Napi::TypeError>(env, "Value of count must be between 1 and 4");
|
|
668
|
-
return env.Null();
|
|
669
|
-
}
|
|
670
|
-
} else {
|
|
671
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for count, expected number", GetValueType(instance, info[1 + skip]));
|
|
672
|
-
return env.Null();
|
|
673
|
-
}
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
TypeInfo *type = MakePointerType(instance, ref, count);
|
|
677
|
-
K_ASSERT(type);
|
|
678
|
-
|
|
679
|
-
if (named || !countedby.IsEmpty()) {
|
|
680
|
-
TypeInfo *copy = instance->types.AppendDefault();
|
|
681
|
-
K_DEFER_N(err_guard) { instance->types.RemoveLast(1); };
|
|
682
|
-
|
|
683
|
-
memcpy((void *)copy, type, K_SIZE(*type));
|
|
684
|
-
copy->name = named ? DuplicateString(name.c_str(), &instance->str_alloc).ptr : copy->name;
|
|
685
|
-
|
|
686
|
-
if (!countedby.IsEmpty()) {
|
|
687
|
-
Napi::String str = countedby.As<Napi::String>();
|
|
688
|
-
copy->countedby = DuplicateString(str.Utf8Value().c_str(), &instance->str_alloc).ptr;
|
|
689
|
-
}
|
|
690
|
-
|
|
691
|
-
// If the insert succeeds, we cannot fail anymore
|
|
692
|
-
if (named && !MapType(env, instance, copy, copy->name))
|
|
693
|
-
return env.Null();
|
|
694
|
-
err_guard.Disable();
|
|
695
|
-
|
|
696
|
-
type = copy;
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
return WrapType(env, type);
|
|
700
|
-
}
|
|
701
|
-
|
|
702
|
-
static Napi::Value EncodePointerDirection(const Napi::CallbackInfo &info, int directions)
|
|
703
|
-
{
|
|
704
|
-
K_ASSERT(directions >= 1 && directions <= 3);
|
|
705
|
-
|
|
706
|
-
Napi::Env env = info.Env();
|
|
707
|
-
|
|
708
|
-
if (info.Length() < 1) {
|
|
709
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 argument, got %1", info.Length());
|
|
710
|
-
return env.Null();
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
const TypeInfo *type = ResolveType(info[0]);
|
|
714
|
-
if (!type)
|
|
715
|
-
return env.Null();
|
|
716
|
-
|
|
717
|
-
if (type->primitive != PrimitiveKind::Pointer &&
|
|
718
|
-
type->primitive != PrimitiveKind::String &&
|
|
719
|
-
type->primitive != PrimitiveKind::String16 &&
|
|
720
|
-
type->primitive != PrimitiveKind::String32) {
|
|
721
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 type, expected pointer or string type", type->name);
|
|
722
|
-
return env.Null();
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
// Embed direction in unused pointer bits
|
|
726
|
-
const TypeInfo *marked = (const TypeInfo *)((uint8_t *)type + directions - 1);
|
|
727
|
-
|
|
728
|
-
return WrapType(env, marked);
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
static Napi::Value MarkIn(const Napi::CallbackInfo &info)
|
|
732
|
-
{
|
|
733
|
-
return EncodePointerDirection(info, 1);
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
static Napi::Value MarkOut(const Napi::CallbackInfo &info)
|
|
737
|
-
{
|
|
738
|
-
return EncodePointerDirection(info, 2);
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
static Napi::Value MarkInOut(const Napi::CallbackInfo &info)
|
|
742
|
-
{
|
|
743
|
-
return EncodePointerDirection(info, 3);
|
|
744
|
-
}
|
|
745
|
-
|
|
746
|
-
static Napi::Value CreateDisposableType(const Napi::CallbackInfo &info)
|
|
747
|
-
{
|
|
748
|
-
Napi::Env env = info.Env();
|
|
749
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
750
|
-
|
|
751
|
-
if (info.Length() < 1) {
|
|
752
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 or 2 arguments, got %1", info.Length());
|
|
753
|
-
return env.Null();
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
bool skip = (info.Length() > 1) && !info[1].IsFunction();
|
|
757
|
-
bool named = skip && !IsNullOrUndefined(info[0]);
|
|
758
|
-
|
|
759
|
-
if (named && !info[0].IsString()) {
|
|
760
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for name, expected string", GetValueType(instance, info[0]));
|
|
761
|
-
return env.Null();
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
Napi::String name = info[0].As<Napi::String>();
|
|
765
|
-
|
|
766
|
-
const TypeInfo *src = ResolveType(info[skip]);
|
|
767
|
-
if (!src)
|
|
768
|
-
return env.Null();
|
|
769
|
-
if (src->primitive != PrimitiveKind::Pointer &&
|
|
770
|
-
src->primitive != PrimitiveKind::String &&
|
|
771
|
-
src->primitive != PrimitiveKind::String16 &&
|
|
772
|
-
src->primitive != PrimitiveKind::String32) {
|
|
773
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 type, expected pointer or string type", src->name);
|
|
774
|
-
return env.Null();
|
|
775
|
-
}
|
|
776
|
-
if (src->dispose) {
|
|
777
|
-
ThrowError<Napi::TypeError>(env, "Cannot use disposable type '%1' to create new disposable", src->name);
|
|
778
|
-
return env.Null();
|
|
779
|
-
}
|
|
780
|
-
|
|
781
|
-
DisposeFunc *dispose;
|
|
782
|
-
Napi::Function dispose_func;
|
|
783
|
-
if (info.Length() >= 2u + skip && !IsNullOrUndefined(info[1 + skip])) {
|
|
784
|
-
Napi::Function func = info[1 + skip].As<Napi::Function>();
|
|
785
|
-
|
|
786
|
-
if (!func.IsFunction()) {
|
|
787
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for func, expected function", GetValueType(instance, func));
|
|
788
|
-
return env.Null();
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
dispose = [](Napi::Env env, const TypeInfo *type, const void *ptr) {
|
|
792
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
793
|
-
const Napi::FunctionReference &ref = type->dispose_ref;
|
|
794
|
-
|
|
795
|
-
Napi::External<void> external = Napi::External<void>::New(env, (void *)ptr);
|
|
796
|
-
SetValueTag(external, type->ref.marker);
|
|
797
|
-
|
|
798
|
-
Napi::Value self = env.Null();
|
|
799
|
-
napi_value args[] = {
|
|
800
|
-
external
|
|
801
|
-
};
|
|
802
|
-
|
|
803
|
-
ref.Call(self, K_LEN(args), args);
|
|
804
|
-
instance->stats.disposed++;
|
|
805
|
-
};
|
|
806
|
-
dispose_func = func;
|
|
807
|
-
} else {
|
|
808
|
-
dispose = [](Napi::Env env, const TypeInfo *, const void *ptr) {
|
|
809
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
810
|
-
|
|
811
|
-
free((void *)ptr);
|
|
812
|
-
instance->stats.disposed++;
|
|
813
|
-
};
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
TypeInfo *type = instance->types.AppendDefault();
|
|
817
|
-
K_DEFER_N(err_guard) { instance->types.RemoveLast(1); };
|
|
818
|
-
|
|
819
|
-
memcpy((void *)type, (const void *)src, K_SIZE(*src));
|
|
820
|
-
type->members.allocator = GetNullAllocator();
|
|
821
|
-
|
|
822
|
-
type->name = named ? DuplicateString(name.Utf8Value().c_str(), &instance->str_alloc).ptr
|
|
823
|
-
: Fmt(&instance->str_alloc, "<anonymous_%1>", instance->types.count).ptr;
|
|
824
|
-
|
|
825
|
-
type->dispose = dispose;
|
|
826
|
-
type->dispose_ref = Napi::Persistent(dispose_func);
|
|
827
|
-
|
|
828
|
-
// If the insert succeeds, we cannot fail anymore
|
|
829
|
-
if (named && !MapType(env, instance, type, type->name))
|
|
830
|
-
return env.Null();
|
|
831
|
-
err_guard.Disable();
|
|
832
|
-
|
|
833
|
-
return WrapType(env, type);
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
static inline bool GetExternalPointer(Napi::Env env, Napi::Value value, void **out_ptr)
|
|
837
|
-
{
|
|
838
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
839
|
-
|
|
840
|
-
if (IsNullOrUndefined(value)) {
|
|
841
|
-
*out_ptr = 0;
|
|
842
|
-
return true;
|
|
843
|
-
} else if (IsRawBuffer(value)) {
|
|
844
|
-
Span<uint8_t> buffer = GetRawBuffer(value);
|
|
845
|
-
|
|
846
|
-
*out_ptr = buffer.ptr;
|
|
847
|
-
return true;
|
|
848
|
-
} else if (value.IsExternal() && !CheckValueTag(value, &TypeInfoMarker) &&
|
|
849
|
-
!CheckValueTag(value, &CastMarker) &&
|
|
850
|
-
!CheckValueTag(value, &MagicUnionMarker)) {
|
|
851
|
-
Napi::External<void> external = value.As<Napi::External<void>>();
|
|
852
|
-
void *ptr = external.Data();
|
|
853
|
-
|
|
854
|
-
*out_ptr = ptr;
|
|
855
|
-
return true;
|
|
856
|
-
} else {
|
|
857
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for ptr, expected external pointer", GetValueType(instance, value));
|
|
858
|
-
return false;
|
|
859
|
-
}
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
static Napi::Value CallAlloc(const Napi::CallbackInfo &info)
|
|
863
|
-
{
|
|
864
|
-
Napi::Env env = info.Env();
|
|
865
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
866
|
-
|
|
867
|
-
if (info.Length() < 2) {
|
|
868
|
-
ThrowError<Napi::TypeError>(env, "Expected 2 arguments, got %1", info.Length());
|
|
869
|
-
return env.Null();
|
|
870
|
-
}
|
|
871
|
-
if (!info[1].IsNumber()) {
|
|
872
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for length, expected number", GetValueType(instance, info[1]));
|
|
873
|
-
return env.Null();
|
|
874
|
-
}
|
|
875
|
-
|
|
876
|
-
const TypeInfo *type = ResolveType(info[0]);
|
|
877
|
-
if (!type)
|
|
878
|
-
return env.Null();
|
|
879
|
-
|
|
880
|
-
if (!type->size) [[unlikely]] {
|
|
881
|
-
ThrowError<Napi::TypeError>(env, "Cannot allocate memory for zero-sized type %1", type->name);
|
|
882
|
-
return env.Null();
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
int32_t len = info[1].As<Napi::Number>();
|
|
886
|
-
|
|
887
|
-
if (len <= 0) [[unlikely]] {
|
|
888
|
-
ThrowError<Napi::Error>(env, "Size must be greater than 0");
|
|
889
|
-
return env.Null();
|
|
890
|
-
}
|
|
891
|
-
if (len > INT32_MAX / type->size) [[unlikely]] {
|
|
892
|
-
ThrowError<Napi::Error>(env, "Cannot allocate more than %1 objects of type %2", INT32_MAX / type->size, type->name);
|
|
893
|
-
return env.Null();
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
void *ptr = calloc((size_t)len, (size_t)type->size);
|
|
897
|
-
|
|
898
|
-
if (!ptr) [[unlikely]] {
|
|
899
|
-
Size size = (Size)(len * type->size);
|
|
900
|
-
|
|
901
|
-
ThrowError<Napi::Error>(env, "Failed to allocate %1 of memory", FmtMemSize((Size)size));
|
|
902
|
-
return env.Null();
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
Napi::External<void> external = Napi::External<void>::New(env, ptr);
|
|
906
|
-
SetValueTag(external, type);
|
|
907
|
-
|
|
908
|
-
return external;
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
static Napi::Value CallFree(const Napi::CallbackInfo &info)
|
|
912
|
-
{
|
|
913
|
-
Napi::Env env = info.Env();
|
|
914
|
-
|
|
915
|
-
if (info.Length() < 1) {
|
|
916
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 argument, got %1", info.Length());
|
|
917
|
-
return env.Null();
|
|
918
|
-
}
|
|
919
|
-
|
|
920
|
-
void *ptr = nullptr;
|
|
921
|
-
if (!GetExternalPointer(env, info[0], &ptr))
|
|
922
|
-
return env.Null();
|
|
923
|
-
|
|
924
|
-
free(ptr);
|
|
925
|
-
|
|
926
|
-
return env.Undefined();
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
static Napi::Value GetOrSetErrNo(const Napi::CallbackInfo &info)
|
|
930
|
-
{
|
|
931
|
-
Napi::Env env = info.Env();
|
|
932
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
933
|
-
|
|
934
|
-
if (info.Length() >= 1) {
|
|
935
|
-
Napi::Number value = info[0].As<Napi::Number>();
|
|
936
|
-
|
|
937
|
-
if (!value.IsNumber()) {
|
|
938
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for errno, expected integer", GetValueType(instance, value));
|
|
939
|
-
return env.Null();
|
|
940
|
-
}
|
|
941
|
-
|
|
942
|
-
errno = value;
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
Napi::Number ret = Napi::Number::New(env, errno);
|
|
946
|
-
return ret;
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
static Napi::Value CreateArrayType(const Napi::CallbackInfo &info)
|
|
950
|
-
{
|
|
951
|
-
Napi::Env env = info.Env();
|
|
952
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
953
|
-
|
|
954
|
-
if (info.Length() < 2) {
|
|
955
|
-
ThrowError<Napi::TypeError>(env, "Expected 2 to 4 arguments, got %1", info.Length());
|
|
956
|
-
return env.Null();
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
const TypeInfo *ref = ResolveType(info[0]);
|
|
960
|
-
if (!ref)
|
|
961
|
-
return env.Null();
|
|
962
|
-
|
|
963
|
-
bool dynamic = (info.Length() >= 3) && info[1].IsString();
|
|
964
|
-
|
|
965
|
-
if (dynamic && !info[1].IsString()) {
|
|
966
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for countedBy, expected string", GetValueType(instance, info[1]));
|
|
967
|
-
return env.Null();
|
|
968
|
-
}
|
|
969
|
-
if (!info[1 + dynamic].IsNumber()) {
|
|
970
|
-
if (info.Length() == 2 && info[1].IsString()) {
|
|
971
|
-
ThrowError<Napi::TypeError>(env, "Missing maxLen argument");
|
|
972
|
-
} else {
|
|
973
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for %2, expected integer", GetValueType(instance, info[1]), dynamic ? "maxLen" : "len");
|
|
974
|
-
}
|
|
975
|
-
return env.Null();
|
|
976
|
-
}
|
|
977
|
-
|
|
978
|
-
int64_t len = info[1 + dynamic].As<Napi::Number>().Int64Value();
|
|
979
|
-
|
|
980
|
-
if (len <= 0) {
|
|
981
|
-
ThrowError<Napi::TypeError>(env, "Array length must be positive and non-zero");
|
|
982
|
-
return env.Null();
|
|
983
|
-
}
|
|
984
|
-
if (len > instance->config.max_type_size / ref->size) {
|
|
985
|
-
ThrowError<Napi::TypeError>(env, "Array length is too high (max = %1)", instance->config.max_type_size / ref->size);
|
|
986
|
-
return env.Null();
|
|
987
|
-
}
|
|
988
|
-
|
|
989
|
-
TypeInfo *type = nullptr;
|
|
990
|
-
|
|
991
|
-
if (info.Length() >= 3u + dynamic && !IsNullOrUndefined(info[2 + dynamic])) {
|
|
992
|
-
if (!info[2 + dynamic].IsString()) {
|
|
993
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for hint, expected string", GetValueType(instance, info[2]));
|
|
994
|
-
return env.Null();
|
|
995
|
-
}
|
|
996
|
-
|
|
997
|
-
std::string str = info[2 + dynamic].As<Napi::String>();
|
|
998
|
-
ArrayHint hint = {};
|
|
999
|
-
|
|
1000
|
-
if (str == "Typed" || str == "typed") {
|
|
1001
|
-
if (!(ref->flags & (int)TypeFlag::HasTypedArray)) {
|
|
1002
|
-
ThrowError<Napi::Error>(env, "Array hint 'Typed' cannot be used with type %1", ref->name);
|
|
1003
|
-
return env.Null();
|
|
1004
|
-
}
|
|
1005
|
-
|
|
1006
|
-
hint = ArrayHint::Typed;
|
|
1007
|
-
} else if (str == "Array" || str == "array") {
|
|
1008
|
-
hint = ArrayHint::Array;
|
|
1009
|
-
} else if (str == "String" || str == "string") {
|
|
1010
|
-
if (ref->primitive != PrimitiveKind::Int8 && ref->primitive != PrimitiveKind::Int16) {
|
|
1011
|
-
ThrowError<Napi::Error>(env, "Array hint 'String' can only be used with 8 and 16-bit signed integer types");
|
|
1012
|
-
return env.Null();
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
|
-
hint = ArrayHint::String;
|
|
1016
|
-
} else {
|
|
1017
|
-
ThrowError<Napi::Error>(env, "Array conversion hint must be 'Typed', 'Array' or 'String'");
|
|
1018
|
-
return env.Null();
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
|
-
type = MakeArrayType(instance, ref, len, hint);
|
|
1022
|
-
} else {
|
|
1023
|
-
type = MakeArrayType(instance, ref, len);
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
|
-
if (dynamic) {
|
|
1027
|
-
Napi::String str = info[1].As<Napi::String>();
|
|
1028
|
-
type->countedby = DuplicateString(str.Utf8Value().c_str(), &instance->str_alloc).ptr;
|
|
1029
|
-
}
|
|
1030
|
-
|
|
1031
|
-
return WrapType(env, type);
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
static bool ParseClassicFunction(const Napi::CallbackInfo &info, bool concrete, FunctionInfo *out_func)
|
|
1035
|
-
{
|
|
1036
|
-
K_ASSERT(info.Length() >= 2);
|
|
1037
|
-
|
|
1038
|
-
Napi::Env env = info.Env();
|
|
1039
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
1040
|
-
|
|
1041
|
-
Napi::String name = info[0u].As<Napi::String>();
|
|
1042
|
-
Napi::Value ret = info[1u];
|
|
1043
|
-
Napi::Array parameters = info[2u].As<Napi::Array>();
|
|
1044
|
-
|
|
1045
|
-
// Detect optional call convention
|
|
1046
|
-
if (name.IsString() && DetectCallConvention(name.Utf8Value().c_str(), &out_func->convention)) {
|
|
1047
|
-
if (info.Length() < 3) {
|
|
1048
|
-
ThrowError<Napi::TypeError>(env, "Expected 3 or 4 arguments, got %1", info.Length());
|
|
1049
|
-
return false;
|
|
1050
|
-
}
|
|
1051
|
-
|
|
1052
|
-
name = info[1u].As<Napi::String>();
|
|
1053
|
-
ret = info[2u];
|
|
1054
|
-
parameters = (info.Length() >= 4 ? info[3u] : env.Null()).As<Napi::Array>();
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
|
-
bool named = parameters.IsArray();
|
|
1058
|
-
|
|
1059
|
-
if (named) {
|
|
1060
|
-
#if defined(_WIN32)
|
|
1061
|
-
if (name.IsNumber()) {
|
|
1062
|
-
out_func->ordinal_name = name.As<Napi::Number>().Int32Value();
|
|
1063
|
-
name = name.ToString();
|
|
1064
|
-
}
|
|
1065
|
-
#endif
|
|
1066
|
-
if (!name.IsString()) {
|
|
1067
|
-
if (!concrete && IsNullOrUndefined(name)) {
|
|
1068
|
-
named = false;
|
|
1069
|
-
} else {
|
|
1070
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for name, expected string or integer", GetValueType(instance, name));
|
|
1071
|
-
return false;
|
|
1072
|
-
}
|
|
1073
|
-
}
|
|
1074
|
-
} else {
|
|
1075
|
-
parameters = ret.As<Napi::Array>();
|
|
1076
|
-
ret = name;
|
|
1077
|
-
}
|
|
1078
|
-
|
|
1079
|
-
// Leave anonymous naming responsibility to caller
|
|
1080
|
-
out_func->name = named ? DuplicateString(name.Utf8Value().c_str(), &instance->str_alloc).ptr : nullptr;
|
|
1081
|
-
|
|
1082
|
-
out_func->ret.type = ResolveType(ret);
|
|
1083
|
-
if (!out_func->ret.type)
|
|
1084
|
-
return false;
|
|
1085
|
-
if (!CanReturnType(out_func->ret.type)) {
|
|
1086
|
-
ThrowError<Napi::TypeError>(env, "You are not allowed to directly return %1 values (maybe try %1 *)", out_func->ret.type->name);
|
|
1087
|
-
return false;
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
if (!parameters.IsArray()) {
|
|
1091
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for parameters of '%2', expected an array", GetValueType(instance, parameters), out_func->name);
|
|
1092
|
-
return false;
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
|
-
uint32_t parameters_len = parameters.Length();
|
|
1096
|
-
|
|
1097
|
-
if (parameters_len) {
|
|
1098
|
-
Napi::String str = parameters.Get(parameters_len - 1).As<Napi::String>();
|
|
1099
|
-
|
|
1100
|
-
if (str.IsString() && str.Utf8Value() == "...") {
|
|
1101
|
-
out_func->variadic = true;
|
|
1102
|
-
parameters_len--;
|
|
1103
|
-
}
|
|
1104
|
-
}
|
|
1105
|
-
|
|
1106
|
-
for (uint32_t j = 0; j < parameters_len; j++) {
|
|
1107
|
-
ParameterInfo param = {};
|
|
1108
|
-
|
|
1109
|
-
param.type = ResolveType(parameters[j], ¶m.directions);
|
|
1110
|
-
|
|
1111
|
-
if (!param.type)
|
|
1112
|
-
return false;
|
|
1113
|
-
if (!CanPassType(param.type, param.directions)) {
|
|
1114
|
-
ThrowError<Napi::TypeError>(env, "Type %1 cannot be used as a parameter", param.type->name);
|
|
1115
|
-
return false;
|
|
1116
|
-
}
|
|
1117
|
-
if (out_func->parameters.len >= MaxParameters) {
|
|
1118
|
-
ThrowError<Napi::TypeError>(env, "Functions cannot have more than %1 parameters", MaxParameters);
|
|
1119
|
-
return false;
|
|
1120
|
-
}
|
|
1121
|
-
if ((param.directions & 2) && ++out_func->out_parameters >= MaxParameters) {
|
|
1122
|
-
ThrowError<Napi::TypeError>(env, "Functions cannot have more than %1 output parameters", MaxParameters);
|
|
1123
|
-
return false;
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
|
-
param.offset = (int8_t)j;
|
|
1127
|
-
|
|
1128
|
-
out_func->parameters.Append(param);
|
|
1129
|
-
}
|
|
1130
|
-
|
|
1131
|
-
out_func->required_parameters = (int8_t)out_func->parameters.len;
|
|
1132
|
-
|
|
1133
|
-
return true;
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
static Napi::Value CreateFunctionType(const Napi::CallbackInfo &info)
|
|
1137
|
-
{
|
|
1138
|
-
Napi::Env env = info.Env();
|
|
1139
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
1140
|
-
|
|
1141
|
-
FunctionInfo *func = instance->callbacks.AppendDefault();
|
|
1142
|
-
TypeInfo *type = instance->types.AppendDefault();
|
|
1143
|
-
|
|
1144
|
-
K_DEFER_N(err_guard) {
|
|
1145
|
-
instance->callbacks.RemoveLast(1);
|
|
1146
|
-
instance->types.RemoveLast(1);
|
|
1147
|
-
};
|
|
1148
|
-
|
|
1149
|
-
if (info.Length() >= 2) {
|
|
1150
|
-
if (!ParseClassicFunction(info, false, func))
|
|
1151
|
-
return env.Null();
|
|
1152
|
-
} else if (info.Length() >= 1) {
|
|
1153
|
-
if (!info[0].IsString()) {
|
|
1154
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for prototype, expected string", GetValueType(instance, info[0]));
|
|
1155
|
-
return env.Null();
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
std::string proto = info[0u].As<Napi::String>();
|
|
1159
|
-
if (!ParsePrototype(env, proto.c_str(), false, func))
|
|
1160
|
-
return env.Null();
|
|
1161
|
-
} else {
|
|
1162
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 to 4 arguments, got %1", info.Length());
|
|
1163
|
-
return env.Null();
|
|
1164
|
-
}
|
|
1165
|
-
|
|
1166
|
-
bool named = func->name;
|
|
1167
|
-
|
|
1168
|
-
if (!named) {
|
|
1169
|
-
func->name = Fmt(&instance->str_alloc, "<anonymous_%1>", instance->types.count).ptr;
|
|
1170
|
-
}
|
|
1171
|
-
|
|
1172
|
-
if (!AnalyseFunction(env, instance, func))
|
|
1173
|
-
return env.Null();
|
|
1174
|
-
|
|
1175
|
-
// Adjust parameter offsets for koffi.call()
|
|
1176
|
-
for (ParameterInfo ¶m: func->parameters) {
|
|
1177
|
-
param.offset += 2;
|
|
1178
|
-
}
|
|
1179
|
-
func->required_parameters += 2;
|
|
1180
|
-
|
|
1181
|
-
type->name = func->name;
|
|
1182
|
-
|
|
1183
|
-
type->primitive = PrimitiveKind::Prototype;
|
|
1184
|
-
type->align = alignof(void *);
|
|
1185
|
-
type->size = K_SIZE(void *);
|
|
1186
|
-
type->ref.proto = func;
|
|
1187
|
-
|
|
1188
|
-
// If the insert succeeds, we cannot fail anymore
|
|
1189
|
-
if (named && !MapType(env, instance, type, type->name))
|
|
1190
|
-
return env.Null();
|
|
1191
|
-
err_guard.Disable();
|
|
1192
|
-
|
|
1193
|
-
return WrapType(env, type);
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
static Napi::Value CreateTypeAlias(const Napi::CallbackInfo &info)
|
|
1197
|
-
{
|
|
1198
|
-
Napi::Env env = info.Env();
|
|
1199
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
1200
|
-
|
|
1201
|
-
if (info.Length() < 2) {
|
|
1202
|
-
ThrowError<Napi::TypeError>(env, "Expected 2 arguments, got %1", info.Length());
|
|
1203
|
-
return env.Null();
|
|
1204
|
-
}
|
|
1205
|
-
if (!info[0].IsString()) {
|
|
1206
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for name, expected string", GetValueType(instance, info[0]));
|
|
1207
|
-
return env.Null();
|
|
1208
|
-
}
|
|
1209
|
-
|
|
1210
|
-
std::string name = info[0].As<Napi::String>();
|
|
1211
|
-
const char *alias = DuplicateString(name.c_str(), &instance->str_alloc).ptr;
|
|
1212
|
-
|
|
1213
|
-
const TypeInfo *type = ResolveType(info[1]);
|
|
1214
|
-
if (!type)
|
|
1215
|
-
return env.Null();
|
|
1216
|
-
|
|
1217
|
-
// Alias the type
|
|
1218
|
-
if (!MapType(env, instance, type, alias))
|
|
1219
|
-
return env.Null();
|
|
1220
|
-
|
|
1221
|
-
return WrapType(env, type);
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
static Napi::Value GetTypeSize(const Napi::CallbackInfo &info)
|
|
1225
|
-
{
|
|
1226
|
-
Napi::Env env = info.Env();
|
|
1227
|
-
|
|
1228
|
-
if (info.Length() < 1) {
|
|
1229
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 argument, got %1", info.Length());
|
|
1230
|
-
return env.Null();
|
|
1231
|
-
}
|
|
1232
|
-
|
|
1233
|
-
const TypeInfo *type = ResolveType(info[0]);
|
|
1234
|
-
if (!type)
|
|
1235
|
-
return env.Null();
|
|
1236
|
-
|
|
1237
|
-
return Napi::Number::New(env, type->size);
|
|
1238
|
-
}
|
|
1239
|
-
|
|
1240
|
-
static Napi::Value GetTypeAlign(const Napi::CallbackInfo &info)
|
|
1241
|
-
{
|
|
1242
|
-
Napi::Env env = info.Env();
|
|
1243
|
-
|
|
1244
|
-
if (info.Length() < 1) {
|
|
1245
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 argument, got %1", info.Length());
|
|
1246
|
-
return env.Null();
|
|
1247
|
-
}
|
|
1248
|
-
|
|
1249
|
-
const TypeInfo *type = ResolveType(info[0]);
|
|
1250
|
-
if (!type)
|
|
1251
|
-
return env.Null();
|
|
1252
|
-
|
|
1253
|
-
return Napi::Number::New(env, type->align);
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
|
-
static Napi::Value GetMemberOffset(const Napi::CallbackInfo &info)
|
|
1257
|
-
{
|
|
1258
|
-
Napi::Env env = info.Env();
|
|
1259
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
1260
|
-
|
|
1261
|
-
if (info.Length() < 2) {
|
|
1262
|
-
ThrowError<Napi::TypeError>(env, "Expected 2 arguments, got %1", info.Length());
|
|
1263
|
-
return env.Null();
|
|
1264
|
-
}
|
|
1265
|
-
if (!info[1].IsString()) {
|
|
1266
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for member, expected string", GetValueType(instance, info[1]));
|
|
1267
|
-
return env.Null();
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
const TypeInfo *type = ResolveType(info[0]);
|
|
1271
|
-
if (!type)
|
|
1272
|
-
return env.Null();
|
|
1273
|
-
if (type->primitive != PrimitiveKind::Record) {
|
|
1274
|
-
ThrowError<Napi::TypeError>(env, "The offsetof() function can only be used with record types");
|
|
1275
|
-
return env.Null();
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
std::string name = info[1].As<Napi::String>();
|
|
1279
|
-
|
|
1280
|
-
const RecordMember *member = std::find_if(type->members.begin(), type->members.end(),
|
|
1281
|
-
[&](const RecordMember &member) { return TestStr(member.name, name.c_str()); });
|
|
1282
|
-
if (member == type->members.end()) {
|
|
1283
|
-
ThrowError<Napi::Error>(env, "Record type %1 does not have member '%2'", type->name, name.c_str());
|
|
1284
|
-
return env.Null();
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
return Napi::Number::New(env, member->offset);
|
|
1288
|
-
}
|
|
1289
|
-
|
|
1290
|
-
static Napi::Value GetResolvedType(const Napi::CallbackInfo &info)
|
|
1291
|
-
{
|
|
1292
|
-
Napi::Env env = info.Env();
|
|
1293
|
-
|
|
1294
|
-
if (info.Length() < 1) {
|
|
1295
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 argument, got %1", info.Length());
|
|
1296
|
-
return env.Null();
|
|
1297
|
-
}
|
|
1298
|
-
|
|
1299
|
-
const TypeInfo *type = ResolveType(info[0]);
|
|
1300
|
-
if (!type)
|
|
1301
|
-
return env.Null();
|
|
1302
|
-
|
|
1303
|
-
return WrapType(env, type);
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
static Napi::Value GetTypeDefinition(const Napi::CallbackInfo &info)
|
|
1307
|
-
{
|
|
1308
|
-
Napi::Env env = info.Env();
|
|
1309
|
-
|
|
1310
|
-
if (info.Length() < 1) {
|
|
1311
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 argument, got %1", info.Length());
|
|
1312
|
-
return env.Null();
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
const TypeInfo *type = ResolveType(info[0]);
|
|
1316
|
-
if (!type)
|
|
1317
|
-
return env.Null();
|
|
1318
|
-
|
|
1319
|
-
if (type->defn.IsEmpty()) {
|
|
1320
|
-
Napi::Object defn = Napi::Object::New(env);
|
|
1321
|
-
|
|
1322
|
-
defn.Set("name", Napi::String::New(env, type->name));
|
|
1323
|
-
defn.Set("primitive", PrimitiveKindNames[(int)type->primitive]);
|
|
1324
|
-
defn.Set("size", Napi::Number::New(env, (double)type->size));
|
|
1325
|
-
defn.Set("alignment", Napi::Number::New(env, (double)type->align));
|
|
1326
|
-
defn.Set("disposable", Napi::Boolean::New(env, !!type->dispose));
|
|
1327
|
-
|
|
1328
|
-
switch (type->primitive) {
|
|
1329
|
-
case PrimitiveKind::Void:
|
|
1330
|
-
case PrimitiveKind::Bool:
|
|
1331
|
-
case PrimitiveKind::Int8:
|
|
1332
|
-
case PrimitiveKind::UInt8:
|
|
1333
|
-
case PrimitiveKind::Int16:
|
|
1334
|
-
case PrimitiveKind::Int16S:
|
|
1335
|
-
case PrimitiveKind::UInt16:
|
|
1336
|
-
case PrimitiveKind::UInt16S:
|
|
1337
|
-
case PrimitiveKind::Int32:
|
|
1338
|
-
case PrimitiveKind::Int32S:
|
|
1339
|
-
case PrimitiveKind::UInt32:
|
|
1340
|
-
case PrimitiveKind::UInt32S:
|
|
1341
|
-
case PrimitiveKind::Int64:
|
|
1342
|
-
case PrimitiveKind::Int64S:
|
|
1343
|
-
case PrimitiveKind::UInt64:
|
|
1344
|
-
case PrimitiveKind::UInt64S:
|
|
1345
|
-
case PrimitiveKind::String:
|
|
1346
|
-
case PrimitiveKind::String16:
|
|
1347
|
-
case PrimitiveKind::String32:
|
|
1348
|
-
case PrimitiveKind::Float32:
|
|
1349
|
-
case PrimitiveKind::Float64:
|
|
1350
|
-
case PrimitiveKind::Prototype:
|
|
1351
|
-
case PrimitiveKind::Callback: {} break;
|
|
1352
|
-
|
|
1353
|
-
case PrimitiveKind::Array: {
|
|
1354
|
-
uint32_t len = type->size / type->ref.type->size;
|
|
1355
|
-
defn.Set("length", Napi::Number::New(env, (double)len));
|
|
1356
|
-
defn.Set("hint", ArrayHintNames[(int)type->hint]);
|
|
1357
|
-
} [[fallthrough]];
|
|
1358
|
-
case PrimitiveKind::Pointer: {
|
|
1359
|
-
Napi::Value value = WrapType(env, type->ref.type);
|
|
1360
|
-
defn.Set("ref", value);
|
|
1361
|
-
} break;
|
|
1362
|
-
case PrimitiveKind::Record:
|
|
1363
|
-
case PrimitiveKind::Union: {
|
|
1364
|
-
Napi::Object members = Napi::Object::New(env);
|
|
1365
|
-
|
|
1366
|
-
for (const RecordMember &member: type->members) {
|
|
1367
|
-
Napi::Object obj = Napi::Object::New(env);
|
|
1368
|
-
|
|
1369
|
-
obj.Set("name", member.name);
|
|
1370
|
-
obj.Set("type", WrapType(env, member.type));
|
|
1371
|
-
obj.Set("offset", member.offset);
|
|
1372
|
-
if (member.countedby >= 0) {
|
|
1373
|
-
obj.Set("countedBy", type->members[member.countedby].name);
|
|
1374
|
-
}
|
|
1375
|
-
|
|
1376
|
-
members.Set(member.name, obj);
|
|
1377
|
-
}
|
|
1378
|
-
|
|
1379
|
-
defn.Set("members", members);
|
|
1380
|
-
} break;
|
|
1381
|
-
}
|
|
1382
|
-
|
|
1383
|
-
defn.Freeze();
|
|
1384
|
-
type->defn.Reset(defn, 1);
|
|
1385
|
-
}
|
|
1386
|
-
|
|
1387
|
-
return type->defn.Value();
|
|
1388
|
-
}
|
|
1389
|
-
|
|
1390
|
-
InstanceMemory *AllocateMemory(InstanceData *instance, Size stack_size, Size heap_size)
|
|
1391
|
-
{
|
|
1392
|
-
std::lock_guard<std::mutex> lock(instance->mem_mutex);
|
|
1393
|
-
|
|
1394
|
-
for (Size i = 1; i < instance->memories.len; i++) {
|
|
1395
|
-
InstanceMemory *mem = instance->memories[i];
|
|
1396
|
-
|
|
1397
|
-
if (!mem->busy) {
|
|
1398
|
-
mem->busy = true;
|
|
1399
|
-
return mem;
|
|
1400
|
-
}
|
|
1401
|
-
}
|
|
1402
|
-
|
|
1403
|
-
bool temporary = (instance->memories.len > instance->config.resident_async_pools);
|
|
1404
|
-
|
|
1405
|
-
if (temporary && instance->temporaries > instance->config.max_temporaries)
|
|
1406
|
-
return nullptr;
|
|
1407
|
-
|
|
1408
|
-
InstanceMemory *mem = new InstanceMemory();
|
|
1409
|
-
K_DEFER_N(mem_guard) { delete mem; };
|
|
1410
|
-
|
|
1411
|
-
stack_size = AlignLen(stack_size, Kibibytes(64));
|
|
1412
|
-
|
|
1413
|
-
#if defined(_WIN32)
|
|
1414
|
-
// Allocate stack memory
|
|
1415
|
-
mem->stack.len = stack_size;
|
|
1416
|
-
mem->stack.ptr = (uint8_t *)VirtualAlloc(nullptr, mem->stack.len, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
|
|
1417
|
-
|
|
1418
|
-
K_CRITICAL(mem->stack.ptr, "Failed to allocate %1 of memory", mem->stack.len);
|
|
1419
|
-
#else
|
|
1420
|
-
mem->stack.len = stack_size;
|
|
1421
|
-
mem->stack.ptr = (uint8_t *)mmap(nullptr, mem->stack.len, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON | MAP_STACK, -1, 0);
|
|
1422
|
-
|
|
1423
|
-
K_CRITICAL(mem->stack.ptr, "Failed to allocate %1 of memory", mem->stack.len);
|
|
1424
|
-
#endif
|
|
1425
|
-
|
|
1426
|
-
#if defined(__OpenBSD__)
|
|
1427
|
-
// Make sure the SP points inside the MAP_STACK area, or (void) functions may crash on OpenBSD i386
|
|
1428
|
-
mem->stack.len -= 16;
|
|
1429
|
-
#endif
|
|
1430
|
-
|
|
1431
|
-
// Keep real stack limits intact, in case we need them
|
|
1432
|
-
mem->stack0 = mem->stack;
|
|
1433
|
-
|
|
1434
|
-
#if defined(_WIN32) && !defined(_WIN64)
|
|
1435
|
-
mem->stack.len -= K_SIZE(SehFrame);
|
|
1436
|
-
|
|
1437
|
-
// Prepare at the top SEH frame record
|
|
1438
|
-
{
|
|
1439
|
-
SehFrame *seh = (SehFrame *)mem->stack.end();
|
|
1440
|
-
|
|
1441
|
-
seh->Next = (void *)-1;
|
|
1442
|
-
seh->Handler = (void *)SehHandler;
|
|
1443
|
-
}
|
|
1444
|
-
#endif
|
|
1445
|
-
|
|
1446
|
-
mem->heap.len = heap_size;
|
|
1447
|
-
#if defined(_WIN32)
|
|
1448
|
-
mem->heap.ptr = (uint8_t *)VirtualAlloc(nullptr, mem->heap.len, MEM_COMMIT | MEM_RESERVE, PAGE_READWRITE);
|
|
1449
|
-
#else
|
|
1450
|
-
mem->heap.ptr = (uint8_t *)mmap(nullptr, mem->heap.len, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0);
|
|
1451
|
-
#endif
|
|
1452
|
-
K_CRITICAL(mem->heap.ptr, "Failed to allocate %1 of memory", mem->heap.len);
|
|
1453
|
-
|
|
1454
|
-
if (temporary) {
|
|
1455
|
-
instance->temporaries++;
|
|
1456
|
-
mem->temporary = true;
|
|
1457
|
-
} else {
|
|
1458
|
-
instance->memories.Append(mem);
|
|
1459
|
-
mem->temporary = false;
|
|
1460
|
-
}
|
|
1461
|
-
|
|
1462
|
-
mem->busy = true;
|
|
1463
|
-
|
|
1464
|
-
mem_guard.Disable();
|
|
1465
|
-
return mem;
|
|
1466
|
-
}
|
|
1467
|
-
|
|
1468
|
-
void ReleaseMemory(InstanceData *instance, InstanceMemory *mem)
|
|
1469
|
-
{
|
|
1470
|
-
if (--mem->depth)
|
|
1471
|
-
return;
|
|
1472
|
-
|
|
1473
|
-
// The first InstanceMemory is used for sync calls, no need to manage the async stuff
|
|
1474
|
-
if (mem == instance->memories[0])
|
|
1475
|
-
return;
|
|
1476
|
-
|
|
1477
|
-
std::lock_guard<std::mutex> lock(instance->mem_mutex);
|
|
1478
|
-
|
|
1479
|
-
if (mem->temporary) {
|
|
1480
|
-
instance->temporaries--;
|
|
1481
|
-
delete mem;
|
|
1482
|
-
} else {
|
|
1483
|
-
mem->busy = false;
|
|
1484
|
-
}
|
|
1485
|
-
}
|
|
1486
|
-
|
|
1487
|
-
static Napi::Value TranslateNormalCall(const FunctionInfo *func, void *native,
|
|
1488
|
-
const Napi::CallbackInfo &info)
|
|
1489
|
-
{
|
|
1490
|
-
Napi::Env env = info.Env();
|
|
1491
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
1492
|
-
|
|
1493
|
-
if (info.Length() < (uint32_t)func->required_parameters) [[unlikely]] {
|
|
1494
|
-
ThrowError<Napi::TypeError>(env, "Expected %1 arguments, got %2", func->parameters.len, info.Length());
|
|
1495
|
-
return env.Null();
|
|
1496
|
-
}
|
|
1497
|
-
|
|
1498
|
-
InstanceMemory *mem = instance->memories[0];
|
|
1499
|
-
CallData call(env, instance, mem);
|
|
1500
|
-
|
|
1501
|
-
if (!call.Prepare(func, info)) [[unlikely]]
|
|
1502
|
-
return env.Null();
|
|
1503
|
-
|
|
1504
|
-
if (instance->debug) {
|
|
1505
|
-
call.DumpForward(func);
|
|
1506
|
-
}
|
|
1507
|
-
|
|
1508
|
-
// Execute call
|
|
1509
|
-
{
|
|
1510
|
-
K_DEFER_C(prev_call = exec_call) { exec_call = prev_call; };
|
|
1511
|
-
exec_call = &call;
|
|
1512
|
-
|
|
1513
|
-
call.Execute(func, native);
|
|
1514
|
-
}
|
|
1515
|
-
|
|
1516
|
-
return call.Complete(func);
|
|
1517
|
-
}
|
|
1518
|
-
|
|
1519
|
-
Napi::Value TranslateNormalCall(const Napi::CallbackInfo &info)
|
|
1520
|
-
{
|
|
1521
|
-
FunctionInfo *func = (FunctionInfo *)info.Data();
|
|
1522
|
-
return TranslateNormalCall(func, func->native, info);
|
|
1523
|
-
}
|
|
1524
|
-
|
|
1525
|
-
static Napi::Value TranslateVariadicCall(const FunctionInfo *func, void *native,
|
|
1526
|
-
const Napi::CallbackInfo &info)
|
|
1527
|
-
{
|
|
1528
|
-
Napi::Env env = info.Env();
|
|
1529
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
1530
|
-
|
|
1531
|
-
FunctionInfo copy;
|
|
1532
|
-
memcpy((void *)©, func, K_SIZE(*func));
|
|
1533
|
-
copy.lib = nullptr;
|
|
1534
|
-
|
|
1535
|
-
// This makes variadic calls non-reentrant
|
|
1536
|
-
K_DEFER_C(len = copy.parameters.len) {
|
|
1537
|
-
copy.parameters.RemoveFrom(len);
|
|
1538
|
-
copy.parameters.Leak();
|
|
1539
|
-
};
|
|
1540
|
-
|
|
1541
|
-
if (info.Length() < (uint32_t)copy.required_parameters) [[unlikely]] {
|
|
1542
|
-
ThrowError<Napi::TypeError>(env, "Expected %1 arguments or more, got %2", copy.parameters.len, info.Length());
|
|
1543
|
-
return env.Null();
|
|
1544
|
-
}
|
|
1545
|
-
if ((info.Length() - copy.required_parameters) % 2) [[unlikely]] {
|
|
1546
|
-
ThrowError<Napi::Error>(env, "Missing value argument for variadic call");
|
|
1547
|
-
return env.Null();
|
|
1548
|
-
}
|
|
1549
|
-
|
|
1550
|
-
for (Size i = copy.required_parameters; i < (Size)info.Length(); i += 2) {
|
|
1551
|
-
ParameterInfo param = {};
|
|
1552
|
-
|
|
1553
|
-
param.type = ResolveType(info[(uint32_t)i], ¶m.directions);
|
|
1554
|
-
|
|
1555
|
-
if (!param.type) [[unlikely]]
|
|
1556
|
-
return env.Null();
|
|
1557
|
-
if (!CanPassType(param.type, param.directions)) [[unlikely]] {
|
|
1558
|
-
ThrowError<Napi::TypeError>(env, "Type %1 cannot be used as a parameter", param.type->name);
|
|
1559
|
-
return env.Null();
|
|
1560
|
-
}
|
|
1561
|
-
if (copy.parameters.len >= MaxParameters) [[unlikely]] {
|
|
1562
|
-
ThrowError<Napi::TypeError>(env, "Functions cannot have more than %1 parameters", MaxParameters);
|
|
1563
|
-
return env.Null();
|
|
1564
|
-
}
|
|
1565
|
-
if ((param.directions & 2) && ++copy.out_parameters >= MaxParameters) [[unlikely]] {
|
|
1566
|
-
ThrowError<Napi::TypeError>(env, "Functions cannot have more than %1 output parameters", MaxParameters);
|
|
1567
|
-
return env.Null();
|
|
1568
|
-
}
|
|
1569
|
-
|
|
1570
|
-
param.variadic = true;
|
|
1571
|
-
param.offset = (int8_t)(i + 1);
|
|
1572
|
-
|
|
1573
|
-
copy.parameters.Append(param);
|
|
1574
|
-
}
|
|
1575
|
-
|
|
1576
|
-
if (!AnalyseFunction(env, instance, ©)) [[unlikely]]
|
|
1577
|
-
return env.Null();
|
|
1578
|
-
|
|
1579
|
-
InstanceMemory *mem = instance->memories[0];
|
|
1580
|
-
CallData call(env, instance, mem);
|
|
1581
|
-
|
|
1582
|
-
if (!call.Prepare(©, info)) [[unlikely]]
|
|
1583
|
-
return env.Null();
|
|
1584
|
-
|
|
1585
|
-
if (instance->debug) {
|
|
1586
|
-
call.DumpForward(©);
|
|
1587
|
-
}
|
|
1588
|
-
|
|
1589
|
-
// Execute call
|
|
1590
|
-
{
|
|
1591
|
-
K_DEFER_C(prev_call = exec_call) { exec_call = prev_call; };
|
|
1592
|
-
exec_call = &call;
|
|
1593
|
-
|
|
1594
|
-
call.Execute(©, native);
|
|
1595
|
-
}
|
|
1596
|
-
|
|
1597
|
-
return call.Complete(©);
|
|
1598
|
-
}
|
|
1599
|
-
|
|
1600
|
-
Napi::Value TranslateVariadicCall(const Napi::CallbackInfo &info)
|
|
1601
|
-
{
|
|
1602
|
-
FunctionInfo *func = (FunctionInfo *)info.Data();
|
|
1603
|
-
return TranslateVariadicCall(func, func->native, info);
|
|
1604
|
-
}
|
|
1605
|
-
|
|
1606
|
-
class AsyncCall: public Napi::AsyncWorker {
|
|
1607
|
-
Napi::Env env;
|
|
1608
|
-
|
|
1609
|
-
const FunctionInfo *func;
|
|
1610
|
-
void *native;
|
|
1611
|
-
|
|
1612
|
-
CallData call;
|
|
1613
|
-
bool prepared = false;
|
|
1614
|
-
|
|
1615
|
-
public:
|
|
1616
|
-
AsyncCall(Napi::Env env, InstanceData *instance, const FunctionInfo *func,
|
|
1617
|
-
void *native, InstanceMemory *mem, Napi::Function &callback)
|
|
1618
|
-
: Napi::AsyncWorker(callback), env(env), func(func->Ref()), native(native),
|
|
1619
|
-
call(env, instance, mem) {}
|
|
1620
|
-
~AsyncCall() { func->Unref(); }
|
|
1621
|
-
|
|
1622
|
-
bool Prepare(const Napi::CallbackInfo &info) {
|
|
1623
|
-
prepared = call.Prepare(func, info);
|
|
1624
|
-
|
|
1625
|
-
if (!prepared) {
|
|
1626
|
-
Napi::Error err = env.GetAndClearPendingException();
|
|
1627
|
-
SetError(err.Message());
|
|
1628
|
-
}
|
|
1629
|
-
|
|
1630
|
-
return prepared;
|
|
1631
|
-
}
|
|
1632
|
-
void DumpForward() { call.DumpForward(func); }
|
|
1633
|
-
|
|
1634
|
-
void Execute() override;
|
|
1635
|
-
void OnOK() override;
|
|
1636
|
-
};
|
|
1637
|
-
|
|
1638
|
-
void AsyncCall::Execute()
|
|
1639
|
-
{
|
|
1640
|
-
if (prepared) {
|
|
1641
|
-
K_DEFER_C(prev_call = exec_call) { exec_call = prev_call; };
|
|
1642
|
-
exec_call = &call;
|
|
1643
|
-
|
|
1644
|
-
call.Execute(func, native);
|
|
1645
|
-
}
|
|
1646
|
-
}
|
|
1647
|
-
|
|
1648
|
-
void AsyncCall::OnOK()
|
|
1649
|
-
{
|
|
1650
|
-
K_ASSERT(prepared);
|
|
1651
|
-
|
|
1652
|
-
Napi::FunctionReference &callback = Callback();
|
|
1653
|
-
|
|
1654
|
-
Napi::Value self = env.Null();
|
|
1655
|
-
napi_value args[] = {
|
|
1656
|
-
env.Null(),
|
|
1657
|
-
call.Complete(func)
|
|
1658
|
-
};
|
|
1659
|
-
|
|
1660
|
-
callback.Call(self, K_LEN(args), args);
|
|
1661
|
-
}
|
|
1662
|
-
|
|
1663
|
-
static Napi::Value TranslateAsyncCall(const FunctionInfo *func, void *native,
|
|
1664
|
-
const Napi::CallbackInfo &info)
|
|
1665
|
-
{
|
|
1666
|
-
K_ASSERT(!func->variadic);
|
|
1667
|
-
|
|
1668
|
-
Napi::Env env = info.Env();
|
|
1669
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
1670
|
-
|
|
1671
|
-
if (info.Length() <= (uint32_t)func->required_parameters) {
|
|
1672
|
-
ThrowError<Napi::TypeError>(env, "Expected %1 arguments, got %2", func->parameters.len + 1, info.Length());
|
|
1673
|
-
return env.Null();
|
|
1674
|
-
}
|
|
1675
|
-
|
|
1676
|
-
Napi::Function callback = info[(uint32_t)func->required_parameters].As<Napi::Function>();
|
|
1677
|
-
|
|
1678
|
-
if (!callback.IsFunction()) {
|
|
1679
|
-
ThrowError<Napi::TypeError>(env, "Expected callback function as last argument, got %1", GetValueType(instance, callback));
|
|
1680
|
-
return env.Null();
|
|
1681
|
-
}
|
|
1682
|
-
|
|
1683
|
-
InstanceMemory *mem = AllocateMemory(instance, instance->config.async_stack_size, instance->config.async_heap_size);
|
|
1684
|
-
if (!mem) [[unlikely]] {
|
|
1685
|
-
ThrowError<Napi::Error>(env, "Too many asynchronous calls are running");
|
|
1686
|
-
return env.Null();
|
|
1687
|
-
}
|
|
1688
|
-
AsyncCall *async = new AsyncCall(env, instance, func, native, mem, callback);
|
|
1689
|
-
|
|
1690
|
-
if (async->Prepare(info) && instance->debug) {
|
|
1691
|
-
async->DumpForward();
|
|
1692
|
-
}
|
|
1693
|
-
async->Queue();
|
|
1694
|
-
|
|
1695
|
-
return env.Undefined();
|
|
1696
|
-
}
|
|
1697
|
-
|
|
1698
|
-
Napi::Value TranslateAsyncCall(const Napi::CallbackInfo &info)
|
|
1699
|
-
{
|
|
1700
|
-
FunctionInfo *func = (FunctionInfo *)info.Data();
|
|
1701
|
-
return TranslateAsyncCall(func, func->native, info);
|
|
1702
|
-
}
|
|
1703
|
-
|
|
1704
|
-
extern "C" void RelayCallback(Size idx, uint8_t *sp)
|
|
1705
|
-
{
|
|
1706
|
-
CallData *call = exec_call;
|
|
1707
|
-
|
|
1708
|
-
// Try the fast path first: we are on the main thread and we are running a native call through Koffi.
|
|
1709
|
-
// It should be easy, but in this case we are running on the custom Koffi stack, which will trip up
|
|
1710
|
-
// Node and V8. So we need to switch back to the normal/main stack.
|
|
1711
|
-
if (call && std::this_thread::get_id() == call->instance->main_thread_id) {
|
|
1712
|
-
SwitchAndRelay(call, idx, sp, call->old_sp, &call->mem->stack);
|
|
1713
|
-
return;
|
|
1714
|
-
}
|
|
1715
|
-
|
|
1716
|
-
// Otherwise, we need to allocate memory to perform the callback.
|
|
1717
|
-
// Since the necessary machinery live in CallData, just use a temporary instance.
|
|
1718
|
-
// In some cases we would reuse the existing call (exec_call may be not null),
|
|
1719
|
-
// but it is rare so let's ignore this for simplicity.
|
|
1720
|
-
|
|
1721
|
-
TrampolineInfo *trampoline = &shared.trampolines[idx];
|
|
1722
|
-
Napi::Env env = trampoline->func.Env();
|
|
1723
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
1724
|
-
|
|
1725
|
-
InstanceMemory *mem = AllocateMemory(instance, instance->config.async_stack_size, instance->config.async_heap_size);
|
|
1726
|
-
if (!mem) [[unlikely]] {
|
|
1727
|
-
ThrowError<Napi::Error>(env, "Too many asynchronous calls are running");
|
|
1728
|
-
return;
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
if (std::this_thread::get_id() == instance->main_thread_id) {
|
|
1732
|
-
CallData call(env, instance, mem);
|
|
1733
|
-
|
|
1734
|
-
Napi::HandleScope scope(env);
|
|
1735
|
-
call.Relay(idx, sp);
|
|
1736
|
-
} else {
|
|
1737
|
-
CallData call(env, instance, mem);
|
|
1738
|
-
call.RelayAsync(idx, sp);
|
|
1739
|
-
}
|
|
1740
|
-
}
|
|
1741
|
-
|
|
1742
|
-
extern "C" void RelayDirect(CallData *call, Size idx, uint8_t *sp)
|
|
1743
|
-
{
|
|
1744
|
-
TrampolineInfo *trampoline = &shared.trampolines[idx];
|
|
1745
|
-
Napi::Env env = trampoline->func.Env();
|
|
1746
|
-
|
|
1747
|
-
#if defined(_WIN32)
|
|
1748
|
-
TEB *teb = GetTEB();
|
|
1749
|
-
InstanceData *instance = trampoline->instance;
|
|
1750
|
-
|
|
1751
|
-
// Restore previous stack limits at the end
|
|
1752
|
-
K_DEFER_C(base = teb->StackBase,
|
|
1753
|
-
limit = teb->StackLimit,
|
|
1754
|
-
dealloc = teb->DeallocationStack) {
|
|
1755
|
-
teb->StackBase = base;
|
|
1756
|
-
teb->StackLimit = limit;
|
|
1757
|
-
teb->DeallocationStack = dealloc;
|
|
1758
|
-
};
|
|
1759
|
-
|
|
1760
|
-
// Adjust stack limits so SEH works correctly
|
|
1761
|
-
teb->StackBase = instance->main_stack_max;
|
|
1762
|
-
teb->StackLimit = instance->main_stack_min;
|
|
1763
|
-
teb->DeallocationStack = instance->main_stack_min;
|
|
1764
|
-
#endif
|
|
1765
|
-
|
|
1766
|
-
if (env.IsExceptionPending()) [[unlikely]]
|
|
1767
|
-
return;
|
|
1768
|
-
if (!trampoline->used) [[unlikely]] {
|
|
1769
|
-
ThrowError<Napi::Error>(env, "Cannot use non-registered callback beyond FFI call");
|
|
1770
|
-
return;
|
|
1771
|
-
}
|
|
1772
|
-
|
|
1773
|
-
Napi::HandleScope scope(call->env);
|
|
1774
|
-
call->Relay(idx, sp);
|
|
1775
|
-
}
|
|
1776
|
-
|
|
1777
|
-
static Napi::Value FindLibraryFunction(const Napi::CallbackInfo &info)
|
|
1778
|
-
{
|
|
1779
|
-
Napi::Env env = info.Env();
|
|
1780
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
1781
|
-
LibraryHolder *lib = (LibraryHolder *)info.Data();
|
|
1782
|
-
|
|
1783
|
-
FunctionInfo *func = new FunctionInfo();
|
|
1784
|
-
K_DEFER { func->Unref(); };
|
|
1785
|
-
|
|
1786
|
-
func->lib = lib->Ref();
|
|
1787
|
-
|
|
1788
|
-
if (info.Length() >= 2) {
|
|
1789
|
-
if (!ParseClassicFunction(info, true, func))
|
|
1790
|
-
return env.Null();
|
|
1791
|
-
} else if (info.Length() >= 1) {
|
|
1792
|
-
if (!info[0].IsString()) {
|
|
1793
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for prototype, expected string", GetValueType(instance, info[0]));
|
|
1794
|
-
return env.Null();
|
|
1795
|
-
}
|
|
1796
|
-
|
|
1797
|
-
std::string proto = info[0u].As<Napi::String>();
|
|
1798
|
-
if (!ParsePrototype(env, proto.c_str(), true, func))
|
|
1799
|
-
return env.Null();
|
|
1800
|
-
} else {
|
|
1801
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 to 4 arguments, got %1", info.Length());
|
|
1802
|
-
return env.Null();
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
if (func->convention != CallConvention::Cdecl && func->variadic) {
|
|
1806
|
-
LogError("Call convention '%1' does not support variadic functions, ignoring",
|
|
1807
|
-
CallConventionNames[(int)func->convention]);
|
|
1808
|
-
func->convention = CallConvention::Cdecl;
|
|
1809
|
-
}
|
|
1810
|
-
|
|
1811
|
-
if (!AnalyseFunction(env, instance, func))
|
|
1812
|
-
return env.Null();
|
|
1813
|
-
if (func->variadic) {
|
|
1814
|
-
// Minimize reallocations
|
|
1815
|
-
func->parameters.Grow(32);
|
|
1816
|
-
}
|
|
1817
|
-
|
|
1818
|
-
#if defined(_WIN32)
|
|
1819
|
-
if (func->ordinal_name < 0) {
|
|
1820
|
-
if (func->decorated_name) {
|
|
1821
|
-
func->native = (void *)GetProcAddress((HMODULE)lib->module, func->decorated_name);
|
|
1822
|
-
}
|
|
1823
|
-
if (!func->native) {
|
|
1824
|
-
func->native = (void *)GetProcAddress((HMODULE)lib->module, func->name);
|
|
1825
|
-
}
|
|
1826
|
-
} else {
|
|
1827
|
-
uint16_t ordinal = (uint16_t)func->ordinal_name;
|
|
1828
|
-
|
|
1829
|
-
func->decorated_name = nullptr;
|
|
1830
|
-
func->native = (void *)GetProcAddress((HMODULE)lib->module, (LPCSTR)(size_t)ordinal);
|
|
1831
|
-
}
|
|
1832
|
-
#else
|
|
1833
|
-
if (func->decorated_name) {
|
|
1834
|
-
func->native = dlsym(lib->module, func->decorated_name);
|
|
1835
|
-
}
|
|
1836
|
-
if (!func->native) {
|
|
1837
|
-
func->native = dlsym(lib->module, func->name);
|
|
1838
|
-
}
|
|
1839
|
-
#endif
|
|
1840
|
-
if (!func->native) {
|
|
1841
|
-
ThrowError<Napi::Error>(env, "Cannot find function '%1' in shared library", func->name);
|
|
1842
|
-
return env.Null();
|
|
1843
|
-
}
|
|
1844
|
-
|
|
1845
|
-
Napi::Function wrapper = WrapFunction(env, func);
|
|
1846
|
-
return wrapper;
|
|
1847
|
-
}
|
|
1848
|
-
|
|
1849
|
-
static Napi::Value FindSymbol(const Napi::CallbackInfo &info)
|
|
1850
|
-
{
|
|
1851
|
-
Napi::Env env = info.Env();
|
|
1852
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
1853
|
-
LibraryHolder *lib = (LibraryHolder *)info.Data();
|
|
1854
|
-
|
|
1855
|
-
if (info.Length() < 2) {
|
|
1856
|
-
ThrowError<Napi::TypeError>(env, "Expected 2, got %1", info.Length());
|
|
1857
|
-
return env.Null();
|
|
1858
|
-
}
|
|
1859
|
-
if (!info[0].IsString()) {
|
|
1860
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for name, expected string", GetValueType(instance, info[0]));
|
|
1861
|
-
return env.Null();
|
|
1862
|
-
}
|
|
1863
|
-
|
|
1864
|
-
std::string name = info[0].As<Napi::String>();
|
|
1865
|
-
|
|
1866
|
-
const TypeInfo *type = ResolveType(info[1]);
|
|
1867
|
-
if (!type)
|
|
1868
|
-
return env.Null();
|
|
1869
|
-
|
|
1870
|
-
#if defined(_WIN32)
|
|
1871
|
-
void *ptr = (void *)GetProcAddress((HMODULE)lib->module, name.c_str());
|
|
1872
|
-
#else
|
|
1873
|
-
void *ptr = (void *)dlsym(lib->module, name.c_str());
|
|
1874
|
-
#endif
|
|
1875
|
-
if (!ptr) {
|
|
1876
|
-
ThrowError<Napi::Error>(env, "Cannot find symbol '%1' in shared library", name.c_str());
|
|
1877
|
-
return env.Null();
|
|
1878
|
-
}
|
|
1879
|
-
|
|
1880
|
-
Napi::External<void> external = Napi::External<void>::New(env, ptr);
|
|
1881
|
-
SetValueTag(external, &type);
|
|
1882
|
-
|
|
1883
|
-
return external;
|
|
1884
|
-
}
|
|
1885
|
-
|
|
1886
|
-
static Napi::Value UnloadLibrary(const Napi::CallbackInfo &info)
|
|
1887
|
-
{
|
|
1888
|
-
Napi::Env env = info.Env();
|
|
1889
|
-
LibraryHolder *lib = (LibraryHolder *)info.Data();
|
|
1890
|
-
|
|
1891
|
-
lib->Unload();
|
|
1892
|
-
|
|
1893
|
-
return env.Undefined();
|
|
1894
|
-
}
|
|
1895
|
-
|
|
1896
|
-
static Napi::Value LoadSharedLibrary(const Napi::CallbackInfo &info)
|
|
1897
|
-
{
|
|
1898
|
-
Napi::Env env = info.Env();
|
|
1899
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
1900
|
-
|
|
1901
|
-
if (info.Length() < 1) {
|
|
1902
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 or 2 arguments, got %1", info.Length());
|
|
1903
|
-
return env.Null();
|
|
1904
|
-
}
|
|
1905
|
-
if (!info[0].IsString() && !IsNullOrUndefined(info[0])) {
|
|
1906
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for filename, expected string or null", GetValueType(instance, info[0]));
|
|
1907
|
-
return env.Null();
|
|
1908
|
-
}
|
|
1909
|
-
if (info.Length() >= 2 && !IsObject(info[1])) {
|
|
1910
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for options, expected object", GetValueType(instance, info[1]));
|
|
1911
|
-
return env.Null();
|
|
1912
|
-
}
|
|
1913
|
-
|
|
1914
|
-
#if !defined(_WIN32)
|
|
1915
|
-
int flags = 0;
|
|
1916
|
-
|
|
1917
|
-
if (info.Length() >= 2) {
|
|
1918
|
-
Napi::Object options = info[1].As<Napi::Object>();
|
|
1919
|
-
|
|
1920
|
-
flags |= options.Get("lazy").ToBoolean() ? RTLD_LAZY : RTLD_NOW;
|
|
1921
|
-
flags |= options.Get("global").ToBoolean() ? RTLD_GLOBAL : RTLD_LOCAL;
|
|
1922
|
-
#if defined(RTLD_DEEPBIND)
|
|
1923
|
-
flags |= options.Get("deep").ToBoolean() ? RTLD_DEEPBIND : 0;
|
|
1924
|
-
#endif
|
|
1925
|
-
} else {
|
|
1926
|
-
flags = RTLD_NOW | RTLD_LOCAL;
|
|
1927
|
-
}
|
|
1928
|
-
#endif
|
|
1929
|
-
|
|
1930
|
-
if (!instance->memories.len) {
|
|
1931
|
-
AllocateMemory(instance, instance->config.sync_stack_size, instance->config.sync_heap_size);
|
|
1932
|
-
K_ASSERT(instance->memories.len == 1);
|
|
1933
|
-
}
|
|
1934
|
-
|
|
1935
|
-
// Load shared library
|
|
1936
|
-
void *module = nullptr;
|
|
1937
|
-
#if defined(_WIN32)
|
|
1938
|
-
if (info[0].IsString()) {
|
|
1939
|
-
std::string filename = info[0].As<Napi::String>();
|
|
1940
|
-
module = LoadWindowsLibrary(env, filename.c_str());
|
|
1941
|
-
|
|
1942
|
-
if (!module)
|
|
1943
|
-
return env.Null();
|
|
1944
|
-
} else {
|
|
1945
|
-
module = GetModuleHandle(nullptr);
|
|
1946
|
-
K_ASSERT(module);
|
|
1947
|
-
}
|
|
1948
|
-
#else
|
|
1949
|
-
if (info[0].IsString()) {
|
|
1950
|
-
std::string filename = info[0].As<Napi::String>();
|
|
1951
|
-
module = dlopen(filename.c_str(), flags);
|
|
1952
|
-
|
|
1953
|
-
if (!module) {
|
|
1954
|
-
const char *msg = dlerror();
|
|
1955
|
-
|
|
1956
|
-
if (StartsWith(msg, filename.c_str())) {
|
|
1957
|
-
msg += filename.length();
|
|
1958
|
-
|
|
1959
|
-
while (strchr(": ", msg[0]) && msg[0]) {
|
|
1960
|
-
msg++;
|
|
1961
|
-
}
|
|
1962
|
-
}
|
|
1963
|
-
|
|
1964
|
-
ThrowError<Napi::Error>(env, "Failed to load shared library: %1", msg);
|
|
1965
|
-
return env.Null();
|
|
1966
|
-
}
|
|
1967
|
-
} else {
|
|
1968
|
-
module = RTLD_DEFAULT;
|
|
1969
|
-
}
|
|
1970
|
-
#endif
|
|
1971
|
-
|
|
1972
|
-
LibraryHolder *lib = new LibraryHolder(module);
|
|
1973
|
-
K_DEFER { lib->Unref(); };
|
|
1974
|
-
|
|
1975
|
-
Napi::Object obj = Napi::Object::New(env);
|
|
1976
|
-
|
|
1977
|
-
#define ADD_METHOD(Name, Call) \
|
|
1978
|
-
do { \
|
|
1979
|
-
const auto wrapper = [](const Napi::CallbackInfo &info) { return Call; }; \
|
|
1980
|
-
Napi::Function func = Napi::Function::New(env, wrapper, (Name), (void *)lib->Ref()); \
|
|
1981
|
-
func.AddFinalizer([](Napi::Env, LibraryHolder *lib) { lib->Unref(); }, lib); \
|
|
1982
|
-
obj.Set((Name), func); \
|
|
1983
|
-
} while (false)
|
|
1984
|
-
|
|
1985
|
-
ADD_METHOD("func", FindLibraryFunction(info));
|
|
1986
|
-
ADD_METHOD("symbol", FindSymbol(info));
|
|
1987
|
-
|
|
1988
|
-
// We can't unref the library after unload, obviously
|
|
1989
|
-
obj.Set("unload", Napi::Function::New(env, UnloadLibrary, "unload", (void *)lib->Ref()));
|
|
1990
|
-
|
|
1991
|
-
#undef ADD_METHOD
|
|
1992
|
-
|
|
1993
|
-
return obj;
|
|
1994
|
-
}
|
|
1995
|
-
|
|
1996
|
-
static Napi::Value RegisterCallback(const Napi::CallbackInfo &info)
|
|
1997
|
-
{
|
|
1998
|
-
Napi::Env env = info.Env();
|
|
1999
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
2000
|
-
|
|
2001
|
-
if (!InitAsyncBroker(env, instance)) [[unlikely]]
|
|
2002
|
-
return env.Null();
|
|
2003
|
-
|
|
2004
|
-
bool has_recv = (info.Length() >= 3 && info[1].IsFunction());
|
|
2005
|
-
|
|
2006
|
-
if (info.Length() < 2u + has_recv) {
|
|
2007
|
-
ThrowError<Napi::TypeError>(env, "Expected 2 or 3 arguments, got %1", info.Length());
|
|
2008
|
-
return env.Null();
|
|
2009
|
-
}
|
|
2010
|
-
if (!info[0u + has_recv].IsFunction()) {
|
|
2011
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for func, expected function", GetValueType(instance, info[0 + has_recv]));
|
|
2012
|
-
return env.Null();
|
|
2013
|
-
}
|
|
2014
|
-
|
|
2015
|
-
Napi::Value recv = has_recv ? info[0] : env.Undefined();
|
|
2016
|
-
Napi::Function func = info[0u + has_recv].As<Napi::Function>();
|
|
2017
|
-
|
|
2018
|
-
const TypeInfo *type = ResolveType(info[1u + has_recv]);
|
|
2019
|
-
if (!type)
|
|
2020
|
-
return env.Null();
|
|
2021
|
-
if (type->primitive != PrimitiveKind::Callback) {
|
|
2022
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 type, expected <callback> * type", type->name);
|
|
2023
|
-
return env.Null();
|
|
2024
|
-
}
|
|
2025
|
-
|
|
2026
|
-
int16_t idx;
|
|
2027
|
-
{
|
|
2028
|
-
std::lock_guard<std::mutex> lock(shared.mutex);
|
|
2029
|
-
|
|
2030
|
-
if (!shared.available.len) [[unlikely]] {
|
|
2031
|
-
ThrowError<Napi::Error>(env, "Too many callbacks are in use (max = %1)", MaxTrampolines);
|
|
2032
|
-
return env.Null();
|
|
2033
|
-
}
|
|
2034
|
-
|
|
2035
|
-
idx = shared.available.data[--shared.available.len];
|
|
2036
|
-
}
|
|
2037
|
-
|
|
2038
|
-
TrampolineInfo *trampoline = &shared.trampolines[idx];
|
|
2039
|
-
|
|
2040
|
-
trampoline->instance = instance;
|
|
2041
|
-
trampoline->proto = type->ref.proto;
|
|
2042
|
-
trampoline->func.Reset(func, 1);
|
|
2043
|
-
if (!IsNullOrUndefined(recv)) {
|
|
2044
|
-
trampoline->recv.Reset(recv, 1);
|
|
2045
|
-
} else {
|
|
2046
|
-
trampoline->recv.Reset();
|
|
2047
|
-
}
|
|
2048
|
-
trampoline->used = true;
|
|
2049
|
-
|
|
2050
|
-
void *ptr = GetTrampoline(idx);
|
|
2051
|
-
|
|
2052
|
-
Napi::External<void> external = Napi::External<void>::New(env, ptr);
|
|
2053
|
-
SetValueTag(external, type->ref.marker);
|
|
2054
|
-
|
|
2055
|
-
// Cache index for fast unregistration
|
|
2056
|
-
instance->trampolines_map.Set(ptr, idx);
|
|
2057
|
-
|
|
2058
|
-
return external;
|
|
2059
|
-
}
|
|
2060
|
-
|
|
2061
|
-
static Napi::Value UnregisterCallback(const Napi::CallbackInfo &info)
|
|
2062
|
-
{
|
|
2063
|
-
Napi::Env env = info.Env();
|
|
2064
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
2065
|
-
|
|
2066
|
-
if (info.Length() < 1) {
|
|
2067
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 argument, got %1", info.Length());
|
|
2068
|
-
return env.Null();
|
|
2069
|
-
}
|
|
2070
|
-
if (!info[0].IsExternal()) {
|
|
2071
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for id, expected registered callback", GetValueType(instance, info[0]));
|
|
2072
|
-
return env.Null();
|
|
2073
|
-
}
|
|
2074
|
-
|
|
2075
|
-
Napi::External<void> external = info[0].As<Napi::External<void>>();
|
|
2076
|
-
void *ptr = external.Data();
|
|
2077
|
-
|
|
2078
|
-
int16_t idx;
|
|
2079
|
-
{
|
|
2080
|
-
int16_t *it = instance->trampolines_map.Find(ptr);
|
|
2081
|
-
|
|
2082
|
-
if (!it) [[unlikely]] {
|
|
2083
|
-
ThrowError<Napi::Error>(env, "Could not find matching registered callback");
|
|
2084
|
-
return env.Null();
|
|
2085
|
-
}
|
|
2086
|
-
|
|
2087
|
-
idx = *it;
|
|
2088
|
-
instance->trampolines_map.Remove(it);
|
|
2089
|
-
}
|
|
2090
|
-
|
|
2091
|
-
// Release shared trampoline safely
|
|
2092
|
-
{
|
|
2093
|
-
std::lock_guard<std::mutex> lock(shared.mutex);
|
|
2094
|
-
|
|
2095
|
-
TrampolineInfo *trampoline = &shared.trampolines[idx];
|
|
2096
|
-
K_ASSERT(!trampoline->func.IsEmpty());
|
|
2097
|
-
|
|
2098
|
-
trampoline->func.Reset();
|
|
2099
|
-
trampoline->recv.Reset();
|
|
2100
|
-
trampoline->used = false;
|
|
2101
|
-
|
|
2102
|
-
shared.available.Append(idx);
|
|
2103
|
-
}
|
|
2104
|
-
|
|
2105
|
-
return env.Undefined();
|
|
2106
|
-
}
|
|
2107
|
-
|
|
2108
|
-
static Napi::Value CastValue(const Napi::CallbackInfo &info)
|
|
2109
|
-
{
|
|
2110
|
-
Napi::Env env = info.Env();
|
|
2111
|
-
|
|
2112
|
-
if (info.Length() < 2) [[unlikely]] {
|
|
2113
|
-
ThrowError<Napi::TypeError>(env, "Expected 2 arguments, got %1", info.Length());
|
|
2114
|
-
return env.Null();
|
|
2115
|
-
}
|
|
2116
|
-
|
|
2117
|
-
Napi::Value value = info[0];
|
|
2118
|
-
|
|
2119
|
-
const TypeInfo *type = ResolveType(info[1]);
|
|
2120
|
-
if (!type) [[unlikely]]
|
|
2121
|
-
return env.Null();
|
|
2122
|
-
if (type->primitive != PrimitiveKind::Pointer &&
|
|
2123
|
-
type->primitive != PrimitiveKind::Callback &&
|
|
2124
|
-
type->primitive != PrimitiveKind::String &&
|
|
2125
|
-
type->primitive != PrimitiveKind::String16 &&
|
|
2126
|
-
type->primitive != PrimitiveKind::String32) [[unlikely]] {
|
|
2127
|
-
ThrowError<Napi::TypeError>(env, "Only pointer or string types can be used for casting");
|
|
2128
|
-
return env.Null();
|
|
2129
|
-
}
|
|
2130
|
-
|
|
2131
|
-
ValueCast *cast = new ValueCast;
|
|
2132
|
-
|
|
2133
|
-
cast->ref.Reset(value, 1);
|
|
2134
|
-
cast->type = type;
|
|
2135
|
-
|
|
2136
|
-
Napi::External<ValueCast> external = Napi::External<ValueCast>::New(env, cast, [](Napi::Env, ValueCast *cast) { delete cast; });
|
|
2137
|
-
SetValueTag(external, &CastMarker);
|
|
2138
|
-
|
|
2139
|
-
return external;
|
|
2140
|
-
}
|
|
2141
|
-
|
|
2142
|
-
static Napi::Value DecodeValue(const Napi::CallbackInfo &info)
|
|
2143
|
-
{
|
|
2144
|
-
Napi::Env env = info.Env();
|
|
2145
|
-
|
|
2146
|
-
bool has_offset = (info.Length() >= 2 && info[1].IsNumber());
|
|
2147
|
-
bool has_len = (info.Length() >= 3u + has_offset && info[2 + has_offset].IsNumber());
|
|
2148
|
-
|
|
2149
|
-
if (info.Length() < 2u + has_offset) [[unlikely]] {
|
|
2150
|
-
ThrowError<Napi::TypeError>(env, "Expected %1 to 4 arguments, got %2", 2 + has_offset, info.Length());
|
|
2151
|
-
return env.Null();
|
|
2152
|
-
}
|
|
2153
|
-
|
|
2154
|
-
const TypeInfo *type = ResolveType(info[1u + has_offset]);
|
|
2155
|
-
if (!type) [[unlikely]]
|
|
2156
|
-
return env.Null();
|
|
2157
|
-
|
|
2158
|
-
Napi::Value value = info[0];
|
|
2159
|
-
int64_t offset = has_offset ? info[1].As<Napi::Number>().Int64Value() : 0;
|
|
2160
|
-
|
|
2161
|
-
if (has_len) {
|
|
2162
|
-
Size len = info[2 + has_offset].As<Napi::Number>();
|
|
2163
|
-
|
|
2164
|
-
Napi::Value ret = Decode(value, offset, type, &len);
|
|
2165
|
-
return ret;
|
|
2166
|
-
} else {
|
|
2167
|
-
Napi::Value ret = Decode(value, offset, type);
|
|
2168
|
-
return ret;
|
|
2169
|
-
}
|
|
2170
|
-
}
|
|
2171
|
-
|
|
2172
|
-
static Napi::Value GetPointerAddress(const Napi::CallbackInfo &info)
|
|
2173
|
-
{
|
|
2174
|
-
Napi::Env env = info.Env();
|
|
2175
|
-
|
|
2176
|
-
if (info.Length() < 1) {
|
|
2177
|
-
ThrowError<Napi::TypeError>(env, "Expected 1 argument, got %1", info.Length());
|
|
2178
|
-
return env.Null();
|
|
2179
|
-
}
|
|
2180
|
-
|
|
2181
|
-
void *ptr = nullptr;
|
|
2182
|
-
if (!GetExternalPointer(env, info[0], &ptr))
|
|
2183
|
-
return env.Null();
|
|
2184
|
-
|
|
2185
|
-
uint64_t ptr64 = (uint64_t)(uintptr_t)ptr;
|
|
2186
|
-
Napi::BigInt bigint = Napi::BigInt::New(env, ptr64);
|
|
2187
|
-
|
|
2188
|
-
return bigint;
|
|
2189
|
-
}
|
|
2190
|
-
|
|
2191
|
-
static Napi::Value CallPointerSync(const Napi::CallbackInfo &info)
|
|
2192
|
-
{
|
|
2193
|
-
Napi::Env env = info.Env();
|
|
2194
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
2195
|
-
|
|
2196
|
-
if (info.Length() < 2) [[unlikely]] {
|
|
2197
|
-
ThrowError<Napi::TypeError>(env, "Expected 2 or more arguments, got %1", info.Length());
|
|
2198
|
-
return env.Null();
|
|
2199
|
-
}
|
|
2200
|
-
|
|
2201
|
-
void *ptr = nullptr;
|
|
2202
|
-
if (!GetExternalPointer(env, info[0], &ptr)) [[unlikely]]
|
|
2203
|
-
return env.Null();
|
|
2204
|
-
|
|
2205
|
-
const TypeInfo *type = ResolveType(info[1]);
|
|
2206
|
-
if (!type) [[unlikely]]
|
|
2207
|
-
return env.Null();
|
|
2208
|
-
if (type->primitive != PrimitiveKind::Prototype) [[unlikely]] {
|
|
2209
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for type, expected function type", GetValueType(instance, info[1]));
|
|
2210
|
-
return env.Null();
|
|
2211
|
-
}
|
|
2212
|
-
|
|
2213
|
-
const FunctionInfo *proto = type->ref.proto;
|
|
2214
|
-
|
|
2215
|
-
return proto->variadic ? TranslateVariadicCall(proto, ptr, info)
|
|
2216
|
-
: TranslateNormalCall(proto, ptr, info);
|
|
2217
|
-
}
|
|
2218
|
-
|
|
2219
|
-
static Napi::Value EncodeValue(const Napi::CallbackInfo &info)
|
|
2220
|
-
{
|
|
2221
|
-
Napi::Env env = info.Env();
|
|
2222
|
-
|
|
2223
|
-
bool has_offset = (info.Length() >= 2 && info[1].IsNumber());
|
|
2224
|
-
bool has_len = (info.Length() >= 4u + has_offset && info[3 + has_offset].IsNumber());
|
|
2225
|
-
|
|
2226
|
-
if (info.Length() < 3u + has_offset) [[unlikely]] {
|
|
2227
|
-
ThrowError<Napi::TypeError>(env, "Expected %1 to 5 arguments, got %2", 3 + has_offset, info.Length());
|
|
2228
|
-
return env.Null();
|
|
2229
|
-
}
|
|
2230
|
-
|
|
2231
|
-
const TypeInfo *type = ResolveType(info[1u + has_offset]);
|
|
2232
|
-
if (!type) [[unlikely]]
|
|
2233
|
-
return env.Null();
|
|
2234
|
-
|
|
2235
|
-
Napi::Value ref = info[0];
|
|
2236
|
-
int64_t offset = has_offset ? info[1].As<Napi::Number>().Int64Value() : 0;
|
|
2237
|
-
Napi::Value value = info[2 + has_offset];
|
|
2238
|
-
|
|
2239
|
-
if (has_len) {
|
|
2240
|
-
Size len = info[3 + has_offset].As<Napi::Number>();
|
|
2241
|
-
|
|
2242
|
-
if (!Encode(ref, offset, value, type, &len))
|
|
2243
|
-
return env.Null();
|
|
2244
|
-
} else {
|
|
2245
|
-
if (!Encode(ref, offset, value, type))
|
|
2246
|
-
return env.Null();
|
|
2247
|
-
}
|
|
2248
|
-
|
|
2249
|
-
return env.Undefined();
|
|
2250
|
-
}
|
|
2251
|
-
|
|
2252
|
-
static Napi::Value CreateView(const Napi::CallbackInfo &info)
|
|
2253
|
-
{
|
|
2254
|
-
Napi::Env env = info.Env();
|
|
2255
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
2256
|
-
|
|
2257
|
-
if (info.Length() < 1) {
|
|
2258
|
-
ThrowError<Napi::TypeError>(env, "Expected 2 arguments, got %1", info.Length());
|
|
2259
|
-
return env.Null();
|
|
2260
|
-
}
|
|
2261
|
-
if (!info[1].IsNumber()) {
|
|
2262
|
-
ThrowError<Napi::TypeError>(env, "Unexpected %1 value for length, expected integer", GetValueType(instance, info[1]));
|
|
2263
|
-
return env.Null();
|
|
2264
|
-
}
|
|
2265
|
-
|
|
2266
|
-
void *ptr = nullptr;
|
|
2267
|
-
if (!GetExternalPointer(env, info[0], &ptr))
|
|
2268
|
-
return env.Null();
|
|
2269
|
-
Size len = (Size)info[1].As<Napi::Number>().Int64Value();
|
|
2270
|
-
|
|
2271
|
-
if (len < 0) {
|
|
2272
|
-
ThrowError<Napi::TypeError>(env, "Array length must be positive and non-zero");
|
|
2273
|
-
return env.Null();
|
|
2274
|
-
}
|
|
2275
|
-
|
|
2276
|
-
if (len) {
|
|
2277
|
-
Napi::ArrayBuffer view = Napi::ArrayBuffer::New(env, ptr, (size_t)len);
|
|
2278
|
-
|
|
2279
|
-
if (!view.ByteLength()) {
|
|
2280
|
-
ThrowError<Napi::Error>(env, "This runtime does not support external buffers");
|
|
2281
|
-
return env.Null();
|
|
2282
|
-
}
|
|
2283
|
-
|
|
2284
|
-
return view;
|
|
2285
|
-
} else {
|
|
2286
|
-
return Napi::ArrayBuffer::New(env, 0);
|
|
2287
|
-
}
|
|
2288
|
-
}
|
|
2289
|
-
|
|
2290
|
-
static Napi::Value ResetKoffi(const Napi::CallbackInfo &info)
|
|
2291
|
-
{
|
|
2292
|
-
Napi::Env env = info.Env();
|
|
2293
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
2294
|
-
|
|
2295
|
-
if (instance->broker) {
|
|
2296
|
-
napi_release_threadsafe_function(instance->broker, napi_tsfn_abort);
|
|
2297
|
-
instance->broker = nullptr;
|
|
2298
|
-
}
|
|
2299
|
-
|
|
2300
|
-
instance->types.RemoveFrom(instance->base_types_count);
|
|
2301
|
-
|
|
2302
|
-
{
|
|
2303
|
-
HashSet<const void *> base_types;
|
|
2304
|
-
HashMap<const char *, const TypeInfo *> new_map;
|
|
2305
|
-
|
|
2306
|
-
for (const TypeInfo &type: instance->types) {
|
|
2307
|
-
base_types.Set(&type);
|
|
2308
|
-
}
|
|
2309
|
-
|
|
2310
|
-
for (const auto &bucket: instance->types_map.table) {
|
|
2311
|
-
if (base_types.Find(bucket.value)) {
|
|
2312
|
-
new_map.Set(bucket.key, bucket.value);
|
|
2313
|
-
}
|
|
2314
|
-
}
|
|
2315
|
-
|
|
2316
|
-
std::swap(instance->types_map, new_map);
|
|
2317
|
-
}
|
|
2318
|
-
|
|
2319
|
-
instance->callbacks.Clear();
|
|
2320
|
-
|
|
2321
|
-
return env.Undefined();
|
|
2322
|
-
}
|
|
2323
|
-
|
|
2324
|
-
void LibraryHolder::Unload()
|
|
2325
|
-
{
|
|
2326
|
-
#if defined(_WIN32)
|
|
2327
|
-
if (module && module != GetModuleHandle(nullptr)) {
|
|
2328
|
-
FreeLibrary((HMODULE)module);
|
|
2329
|
-
}
|
|
2330
|
-
#else
|
|
2331
|
-
if (module && module != RTLD_DEFAULT) {
|
|
2332
|
-
dlclose(module);
|
|
2333
|
-
}
|
|
2334
|
-
#endif
|
|
2335
|
-
|
|
2336
|
-
module = nullptr;
|
|
2337
|
-
}
|
|
2338
|
-
|
|
2339
|
-
const LibraryHolder *LibraryHolder::Ref() const
|
|
2340
|
-
{
|
|
2341
|
-
refcount++;
|
|
2342
|
-
return this;
|
|
2343
|
-
}
|
|
2344
|
-
|
|
2345
|
-
void LibraryHolder::Unref() const
|
|
2346
|
-
{
|
|
2347
|
-
if (!--refcount) {
|
|
2348
|
-
delete this;
|
|
2349
|
-
}
|
|
2350
|
-
}
|
|
2351
|
-
|
|
2352
|
-
FunctionInfo::~FunctionInfo()
|
|
2353
|
-
{
|
|
2354
|
-
if (lib) {
|
|
2355
|
-
lib->Unref();
|
|
2356
|
-
}
|
|
2357
|
-
}
|
|
2358
|
-
|
|
2359
|
-
const FunctionInfo *FunctionInfo::Ref() const
|
|
2360
|
-
{
|
|
2361
|
-
refcount++;
|
|
2362
|
-
return this;
|
|
2363
|
-
}
|
|
2364
|
-
|
|
2365
|
-
void FunctionInfo::Unref() const
|
|
2366
|
-
{
|
|
2367
|
-
if (!--refcount) {
|
|
2368
|
-
delete this;
|
|
2369
|
-
}
|
|
2370
|
-
}
|
|
2371
|
-
|
|
2372
|
-
InstanceMemory::~InstanceMemory()
|
|
2373
|
-
{
|
|
2374
|
-
#if defined(_WIN32)
|
|
2375
|
-
if (stack.ptr) {
|
|
2376
|
-
VirtualFree(stack.ptr, 0, MEM_RELEASE);
|
|
2377
|
-
}
|
|
2378
|
-
if (heap.ptr) {
|
|
2379
|
-
VirtualFree(heap.ptr, 0, MEM_RELEASE);
|
|
2380
|
-
}
|
|
2381
|
-
#else
|
|
2382
|
-
if (stack.ptr) {
|
|
2383
|
-
munmap(stack.ptr, stack.len);
|
|
2384
|
-
}
|
|
2385
|
-
if (heap.ptr) {
|
|
2386
|
-
munmap(heap.ptr, heap.len);
|
|
2387
|
-
}
|
|
2388
|
-
#endif
|
|
2389
|
-
}
|
|
2390
|
-
|
|
2391
|
-
bool InitAsyncBroker(Napi::Env env, InstanceData *instance)
|
|
2392
|
-
{
|
|
2393
|
-
if (!instance->broker) {
|
|
2394
|
-
if (napi_create_threadsafe_function(env, nullptr, nullptr,
|
|
2395
|
-
Napi::String::New(env, "Koffi Async Callback Broker"),
|
|
2396
|
-
0, 1, nullptr, nullptr, nullptr,
|
|
2397
|
-
PerformAsyncRelay, &instance->broker) != napi_ok) {
|
|
2398
|
-
LogError("Failed to create async callback broker");
|
|
2399
|
-
return false;
|
|
2400
|
-
}
|
|
2401
|
-
napi_unref_threadsafe_function(env, instance->broker);
|
|
2402
|
-
}
|
|
2403
|
-
|
|
2404
|
-
return true;
|
|
2405
|
-
}
|
|
2406
|
-
|
|
2407
|
-
static void RegisterPrimitiveType(Napi::Env env, Napi::Object map, std::initializer_list<const char *> names,
|
|
2408
|
-
PrimitiveKind primitive, int32_t size, int16_t align, const char *ref = nullptr)
|
|
2409
|
-
{
|
|
2410
|
-
K_ASSERT(names.size() > 0);
|
|
2411
|
-
K_ASSERT(align <= size);
|
|
2412
|
-
|
|
2413
|
-
InstanceData *instance = env.GetInstanceData<InstanceData>();
|
|
2414
|
-
|
|
2415
|
-
TypeInfo *type = instance->types.AppendDefault();
|
|
2416
|
-
|
|
2417
|
-
type->name = *names.begin();
|
|
2418
|
-
|
|
2419
|
-
type->primitive = primitive;
|
|
2420
|
-
type->size = size;
|
|
2421
|
-
type->align = align;
|
|
2422
|
-
|
|
2423
|
-
if (IsInteger(type) || IsFloat(type)) {
|
|
2424
|
-
type->flags |= (int)TypeFlag::HasTypedArray;
|
|
2425
|
-
}
|
|
2426
|
-
if (TestStr(type->name, "char") ||
|
|
2427
|
-
TestStr(type->name, "char16") || TestStr(type->name, "char16_t") ||
|
|
2428
|
-
TestStr(type->name, "char32") || TestStr(type->name, "char32_t") ||
|
|
2429
|
-
TestStr(type->name, "wchar") || TestStr(type->name, "wchar_t")) {
|
|
2430
|
-
type->flags |= (int)TypeFlag::IsCharLike;
|
|
2431
|
-
}
|
|
2432
|
-
|
|
2433
|
-
if (ref) {
|
|
2434
|
-
const TypeInfo *marker = instance->types_map.FindValue(ref, nullptr);
|
|
2435
|
-
K_ASSERT(marker);
|
|
2436
|
-
|
|
2437
|
-
type->ref.marker = marker;
|
|
2438
|
-
}
|
|
2439
|
-
|
|
2440
|
-
Napi::Value wrapper = WrapType(env, type);
|
|
2441
|
-
|
|
2442
|
-
for (const char *name: names) {
|
|
2443
|
-
bool inserted;
|
|
2444
|
-
instance->types_map.InsertOrGet(name, type, &inserted);
|
|
2445
|
-
K_ASSERT(inserted);
|
|
2446
|
-
|
|
2447
|
-
if (!EndsWith(name, "*")) {
|
|
2448
|
-
map.Set(name, wrapper);
|
|
2449
|
-
}
|
|
2450
|
-
}
|
|
2451
|
-
}
|
|
2452
|
-
|
|
2453
|
-
static inline PrimitiveKind GetSignPrimitive(Size len, bool sign)
|
|
2454
|
-
{
|
|
2455
|
-
switch (len) {
|
|
2456
|
-
case 1: return sign ? PrimitiveKind::Int8 : PrimitiveKind::UInt8;
|
|
2457
|
-
case 2: return sign ? PrimitiveKind::Int16 : PrimitiveKind::UInt16;
|
|
2458
|
-
case 4: return sign ? PrimitiveKind::Int32 : PrimitiveKind::UInt32;
|
|
2459
|
-
case 8: return sign ? PrimitiveKind::Int64 : PrimitiveKind::UInt64;
|
|
2460
|
-
}
|
|
2461
|
-
|
|
2462
|
-
K_UNREACHABLE();
|
|
2463
|
-
}
|
|
2464
|
-
|
|
2465
|
-
static inline PrimitiveKind GetLittleEndianPrimitive(PrimitiveKind kind)
|
|
2466
|
-
{
|
|
2467
|
-
#if defined(K_BIG_ENDIAN)
|
|
2468
|
-
return (PrimitiveKind)((int)kind + 1);
|
|
2469
|
-
#else
|
|
2470
|
-
return kind;
|
|
2471
|
-
#endif
|
|
2472
|
-
}
|
|
2473
|
-
|
|
2474
|
-
static inline PrimitiveKind GetBigEndianPrimitive(PrimitiveKind kind)
|
|
2475
|
-
{
|
|
2476
|
-
#if defined(K_BIG_ENDIAN)
|
|
2477
|
-
return kind;
|
|
2478
|
-
#else
|
|
2479
|
-
return (PrimitiveKind)((int)kind + 1);
|
|
2480
|
-
#endif
|
|
2481
|
-
}
|
|
2482
|
-
|
|
2483
|
-
static InstanceData *CreateInstance()
|
|
2484
|
-
{
|
|
2485
|
-
InstanceData *instance = new InstanceData();
|
|
2486
|
-
K_DEFER_N(err_guard) { delete instance; };
|
|
2487
|
-
|
|
2488
|
-
instance->main_thread_id = std::this_thread::get_id();
|
|
2489
|
-
|
|
2490
|
-
instance->debug = GetDebugFlag("DUMP_CALLS");
|
|
2491
|
-
|
|
2492
|
-
#if defined(_WIN32)
|
|
2493
|
-
TEB *teb = GetTEB();
|
|
2494
|
-
|
|
2495
|
-
instance->main_stack_max = teb->StackBase;
|
|
2496
|
-
instance->main_stack_min = teb->DeallocationStack;
|
|
2497
|
-
#endif
|
|
2498
|
-
|
|
2499
|
-
err_guard.Disable();
|
|
2500
|
-
return instance;
|
|
2501
|
-
}
|
|
2502
|
-
|
|
2503
|
-
static Napi::Object InitModule(Napi::Env env, Napi::Object exports)
|
|
2504
|
-
{
|
|
2505
|
-
InstanceData *instance = CreateInstance();
|
|
2506
|
-
K_CRITICAL(instance, "Failed to initialize Koffi");
|
|
2507
|
-
|
|
2508
|
-
env.SetInstanceData(instance);
|
|
2509
|
-
|
|
2510
|
-
exports.Set("config", Napi::Function::New(env, GetSetConfig, "config"));
|
|
2511
|
-
exports.Set("stats", Napi::Function::New(env, GetStats, "stats"));
|
|
2512
|
-
|
|
2513
|
-
exports.Set("struct", Napi::Function::New(env, CreatePaddedStructType, "struct"));
|
|
2514
|
-
exports.Set("pack", Napi::Function::New(env, CreatePackedStructType, "pack"));
|
|
2515
|
-
exports.Set("union", Napi::Function::New(env, CreateUnionType, "union"));
|
|
2516
|
-
exports.Set("Union", Napi::Function::New(env, InstantiateUnion, "Union"));
|
|
2517
|
-
exports.Set("opaque", Napi::Function::New(env, CreateOpaqueType, "opaque"));
|
|
2518
|
-
exports.Set("pointer", Napi::Function::New(env, CreatePointerType, "pointer"));
|
|
2519
|
-
exports.Set("array", Napi::Function::New(env, CreateArrayType, "array"));
|
|
2520
|
-
exports.Set("proto", Napi::Function::New(env, CreateFunctionType, "proto"));
|
|
2521
|
-
exports.Set("alias", Napi::Function::New(env, CreateTypeAlias, "alias"));
|
|
2522
|
-
|
|
2523
|
-
exports.Set("sizeof", Napi::Function::New(env, GetTypeSize, "sizeof"));
|
|
2524
|
-
exports.Set("alignof", Napi::Function::New(env, GetTypeAlign, "alignof"));
|
|
2525
|
-
exports.Set("offsetof", Napi::Function::New(env, GetMemberOffset, "offsetof"));
|
|
2526
|
-
exports.Set("resolve", Napi::Function::New(env, GetResolvedType, "resolve"));
|
|
2527
|
-
exports.Set("introspect", Napi::Function::New(env, GetTypeDefinition, "introspect"));
|
|
2528
|
-
|
|
2529
|
-
exports.Set("load", Napi::Function::New(env, LoadSharedLibrary, "load"));
|
|
2530
|
-
|
|
2531
|
-
exports.Set("in", Napi::Function::New(env, MarkIn, "in"));
|
|
2532
|
-
exports.Set("out", Napi::Function::New(env, MarkOut, "out"));
|
|
2533
|
-
exports.Set("inout", Napi::Function::New(env, MarkInOut, "inout"));
|
|
2534
|
-
|
|
2535
|
-
exports.Set("disposable", Napi::Function::New(env, CreateDisposableType, "disposable"));
|
|
2536
|
-
exports.Set("alloc", Napi::Function::New(env, CallAlloc, "alloc"));
|
|
2537
|
-
exports.Set("free", Napi::Function::New(env, CallFree, "free"));
|
|
2538
|
-
|
|
2539
|
-
exports.Set("register", Napi::Function::New(env, RegisterCallback, "register"));
|
|
2540
|
-
exports.Set("unregister", Napi::Function::New(env, UnregisterCallback, "unregister"));
|
|
2541
|
-
|
|
2542
|
-
exports.Set("as", Napi::Function::New(env, CastValue, "as"));
|
|
2543
|
-
exports.Set("decode", Napi::Function::New(env, DecodeValue, "decode"));
|
|
2544
|
-
exports.Set("address", Napi::Function::New(env, GetPointerAddress, "address"));
|
|
2545
|
-
exports.Set("call", Napi::Function::New(env, CallPointerSync, "call"));
|
|
2546
|
-
exports.Set("encode", Napi::Function::New(env, EncodeValue, "encode"));
|
|
2547
|
-
exports.Set("view", Napi::Function::New(env, CreateView, "view"));
|
|
2548
|
-
|
|
2549
|
-
exports.Set("reset", Napi::Function::New(env, ResetKoffi, "reset"));
|
|
2550
|
-
|
|
2551
|
-
exports.Set("errno", Napi::Function::New(env, GetOrSetErrNo, "errno"));
|
|
2552
|
-
|
|
2553
|
-
// Export useful OS info
|
|
2554
|
-
{
|
|
2555
|
-
Napi::Object os = Napi::Object::New(env);
|
|
2556
|
-
exports.Set("os", os);
|
|
2557
|
-
|
|
2558
|
-
Napi::Object codes = Napi::Object::New(env);
|
|
2559
|
-
|
|
2560
|
-
for (const ErrnoCodeInfo &info: ErrnoCodes) {
|
|
2561
|
-
codes.Set(info.name, Napi::Number::New(env, info.value));
|
|
2562
|
-
}
|
|
2563
|
-
|
|
2564
|
-
os.Set("errno", codes);
|
|
2565
|
-
}
|
|
2566
|
-
|
|
2567
|
-
#if defined(_WIN32)
|
|
2568
|
-
exports.Set("extension", Napi::String::New(env, ".dll"));
|
|
2569
|
-
#elif defined(__APPLE__)
|
|
2570
|
-
exports.Set("extension", Napi::String::New(env, ".dylib"));
|
|
2571
|
-
#else
|
|
2572
|
-
exports.Set("extension", Napi::String::New(env, ".so"));
|
|
2573
|
-
#endif
|
|
2574
|
-
|
|
2575
|
-
// Init base types
|
|
2576
|
-
{
|
|
2577
|
-
Napi::Object types = Napi::Object::New(env);
|
|
2578
|
-
exports.Set("types", types);
|
|
2579
|
-
|
|
2580
|
-
RegisterPrimitiveType(env, types, {"void"}, PrimitiveKind::Void, 0, 0);
|
|
2581
|
-
RegisterPrimitiveType(env, types, {"bool"}, PrimitiveKind::Bool, K_SIZE(bool), alignof(bool));
|
|
2582
|
-
RegisterPrimitiveType(env, types, {"int8_t", "int8"}, PrimitiveKind::Int8, 1, 1);
|
|
2583
|
-
RegisterPrimitiveType(env, types, {"uint8_t", "uint8"}, PrimitiveKind::UInt8, 1, 1);
|
|
2584
|
-
RegisterPrimitiveType(env, types, {"char"}, PrimitiveKind::Int8, 1, 1);
|
|
2585
|
-
RegisterPrimitiveType(env, types, {"unsigned char", "uchar"}, PrimitiveKind::UInt8, 1, 1);
|
|
2586
|
-
RegisterPrimitiveType(env, types, {"char16_t", "char16"}, PrimitiveKind::Int16, 2, 2);
|
|
2587
|
-
RegisterPrimitiveType(env, types, {"char32_t", "char32"}, PrimitiveKind::Int32, 4, 4);
|
|
2588
|
-
if (K_SIZE(wchar_t) == 2) {
|
|
2589
|
-
RegisterPrimitiveType(env, types, {"wchar_t", "wchar"}, PrimitiveKind::Int16, 2, 2);
|
|
2590
|
-
} else if (K_SIZE(wchar_t) == 4) {
|
|
2591
|
-
RegisterPrimitiveType(env, types, {"wchar_t", "wchar"}, PrimitiveKind::Int32, 4, 4);
|
|
2592
|
-
}
|
|
2593
|
-
RegisterPrimitiveType(env, types, {"int16_t", "int16"}, PrimitiveKind::Int16, 2, 2);
|
|
2594
|
-
RegisterPrimitiveType(env, types, {"int16_le_t", "int16_le"}, GetLittleEndianPrimitive(PrimitiveKind::Int16), 2, 2);
|
|
2595
|
-
RegisterPrimitiveType(env, types, {"int16_be_t", "int16_be"}, GetBigEndianPrimitive(PrimitiveKind::Int16), 2, 2);
|
|
2596
|
-
RegisterPrimitiveType(env, types, {"uint16_t", "uint16"}, PrimitiveKind::UInt16, 2, 2);
|
|
2597
|
-
RegisterPrimitiveType(env, types, {"uint16_le_t", "uint16_le"}, GetLittleEndianPrimitive(PrimitiveKind::UInt16), 2, 2);
|
|
2598
|
-
RegisterPrimitiveType(env, types, {"uint16_be_t", "uint16_be"}, GetBigEndianPrimitive(PrimitiveKind::UInt16), 2, 2);
|
|
2599
|
-
RegisterPrimitiveType(env, types, {"short"}, PrimitiveKind::Int16, 2, 2);
|
|
2600
|
-
RegisterPrimitiveType(env, types, {"unsigned short", "ushort"}, PrimitiveKind::UInt16, 2, 2);
|
|
2601
|
-
RegisterPrimitiveType(env, types, {"int32_t", "int32"}, PrimitiveKind::Int32, 4, 4);
|
|
2602
|
-
RegisterPrimitiveType(env, types, {"int32_le_t", "int32_le"}, GetLittleEndianPrimitive(PrimitiveKind::Int32), 4, 4);
|
|
2603
|
-
RegisterPrimitiveType(env, types, {"int32_be_t", "int32_be"}, GetBigEndianPrimitive(PrimitiveKind::Int32), 4, 4);
|
|
2604
|
-
RegisterPrimitiveType(env, types, {"uint32_t", "uint32"}, PrimitiveKind::UInt32, 4, 4);
|
|
2605
|
-
RegisterPrimitiveType(env, types, {"uint32_le_t", "uint32_le"}, GetLittleEndianPrimitive(PrimitiveKind::UInt32), 4, 4);
|
|
2606
|
-
RegisterPrimitiveType(env, types, {"uint32_be_t", "uint32_be"}, GetBigEndianPrimitive(PrimitiveKind::UInt32), 4, 4);
|
|
2607
|
-
RegisterPrimitiveType(env, types, {"int"}, PrimitiveKind::Int32, 4, 4);
|
|
2608
|
-
RegisterPrimitiveType(env, types, {"unsigned int", "uint"}, PrimitiveKind::UInt32, 4, 4);
|
|
2609
|
-
RegisterPrimitiveType(env, types, {"int64_t", "int64"}, PrimitiveKind::Int64, 8, alignof(int64_t));
|
|
2610
|
-
RegisterPrimitiveType(env, types, {"int64_le_t", "int64_le"}, GetLittleEndianPrimitive(PrimitiveKind::Int64), 8, alignof(int64_t));
|
|
2611
|
-
RegisterPrimitiveType(env, types, {"int64_be_t", "int64_be"}, GetBigEndianPrimitive(PrimitiveKind::Int64), 8, alignof(int64_t));
|
|
2612
|
-
RegisterPrimitiveType(env, types, {"uint64_t", "uint64"}, PrimitiveKind::UInt64, 8, alignof(int64_t));
|
|
2613
|
-
RegisterPrimitiveType(env, types, {"uint64_le_t", "uint64_le"}, GetLittleEndianPrimitive(PrimitiveKind::UInt64), 8, alignof(int64_t));
|
|
2614
|
-
RegisterPrimitiveType(env, types, {"uint64_be_t", "uint64_be"}, GetBigEndianPrimitive(PrimitiveKind::UInt64), 8, alignof(int64_t));
|
|
2615
|
-
RegisterPrimitiveType(env, types, {"intptr_t", "intptr"}, GetSignPrimitive(K_SIZE(intptr_t), true), K_SIZE(intptr_t), alignof(intptr_t));
|
|
2616
|
-
RegisterPrimitiveType(env, types, {"uintptr_t", "uintptr"}, GetSignPrimitive(K_SIZE(intptr_t), false), K_SIZE(intptr_t), alignof(intptr_t));
|
|
2617
|
-
RegisterPrimitiveType(env, types, {"size_t"}, GetSignPrimitive(K_SIZE(size_t), false), K_SIZE(size_t), alignof(size_t));
|
|
2618
|
-
RegisterPrimitiveType(env, types, {"long"}, GetSignPrimitive(K_SIZE(long), true), K_SIZE(long), alignof(long));
|
|
2619
|
-
RegisterPrimitiveType(env, types, {"unsigned long", "ulong"}, GetSignPrimitive(K_SIZE(long), false), K_SIZE(long), alignof(long));
|
|
2620
|
-
RegisterPrimitiveType(env, types, {"long long", "longlong"}, PrimitiveKind::Int64, K_SIZE(int64_t), alignof(int64_t));
|
|
2621
|
-
RegisterPrimitiveType(env, types, {"unsigned long long", "ulonglong"}, PrimitiveKind::UInt64, K_SIZE(uint64_t), alignof(uint64_t));
|
|
2622
|
-
RegisterPrimitiveType(env, types, {"float", "float32"}, PrimitiveKind::Float32, 4, alignof(float));
|
|
2623
|
-
RegisterPrimitiveType(env, types, {"double", "float64"}, PrimitiveKind::Float64, 8, alignof(double));
|
|
2624
|
-
RegisterPrimitiveType(env, types, {"char *", "str", "string"}, PrimitiveKind::String, K_SIZE(void *), alignof(void *), "char");
|
|
2625
|
-
RegisterPrimitiveType(env, types, {"char16_t *", "char16 *", "str16", "string16"}, PrimitiveKind::String16, K_SIZE(void *), alignof(void *), "char16_t");
|
|
2626
|
-
RegisterPrimitiveType(env, types, {"char32_t *", "char32 *", "str32", "string32"}, PrimitiveKind::String32, K_SIZE(void *), alignof(void *), "char32_t");
|
|
2627
|
-
if (K_SIZE(wchar_t) == 2) {
|
|
2628
|
-
RegisterPrimitiveType(env, types, {"wchar_t *", "wchar *"}, PrimitiveKind::String16, K_SIZE(void *), alignof(void *), "wchar_t");
|
|
2629
|
-
} else if (K_SIZE(wchar_t) == 4) {
|
|
2630
|
-
RegisterPrimitiveType(env, types, {"wchar_t *", "wchar *"}, PrimitiveKind::String32, K_SIZE(void *), alignof(void *), "wchar_t");
|
|
2631
|
-
}
|
|
2632
|
-
|
|
2633
|
-
instance->void_type = instance->types_map.FindValue("void", nullptr);
|
|
2634
|
-
instance->char_type = instance->types_map.FindValue("char", nullptr);
|
|
2635
|
-
instance->char16_type = instance->types_map.FindValue("char16", nullptr);
|
|
2636
|
-
instance->char32_type = instance->types_map.FindValue("char32", nullptr);
|
|
2637
|
-
instance->str_type = instance->types_map.FindValue("char *", nullptr);
|
|
2638
|
-
instance->str16_type = instance->types_map.FindValue("char16_t *", nullptr);
|
|
2639
|
-
instance->str32_type = instance->types_map.FindValue("char32_t *", nullptr);
|
|
2640
|
-
|
|
2641
|
-
Napi::Symbol symbol = Napi::Symbol::New(env, "active");
|
|
2642
|
-
instance->active_symbol.Reset(symbol, 1);
|
|
2643
|
-
|
|
2644
|
-
instance->base_types_count = instance->types.count;
|
|
2645
|
-
}
|
|
2646
|
-
|
|
2647
|
-
// Expose internal Node stuff
|
|
2648
|
-
{
|
|
2649
|
-
Napi::Object node = Napi::Object::New(env);
|
|
2650
|
-
exports.Set("node", node);
|
|
2651
|
-
|
|
2652
|
-
Napi::External<void> external = Napi::External<void>::New(env, (napi_env)env);
|
|
2653
|
-
SetValueTag(external, instance->void_type);
|
|
2654
|
-
|
|
2655
|
-
node.Set("env", external);
|
|
2656
|
-
|
|
2657
|
-
node.Set("poll", Napi::Function::New(env, &Poll, "poll"));
|
|
2658
|
-
node.Set("PollHandle", PollHandle::Define(env));
|
|
2659
|
-
}
|
|
2660
|
-
|
|
2661
|
-
exports.Set("version", Napi::String::New(env, K_STRINGIFY(VERSION)));
|
|
2662
|
-
|
|
2663
|
-
napi_add_env_cleanup_hook(env, [](void *udata) {
|
|
2664
|
-
InstanceData *instance = (InstanceData *)udata;
|
|
2665
|
-
|
|
2666
|
-
if (instance->broker) {
|
|
2667
|
-
// This deadlocks if we try to do this when the module is destroyed, when
|
|
2668
|
-
// the InstanceData destructor runs, so run in the env cleanup hook instead,
|
|
2669
|
-
// where it seems to go okay.
|
|
2670
|
-
napi_release_threadsafe_function(instance->broker, napi_tsfn_abort);
|
|
2671
|
-
}
|
|
2672
|
-
}, instance);
|
|
2673
|
-
|
|
2674
|
-
return exports;
|
|
2675
|
-
}
|
|
2676
|
-
|
|
2677
|
-
InstanceData::~InstanceData()
|
|
2678
|
-
{
|
|
2679
|
-
for (InstanceMemory *mem: memories) {
|
|
2680
|
-
delete mem;
|
|
2681
|
-
}
|
|
2682
|
-
|
|
2683
|
-
// Clean-up leftover trampoline references
|
|
2684
|
-
{
|
|
2685
|
-
std::lock_guard<std::mutex> lock(shared.mutex);
|
|
2686
|
-
|
|
2687
|
-
for (int16_t idx = 0; idx < MaxTrampolines; idx++) {
|
|
2688
|
-
TrampolineInfo *trampoline = &shared.trampolines[idx];
|
|
2689
|
-
|
|
2690
|
-
if (trampoline->instance == this) {
|
|
2691
|
-
trampoline->instance = nullptr;
|
|
2692
|
-
trampoline->func.Reset();
|
|
2693
|
-
trampoline->recv.Reset();
|
|
2694
|
-
trampoline->used = false;
|
|
2695
|
-
}
|
|
2696
|
-
}
|
|
2697
|
-
}
|
|
2698
|
-
}
|
|
2699
|
-
|
|
2700
|
-
NODE_API_MODULE(koffi, InitModule);
|
|
2701
|
-
|
|
2702
|
-
}
|