@cdklabs/cdk-ssm-documents 0.0.51 → 0.0.53
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/.jsii +12 -12
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +2 -2
- package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +2 -2
- package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +1 -1
- package/node_modules/@aws/lambda-invoke-store/package.json +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/README.md +26 -46
- package/node_modules/@aws-sdk/client-cloudformation/package.json +34 -34
- package/node_modules/@aws-sdk/client-cloudwatch/README.md +87 -46
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +36 -36
- package/node_modules/@aws-sdk/client-ec2/README.md +26 -46
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +105 -62
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +51 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +8 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondarySubnetCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorSessionCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetsCommand.d.ts +8 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorSessionsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorTargetsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDefaultCreditSpecificationCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFleetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorSessionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +31 -43
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +40 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +31 -166
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +196 -88
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +87 -118
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +119 -160
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +160 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondarySubnetCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorSessionCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceImageMetadataCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorSessionsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorTargetsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorSessionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +5 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +8 -18
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +27 -18
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +17 -23
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +23 -40
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +38 -5
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +36 -36
- package/node_modules/@aws-sdk/client-iam/README.md +26 -46
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +10 -10
- package/node_modules/@aws-sdk/client-iam/package.json +35 -35
- package/node_modules/@aws-sdk/client-lambda/README.md +26 -46
- package/node_modules/@aws-sdk/client-lambda/package.json +38 -38
- package/node_modules/@aws-sdk/client-s3/README.md +26 -46
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +6 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +6 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +5 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +0 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +0 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +5 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +5 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +12 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +24 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/package.json +50 -50
- package/node_modules/@aws-sdk/client-sns/README.md +26 -46
- package/node_modules/@aws-sdk/client-sns/package.json +33 -33
- package/node_modules/@aws-sdk/client-sqs/README.md +65 -46
- package/node_modules/@aws-sdk/client-sqs/package.json +36 -36
- package/node_modules/@aws-sdk/client-ssm/README.md +26 -46
- package/node_modules/@aws-sdk/client-ssm/package.json +34 -34
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +4 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +4 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +3 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +1 -0
- package/node_modules/@aws-sdk/core/package.json +11 -11
- package/node_modules/@aws-sdk/crc64-nvme/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-http/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
- package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +19 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsResponseMiddleware.js +10 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getChecksumAlgorithmListForResponse.js +10 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +10 -10
- package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +8 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +11 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-ssec/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +9 -9
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +9 -9
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +8 -7
- package/node_modules/@aws-sdk/nested-clients/package.json +32 -32
- package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +6 -6
- package/node_modules/@aws-sdk/token-providers/package.json +7 -7
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/util-endpoints/package.json +5 -5
- package/node_modules/@aws-sdk/util-format-url/package.json +4 -4
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +10 -38
- package/node_modules/@aws-sdk/util-locate-window/package.json +11 -10
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +75 -19
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getNodeModulesParentDirs.js +15 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedDevTypeScriptVersion.js +14 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +53 -7
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/{getTypeScriptPackageJsonPaths.d.ts → getNodeModulesParentDirs.d.ts} +2 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedDevTypeScriptVersion.d.ts +8 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getNodeModulesParentDirs.d.ts +1 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedDevTypeScriptVersion.d.ts +3 -0
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +6 -5
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +21 -11
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +5 -1
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +8 -1
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +13 -10
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +5 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/CHANGELOG.md +40 -4
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/README.md +8 -7
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.cjs +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.d.cts +82 -20
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/pem.d.cts +148 -0
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/package.json +4 -3
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/fxp.d.ts +75 -19
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/pem.d.ts +135 -0
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/util.js +18 -0
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +37 -18
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +76 -5
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +298 -116
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +2 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/node2json.js +65 -15
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +9 -2
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +1 -1
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +12 -6
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/tests/strnum_test.js +3 -0
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/tests/temp.js +8 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -3
- package/node_modules/@smithy/abort-controller/package.json +2 -2
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +12 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +5 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +5 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +6 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +6 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +6 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +6 -0
- package/node_modules/@smithy/config-resolver/package.json +5 -5
- package/node_modules/@smithy/core/dist-cjs/index.js +1 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +7 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +22 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +11 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +41 -4
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +7 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +3 -2
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +30 -1
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +5 -1
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/toEndpointV1.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/toEndpointV1.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +6 -0
- package/node_modules/@smithy/core/endpoints.d.ts +7 -0
- package/node_modules/@smithy/core/endpoints.js +6 -0
- package/node_modules/@smithy/core/package.json +16 -7
- package/node_modules/@smithy/credential-provider-imds/package.json +5 -5
- package/node_modules/@smithy/eventstream-codec/package.json +2 -2
- package/node_modules/@smithy/eventstream-serde-browser/package.json +3 -3
- package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +2 -2
- package/node_modules/@smithy/eventstream-serde-node/package.json +3 -3
- package/node_modules/@smithy/eventstream-serde-universal/package.json +3 -3
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +4 -1
- package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +4 -1
- package/node_modules/@smithy/fetch-http-handler/package.json +5 -5
- package/node_modules/@smithy/hash-blob-browser/package.json +2 -2
- package/node_modules/@smithy/hash-node/package.json +2 -2
- package/node_modules/@smithy/hash-stream-node/package.json +2 -2
- package/node_modules/@smithy/invalid-dependency/package.json +2 -2
- package/node_modules/@smithy/md5-js/package.json +2 -2
- package/node_modules/@smithy/middleware-compression/package.json +6 -6
- package/node_modules/@smithy/middleware-content-length/package.json +3 -3
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +17 -1
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +9 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +8 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +2 -2
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +2 -2
- package/node_modules/@smithy/middleware-endpoint/package.json +8 -8
- package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +9 -12
- package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +9 -12
- package/node_modules/@smithy/middleware-retry/package.json +8 -8
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +3 -2
- package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +3 -2
- package/node_modules/@smithy/middleware-serde/package.json +4 -3
- package/node_modules/@smithy/middleware-stack/package.json +2 -2
- package/node_modules/@smithy/node-config-provider/package.json +4 -4
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +48 -38
- package/node_modules/@smithy/node-http-handler/dist-es/build-abort-error.js +4 -1
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +38 -31
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +6 -6
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/build-abort-error.d.ts +4 -3
- 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 +4 -4
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +1 -1
- 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/readable.mock.d.ts +2 -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-connection-timeout.d.ts +1 -1
- 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/set-socket-keep-alive.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/build-abort-error.d.ts +4 -3
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +4 -4
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +3 -3
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +2 -2
- 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 +5 -5
- package/node_modules/@smithy/property-provider/package.json +2 -2
- package/node_modules/@smithy/protocol-http/package.json +2 -2
- package/node_modules/@smithy/querystring-builder/package.json +2 -2
- package/node_modules/@smithy/querystring-parser/package.json +2 -2
- package/node_modules/@smithy/service-error-classification/package.json +2 -2
- package/node_modules/@smithy/shared-ini-file-loader/package.json +2 -2
- package/node_modules/@smithy/signature-v4/package.json +4 -4
- package/node_modules/@smithy/smithy-client/package.json +7 -7
- package/node_modules/@smithy/types/dist-types/http.d.ts +1 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +1 -0
- package/node_modules/@smithy/types/package.json +1 -1
- package/node_modules/@smithy/url-parser/package.json +3 -3
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +4 -4
- package/node_modules/@smithy/util-defaults-mode-node/package.json +7 -7
- package/node_modules/@smithy/util-endpoints/package.json +3 -3
- package/node_modules/@smithy/util-middleware/package.json +2 -2
- package/node_modules/@smithy/util-retry/package.json +3 -3
- package/node_modules/@smithy/util-stream/package.json +4 -4
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +1 -1
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +1 -1
- package/node_modules/@smithy/util-waiter/package.json +3 -3
- package/node_modules/bowser/README.md +74 -7
- package/node_modules/bowser/bundled.js +1 -1
- package/node_modules/bowser/es5.js +1 -1
- package/node_modules/bowser/index.d.ts +115 -12
- package/node_modules/bowser/package.json +17 -7
- package/node_modules/bowser/src/bowser.js +24 -8
- package/node_modules/bowser/src/constants.js +79 -18
- package/node_modules/bowser/src/parser-browsers.js +483 -0
- package/node_modules/bowser/src/parser-os.js +12 -0
- package/node_modules/bowser/src/parser-platforms.js +301 -1
- package/node_modules/bowser/src/parser.js +106 -10
- package/node_modules/bowser/src/utils.js +33 -15
- package/node_modules/deasync/.github/workflows/npm_test.yml +3 -3
- package/node_modules/deasync/bin/darwin-arm64-node-24/deasync.node +0 -0
- package/node_modules/deasync/bin/linux-x64-node-24/deasync.node +0 -0
- package/node_modules/deasync/bin/win32-x64-node-24/deasync.node +0 -0
- package/node_modules/deasync/package.json +1 -1
- package/node_modules/fast-xml-builder/CHANGELOG.md +16 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/README.md +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/lib/fxb.d.cts +22 -9
- package/node_modules/fast-xml-builder/lib/fxb.min.js +2 -0
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/package.json +7 -5
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/fxb.d.ts +27 -3
- package/node_modules/fast-xml-builder/src/fxb.js +529 -0
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +292 -0
- package/node_modules/path-expression-matcher/LICENSE +21 -0
- package/node_modules/path-expression-matcher/README.md +720 -0
- package/node_modules/path-expression-matcher/lib/pem.cjs +1 -0
- package/node_modules/path-expression-matcher/lib/pem.d.cts +523 -0
- package/node_modules/path-expression-matcher/lib/pem.min.js +2 -0
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -0
- package/node_modules/path-expression-matcher/package.json +78 -0
- package/node_modules/path-expression-matcher/src/Expression.js +232 -0
- package/node_modules/path-expression-matcher/src/Matcher.js +498 -0
- package/node_modules/path-expression-matcher/src/index.d.ts +518 -0
- package/node_modules/path-expression-matcher/src/index.js +28 -0
- package/package.json +10 -10
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/README.md +0 -4
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/package.json +0 -56
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/README.md +0 -4
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/package.json +0 -56
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/README.md +0 -4
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/package.json +0 -56
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/README.md +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/package.json +0 -56
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/README.md +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/package.json +0 -56
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/README.md +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/package.json +0 -56
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptPackageJsonPaths.js +0 -17
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getTypeScriptPackageJsonPaths.d.ts +0 -3
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/CHANGELOG.md +0 -0
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/builder.cjs +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/builder.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/builder.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/src/fxb.js +0 -285
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/src/orderedJs2Xml.js +0 -145
- package/node_modules/bowser/CHANGELOG.md +0 -218
- package/node_modules/deasync/build/Makefile +0 -354
- package/node_modules/deasync/build/Release/.deps/Release/deasync.node.d +0 -1
- package/node_modules/deasync/build/Release/.deps/Release/obj.target/deasync/src/deasync.o.d +0 -149
- package/node_modules/deasync/build/Release/.deps/Release/obj.target/deasync.node.d +0 -1
- package/node_modules/deasync/build/Release/obj.target/deasync/src/deasync.o +0 -0
- package/node_modules/deasync/build/Release/obj.target/deasync.node +0 -0
- package/node_modules/deasync/build/binding.Makefile +0 -6
- package/node_modules/deasync/build/config.gypi +0 -534
- package/node_modules/deasync/build/deasync.target.mk +0 -156
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/.github/SECURITY.md +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/.vscode/launch.json +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/algo.stflow +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/tests/infinity_test.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/LICENSE +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/ignoreAttributes.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/prettifyJs2Xml.js +0 -0
|
@@ -1,534 +0,0 @@
|
|
|
1
|
-
# Do not edit. File was generated by node-gyp's "configure" step
|
|
2
|
-
{
|
|
3
|
-
"variables": {
|
|
4
|
-
"use_ccache_win": 0,
|
|
5
|
-
"clang": 0,
|
|
6
|
-
"llvm_version": "0.0",
|
|
7
|
-
"gas_version": "2.38",
|
|
8
|
-
"node_prefix": "/",
|
|
9
|
-
"node_install_npm": "true",
|
|
10
|
-
"node_install_corepack": "true",
|
|
11
|
-
"control_flow_guard": "false",
|
|
12
|
-
"node_use_amaro": "true",
|
|
13
|
-
"debug_node": "false",
|
|
14
|
-
"error_on_warn": "false",
|
|
15
|
-
"suppress_all_error_on_warn": "false",
|
|
16
|
-
"use_prefix_to_find_headers": "false",
|
|
17
|
-
"host_arch": "x64",
|
|
18
|
-
"target_arch": "x64",
|
|
19
|
-
"node_byteorder": "little",
|
|
20
|
-
"want_separate_host_toolset": 0,
|
|
21
|
-
"node_use_node_snapshot": "true",
|
|
22
|
-
"node_use_node_code_cache": "true",
|
|
23
|
-
"node_write_snapshot_as_array_literals": "false",
|
|
24
|
-
"node_enable_v8_vtunejit": "false",
|
|
25
|
-
"enable_pgo_generate": "false",
|
|
26
|
-
"enable_pgo_use": "false",
|
|
27
|
-
"enable_lto": "false",
|
|
28
|
-
"single_executable_application": "true",
|
|
29
|
-
"node_with_ltcg": "false",
|
|
30
|
-
"node_tag": "",
|
|
31
|
-
"node_release_urlbase": "https://nodejs.org/download/release/",
|
|
32
|
-
"node_debug_lib": "false",
|
|
33
|
-
"debug_nghttp2": "false",
|
|
34
|
-
"node_no_browser_globals": "false",
|
|
35
|
-
"node_shared": "false",
|
|
36
|
-
"libdir": "lib",
|
|
37
|
-
"node_module_version": 137,
|
|
38
|
-
"shlib_suffix": "so.137",
|
|
39
|
-
"asan": 0,
|
|
40
|
-
"ubsan": 0,
|
|
41
|
-
"coverage": "false",
|
|
42
|
-
"node_target_type": "executable",
|
|
43
|
-
"node_library_files": [
|
|
44
|
-
"lib/_http_agent.js",
|
|
45
|
-
"lib/_http_client.js",
|
|
46
|
-
"lib/_http_common.js",
|
|
47
|
-
"lib/_http_incoming.js",
|
|
48
|
-
"lib/_http_outgoing.js",
|
|
49
|
-
"lib/_http_server.js",
|
|
50
|
-
"lib/_stream_duplex.js",
|
|
51
|
-
"lib/_stream_passthrough.js",
|
|
52
|
-
"lib/_stream_readable.js",
|
|
53
|
-
"lib/_stream_transform.js",
|
|
54
|
-
"lib/_stream_wrap.js",
|
|
55
|
-
"lib/_stream_writable.js",
|
|
56
|
-
"lib/_tls_common.js",
|
|
57
|
-
"lib/_tls_wrap.js",
|
|
58
|
-
"lib/assert.js",
|
|
59
|
-
"lib/assert/strict.js",
|
|
60
|
-
"lib/async_hooks.js",
|
|
61
|
-
"lib/buffer.js",
|
|
62
|
-
"lib/child_process.js",
|
|
63
|
-
"lib/cluster.js",
|
|
64
|
-
"lib/console.js",
|
|
65
|
-
"lib/constants.js",
|
|
66
|
-
"lib/crypto.js",
|
|
67
|
-
"lib/dgram.js",
|
|
68
|
-
"lib/diagnostics_channel.js",
|
|
69
|
-
"lib/dns.js",
|
|
70
|
-
"lib/dns/promises.js",
|
|
71
|
-
"lib/domain.js",
|
|
72
|
-
"lib/events.js",
|
|
73
|
-
"lib/fs.js",
|
|
74
|
-
"lib/fs/promises.js",
|
|
75
|
-
"lib/http.js",
|
|
76
|
-
"lib/http2.js",
|
|
77
|
-
"lib/https.js",
|
|
78
|
-
"lib/inspector.js",
|
|
79
|
-
"lib/inspector/promises.js",
|
|
80
|
-
"lib/internal/abort_controller.js",
|
|
81
|
-
"lib/internal/assert.js",
|
|
82
|
-
"lib/internal/assert/assertion_error.js",
|
|
83
|
-
"lib/internal/assert/calltracker.js",
|
|
84
|
-
"lib/internal/assert/myers_diff.js",
|
|
85
|
-
"lib/internal/assert/utils.js",
|
|
86
|
-
"lib/internal/async_context_frame.js",
|
|
87
|
-
"lib/internal/async_hooks.js",
|
|
88
|
-
"lib/internal/async_local_storage/async_context_frame.js",
|
|
89
|
-
"lib/internal/async_local_storage/async_hooks.js",
|
|
90
|
-
"lib/internal/blob.js",
|
|
91
|
-
"lib/internal/blocklist.js",
|
|
92
|
-
"lib/internal/bootstrap/node.js",
|
|
93
|
-
"lib/internal/bootstrap/realm.js",
|
|
94
|
-
"lib/internal/bootstrap/shadow_realm.js",
|
|
95
|
-
"lib/internal/bootstrap/switches/does_not_own_process_state.js",
|
|
96
|
-
"lib/internal/bootstrap/switches/does_own_process_state.js",
|
|
97
|
-
"lib/internal/bootstrap/switches/is_main_thread.js",
|
|
98
|
-
"lib/internal/bootstrap/switches/is_not_main_thread.js",
|
|
99
|
-
"lib/internal/bootstrap/web/exposed-wildcard.js",
|
|
100
|
-
"lib/internal/bootstrap/web/exposed-window-or-worker.js",
|
|
101
|
-
"lib/internal/buffer.js",
|
|
102
|
-
"lib/internal/child_process.js",
|
|
103
|
-
"lib/internal/child_process/serialization.js",
|
|
104
|
-
"lib/internal/cli_table.js",
|
|
105
|
-
"lib/internal/cluster/child.js",
|
|
106
|
-
"lib/internal/cluster/primary.js",
|
|
107
|
-
"lib/internal/cluster/round_robin_handle.js",
|
|
108
|
-
"lib/internal/cluster/shared_handle.js",
|
|
109
|
-
"lib/internal/cluster/utils.js",
|
|
110
|
-
"lib/internal/cluster/worker.js",
|
|
111
|
-
"lib/internal/console/constructor.js",
|
|
112
|
-
"lib/internal/console/global.js",
|
|
113
|
-
"lib/internal/constants.js",
|
|
114
|
-
"lib/internal/crypto/aes.js",
|
|
115
|
-
"lib/internal/crypto/argon2.js",
|
|
116
|
-
"lib/internal/crypto/certificate.js",
|
|
117
|
-
"lib/internal/crypto/cfrg.js",
|
|
118
|
-
"lib/internal/crypto/chacha20_poly1305.js",
|
|
119
|
-
"lib/internal/crypto/cipher.js",
|
|
120
|
-
"lib/internal/crypto/diffiehellman.js",
|
|
121
|
-
"lib/internal/crypto/ec.js",
|
|
122
|
-
"lib/internal/crypto/hash.js",
|
|
123
|
-
"lib/internal/crypto/hashnames.js",
|
|
124
|
-
"lib/internal/crypto/hkdf.js",
|
|
125
|
-
"lib/internal/crypto/kem.js",
|
|
126
|
-
"lib/internal/crypto/keygen.js",
|
|
127
|
-
"lib/internal/crypto/keys.js",
|
|
128
|
-
"lib/internal/crypto/mac.js",
|
|
129
|
-
"lib/internal/crypto/ml_dsa.js",
|
|
130
|
-
"lib/internal/crypto/ml_kem.js",
|
|
131
|
-
"lib/internal/crypto/pbkdf2.js",
|
|
132
|
-
"lib/internal/crypto/random.js",
|
|
133
|
-
"lib/internal/crypto/rsa.js",
|
|
134
|
-
"lib/internal/crypto/scrypt.js",
|
|
135
|
-
"lib/internal/crypto/sig.js",
|
|
136
|
-
"lib/internal/crypto/util.js",
|
|
137
|
-
"lib/internal/crypto/webcrypto.js",
|
|
138
|
-
"lib/internal/crypto/webidl.js",
|
|
139
|
-
"lib/internal/crypto/x509.js",
|
|
140
|
-
"lib/internal/data_url.js",
|
|
141
|
-
"lib/internal/debugger/inspect.js",
|
|
142
|
-
"lib/internal/debugger/inspect_client.js",
|
|
143
|
-
"lib/internal/debugger/inspect_repl.js",
|
|
144
|
-
"lib/internal/dgram.js",
|
|
145
|
-
"lib/internal/dns/callback_resolver.js",
|
|
146
|
-
"lib/internal/dns/promises.js",
|
|
147
|
-
"lib/internal/dns/utils.js",
|
|
148
|
-
"lib/internal/encoding.js",
|
|
149
|
-
"lib/internal/encoding/single-byte.js",
|
|
150
|
-
"lib/internal/encoding/util.js",
|
|
151
|
-
"lib/internal/error_serdes.js",
|
|
152
|
-
"lib/internal/errors.js",
|
|
153
|
-
"lib/internal/errors/error_source.js",
|
|
154
|
-
"lib/internal/event_target.js",
|
|
155
|
-
"lib/internal/events/abort_listener.js",
|
|
156
|
-
"lib/internal/events/symbols.js",
|
|
157
|
-
"lib/internal/file.js",
|
|
158
|
-
"lib/internal/fixed_queue.js",
|
|
159
|
-
"lib/internal/freelist.js",
|
|
160
|
-
"lib/internal/freeze_intrinsics.js",
|
|
161
|
-
"lib/internal/fs/cp/cp-sync.js",
|
|
162
|
-
"lib/internal/fs/cp/cp.js",
|
|
163
|
-
"lib/internal/fs/dir.js",
|
|
164
|
-
"lib/internal/fs/glob.js",
|
|
165
|
-
"lib/internal/fs/promises.js",
|
|
166
|
-
"lib/internal/fs/read/context.js",
|
|
167
|
-
"lib/internal/fs/recursive_watch.js",
|
|
168
|
-
"lib/internal/fs/rimraf.js",
|
|
169
|
-
"lib/internal/fs/streams.js",
|
|
170
|
-
"lib/internal/fs/sync_write_stream.js",
|
|
171
|
-
"lib/internal/fs/utils.js",
|
|
172
|
-
"lib/internal/fs/watchers.js",
|
|
173
|
-
"lib/internal/heap_utils.js",
|
|
174
|
-
"lib/internal/histogram.js",
|
|
175
|
-
"lib/internal/http.js",
|
|
176
|
-
"lib/internal/http2/compat.js",
|
|
177
|
-
"lib/internal/http2/core.js",
|
|
178
|
-
"lib/internal/http2/util.js",
|
|
179
|
-
"lib/internal/inspector/network.js",
|
|
180
|
-
"lib/internal/inspector/network_http.js",
|
|
181
|
-
"lib/internal/inspector/network_http2.js",
|
|
182
|
-
"lib/internal/inspector/network_resources.js",
|
|
183
|
-
"lib/internal/inspector/network_undici.js",
|
|
184
|
-
"lib/internal/inspector_async_hook.js",
|
|
185
|
-
"lib/internal/inspector_network_tracking.js",
|
|
186
|
-
"lib/internal/js_stream_socket.js",
|
|
187
|
-
"lib/internal/legacy/processbinding.js",
|
|
188
|
-
"lib/internal/linkedlist.js",
|
|
189
|
-
"lib/internal/locks.js",
|
|
190
|
-
"lib/internal/main/check_syntax.js",
|
|
191
|
-
"lib/internal/main/embedding.js",
|
|
192
|
-
"lib/internal/main/eval_stdin.js",
|
|
193
|
-
"lib/internal/main/eval_string.js",
|
|
194
|
-
"lib/internal/main/inspect.js",
|
|
195
|
-
"lib/internal/main/mksnapshot.js",
|
|
196
|
-
"lib/internal/main/print_help.js",
|
|
197
|
-
"lib/internal/main/prof_process.js",
|
|
198
|
-
"lib/internal/main/repl.js",
|
|
199
|
-
"lib/internal/main/run_main_module.js",
|
|
200
|
-
"lib/internal/main/test_runner.js",
|
|
201
|
-
"lib/internal/main/watch_mode.js",
|
|
202
|
-
"lib/internal/main/worker_thread.js",
|
|
203
|
-
"lib/internal/mime.js",
|
|
204
|
-
"lib/internal/modules/cjs/loader.js",
|
|
205
|
-
"lib/internal/modules/customization_hooks.js",
|
|
206
|
-
"lib/internal/modules/esm/assert.js",
|
|
207
|
-
"lib/internal/modules/esm/create_dynamic_module.js",
|
|
208
|
-
"lib/internal/modules/esm/formats.js",
|
|
209
|
-
"lib/internal/modules/esm/get_format.js",
|
|
210
|
-
"lib/internal/modules/esm/hooks.js",
|
|
211
|
-
"lib/internal/modules/esm/initialize_import_meta.js",
|
|
212
|
-
"lib/internal/modules/esm/load.js",
|
|
213
|
-
"lib/internal/modules/esm/loader.js",
|
|
214
|
-
"lib/internal/modules/esm/module_job.js",
|
|
215
|
-
"lib/internal/modules/esm/module_map.js",
|
|
216
|
-
"lib/internal/modules/esm/resolve.js",
|
|
217
|
-
"lib/internal/modules/esm/shared_constants.js",
|
|
218
|
-
"lib/internal/modules/esm/translators.js",
|
|
219
|
-
"lib/internal/modules/esm/utils.js",
|
|
220
|
-
"lib/internal/modules/esm/worker.js",
|
|
221
|
-
"lib/internal/modules/helpers.js",
|
|
222
|
-
"lib/internal/modules/package_json_reader.js",
|
|
223
|
-
"lib/internal/modules/run_main.js",
|
|
224
|
-
"lib/internal/modules/typescript.js",
|
|
225
|
-
"lib/internal/navigator.js",
|
|
226
|
-
"lib/internal/net.js",
|
|
227
|
-
"lib/internal/options.js",
|
|
228
|
-
"lib/internal/per_context/domexception.js",
|
|
229
|
-
"lib/internal/per_context/messageport.js",
|
|
230
|
-
"lib/internal/per_context/primordials.js",
|
|
231
|
-
"lib/internal/perf/event_loop_delay.js",
|
|
232
|
-
"lib/internal/perf/event_loop_utilization.js",
|
|
233
|
-
"lib/internal/perf/nodetiming.js",
|
|
234
|
-
"lib/internal/perf/observe.js",
|
|
235
|
-
"lib/internal/perf/performance.js",
|
|
236
|
-
"lib/internal/perf/performance_entry.js",
|
|
237
|
-
"lib/internal/perf/resource_timing.js",
|
|
238
|
-
"lib/internal/perf/timerify.js",
|
|
239
|
-
"lib/internal/perf/usertiming.js",
|
|
240
|
-
"lib/internal/perf/utils.js",
|
|
241
|
-
"lib/internal/priority_queue.js",
|
|
242
|
-
"lib/internal/process/execution.js",
|
|
243
|
-
"lib/internal/process/finalization.js",
|
|
244
|
-
"lib/internal/process/per_thread.js",
|
|
245
|
-
"lib/internal/process/permission.js",
|
|
246
|
-
"lib/internal/process/pre_execution.js",
|
|
247
|
-
"lib/internal/process/promises.js",
|
|
248
|
-
"lib/internal/process/report.js",
|
|
249
|
-
"lib/internal/process/signal.js",
|
|
250
|
-
"lib/internal/process/task_queues.js",
|
|
251
|
-
"lib/internal/process/warning.js",
|
|
252
|
-
"lib/internal/process/worker_thread_only.js",
|
|
253
|
-
"lib/internal/promise_hooks.js",
|
|
254
|
-
"lib/internal/querystring.js",
|
|
255
|
-
"lib/internal/quic/quic.js",
|
|
256
|
-
"lib/internal/quic/state.js",
|
|
257
|
-
"lib/internal/quic/stats.js",
|
|
258
|
-
"lib/internal/quic/symbols.js",
|
|
259
|
-
"lib/internal/readline/callbacks.js",
|
|
260
|
-
"lib/internal/readline/emitKeypressEvents.js",
|
|
261
|
-
"lib/internal/readline/interface.js",
|
|
262
|
-
"lib/internal/readline/promises.js",
|
|
263
|
-
"lib/internal/readline/utils.js",
|
|
264
|
-
"lib/internal/repl.js",
|
|
265
|
-
"lib/internal/repl/await.js",
|
|
266
|
-
"lib/internal/repl/completion.js",
|
|
267
|
-
"lib/internal/repl/history.js",
|
|
268
|
-
"lib/internal/repl/utils.js",
|
|
269
|
-
"lib/internal/socket_list.js",
|
|
270
|
-
"lib/internal/socketaddress.js",
|
|
271
|
-
"lib/internal/source_map/prepare_stack_trace.js",
|
|
272
|
-
"lib/internal/source_map/source_map.js",
|
|
273
|
-
"lib/internal/source_map/source_map_cache.js",
|
|
274
|
-
"lib/internal/source_map/source_map_cache_map.js",
|
|
275
|
-
"lib/internal/stream_base_commons.js",
|
|
276
|
-
"lib/internal/streams/add-abort-signal.js",
|
|
277
|
-
"lib/internal/streams/compose.js",
|
|
278
|
-
"lib/internal/streams/destroy.js",
|
|
279
|
-
"lib/internal/streams/duplex.js",
|
|
280
|
-
"lib/internal/streams/duplexify.js",
|
|
281
|
-
"lib/internal/streams/duplexpair.js",
|
|
282
|
-
"lib/internal/streams/end-of-stream.js",
|
|
283
|
-
"lib/internal/streams/fast-utf8-stream.js",
|
|
284
|
-
"lib/internal/streams/from.js",
|
|
285
|
-
"lib/internal/streams/lazy_transform.js",
|
|
286
|
-
"lib/internal/streams/legacy.js",
|
|
287
|
-
"lib/internal/streams/operators.js",
|
|
288
|
-
"lib/internal/streams/passthrough.js",
|
|
289
|
-
"lib/internal/streams/pipeline.js",
|
|
290
|
-
"lib/internal/streams/readable.js",
|
|
291
|
-
"lib/internal/streams/state.js",
|
|
292
|
-
"lib/internal/streams/transform.js",
|
|
293
|
-
"lib/internal/streams/utils.js",
|
|
294
|
-
"lib/internal/streams/writable.js",
|
|
295
|
-
"lib/internal/test/binding.js",
|
|
296
|
-
"lib/internal/test/transfer.js",
|
|
297
|
-
"lib/internal/test_runner/assert.js",
|
|
298
|
-
"lib/internal/test_runner/coverage.js",
|
|
299
|
-
"lib/internal/test_runner/harness.js",
|
|
300
|
-
"lib/internal/test_runner/mock/loader.js",
|
|
301
|
-
"lib/internal/test_runner/mock/mock.js",
|
|
302
|
-
"lib/internal/test_runner/mock/mock_timers.js",
|
|
303
|
-
"lib/internal/test_runner/reporter/dot.js",
|
|
304
|
-
"lib/internal/test_runner/reporter/junit.js",
|
|
305
|
-
"lib/internal/test_runner/reporter/lcov.js",
|
|
306
|
-
"lib/internal/test_runner/reporter/rerun.js",
|
|
307
|
-
"lib/internal/test_runner/reporter/spec.js",
|
|
308
|
-
"lib/internal/test_runner/reporter/tap.js",
|
|
309
|
-
"lib/internal/test_runner/reporter/utils.js",
|
|
310
|
-
"lib/internal/test_runner/reporter/v8-serializer.js",
|
|
311
|
-
"lib/internal/test_runner/runner.js",
|
|
312
|
-
"lib/internal/test_runner/snapshot.js",
|
|
313
|
-
"lib/internal/test_runner/test.js",
|
|
314
|
-
"lib/internal/test_runner/tests_stream.js",
|
|
315
|
-
"lib/internal/test_runner/utils.js",
|
|
316
|
-
"lib/internal/timers.js",
|
|
317
|
-
"lib/internal/tls/common.js",
|
|
318
|
-
"lib/internal/tls/secure-context.js",
|
|
319
|
-
"lib/internal/tls/wrap.js",
|
|
320
|
-
"lib/internal/trace_events_async_hooks.js",
|
|
321
|
-
"lib/internal/tty.js",
|
|
322
|
-
"lib/internal/url.js",
|
|
323
|
-
"lib/internal/util.js",
|
|
324
|
-
"lib/internal/util/colors.js",
|
|
325
|
-
"lib/internal/util/comparisons.js",
|
|
326
|
-
"lib/internal/util/debuglog.js",
|
|
327
|
-
"lib/internal/util/diff.js",
|
|
328
|
-
"lib/internal/util/inspect.js",
|
|
329
|
-
"lib/internal/util/inspector.js",
|
|
330
|
-
"lib/internal/util/parse_args/parse_args.js",
|
|
331
|
-
"lib/internal/util/parse_args/utils.js",
|
|
332
|
-
"lib/internal/util/trace_sigint.js",
|
|
333
|
-
"lib/internal/util/types.js",
|
|
334
|
-
"lib/internal/v8/startup_snapshot.js",
|
|
335
|
-
"lib/internal/v8_prof_polyfill.js",
|
|
336
|
-
"lib/internal/v8_prof_processor.js",
|
|
337
|
-
"lib/internal/validators.js",
|
|
338
|
-
"lib/internal/vm.js",
|
|
339
|
-
"lib/internal/vm/module.js",
|
|
340
|
-
"lib/internal/wasm_web_api.js",
|
|
341
|
-
"lib/internal/watch_mode/files_watcher.js",
|
|
342
|
-
"lib/internal/watchdog.js",
|
|
343
|
-
"lib/internal/webidl.js",
|
|
344
|
-
"lib/internal/webstorage.js",
|
|
345
|
-
"lib/internal/webstreams/adapters.js",
|
|
346
|
-
"lib/internal/webstreams/compression.js",
|
|
347
|
-
"lib/internal/webstreams/encoding.js",
|
|
348
|
-
"lib/internal/webstreams/queuingstrategies.js",
|
|
349
|
-
"lib/internal/webstreams/readablestream.js",
|
|
350
|
-
"lib/internal/webstreams/transfer.js",
|
|
351
|
-
"lib/internal/webstreams/transformstream.js",
|
|
352
|
-
"lib/internal/webstreams/util.js",
|
|
353
|
-
"lib/internal/webstreams/writablestream.js",
|
|
354
|
-
"lib/internal/worker.js",
|
|
355
|
-
"lib/internal/worker/clone_dom_exception.js",
|
|
356
|
-
"lib/internal/worker/io.js",
|
|
357
|
-
"lib/internal/worker/js_transferable.js",
|
|
358
|
-
"lib/internal/worker/messaging.js",
|
|
359
|
-
"lib/module.js",
|
|
360
|
-
"lib/net.js",
|
|
361
|
-
"lib/os.js",
|
|
362
|
-
"lib/path.js",
|
|
363
|
-
"lib/path/posix.js",
|
|
364
|
-
"lib/path/win32.js",
|
|
365
|
-
"lib/perf_hooks.js",
|
|
366
|
-
"lib/process.js",
|
|
367
|
-
"lib/punycode.js",
|
|
368
|
-
"lib/querystring.js",
|
|
369
|
-
"lib/quic.js",
|
|
370
|
-
"lib/readline.js",
|
|
371
|
-
"lib/readline/promises.js",
|
|
372
|
-
"lib/repl.js",
|
|
373
|
-
"lib/sea.js",
|
|
374
|
-
"lib/sqlite.js",
|
|
375
|
-
"lib/stream.js",
|
|
376
|
-
"lib/stream/consumers.js",
|
|
377
|
-
"lib/stream/promises.js",
|
|
378
|
-
"lib/stream/web.js",
|
|
379
|
-
"lib/string_decoder.js",
|
|
380
|
-
"lib/sys.js",
|
|
381
|
-
"lib/test.js",
|
|
382
|
-
"lib/test/reporters.js",
|
|
383
|
-
"lib/timers.js",
|
|
384
|
-
"lib/timers/promises.js",
|
|
385
|
-
"lib/tls.js",
|
|
386
|
-
"lib/trace_events.js",
|
|
387
|
-
"lib/tty.js",
|
|
388
|
-
"lib/url.js",
|
|
389
|
-
"lib/util.js",
|
|
390
|
-
"lib/util/types.js",
|
|
391
|
-
"lib/v8.js",
|
|
392
|
-
"lib/vm.js",
|
|
393
|
-
"lib/wasi.js",
|
|
394
|
-
"lib/worker_threads.js",
|
|
395
|
-
"lib/zlib.js"
|
|
396
|
-
],
|
|
397
|
-
"node_cctest_sources": [
|
|
398
|
-
"src/node_snapshot_stub.cc",
|
|
399
|
-
"test/cctest/inspector/test_network_requests_buffer.cc",
|
|
400
|
-
"test/cctest/inspector/test_node_protocol.cc",
|
|
401
|
-
"test/cctest/node_test_fixture.cc",
|
|
402
|
-
"test/cctest/test_aliased_buffer.cc",
|
|
403
|
-
"test/cctest/test_base64.cc",
|
|
404
|
-
"test/cctest/test_base_object_ptr.cc",
|
|
405
|
-
"test/cctest/test_cppgc.cc",
|
|
406
|
-
"test/cctest/test_crypto_clienthello.cc",
|
|
407
|
-
"test/cctest/test_dataqueue.cc",
|
|
408
|
-
"test/cctest/test_environment.cc",
|
|
409
|
-
"test/cctest/test_inspector_socket.cc",
|
|
410
|
-
"test/cctest/test_inspector_socket_server.cc",
|
|
411
|
-
"test/cctest/test_json_utils.cc",
|
|
412
|
-
"test/cctest/test_linked_binding.cc",
|
|
413
|
-
"test/cctest/test_lru_cache.cc",
|
|
414
|
-
"test/cctest/test_node_api.cc",
|
|
415
|
-
"test/cctest/test_node_crypto.cc",
|
|
416
|
-
"test/cctest/test_node_crypto_env.cc",
|
|
417
|
-
"test/cctest/test_node_postmortem_metadata.cc",
|
|
418
|
-
"test/cctest/test_node_task_runner.cc",
|
|
419
|
-
"test/cctest/test_path.cc",
|
|
420
|
-
"test/cctest/test_per_process.cc",
|
|
421
|
-
"test/cctest/test_platform.cc",
|
|
422
|
-
"test/cctest/test_quic_cid.cc",
|
|
423
|
-
"test/cctest/test_quic_error.cc",
|
|
424
|
-
"test/cctest/test_quic_tokens.cc",
|
|
425
|
-
"test/cctest/test_report.cc",
|
|
426
|
-
"test/cctest/test_sockaddr.cc",
|
|
427
|
-
"test/cctest/test_string_bytes.cc",
|
|
428
|
-
"test/cctest/test_traced_value.cc",
|
|
429
|
-
"test/cctest/test_util.cc",
|
|
430
|
-
"test/cctest/node_test_fixture.h"
|
|
431
|
-
],
|
|
432
|
-
"napi_build_version": "10",
|
|
433
|
-
"node_shared_zlib": "false",
|
|
434
|
-
"node_shared_http_parser": "false",
|
|
435
|
-
"node_shared_libuv": "false",
|
|
436
|
-
"node_shared_ada": "false",
|
|
437
|
-
"node_shared_simdjson": "false",
|
|
438
|
-
"node_shared_simdutf": "false",
|
|
439
|
-
"node_shared_brotli": "false",
|
|
440
|
-
"node_shared_cares": "false",
|
|
441
|
-
"node_shared_gtest": "false",
|
|
442
|
-
"node_shared_hdr_histogram": "false",
|
|
443
|
-
"node_shared_merve": "false",
|
|
444
|
-
"node_shared_nbytes": "false",
|
|
445
|
-
"node_shared_nghttp2": "false",
|
|
446
|
-
"node_shared_nghttp3": "false",
|
|
447
|
-
"node_shared_ngtcp2": "false",
|
|
448
|
-
"node_use_sqlite": "true",
|
|
449
|
-
"node_shared_sqlite": "false",
|
|
450
|
-
"node_shared_uvwasi": "false",
|
|
451
|
-
"node_shared_zstd": "false",
|
|
452
|
-
"v8_enable_webassembly": 1,
|
|
453
|
-
"v8_enable_javascript_promise_hooks": 1,
|
|
454
|
-
"v8_enable_lite_mode": 0,
|
|
455
|
-
"v8_enable_gdbjit": 0,
|
|
456
|
-
"v8_optimized_debug": 1,
|
|
457
|
-
"dcheck_always_on": 0,
|
|
458
|
-
"v8_enable_object_print": 1,
|
|
459
|
-
"v8_random_seed": 0,
|
|
460
|
-
"v8_promise_internal_field_count": 1,
|
|
461
|
-
"v8_use_siphash": 1,
|
|
462
|
-
"v8_enable_maglev": 1,
|
|
463
|
-
"v8_enable_pointer_compression": 0,
|
|
464
|
-
"v8_enable_sandbox": 0,
|
|
465
|
-
"v8_enable_pointer_compression_shared_cage": 0,
|
|
466
|
-
"v8_enable_external_code_space": 0,
|
|
467
|
-
"v8_enable_31bit_smis_on_64bit_arch": 0,
|
|
468
|
-
"v8_enable_extensible_ro_snapshot": 0,
|
|
469
|
-
"v8_trace_maps": 0,
|
|
470
|
-
"node_use_v8_platform": "true",
|
|
471
|
-
"node_use_bundled_v8": "true",
|
|
472
|
-
"force_dynamic_crt": 0,
|
|
473
|
-
"node_enable_d8": "false",
|
|
474
|
-
"node_enable_v8windbg": "false",
|
|
475
|
-
"v8_enable_hugepage": 0,
|
|
476
|
-
"v8_enable_short_builtin_calls": 1,
|
|
477
|
-
"v8_enable_wasm_simd256_revec": 1,
|
|
478
|
-
"node_use_openssl": "true",
|
|
479
|
-
"node_shared_openssl": "false",
|
|
480
|
-
"openssl_is_fips": "false",
|
|
481
|
-
"node_quic": "false",
|
|
482
|
-
"node_fipsinstall": "false",
|
|
483
|
-
"node_without_node_options": "false",
|
|
484
|
-
"openssl_quic": "false",
|
|
485
|
-
"icu_small": "false",
|
|
486
|
-
"v8_enable_i18n_support": 1,
|
|
487
|
-
"icu_gyp_path": "tools/icu/icu-generic.gyp",
|
|
488
|
-
"icu_path": "deps/icu-small",
|
|
489
|
-
"icu_ver_major": "78",
|
|
490
|
-
"icu_endianness": "l",
|
|
491
|
-
"icu_data_in": "../../deps/icu-tmp/icudt78l.dat",
|
|
492
|
-
"v8_enable_inspector": 1,
|
|
493
|
-
"node_section_ordering_info": "",
|
|
494
|
-
"node_builtin_shareable_builtins": [
|
|
495
|
-
"deps/undici/undici.js",
|
|
496
|
-
"deps/amaro/dist/index.js"
|
|
497
|
-
],
|
|
498
|
-
"ossfuzz": "false",
|
|
499
|
-
"nodedir": "/home/runner/.cache/node-gyp/24.14.0",
|
|
500
|
-
"python": "/usr/bin/python3",
|
|
501
|
-
"standalone_static_library": 1,
|
|
502
|
-
"ignore_optional": "",
|
|
503
|
-
"save_prefix": "^",
|
|
504
|
-
"strict_ssl": "true",
|
|
505
|
-
"version_git_sign": "",
|
|
506
|
-
"version_git_tag": "true",
|
|
507
|
-
"version_git_message": "v%s",
|
|
508
|
-
"ignore_scripts": "",
|
|
509
|
-
"registry": "https://registry.yarnpkg.com",
|
|
510
|
-
"version_tag_prefix": "v",
|
|
511
|
-
"init_license": "MIT",
|
|
512
|
-
"init_version": "1.0.0",
|
|
513
|
-
"bin_links": "true",
|
|
514
|
-
"user_agent": "yarn/1.22.22 npm/? node/v24.14.0 linux x64",
|
|
515
|
-
"version_commit_hooks": "true"
|
|
516
|
-
},
|
|
517
|
-
"target_defaults": {
|
|
518
|
-
"include_dirs": [],
|
|
519
|
-
"libraries": [],
|
|
520
|
-
"defines": [],
|
|
521
|
-
"cflags": [],
|
|
522
|
-
"default_configuration": "Release",
|
|
523
|
-
"configurations": {
|
|
524
|
-
"Release": {
|
|
525
|
-
"variables": {},
|
|
526
|
-
"v8_enable_v8_checks": 1
|
|
527
|
-
},
|
|
528
|
-
"Debug": {
|
|
529
|
-
"variables": {},
|
|
530
|
-
"v8_enable_v8_checks": 0
|
|
531
|
-
}
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
}
|