@entelligentsia/forgecli 0.7.9 → 0.7.10
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 +19 -0
- package/dist/CHANGELOG-forge-plugin.md +26 -0
- package/dist/bin/argv.d.ts +2 -2
- package/dist/bin/argv.js +12 -3
- package/dist/bin/argv.js.map +1 -1
- package/dist/bin/doctor.d.ts +59 -0
- package/dist/bin/doctor.js +149 -0
- package/dist/bin/doctor.js.map +1 -0
- package/dist/bin/forge.js +13 -0
- package/dist/bin/forge.js.map +1 -1
- package/dist/extensions/forgecli/fix-bug.js +35 -110
- package/dist/extensions/forgecli/fix-bug.js.map +1 -1
- package/dist/extensions/forgecli/index.js +28 -0
- package/dist/extensions/forgecli/index.js.map +1 -1
- package/dist/extensions/forgecli/review-command.d.ts +2 -0
- package/dist/extensions/forgecli/review-command.js +184 -0
- package/dist/extensions/forgecli/review-command.js.map +1 -0
- package/dist/extensions/forgecli/run-sprint.js +10 -0
- package/dist/extensions/forgecli/run-sprint.js.map +1 -1
- package/dist/extensions/forgecli/run-task.d.ts +1 -7
- package/dist/extensions/forgecli/run-task.js +30 -142
- package/dist/extensions/forgecli/run-task.js.map +1 -1
- package/dist/extensions/forgecli/session-registry.d.ts +68 -0
- package/dist/extensions/forgecli/session-registry.js +61 -0
- package/dist/extensions/forgecli/session-registry.js.map +1 -1
- package/dist/extensions/forgecli/thread-switcher.js +128 -9
- package/dist/extensions/forgecli/thread-switcher.js.map +1 -1
- package/dist/extensions/forgecli/viewport-events.d.ts +74 -0
- package/dist/extensions/forgecli/viewport-events.js +184 -0
- package/dist/extensions/forgecli/viewport-events.js.map +1 -0
- package/dist/extensions/forgecli/viewport-renderer.d.ts +55 -0
- package/dist/extensions/forgecli/viewport-renderer.js +204 -0
- package/dist/extensions/forgecli/viewport-renderer.js.map +1 -0
- package/dist/extensions/forgecli/viewport-theme.d.ts +11 -0
- package/dist/extensions/forgecli/viewport-theme.js +124 -0
- package/dist/extensions/forgecli/viewport-theme.js.map +1 -0
- package/dist/forge-payload/.base-pack/workflows/_fragments/store-cli-verbs.md +18 -2
- package/dist/forge-payload/.base-pack/workflows/orchestrate_task.md +21 -14
- package/dist/forge-payload/.claude-plugin/plugin.json +1 -1
- package/dist/forge-payload/.tools/banners.cjs +435 -0
- package/dist/forge-payload/.tools/build-context-pack.cjs +290 -0
- package/dist/forge-payload/.tools/build-init-context.cjs +322 -0
- package/dist/forge-payload/.tools/build-overlay.cjs +326 -0
- package/dist/forge-payload/.tools/build-persona-pack.cjs +226 -0
- package/dist/forge-payload/.tools/collate.cjs +1041 -0
- package/dist/forge-payload/.tools/generation-manifest.cjs +311 -0
- package/dist/forge-payload/.tools/lib/forge-root.cjs +59 -0
- package/dist/forge-payload/.tools/lib/paths.cjs +29 -0
- package/dist/forge-payload/.tools/lib/pricing.cjs +165 -0
- package/dist/forge-payload/.tools/lib/project-root.cjs +32 -0
- package/dist/forge-payload/.tools/lib/result.js +40 -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/manage-config.cjs +340 -0
- package/dist/forge-payload/.tools/manage-versions.cjs +365 -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/parse-verdict.cjs +67 -0
- package/dist/forge-payload/.tools/preflight-gate.cjs +350 -0
- package/dist/forge-payload/.tools/prompts/sprint-plan-prompt.md +70 -0
- package/dist/forge-payload/.tools/schemas/task-list.schema.json +53 -0
- package/dist/forge-payload/.tools/seed-store.cjs +237 -0
- package/dist/forge-payload/.tools/store-cli.cjs +1226 -0
- package/dist/forge-payload/.tools/store-query.cjs +319 -0
- package/dist/forge-payload/.tools/store.cjs +315 -0
- package/dist/forge-payload/.tools/substitute-placeholders.cjs +625 -0
- package/dist/forge-payload/.tools/validate-store.cjs +593 -0
- package/dist/forge-payload/skills/refresh-kb-links/SKILL.md +217 -0
- package/dist/forge-payload/skills/store-custodian/SKILL.md +163 -0
- package/dist/forge-payload/skills/store-query-grammar/SKILL.md +145 -0
- package/dist/forge-payload/skills/store-query-nlp/SKILL.md +110 -0
- package/dist/forge-payload/tools/lib/suggest.cjs +211 -0
- package/dist/forge-payload/tools/lib/validate.js +12 -2
- package/dist/forge-payload/tools/store-cli.cjs +192 -18
- package/dist/forge-payload/tools/validate-store.cjs +22 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js +9 -13
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.browser.js +5 -5
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.js +2 -3
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/BedrockRuntimeClient.js +1 -4
- 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/runtimeConfig.browser.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeExtensions.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/BedrockRuntimeClient.d.ts +1 -2
- 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 +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/BedrockRuntimeClient.d.ts +5 -7
- 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 +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/package.json +11 -19
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +595 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +715 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +588 -0
- package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.browser.js +36 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +26 -4
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.native.js +37 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.js +3 -0
- package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/check-features.js +1 -1
- package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/user-agent-middleware.js +1 -1
- package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/lib/aws/partition.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.browser.js +1 -0
- package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/nodeAppIdConfigOptions.js +1 -1
- package/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +3 -2
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +12 -14
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.browser.d.ts +47 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +38 -4
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.native.d.ts +48 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/lib/aws/partitions.d.ts +638 -0
- package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types → core/dist-types/submodules/client/util-user-agent-browser}/createUserAgentStringParsingProvider.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +0 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +65 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.browser.d.ts +116 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +123 -4
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.native.d.ts +116 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/lib/aws/partitions.d.ts +647 -0
- package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-browser}/createUserAgentStringParsingProvider.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/core/package.json +27 -8
- package/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-http/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-login/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-node/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-process/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +4 -4
- package/node_modules/@aws-sdk/eventstream-handler-node/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-eventstream/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-websocket/package.json +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +13 -20
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +13 -20
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +13 -20
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +13 -20
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +14 -21
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +1 -4
- 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/runtimeConfig.browser.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeExtensions.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +1 -4
- 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/runtimeConfig.browser.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js +1 -4
- 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/runtimeConfig.browser.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +1 -4
- 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/runtimeConfig.browser.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +1 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +1 -2
- 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/runtimeConfig.browser.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSOClient.d.ts +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/package.json +6 -14
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +3 -3
- package/node_modules/@aws-sdk/token-providers/package.json +4 -4
- package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
- package/node_modules/@earendil-works/pi-agent-core/package.json +2 -2
- package/node_modules/@earendil-works/pi-ai/package.json +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/index.d.ts +3 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/index.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/index.js +5 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/index.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/package-lock.json +2 -2
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/package.json +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/package-lock.json +2 -2
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/package.json +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/package.json +4 -4
- package/node_modules/@earendil-works/pi-tui/package.json +1 -1
- package/node_modules/@smithy/core/package.json +2 -2
- package/node_modules/@smithy/credential-provider-imds/package.json +3 -3
- package/node_modules/@smithy/fetch-http-handler/package.json +4 -4
- package/node_modules/@smithy/node-http-handler/package.json +4 -4
- package/node_modules/@smithy/signature-v4/package.json +3 -3
- package/node_modules/@smithy/types/README.md +3 -3
- package/node_modules/@smithy/types/dist-types/abort.d.ts +4 -6
- package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +6 -4
- package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +7 -10
- package/node_modules/@smithy/types/dist-types/checksum.d.ts +4 -6
- package/node_modules/@smithy/types/dist-types/client.d.ts +8 -8
- package/node_modules/@smithy/types/dist-types/command.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/crypto.d.ts +6 -8
- package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +6 -7
- package/node_modules/@smithy/types/dist-types/eventStream.d.ts +10 -10
- package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +9 -10
- package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +10 -10
- package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/http.d.ts +18 -21
- package/node_modules/@smithy/types/dist-types/logger.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/middleware.d.ts +28 -27
- package/node_modules/@smithy/types/dist-types/pagination.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/serde.d.ts +10 -10
- package/node_modules/@smithy/types/dist-types/shapes.d.ts +9 -12
- package/node_modules/@smithy/types/dist-types/signature.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/stream.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +7 -11
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +23 -29
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +9 -19
- package/node_modules/@smithy/types/dist-types/transfer.d.ts +2 -1
- package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +14 -18
- package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +12 -12
- package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +14 -9
- package/node_modules/@smithy/types/dist-types/uri.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/util.d.ts +28 -28
- package/node_modules/@smithy/types/package.json +1 -1
- package/node_modules/fast-xml-parser/CHANGELOG.md +7 -0
- package/node_modules/fast-xml-parser/README.md +0 -3
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +1 -1
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -1
- package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -1
- package/node_modules/fast-xml-parser/lib/fxp.d.cts +1 -0
- package/node_modules/fast-xml-parser/lib/fxp.min.js +1 -1
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -1
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +1 -1
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -1
- package/node_modules/fast-xml-parser/package.json +2 -4
- package/node_modules/fast-xml-parser/src/fxp.d.ts +1 -0
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +1 -1
- package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +4 -0
- package/package.json +7 -7
- package/skills/refresh-kb-links/SKILL.md +217 -0
- package/skills/store-custodian/SKILL.md +163 -0
- package/skills/store-query-grammar/SKILL.md +145 -0
- package/skills/store-query-nlp/SKILL.md +110 -0
- package/node_modules/@aws-sdk/middleware-host-header/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-host-header/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +0 -41
- package/node_modules/@aws-sdk/middleware-host-header/package.json +0 -59
- package/node_modules/@aws-sdk/middleware-logger/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-logger/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +0 -48
- package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +0 -1
- package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +0 -1
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@aws-sdk/middleware-logger/package.json +0 -59
- package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +0 -17
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +0 -29
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.browser.js +0 -5
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +0 -33
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +0 -5
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +0 -66
- package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-user-agent/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +0 -194
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +0 -61
- package/node_modules/@aws-sdk/region-config-resolver/LICENSE +0 -201
- package/node_modules/@aws-sdk/region-config-resolver/README.md +0 -19
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +0 -38
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.browser.js +0 -6
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +0 -19
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +0 -6
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +0 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-sdk/region-config-resolver/package.json +0 -64
- package/node_modules/@aws-sdk/util-endpoints/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-endpoints/README.md +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +0 -406
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +0 -267
- package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +0 -3
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +0 -267
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +0 -3
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +0 -3
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/package.json +0 -59
- package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-user-agent-browser/README.md +0 -29
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +0 -24
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.browser.js +0 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +0 -61
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +0 -22
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.browser.js +0 -1
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.browser.d.ts +0 -1
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.browser.d.ts +0 -1
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +0 -60
- package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-user-agent-node/README.md +0 -17
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +0 -185
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +0 -68
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/execution-env.d.ts +0 -4
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/execution-env.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/execution-env.js +0 -3
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/execution-env.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/jsonl.d.ts +0 -20
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/jsonl.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/jsonl.js +0 -92
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/jsonl.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/memory.d.ts +0 -18
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/memory.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/memory.js +0 -42
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/memory.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/shared.d.ts +0 -10
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/shared.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/shared.js +0 -31
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/shared.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/jsonl.d.ts +0 -30
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/jsonl.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/jsonl.js +0 -170
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/jsonl.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/memory.d.ts +0 -26
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/memory.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/memory.js +0 -90
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/memory.js.map +0 -1
- package/skills/.gitkeep +0 -0
- /package/node_modules/@aws-sdk/{middleware-host-header/dist-es/index.js → core/dist-es/submodules/client/middleware-host-header/hostHeaderMiddleware.js} +0 -0
- /package/node_modules/@aws-sdk/{middleware-logger/dist-es → core/dist-es/submodules/client/middleware-logger}/loggerMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/configuration.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/getRecursionDetectionPlugin.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/configurations.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/constants.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/encode-features.js +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/awsRegionConfig.js +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/extensions/index.js → core/dist-es/submodules/client/region-config-resolver/extensions.js} +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.js +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/stsRegionDefaultResolver.js +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/aws.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/lib/aws/isVirtualHostableS3Bucket.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/lib/aws/parseArn.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/lib/isIpAddress.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/resolveDefaultAwsRegionalEndpointsConfig.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/resolveEndpoint.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/EndpointError.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/EndpointRuleObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/ErrorRuleObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/RuleSetObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/TreeRuleObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/shared.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es → core/dist-es/submodules/client/util-user-agent-browser}/configurations.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es → core/dist-es/submodules/client/util-user-agent-browser}/createUserAgentStringParsingProvider.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es/index.js → core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.js} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es/index.native.js → core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.native.js} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/crt-availability.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/defaultUserAgent.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getNodeModulesParentDirs.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getSanitizedDevTypeScriptVersion.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getSanitizedTypeScriptVersion.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getTypeScriptUserAgentPair.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/is-crt-available.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-host-header/dist-types/index.d.ts → core/dist-types/submodules/client/middleware-host-header/hostHeaderMiddleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-logger/dist-types → core/dist-types/submodules/client/middleware-logger}/loggerMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts → core/dist-types/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/check-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/encode-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/user-agent-middleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/regionConfig → core/dist-types/submodules/client/region-config-resolver}/awsRegionConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/extensions/index.d.ts → core/dist-types/submodules/client/region-config-resolver/extensions.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/regionConfig → core/dist-types/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/regionConfig → core/dist-types/submodules/client/region-config-resolver}/stsRegionDefaultResolver.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/regionConfig → core/dist-types/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/aws.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/parseArn.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/partition.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/isIpAddress.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/resolveDefaultAwsRegionalEndpointsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/resolveEndpoint.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/submodules/client/util-endpoints}/types/EndpointError.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/types/EndpointRuleObject.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/submodules/client/util-endpoints}/types/ErrorRuleObject.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/types/RuleSetObject.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/submodules/client/util-endpoints}/types/TreeRuleObject.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/types/shared.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types → core/dist-types/submodules/client/util-user-agent-browser}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/index.d.ts → core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/index.native.d.ts → core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.native.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/crt-availability.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/defaultUserAgent.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getNodeModulesParentDirs.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getSanitizedDevTypeScriptVersion.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getSanitizedTypeScriptVersion.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getTypeScriptUserAgentPair.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/is-crt-available.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/nodeAppIdConfigOptions.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-host-header/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/client/middleware-host-header/hostHeaderMiddleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-logger/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-logger}/loggerMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/check-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/encode-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/user-agent-middleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/regionConfig → core/dist-types/ts3.4/submodules/client/region-config-resolver}/awsRegionConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/extensions/index.d.ts → core/dist-types/ts3.4/submodules/client/region-config-resolver/extensions.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/regionConfig → core/dist-types/ts3.4/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/regionConfig → core/dist-types/ts3.4/submodules/client/region-config-resolver}/stsRegionDefaultResolver.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/regionConfig → core/dist-types/ts3.4/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/aws.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/parseArn.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/partition.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/isIpAddress.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/resolveDefaultAwsRegionalEndpointsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/resolveEndpoint.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/ts3.4/submodules/client/util-endpoints}/types/EndpointError.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/types/EndpointRuleObject.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/ts3.4/submodules/client/util-endpoints}/types/ErrorRuleObject.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/types/RuleSetObject.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/ts3.4/submodules/client/util-endpoints}/types/TreeRuleObject.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/types/shared.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-browser}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4/index.native.d.ts → core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.native.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/crt-availability.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/defaultUserAgent.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getNodeModulesParentDirs.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getSanitizedDevTypeScriptVersion.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getSanitizedTypeScriptVersion.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getTypeScriptUserAgentPair.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/is-crt-available.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/nodeAppIdConfigOptions.d.ts +0 -0
|
@@ -3,12 +3,11 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export type SourceData = string | ArrayBuffer | ArrayBufferView;
|
|
5
5
|
/**
|
|
6
|
-
* @public
|
|
7
|
-
*
|
|
8
6
|
* An object that provides a hash of data provided in chunks to `update`. The
|
|
9
7
|
* hash may be performed incrementally as chunks are received or all at once
|
|
10
8
|
* when the hash is finalized, depending on the underlying implementation.
|
|
11
9
|
*
|
|
10
|
+
* @public
|
|
12
11
|
* @deprecated use {@link Checksum}
|
|
13
12
|
*/
|
|
14
13
|
export interface Hash {
|
|
@@ -28,32 +27,31 @@ export interface Hash {
|
|
|
28
27
|
digest(): Promise<Uint8Array>;
|
|
29
28
|
}
|
|
30
29
|
/**
|
|
31
|
-
* @public
|
|
32
|
-
*
|
|
33
30
|
* A constructor for a hash that may be used to calculate an HMAC. Implementing
|
|
34
31
|
* classes should not directly hold the provided key in memory beyond the
|
|
35
32
|
* lexical scope of the constructor.
|
|
36
33
|
*
|
|
34
|
+
* @public
|
|
37
35
|
* @deprecated use {@link ChecksumConstructor}
|
|
38
36
|
*/
|
|
39
37
|
export interface HashConstructor {
|
|
40
38
|
new (secret?: SourceData): Hash;
|
|
41
39
|
}
|
|
42
40
|
/**
|
|
43
|
-
* @public
|
|
44
|
-
*
|
|
45
41
|
* A function that calculates the hash of a data stream. Determining the hash
|
|
46
42
|
* will consume the stream, so only replayable streams should be provided to an
|
|
47
43
|
* implementation of this interface.
|
|
44
|
+
*
|
|
45
|
+
* @public
|
|
48
46
|
*/
|
|
49
47
|
export interface StreamHasher<StreamType = any> {
|
|
50
48
|
(hashCtor: HashConstructor, stream: StreamType): Promise<Uint8Array>;
|
|
51
49
|
}
|
|
52
50
|
/**
|
|
53
|
-
* @public
|
|
54
|
-
*
|
|
55
51
|
* A function that returns a promise fulfilled with bytes from a
|
|
56
52
|
* cryptographically secure pseudorandom number generator.
|
|
53
|
+
*
|
|
54
|
+
* @public
|
|
57
55
|
*/
|
|
58
56
|
export interface randomValues {
|
|
59
57
|
(byteLength: number): Promise<Uint8Array>;
|
|
@@ -1,23 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @public
|
|
3
|
-
*
|
|
4
2
|
* Transforms any members of the object T having type FromType
|
|
5
3
|
* to ToType. This applies only to exact type matches.
|
|
6
|
-
*
|
|
7
4
|
* This is for the case where FromType is a union and only those fields
|
|
8
5
|
* matching the same union should be transformed.
|
|
6
|
+
*
|
|
7
|
+
* @public
|
|
9
8
|
*/
|
|
10
9
|
export type Transform<T, FromType, ToType> = RecursiveTransformExact<T, FromType, ToType>;
|
|
11
10
|
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*
|
|
14
11
|
* Returns ToType if T matches exactly with FromType.
|
|
12
|
+
*
|
|
13
|
+
* @internal
|
|
15
14
|
*/
|
|
16
15
|
type TransformExact<T, FromType, ToType> = [T] extends [FromType] ? ([FromType] extends [T] ? ToType : T) : T;
|
|
17
16
|
/**
|
|
18
|
-
* @internal
|
|
19
|
-
*
|
|
20
17
|
* Applies TransformExact to members of an object recursively.
|
|
18
|
+
*
|
|
19
|
+
* @internal
|
|
21
20
|
*/
|
|
22
21
|
type RecursiveTransformExact<T, FromType, ToType> = T extends Function ? T : T extends object ? {
|
|
23
22
|
[key in keyof T]: [T[key]] extends [FromType] ? [FromType] extends [T[key]] ? ToType : RecursiveTransformExact<T[key], FromType, ToType> : RecursiveTransformExact<T[key], FromType, ToType>;
|
|
@@ -2,11 +2,11 @@ import type { HttpRequest } from "./http";
|
|
|
2
2
|
import type { FinalizeHandler, FinalizeHandlerArguments, FinalizeHandlerOutput, HandlerExecutionContext } from "./middleware";
|
|
3
3
|
import type { MetadataBearer } from "./response";
|
|
4
4
|
/**
|
|
5
|
-
* @public
|
|
6
|
-
*
|
|
7
5
|
* An event stream message. The headers and body properties will always be
|
|
8
6
|
* defined, with empty headers represented as an object with no keys and an
|
|
9
7
|
* empty body represented as a zero-length Uint8Array.
|
|
8
|
+
*
|
|
9
|
+
* @public
|
|
10
10
|
*/
|
|
11
11
|
export interface Message {
|
|
12
12
|
headers: MessageHeaders;
|
|
@@ -72,34 +72,34 @@ export interface Int64 {
|
|
|
72
72
|
toString: () => string;
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
|
-
* @public
|
|
76
|
-
*
|
|
77
75
|
* Util functions for serializing or deserializing event stream
|
|
76
|
+
*
|
|
77
|
+
* @public
|
|
78
78
|
*/
|
|
79
79
|
export interface EventStreamSerdeContext {
|
|
80
80
|
eventStreamMarshaller: EventStreamMarshaller;
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
|
-
* @public
|
|
84
|
-
*
|
|
85
83
|
* A function which deserializes binary event stream message into modeled shape.
|
|
84
|
+
*
|
|
85
|
+
* @public
|
|
86
86
|
*/
|
|
87
87
|
export interface EventStreamMarshallerDeserFn<StreamType> {
|
|
88
88
|
<T>(body: StreamType, deserializer: (input: Record<string, Message>) => Promise<T>): AsyncIterable<T>;
|
|
89
89
|
}
|
|
90
90
|
/**
|
|
91
|
-
* @public
|
|
92
|
-
*
|
|
93
91
|
* A function that serializes modeled shape into binary stream message.
|
|
92
|
+
*
|
|
93
|
+
* @public
|
|
94
94
|
*/
|
|
95
95
|
export interface EventStreamMarshallerSerFn<StreamType> {
|
|
96
96
|
<T>(input: AsyncIterable<T>, serializer: (event: T) => Message): StreamType;
|
|
97
97
|
}
|
|
98
98
|
/**
|
|
99
|
-
* @public
|
|
100
|
-
*
|
|
101
99
|
* An interface which provides functions for serializing and deserializing binary event stream
|
|
102
100
|
* to/from corresponsing modeled shape.
|
|
101
|
+
*
|
|
102
|
+
* @public
|
|
103
103
|
*/
|
|
104
104
|
export interface EventStreamMarshaller<StreamType = any> {
|
|
105
105
|
deserialize: EventStreamMarshallerDeserFn<StreamType>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type ChecksumConfiguration } from "./checksum";
|
|
2
2
|
/**
|
|
3
|
-
* @deprecated will be replaced by DefaultExtensionConfiguration.
|
|
4
|
-
* @internal
|
|
5
|
-
*
|
|
6
3
|
* Default client configuration consisting various configurations for modifying a service client
|
|
4
|
+
*
|
|
5
|
+
* @internal
|
|
6
|
+
* @deprecated will be replaced by DefaultExtensionConfiguration.
|
|
7
7
|
*/
|
|
8
8
|
export interface DefaultClientConfiguration extends ChecksumConfiguration {
|
|
9
9
|
}
|
|
@@ -12,11 +12,10 @@ export interface DefaultClientConfiguration extends ChecksumConfiguration {
|
|
|
12
12
|
*/
|
|
13
13
|
type GetDefaultConfigurationType = (runtimeConfig: any) => DefaultClientConfiguration;
|
|
14
14
|
/**
|
|
15
|
-
* @deprecated moving to @smithy/smithy-client.
|
|
16
|
-
* @internal
|
|
17
|
-
*
|
|
18
15
|
* Helper function to resolve default client configuration from runtime config
|
|
19
16
|
*
|
|
17
|
+
* @internal
|
|
18
|
+
* @deprecated moving to @smithy/smithy-client.
|
|
20
19
|
*/
|
|
21
20
|
export declare const getDefaultClientConfiguration: GetDefaultConfigurationType;
|
|
22
21
|
/**
|
|
@@ -24,10 +23,10 @@ export declare const getDefaultClientConfiguration: GetDefaultConfigurationType;
|
|
|
24
23
|
*/
|
|
25
24
|
type ResolveDefaultRuntimeConfigType = (clientConfig: DefaultClientConfiguration) => any;
|
|
26
25
|
/**
|
|
27
|
-
* @deprecated moving to @smithy/smithy-client.
|
|
28
|
-
* @internal
|
|
29
|
-
*
|
|
30
26
|
* Helper function to resolve runtime config from default client configuration
|
|
27
|
+
*
|
|
28
|
+
* @internal
|
|
29
|
+
* @deprecated moving to @smithy/smithy-client.
|
|
31
30
|
*/
|
|
32
31
|
export declare const resolveDefaultRuntimeConfig: ResolveDefaultRuntimeConfigType;
|
|
33
32
|
export {};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { ChecksumConfiguration } from "./checksum";
|
|
2
2
|
import type { RetryStrategyConfiguration } from "./retry";
|
|
3
3
|
/**
|
|
4
|
-
* @internal
|
|
5
|
-
*
|
|
6
4
|
* Default extension configuration consisting various configurations for modifying a service client
|
|
5
|
+
*
|
|
6
|
+
* @internal
|
|
7
7
|
*/
|
|
8
8
|
export interface DefaultExtensionConfiguration extends ChecksumConfiguration, RetryStrategyConfiguration {
|
|
9
9
|
}
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
import type { Exact } from "../transform/exact";
|
|
2
2
|
/**
|
|
3
|
-
* @public
|
|
4
|
-
*
|
|
5
3
|
* A checked type that resolves to Blob if it is defined as more than a stub, otherwise
|
|
6
4
|
* resolves to 'never' so as not to widen the type of unions containing Blob
|
|
7
5
|
* excessively.
|
|
6
|
+
*
|
|
7
|
+
* @public
|
|
8
8
|
*/
|
|
9
9
|
export type BlobOptionalType = BlobDefined extends true ? Blob : Unavailable;
|
|
10
10
|
/**
|
|
11
|
-
* @public
|
|
12
|
-
*
|
|
13
11
|
* A checked type that resolves to ReadableStream if it is defined as more than a stub, otherwise
|
|
14
12
|
* resolves to 'never' so as not to widen the type of unions containing ReadableStream
|
|
15
13
|
* excessively.
|
|
14
|
+
*
|
|
15
|
+
* @public
|
|
16
16
|
*/
|
|
17
17
|
export type ReadableStreamOptionalType = ReadableStreamDefined extends true ? ReadableStream : Unavailable;
|
|
18
18
|
/**
|
|
19
|
-
* @public
|
|
20
|
-
*
|
|
21
19
|
* Indicates a type is unavailable if it resolves to this.
|
|
20
|
+
*
|
|
21
|
+
* @public
|
|
22
22
|
*/
|
|
23
23
|
export type Unavailable = never;
|
|
24
24
|
/**
|
|
25
|
-
* @internal
|
|
26
|
-
*
|
|
27
25
|
* Whether the global types define more than a stub for ReadableStream.
|
|
26
|
+
*
|
|
27
|
+
* @internal
|
|
28
28
|
*/
|
|
29
29
|
export type ReadableStreamDefined = Exact<ReadableStream, {}> extends true ? false : true;
|
|
30
30
|
/**
|
|
31
|
-
* @internal
|
|
32
|
-
*
|
|
33
31
|
* Whether the global types define more than a stub for Blob.
|
|
32
|
+
*
|
|
33
|
+
* @internal
|
|
34
34
|
*/
|
|
35
35
|
export type BlobDefined = Exact<Blob, {}> extends true ? false : true;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Agent as hAgent, AgentOptions as hAgentOptions } from "http";
|
|
2
|
-
import type { Agent as hsAgent, AgentOptions as hsAgentOptions } from "https";
|
|
1
|
+
import type { Agent as hAgent, AgentOptions as hAgentOptions } from "node:http";
|
|
2
|
+
import type { Agent as hsAgent, AgentOptions as hsAgentOptions } from "node:https";
|
|
3
3
|
import type { HttpRequest as IHttpRequest } from "../http";
|
|
4
4
|
import type { Logger } from "../logger";
|
|
5
5
|
/**
|
|
@@ -14,40 +14,40 @@ export interface Endpoint {
|
|
|
14
14
|
headers?: HeaderBag;
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* @public
|
|
18
|
-
*
|
|
19
17
|
* Interface an HTTP request class. Contains
|
|
20
18
|
* addressing information in addition to standard message properties.
|
|
19
|
+
*
|
|
20
|
+
* @public
|
|
21
21
|
*/
|
|
22
22
|
export interface HttpRequest extends HttpMessage, URI {
|
|
23
23
|
method: string;
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
|
-
* @public
|
|
27
|
-
*
|
|
28
26
|
* Represents an HTTP message as received in reply to a request. Contains a
|
|
29
27
|
* numeric status code in addition to standard message properties.
|
|
28
|
+
*
|
|
29
|
+
* @public
|
|
30
30
|
*/
|
|
31
31
|
export interface HttpResponse extends HttpMessage {
|
|
32
32
|
statusCode: number;
|
|
33
33
|
reason?: string;
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
|
-
* @public
|
|
37
|
-
*
|
|
38
36
|
* Represents an HTTP message with headers and an optional static or streaming
|
|
39
37
|
* body. body: ArrayBuffer | ArrayBufferView | string | Uint8Array | Readable | ReadableStream;
|
|
38
|
+
*
|
|
39
|
+
* @public
|
|
40
40
|
*/
|
|
41
41
|
export interface HttpMessage {
|
|
42
42
|
headers: HeaderBag;
|
|
43
43
|
body?: any;
|
|
44
44
|
}
|
|
45
45
|
/**
|
|
46
|
-
* @public
|
|
47
|
-
*
|
|
48
46
|
* A mapping of query parameter names to strings or arrays of strings, with the
|
|
49
47
|
* second being used when a parameter contains a list of values. Value can be set
|
|
50
48
|
* to null when query is not in key-value pairs shape
|
|
49
|
+
*
|
|
50
|
+
* @public
|
|
51
51
|
*/
|
|
52
52
|
export type QueryParameterBag = Record<string, string | Array<string> | null>;
|
|
53
53
|
/**
|
|
@@ -66,42 +66,39 @@ export declare enum FieldPosition {
|
|
|
66
66
|
TRAILER = 1
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
|
-
* @public
|
|
70
|
-
*
|
|
71
69
|
* A mapping of header names to string values. Multiple values for the same
|
|
72
70
|
* header should be represented as a single string with values separated by
|
|
73
71
|
* `, `.
|
|
74
|
-
*
|
|
75
72
|
* Keys should be considered case insensitive, even if this is not enforced by a
|
|
76
73
|
* particular implementation. For example, given the following HeaderBag, where
|
|
77
74
|
* keys differ only in case:
|
|
78
|
-
*
|
|
79
75
|
* ```json
|
|
80
|
-
*
|
|
81
|
-
*
|
|
82
|
-
*
|
|
83
|
-
*
|
|
76
|
+
* {
|
|
77
|
+
* 'x-request-date': '2000-01-01T00:00:00Z',
|
|
78
|
+
* 'X-Request-Date': '2001-01-01T00:00:00Z'
|
|
79
|
+
* }
|
|
84
80
|
* ```
|
|
85
|
-
*
|
|
86
81
|
* The SDK may at any point during processing remove one of the object
|
|
87
82
|
* properties in favor of the other. The headers may or may not be combined, and
|
|
88
83
|
* the SDK will not deterministically select which header candidate to use.
|
|
84
|
+
*
|
|
85
|
+
* @public
|
|
89
86
|
*/
|
|
90
87
|
export type HeaderBag = Record<string, string>;
|
|
91
88
|
/**
|
|
92
|
-
* @public
|
|
93
|
-
*
|
|
94
89
|
* Represents an HTTP message with headers and an optional static or streaming
|
|
95
90
|
* body. bode: ArrayBuffer | ArrayBufferView | string | Uint8Array | Readable | ReadableStream;
|
|
91
|
+
*
|
|
92
|
+
* @public
|
|
96
93
|
*/
|
|
97
94
|
export interface HttpMessage {
|
|
98
95
|
headers: HeaderBag;
|
|
99
96
|
body?: any;
|
|
100
97
|
}
|
|
101
98
|
/**
|
|
102
|
-
* @public
|
|
103
|
-
*
|
|
104
99
|
* Represents the options that may be passed to an Http Handler.
|
|
100
|
+
*
|
|
101
|
+
* @public
|
|
105
102
|
*/
|
|
106
103
|
export interface HttpHandlerOptions {
|
|
107
104
|
abortSignal?: AbortSignal | DeprecatedAbortSignal;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { AuthScheme, HttpAuthDefinition } from "./auth/auth";
|
|
2
1
|
import type { SelectedHttpAuthScheme } from "./auth/HttpAuthScheme";
|
|
2
|
+
import type { AuthScheme, HttpAuthDefinition } from "./auth/auth";
|
|
3
3
|
import type { Command } from "./command";
|
|
4
4
|
import type { EndpointV2 } from "./endpoint";
|
|
5
5
|
import type { SmithyFeatures } from "./feature-ids";
|
|
@@ -137,10 +137,10 @@ export interface DeserializeHandler<Input extends object, Output extends object>
|
|
|
137
137
|
(args: DeserializeHandlerArguments<Input>): Promise<DeserializeHandlerOutput<Output>>;
|
|
138
138
|
}
|
|
139
139
|
/**
|
|
140
|
-
* @public
|
|
141
|
-
*
|
|
142
140
|
* A factory function that creates functions implementing the `Handler`
|
|
143
141
|
* interface.
|
|
142
|
+
*
|
|
143
|
+
* @public
|
|
144
144
|
*/
|
|
145
145
|
export interface InitializeMiddleware<Input extends object, Output extends object> {
|
|
146
146
|
/**
|
|
@@ -152,10 +152,10 @@ export interface InitializeMiddleware<Input extends object, Output extends objec
|
|
|
152
152
|
(next: InitializeHandler<Input, Output>, context: HandlerExecutionContext): InitializeHandler<Input, Output>;
|
|
153
153
|
}
|
|
154
154
|
/**
|
|
155
|
-
* @public
|
|
156
|
-
*
|
|
157
155
|
* A factory function that creates functions implementing the `BuildHandler`
|
|
158
156
|
* interface.
|
|
157
|
+
*
|
|
158
|
+
* @public
|
|
159
159
|
*/
|
|
160
160
|
export interface SerializeMiddleware<Input extends object, Output extends object> {
|
|
161
161
|
/**
|
|
@@ -167,10 +167,10 @@ export interface SerializeMiddleware<Input extends object, Output extends object
|
|
|
167
167
|
(next: SerializeHandler<Input, Output>, context: HandlerExecutionContext): SerializeHandler<Input, Output>;
|
|
168
168
|
}
|
|
169
169
|
/**
|
|
170
|
-
* @public
|
|
171
|
-
*
|
|
172
170
|
* A factory function that creates functions implementing the `FinalizeHandler`
|
|
173
171
|
* interface.
|
|
172
|
+
*
|
|
173
|
+
* @public
|
|
174
174
|
*/
|
|
175
175
|
export interface FinalizeRequestMiddleware<Input extends object, Output extends object> {
|
|
176
176
|
/**
|
|
@@ -198,10 +198,10 @@ export interface DeserializeMiddleware<Input extends object, Output extends obje
|
|
|
198
198
|
*/
|
|
199
199
|
export type MiddlewareType<Input extends object, Output extends object> = InitializeMiddleware<Input, Output> | SerializeMiddleware<Input, Output> | BuildMiddleware<Input, Output> | FinalizeRequestMiddleware<Input, Output> | DeserializeMiddleware<Input, Output>;
|
|
200
200
|
/**
|
|
201
|
-
* @public
|
|
202
|
-
*
|
|
203
201
|
* A factory function that creates the terminal handler atop which a middleware
|
|
204
202
|
* stack sits.
|
|
203
|
+
*
|
|
204
|
+
* @public
|
|
205
205
|
*/
|
|
206
206
|
export interface Terminalware {
|
|
207
207
|
<Input extends object, Output extends object>(context: HandlerExecutionContext): DeserializeHandler<Input, Output>;
|
|
@@ -258,10 +258,11 @@ export interface HandlerOptions {
|
|
|
258
258
|
*/
|
|
259
259
|
name?: string;
|
|
260
260
|
/**
|
|
261
|
-
* @internal
|
|
262
261
|
* Aliases allows for middleware to be found by multiple names besides {@link HandlerOptions.name}.
|
|
263
262
|
* This allows for references to replaced middleware to continue working, e.g. replacing
|
|
264
263
|
* multiple auth-specific middleware with a single generic auth middleware.
|
|
264
|
+
*
|
|
265
|
+
* @internal
|
|
265
266
|
*/
|
|
266
267
|
aliases?: Array<string>;
|
|
267
268
|
/**
|
|
@@ -335,21 +336,21 @@ export interface DeserializeHandlerOptions extends HandlerOptions {
|
|
|
335
336
|
step: "deserialize";
|
|
336
337
|
}
|
|
337
338
|
/**
|
|
338
|
-
* @public
|
|
339
|
-
*
|
|
340
339
|
* A stack storing middleware. It can be resolved into a handler. It supports 2
|
|
341
340
|
* approaches for adding middleware:
|
|
342
341
|
* 1. Adding middleware to specific step with `add()`. The order of middleware
|
|
343
|
-
*
|
|
344
|
-
*
|
|
345
|
-
*
|
|
342
|
+
* added into same step is determined by order of adding them. If one middleware
|
|
343
|
+
* needs to be executed at the front of the step or at the end of step, set
|
|
344
|
+
* `priority` options to `high` or `low`.
|
|
346
345
|
* 2. Adding middleware to location relative to known middleware with `addRelativeTo()`.
|
|
347
|
-
*
|
|
348
|
-
*
|
|
349
|
-
*
|
|
350
|
-
*
|
|
351
|
-
*
|
|
352
|
-
*
|
|
346
|
+
* This is useful when given middleware must be executed before or after specific
|
|
347
|
+
* middleware(`toMiddleware`). You can add a middleware relatively to another
|
|
348
|
+
* middleware which also added relatively. But eventually, this relative middleware
|
|
349
|
+
* chain **must** be 'anchored' by a middleware that added using `add()` API
|
|
350
|
+
* with absolute `step` and `priority`. This mothod will throw if specified
|
|
351
|
+
* `toMiddleware` is not found.
|
|
352
|
+
*
|
|
353
|
+
* @public
|
|
353
354
|
*/
|
|
354
355
|
export interface MiddlewareStack<Input extends object, Output extends object> extends Pluggable<Input, Output> {
|
|
355
356
|
/**
|
|
@@ -420,14 +421,13 @@ export interface MiddlewareStack<Input extends object, Output extends object> ex
|
|
|
420
421
|
*/
|
|
421
422
|
identify(): string[];
|
|
422
423
|
/**
|
|
423
|
-
* @internal
|
|
424
|
-
*
|
|
425
424
|
* When an operation is called using this stack,
|
|
426
425
|
* it will log its list of middleware to the console using
|
|
427
426
|
* the identify function.
|
|
427
|
+
* If no argument given, returns the current value.
|
|
428
428
|
*
|
|
429
|
+
* @internal
|
|
429
430
|
* @param toggle - set whether to log on resolve.
|
|
430
|
-
* If no argument given, returns the current value.
|
|
431
431
|
*/
|
|
432
432
|
identifyOnResolve(toggle?: boolean): boolean;
|
|
433
433
|
/**
|
|
@@ -447,10 +447,10 @@ export interface MiddlewareStack<Input extends object, Output extends object> ex
|
|
|
447
447
|
*/
|
|
448
448
|
export declare const SMITHY_CONTEXT_KEY = "__smithy_context";
|
|
449
449
|
/**
|
|
450
|
-
* @public
|
|
451
|
-
*
|
|
452
450
|
* Data and helper objects that are not expected to change from one execution of
|
|
453
451
|
* a composed handler to another.
|
|
452
|
+
*
|
|
453
|
+
* @public
|
|
454
454
|
*/
|
|
455
455
|
export interface HandlerExecutionContext {
|
|
456
456
|
/**
|
|
@@ -495,8 +495,9 @@ export interface HandlerExecutionContext {
|
|
|
495
495
|
overrideOutputFilterSensitiveLog(...args: any[]): string | void;
|
|
496
496
|
}>;
|
|
497
497
|
/**
|
|
498
|
-
* @internal
|
|
499
498
|
* Context for Smithy properties.
|
|
499
|
+
*
|
|
500
|
+
* @internal
|
|
500
501
|
*/
|
|
501
502
|
[SMITHY_CONTEXT_KEY]?: {
|
|
502
503
|
service?: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import type { Client } from "./client";
|
|
2
2
|
import type { Command } from "./command";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
|
-
*
|
|
6
4
|
* Expected type definition of a paginator.
|
|
5
|
+
*
|
|
6
|
+
* @public
|
|
7
7
|
*/
|
|
8
8
|
export type Paginator<T> = AsyncGenerator<T, undefined, unknown>;
|
|
9
9
|
/**
|
|
10
|
-
* @public
|
|
11
|
-
*
|
|
12
10
|
* Expected paginator configuration passed to an operation. Services will extend
|
|
13
11
|
* this interface definition and may type client further.
|
|
12
|
+
*
|
|
13
|
+
* @public
|
|
14
14
|
*/
|
|
15
15
|
export interface PaginationConfiguration {
|
|
16
16
|
client: Client<any, any, any>;
|
|
@@ -3,9 +3,9 @@ import type { $ClientProtocol } from "./schema/schema";
|
|
|
3
3
|
import type { RequestHandler } from "./transfer";
|
|
4
4
|
import type { Decoder, Encoder, Provider } from "./util";
|
|
5
5
|
/**
|
|
6
|
-
* @public
|
|
7
|
-
*
|
|
8
6
|
* Interface for object requires an Endpoint set.
|
|
7
|
+
*
|
|
8
|
+
* @public
|
|
9
9
|
*/
|
|
10
10
|
export interface EndpointBearer {
|
|
11
11
|
endpoint: Provider<Endpoint>;
|
|
@@ -22,9 +22,9 @@ export interface StreamCollector {
|
|
|
22
22
|
(stream: any): Promise<Uint8Array>;
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
|
-
* @public
|
|
26
|
-
*
|
|
27
25
|
* Request and Response serde util functions and settings for AWS services
|
|
26
|
+
*
|
|
27
|
+
* @public
|
|
28
28
|
*/
|
|
29
29
|
export interface SerdeContext extends SerdeFunctions, EndpointBearer {
|
|
30
30
|
requestHandler: RequestHandler<any, any>;
|
|
@@ -32,9 +32,9 @@ export interface SerdeContext extends SerdeFunctions, EndpointBearer {
|
|
|
32
32
|
protocol?: $ClientProtocol<any, any>;
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
|
-
* @public
|
|
36
|
-
*
|
|
37
35
|
* Serde functions from the client config.
|
|
36
|
+
*
|
|
37
|
+
* @public
|
|
38
38
|
*/
|
|
39
39
|
export interface SerdeFunctions {
|
|
40
40
|
base64Encoder: Encoder;
|
|
@@ -81,18 +81,18 @@ export interface SdkStreamMixin {
|
|
|
81
81
|
transformToWebStream: () => ReadableStream;
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
|
-
* @public
|
|
85
|
-
*
|
|
86
84
|
* The type describing a runtime-specific stream implementation with mix-in
|
|
87
85
|
* utility functions.
|
|
86
|
+
*
|
|
87
|
+
* @public
|
|
88
88
|
*/
|
|
89
89
|
export type SdkStream<BaseStream> = BaseStream & SdkStreamMixin;
|
|
90
90
|
/**
|
|
91
|
-
* @public
|
|
92
|
-
*
|
|
93
91
|
* Indicates that the member of type T with
|
|
94
92
|
* key StreamKey have been extended
|
|
95
93
|
* with the SdkStreamMixin helper methods.
|
|
94
|
+
*
|
|
95
|
+
* @public
|
|
96
96
|
*/
|
|
97
97
|
export type WithSdkStreamMixin<T, StreamKey extends keyof T> = {
|
|
98
98
|
[key in keyof T]: key extends StreamKey ? SdkStream<T[StreamKey]> : T[key];
|
|
@@ -1,23 +1,22 @@
|
|
|
1
1
|
import type { HttpResponse } from "./http";
|
|
2
2
|
import type { MetadataBearer } from "./response";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
|
-
*
|
|
6
4
|
* A document type represents an untyped JSON-like value.
|
|
7
|
-
*
|
|
8
5
|
* Not all protocols support document types, and the serialization format of a
|
|
9
6
|
* document type is protocol specific. All JSON protocols SHOULD support
|
|
10
7
|
* document types and they SHOULD serialize document types inline as normal
|
|
11
8
|
* JSON values.
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
12
11
|
*/
|
|
13
12
|
export type DocumentType = null | boolean | number | string | DocumentType[] | {
|
|
14
13
|
[prop: string]: DocumentType;
|
|
15
14
|
};
|
|
16
15
|
/**
|
|
17
|
-
* @public
|
|
18
|
-
*
|
|
19
16
|
* A structure shape with the error trait.
|
|
20
17
|
* https://smithy.io/2.0/spec/behavior-traits.html#smithy-api-retryable-trait
|
|
18
|
+
*
|
|
19
|
+
* @public
|
|
21
20
|
*/
|
|
22
21
|
export interface RetryableTrait {
|
|
23
22
|
/**
|
|
@@ -26,10 +25,10 @@ export interface RetryableTrait {
|
|
|
26
25
|
readonly throttling?: boolean;
|
|
27
26
|
}
|
|
28
27
|
/**
|
|
29
|
-
* @public
|
|
30
|
-
*
|
|
31
28
|
* Type that is implemented by all Smithy shapes marked with the
|
|
32
29
|
* error trait.
|
|
30
|
+
*
|
|
31
|
+
* @public
|
|
33
32
|
* @deprecated
|
|
34
33
|
*/
|
|
35
34
|
export interface SmithyException {
|
|
@@ -55,19 +54,17 @@ export interface SmithyException {
|
|
|
55
54
|
readonly $response?: HttpResponse;
|
|
56
55
|
}
|
|
57
56
|
/**
|
|
58
|
-
* @public
|
|
59
|
-
*
|
|
60
|
-
* @deprecated See {@link https://aws.amazon.com/blogs/developer/service-error-handling-modular-aws-sdk-js/}
|
|
61
|
-
*
|
|
62
57
|
* This type should not be used in your application.
|
|
63
58
|
* Users of the AWS SDK for JavaScript v3 service clients should prefer to
|
|
64
59
|
* use the specific Exception classes corresponding to each operation.
|
|
65
60
|
* These can be found as code in the deserializer for the operation's Command class,
|
|
66
61
|
* or as declarations in the service model file in codegen/sdk-codegen/aws-models.
|
|
67
|
-
*
|
|
68
62
|
* If no exceptions are enumerated by a particular Command operation,
|
|
69
63
|
* the base exception for the service should be used. Each client exports
|
|
70
64
|
* a base ServiceException prefixed with the service name.
|
|
65
|
+
*
|
|
66
|
+
* @public
|
|
67
|
+
* @deprecated See {@link https://aws.amazon.com/blogs/developer/service-error-handling-modular-aws-sdk-js/}
|
|
71
68
|
*/
|
|
72
69
|
export type SdkError = Error & Partial<SmithyException> & Partial<MetadataBearer> & {
|
|
73
70
|
$metadata?: Partial<MetadataBearer>["$metadata"] & {
|
|
@@ -2,10 +2,10 @@ import type { Message } from "./eventStream";
|
|
|
2
2
|
import type { HttpRequest } from "./http";
|
|
3
3
|
import type { AwsCredentialIdentity } from "./identity/awsCredentialIdentity";
|
|
4
4
|
/**
|
|
5
|
-
* @public
|
|
6
|
-
*
|
|
7
5
|
* A `Date` object, a unix (epoch) timestamp in seconds, or a string that can be
|
|
8
6
|
* understood by the JavaScript `Date` constructor.
|
|
7
|
+
*
|
|
8
|
+
* @public
|
|
9
9
|
*/
|
|
10
10
|
export type DateInput = number | string | Date;
|
|
11
11
|
/**
|
|
@@ -112,10 +112,10 @@ export interface RequestPresigner {
|
|
|
112
112
|
presign(requestToSign: HttpRequest, options?: RequestPresigningArguments): Promise<HttpRequest>;
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
115
|
-
* @public
|
|
116
|
-
*
|
|
117
115
|
* An object that signs request objects with AWS credentials using one of the
|
|
118
116
|
* AWS authentication protocols.
|
|
117
|
+
*
|
|
118
|
+
* @public
|
|
119
119
|
*/
|
|
120
120
|
export interface RequestSigner {
|
|
121
121
|
/**
|
|
@@ -12,10 +12,10 @@ export interface GetAwsChunkedEncodingStreamOptions {
|
|
|
12
12
|
streamHasher?: StreamHasher;
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
|
-
* @public
|
|
16
|
-
*
|
|
17
15
|
* A function that returns Readable Stream which follows aws-chunked encoding stream.
|
|
18
16
|
* It optionally adds checksum if options are provided.
|
|
17
|
+
*
|
|
18
|
+
* @public
|
|
19
19
|
*/
|
|
20
20
|
export interface GetAwsChunkedEncodingStream<StreamType = any> {
|
|
21
21
|
(readableStream: StreamType, options: GetAwsChunkedEncodingStreamOptions): StreamType;
|