@mavogel/awscdk-rootmail 0.0.335 → 0.1.0
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/.codegraph/.gitignore +5 -0
- package/.jsii +468 -16
- package/CLAUDE.md +1 -1
- package/README.md +6 -1
- package/docs/plans/2026-08-09-bump-mvc-projen-cdk-nag-v3.md +199 -0
- package/integ-tests/integ.rootmail-custom-santa.ts +2 -2
- package/integ-tests/integ.rootmail-filter-subject.ts +2 -2
- package/integ-tests/integ.rootmail.ts +2 -2
- package/lib/custom-resource-types.d.ts +23 -0
- package/lib/custom-resource-types.js +3 -0
- package/lib/hosted-zone-dkim-propagation.is-complete-handler.d.ts +2 -2
- package/lib/hosted-zone-dkim-propagation.is-complete-handler.js +1 -1
- package/lib/hosted-zone-dkim-propagation.js +46 -15
- package/lib/hosted-zone-dkim-propagation.on-event-handler.d.ts +2 -2
- package/lib/hosted-zone-dkim-propagation.on-event-handler.js +1 -1
- package/lib/hosted-zone-dkim-verification-records.js +47 -12
- package/lib/hosted-zone-dkim-verification-records.on-event-handler.d.ts +2 -2
- package/lib/hosted-zone-dkim-verification-records.on-event-handler.js +1 -1
- package/lib/rootmail-autowire-dns.is-complete-handler.d.ts +2 -2
- package/lib/rootmail-autowire-dns.is-complete-handler.js +1 -1
- package/lib/rootmail-autowire-dns.js +47 -15
- package/lib/rootmail-autowire-dns.on-event-handler.d.ts +2 -1
- package/lib/rootmail-autowire-dns.on-event-handler.js +1 -1
- package/lib/rootmail.js +13 -16
- package/lib/ses-receipt-ruleset-activation.is-complete-handler.d.ts +2 -2
- package/lib/ses-receipt-ruleset-activation.is-complete-handler.js +1 -1
- package/lib/ses-receipt-ruleset-activation.js +53 -15
- package/lib/ses-receipt-ruleset-activation.on-event-handler.d.ts +2 -2
- package/lib/ses-receipt-ruleset-activation.on-event-handler.js +1 -1
- package/lib/ses-receive.js +12 -12
- package/node_modules/@aws/lambda-invoke-store/README.md +25 -1
- package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +12 -0
- package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +12 -0
- package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +6 -0
- package/node_modules/@aws/lambda-invoke-store/package.json +1 -1
- package/node_modules/@aws-sdk/checksums/README.md +6 -0
- package/node_modules/@aws-sdk/checksums/crc.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/crc.js +5 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +22 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/crc/index.js +159 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/flexible-checksums/index.js +444 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/md5/index.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/sha/index.js +312 -0
- package/node_modules/@aws-sdk/checksums/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cJs.js +31 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cNode.js +2 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc64-nvme/Crc64Nvme.js +18 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc64-nvme/Crc64NvmeJs.js +92 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.browser.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/flexibleChecksumsMiddleware.js +123 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/flexibleChecksumsResponseMiddleware.js +48 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/index.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/isStreaming.js +2 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/resolveFlexibleChecksumsConfig.js +11 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/selectChecksumAlgorithmFunction.js +27 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/stringHasher.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/validateChecksumFromResponse.js +45 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/md5/index.js +1 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.browser.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Js.js +173 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Node.js +59 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1WebCrypto.js +71 -0
- package/node_modules/@aws-sdk/checksums/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cJs.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cNode.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/Crc64Nvme.d.ts +21 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/crc64-nvme-crt-container.d.ts +11 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.d.ts +6 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/index.d.ts +9 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/validateChecksumFromResponse.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/md5/index.d.ts +1 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.browser.d.ts +3 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.d.ts +4 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Js.d.ts +26 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Node.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1WebCrypto.d.ts +22 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/index.d.ts +30 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cJs.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cNode.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc64-nvme/Crc64Nvme.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +9 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.d.ts +6 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +7 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +7 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/index.d.ts +31 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/validateChecksumFromResponse.d.ts +12 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/md5/index.d.ts +1 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.d.ts +4 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Js.d.ts +20 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Node.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1WebCrypto.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/flexible-checksums.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/flexible-checksums.js +5 -0
- package/node_modules/@aws-sdk/checksums/md5.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/md5.js +5 -0
- package/node_modules/@aws-sdk/checksums/package.json +129 -0
- package/node_modules/@aws-sdk/checksums/sha.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/sha.js +5 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/README.md +42 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/index.js +4564 -1443
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/CloudWatchLogs.js +11 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/CloudWatchLogsClient.js +7 -10
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/AssociateKmsKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/AssociateSourceToS3TableIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CancelExportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CancelImportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateDeliveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateExportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateImportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLogAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLogGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLogStreamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLookupTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateScheduledQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteAccountPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDataProtectionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliveryDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliveryDestinationPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliverySourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteIndexPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLogAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLogGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLogStreamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLookupTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteMetricFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteQueryDefinitionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteRetentionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteScheduledQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteSubscriptionFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteSyslogConfigurationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteTransformerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeAccountPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeConfigurationTemplatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDeliveriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDeliveryDestinationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDeliverySourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDestinationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeExportTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeFieldIndexesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeImportTaskBatchesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeImportTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeIndexPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeLogGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeLogStreamsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeLookupTablesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeMetricFiltersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeQueriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeQueryDefinitionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeResourcePoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeSubscriptionFiltersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DisassociateKmsKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DisassociateSourceFromS3TableIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/FilterLogEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDataProtectionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliveryDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliveryDestinationPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliverySourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogFieldsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogGroupFieldsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogObjectCommand.js +2 -18
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogRecordCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLookupTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetQueryResultsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetScheduledQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetScheduledQueryHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetStorageTierPolicyCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetTransformerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListAggregateLogGroupSummariesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListAnomaliesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListIntegrationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListLogAnomalyDetectorsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListLogGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListLogGroupsForQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListScheduledQueriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListSourcesForS3TableIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListSyslogConfigurationsCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListTagsLogGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutAccountPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutBearerTokenAuthenticationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDataProtectionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDeliveryDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDeliveryDestinationPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDeliverySourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDestinationPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutIndexPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutLogEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutLogGroupDeletionProtectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutMetricFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutQueryDefinitionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutRetentionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutStorageTierPolicyCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutSubscriptionFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutSyslogConfigurationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutTransformerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/StartLiveTailCommand.js +2 -18
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/StartQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/StopQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TagLogGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TestMetricFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TestTransformerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UntagLogGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UntagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateAnomalyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateDeliveryConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateLogAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateLookupTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateScheduledQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/index.js +5 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/models/CloudWatchLogsServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/models/enums.js +25 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.browser.js +6 -10
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.js +6 -12
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/schemas/schemas_0.js +165 -39
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/CloudWatchLogs.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/CloudWatchLogsClient.d.ts +21 -10
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/AssociateKmsKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/AssociateSourceToS3TableIntegrationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CancelExportTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CancelImportTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateDeliveryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateExportTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateImportTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLogAnomalyDetectorCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLogGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLogStreamCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLookupTableCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateScheduledQueryCommand.d.ts +4 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteAccountPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDataProtectionPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliveryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliveryDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliveryDestinationPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliverySourceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteIndexPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteIntegrationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLogAnomalyDetectorCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLogGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLogStreamCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLookupTableCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteMetricFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteQueryDefinitionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteResourcePolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteRetentionPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteScheduledQueryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteSubscriptionFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteSyslogConfigurationCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteTransformerCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeAccountPoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeConfigurationTemplatesCommand.d.ts +19 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDeliveriesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDeliveryDestinationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDeliverySourcesCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDestinationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeExportTasksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeFieldIndexesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeImportTaskBatchesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeImportTasksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeIndexPoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeLogGroupsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeLogStreamsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeLookupTablesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeMetricFiltersCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeQueriesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeQueryDefinitionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeResourcePoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeSubscriptionFiltersCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DisassociateKmsKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DisassociateSourceFromS3TableIntegrationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/FilterLogEventsCommand.d.ts +8 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDataProtectionPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliveryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliveryDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliveryDestinationPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliverySourceCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetIntegrationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogAnomalyDetectorCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogEventsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogFieldsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogGroupFieldsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogObjectCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogRecordCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLookupTableCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetQueryResultsCommand.d.ts +9 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetScheduledQueryCommand.d.ts +5 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetScheduledQueryHistoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetStorageTierPolicyCommand.d.ts +85 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetTransformerCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListAggregateLogGroupSummariesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListAnomaliesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListIntegrationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListLogAnomalyDetectorsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListLogGroupsCommand.d.ts +14 -11
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListLogGroupsForQueryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListScheduledQueriesCommand.d.ts +5 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListSourcesForS3TableIntegrationCommand.d.ts +4 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListSyslogConfigurationsCommand.d.ts +101 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListTagsLogGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutAccountPolicyCommand.d.ts +51 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutBearerTokenAuthenticationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDataProtectionPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDeliveryDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDeliveryDestinationPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDeliverySourceCommand.d.ts +11 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDestinationPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutIndexPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutIntegrationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutLogEventsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutLogGroupDeletionProtectionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutMetricFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutQueryDefinitionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutResourcePolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutRetentionPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutStorageTierPolicyCommand.d.ts +89 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutSubscriptionFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutSyslogConfigurationCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutTransformerCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/StartLiveTailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/StartQueryCommand.d.ts +5 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/StopQueryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TagLogGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TagResourceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TestMetricFilterCommand.d.ts +5 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TestTransformerCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UntagLogGroupCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UntagResourceCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateAnomalyCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateDeliveryConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateLogAnomalyDetectorCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateLookupTableCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateScheduledQueryCommand.d.ts +9 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/CloudWatchLogsServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/enums.d.ts +73 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/models_0.d.ts +397 -279
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/models_1.d.ts +283 -2
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.browser.d.ts +5 -5
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.d.ts +5 -5
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/schemas/schemas_0.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/CloudWatchLogs.d.ts +87 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/CloudWatchLogsClient.d.ts +43 -21
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/AssociateKmsKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/AssociateSourceToS3TableIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CancelExportTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateDeliveryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateExportTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateImportTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLogAnomalyDetectorCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLogGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLogStreamCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLookupTableCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteAccountPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDataProtectionPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliveryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliveryDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliveryDestinationPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliverySourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteIndexPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLogAnomalyDetectorCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLogGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLogStreamCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLookupTableCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteMetricFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteQueryDefinitionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteRetentionPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteSubscriptionFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteSyslogConfigurationCommand.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteTransformerCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeAccountPoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeConfigurationTemplatesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDeliveriesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDeliveryDestinationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDeliverySourcesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDestinationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeFieldIndexesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeImportTaskBatchesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeIndexPoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeLogGroupsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeLogStreamsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeLookupTablesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeMetricFiltersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeQueriesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeQueryDefinitionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeResourcePoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeSubscriptionFiltersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DisassociateKmsKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DisassociateSourceFromS3TableIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/FilterLogEventsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDataProtectionPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliveryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliveryDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliveryDestinationPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliverySourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogAnomalyDetectorCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogEventsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogFieldsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogGroupFieldsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogObjectCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogRecordCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLookupTableCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetScheduledQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetScheduledQueryHistoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetStorageTierPolicyCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetTransformerCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListAggregateLogGroupSummariesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListAnomaliesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListIntegrationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListLogAnomalyDetectorsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListLogGroupsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListLogGroupsForQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListSourcesForS3TableIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListSyslogConfigurationsCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListTagsLogGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutAccountPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutBearerTokenAuthenticationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDataProtectionPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDeliveryDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDeliveryDestinationPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDeliverySourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDestinationPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutIndexPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutLogEventsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutLogGroupDeletionProtectionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutMetricFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutQueryDefinitionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutRetentionPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutStorageTierPolicyCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutSubscriptionFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutSyslogConfigurationCommand.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutTransformerCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/StartLiveTailCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/StartQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/StopQueryCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TagLogGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TestMetricFilterCommand.d.ts +11 -20
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TestTransformerCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UntagLogGroupCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateAnomalyCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateDeliveryConfigurationCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateLogAnomalyDetectorCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateLookupTableCommand.d.ts +12 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/CloudWatchLogsServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/enums.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/models_0.d.ts +75 -57
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/models_1.d.ts +73 -2
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/package.json +19 -53
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/index.js +3975 -1068
- package/node_modules/@aws-sdk/client-route-53/dist-es/Route53.js +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-es/Route53Client.js +6 -9
- package/node_modules/@aws-sdk/client-route-53/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-es/commandBuilder.js +14 -0
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ActivateKeySigningKeyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/AssociateVPCWithHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeCidrCollectionCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeResourceRecordSetsCommand.js +2 -19
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateCidrCollectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHealthCheckCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateKeySigningKeyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateQueryLoggingConfigCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateReusableDelegationSetCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyInstanceCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyVersionCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateVPCAssociationAuthorizationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeactivateKeySigningKeyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteCidrCollectionCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHealthCheckCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteKeySigningKeyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteQueryLoggingConfigCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteReusableDelegationSetCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyInstanceCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteVPCAssociationAuthorizationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisableHostedZoneDNSSECCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisassociateVPCFromHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/EnableHostedZoneDNSSECCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetAccountLimitCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetChangeCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetCheckerIpRangesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetDNSSECCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetGeoLocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCountCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckLastFailureReasonCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCountCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneLimitCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetQueryLoggingConfigCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetLimitCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCountCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrBlocksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrCollectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrLocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListGeoLocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHealthChecksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByNameCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByVPCCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListQueryLoggingConfigsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListResourceRecordSetsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListReusableDelegationSetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyVersionsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListVPCAssociationAuthorizationsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/TestDNSAnswerCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHealthCheckCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneCommentCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneFeaturesCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyCommentCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyInstanceCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/bdd.js +83 -0
- package/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-route-53/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-route-53/dist-es/models/Route53ServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.browser.js +5 -9
- package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.js +5 -11
- package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/client-route-53/dist-es/waiters/waitForResourceRecordSetsChanged.js +2 -2
- package/node_modules/@aws-sdk/client-route-53/dist-types/Route53.d.ts +2 -2
- package/node_modules/@aws-sdk/client-route-53/dist-types/Route53Client.d.ts +6 -7
- package/node_modules/@aws-sdk/client-route-53/dist-types/commandBuilder.d.ts +26 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ActivateKeySigningKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/AssociateVPCWithHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ChangeCidrCollectionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ChangeResourceRecordSetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ChangeTagsForResourceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateCidrCollectionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateHealthCheckCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateKeySigningKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateQueryLoggingConfigCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateReusableDelegationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateTrafficPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateTrafficPolicyInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateTrafficPolicyVersionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateVPCAssociationAuthorizationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeactivateKeySigningKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteCidrCollectionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteHealthCheckCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteKeySigningKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteQueryLoggingConfigCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteReusableDelegationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteTrafficPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteTrafficPolicyInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteVPCAssociationAuthorizationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DisableHostedZoneDNSSECCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DisassociateVPCFromHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/EnableHostedZoneDNSSECCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetAccountLimitCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetChangeCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetCheckerIpRangesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetDNSSECCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetGeoLocationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckCountCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckLastFailureReasonCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckStatusCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHostedZoneCountCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHostedZoneLimitCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetQueryLoggingConfigCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetReusableDelegationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetReusableDelegationSetLimitCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetTrafficPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetTrafficPolicyInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetTrafficPolicyInstanceCountCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListCidrBlocksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListCidrCollectionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListCidrLocationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListGeoLocationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHealthChecksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHostedZonesByNameCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHostedZonesByVPCCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHostedZonesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListQueryLoggingConfigsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListResourceRecordSetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListReusableDelegationSetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTagsForResourcesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyInstancesByHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyInstancesByPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyInstancesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyVersionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListVPCAssociationAuthorizationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/TestDNSAnswerCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateHealthCheckCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateHostedZoneCommentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateHostedZoneFeaturesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateTrafficPolicyCommentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateTrafficPolicyInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/models/Route53ServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.browser.d.ts +5 -5
- package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.d.ts +5 -5
- package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/Route53.d.ts +2 -2
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/Route53Client.d.ts +9 -17
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commandBuilder.d.ts +58 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ActivateKeySigningKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/AssociateVPCWithHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ChangeCidrCollectionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ChangeResourceRecordSetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ChangeTagsForResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateCidrCollectionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateHealthCheckCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateKeySigningKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateQueryLoggingConfigCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateReusableDelegationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateTrafficPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateTrafficPolicyInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateTrafficPolicyVersionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateVPCAssociationAuthorizationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeactivateKeySigningKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteCidrCollectionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteHealthCheckCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteKeySigningKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteQueryLoggingConfigCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteReusableDelegationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteTrafficPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteTrafficPolicyInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteVPCAssociationAuthorizationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DisableHostedZoneDNSSECCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DisassociateVPCFromHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/EnableHostedZoneDNSSECCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetAccountLimitCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetChangeCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetCheckerIpRangesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetDNSSECCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetGeoLocationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckCountCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckLastFailureReasonCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckStatusCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHostedZoneCountCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHostedZoneLimitCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetQueryLoggingConfigCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetReusableDelegationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetReusableDelegationSetLimitCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetTrafficPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetTrafficPolicyInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetTrafficPolicyInstanceCountCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListCidrBlocksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListCidrCollectionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListCidrLocationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListGeoLocationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHealthChecksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHostedZonesByNameCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHostedZonesByVPCCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHostedZonesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListQueryLoggingConfigsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListResourceRecordSetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListReusableDelegationSetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTagsForResourcesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyInstancesByHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyInstancesByPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyInstancesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyVersionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListVPCAssociationAuthorizationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/TestDNSAnswerCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateHealthCheckCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateHostedZoneCommentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateHostedZoneFeaturesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateTrafficPolicyCommentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateTrafficPolicyInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/models/Route53ServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/waiters/waitForResourceRecordSetsChanged.d.ts +8 -4
- package/node_modules/@aws-sdk/client-route-53/dist-types/waiters/waitForResourceRecordSetsChanged.d.ts +5 -4
- package/node_modules/@aws-sdk/client-route-53/package.json +21 -53
- package/node_modules/@aws-sdk/client-s3/README.md +35 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5750 -2187
- package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +13 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +9 -13
- package/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commandBuilder.js +122 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +2 -23
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +2 -30
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +2 -17
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAbacCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +2 -30
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataJournalTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +2 -29
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +2 -17
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/bdd.js +758 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/S3ServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +17 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +76 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectAnnotationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +7 -15
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +9 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +9 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +318 -143
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +48 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +16 -12
- package/node_modules/@aws-sdk/client-s3/dist-types/commandBuilder.d.ts +106 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +18 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +10 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +31 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +5 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +41 -13
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +114 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAbacCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +42 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +14 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +6 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +136 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +13 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +42 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +9 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +34 -11
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +6 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +14 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +5 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +105 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +14 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/S3ServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +34 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +77 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +1464 -544
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +574 -36
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectAnnotationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +12 -12
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +50 -51
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +10 -10
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +5 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +104 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +45 -23
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commandBuilder.d.ts +133 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAbacCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +52 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListDirectoryBucketsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAbacCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +52 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +10 -18
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +40 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateObjectEncryptionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +23 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +42 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +193 -64
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +95 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectAnnotationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +20 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +76 -80
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +19 -13
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +5 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +8 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +9 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +8 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +9 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +5 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +6 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +5 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +6 -4
- package/node_modules/@aws-sdk/client-s3/package.json +27 -71
- package/node_modules/@aws-sdk/client-ses/dist-cjs/index.js +3013 -926
- package/node_modules/@aws-sdk/client-ses/dist-es/SES.js +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-es/SESClient.js +6 -9
- package/node_modules/@aws-sdk/client-ses/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CloneReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateConfigurationSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateConfigurationSetEventDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateConfigurationSetTrackingOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateCustomVerificationEmailTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateReceiptFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateReceiptRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteConfigurationSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteConfigurationSetEventDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteConfigurationSetTrackingOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteCustomVerificationEmailTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteIdentityPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteReceiptFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteReceiptRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteVerifiedEmailAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeActiveReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeConfigurationSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeReceiptRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetAccountSendingEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetCustomVerificationEmailTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityDkimAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityMailFromDomainAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityNotificationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityVerificationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetSendQuotaCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetSendStatisticsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListConfigurationSetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListCustomVerificationEmailTemplatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListIdentitiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListIdentityPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListReceiptFiltersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListReceiptRuleSetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListTemplatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListVerifiedEmailAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/PutConfigurationSetDeliveryOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/PutIdentityPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ReorderReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendBounceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendBulkTemplatedEmailCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendCustomVerificationEmailCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendEmailCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendRawEmailCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendTemplatedEmailCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetActiveReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityDkimEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityFeedbackForwardingEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityMailFromDomainCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityNotificationTopicCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetReceiptRulePositionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/TestRenderTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateAccountSendingEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetEventDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetSendingEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetTrackingOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateCustomVerificationEmailTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateReceiptRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyDomainDkimCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyDomainIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyEmailAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyEmailIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/endpoint/bdd.js +46 -0
- package/node_modules/@aws-sdk/client-ses/dist-es/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-ses/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-ses/dist-es/models/SESServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.browser.js +5 -9
- package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.js +5 -11
- package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/client-ses/dist-es/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/client-ses/dist-es/waiters/waitForIdentityExists.js +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/SES.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ses/dist-types/SESClient.d.ts +6 -7
- package/node_modules/@aws-sdk/client-ses/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CloneReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateConfigurationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateReceiptFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateReceiptRuleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteConfigurationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteIdentityCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteIdentityPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteReceiptFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteReceiptRuleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteVerifiedEmailAddressCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeActiveReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeConfigurationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeReceiptRuleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetAccountSendingEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityDkimAttributesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityNotificationAttributesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityPoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityVerificationAttributesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetSendQuotaCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetSendStatisticsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListConfigurationSetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListIdentitiesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListIdentityPoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListReceiptFiltersCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListReceiptRuleSetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListTemplatesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListVerifiedEmailAddressesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/PutIdentityPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ReorderReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendBounceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendBulkTemplatedEmailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendCustomVerificationEmailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendEmailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendRawEmailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendTemplatedEmailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetActiveReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityDkimEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityMailFromDomainCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityNotificationTopicCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetReceiptRulePositionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/TestRenderTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateAccountSendingEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateReceiptRuleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyDomainDkimCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyDomainIdentityCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyEmailAddressCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyEmailIdentityCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/models/SESServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.browser.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/SES.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/SESClient.d.ts +9 -17
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CloneReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateConfigurationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateConfigurationSetEventDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateReceiptFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateReceiptRuleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteConfigurationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteIdentityCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteIdentityPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteReceiptFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteReceiptRuleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteVerifiedEmailAddressCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeActiveReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeConfigurationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeReceiptRuleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetAccountSendingEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetCustomVerificationEmailTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityDkimAttributesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityNotificationAttributesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityPoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityVerificationAttributesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetSendQuotaCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetSendStatisticsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListConfigurationSetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListIdentitiesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListIdentityPoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListReceiptFiltersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListReceiptRuleSetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListVerifiedEmailAddressesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/PutIdentityPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ReorderReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendBounceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendBulkTemplatedEmailCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendEmailCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendRawEmailCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendTemplatedEmailCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetActiveReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityDkimEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityMailFromDomainCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityNotificationTopicCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetReceiptRulePositionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/TestRenderTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateAccountSendingEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateReceiptRuleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyDomainDkimCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyDomainIdentityCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyEmailAddressCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyEmailIdentityCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/models/SESServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/waiters/waitForIdentityExists.d.ts +12 -4
- package/node_modules/@aws-sdk/client-ses/dist-types/waiters/waitForIdentityExists.d.ts +5 -4
- package/node_modules/@aws-sdk/client-ses/package.json +19 -51
- package/node_modules/@aws-sdk/client-ssm/README.md +42 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +9401 -1940
- package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +17 -1
- package/node_modules/@aws-sdk/client-ssm/dist-es/SSMClient.js +6 -9
- package/node_modules/@aws-sdk/client-ssm/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePropertiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAccessTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetExecutionPreviewCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCloudConnectorsCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAccessRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartExecutionPreviewCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ValidateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-ssm/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/SSMServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/enums.js +34 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/errors.js +50 -36
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCloudConnectorsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ValidateCloudConnectorPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +5 -9
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +5 -11
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/client-ssm/dist-es/schemas/schemas_0.js +232 -45
- package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +2 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +59 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +14 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateCloudConnectorCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteCloudConnectorCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +5 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +6 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAccessTokenCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCloudConnectorCommand.d.ts +99 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetExecutionPreviewCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +17 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +17 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCloudConnectorsCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesCommand.d.ts +10 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesSummaryCommand.d.ts +6 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +17 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAccessRequestCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartExecutionPreviewCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateCloudConnectorCommand.d.ts +99 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ValidateCloudConnectorCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/SSMServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/enums.d.ts +66 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/errors.d.ts +62 -48
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +268 -360
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +601 -3
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCloudConnectorsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ValidateCloudConnectorPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/schemas/schemas_0.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +119 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +47 -19
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePropertiesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetExecutionPreviewCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +12 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCloudConnectorsCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesCommand.d.ts +9 -18
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesSummaryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAccessRequestCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartExecutionPreviewCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ValidateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/SSMServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/enums.d.ts +42 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/errors.d.ts +27 -21
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +78 -59
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +123 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCloudConnectorsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ValidateCloudConnectorPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +10 -4
- package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +5 -4
- package/node_modules/@aws-sdk/client-ssm/package.json +15 -47
- package/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +1 -3
- package/node_modules/@aws-sdk/core/client.d.ts +1 -3
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +19 -2236
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -4
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +923 -7
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +31 -27
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +211 -189
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +57 -0
- package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -6
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.browser.js +36 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +26 -4
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.native.js +37 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-host-header/hostHeaderMiddleware.js +33 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/configuration.js +7 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.js +58 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-user-agent/check-features.js +49 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-user-agent/user-agent-middleware.js +82 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/region-config-resolver/awsRegionConfig.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/region-config-resolver/stsRegionDefaultResolver.js +15 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/aws.js +10 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +276 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.browser.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/defaultUserAgent.js +31 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +12 -7
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +12 -11
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +4 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +19 -20
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +11 -11
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +3 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +7 -5
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +16 -12
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +43 -28
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +4 -9
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +4 -4
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +6 -5
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/util/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/util/util-format-url/format-url.js +29 -0
- package/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +3 -1
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +13 -14
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +5 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +1 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.browser.d.ts +47 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +38 -4
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.native.d.ts +48 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/configuration.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.d.ts +10 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/region-config-resolver/awsRegionConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/region-config-resolver/stsRegionDefaultResolver.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/lib/aws/partitions.d.ts +638 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/createUserAgentStringParsingProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +3 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +22 -20
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/util/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/util/util-format-url/format-url.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +0 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +65 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +16 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.browser.d.ts +116 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +123 -4
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.native.d.ts +116 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/region-config-resolver/awsRegionConfig.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/region-config-resolver/stsRegionDefaultResolver.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/lib/aws/partitions.d.ts +647 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/createUserAgentStringParsingProvider.d.ts +9 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +23 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +24 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +31 -20
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/util-format-url/format-url.d.ts +4 -0
- package/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +1 -3
- package/node_modules/@aws-sdk/core/package.json +40 -23
- package/node_modules/@aws-sdk/core/protocols.d.ts +1 -3
- package/node_modules/@aws-sdk/core/util.d.ts +5 -0
- package/node_modules/@aws-sdk/core/util.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +10 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +179 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +29 -17
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +4 -4
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/package.json +23 -18
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +47 -42
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -10
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +18 -19
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +31 -34
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +2 -3
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +2 -8
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +7 -2
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-login/package.json +11 -13
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +28 -20
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +12 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +6 -1
- package/node_modules/@aws-sdk/credential-provider-node/package.json +16 -17
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +11 -14
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-process/package.json +10 -11
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +26 -26
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BGYXHf8s.js +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +3 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +6 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +5 -5
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +5 -16
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +5 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +15 -14
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +55 -24
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +4 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +7 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +12 -14
- package/node_modules/@aws-sdk/middleware-sdk-route53/dist-cjs/index.js +0 -2
- package/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/index.js +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-route53/dist-types/index.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-sdk-route53/dist-types/ts3.4/index.d.ts +12 -2
- package/node_modules/@aws-sdk/middleware-sdk-route53/package.json +9 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -567
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +1040 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +213 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/NodeDisableMultiregionAccessPointConfigOptions.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/NodeUseArnRegionConfigOptions.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.browser.js +30 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.js +25 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint/bucketEndpointMiddleware.js +81 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-check-content-length-header/check-content-length-header.js +32 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-expect-continue/middleware-expect-continue.js +41 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-configuration/s3Configuration.js +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-expires/s3-expires-middleware.js +33 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/classes/SignatureV4S3Express.js +3 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/constants.js +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/functions/s3ExpressHttpSigningMiddleware.js +38 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/functions/s3ExpressMiddleware.js +41 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.js +51 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-validate-bucket-name/validate-bucket-name.js +25 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/to-stream/toStream.browser.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/to-stream/toStream.js +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/configurations.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/constants.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/index.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.js +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.js +18 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.js +94 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/update-arnables-request.js +31 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.js +26 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/NodeDisableMultiregionAccessPointConfigOptions.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/NodeUseArnRegionConfigOptions.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.browser.d.ts +36 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.d.ts +32 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint/bucketHostnameUtils.d.ts +174 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts +12 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-configuration/s3Configuration.d.ts +79 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-express/classes/SignatureV4S3Express.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-express/constants.d.ts +37 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +27 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.d.ts +21 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-validate-bucket-name/validate-bucket-name.d.ts +14 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/to-stream/toStream.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/to-stream/toStream.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/configurations.d.ts +47 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/index.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.d.ts +27 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/update-arnables-request.d.ts +19 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +39 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/NodeDisableMultiregionAccessPointConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/NodeUseArnRegionConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.browser.d.ts +103 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.d.ts +107 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint/bucketHostnameUtils.d.ts +80 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts +22 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-configuration/s3Configuration.d.ts +33 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-express/classes/SignatureV4S3Express.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-express/constants.d.ts +11 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +40 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.d.ts +19 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-validate-bucket-name/validate-bucket-name.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/to-stream/toStream.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/to-stream/toStream.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/configurations.d.ts +23 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/index.d.ts +26 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.d.ts +12 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/update-arnables-request.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.d.ts +22 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +63 -24
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.js +5 -0
- package/node_modules/@aws-sdk/nested-clients/cognito-identity.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +525 -85
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +450 -75
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +382 -75
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +576 -75
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +748 -72
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentity.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +6 -9
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +5 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +61 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/CognitoIdentityServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +6 -11
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +7 -15
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/schemas/schemas_0.js +73 -41
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +6 -9
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +5 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commandBuilder.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +90 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +3 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +6 -11
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +7 -15
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +36 -59
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js +6 -9
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +5 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/SSOServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +6 -11
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +7 -15
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/schemas/schemas_0.js +32 -32
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +6 -9
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +5 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +6 -11
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +7 -15
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +50 -50
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +7 -9
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +91 -13
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +1 -7
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +85 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +6 -11
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +15 -18
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +13 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +63 -80
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +6 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +6 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +6 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +6 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSOClient.d.ts +6 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/SSOServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +6 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +6 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +6 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +6 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +16 -18
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +0 -9
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +2 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +10 -9
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +16 -10
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +10 -9
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +4 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +9 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +13 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +12 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +14 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +9 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +5 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +3 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +13 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +12 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +14 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +9 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +5 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/SSOServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +13 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +12 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +14 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +9 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +5 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +13 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +12 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +14 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +9 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +20 -19
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +0 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +2 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +24 -12
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +47 -22
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +25 -13
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +9 -1
- package/node_modules/@aws-sdk/nested-clients/package.json +16 -45
- package/node_modules/@aws-sdk/nested-clients/signin.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sso.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sts.d.ts +1 -3
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +41 -7
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js +2 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4SignWithCredentials.js +36 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/index.js +3 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4MultiRegion.d.ts +1 -1
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4SignWithCredentials.d.ts +20 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/index.d.ts +3 -5
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4SignWithCredentials.d.ts +21 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +9 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +12 -13
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +26 -29
- package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +1 -2
- package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -4
- package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +7 -4
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +7 -4
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/package.json +11 -12
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -1
- package/node_modules/@aws-sdk/types/dist-es/identity/index.js +1 -5
- package/node_modules/@aws-sdk/types/dist-es/index.js +4 -34
- package/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -1
- package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -2
- package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/http.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +7 -7
- package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -5
- package/node_modules/@aws-sdk/types/dist-types/index.d.ts +42 -34
- package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/response.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +2 -5
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +17 -5
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +225 -34
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -1
- package/node_modules/@aws-sdk/types/package.json +7 -7
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +236 -5
- package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +1 -1
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +233 -19
- package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +2 -11
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -1
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +2 -1
- package/node_modules/@aws-sdk/xml-builder/package.json +11 -11
- package/node_modules/@selderee/plugin-htmlparser2/LICENSE +1 -1
- package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.cjs +51 -4
- package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.d.cts +25 -0
- package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.d.mts +25 -0
- package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.mjs +51 -2
- package/node_modules/@selderee/plugin-htmlparser2/package.json +20 -9
- package/node_modules/@smithy/core/cbor.d.ts +1 -3
- package/node_modules/@smithy/core/cbor.js +0 -1
- package/node_modules/@smithy/core/checksum.d.ts +5 -0
- package/node_modules/@smithy/core/checksum.js +5 -0
- package/node_modules/@smithy/core/client.d.ts +5 -0
- package/node_modules/@smithy/core/client.js +5 -0
- package/node_modules/@smithy/core/config.d.ts +5 -0
- package/node_modules/@smithy/core/config.js +5 -0
- package/node_modules/@smithy/core/dist-cjs/index.js +15 -18
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +576 -417
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +413 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +577 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +440 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1145 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +374 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +779 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +363 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +826 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +851 -15
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +867 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +645 -12
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +230 -66
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +816 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +843 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +25 -12
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +1397 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +1047 -6
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +1397 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +182 -0
- package/node_modules/@smithy/core/dist-es/index.js +8 -8
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +42 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js +23 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/DefaultIdentityProviderConfig.js +14 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +34 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +11 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +24 -14
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +3 -4
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +325 -269
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +191 -103
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +4 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +3 -3
- package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +11 -6
- package/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Js.js +30 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-blob-browser/blobHasher.js +8 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/HashCalculator.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/fileStreamHasher.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.browser.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.native.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Js.js +92 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Node.js +29 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Js.js +179 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Node.js +59 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256WebCrypto.js +71 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/index.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client-command-builder.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client.js +51 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/command.js +131 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/checksum.js +49 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/createWaiter.js +48 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/poller.js +87 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/config.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.js +92 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/constants.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.js +30 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js +45 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.browser.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.js +29 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.native.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/configLoader.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromEnv.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromSharedConfigFiles.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromStatic.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/property-provider/fromValue.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigFilepath.js +4 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getCredentialsFilepath.js +4 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getHomeDir.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.js +8 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.js +39 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +22 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.js +65 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.js +31 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +47 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/getEndpointPlugin.js +26 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js +25 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/index.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/decideEndpoint.js +42 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/coalesce.js +8 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/getAttr.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/ite.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/split.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/substring.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/resolveEndpoint.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/index.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/endpointFunctions.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateCondition.js +16 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateConditions.js +26 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateEndpointRule.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateExpression.js +46 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateRules.js +42 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateTemplate.js +33 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointProperties.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getReferenceValue.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +17 -9
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/EventStreamCodec.js +67 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/HeaderMarshaller.js +184 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/Int64.js +44 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/splitMessage.js +31 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.js +45 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/utils.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.js +30 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.browser.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +14 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +12 -8
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +23 -10
- package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +25 -13
- package/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js +39 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/querystring-builder/buildQueryString.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +1 -3
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/retry/index.browser.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/index.js +20 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js +63 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/parseRetryAfterHeader.js +49 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +95 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.js +7 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js +108 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/constants.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/service-error-classification.js +44 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/AdaptiveRetryStrategy.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +111 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRetryToken.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js +97 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +18 -1
- package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -14
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +3 -4
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/serde/concatBytes.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/hash-node/hash-node.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.browser.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +42 -10
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.native.js +45 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js +58 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +6 -3
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.browser.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.browser.js +35 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-body-length/calculateBodyLength.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-buffer-from/buffer-from.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +68 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.js +57 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js +39 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js +33 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.js +5 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.browser.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/uuid/v4.js +32 -0
- package/node_modules/@smithy/core/dist-es/submodules/transport/index.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/transport/parseUrl.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/transport/toEndpointV1.js +17 -0
- package/node_modules/@smithy/core/dist-types/index.d.ts +14 -8
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/memoizeIdentityProvider.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/setFeature.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +9 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +8 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +4 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +3 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Js.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Node.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/HashCalculator.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/fileStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/readableStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.browser.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.native.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5/Md5Js.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5/Md5Node.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256Js.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256Node.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256WebCrypto.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client-command-builder.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client.d.ts +84 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/command.d.ts +118 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/create-aggregated-client.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/default-error-handler.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/exceptions.d.ts +42 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/checksum.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/object-mapping.d.ts +163 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/ser-utils.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/serde-json.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/poller.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/waiter.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/constants.d.ts +36 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.browser.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.d.ts +36 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.native.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/configLoader.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/CredentialsProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/ProviderError.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/TokenProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/chain.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/fromValue.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.d.ts +53 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseIni.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseKnownFiles.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +24 -1
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.d.ts +110 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/service-customizations/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/debug/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/decideEndpoint.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/getEndpointUrlConfig.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/coalesce.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/index.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/ite.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/split.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/types/index.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/types/shared.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/endpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateCondition.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getReferenceValue.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/EventStreamCodec.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.d.ts +46 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/utils.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.browser.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +23 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +27 -13
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/Field.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpHandler.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +3 -2
- package/node_modules/@smithy/core/dist-types/submodules/retry/index.browser.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/index.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/configurations.d.ts +71 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retryMiddleware.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/service-error-classification/service-error-classification.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/AdaptiveRetryStrategy.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/ConfiguredRetryStrategy.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/DefaultRetryToken.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/StandardRetryStrategy.d.ts +56 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/constants.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/retries-2026-config.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -14
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/serde/concatBytes.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +7 -19
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.browser.d.ts +41 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +39 -10
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.native.d.ts +39 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +4 -6
- package/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +31 -51
- package/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +3 -12
- package/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +1 -2
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-buffer-from/buffer-from.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +77 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.browser.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.browser.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/getAwsChunkedEncodingStream.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/headStream.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/splitStream.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.browser.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-utf8/toUint8Array.browser.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/uuid/v4.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/submodules/transport/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/transport/httpRequest.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/transport/index.d.ts +10 -0
- package/node_modules/@smithy/core/endpoints.d.ts +1 -3
- package/node_modules/@smithy/core/endpoints.js +0 -1
- package/node_modules/@smithy/core/event-streams.d.ts +1 -3
- package/node_modules/@smithy/core/event-streams.js +0 -1
- package/node_modules/@smithy/core/package.json +135 -26
- package/node_modules/@smithy/core/protocols.d.ts +1 -3
- package/node_modules/@smithy/core/protocols.js +0 -1
- package/node_modules/@smithy/core/retry.d.ts +5 -0
- package/node_modules/@smithy/core/retry.js +5 -0
- package/node_modules/@smithy/core/schema.d.ts +1 -3
- package/node_modules/@smithy/core/schema.js +0 -1
- package/node_modules/@smithy/core/serde.d.ts +1 -3
- package/node_modules/@smithy/core/serde.js +0 -1
- package/node_modules/@smithy/core/transport.d.ts +5 -0
- package/node_modules/@smithy/core/transport.js +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +55 -57
- package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +16 -15
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +2 -3
- package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +3 -4
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +3 -4
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/node-http.js +2 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +2 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +5 -4
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/node-http.d.ts +2 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +1 -2
- package/node_modules/@smithy/credential-provider-imds/package.json +7 -9
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -62
- package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +1 -2
- package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -2
- package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +2 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +7 -8
- package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -2
- package/node_modules/@smithy/fetch-http-handler/package.json +10 -12
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +259 -181
- package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +50 -0
- package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -3
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +33 -22
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +90 -41
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -18
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +50 -46
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2.js +2 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-https.js +2 -0
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -3
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +9 -8
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +36 -14
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +33 -9
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +21 -8
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-https.d.ts +2 -0
- 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/timing.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/package.json +8 -9
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +178 -177
- package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +1 -2
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +14 -9
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +3 -4
- package/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +1 -2
- package/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +1 -3
- package/node_modules/@smithy/signature-v4/dist-es/index.js +4 -4
- package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +2 -1
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +4 -5
- package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +6 -5
- package/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +2 -3
- package/node_modules/@smithy/signature-v4/package.json +7 -13
- package/node_modules/@smithy/types/README.md +3 -3
- package/node_modules/@smithy/types/dist-cjs/index.js +23 -18
- package/node_modules/@smithy/types/dist-es/auth/index.js +2 -6
- package/node_modules/@smithy/types/dist-es/connection/index.js +1 -3
- package/node_modules/@smithy/types/dist-es/endpoints/index.js +1 -5
- package/node_modules/@smithy/types/dist-es/extensions/index.js +1 -2
- package/node_modules/@smithy/types/dist-es/identity/index.js +1 -4
- package/node_modules/@smithy/types/dist-es/index.js +7 -43
- package/node_modules/@smithy/types/dist-types/abort.d.ts +5 -7
- package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +6 -4
- package/node_modules/@smithy/types/dist-types/auth/index.d.ts +7 -6
- package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +7 -10
- package/node_modules/@smithy/types/dist-types/checksum.d.ts +4 -6
- package/node_modules/@smithy/types/dist-types/client.d.ts +8 -8
- package/node_modules/@smithy/types/dist-types/command.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/connection/config.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/crypto.d.ts +6 -8
- package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +6 -7
- package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -5
- package/node_modules/@smithy/types/dist-types/eventStream.d.ts +10 -10
- package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +9 -10
- package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +6 -4
- package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +10 -10
- package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/http.d.ts +18 -21
- package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/index.d.ts +52 -43
- package/node_modules/@smithy/types/dist-types/logger.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/metrics.d.ts +93 -0
- package/node_modules/@smithy/types/dist-types/middleware.d.ts +28 -27
- package/node_modules/@smithy/types/dist-types/pagination.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/retry.d.ts +25 -0
- package/node_modules/@smithy/types/dist-types/serde.d.ts +10 -10
- package/node_modules/@smithy/types/dist-types/shapes.d.ts +9 -12
- package/node_modules/@smithy/types/dist-types/signature.d.ts +24 -7
- package/node_modules/@smithy/types/dist-types/stream.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +7 -11
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +23 -29
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +9 -19
- package/node_modules/@smithy/types/dist-types/transfer.d.ts +2 -1
- package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +14 -18
- package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +12 -12
- package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +14 -9
- package/node_modules/@smithy/types/dist-types/uri.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/util.d.ts +28 -28
- package/node_modules/@smithy/types/package.json +10 -10
- package/node_modules/@zone-eu/mailsplit/index.d.ts +97 -0
- package/node_modules/@zone-eu/mailsplit/index.js +4 -1
- package/node_modules/@zone-eu/mailsplit/lib/chunked-passthrough.d.ts +59 -0
- package/node_modules/@zone-eu/mailsplit/lib/chunked-passthrough.js +16 -0
- package/node_modules/@zone-eu/mailsplit/lib/flowed-decoder.d.ts +59 -0
- package/node_modules/@zone-eu/mailsplit/lib/flowed-decoder.js +23 -6
- package/node_modules/@zone-eu/mailsplit/lib/headers.d.ts +117 -0
- package/node_modules/@zone-eu/mailsplit/lib/headers.js +147 -28
- package/node_modules/@zone-eu/mailsplit/lib/message-joiner.d.ts +56 -0
- package/node_modules/@zone-eu/mailsplit/lib/message-joiner.js +18 -0
- package/node_modules/@zone-eu/mailsplit/lib/message-splitter.d.ts +59 -0
- package/node_modules/@zone-eu/mailsplit/lib/message-splitter.js +68 -9
- package/node_modules/@zone-eu/mailsplit/lib/mime-node.d.ts +144 -0
- package/node_modules/@zone-eu/mailsplit/lib/mime-node.js +129 -47
- package/node_modules/@zone-eu/mailsplit/lib/node-rewriter.d.ts +105 -0
- package/node_modules/@zone-eu/mailsplit/lib/node-rewriter.js +66 -21
- package/node_modules/@zone-eu/mailsplit/lib/node-streamer.d.ts +105 -0
- package/node_modules/@zone-eu/mailsplit/lib/node-streamer.js +66 -13
- package/node_modules/@zone-eu/mailsplit/lib/types.d.ts +285 -0
- package/node_modules/@zone-eu/mailsplit/package.json +16 -6
- package/node_modules/cdk-nag/.devcontainer.json +6 -1
- package/node_modules/cdk-nag/.jsii +6111 -2717
- package/node_modules/cdk-nag/.jsii.tabl.json +1 -0
- package/node_modules/cdk-nag/API.md +490 -1778
- package/node_modules/cdk-nag/MIGRATION.md +239 -0
- package/node_modules/cdk-nag/README.md +88 -513
- package/node_modules/cdk-nag/RULES.md +2 -1
- package/node_modules/cdk-nag/lib/index.d.ts +0 -3
- package/node_modules/cdk-nag/lib/index.js +1 -4
- package/node_modules/cdk-nag/lib/nag-logger.d.ts +5 -145
- package/node_modules/cdk-nag/lib/nag-logger.js +4 -195
- package/node_modules/cdk-nag/lib/nag-pack.d.ts +57 -44
- package/node_modules/cdk-nag/lib/nag-pack.js +140 -114
- package/node_modules/cdk-nag/lib/nag-rules.d.ts +0 -2
- package/node_modules/cdk-nag/lib/nag-rules.js +3 -5
- package/node_modules/cdk-nag/lib/packs/aws-solutions.d.ts +4 -15
- package/node_modules/cdk-nag/lib/packs/aws-solutions.js +29 -48
- package/node_modules/cdk-nag/lib/packs/hipaa-security.d.ts +4 -2
- package/node_modules/cdk-nag/lib/packs/hipaa-security.js +31 -37
- package/node_modules/cdk-nag/lib/packs/nist-800-53-r4.d.ts +4 -2
- package/node_modules/cdk-nag/lib/packs/nist-800-53-r4.js +29 -35
- package/node_modules/cdk-nag/lib/packs/nist-800-53-r5.d.ts +4 -2
- package/node_modules/cdk-nag/lib/packs/nist-800-53-r5.js +30 -36
- package/node_modules/cdk-nag/lib/packs/pci-dss-321.d.ts +4 -2
- package/node_modules/cdk-nag/lib/packs/pci-dss-321.js +29 -35
- package/node_modules/cdk-nag/lib/packs/serverless.d.ts +4 -2
- package/node_modules/cdk-nag/lib/packs/serverless.js +14 -20
- package/node_modules/cdk-nag/lib/rules/apigw/APIGWStructuredLogging.js +2 -2
- package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolPlusTier.d.ts +8 -0
- package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolPlusTier.js +25 -0
- package/node_modules/cdk-nag/lib/rules/cognito/index.d.ts +1 -1
- package/node_modules/cdk-nag/lib/rules/cognito/index.js +4 -4
- package/node_modules/cdk-nag/lib/rules/ec2/EC2IMDSv2Enabled.js +5 -1
- package/node_modules/cdk-nag/lib/rules/index.d.ts +1 -0
- package/node_modules/cdk-nag/lib/rules/index.js +3 -2
- package/node_modules/cdk-nag/lib/rules/mwaa/MWAAAllLoggingInfo.d.ts +9 -0
- package/node_modules/cdk-nag/lib/rules/mwaa/MWAAAllLoggingInfo.js +78 -0
- package/node_modules/cdk-nag/lib/rules/mwaa/index.d.ts +1 -0
- package/node_modules/cdk-nag/lib/rules/mwaa/index.js +10 -0
- package/node_modules/cdk-nag/lib/rules/s3/S3DefaultEncryptionKMS.js +1 -4
- package/node_modules/cdk-nag/package.json +57 -43
- package/node_modules/cdk-nag/rosetta/default.ts-fixture +13 -0
- package/node_modules/deepmerge-ts/CHANGELOG.md +390 -0
- package/node_modules/deepmerge-ts/LICENSE +29 -0
- package/node_modules/deepmerge-ts/README.md +185 -0
- package/node_modules/deepmerge-ts/dist/index.cjs +619 -0
- package/node_modules/deepmerge-ts/dist/index.d.cts +832 -0
- package/node_modules/deepmerge-ts/dist/index.d.mts +832 -0
- package/node_modules/deepmerge-ts/dist/index.mjs +611 -0
- package/node_modules/deepmerge-ts/package.json +154 -0
- package/node_modules/html-to-text/CHANGELOG.md +38 -1
- package/node_modules/html-to-text/LICENSE +1 -1
- package/node_modules/html-to-text/README.md +47 -39
- package/node_modules/html-to-text/lib/html-to-text.cjs +104 -85
- package/node_modules/html-to-text/lib/html-to-text.mjs +104 -79
- package/node_modules/html-to-text/package.json +22 -14
- package/node_modules/htmlparser2/README.md +5 -6
- package/node_modules/htmlparser2/WritableStream.js +3 -0
- package/node_modules/htmlparser2/dist/commonjs/Parser.d.ts +198 -0
- package/node_modules/htmlparser2/dist/commonjs/Parser.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/Parser.js +527 -0
- package/node_modules/htmlparser2/dist/commonjs/Parser.js.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/Tokenizer.d.ts +126 -0
- package/node_modules/htmlparser2/dist/commonjs/Tokenizer.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/Tokenizer.js +805 -0
- package/node_modules/htmlparser2/dist/commonjs/Tokenizer.js.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/WritableStream.d.ts +15 -0
- package/node_modules/htmlparser2/dist/commonjs/WritableStream.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/WritableStream.js +36 -0
- package/node_modules/htmlparser2/dist/commonjs/WritableStream.js.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/index.d.ts +54 -0
- package/node_modules/htmlparser2/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/index.js +123 -0
- package/node_modules/htmlparser2/dist/commonjs/index.js.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/package.json +3 -0
- package/node_modules/htmlparser2/dist/esm/Parser.d.ts +198 -0
- package/node_modules/htmlparser2/dist/esm/Parser.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/esm/Parser.js +490 -0
- package/node_modules/htmlparser2/dist/esm/Parser.js.map +1 -0
- package/node_modules/htmlparser2/dist/esm/Tokenizer.d.ts +126 -0
- package/node_modules/htmlparser2/dist/esm/Tokenizer.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/esm/Tokenizer.js +801 -0
- package/node_modules/htmlparser2/dist/esm/Tokenizer.js.map +1 -0
- package/node_modules/htmlparser2/dist/esm/WritableStream.d.ts +15 -0
- package/node_modules/htmlparser2/dist/esm/WritableStream.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/esm/WritableStream.js.map +1 -0
- package/node_modules/htmlparser2/dist/esm/index.d.ts +54 -0
- package/node_modules/htmlparser2/dist/esm/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/esm/index.js +74 -0
- package/node_modules/htmlparser2/dist/esm/index.js.map +1 -0
- package/node_modules/htmlparser2/dist/esm/package.json +3 -0
- package/node_modules/htmlparser2/node_modules/entities/decode.d.ts +3 -0
- package/node_modules/htmlparser2/node_modules/entities/decode.js +3 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.d.ts +205 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.js +568 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.js +92 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.d.ts +46 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.js +138 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +3 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.js +14 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.d.ts +96 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.js +131 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts +17 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts +32 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.js +94 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/package.json +3 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.d.ts +205 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.js +554 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.d.ts +22 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.js +88 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.d.ts +46 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.js +134 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.js +4 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.js +4 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.d.ts +3 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.js +11 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.d.ts +96 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.js +107 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts +17 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.js +18 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.js +28 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.d.ts +32 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.js +91 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/package.json +3 -0
- package/node_modules/htmlparser2/node_modules/entities/escape.d.ts +3 -0
- package/node_modules/htmlparser2/node_modules/entities/escape.js +3 -0
- package/node_modules/htmlparser2/node_modules/entities/package.json +99 -69
- package/node_modules/htmlparser2/node_modules/entities/readme.md +50 -29
- package/node_modules/htmlparser2/node_modules/entities/src/decode-codepoint.ts +81 -0
- package/node_modules/htmlparser2/node_modules/entities/src/decode.ts +685 -0
- package/node_modules/htmlparser2/node_modules/entities/src/encode.ts +93 -0
- package/node_modules/htmlparser2/node_modules/entities/src/escape.ts +161 -0
- package/node_modules/htmlparser2/node_modules/entities/src/generated/.eslintrc.json +10 -0
- package/node_modules/htmlparser2/node_modules/entities/src/generated/decode-data-html.ts +6 -0
- package/node_modules/htmlparser2/node_modules/entities/src/generated/decode-data-xml.ts +6 -0
- package/node_modules/htmlparser2/node_modules/entities/src/generated/encode-html.ts +17 -0
- package/node_modules/htmlparser2/node_modules/entities/src/index.ts +187 -0
- package/node_modules/htmlparser2/node_modules/entities/src/internal/bin-trie-flags.ts +16 -0
- package/node_modules/htmlparser2/node_modules/entities/src/internal/decode-shared.ts +30 -0
- package/node_modules/htmlparser2/node_modules/entities/src/internal/encode-shared.ts +121 -0
- package/node_modules/htmlparser2/package.json +74 -58
- package/node_modules/htmlparser2/src/Parser.ts +663 -0
- package/node_modules/htmlparser2/src/Tokenizer.ts +877 -0
- package/node_modules/htmlparser2/src/WritableStream.ts +43 -0
- package/node_modules/htmlparser2/src/index.ts +115 -0
- package/node_modules/leac/LICENSE +1 -1
- package/node_modules/leac/README.md +91 -12
- package/node_modules/leac/lib/leac.cjs +133 -1
- package/node_modules/leac/lib/leac.d.cts +173 -0
- package/node_modules/leac/lib/leac.d.mts +173 -0
- package/node_modules/leac/lib/leac.mjs +131 -1
- package/node_modules/leac/package.json +51 -37
- package/node_modules/libmime/CHANGELOG.md +14 -0
- package/node_modules/libmime/README.md +9 -7
- package/node_modules/libmime/lib/charset.js +3 -2
- package/node_modules/libmime/lib/libmime.js +13 -0
- package/node_modules/libmime/node_modules/iconv-lite/encodings/sbcs-data.js +2 -0
- package/node_modules/libmime/node_modules/iconv-lite/encodings/utf32.js +10 -3
- package/node_modules/libmime/node_modules/iconv-lite/package.json +2 -2
- package/node_modules/libmime/node_modules/iconv-lite/types/encodings.d.ts +2 -0
- package/node_modules/libmime/package.json +4 -4
- package/node_modules/linkify-it/README.md +3 -4
- package/node_modules/linkify-it/build/index.cjs.js +143 -135
- package/node_modules/linkify-it/index.mjs +109 -105
- package/node_modules/linkify-it/lib/re.mjs +34 -30
- package/node_modules/linkify-it/package.json +20 -15
- package/node_modules/mailparser/.release-please-manifest.json +1 -1
- package/node_modules/mailparser/CHANGELOG.md +42 -0
- package/node_modules/mailparser/SECURITY.md +90 -0
- package/node_modules/mailparser/SECURITY.txt +27 -0
- package/node_modules/mailparser/lib/mail-parser.js +4 -1
- package/node_modules/mailparser/node_modules/iconv-lite/encodings/sbcs-data.js +2 -0
- package/node_modules/mailparser/node_modules/iconv-lite/encodings/utf32.js +10 -3
- package/node_modules/mailparser/node_modules/iconv-lite/package.json +2 -2
- package/node_modules/mailparser/node_modules/iconv-lite/types/encodings.d.ts +2 -0
- package/node_modules/mailparser/package.json +11 -11
- package/node_modules/nodemailer/CHANGELOG.md +86 -0
- package/node_modules/nodemailer/CLAUDE.md +1 -0
- package/node_modules/nodemailer/SECURITY.md +65 -0
- package/node_modules/nodemailer/lib/addressparser/index.js +17 -1
- package/node_modules/nodemailer/lib/base64/index.js +6 -8
- package/node_modules/nodemailer/lib/dkim/relaxed-body.js +1 -1
- package/node_modules/nodemailer/lib/fetch/cookies.js +1 -1
- package/node_modules/nodemailer/lib/fetch/index.js +26 -3
- package/node_modules/nodemailer/lib/mail-composer/index.js +72 -34
- package/node_modules/nodemailer/lib/mailer/index.js +34 -26
- package/node_modules/nodemailer/lib/mailer/mail-message.js +30 -20
- package/node_modules/nodemailer/lib/mime-funcs/mime-types.js +1 -1
- package/node_modules/nodemailer/lib/mime-node/index.js +12 -8
- package/node_modules/nodemailer/lib/nodemailer.js +26 -7
- package/node_modules/nodemailer/lib/sendmail-transport/index.js +14 -2
- package/node_modules/nodemailer/lib/ses-transport/index.js +60 -18
- package/node_modules/nodemailer/lib/shared/index.js +44 -11
- package/node_modules/nodemailer/lib/shared/url.js +151 -0
- package/node_modules/nodemailer/lib/smtp-connection/http-proxy-client.js +36 -6
- package/node_modules/nodemailer/lib/smtp-connection/index.js +120 -31
- package/node_modules/nodemailer/lib/smtp-transport/index.js +38 -11
- package/node_modules/nodemailer/lib/stream-transport/index.js +9 -0
- package/node_modules/nodemailer/lib/xoauth2/index.js +14 -2
- package/node_modules/nodemailer/package.json +9 -10
- package/node_modules/parseley/LICENSE +1 -1
- package/node_modules/parseley/README.md +33 -8
- package/node_modules/parseley/lib/ast.d.cts +183 -0
- package/node_modules/parseley/lib/ast.d.mts +183 -0
- package/node_modules/parseley/lib/parseley.cjs +212 -93
- package/node_modules/parseley/lib/parseley.d.cts +96 -0
- package/node_modules/parseley/lib/parseley.d.mts +96 -0
- package/node_modules/parseley/lib/parseley.mjs +210 -87
- package/node_modules/parseley/package.json +40 -29
- package/node_modules/peberminta/LICENSE +1 -1
- package/node_modules/peberminta/README.md +74 -31
- package/node_modules/peberminta/lib/char.cjs +37 -19
- package/node_modules/peberminta/lib/char.d.cts +165 -0
- package/node_modules/peberminta/lib/char.d.mts +165 -0
- package/node_modules/peberminta/lib/char.mjs +31 -11
- package/node_modules/peberminta/lib/core.cjs +351 -218
- package/node_modules/peberminta/lib/core.d.cts +1355 -0
- package/node_modules/peberminta/lib/core.d.mts +1355 -0
- package/node_modules/peberminta/lib/core.mjs +336 -210
- package/node_modules/peberminta/lib/util/util.cjs +11 -0
- package/node_modules/peberminta/package.json +65 -61
- package/node_modules/selderee/LICENSE +1 -1
- package/node_modules/selderee/README.md +18 -18
- package/node_modules/selderee/lib/selderee.cjs +90 -79
- package/node_modules/selderee/lib/selderee.d.cts +289 -0
- package/node_modules/selderee/lib/selderee.d.mts +289 -0
- package/node_modules/selderee/lib/selderee.mjs +86 -72
- package/node_modules/selderee/package.json +15 -7
- package/node_modules/uuid/README.md +196 -171
- package/node_modules/uuid/dist/index.d.ts +15 -0
- package/node_modules/uuid/dist/index.js +14 -79
- package/node_modules/uuid/dist/max.d.ts +2 -0
- package/node_modules/uuid/dist/max.js +1 -0
- package/node_modules/uuid/dist/md5.d.ts +2 -0
- package/node_modules/uuid/dist/md5.js +134 -22
- package/node_modules/uuid/dist/nil.d.ts +2 -0
- package/node_modules/uuid/dist/nil.js +1 -8
- package/node_modules/uuid/dist/parse.d.ts +3 -0
- package/node_modules/uuid/dist/parse.js +7 -43
- package/node_modules/uuid/dist/regex.d.ts +2 -0
- package/node_modules/uuid/dist/regex.js +1 -8
- package/node_modules/uuid/dist/rng.d.ts +1 -0
- package/node_modules/uuid/dist/rng.js +4 -24
- package/node_modules/uuid/dist/sha1.d.ts +2 -0
- package/node_modules/uuid/dist/sha1.js +68 -21
- package/node_modules/uuid/dist/stringify.d.ts +3 -0
- package/node_modules/uuid/dist/stringify.js +29 -38
- package/node_modules/uuid/dist/types.d.ts +22 -0
- package/node_modules/uuid/dist/types.js +1 -0
- package/node_modules/uuid/dist/uuid-bin.d.ts +1 -0
- package/node_modules/uuid/dist/uuid-bin.js +61 -76
- package/node_modules/uuid/dist/v1.d.ts +11 -0
- package/node_modules/uuid/dist/v1.js +79 -103
- package/node_modules/uuid/dist/v1ToV6.d.ts +3 -0
- package/node_modules/uuid/dist/v1ToV6.js +10 -0
- package/node_modules/uuid/dist/v3.d.ts +9 -0
- package/node_modules/uuid/dist/v3.js +9 -16
- package/node_modules/uuid/dist/v35.d.ts +7 -0
- package/node_modules/uuid/dist/v35.js +34 -75
- package/node_modules/uuid/dist/v4.d.ts +4 -0
- package/node_modules/uuid/dist/v4.js +26 -40
- package/node_modules/uuid/dist/v5.d.ts +9 -0
- package/node_modules/uuid/dist/v5.js +9 -16
- package/node_modules/uuid/dist/v6.d.ts +4 -0
- package/node_modules/uuid/dist/v6.js +20 -0
- package/node_modules/uuid/dist/v6ToV1.d.ts +2 -0
- package/node_modules/uuid/dist/v6ToV1.js +10 -0
- package/node_modules/uuid/dist/v7.d.ts +9 -0
- package/node_modules/uuid/dist/v7.js +65 -0
- package/node_modules/uuid/dist/validate.d.ts +2 -0
- package/node_modules/uuid/dist/validate.js +3 -15
- package/node_modules/uuid/dist/version.d.ts +2 -0
- package/node_modules/uuid/dist/version.js +6 -19
- package/node_modules/uuid/dist-node/bin/uuid +2 -0
- package/node_modules/uuid/dist-node/index.js +14 -0
- package/node_modules/uuid/dist-node/max.js +1 -0
- package/node_modules/uuid/dist-node/md5.js +11 -0
- package/node_modules/uuid/dist-node/nil.js +1 -0
- package/node_modules/uuid/dist-node/parse.js +9 -0
- package/node_modules/uuid/dist-node/regex.js +1 -0
- package/node_modules/uuid/dist-node/rng.js +4 -0
- package/node_modules/uuid/dist-node/sha1.js +11 -0
- package/node_modules/uuid/dist-node/stringify.js +35 -0
- package/node_modules/uuid/dist-node/types.js +1 -0
- package/node_modules/uuid/dist-node/uuid-bin.js +70 -0
- package/node_modules/uuid/dist-node/v1.js +83 -0
- package/node_modules/uuid/dist-node/v1ToV6.js +10 -0
- package/node_modules/uuid/dist-node/v3.js +9 -0
- package/node_modules/uuid/dist-node/v35.js +39 -0
- package/node_modules/uuid/dist-node/v4.js +29 -0
- package/node_modules/uuid/dist-node/v5.js +9 -0
- package/node_modules/uuid/dist-node/v6.js +20 -0
- package/node_modules/uuid/dist-node/v6ToV1.js +10 -0
- package/node_modules/uuid/dist-node/v7.js +65 -0
- package/node_modules/uuid/dist-node/validate.js +5 -0
- package/node_modules/uuid/dist-node/version.js +8 -0
- package/node_modules/uuid/package.json +66 -87
- package/package.json +37 -38
- package/node_modules/@aws-crypto/crc32/CHANGELOG.md +0 -100
- package/node_modules/@aws-crypto/crc32/LICENSE +0 -201
- package/node_modules/@aws-crypto/crc32/README.md +0 -16
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js +0 -31
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/main/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/main/index.js +0 -108
- package/node_modules/@aws-crypto/crc32/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js +0 -28
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/module/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/module/index.js +0 -103
- package/node_modules/@aws-crypto/crc32/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/package.json +0 -32
- package/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +0 -24
- package/node_modules/@aws-crypto/crc32/src/index.ts +0 -92
- package/node_modules/@aws-crypto/crc32/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/crc32/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/crc32c/CHANGELOG.md +0 -76
- package/node_modules/@aws-crypto/crc32c/LICENSE +0 -201
- package/node_modules/@aws-crypto/crc32c/README.md +0 -16
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js +0 -31
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/main/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/main/index.js +0 -78
- package/node_modules/@aws-crypto/crc32c/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js +0 -28
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/module/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/module/index.js +0 -73
- package/node_modules/@aws-crypto/crc32c/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/package.json +0 -32
- package/node_modules/@aws-crypto/crc32c/src/aws_crc32c.ts +0 -24
- package/node_modules/@aws-crypto/crc32c/src/index.ts +0 -64
- package/node_modules/@aws-crypto/crc32c/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/crc32c/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha1-browser/CHANGELOG.md +0 -62
- package/node_modules/@aws-crypto/sha1-browser/LICENSE +0 -202
- package/node_modules/@aws-crypto/sha1-browser/README.md +0 -21
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js +0 -31
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.d.ts +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js +0 -29
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.js +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js +0 -11
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.d.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js +0 -61
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js +0 -28
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.d.ts +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js +0 -26
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.js +0 -3
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js +0 -7
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.d.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js +0 -58
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/package.json +0 -66
- package/node_modules/@aws-crypto/sha1-browser/package.json +0 -35
- package/node_modules/@aws-crypto/sha1-browser/src/constants.ts +0 -29
- package/node_modules/@aws-crypto/sha1-browser/src/crossPlatformSha1.ts +0 -29
- package/node_modules/@aws-crypto/sha1-browser/src/index.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/src/isEmptyData.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/src/webCryptoSha1.ts +0 -79
- package/node_modules/@aws-crypto/sha1-browser/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha1-browser/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +0 -118
- package/node_modules/@aws-crypto/sha256-browser/LICENSE +0 -202
- package/node_modules/@aws-crypto/sha256-browser/README.md +0 -31
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +0 -43
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +0 -30
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +0 -11
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +0 -56
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +0 -40
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +0 -27
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +0 -7
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +0 -53
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/package.json +0 -66
- package/node_modules/@aws-crypto/sha256-browser/package.json +0 -33
- package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +0 -41
- package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +0 -30
- package/node_modules/@aws-crypto/sha256-browser/src/index.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +0 -9
- package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +0 -71
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +0 -106
- package/node_modules/@aws-crypto/sha256-js/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-js/README.md +0 -29
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +0 -124
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js +0 -98
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +0 -85
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +0 -322
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +0 -121
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js +0 -95
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js +0 -2
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +0 -82
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +0 -319
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/package.json +0 -32
- package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +0 -164
- package/node_modules/@aws-crypto/sha256-js/src/constants.ts +0 -98
- package/node_modules/@aws-crypto/sha256-js/src/index.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +0 -94
- package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +0 -401
- package/node_modules/@aws-crypto/sha256-js/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +0 -66
- package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +0 -202
- package/node_modules/@aws-crypto/supports-web-crypto/README.md +0 -32
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +0 -5
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +0 -4
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +0 -69
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +0 -2
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +0 -4
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +0 -62
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/package.json +0 -28
- package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +0 -76
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/util/CHANGELOG.md +0 -71
- package/node_modules/@aws-crypto/util/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/README.md +0 -16
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +0 -24
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/build/main/index.js +0 -14
- package/node_modules/@aws-crypto/util/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js +0 -13
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js +0 -15
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +0 -20
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +0 -20
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/build/module/index.js +0 -7
- package/node_modules/@aws-crypto/util/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js +0 -9
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js +0 -11
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +0 -16
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/package.json +0 -66
- package/node_modules/@aws-crypto/util/package.json +0 -32
- package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +0 -30
- package/node_modules/@aws-crypto/util/src/index.ts +0 -7
- package/node_modules/@aws-crypto/util/src/isEmptyData.ts +0 -12
- package/node_modules/@aws-crypto/util/src/numToUint8.ts +0 -11
- package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +0 -16
- package/node_modules/@aws-crypto/util/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/util/tsconfig.module.json +0 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/models/CloudWatchLogsServiceException.js +0 -12
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/models/errors.js +0 -285
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.browser.js +0 -40
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.js +0 -56
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.shared.js +0 -44
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/schemas/schemas_0.js +0 -3119
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/models/Route53ServiceException.js +0 -12
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/models/errors.js +0 -916
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.shared.js +0 -44
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/schemas/schemas_0.js +0 -2255
- package/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-route-53/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +0 -126
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +0 -33
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +0 -12
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +0 -203
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +0 -46
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +0 -68
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +0 -56
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +0 -3258
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ses/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
- package/node_modules/@aws-sdk/client-ses/dist-cjs/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/client-ses/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-ses/dist-cjs/models/SESServiceException.js +0 -12
- package/node_modules/@aws-sdk/client-ses/dist-cjs/models/errors.js +0 -504
- package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.shared.js +0 -44
- package/node_modules/@aws-sdk/client-ses/dist-cjs/schemas/schemas_0.js +0 -1812
- package/node_modules/@aws-sdk/client-ses/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-ses/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +0 -12
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +0 -2059
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +0 -44
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +0 -5616
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/crc64-nvme/LICENSE +0 -201
- package/node_modules/@aws-sdk/crc64-nvme/README.md +0 -61
- package/node_modules/@aws-sdk/crc64-nvme/dist-cjs/index.js +0 -101
- package/node_modules/@aws-sdk/crc64-nvme/dist-es/Crc64Nvme.js +0 -92
- package/node_modules/@aws-sdk/crc64-nvme/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/Crc64Nvme.d.ts +0 -24
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/crc64-nvme-crt-container.d.ts +0 -13
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/Crc64Nvme.d.ts +0 -9
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/crc64-nvme/package.json +0 -50
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +0 -46
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +0 -31
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +0 -70
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +0 -2
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +0 -53
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +0 -17
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +0 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +0 -34
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +0 -62
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js +0 -352
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/NodeDisableMultiregionAccessPointConfigOptions.js +0 -8
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/NodeUseArnRegionConfigOptions.js +0 -8
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/bucketEndpointMiddleware.js +0 -81
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/index.js +0 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -4
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/NodeUseArnRegionConfigOptions.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/bucketHostnameUtils.d.ts +0 -174
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeUseArnRegionConfigOptions.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketHostnameUtils.d.ts +0 -80
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/index.d.ts +0 -16
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +0 -60
- package/node_modules/@aws-sdk/middleware-expect-continue/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-expect-continue/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js +0 -48
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-es/index.js +0 -41
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/index.d.ts +0 -12
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/ts3.4/index.d.ts +0 -22
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +0 -58
- package/node_modules/@aws-sdk/middleware-flexible-checksums/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-flexible-checksums/README.md +0 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/getCrc32ChecksumAlgorithmFunction.browser.js +0 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/getCrc32ChecksumAlgorithmFunction.js +0 -26
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +0 -451
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsMiddleware.js +0 -123
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsResponseMiddleware.js +0 -48
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getCrc32ChecksumAlgorithmFunction.browser.js +0 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getCrc32ChecksumAlgorithmFunction.js +0 -21
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +0 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/isStreaming.js +0 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/resolveFlexibleChecksumsConfig.js +0 -11
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/selectChecksumAlgorithmFunction.js +0 -32
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/stringHasher.js +0 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/validateChecksumFromResponse.js +0 -45
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getCrc32ChecksumAlgorithmFunction.d.ts +0 -10
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getCrc32ChecksumAlgorithmFunction.d.ts +0 -12
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/index.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/validateChecksumFromResponse.d.ts +0 -12
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/validateChecksumFromResponse.d.ts +0 -13
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +0 -78
- package/node_modules/@aws-sdk/middleware-host-header/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +0 -41
- package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +0 -33
- package/node_modules/@aws-sdk/middleware-host-header/package.json +0 -59
- package/node_modules/@aws-sdk/middleware-location-constraint/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-location-constraint/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-cjs/index.js +0 -30
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +0 -57
- package/node_modules/@aws-sdk/middleware-logger/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-logger/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +0 -48
- package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +0 -1
- package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +0 -1
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@aws-sdk/middleware-logger/package.json +0 -59
- package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +0 -17
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +0 -29
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +0 -33
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +0 -5
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +0 -7
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +0 -29
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +0 -5
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +0 -63
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/check-content-length-header.js +0 -32
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-expires-middleware.js +0 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/SignatureV4S3Express.js +0 -41
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/constants.js +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressHttpSigningMiddleware.js +0 -38
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressMiddleware.js +0 -41
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js +0 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3Configuration.js +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +0 -67
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/validate-bucket-name.js +0 -25
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/SignatureV4S3Express.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/constants.d.ts +0 -37
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -27
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3Configuration.d.ts +0 -79
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts +0 -20
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/SignatureV4S3Express.d.ts +0 -19
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/constants.d.ts +0 -11
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -40
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/index.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3Configuration.d.ts +0 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/validate-bucket-name.d.ts +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/validate-bucket-name.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-ssec/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-ssec/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js +0 -73
- package/node_modules/@aws-sdk/middleware-ssec/package.json +0 -57
- package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-user-agent/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +0 -194
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +0 -49
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +0 -82
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +0 -63
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +0 -60
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/ruleset.js +0 -146
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/CognitoIdentityServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/errors.js +0 -121
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +0 -50
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/schemas/schemas_0.js +0 -110
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +0 -133
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/SigninServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/errors.js +0 -64
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +0 -39
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/schemas/schemas_0.js +0 -125
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/ruleset.js +0 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/SSOServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/errors.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/schemas/schemas_0.js +0 -90
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +0 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/SSOOIDCServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/errors.js +0 -195
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/schemas/schemas_0.js +0 -140
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +0 -43
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +0 -62
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +0 -19
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +0 -145
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/STSServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +0 -95
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +0 -39
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +0 -68
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +0 -50
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +0 -13
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/schemas/schemas_0.js +0 -195
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/ruleset.js +0 -143
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +0 -130
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/ruleset.js +0 -103
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +0 -103
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +0 -142
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/region-config-resolver/LICENSE +0 -201
- package/node_modules/@aws-sdk/region-config-resolver/README.md +0 -19
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +0 -38
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +0 -20
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +0 -6
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +0 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +0 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +0 -16
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +0 -15
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +0 -14
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +0 -11
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +0 -7
- package/node_modules/@aws-sdk/region-config-resolver/package.json +0 -62
- package/node_modules/@aws-sdk/util-arn-parser/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-arn-parser/README.md +0 -4
- package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +0 -27
- package/node_modules/@aws-sdk/util-arn-parser/package.json +0 -55
- package/node_modules/@aws-sdk/util-endpoints/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-endpoints/README.md +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +0 -406
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +0 -267
- package/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +0 -10
- package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +0 -3
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +0 -25
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +0 -41
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +0 -267
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +0 -21
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +0 -2
- package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +0 -3
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +0 -2
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +0 -3
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +0 -5
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +0 -12
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/package.json +0 -60
- package/node_modules/@aws-sdk/util-locate-window/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-locate-window/README.md +0 -4
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -14
- package/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +0 -10
- package/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@aws-sdk/util-locate-window/package.json +0 -54
- package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-user-agent-browser/README.md +0 -29
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +0 -2
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +0 -57
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +0 -58
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +0 -22
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +0 -14
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +0 -9
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +0 -55
- package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-user-agent-node/README.md +0 -17
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +0 -185
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +0 -36
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getNodeModulesParentDirs.js +0 -15
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedDevTypeScriptVersion.js +0 -14
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedTypeScriptVersion.js +0 -9
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +0 -75
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +0 -9
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getNodeModulesParentDirs.d.ts +0 -10
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedDevTypeScriptVersion.d.ts +0 -8
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedTypeScriptVersion.d.ts +0 -8
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getTypeScriptUserAgentPair.d.ts +0 -6
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +0 -13
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getNodeModulesParentDirs.d.ts +0 -1
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedDevTypeScriptVersion.d.ts +0 -3
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedTypeScriptVersion.d.ts +0 -3
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getTypeScriptUserAgentPair.d.ts +0 -4
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +0 -6
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +0 -69
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +0 -23
- package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.d.ts +0 -16
- package/node_modules/@smithy/chunked-blob-reader/LICENSE +0 -201
- package/node_modules/@smithy/chunked-blob-reader/README.md +0 -10
- package/node_modules/@smithy/chunked-blob-reader/dist-cjs/index.js +0 -13
- package/node_modules/@smithy/chunked-blob-reader/dist-types/index.d.ts +0 -5
- package/node_modules/@smithy/chunked-blob-reader/dist-types/ts3.4/index.d.ts +0 -5
- package/node_modules/@smithy/chunked-blob-reader/package.json +0 -60
- package/node_modules/@smithy/chunked-blob-reader-native/LICENSE +0 -201
- package/node_modules/@smithy/chunked-blob-reader-native/README.md +0 -10
- package/node_modules/@smithy/chunked-blob-reader-native/dist-cjs/index.js +0 -32
- package/node_modules/@smithy/chunked-blob-reader-native/dist-es/index.js +0 -27
- package/node_modules/@smithy/chunked-blob-reader-native/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/chunked-blob-reader-native/package.json +0 -61
- package/node_modules/@smithy/config-resolver/LICENSE +0 -201
- package/node_modules/@smithy/config-resolver/README.md +0 -17
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +0 -198
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +0 -4
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +0 -10
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/index.js +0 -3
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +0 -15
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +0 -12
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +0 -2
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +0 -3
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -23
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -23
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +0 -16
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +0 -57
- package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +0 -17
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +0 -8
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +0 -12
- package/node_modules/@smithy/config-resolver/package.json +0 -65
- package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -21
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +0 -21
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -46
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/resolveAuthOptions.js +0 -24
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +0 -19
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +0 -27
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +0 -5
- package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +0 -10
- package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +0 -44
- package/node_modules/@smithy/core/dist-cjs/request-builder/requestBuilder.js +0 -5
- package/node_modules/@smithy/core/dist-cjs/setFeature.js +0 -14
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +0 -17
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +0 -38
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +0 -15
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +0 -9
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +0 -61
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -42
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +0 -3
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +0 -23
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +0 -2
- package/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +0 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +0 -17
- package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +0 -2
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +0 -13
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +0 -34
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +0 -11
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +0 -3
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +0 -3
- package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +0 -5
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +0 -18
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +0 -18
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +0 -33
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +0 -3
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +0 -2
- package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +0 -7
- package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +0 -5
- package/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +0 -2
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +0 -8
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +0 -8
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +0 -3
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +0 -3
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +0 -30
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +0 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-codec/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-codec/README.md +0 -17
- package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +0 -401
- package/node_modules/@smithy/eventstream-codec/dist-es/EventStreamCodec.js +0 -65
- package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +0 -184
- package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +0 -44
- package/node_modules/@smithy/eventstream-codec/dist-es/TestVectors.fixture.js +0 -146
- package/node_modules/@smithy/eventstream-codec/dist-es/index.js +0 -8
- package/node_modules/@smithy/eventstream-codec/dist-es/splitMessage.js +0 -30
- package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +0 -31
- package/node_modules/@smithy/eventstream-codec/dist-types/TestVectors.fixture.d.ts +0 -2
- package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-codec/dist-types/vectorTypes.fixture.d.ts +0 -12
- package/node_modules/@smithy/eventstream-codec/package.json +0 -64
- package/node_modules/@smithy/eventstream-serde-browser/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-browser/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +0 -58
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +0 -20
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/index.js +0 -3
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/utils.js +0 -28
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +0 -47
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts +0 -13
- package/node_modules/@smithy/eventstream-serde-browser/package.json +0 -60
- package/node_modules/@smithy/eventstream-serde-config-resolver/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-config-resolver/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js +0 -7
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-es/index.js +0 -1
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +0 -61
- package/node_modules/@smithy/eventstream-serde-node/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-node/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +0 -53
- package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +0 -19
- package/node_modules/@smithy/eventstream-serde-node/dist-es/index.js +0 -2
- package/node_modules/@smithy/eventstream-serde-node/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-node/dist-es/utils.js +0 -26
- package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +0 -23
- package/node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +0 -12
- package/node_modules/@smithy/eventstream-serde-node/package.json +0 -61
- package/node_modules/@smithy/eventstream-serde-universal/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-universal/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +0 -132
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +0 -25
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/index.js +0 -2
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +0 -23
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +0 -18
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-universal/package.json +0 -65
- package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +0 -53
- package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +0 -2
- package/node_modules/@smithy/hash-blob-browser/LICENSE +0 -201
- package/node_modules/@smithy/hash-blob-browser/README.md +0 -17
- package/node_modules/@smithy/hash-blob-browser/dist-cjs/index.js +0 -13
- package/node_modules/@smithy/hash-blob-browser/dist-es/index.js +0 -8
- package/node_modules/@smithy/hash-blob-browser/package.json +0 -69
- package/node_modules/@smithy/hash-node/LICENSE +0 -201
- package/node_modules/@smithy/hash-node/README.md +0 -17
- package/node_modules/@smithy/hash-node/dist-cjs/index.js +0 -42
- package/node_modules/@smithy/hash-node/dist-es/index.js +0 -37
- package/node_modules/@smithy/hash-node/package.json +0 -64
- package/node_modules/@smithy/hash-stream-node/LICENSE +0 -201
- package/node_modules/@smithy/hash-stream-node/README.md +0 -17
- package/node_modules/@smithy/hash-stream-node/dist-cjs/index.js +0 -67
- package/node_modules/@smithy/hash-stream-node/dist-es/HashCalculator.js +0 -18
- package/node_modules/@smithy/hash-stream-node/dist-es/fileStreamHasher.js +0 -24
- package/node_modules/@smithy/hash-stream-node/dist-es/index.js +0 -2
- package/node_modules/@smithy/hash-stream-node/dist-types/HashCalculator.d.ts +0 -11
- package/node_modules/@smithy/hash-stream-node/dist-types/fileStreamHasher.d.ts +0 -6
- package/node_modules/@smithy/hash-stream-node/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/hash-stream-node/dist-types/readableStreamHasher.d.ts +0 -6
- package/node_modules/@smithy/hash-stream-node/package.json +0 -64
- package/node_modules/@smithy/invalid-dependency/LICENSE +0 -201
- package/node_modules/@smithy/invalid-dependency/README.md +0 -17
- package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +0 -10
- package/node_modules/@smithy/invalid-dependency/dist-es/index.js +0 -2
- package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/invalid-dependency/package.json +0 -60
- package/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -6
- package/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
- package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/is-array-buffer/package.json +0 -61
- package/node_modules/@smithy/md5-js/LICENSE +0 -201
- package/node_modules/@smithy/md5-js/README.md +0 -17
- package/node_modules/@smithy/md5-js/dist-cjs/index.js +0 -176
- package/node_modules/@smithy/md5-js/dist-es/constants.js +0 -3
- package/node_modules/@smithy/md5-js/dist-es/index.js +0 -168
- package/node_modules/@smithy/md5-js/dist-types/constants.d.ts +0 -12
- package/node_modules/@smithy/md5-js/dist-types/index.d.ts +0 -16
- package/node_modules/@smithy/md5-js/package.json +0 -65
- package/node_modules/@smithy/middleware-content-length/LICENSE +0 -201
- package/node_modules/@smithy/middleware-content-length/README.md +0 -17
- package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +0 -46
- package/node_modules/@smithy/middleware-content-length/dist-es/index.js +0 -39
- package/node_modules/@smithy/middleware-content-length/package.json +0 -63
- package/node_modules/@smithy/middleware-endpoint/LICENSE +0 -201
- package/node_modules/@smithy/middleware-endpoint/README.md +0 -17
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +0 -5
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +0 -7
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +0 -35
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +0 -264
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +0 -3
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +0 -64
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +0 -31
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +0 -2
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +0 -17
- package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +0 -36
- package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +0 -18
- package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +0 -6
- package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +0 -24
- package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +0 -28
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +0 -2
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +0 -8
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +0 -6
- package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +0 -10
- package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +0 -11
- package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +0 -18
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +0 -109
- package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +0 -4
- package/node_modules/@smithy/middleware-endpoint/package.json +0 -74
- package/node_modules/@smithy/middleware-retry/LICENSE +0 -201
- package/node_modules/@smithy/middleware-retry/README.md +0 -24
- package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +0 -396
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +0 -5
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +0 -7
- package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +0 -48
- package/node_modules/@smithy/middleware-retry/dist-es/index.js +0 -8
- package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +0 -3
- package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +0 -22
- package/node_modules/@smithy/middleware-retry/dist-es/parseRetryAfterHeader.js +0 -49
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +0 -21
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/StandardRetryStrategy.js +0 -94
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/defaultRetryQuota.js +0 -27
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/delayDecider.js +0 -2
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/retryDecider.js +0 -7
- package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +0 -105
- package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +0 -68
- package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +0 -24
- package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +0 -14
- package/node_modules/@smithy/middleware-retry/package.json +0 -79
- package/node_modules/@smithy/middleware-serde/LICENSE +0 -201
- package/node_modules/@smithy/middleware-serde/README.md +0 -17
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +0 -104
- package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +0 -58
- package/node_modules/@smithy/middleware-serde/dist-es/index.js +0 -3
- package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/middleware-serde/package.json +0 -65
- package/node_modules/@smithy/middleware-stack/LICENSE +0 -201
- package/node_modules/@smithy/middleware-stack/README.md +0 -91
- package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +0 -285
- package/node_modules/@smithy/middleware-stack/dist-es/index.js +0 -1
- package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +0 -1
- package/node_modules/@smithy/middleware-stack/package.json +0 -63
- package/node_modules/@smithy/node-config-provider/LICENSE +0 -201
- package/node_modules/@smithy/node-config-provider/README.md +0 -17
- package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +0 -62
- package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +0 -9
- package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +0 -14
- package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +0 -23
- package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +0 -3
- package/node_modules/@smithy/node-config-provider/dist-es/index.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +0 -31
- package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +0 -22
- package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/node-config-provider/package.json +0 -65
- package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -21
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -8
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -21
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -13
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -13
- package/node_modules/@smithy/property-provider/LICENSE +0 -201
- package/node_modules/@smithy/property-provider/README.md +0 -17
- package/node_modules/@smithy/property-provider/dist-cjs/index.js +0 -117
- package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +0 -1
- package/node_modules/@smithy/property-provider/dist-es/index.js +0 -6
- package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +0 -31
- package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +0 -39
- package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +0 -31
- package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +0 -13
- package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +0 -5
- package/node_modules/@smithy/property-provider/dist-types/index.d.ts +0 -24
- package/node_modules/@smithy/property-provider/package.json +0 -60
- package/node_modules/@smithy/protocol-http/LICENSE +0 -201
- package/node_modules/@smithy/protocol-http/README.md +0 -17
- package/node_modules/@smithy/protocol-http/dist-cjs/index.js +0 -169
- package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-es/index.js +0 -8
- package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +0 -50
- package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +0 -33
- package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +0 -1
- package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +0 -35
- package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +0 -56
- package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/protocol-http/package.json +0 -61
- package/node_modules/@smithy/querystring-builder/LICENSE +0 -201
- package/node_modules/@smithy/querystring-builder/README.md +0 -17
- package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +0 -26
- package/node_modules/@smithy/querystring-builder/dist-es/index.js +0 -21
- package/node_modules/@smithy/querystring-builder/package.json +0 -60
- package/node_modules/@smithy/querystring-parser/LICENSE +0 -201
- package/node_modules/@smithy/querystring-parser/README.md +0 -17
- package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +0 -27
- package/node_modules/@smithy/querystring-parser/package.json +0 -60
- package/node_modules/@smithy/service-error-classification/LICENSE +0 -201
- package/node_modules/@smithy/service-error-classification/README.md +0 -17
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +0 -77
- package/node_modules/@smithy/service-error-classification/dist-es/constants.js +0 -28
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +0 -39
- package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +0 -24
- package/node_modules/@smithy/service-error-classification/package.json +0 -59
- package/node_modules/@smithy/shared-ini-file-loader/LICENSE +0 -201
- package/node_modules/@smithy/shared-ini-file-loader/README.md +0 -105
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +0 -26
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +0 -12
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +0 -15
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +0 -196
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +0 -16
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +0 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +0 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +0 -22
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +0 -8
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +0 -11
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +0 -10
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +0 -39
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +0 -8
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +0 -52
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +0 -6
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +0 -10
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +0 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +0 -18
- package/node_modules/@smithy/shared-ini-file-loader/package.json +0 -72
- package/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +0 -399
- package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +0 -14
- package/node_modules/@smithy/smithy-client/LICENSE +0 -201
- package/node_modules/@smithy/smithy-client/README.md +0 -17
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +0 -635
- package/node_modules/@smithy/smithy-client/dist-es/client.js +0 -51
- package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/command.js +0 -124
- package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +0 -49
- package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +0 -9
- package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +0 -12
- package/node_modules/@smithy/smithy-client/dist-es/index.js +0 -20
- package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +0 -87
- package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +0 -119
- package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +0 -18
- package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +0 -15
- package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +0 -8
- package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +0 -42
- package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +0 -26
- package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -38
- package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +0 -1
- package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +0 -7
- package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +0 -7
- package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +0 -21
- package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +0 -162
- package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +0 -15
- package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +0 -12
- package/node_modules/@smithy/smithy-client/package.json +0 -69
- package/node_modules/@smithy/url-parser/LICENSE +0 -201
- package/node_modules/@smithy/url-parser/README.md +0 -17
- package/node_modules/@smithy/url-parser/dist-cjs/index.js +0 -23
- package/node_modules/@smithy/url-parser/dist-es/index.js +0 -18
- package/node_modules/@smithy/url-parser/package.json +0 -61
- package/node_modules/@smithy/util-base64/LICENSE +0 -201
- package/node_modules/@smithy/util-base64/README.md +0 -4
- package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +0 -12
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +0 -40
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +0 -16
- package/node_modules/@smithy/util-base64/dist-cjs/index.js +0 -27
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +0 -38
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +0 -19
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +0 -36
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +0 -12
- package/node_modules/@smithy/util-base64/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +0 -35
- package/node_modules/@smithy/util-base64/dist-es/toBase64.js +0 -15
- package/node_modules/@smithy/util-base64/dist-types/index.d.ts +0 -2
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +0 -5
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +0 -8
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +0 -7
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +0 -9
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +0 -8
- package/node_modules/@smithy/util-base64/package.json +0 -74
- package/node_modules/@smithy/util-body-length-browser/LICENSE +0 -201
- package/node_modules/@smithy/util-body-length-browser/README.md +0 -12
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +0 -30
- package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/package.json +0 -61
- package/node_modules/@smithy/util-body-length-node/LICENSE +0 -201
- package/node_modules/@smithy/util-body-length-node/README.md +0 -12
- package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +0 -32
- package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +0 -27
- package/node_modules/@smithy/util-body-length-node/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/package.json +0 -62
- package/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -20
- package/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@smithy/util-buffer-from/package.json +0 -62
- package/node_modules/@smithy/util-config-provider/LICENSE +0 -201
- package/node_modules/@smithy/util-config-provider/README.md +0 -4
- package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +0 -30
- package/node_modules/@smithy/util-config-provider/dist-es/index.js +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +0 -10
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +0 -9
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +0 -4
- package/node_modules/@smithy/util-config-provider/package.json +0 -63
- package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +0 -201
- package/node_modules/@smithy/util-defaults-mode-browser/README.md +0 -17
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +0 -4
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +0 -16
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +0 -34
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +0 -23
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +0 -30
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +0 -19
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +0 -12
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +0 -16
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +0 -65
- package/node_modules/@smithy/util-defaults-mode-node/LICENSE +0 -201
- package/node_modules/@smithy/util-defaults-mode-node/README.md +0 -17
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +0 -74
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +0 -6
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +0 -52
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +0 -24
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +0 -6
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
- package/node_modules/@smithy/util-defaults-mode-node/package.json +0 -66
- package/node_modules/@smithy/util-endpoints/LICENSE +0 -201
- package/node_modules/@smithy/util-endpoints/README.md +0 -17
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +0 -472
- package/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +0 -2
- package/node_modules/@smithy/util-endpoints/dist-es/index.js +0 -6
- package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +0 -11
- package/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +0 -9
- package/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +0 -9
- package/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +0 -27
- package/node_modules/@smithy/util-endpoints/dist-es/types/index.js +0 -7
- package/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +0 -12
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +0 -14
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +0 -22
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +0 -27
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +0 -14
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +0 -29
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +0 -42
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +0 -36
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +0 -12
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +0 -28
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +0 -7
- package/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +0 -34
- package/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +0 -6
- package/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +0 -9
- package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +0 -5
- package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -6
- package/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +0 -25
- package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +0 -11
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/package.json +0 -68
- package/node_modules/@smithy/util-hex-encoding/LICENSE +0 -201
- package/node_modules/@smithy/util-hex-encoding/README.md +0 -4
- package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +0 -38
- package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +0 -12
- package/node_modules/@smithy/util-hex-encoding/package.json +0 -61
- package/node_modules/@smithy/util-middleware/LICENSE +0 -201
- package/node_modules/@smithy/util-middleware/README.md +0 -17
- package/node_modules/@smithy/util-middleware/dist-cjs/index.js +0 -15
- package/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +0 -2
- package/node_modules/@smithy/util-middleware/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +0 -5
- package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-middleware/package.json +0 -66
- package/node_modules/@smithy/util-retry/LICENSE +0 -201
- package/node_modules/@smithy/util-retry/README.md +0 -78
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +0 -333
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +0 -33
- package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +0 -19
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +0 -110
- package/node_modules/@smithy/util-retry/dist-es/DefaultRetryToken.js +0 -25
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +0 -83
- package/node_modules/@smithy/util-retry/dist-es/index.js +0 -8
- package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -38
- package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +0 -32
- package/node_modules/@smithy/util-retry/dist-types/DefaultRetryToken.d.ts +0 -15
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +0 -48
- package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +0 -60
- package/node_modules/@smithy/util-retry/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-retry/dist-types/retries-2026-config.d.ts +0 -11
- package/node_modules/@smithy/util-retry/package.json +0 -70
- package/node_modules/@smithy/util-stream/LICENSE +0 -201
- package/node_modules/@smithy/util-stream/README.md +0 -6
- package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +0 -36
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +0 -7
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +0 -64
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +0 -39
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +0 -12
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +0 -60
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +0 -103
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +0 -31
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +0 -41
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +0 -34
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +0 -42
- package/node_modules/@smithy/util-stream/dist-cjs/index.js +0 -108
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +0 -68
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +0 -54
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +0 -10
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +0 -16
- package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +0 -10
- package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +0 -23
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +0 -60
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +0 -35
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +0 -9
- package/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +0 -57
- package/node_modules/@smithy/util-stream/dist-es/headStream.js +0 -38
- package/node_modules/@smithy/util-stream/dist-es/index.js +0 -9
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +0 -64
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +0 -50
- package/node_modules/@smithy/util-stream/dist-es/splitStream.js +0 -13
- package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +0 -22
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +0 -61
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +0 -14
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +0 -13
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +0 -15
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +0 -50
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +0 -10
- package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +0 -9
- package/node_modules/@smithy/util-stream/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +0 -8
- package/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +0 -11
- package/node_modules/@smithy/util-stream/package.json +0 -98
- package/node_modules/@smithy/util-uri-escape/LICENSE +0 -201
- package/node_modules/@smithy/util-uri-escape/README.md +0 -10
- package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +0 -9
- package/node_modules/@smithy/util-uri-escape/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +0 -4
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +0 -4
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/util-uri-escape/package.json +0 -60
- package/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -32
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/package.json +0 -67
- package/node_modules/@smithy/util-waiter/LICENSE +0 -201
- package/node_modules/@smithy/util-waiter/README.md +0 -17
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +0 -179
- package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +0 -48
- package/node_modules/@smithy/util-waiter/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +0 -60
- package/node_modules/@smithy/util-waiter/dist-es/utils/index.js +0 -2
- package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +0 -11
- package/node_modules/@smithy/util-waiter/dist-types/index.d.ts +0 -2
- package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +0 -10
- package/node_modules/@smithy/util-waiter/dist-types/utils/index.d.ts +0 -8
- package/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +0 -8
- package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +0 -49
- package/node_modules/@smithy/util-waiter/package.json +0 -62
- package/node_modules/@smithy/uuid/LICENSE +0 -201
- package/node_modules/@smithy/uuid/README.md +0 -10
- package/node_modules/@smithy/uuid/dist-cjs/index.js +0 -36
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +0 -6
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +0 -4
- package/node_modules/@smithy/uuid/dist-es/index.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/randomUUID.js +0 -2
- package/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/v4.js +0 -31
- package/node_modules/@smithy/uuid/dist-types/index.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +0 -2
- package/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +0 -2
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +0 -19
- package/node_modules/@smithy/uuid/dist-types/v4.d.ts +0 -19
- package/node_modules/@smithy/uuid/package.json +0 -66
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/CHANGELOG.md +0 -172
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/LICENSE +0 -19
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/README.md +0 -207
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/charset.js +0 -118
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/charsets.js +0 -212
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/get-charset-name.js +0 -227
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/libmime.js +0 -924
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/mimetypes.js +0 -2049
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/package.json +0 -42
- package/node_modules/cdk-nag/lib/ignore-suppression-conditions.d.ts +0 -59
- package/node_modules/cdk-nag/lib/ignore-suppression-conditions.js +0 -97
- package/node_modules/cdk-nag/lib/models/nag-suppression.d.ts +0 -30
- package/node_modules/cdk-nag/lib/models/nag-suppression.js +0 -7
- package/node_modules/cdk-nag/lib/nag-suppressions.d.ts +0 -30
- package/node_modules/cdk-nag/lib/nag-suppressions.js +0 -96
- package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolAdvancedSecurityModeEnforced.d.ts +0 -8
- package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolAdvancedSecurityModeEnforced.js +0 -32
- package/node_modules/cdk-nag/lib/utils/nag-suppression-helper.d.ts +0 -20
- package/node_modules/cdk-nag/lib/utils/nag-suppression-helper.js +0 -119
- package/node_modules/deepmerge/.editorconfig +0 -7
- package/node_modules/deepmerge/.eslintcache +0 -1
- package/node_modules/deepmerge/changelog.md +0 -167
- package/node_modules/deepmerge/dist/cjs.js +0 -133
- package/node_modules/deepmerge/dist/umd.js +0 -139
- package/node_modules/deepmerge/index.d.ts +0 -20
- package/node_modules/deepmerge/index.js +0 -106
- package/node_modules/deepmerge/license.txt +0 -21
- package/node_modules/deepmerge/package.json +0 -42
- package/node_modules/deepmerge/readme.md +0 -264
- package/node_modules/deepmerge/rollup.config.js +0 -22
- package/node_modules/fast-xml-builder/CHANGELOG.md +0 -16
- package/node_modules/fast-xml-builder/LICENSE +0 -21
- package/node_modules/fast-xml-builder/README.md +0 -23
- package/node_modules/fast-xml-builder/lib/fxb.cjs +0 -1
- package/node_modules/fast-xml-builder/lib/fxb.d.cts +0 -180
- package/node_modules/fast-xml-builder/lib/fxb.min.js +0 -2
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +0 -1
- package/node_modules/fast-xml-builder/package.json +0 -80
- package/node_modules/fast-xml-builder/src/fxb.d.ts +0 -180
- package/node_modules/fast-xml-builder/src/fxb.js +0 -529
- package/node_modules/fast-xml-builder/src/ignoreAttributes.js +0 -18
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +0 -292
- package/node_modules/fast-xml-builder/src/prettifyJs2Xml.js +0 -0
- package/node_modules/fast-xml-parser/CHANGELOG.md +0 -759
- package/node_modules/fast-xml-parser/LICENSE +0 -21
- package/node_modules/fast-xml-parser/README.md +0 -225
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +0 -2
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +0 -1
- package/node_modules/fast-xml-parser/lib/fxp.cjs +0 -1
- package/node_modules/fast-xml-parser/lib/fxp.d.cts +0 -603
- package/node_modules/fast-xml-parser/lib/fxp.min.js +0 -2
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +0 -1
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +0 -2
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +0 -1
- package/node_modules/fast-xml-parser/lib/fxvalidator.min.js +0 -2
- package/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +0 -1
- package/node_modules/fast-xml-parser/lib/pem.d.cts +0 -148
- package/node_modules/fast-xml-parser/package.json +0 -94
- package/node_modules/fast-xml-parser/src/cli/cli.js +0 -97
- package/node_modules/fast-xml-parser/src/cli/man.js +0 -17
- package/node_modules/fast-xml-parser/src/cli/read.js +0 -43
- package/node_modules/fast-xml-parser/src/fxp.d.ts +0 -579
- package/node_modules/fast-xml-parser/src/fxp.js +0 -14
- package/node_modules/fast-xml-parser/src/ignoreAttributes.js +0 -18
- package/node_modules/fast-xml-parser/src/pem.d.ts +0 -135
- package/node_modules/fast-xml-parser/src/util.js +0 -61
- package/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +0 -16
- package/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +0 -106
- package/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +0 -61
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -69
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +0 -103
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -100
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +0 -154
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -94
- package/node_modules/fast-xml-parser/src/v6/Report.js +0 -0
- package/node_modules/fast-xml-parser/src/v6/TagPath.js +0 -81
- package/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +0 -13
- package/node_modules/fast-xml-parser/src/v6/XMLParser.js +0 -83
- package/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +0 -235
- package/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +0 -210
- package/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +0 -111
- package/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +0 -116
- package/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +0 -121
- package/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +0 -105
- package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +0 -22
- package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +0 -19
- package/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +0 -38
- package/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +0 -13
- package/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +0 -14
- package/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +0 -6
- package/node_modules/fast-xml-parser/src/validator.js +0 -425
- package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +0 -6
- package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +0 -410
- package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +0 -159
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +0 -911
- package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +0 -71
- package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +0 -173
- package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +0 -40
- package/node_modules/htmlparser2/lib/Parser.d.ts +0 -190
- package/node_modules/htmlparser2/lib/Parser.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/Parser.js +0 -518
- package/node_modules/htmlparser2/lib/Parser.js.map +0 -1
- package/node_modules/htmlparser2/lib/Tokenizer.d.ts +0 -143
- package/node_modules/htmlparser2/lib/Tokenizer.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/Tokenizer.js +0 -938
- package/node_modules/htmlparser2/lib/Tokenizer.js.map +0 -1
- package/node_modules/htmlparser2/lib/WritableStream.d.ts +0 -17
- package/node_modules/htmlparser2/lib/WritableStream.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/WritableStream.js +0 -54
- package/node_modules/htmlparser2/lib/WritableStream.js.map +0 -1
- package/node_modules/htmlparser2/lib/esm/Parser.d.ts +0 -190
- package/node_modules/htmlparser2/lib/esm/Parser.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/esm/Parser.js +0 -489
- package/node_modules/htmlparser2/lib/esm/Parser.js.map +0 -1
- package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts +0 -143
- package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/esm/Tokenizer.js +0 -932
- package/node_modules/htmlparser2/lib/esm/Tokenizer.js.map +0 -1
- package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts +0 -17
- package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/esm/WritableStream.js.map +0 -1
- package/node_modules/htmlparser2/lib/esm/index.d.ts +0 -44
- package/node_modules/htmlparser2/lib/esm/index.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/esm/index.js +0 -62
- package/node_modules/htmlparser2/lib/esm/index.js.map +0 -1
- package/node_modules/htmlparser2/lib/esm/package.json +0 -1
- package/node_modules/htmlparser2/lib/index.d.ts +0 -44
- package/node_modules/htmlparser2/lib/index.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/index.js +0 -100
- package/node_modules/htmlparser2/lib/index.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/decode.d.ts +0 -211
- package/node_modules/htmlparser2/node_modules/entities/lib/decode.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/decode.js +0 -536
- package/node_modules/htmlparser2/node_modules/entities/lib/decode.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.d.ts +0 -19
- package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.js +0 -76
- package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/encode.d.ts +0 -22
- package/node_modules/htmlparser2/node_modules/entities/lib/encode.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/encode.js +0 -77
- package/node_modules/htmlparser2/node_modules/entities/lib/encode.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/escape.d.ts +0 -43
- package/node_modules/htmlparser2/node_modules/entities/lib/escape.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/escape.js +0 -122
- package/node_modules/htmlparser2/node_modules/entities/lib/escape.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.d.ts +0 -211
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.js +0 -496
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.d.ts +0 -19
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.js +0 -71
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.d.ts +0 -22
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.js +0 -69
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.d.ts +0 -43
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.js +0 -116
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +0 -3
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.js +0 -7
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +0 -3
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.js +0 -7
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.d.ts +0 -8
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.js +0 -10
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.d.ts +0 -96
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.js +0 -99
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/package.json +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.d.ts +0 -3
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.js +0 -9
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.d.ts +0 -3
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.js +0 -9
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.d.ts +0 -8
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.js +0 -12
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/index.d.ts +0 -96
- package/node_modules/htmlparser2/node_modules/entities/lib/index.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/index.js +0 -126
- package/node_modules/htmlparser2/node_modules/entities/lib/index.js.map +0 -1
- package/node_modules/iconv-lite/.github/dependabot.yml +0 -11
- package/node_modules/iconv-lite/.idea/codeStyles/Project.xml +0 -47
- package/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/node_modules/iconv-lite/.idea/iconv-lite.iml +0 -12
- package/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/node_modules/iconv-lite/.idea/modules.xml +0 -8
- package/node_modules/iconv-lite/.idea/vcs.xml +0 -6
- package/node_modules/iconv-lite/Changelog.md +0 -212
- package/node_modules/iconv-lite/LICENSE +0 -21
- package/node_modules/iconv-lite/README.md +0 -130
- package/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -597
- package/node_modules/iconv-lite/encodings/dbcs-data.js +0 -188
- package/node_modules/iconv-lite/encodings/index.js +0 -23
- package/node_modules/iconv-lite/encodings/internal.js +0 -198
- package/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -72
- package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
- package/node_modules/iconv-lite/encodings/sbcs-data.js +0 -179
- package/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
- package/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
- package/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
- package/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
- package/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
- package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
- package/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -56
- package/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
- package/node_modules/iconv-lite/encodings/utf16.js +0 -197
- package/node_modules/iconv-lite/encodings/utf32.js +0 -319
- package/node_modules/iconv-lite/encodings/utf7.js +0 -290
- package/node_modules/iconv-lite/lib/bom-handling.js +0 -52
- package/node_modules/iconv-lite/lib/index.d.ts +0 -41
- package/node_modules/iconv-lite/lib/index.js +0 -180
- package/node_modules/iconv-lite/lib/streams.js +0 -109
- package/node_modules/iconv-lite/package.json +0 -44
- package/node_modules/leac/lib/leac.d.ts +0 -165
- package/node_modules/mailparser/.github/FUNDING.yml +0 -4
- package/node_modules/mailparser/.github/workflows/release.yaml +0 -36
- package/node_modules/mailparser/.github/workflows/stale.yml +0 -24
- package/node_modules/mailparser/.github/workflows/test.yml +0 -21
- package/node_modules/mailparser/.ncurc.js +0 -6
- package/node_modules/parseley/lib/ast.d.ts +0 -148
- package/node_modules/parseley/lib/parseley.d.ts +0 -39
- package/node_modules/parseley/lib/parser.d.ts +0 -19
- package/node_modules/path-expression-matcher/LICENSE +0 -21
- package/node_modules/path-expression-matcher/README.md +0 -872
- package/node_modules/path-expression-matcher/lib/pem.cjs +0 -1
- package/node_modules/path-expression-matcher/lib/pem.d.cts +0 -634
- package/node_modules/path-expression-matcher/lib/pem.min.js +0 -2
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +0 -1
- package/node_modules/path-expression-matcher/package.json +0 -78
- package/node_modules/path-expression-matcher/src/Expression.js +0 -232
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +0 -209
- package/node_modules/path-expression-matcher/src/Matcher.js +0 -570
- package/node_modules/path-expression-matcher/src/index.d.ts +0 -523
- package/node_modules/path-expression-matcher/src/index.js +0 -29
- package/node_modules/peberminta/lib/char.d.ts +0 -154
- package/node_modules/peberminta/lib/core.d.ts +0 -1051
- package/node_modules/peberminta/lib/util.cjs +0 -13
- package/node_modules/selderee/lib/Ast.d.ts +0 -100
- package/node_modules/selderee/lib/DecisionTree.d.ts +0 -34
- package/node_modules/selderee/lib/Picker.d.ts +0 -49
- package/node_modules/selderee/lib/TreeifyBuilder.d.ts +0 -16
- package/node_modules/selderee/lib/Types.d.ts +0 -20
- package/node_modules/selderee/lib/selderee.d.ts +0 -5
- package/node_modules/strnum/CHANGELOG.md +0 -40
- package/node_modules/strnum/LICENSE +0 -21
- package/node_modules/strnum/README.md +0 -104
- package/node_modules/strnum/package.json +0 -31
- package/node_modules/strnum/strnum.js +0 -161
- package/node_modules/uuid/CHANGELOG.md +0 -274
- package/node_modules/uuid/CONTRIBUTING.md +0 -18
- package/node_modules/uuid/dist/bin/uuid +0 -2
- package/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
- package/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
- package/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
- package/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
- package/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
- package/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
- package/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
- package/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
- package/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
- package/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
- package/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
- package/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
- package/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
- package/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
- package/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
- package/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
- package/node_modules/uuid/dist/esm-browser/index.js +0 -9
- package/node_modules/uuid/dist/esm-browser/md5.js +0 -215
- package/node_modules/uuid/dist/esm-browser/native.js +0 -4
- package/node_modules/uuid/dist/esm-browser/nil.js +0 -1
- package/node_modules/uuid/dist/esm-browser/parse.js +0 -35
- package/node_modules/uuid/dist/esm-browser/regex.js +0 -1
- package/node_modules/uuid/dist/esm-browser/rng.js +0 -18
- package/node_modules/uuid/dist/esm-browser/sha1.js +0 -96
- package/node_modules/uuid/dist/esm-browser/stringify.js +0 -33
- package/node_modules/uuid/dist/esm-browser/v1.js +0 -95
- package/node_modules/uuid/dist/esm-browser/v3.js +0 -4
- package/node_modules/uuid/dist/esm-browser/v35.js +0 -66
- package/node_modules/uuid/dist/esm-browser/v4.js +0 -29
- package/node_modules/uuid/dist/esm-browser/v5.js +0 -4
- package/node_modules/uuid/dist/esm-browser/validate.js +0 -7
- package/node_modules/uuid/dist/esm-browser/version.js +0 -11
- package/node_modules/uuid/dist/esm-node/index.js +0 -9
- package/node_modules/uuid/dist/esm-node/md5.js +0 -13
- package/node_modules/uuid/dist/esm-node/native.js +0 -4
- package/node_modules/uuid/dist/esm-node/nil.js +0 -1
- package/node_modules/uuid/dist/esm-node/parse.js +0 -35
- package/node_modules/uuid/dist/esm-node/regex.js +0 -1
- package/node_modules/uuid/dist/esm-node/rng.js +0 -12
- package/node_modules/uuid/dist/esm-node/sha1.js +0 -13
- package/node_modules/uuid/dist/esm-node/stringify.js +0 -33
- package/node_modules/uuid/dist/esm-node/v1.js +0 -95
- package/node_modules/uuid/dist/esm-node/v3.js +0 -4
- package/node_modules/uuid/dist/esm-node/v35.js +0 -66
- package/node_modules/uuid/dist/esm-node/v4.js +0 -29
- package/node_modules/uuid/dist/esm-node/v5.js +0 -4
- package/node_modules/uuid/dist/esm-node/validate.js +0 -7
- package/node_modules/uuid/dist/esm-node/version.js +0 -11
- package/node_modules/uuid/dist/md5-browser.js +0 -223
- package/node_modules/uuid/dist/native-browser.js +0 -11
- package/node_modules/uuid/dist/native.js +0 -15
- package/node_modules/uuid/dist/rng-browser.js +0 -25
- package/node_modules/uuid/dist/sha1-browser.js +0 -104
- package/node_modules/uuid/wrapper.mjs +0 -10
- /package/node_modules/@aws-sdk/{middleware-host-header → checksums}/LICENSE +0 -0
- /package/node_modules/@aws-sdk/{crc64-nvme/dist-es → checksums/dist-es/submodules/crc/crc64-nvme}/crc64-nvme-crt-container.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/configuration.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/constants.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksum.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksumAlgorithmForRequest.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksumLocationName.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getFlexibleChecksumsPlugin.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/hasHeader.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/hasHeaderWithPrefix.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/isChecksumWithPartNumber.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/stringUnionSelector.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/types.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksum.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/hasHeader.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/isStreaming.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/stringHasher.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/stringUnionSelector.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/types.d.ts +0 -0
- /package/node_modules/@aws-sdk/{crc64-nvme/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/crc/crc64-nvme}/crc64-nvme-crt-container.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/getChecksum.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/hasHeader.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/isStreaming.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/stringHasher.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/stringUnionSelector.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/types.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-logger/dist-es → core/dist-es/submodules/client/middleware-logger}/loggerMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/getRecursionDetectionPlugin.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/configurations.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/constants.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/encode-features.js +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/extensions/index.js → core/dist-es/submodules/client/region-config-resolver/extensions.js} +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.js +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/lib/aws/parseArn.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/EndpointRuleObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/ErrorRuleObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/RuleSetObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/TreeRuleObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/shared.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es → core/dist-es/submodules/client/util-user-agent-browser}/configurations.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es → core/dist-es/submodules/client/util-user-agent-browser}/createUserAgentStringParsingProvider.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es/index.js → core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.js} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es/index.native.js → core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.native.js} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/crt-availability.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/is-crt-available.js +0 -0
- /package/node_modules/@aws-sdk/{util-arn-parser/dist-es/index.js → core/dist-es/submodules/util/util-arn-parser/arn.js} +0 -0
- /package/node_modules/@aws-sdk/{middleware-host-header/dist-types/index.d.ts → core/dist-types/submodules/client/middleware-host-header/hostHeaderMiddleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-logger/dist-types → core/dist-types/submodules/client/middleware-logger}/loggerMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts → core/dist-types/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/check-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/encode-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/user-agent-middleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/extensions/index.d.ts → core/dist-types/submodules/client/region-config-resolver/extensions.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/regionConfig → core/dist-types/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/regionConfig → core/dist-types/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/parseArn.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/partition.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/resolveDefaultAwsRegionalEndpointsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types → core/dist-types/submodules/client/util-user-agent-browser}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/index.d.ts → core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/index.native.d.ts → core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.native.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/crt-availability.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/defaultUserAgent.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/is-crt-available.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-arn-parser/dist-types/index.d.ts → core/dist-types/submodules/util/util-arn-parser/arn.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-host-header/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/client/middleware-host-header/hostHeaderMiddleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-logger/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-logger}/loggerMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/check-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/encode-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/user-agent-middleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/extensions/index.d.ts → core/dist-types/ts3.4/submodules/client/region-config-resolver/extensions.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/regionConfig → core/dist-types/ts3.4/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/regionConfig → core/dist-types/ts3.4/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/parseArn.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/partition.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/resolveDefaultAwsRegionalEndpointsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-browser}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4/index.native.d.ts → core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.native.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/crt-availability.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/defaultUserAgent.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/is-crt-available.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-arn-parser/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/util/util-arn-parser/arn.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostname.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/configurations.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-location-constraint}/configuration.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-location-constraint/middleware-location-constraint.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{bucket-endpoint-middleware.js → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{region-redirect-endpoint-middleware.js → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{region-redirect-middleware.js → submodules/s3/middleware-region-redirect/region-redirect-middleware.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-ssec/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-ssec/middleware-ssec.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketHostname.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{check-content-length-header.d.ts → submodules/s3/middleware-check-content-length-header/check-content-length-header.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-location-constraint}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-location-constraint/middleware-location-constraint.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{bucket-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{region-redirect-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{region-redirect-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-expires-middleware.d.ts → submodules/s3/middleware-s3-expires/s3-expires-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-ssec/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-ssec/middleware-ssec.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketHostname.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{check-content-length-header.d.ts → submodules/s3/middleware-check-content-length-header/check-content-length-header.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-location-constraint}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-location-constraint/middleware-location-constraint.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{bucket-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{region-redirect-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{region-redirect-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-expires-middleware.d.ts → submodules/s3/middleware-s3-expires/s3-expires-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-ssec/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-ssec/middleware-ssec.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemePlugin.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{pagination → legacy-root-exports/pagination}/createPaginator.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/memoizeIdentityProvider.js +0 -0
- /package/node_modules/@smithy/{chunked-blob-reader/dist-es/index.js → core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.js} +0 -0
- /package/node_modules/@smithy/{hash-stream-node/dist-es → core/dist-es/submodules/checksum/hash-stream-node}/readableStreamHasher.js +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidFunction.js +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidProvider.js +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/client/middleware-stack}/MiddlewareStack.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/client/middleware-stack}/types.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/NoOpLogger.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/constants.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/create-aggregated-client.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/default-error-handler.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/defaults-mode.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/emitWarningIfUnsupportedVersion.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/exceptions.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/extensions/retry.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/get-array-if-single-item.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/is-serializable-header-value.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/object-mapping.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/schemaLogFilter.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/ser-utils.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/serde-json.js +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/circularReplacer.js +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/utils/sleep.js +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/utils/validate.js +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/waiter.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/getRealRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/isFipsRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariant.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/PartitionHash.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/RegionHash.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getRegionInfo.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedHostname.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedPartition.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.js +0 -0
- /package/node_modules/@smithy/{util-defaults-mode-node/dist-es → core/dist-es/submodules/config/defaults-mode}/defaultsModeConfig.js +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-es → core/dist-es/submodules/config/node-config-provider}/getSelectorName.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/CredentialsProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/ProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/TokenProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/chain.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/memoize.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/constants.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/externalDataInterceptor.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getConfigData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getProfileName.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getSsoSessionData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/loadSsoSessionData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/mergeConfigFiles.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseIni.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseKnownFiles.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/readFile.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es/retry-pre-sra-deprecated → core/dist-es/submodules/config/shared-ini-file-loader}/types.js +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/booleanSelector.js +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/numberSelector.js +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/types.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.browser.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/service-customizations/s3.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/cache/EndpointCache.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/debugId.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/toDebugString.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/getEndpointUrlConfig.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/booleanEquals.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/getAttrPathList.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isIpAddress.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isSet.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/not.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/parseURL.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/stringEquals.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/uriEncode.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointError.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointFunctions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/RuleSetObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/TreeRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/shared.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/callFunction.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointUrl.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/Message.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageDecoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageEncoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getUnmarshalledStream.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Field.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Fields.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/extensions/httpExtensionConfiguration.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpHandler.js +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/protocols/protocol-http}/types.js +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri-path.js +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/isStreamingPayload/isStreamingPayload.browser.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/longPollMiddleware.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated}/types.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/util.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/config.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/constants.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/retries-2026-config.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/retry/util-retry}/types.js +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js → @smithy/core/dist-es/submodules/serde/is-array-buffer/is-array-buffer.js} +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serdePlugin.js +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serializerMiddleware.js +0 -0
- /package/node_modules/@smithy/{util-base64/dist-es/constants.browser.js → core/dist-es/submodules/serde/util-base64/constants-for-browser.js} +0 -0
- /package/node_modules/@smithy/{util-body-length-browser/dist-es/calculateBodyLength.js → core/dist-es/submodules/serde/util-body-length/calculateBodyLength.browser.js} +0 -0
- /package/node_modules/@smithy/{util-hex-encoding/dist-es/index.js → core/dist-es/submodules/serde/util-hex-encoding/hex-encoding.js} +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/ByteArrayCollector.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/checksum/ChecksumStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es/createBufferedReadableStream.js → core/dist-es/submodules/serde/util-stream/createBufferedReadable.browser.js} +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/headStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/splitStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/stream-type-check.js +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/fromUtf8.browser.js +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/toUtf8.browser.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{getSmithyContext.js → submodules/transport/getSmithyContext.js} +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/transport}/httpRequest.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/transport}/httpResponse.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es/lib → core/dist-es/submodules/transport}/isValidHostLabel.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/transport}/isValidHostname.js +0 -0
- /package/node_modules/@smithy/{util-middleware/dist-es → core/dist-es/submodules/transport}/normalizeProvider.js +0 -0
- /package/node_modules/@smithy/{querystring-parser/dist-es/index.js → core/dist-es/submodules/transport/parseQueryString.js} +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/httpSigningMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/DefaultIdentityProviderConfig.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.d.ts +0 -0
- /package/node_modules/@smithy/{chunked-blob-reader-native/dist-types/index.d.ts → core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.d.ts} +0 -0
- /package/node_modules/@smithy/{hash-blob-browser/dist-types/index.d.ts → core/dist-types/submodules/checksum/hash-blob-browser/blobHasher.d.ts} +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidFunction.d.ts +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidProvider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/MiddlewareStack.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/types.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/NoOpLogger.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/defaults-mode.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/extensions/retry.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/is-serializable-header-value.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/schemaLogFilter.d.ts +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-types → core/dist-types/submodules/client/util-waiter}/circularReplacer.d.ts +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-types → core/dist-types/submodules/client/util-waiter}/utils/sleep.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/checkRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/getRealRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/isFipsRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariant.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/PartitionHash.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/RegionHash.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getRegionInfo.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedHostname.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedPartition.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromEnv.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromStatic.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/getSelectorName.d.ts +0 -0
- /package/node_modules/@smithy/{property-provider/dist-types → core/dist-types/submodules/config/property-provider}/memoize.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/externalDataInterceptor.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getConfigFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getCredentialsFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getHomeDir.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getProfileName.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getSSOTokenFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSharedConfigFiles.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSsoSessionData.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/mergeConfigFiles.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/readFile.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/types.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/booleanSelector.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/numberSelector.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/types.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/service-customizations/s3.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/debugId.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/toDebugString.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/booleanEquals.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttr.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttrPathList.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isIpAddress.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isSet.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/not.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/stringEquals.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/substring.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/uriEncode.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointError.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointFunctions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/RuleSetObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/TreeRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/callFunction.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateEndpointRule.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTemplate.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/HeaderMarshaller.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Int64.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Message.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageDecoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageEncoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/splitMessage.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-content-length/dist-types/index.d.ts → core/dist-types/submodules/protocols/middleware-content-length/contentLengthMiddleware.d.ts} +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/Fields.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/types.d.ts +0 -0
- /package/node_modules/@smithy/{querystring-builder/dist-types/index.d.ts → core/dist-types/submodules/protocols/querystring-builder/buildQueryString.d.ts} +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri-path.d.ts +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/longPollMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/omitRetryHeadersMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/parseRetryAfterHeader.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/delayDecider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/retryDecider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/types.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/util.d.ts +0 -0
- /package/node_modules/@smithy/{service-error-classification/dist-types → core/dist-types/submodules/retry/service-error-classification}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRateLimiter.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/config.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/types.d.ts +0 -0
- /package/node_modules/@smithy/{hash-node/dist-types/index.d.ts → core/dist-types/submodules/serde/hash-node/hash-node.d.ts} +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts → @smithy/core/dist-types/submodules/serde/is-array-buffer/is-array-buffer.d.ts} +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/deserializerMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serdePlugin.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serializerMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types/constants.browser.d.ts → core/dist-types/submodules/serde/util-base64/constants-for-browser.d.ts} +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.d.ts +0 -0
- /package/node_modules/@smithy/{util-body-length-browser/dist-types/calculateBodyLength.d.ts → core/dist-types/submodules/serde/util-body-length/calculateBodyLength.browser.d.ts} +0 -0
- /package/node_modules/@smithy/{util-body-length-node/dist-types → core/dist-types/submodules/serde/util-body-length}/calculateBodyLength.d.ts +0 -0
- /package/node_modules/@smithy/{util-hex-encoding/dist-types/index.d.ts → core/dist-types/submodules/serde/util-hex-encoding/hex-encoding.d.ts} +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/ByteArrayCollector.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/checksum/ChecksumStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/headStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/sdk-stream-mixin.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/splitStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/stream-type-check.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/fromUtf8.browser.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/fromUtf8.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUint8Array.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUtf8.browser.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUtf8.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/transport}/httpResponse.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types/lib → core/dist-types/submodules/transport}/isValidHostLabel.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/transport}/isValidHostname.d.ts +0 -0
- /package/node_modules/@smithy/{util-middleware/dist-types → core/dist-types/submodules/transport}/normalizeProvider.d.ts +0 -0
- /package/node_modules/@smithy/{querystring-parser/dist-types/index.d.ts → core/dist-types/submodules/transport/parseQueryString.d.ts} +0 -0
- /package/node_modules/@smithy/{url-parser/dist-types/index.d.ts → core/dist-types/submodules/transport/parseUrl.d.ts} +0 -0
- /package/node_modules/@smithy/core/dist-types/submodules/{endpoints → transport}/toEndpointV1.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es/vectorTypes.fixture.js → types/dist-es/endpoints/EndpointParameterInstructions.js} +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es/types.js → types/dist-es/metrics.js} +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types/types.d.ts → types/dist-types/endpoints/EndpointParameterInstructions.d.ts} +0 -0
- /package/node_modules/htmlparser2/{lib → dist}/esm/WritableStream.js +0 -0
- /package/node_modules/peberminta/lib/{util.mjs → util/util.mjs} +0 -0
|
@@ -1,2049 +0,0 @@
|
|
|
1
|
-
/* eslint quote-props: 0 */
|
|
2
|
-
|
|
3
|
-
'use strict';
|
|
4
|
-
|
|
5
|
-
module.exports = {
|
|
6
|
-
list: {
|
|
7
|
-
'application/acad': 'dwg',
|
|
8
|
-
'application/applixware': 'aw',
|
|
9
|
-
'application/arj': 'arj',
|
|
10
|
-
'application/atom+xml': 'xml',
|
|
11
|
-
'application/atomcat+xml': 'atomcat',
|
|
12
|
-
'application/atomsvc+xml': 'atomsvc',
|
|
13
|
-
'application/base64': ['mm', 'mme'],
|
|
14
|
-
'application/binhex': 'hqx',
|
|
15
|
-
'application/binhex4': 'hqx',
|
|
16
|
-
'application/book': ['book', 'boo'],
|
|
17
|
-
'application/ccxml+xml,': 'ccxml',
|
|
18
|
-
'application/cdf': 'cdf',
|
|
19
|
-
'application/cdmi-capability': 'cdmia',
|
|
20
|
-
'application/cdmi-container': 'cdmic',
|
|
21
|
-
'application/cdmi-domain': 'cdmid',
|
|
22
|
-
'application/cdmi-object': 'cdmio',
|
|
23
|
-
'application/cdmi-queue': 'cdmiq',
|
|
24
|
-
'application/clariscad': 'ccad',
|
|
25
|
-
'application/commonground': 'dp',
|
|
26
|
-
'application/cu-seeme': 'cu',
|
|
27
|
-
'application/davmount+xml': 'davmount',
|
|
28
|
-
'application/drafting': 'drw',
|
|
29
|
-
'application/dsptype': 'tsp',
|
|
30
|
-
'application/dssc+der': 'dssc',
|
|
31
|
-
'application/dssc+xml': 'xdssc',
|
|
32
|
-
'application/dxf': 'dxf',
|
|
33
|
-
'application/ecmascript': ['js', 'es'],
|
|
34
|
-
'application/emma+xml': 'emma',
|
|
35
|
-
'application/envoy': 'evy',
|
|
36
|
-
'application/epub+zip': 'epub',
|
|
37
|
-
'application/excel': ['xls', 'xl', 'xla', 'xlb', 'xlc', 'xld', 'xlk', 'xll', 'xlm', 'xlt', 'xlv', 'xlw'],
|
|
38
|
-
'application/exi': 'exi',
|
|
39
|
-
'application/font-tdpfr': 'pfr',
|
|
40
|
-
'application/fractals': 'fif',
|
|
41
|
-
'application/freeloader': 'frl',
|
|
42
|
-
'application/futuresplash': 'spl',
|
|
43
|
-
'application/gnutar': 'tgz',
|
|
44
|
-
'application/groupwise': 'vew',
|
|
45
|
-
'application/hlp': 'hlp',
|
|
46
|
-
'application/hta': 'hta',
|
|
47
|
-
'application/hyperstudio': 'stk',
|
|
48
|
-
'application/i-deas': 'unv',
|
|
49
|
-
'application/iges': ['iges', 'igs'],
|
|
50
|
-
'application/inf': 'inf',
|
|
51
|
-
'application/internet-property-stream': 'acx',
|
|
52
|
-
'application/ipfix': 'ipfix',
|
|
53
|
-
'application/java': 'class',
|
|
54
|
-
'application/java-archive': 'jar',
|
|
55
|
-
'application/java-byte-code': 'class',
|
|
56
|
-
'application/java-serialized-object': 'ser',
|
|
57
|
-
'application/java-vm': 'class',
|
|
58
|
-
'application/javascript': 'js',
|
|
59
|
-
'application/json': 'json',
|
|
60
|
-
'application/lha': 'lha',
|
|
61
|
-
'application/lzx': 'lzx',
|
|
62
|
-
'application/mac-binary': 'bin',
|
|
63
|
-
'application/mac-binhex': 'hqx',
|
|
64
|
-
'application/mac-binhex40': 'hqx',
|
|
65
|
-
'application/mac-compactpro': 'cpt',
|
|
66
|
-
'application/macbinary': 'bin',
|
|
67
|
-
'application/mads+xml': 'mads',
|
|
68
|
-
'application/marc': 'mrc',
|
|
69
|
-
'application/marcxml+xml': 'mrcx',
|
|
70
|
-
'application/mathematica': 'ma',
|
|
71
|
-
'application/mathml+xml': 'mathml',
|
|
72
|
-
'application/mbedlet': 'mbd',
|
|
73
|
-
'application/mbox': 'mbox',
|
|
74
|
-
'application/mcad': 'mcd',
|
|
75
|
-
'application/mediaservercontrol+xml': 'mscml',
|
|
76
|
-
'application/metalink4+xml': 'meta4',
|
|
77
|
-
'application/mets+xml': 'mets',
|
|
78
|
-
'application/mime': 'aps',
|
|
79
|
-
'application/mods+xml': 'mods',
|
|
80
|
-
'application/mp21': 'm21',
|
|
81
|
-
'application/mp4': 'mp4',
|
|
82
|
-
'application/mspowerpoint': ['ppt', 'pot', 'pps', 'ppz'],
|
|
83
|
-
'application/msword': ['doc', 'dot', 'w6w', 'wiz', 'word'],
|
|
84
|
-
'application/mswrite': 'wri',
|
|
85
|
-
'application/mxf': 'mxf',
|
|
86
|
-
'application/netmc': 'mcp',
|
|
87
|
-
'application/octet-stream': ['*'],
|
|
88
|
-
'application/oda': 'oda',
|
|
89
|
-
'application/oebps-package+xml': 'opf',
|
|
90
|
-
'application/ogg': 'ogx',
|
|
91
|
-
'application/olescript': 'axs',
|
|
92
|
-
'application/onenote': 'onetoc',
|
|
93
|
-
'application/patch-ops-error+xml': 'xer',
|
|
94
|
-
'application/pdf': 'pdf',
|
|
95
|
-
'application/pgp-encrypted': 'asc',
|
|
96
|
-
'application/pgp-signature': 'pgp',
|
|
97
|
-
'application/pics-rules': 'prf',
|
|
98
|
-
'application/pkcs-12': 'p12',
|
|
99
|
-
'application/pkcs-crl': 'crl',
|
|
100
|
-
'application/pkcs10': 'p10',
|
|
101
|
-
'application/pkcs7-mime': ['p7c', 'p7m'],
|
|
102
|
-
'application/pkcs7-signature': 'p7s',
|
|
103
|
-
'application/pkcs8': 'p8',
|
|
104
|
-
'application/pkix-attr-cert': 'ac',
|
|
105
|
-
'application/pkix-cert': ['cer', 'crt'],
|
|
106
|
-
'application/pkix-crl': 'crl',
|
|
107
|
-
'application/pkix-pkipath': 'pkipath',
|
|
108
|
-
'application/pkixcmp': 'pki',
|
|
109
|
-
'application/plain': 'text',
|
|
110
|
-
'application/pls+xml': 'pls',
|
|
111
|
-
'application/postscript': ['ps', 'ai', 'eps'],
|
|
112
|
-
'application/powerpoint': 'ppt',
|
|
113
|
-
'application/pro_eng': ['part', 'prt'],
|
|
114
|
-
'application/prs.cww': 'cww',
|
|
115
|
-
'application/pskc+xml': 'pskcxml',
|
|
116
|
-
'application/rdf+xml': 'rdf',
|
|
117
|
-
'application/reginfo+xml': 'rif',
|
|
118
|
-
'application/relax-ng-compact-syntax': 'rnc',
|
|
119
|
-
'application/resource-lists+xml': 'rl',
|
|
120
|
-
'application/resource-lists-diff+xml': 'rld',
|
|
121
|
-
'application/ringing-tones': 'rng',
|
|
122
|
-
'application/rls-services+xml': 'rs',
|
|
123
|
-
'application/rsd+xml': 'rsd',
|
|
124
|
-
'application/rss+xml': 'xml',
|
|
125
|
-
'application/rtf': ['rtf', 'rtx'],
|
|
126
|
-
'application/sbml+xml': 'sbml',
|
|
127
|
-
'application/scvp-cv-request': 'scq',
|
|
128
|
-
'application/scvp-cv-response': 'scs',
|
|
129
|
-
'application/scvp-vp-request': 'spq',
|
|
130
|
-
'application/scvp-vp-response': 'spp',
|
|
131
|
-
'application/sdp': 'sdp',
|
|
132
|
-
'application/sea': 'sea',
|
|
133
|
-
'application/set': 'set',
|
|
134
|
-
'application/set-payment-initiation': 'setpay',
|
|
135
|
-
'application/set-registration-initiation': 'setreg',
|
|
136
|
-
'application/shf+xml': 'shf',
|
|
137
|
-
'application/sla': 'stl',
|
|
138
|
-
'application/smil': ['smi', 'smil'],
|
|
139
|
-
'application/smil+xml': 'smi',
|
|
140
|
-
'application/solids': 'sol',
|
|
141
|
-
'application/sounder': 'sdr',
|
|
142
|
-
'application/sparql-query': 'rq',
|
|
143
|
-
'application/sparql-results+xml': 'srx',
|
|
144
|
-
'application/srgs': 'gram',
|
|
145
|
-
'application/srgs+xml': 'grxml',
|
|
146
|
-
'application/sru+xml': 'sru',
|
|
147
|
-
'application/ssml+xml': 'ssml',
|
|
148
|
-
'application/step': ['step', 'stp'],
|
|
149
|
-
'application/streamingmedia': 'ssm',
|
|
150
|
-
'application/tei+xml': 'tei',
|
|
151
|
-
'application/thraud+xml': 'tfi',
|
|
152
|
-
'application/timestamped-data': 'tsd',
|
|
153
|
-
'application/toolbook': 'tbk',
|
|
154
|
-
'application/vda': 'vda',
|
|
155
|
-
'application/vnd.3gpp.pic-bw-large': 'plb',
|
|
156
|
-
'application/vnd.3gpp.pic-bw-small': 'psb',
|
|
157
|
-
'application/vnd.3gpp.pic-bw-var': 'pvb',
|
|
158
|
-
'application/vnd.3gpp2.tcap': 'tcap',
|
|
159
|
-
'application/vnd.3m.post-it-notes': 'pwn',
|
|
160
|
-
'application/vnd.accpac.simply.aso': 'aso',
|
|
161
|
-
'application/vnd.accpac.simply.imp': 'imp',
|
|
162
|
-
'application/vnd.acucobol': 'acu',
|
|
163
|
-
'application/vnd.acucorp': 'atc',
|
|
164
|
-
'application/vnd.adobe.air-application-installer-package+zip': 'air',
|
|
165
|
-
'application/vnd.adobe.fxp': 'fxp',
|
|
166
|
-
'application/vnd.adobe.xdp+xml': 'xdp',
|
|
167
|
-
'application/vnd.adobe.xfdf': 'xfdf',
|
|
168
|
-
'application/vnd.ahead.space': 'ahead',
|
|
169
|
-
'application/vnd.airzip.filesecure.azf': 'azf',
|
|
170
|
-
'application/vnd.airzip.filesecure.azs': 'azs',
|
|
171
|
-
'application/vnd.amazon.ebook': 'azw',
|
|
172
|
-
'application/vnd.americandynamics.acc': 'acc',
|
|
173
|
-
'application/vnd.amiga.ami': 'ami',
|
|
174
|
-
'application/vnd.android.package-archive': 'apk',
|
|
175
|
-
'application/vnd.anser-web-certificate-issue-initiation': 'cii',
|
|
176
|
-
'application/vnd.anser-web-funds-transfer-initiation': 'fti',
|
|
177
|
-
'application/vnd.antix.game-component': 'atx',
|
|
178
|
-
'application/vnd.apple.installer+xml': 'mpkg',
|
|
179
|
-
'application/vnd.apple.mpegurl': 'm3u8',
|
|
180
|
-
'application/vnd.aristanetworks.swi': 'swi',
|
|
181
|
-
'application/vnd.audiograph': 'aep',
|
|
182
|
-
'application/vnd.blueice.multipass': 'mpm',
|
|
183
|
-
'application/vnd.bmi': 'bmi',
|
|
184
|
-
'application/vnd.businessobjects': 'rep',
|
|
185
|
-
'application/vnd.chemdraw+xml': 'cdxml',
|
|
186
|
-
'application/vnd.chipnuts.karaoke-mmd': 'mmd',
|
|
187
|
-
'application/vnd.cinderella': 'cdy',
|
|
188
|
-
'application/vnd.claymore': 'cla',
|
|
189
|
-
'application/vnd.cloanto.rp9': 'rp9',
|
|
190
|
-
'application/vnd.clonk.c4group': 'c4g',
|
|
191
|
-
'application/vnd.cluetrust.cartomobile-config': 'c11amc',
|
|
192
|
-
'application/vnd.cluetrust.cartomobile-config-pkg': 'c11amz',
|
|
193
|
-
'application/vnd.commonspace': 'csp',
|
|
194
|
-
'application/vnd.contact.cmsg': 'cdbcmsg',
|
|
195
|
-
'application/vnd.cosmocaller': 'cmc',
|
|
196
|
-
'application/vnd.crick.clicker': 'clkx',
|
|
197
|
-
'application/vnd.crick.clicker.keyboard': 'clkk',
|
|
198
|
-
'application/vnd.crick.clicker.palette': 'clkp',
|
|
199
|
-
'application/vnd.crick.clicker.template': 'clkt',
|
|
200
|
-
'application/vnd.crick.clicker.wordbank': 'clkw',
|
|
201
|
-
'application/vnd.criticaltools.wbs+xml': 'wbs',
|
|
202
|
-
'application/vnd.ctc-posml': 'pml',
|
|
203
|
-
'application/vnd.cups-ppd': 'ppd',
|
|
204
|
-
'application/vnd.curl.car': 'car',
|
|
205
|
-
'application/vnd.curl.pcurl': 'pcurl',
|
|
206
|
-
'application/vnd.data-vision.rdz': 'rdz',
|
|
207
|
-
'application/vnd.denovo.fcselayout-link': 'fe_launch',
|
|
208
|
-
'application/vnd.dna': 'dna',
|
|
209
|
-
'application/vnd.dolby.mlp': 'mlp',
|
|
210
|
-
'application/vnd.dpgraph': 'dpg',
|
|
211
|
-
'application/vnd.dreamfactory': 'dfac',
|
|
212
|
-
'application/vnd.dvb.ait': 'ait',
|
|
213
|
-
'application/vnd.dvb.service': 'svc',
|
|
214
|
-
'application/vnd.dynageo': 'geo',
|
|
215
|
-
'application/vnd.ecowin.chart': 'mag',
|
|
216
|
-
'application/vnd.enliven': 'nml',
|
|
217
|
-
'application/vnd.epson.esf': 'esf',
|
|
218
|
-
'application/vnd.epson.msf': 'msf',
|
|
219
|
-
'application/vnd.epson.quickanime': 'qam',
|
|
220
|
-
'application/vnd.epson.salt': 'slt',
|
|
221
|
-
'application/vnd.epson.ssf': 'ssf',
|
|
222
|
-
'application/vnd.eszigno3+xml': 'es3',
|
|
223
|
-
'application/vnd.ezpix-album': 'ez2',
|
|
224
|
-
'application/vnd.ezpix-package': 'ez3',
|
|
225
|
-
'application/vnd.fdf': 'fdf',
|
|
226
|
-
'application/vnd.fdsn.seed': 'seed',
|
|
227
|
-
'application/vnd.flographit': 'gph',
|
|
228
|
-
'application/vnd.fluxtime.clip': 'ftc',
|
|
229
|
-
'application/vnd.framemaker': 'fm',
|
|
230
|
-
'application/vnd.frogans.fnc': 'fnc',
|
|
231
|
-
'application/vnd.frogans.ltf': 'ltf',
|
|
232
|
-
'application/vnd.fsc.weblaunch': 'fsc',
|
|
233
|
-
'application/vnd.fujitsu.oasys': 'oas',
|
|
234
|
-
'application/vnd.fujitsu.oasys2': 'oa2',
|
|
235
|
-
'application/vnd.fujitsu.oasys3': 'oa3',
|
|
236
|
-
'application/vnd.fujitsu.oasysgp': 'fg5',
|
|
237
|
-
'application/vnd.fujitsu.oasysprs': 'bh2',
|
|
238
|
-
'application/vnd.fujixerox.ddd': 'ddd',
|
|
239
|
-
'application/vnd.fujixerox.docuworks': 'xdw',
|
|
240
|
-
'application/vnd.fujixerox.docuworks.binder': 'xbd',
|
|
241
|
-
'application/vnd.fuzzysheet': 'fzs',
|
|
242
|
-
'application/vnd.genomatix.tuxedo': 'txd',
|
|
243
|
-
'application/vnd.geogebra.file': 'ggb',
|
|
244
|
-
'application/vnd.geogebra.tool': 'ggt',
|
|
245
|
-
'application/vnd.geometry-explorer': 'gex',
|
|
246
|
-
'application/vnd.geonext': 'gxt',
|
|
247
|
-
'application/vnd.geoplan': 'g2w',
|
|
248
|
-
'application/vnd.geospace': 'g3w',
|
|
249
|
-
'application/vnd.gmx': 'gmx',
|
|
250
|
-
'application/vnd.google-earth.kml+xml': 'kml',
|
|
251
|
-
'application/vnd.google-earth.kmz': 'kmz',
|
|
252
|
-
'application/vnd.grafeq': 'gqf',
|
|
253
|
-
'application/vnd.groove-account': 'gac',
|
|
254
|
-
'application/vnd.groove-help': 'ghf',
|
|
255
|
-
'application/vnd.groove-identity-message': 'gim',
|
|
256
|
-
'application/vnd.groove-injector': 'grv',
|
|
257
|
-
'application/vnd.groove-tool-message': 'gtm',
|
|
258
|
-
'application/vnd.groove-tool-template': 'tpl',
|
|
259
|
-
'application/vnd.groove-vcard': 'vcg',
|
|
260
|
-
'application/vnd.hal+xml': 'hal',
|
|
261
|
-
'application/vnd.handheld-entertainment+xml': 'zmm',
|
|
262
|
-
'application/vnd.hbci': 'hbci',
|
|
263
|
-
'application/vnd.hhe.lesson-player': 'les',
|
|
264
|
-
'application/vnd.hp-hpgl': ['hgl', 'hpg', 'hpgl'],
|
|
265
|
-
'application/vnd.hp-hpid': 'hpid',
|
|
266
|
-
'application/vnd.hp-hps': 'hps',
|
|
267
|
-
'application/vnd.hp-jlyt': 'jlt',
|
|
268
|
-
'application/vnd.hp-pcl': 'pcl',
|
|
269
|
-
'application/vnd.hp-pclxl': 'pclxl',
|
|
270
|
-
'application/vnd.hydrostatix.sof-data': 'sfd-hdstx',
|
|
271
|
-
'application/vnd.hzn-3d-crossword': 'x3d',
|
|
272
|
-
'application/vnd.ibm.minipay': 'mpy',
|
|
273
|
-
'application/vnd.ibm.modcap': 'afp',
|
|
274
|
-
'application/vnd.ibm.rights-management': 'irm',
|
|
275
|
-
'application/vnd.ibm.secure-container': 'sc',
|
|
276
|
-
'application/vnd.iccprofile': 'icc',
|
|
277
|
-
'application/vnd.igloader': 'igl',
|
|
278
|
-
'application/vnd.immervision-ivp': 'ivp',
|
|
279
|
-
'application/vnd.immervision-ivu': 'ivu',
|
|
280
|
-
'application/vnd.insors.igm': 'igm',
|
|
281
|
-
'application/vnd.intercon.formnet': 'xpw',
|
|
282
|
-
'application/vnd.intergeo': 'i2g',
|
|
283
|
-
'application/vnd.intu.qbo': 'qbo',
|
|
284
|
-
'application/vnd.intu.qfx': 'qfx',
|
|
285
|
-
'application/vnd.ipunplugged.rcprofile': 'rcprofile',
|
|
286
|
-
'application/vnd.irepository.package+xml': 'irp',
|
|
287
|
-
'application/vnd.is-xpr': 'xpr',
|
|
288
|
-
'application/vnd.isac.fcs': 'fcs',
|
|
289
|
-
'application/vnd.jam': 'jam',
|
|
290
|
-
'application/vnd.jcp.javame.midlet-rms': 'rms',
|
|
291
|
-
'application/vnd.jisp': 'jisp',
|
|
292
|
-
'application/vnd.joost.joda-archive': 'joda',
|
|
293
|
-
'application/vnd.kahootz': 'ktz',
|
|
294
|
-
'application/vnd.kde.karbon': 'karbon',
|
|
295
|
-
'application/vnd.kde.kchart': 'chrt',
|
|
296
|
-
'application/vnd.kde.kformula': 'kfo',
|
|
297
|
-
'application/vnd.kde.kivio': 'flw',
|
|
298
|
-
'application/vnd.kde.kontour': 'kon',
|
|
299
|
-
'application/vnd.kde.kpresenter': 'kpr',
|
|
300
|
-
'application/vnd.kde.kspread': 'ksp',
|
|
301
|
-
'application/vnd.kde.kword': 'kwd',
|
|
302
|
-
'application/vnd.kenameaapp': 'htke',
|
|
303
|
-
'application/vnd.kidspiration': 'kia',
|
|
304
|
-
'application/vnd.kinar': 'kne',
|
|
305
|
-
'application/vnd.koan': 'skp',
|
|
306
|
-
'application/vnd.kodak-descriptor': 'sse',
|
|
307
|
-
'application/vnd.las.las+xml': 'lasxml',
|
|
308
|
-
'application/vnd.llamagraphics.life-balance.desktop': 'lbd',
|
|
309
|
-
'application/vnd.llamagraphics.life-balance.exchange+xml': 'lbe',
|
|
310
|
-
'application/vnd.lotus-1-2-3': '123',
|
|
311
|
-
'application/vnd.lotus-approach': 'apr',
|
|
312
|
-
'application/vnd.lotus-freelance': 'pre',
|
|
313
|
-
'application/vnd.lotus-notes': 'nsf',
|
|
314
|
-
'application/vnd.lotus-organizer': 'org',
|
|
315
|
-
'application/vnd.lotus-screencam': 'scm',
|
|
316
|
-
'application/vnd.lotus-wordpro': 'lwp',
|
|
317
|
-
'application/vnd.macports.portpkg': 'portpkg',
|
|
318
|
-
'application/vnd.mcd': 'mcd',
|
|
319
|
-
'application/vnd.medcalcdata': 'mc1',
|
|
320
|
-
'application/vnd.mediastation.cdkey': 'cdkey',
|
|
321
|
-
'application/vnd.mfer': 'mwf',
|
|
322
|
-
'application/vnd.mfmp': 'mfm',
|
|
323
|
-
'application/vnd.micrografx.flo': 'flo',
|
|
324
|
-
'application/vnd.micrografx.igx': 'igx',
|
|
325
|
-
'application/vnd.mif': 'mif',
|
|
326
|
-
'application/vnd.mobius.daf': 'daf',
|
|
327
|
-
'application/vnd.mobius.dis': 'dis',
|
|
328
|
-
'application/vnd.mobius.mbk': 'mbk',
|
|
329
|
-
'application/vnd.mobius.mqy': 'mqy',
|
|
330
|
-
'application/vnd.mobius.msl': 'msl',
|
|
331
|
-
'application/vnd.mobius.plc': 'plc',
|
|
332
|
-
'application/vnd.mobius.txf': 'txf',
|
|
333
|
-
'application/vnd.mophun.application': 'mpn',
|
|
334
|
-
'application/vnd.mophun.certificate': 'mpc',
|
|
335
|
-
'application/vnd.mozilla.xul+xml': 'xul',
|
|
336
|
-
'application/vnd.ms-artgalry': 'cil',
|
|
337
|
-
'application/vnd.ms-cab-compressed': 'cab',
|
|
338
|
-
'application/vnd.ms-excel': ['xls', 'xla', 'xlc', 'xlm', 'xlt', 'xlw', 'xlb', 'xll'],
|
|
339
|
-
'application/vnd.ms-excel.addin.macroenabled.12': 'xlam',
|
|
340
|
-
'application/vnd.ms-excel.sheet.binary.macroenabled.12': 'xlsb',
|
|
341
|
-
'application/vnd.ms-excel.sheet.macroenabled.12': 'xlsm',
|
|
342
|
-
'application/vnd.ms-excel.template.macroenabled.12': 'xltm',
|
|
343
|
-
'application/vnd.ms-fontobject': 'eot',
|
|
344
|
-
'application/vnd.ms-htmlhelp': 'chm',
|
|
345
|
-
'application/vnd.ms-ims': 'ims',
|
|
346
|
-
'application/vnd.ms-lrm': 'lrm',
|
|
347
|
-
'application/vnd.ms-officetheme': 'thmx',
|
|
348
|
-
'application/vnd.ms-outlook': 'msg',
|
|
349
|
-
'application/vnd.ms-pki.certstore': 'sst',
|
|
350
|
-
'application/vnd.ms-pki.pko': 'pko',
|
|
351
|
-
'application/vnd.ms-pki.seccat': 'cat',
|
|
352
|
-
'application/vnd.ms-pki.stl': 'stl',
|
|
353
|
-
'application/vnd.ms-pkicertstore': 'sst',
|
|
354
|
-
'application/vnd.ms-pkiseccat': 'cat',
|
|
355
|
-
'application/vnd.ms-pkistl': 'stl',
|
|
356
|
-
'application/vnd.ms-powerpoint': ['ppt', 'pot', 'pps', 'ppa', 'pwz'],
|
|
357
|
-
'application/vnd.ms-powerpoint.addin.macroenabled.12': 'ppam',
|
|
358
|
-
'application/vnd.ms-powerpoint.presentation.macroenabled.12': 'pptm',
|
|
359
|
-
'application/vnd.ms-powerpoint.slide.macroenabled.12': 'sldm',
|
|
360
|
-
'application/vnd.ms-powerpoint.slideshow.macroenabled.12': 'ppsm',
|
|
361
|
-
'application/vnd.ms-powerpoint.template.macroenabled.12': 'potm',
|
|
362
|
-
'application/vnd.ms-project': 'mpp',
|
|
363
|
-
'application/vnd.ms-word.document.macroenabled.12': 'docm',
|
|
364
|
-
'application/vnd.ms-word.template.macroenabled.12': 'dotm',
|
|
365
|
-
'application/vnd.ms-works': ['wks', 'wcm', 'wdb', 'wps'],
|
|
366
|
-
'application/vnd.ms-wpl': 'wpl',
|
|
367
|
-
'application/vnd.ms-xpsdocument': 'xps',
|
|
368
|
-
'application/vnd.mseq': 'mseq',
|
|
369
|
-
'application/vnd.musician': 'mus',
|
|
370
|
-
'application/vnd.muvee.style': 'msty',
|
|
371
|
-
'application/vnd.neurolanguage.nlu': 'nlu',
|
|
372
|
-
'application/vnd.noblenet-directory': 'nnd',
|
|
373
|
-
'application/vnd.noblenet-sealer': 'nns',
|
|
374
|
-
'application/vnd.noblenet-web': 'nnw',
|
|
375
|
-
'application/vnd.nokia.configuration-message': 'ncm',
|
|
376
|
-
'application/vnd.nokia.n-gage.data': 'ngdat',
|
|
377
|
-
'application/vnd.nokia.n-gage.symbian.install': 'n-gage',
|
|
378
|
-
'application/vnd.nokia.radio-preset': 'rpst',
|
|
379
|
-
'application/vnd.nokia.radio-presets': 'rpss',
|
|
380
|
-
'application/vnd.nokia.ringing-tone': 'rng',
|
|
381
|
-
'application/vnd.novadigm.edm': 'edm',
|
|
382
|
-
'application/vnd.novadigm.edx': 'edx',
|
|
383
|
-
'application/vnd.novadigm.ext': 'ext',
|
|
384
|
-
'application/vnd.oasis.opendocument.chart': 'odc',
|
|
385
|
-
'application/vnd.oasis.opendocument.chart-template': 'otc',
|
|
386
|
-
'application/vnd.oasis.opendocument.database': 'odb',
|
|
387
|
-
'application/vnd.oasis.opendocument.formula': 'odf',
|
|
388
|
-
'application/vnd.oasis.opendocument.formula-template': 'odft',
|
|
389
|
-
'application/vnd.oasis.opendocument.graphics': 'odg',
|
|
390
|
-
'application/vnd.oasis.opendocument.graphics-template': 'otg',
|
|
391
|
-
'application/vnd.oasis.opendocument.image': 'odi',
|
|
392
|
-
'application/vnd.oasis.opendocument.image-template': 'oti',
|
|
393
|
-
'application/vnd.oasis.opendocument.presentation': 'odp',
|
|
394
|
-
'application/vnd.oasis.opendocument.presentation-template': 'otp',
|
|
395
|
-
'application/vnd.oasis.opendocument.spreadsheet': 'ods',
|
|
396
|
-
'application/vnd.oasis.opendocument.spreadsheet-template': 'ots',
|
|
397
|
-
'application/vnd.oasis.opendocument.text': 'odt',
|
|
398
|
-
'application/vnd.oasis.opendocument.text-master': 'odm',
|
|
399
|
-
'application/vnd.oasis.opendocument.text-template': 'ott',
|
|
400
|
-
'application/vnd.oasis.opendocument.text-web': 'oth',
|
|
401
|
-
'application/vnd.olpc-sugar': 'xo',
|
|
402
|
-
'application/vnd.oma.dd2+xml': 'dd2',
|
|
403
|
-
'application/vnd.openofficeorg.extension': 'oxt',
|
|
404
|
-
'application/vnd.openxmlformats-officedocument.presentationml.presentation': 'pptx',
|
|
405
|
-
'application/vnd.openxmlformats-officedocument.presentationml.slide': 'sldx',
|
|
406
|
-
'application/vnd.openxmlformats-officedocument.presentationml.slideshow': 'ppsx',
|
|
407
|
-
'application/vnd.openxmlformats-officedocument.presentationml.template': 'potx',
|
|
408
|
-
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet': 'xlsx',
|
|
409
|
-
'application/vnd.openxmlformats-officedocument.spreadsheetml.template': 'xltx',
|
|
410
|
-
'application/vnd.openxmlformats-officedocument.wordprocessingml.document': 'docx',
|
|
411
|
-
'application/vnd.openxmlformats-officedocument.wordprocessingml.template': 'dotx',
|
|
412
|
-
'application/vnd.osgeo.mapguide.package': 'mgp',
|
|
413
|
-
'application/vnd.osgi.dp': 'dp',
|
|
414
|
-
'application/vnd.palm': 'pdb',
|
|
415
|
-
'application/vnd.pawaafile': 'paw',
|
|
416
|
-
'application/vnd.pg.format': 'str',
|
|
417
|
-
'application/vnd.pg.osasli': 'ei6',
|
|
418
|
-
'application/vnd.picsel': 'efif',
|
|
419
|
-
'application/vnd.pmi.widget': 'wg',
|
|
420
|
-
'application/vnd.pocketlearn': 'plf',
|
|
421
|
-
'application/vnd.powerbuilder6': 'pbd',
|
|
422
|
-
'application/vnd.previewsystems.box': 'box',
|
|
423
|
-
'application/vnd.proteus.magazine': 'mgz',
|
|
424
|
-
'application/vnd.publishare-delta-tree': 'qps',
|
|
425
|
-
'application/vnd.pvi.ptid1': 'ptid',
|
|
426
|
-
'application/vnd.quark.quarkxpress': 'qxd',
|
|
427
|
-
'application/vnd.realvnc.bed': 'bed',
|
|
428
|
-
'application/vnd.recordare.musicxml': 'mxl',
|
|
429
|
-
'application/vnd.recordare.musicxml+xml': 'musicxml',
|
|
430
|
-
'application/vnd.rig.cryptonote': 'cryptonote',
|
|
431
|
-
'application/vnd.rim.cod': 'cod',
|
|
432
|
-
'application/vnd.rn-realmedia': 'rm',
|
|
433
|
-
'application/vnd.rn-realplayer': 'rnx',
|
|
434
|
-
'application/vnd.route66.link66+xml': 'link66',
|
|
435
|
-
'application/vnd.sailingtracker.track': 'st',
|
|
436
|
-
'application/vnd.seemail': 'see',
|
|
437
|
-
'application/vnd.sema': 'sema',
|
|
438
|
-
'application/vnd.semd': 'semd',
|
|
439
|
-
'application/vnd.semf': 'semf',
|
|
440
|
-
'application/vnd.shana.informed.formdata': 'ifm',
|
|
441
|
-
'application/vnd.shana.informed.formtemplate': 'itp',
|
|
442
|
-
'application/vnd.shana.informed.interchange': 'iif',
|
|
443
|
-
'application/vnd.shana.informed.package': 'ipk',
|
|
444
|
-
'application/vnd.simtech-mindmapper': 'twd',
|
|
445
|
-
'application/vnd.smaf': 'mmf',
|
|
446
|
-
'application/vnd.smart.teacher': 'teacher',
|
|
447
|
-
'application/vnd.solent.sdkm+xml': 'sdkm',
|
|
448
|
-
'application/vnd.spotfire.dxp': 'dxp',
|
|
449
|
-
'application/vnd.spotfire.sfs': 'sfs',
|
|
450
|
-
'application/vnd.stardivision.calc': 'sdc',
|
|
451
|
-
'application/vnd.stardivision.draw': 'sda',
|
|
452
|
-
'application/vnd.stardivision.impress': 'sdd',
|
|
453
|
-
'application/vnd.stardivision.math': 'smf',
|
|
454
|
-
'application/vnd.stardivision.writer': 'sdw',
|
|
455
|
-
'application/vnd.stardivision.writer-global': 'sgl',
|
|
456
|
-
'application/vnd.stepmania.stepchart': 'sm',
|
|
457
|
-
'application/vnd.sun.xml.calc': 'sxc',
|
|
458
|
-
'application/vnd.sun.xml.calc.template': 'stc',
|
|
459
|
-
'application/vnd.sun.xml.draw': 'sxd',
|
|
460
|
-
'application/vnd.sun.xml.draw.template': 'std',
|
|
461
|
-
'application/vnd.sun.xml.impress': 'sxi',
|
|
462
|
-
'application/vnd.sun.xml.impress.template': 'sti',
|
|
463
|
-
'application/vnd.sun.xml.math': 'sxm',
|
|
464
|
-
'application/vnd.sun.xml.writer': 'sxw',
|
|
465
|
-
'application/vnd.sun.xml.writer.global': 'sxg',
|
|
466
|
-
'application/vnd.sun.xml.writer.template': 'stw',
|
|
467
|
-
'application/vnd.sus-calendar': 'sus',
|
|
468
|
-
'application/vnd.svd': 'svd',
|
|
469
|
-
'application/vnd.symbian.install': 'sis',
|
|
470
|
-
'application/vnd.syncml+xml': 'xsm',
|
|
471
|
-
'application/vnd.syncml.dm+wbxml': 'bdm',
|
|
472
|
-
'application/vnd.syncml.dm+xml': 'xdm',
|
|
473
|
-
'application/vnd.tao.intent-module-archive': 'tao',
|
|
474
|
-
'application/vnd.tmobile-livetv': 'tmo',
|
|
475
|
-
'application/vnd.trid.tpt': 'tpt',
|
|
476
|
-
'application/vnd.triscape.mxs': 'mxs',
|
|
477
|
-
'application/vnd.trueapp': 'tra',
|
|
478
|
-
'application/vnd.ufdl': 'ufd',
|
|
479
|
-
'application/vnd.uiq.theme': 'utz',
|
|
480
|
-
'application/vnd.umajin': 'umj',
|
|
481
|
-
'application/vnd.unity': 'unityweb',
|
|
482
|
-
'application/vnd.uoml+xml': 'uoml',
|
|
483
|
-
'application/vnd.vcx': 'vcx',
|
|
484
|
-
'application/vnd.visio': 'vsd',
|
|
485
|
-
'application/vnd.visionary': 'vis',
|
|
486
|
-
'application/vnd.vsf': 'vsf',
|
|
487
|
-
'application/vnd.wap.wbxml': 'wbxml',
|
|
488
|
-
'application/vnd.wap.wmlc': 'wmlc',
|
|
489
|
-
'application/vnd.wap.wmlscriptc': 'wmlsc',
|
|
490
|
-
'application/vnd.webturbo': 'wtb',
|
|
491
|
-
'application/vnd.wolfram.player': 'nbp',
|
|
492
|
-
'application/vnd.wordperfect': 'wpd',
|
|
493
|
-
'application/vnd.wqd': 'wqd',
|
|
494
|
-
'application/vnd.wt.stf': 'stf',
|
|
495
|
-
'application/vnd.xara': ['web', 'xar'],
|
|
496
|
-
'application/vnd.xfdl': 'xfdl',
|
|
497
|
-
'application/vnd.yamaha.hv-dic': 'hvd',
|
|
498
|
-
'application/vnd.yamaha.hv-script': 'hvs',
|
|
499
|
-
'application/vnd.yamaha.hv-voice': 'hvp',
|
|
500
|
-
'application/vnd.yamaha.openscoreformat': 'osf',
|
|
501
|
-
'application/vnd.yamaha.openscoreformat.osfpvg+xml': 'osfpvg',
|
|
502
|
-
'application/vnd.yamaha.smaf-audio': 'saf',
|
|
503
|
-
'application/vnd.yamaha.smaf-phrase': 'spf',
|
|
504
|
-
'application/vnd.yellowriver-custom-menu': 'cmp',
|
|
505
|
-
'application/vnd.zul': 'zir',
|
|
506
|
-
'application/vnd.zzazz.deck+xml': 'zaz',
|
|
507
|
-
'application/vocaltec-media-desc': 'vmd',
|
|
508
|
-
'application/vocaltec-media-file': 'vmf',
|
|
509
|
-
'application/voicexml+xml': 'vxml',
|
|
510
|
-
'application/widget': 'wgt',
|
|
511
|
-
'application/winhlp': 'hlp',
|
|
512
|
-
'application/wordperfect': ['wp', 'wp5', 'wp6', 'wpd'],
|
|
513
|
-
'application/wordperfect6.0': ['w60', 'wp5'],
|
|
514
|
-
'application/wordperfect6.1': 'w61',
|
|
515
|
-
'application/wsdl+xml': 'wsdl',
|
|
516
|
-
'application/wspolicy+xml': 'wspolicy',
|
|
517
|
-
'application/x-123': 'wk1',
|
|
518
|
-
'application/x-7z-compressed': '7z',
|
|
519
|
-
'application/x-abiword': 'abw',
|
|
520
|
-
'application/x-ace-compressed': 'ace',
|
|
521
|
-
'application/x-aim': 'aim',
|
|
522
|
-
'application/x-authorware-bin': 'aab',
|
|
523
|
-
'application/x-authorware-map': 'aam',
|
|
524
|
-
'application/x-authorware-seg': 'aas',
|
|
525
|
-
'application/x-bcpio': 'bcpio',
|
|
526
|
-
'application/x-binary': 'bin',
|
|
527
|
-
'application/x-binhex40': 'hqx',
|
|
528
|
-
'application/x-bittorrent': 'torrent',
|
|
529
|
-
'application/x-bsh': ['bsh', 'sh', 'shar'],
|
|
530
|
-
'application/x-bytecode.elisp': 'elc',
|
|
531
|
-
'applicaiton/x-bytecode.python': 'pyc',
|
|
532
|
-
'application/x-bzip': 'bz',
|
|
533
|
-
'application/x-bzip2': ['boz', 'bz2'],
|
|
534
|
-
'application/x-cdf': 'cdf',
|
|
535
|
-
'application/x-cdlink': 'vcd',
|
|
536
|
-
'application/x-chat': ['cha', 'chat'],
|
|
537
|
-
'application/x-chess-pgn': 'pgn',
|
|
538
|
-
'application/x-cmu-raster': 'ras',
|
|
539
|
-
'application/x-cocoa': 'cco',
|
|
540
|
-
'application/x-compactpro': 'cpt',
|
|
541
|
-
'application/x-compress': 'z',
|
|
542
|
-
'application/x-compressed': ['tgz', 'gz', 'z', 'zip'],
|
|
543
|
-
'application/x-conference': 'nsc',
|
|
544
|
-
'application/x-cpio': 'cpio',
|
|
545
|
-
'application/x-cpt': 'cpt',
|
|
546
|
-
'application/x-csh': 'csh',
|
|
547
|
-
'application/x-debian-package': 'deb',
|
|
548
|
-
'application/x-deepv': 'deepv',
|
|
549
|
-
'application/x-director': ['dir', 'dcr', 'dxr'],
|
|
550
|
-
'application/x-doom': 'wad',
|
|
551
|
-
'application/x-dtbncx+xml': 'ncx',
|
|
552
|
-
'application/x-dtbook+xml': 'dtb',
|
|
553
|
-
'application/x-dtbresource+xml': 'res',
|
|
554
|
-
'application/x-dvi': 'dvi',
|
|
555
|
-
'application/x-elc': 'elc',
|
|
556
|
-
'application/x-envoy': ['env', 'evy'],
|
|
557
|
-
'application/x-esrehber': 'es',
|
|
558
|
-
'application/x-excel': ['xls', 'xla', 'xlb', 'xlc', 'xld', 'xlk', 'xll', 'xlm', 'xlt', 'xlv', 'xlw'],
|
|
559
|
-
'application/x-font-bdf': 'bdf',
|
|
560
|
-
'application/x-font-ghostscript': 'gsf',
|
|
561
|
-
'application/x-font-linux-psf': 'psf',
|
|
562
|
-
'application/x-font-otf': 'otf',
|
|
563
|
-
'application/x-font-pcf': 'pcf',
|
|
564
|
-
'application/x-font-snf': 'snf',
|
|
565
|
-
'application/x-font-ttf': 'ttf',
|
|
566
|
-
'application/x-font-type1': 'pfa',
|
|
567
|
-
'application/x-font-woff': 'woff',
|
|
568
|
-
'application/x-frame': 'mif',
|
|
569
|
-
'application/x-freelance': 'pre',
|
|
570
|
-
'application/x-futuresplash': 'spl',
|
|
571
|
-
'application/x-gnumeric': 'gnumeric',
|
|
572
|
-
'application/x-gsp': 'gsp',
|
|
573
|
-
'application/x-gss': 'gss',
|
|
574
|
-
'application/x-gtar': 'gtar',
|
|
575
|
-
'application/x-gzip': ['gz', 'gzip'],
|
|
576
|
-
'application/x-hdf': 'hdf',
|
|
577
|
-
'application/x-helpfile': ['help', 'hlp'],
|
|
578
|
-
'application/x-httpd-imap': 'imap',
|
|
579
|
-
'application/x-ima': 'ima',
|
|
580
|
-
'application/x-internet-signup': ['ins', 'isp'],
|
|
581
|
-
'application/x-internett-signup': 'ins',
|
|
582
|
-
'application/x-inventor': 'iv',
|
|
583
|
-
'application/x-ip2': 'ip',
|
|
584
|
-
'application/x-iphone': 'iii',
|
|
585
|
-
'application/x-java-class': 'class',
|
|
586
|
-
'application/x-java-commerce': 'jcm',
|
|
587
|
-
'application/x-java-jnlp-file': 'jnlp',
|
|
588
|
-
'application/x-javascript': 'js',
|
|
589
|
-
'application/x-koan': ['skd', 'skm', 'skp', 'skt'],
|
|
590
|
-
'application/x-ksh': 'ksh',
|
|
591
|
-
'application/x-latex': ['latex', 'ltx'],
|
|
592
|
-
'application/x-lha': 'lha',
|
|
593
|
-
'application/x-lisp': 'lsp',
|
|
594
|
-
'application/x-livescreen': 'ivy',
|
|
595
|
-
'application/x-lotus': 'wq1',
|
|
596
|
-
'application/x-lotusscreencam': 'scm',
|
|
597
|
-
'application/x-lzh': 'lzh',
|
|
598
|
-
'application/x-lzx': 'lzx',
|
|
599
|
-
'application/x-mac-binhex40': 'hqx',
|
|
600
|
-
'application/x-macbinary': 'bin',
|
|
601
|
-
'application/x-magic-cap-package-1.0': 'mc$',
|
|
602
|
-
'application/x-mathcad': 'mcd',
|
|
603
|
-
'application/x-meme': 'mm',
|
|
604
|
-
'application/x-midi': ['mid', 'midi'],
|
|
605
|
-
'application/x-mif': 'mif',
|
|
606
|
-
'application/x-mix-transfer': 'nix',
|
|
607
|
-
'application/x-mobipocket-ebook': 'prc',
|
|
608
|
-
'application/x-mplayer2': 'asx',
|
|
609
|
-
'application/x-ms-application': 'application',
|
|
610
|
-
'application/x-ms-wmd': 'wmd',
|
|
611
|
-
'application/x-ms-wmz': 'wmz',
|
|
612
|
-
'application/x-ms-xbap': 'xbap',
|
|
613
|
-
'application/x-msaccess': 'mdb',
|
|
614
|
-
'application/x-msbinder': 'obd',
|
|
615
|
-
'application/x-mscardfile': 'crd',
|
|
616
|
-
'application/x-msclip': 'clp',
|
|
617
|
-
'application/x-msdownload': ['exe', 'dll'],
|
|
618
|
-
'application/x-msexcel': ['xls', 'xla', 'xlw'],
|
|
619
|
-
'application/x-msmediaview': ['mvb', 'm13', 'm14'],
|
|
620
|
-
'application/x-msmetafile': 'wmf',
|
|
621
|
-
'application/x-msmoney': 'mny',
|
|
622
|
-
'application/x-mspowerpoint': 'ppt',
|
|
623
|
-
'application/x-mspublisher': 'pub',
|
|
624
|
-
'application/x-msschedule': 'scd',
|
|
625
|
-
'application/x-msterminal': 'trm',
|
|
626
|
-
'application/x-mswrite': 'wri',
|
|
627
|
-
'application/x-navi-animation': 'ani',
|
|
628
|
-
'application/x-navidoc': 'nvd',
|
|
629
|
-
'application/x-navimap': 'map',
|
|
630
|
-
'application/x-navistyle': 'stl',
|
|
631
|
-
'application/x-netcdf': ['cdf', 'nc'],
|
|
632
|
-
'application/x-newton-compatible-pkg': 'pkg',
|
|
633
|
-
'application/x-nokia-9000-communicator-add-on-software': 'aos',
|
|
634
|
-
'application/x-omc': 'omc',
|
|
635
|
-
'application/x-omcdatamaker': 'omcd',
|
|
636
|
-
'application/x-omcregerator': 'omcr',
|
|
637
|
-
'application/x-pagemaker': ['pm4', 'pm5'],
|
|
638
|
-
'application/x-pcl': 'pcl',
|
|
639
|
-
'application/x-perfmon': ['pma', 'pmc', 'pml', 'pmr', 'pmw'],
|
|
640
|
-
'application/x-pixclscript': 'plx',
|
|
641
|
-
'application/x-pkcs10': 'p10',
|
|
642
|
-
'application/x-pkcs12': ['p12', 'pfx'],
|
|
643
|
-
'application/x-pkcs7-certificates': ['p7b', 'spc'],
|
|
644
|
-
'application/x-pkcs7-certreqresp': 'p7r',
|
|
645
|
-
'application/x-pkcs7-mime': ['p7m', 'p7c'],
|
|
646
|
-
'application/x-pkcs7-signature': ['p7s', 'p7a'],
|
|
647
|
-
'application/x-pointplus': 'css',
|
|
648
|
-
'application/x-portable-anymap': 'pnm',
|
|
649
|
-
'application/x-project': ['mpc', 'mpt', 'mpv', 'mpx'],
|
|
650
|
-
'application/x-qpro': 'wb1',
|
|
651
|
-
'application/x-rar-compressed': 'rar',
|
|
652
|
-
'application/x-rtf': 'rtf',
|
|
653
|
-
'application/x-sdp': 'sdp',
|
|
654
|
-
'application/x-sea': 'sea',
|
|
655
|
-
'application/x-seelogo': 'sl',
|
|
656
|
-
'application/x-sh': 'sh',
|
|
657
|
-
'application/x-shar': ['shar', 'sh'],
|
|
658
|
-
'application/x-shockwave-flash': 'swf',
|
|
659
|
-
'application/x-silverlight-app': 'xap',
|
|
660
|
-
'application/x-sit': 'sit',
|
|
661
|
-
'application/x-sprite': ['spr', 'sprite'],
|
|
662
|
-
'application/x-stuffit': 'sit',
|
|
663
|
-
'application/x-stuffitx': 'sitx',
|
|
664
|
-
'application/x-sv4cpio': 'sv4cpio',
|
|
665
|
-
'application/x-sv4crc': 'sv4crc',
|
|
666
|
-
'application/x-tar': 'tar',
|
|
667
|
-
'application/x-tbook': ['sbk', 'tbk'],
|
|
668
|
-
'application/x-tcl': 'tcl',
|
|
669
|
-
'application/x-tex': 'tex',
|
|
670
|
-
'application/x-tex-tfm': 'tfm',
|
|
671
|
-
'application/x-texinfo': ['texi', 'texinfo'],
|
|
672
|
-
'application/x-troff': ['roff', 't', 'tr'],
|
|
673
|
-
'application/x-troff-man': 'man',
|
|
674
|
-
'application/x-troff-me': 'me',
|
|
675
|
-
'application/x-troff-ms': 'ms',
|
|
676
|
-
'application/x-troff-msvideo': 'avi',
|
|
677
|
-
'application/x-ustar': 'ustar',
|
|
678
|
-
'application/x-visio': ['vsd', 'vst', 'vsw'],
|
|
679
|
-
'application/x-vnd.audioexplosion.mzz': 'mzz',
|
|
680
|
-
'application/x-vnd.ls-xpix': 'xpix',
|
|
681
|
-
'application/x-vrml': 'vrml',
|
|
682
|
-
'application/x-wais-source': ['src', 'wsrc'],
|
|
683
|
-
'application/x-winhelp': 'hlp',
|
|
684
|
-
'application/x-wintalk': 'wtk',
|
|
685
|
-
'application/x-world': ['wrl', 'svr'],
|
|
686
|
-
'application/x-wpwin': 'wpd',
|
|
687
|
-
'application/x-wri': 'wri',
|
|
688
|
-
'application/x-x509-ca-cert': ['cer', 'crt', 'der'],
|
|
689
|
-
'application/x-x509-user-cert': 'crt',
|
|
690
|
-
'application/x-xfig': 'fig',
|
|
691
|
-
'application/x-xpinstall': 'xpi',
|
|
692
|
-
'application/x-zip-compressed': 'zip',
|
|
693
|
-
'application/xcap-diff+xml': 'xdf',
|
|
694
|
-
'application/xenc+xml': 'xenc',
|
|
695
|
-
'application/xhtml+xml': 'xhtml',
|
|
696
|
-
'application/xml': 'xml',
|
|
697
|
-
'application/xml-dtd': 'dtd',
|
|
698
|
-
'application/xop+xml': 'xop',
|
|
699
|
-
'application/xslt+xml': 'xslt',
|
|
700
|
-
'application/xspf+xml': 'xspf',
|
|
701
|
-
'application/xv+xml': 'mxml',
|
|
702
|
-
'application/yang': 'yang',
|
|
703
|
-
'application/yin+xml': 'yin',
|
|
704
|
-
'application/ynd.ms-pkipko': 'pko',
|
|
705
|
-
'application/zip': 'zip',
|
|
706
|
-
'audio/adpcm': 'adp',
|
|
707
|
-
'audio/aiff': ['aiff', 'aif', 'aifc'],
|
|
708
|
-
'audio/basic': ['snd', 'au'],
|
|
709
|
-
'audio/it': 'it',
|
|
710
|
-
'audio/make': ['funk', 'my', 'pfunk'],
|
|
711
|
-
'audio/make.my.funk': 'pfunk',
|
|
712
|
-
'audio/mid': ['mid', 'rmi'],
|
|
713
|
-
'audio/midi': ['midi', 'kar', 'mid'],
|
|
714
|
-
'audio/mod': 'mod',
|
|
715
|
-
'audio/mp4': 'mp4a',
|
|
716
|
-
'audio/mpeg': ['mpga', 'mp3', 'm2a', 'mp2', 'mpa', 'mpg'],
|
|
717
|
-
'audio/mpeg3': 'mp3',
|
|
718
|
-
'audio/nspaudio': ['la', 'lma'],
|
|
719
|
-
'audio/ogg': 'oga',
|
|
720
|
-
'audio/s3m': 's3m',
|
|
721
|
-
'audio/tsp-audio': 'tsi',
|
|
722
|
-
'audio/tsplayer': 'tsp',
|
|
723
|
-
'audio/vnd.dece.audio': 'uva',
|
|
724
|
-
'audio/vnd.digital-winds': 'eol',
|
|
725
|
-
'audio/vnd.dra': 'dra',
|
|
726
|
-
'audio/vnd.dts': 'dts',
|
|
727
|
-
'audio/vnd.dts.hd': 'dtshd',
|
|
728
|
-
'audio/vnd.lucent.voice': 'lvp',
|
|
729
|
-
'audio/vnd.ms-playready.media.pya': 'pya',
|
|
730
|
-
'audio/vnd.nuera.ecelp4800': 'ecelp4800',
|
|
731
|
-
'audio/vnd.nuera.ecelp7470': 'ecelp7470',
|
|
732
|
-
'audio/vnd.nuera.ecelp9600': 'ecelp9600',
|
|
733
|
-
'audio/vnd.qcelp': 'qcp',
|
|
734
|
-
'audio/vnd.rip': 'rip',
|
|
735
|
-
'audio/voc': 'voc',
|
|
736
|
-
'audio/voxware': 'vox',
|
|
737
|
-
'audio/wav': 'wav',
|
|
738
|
-
'audio/webm': 'weba',
|
|
739
|
-
'audio/x-aac': 'aac',
|
|
740
|
-
'audio/x-adpcm': 'snd',
|
|
741
|
-
'audio/x-aiff': ['aiff', 'aif', 'aifc'],
|
|
742
|
-
'audio/x-au': 'au',
|
|
743
|
-
'audio/x-gsm': ['gsd', 'gsm'],
|
|
744
|
-
'audio/x-jam': 'jam',
|
|
745
|
-
'audio/x-liveaudio': 'lam',
|
|
746
|
-
'audio/x-mid': ['mid', 'midi'],
|
|
747
|
-
'audio/x-midi': ['midi', 'mid'],
|
|
748
|
-
'audio/x-mod': 'mod',
|
|
749
|
-
'audio/x-mpeg': 'mp2',
|
|
750
|
-
'audio/x-mpeg-3': 'mp3',
|
|
751
|
-
'audio/x-mpegurl': 'm3u',
|
|
752
|
-
'audio/x-mpequrl': 'm3u',
|
|
753
|
-
'audio/x-ms-wax': 'wax',
|
|
754
|
-
'audio/x-ms-wma': 'wma',
|
|
755
|
-
'audio/x-nspaudio': ['la', 'lma'],
|
|
756
|
-
'audio/x-pn-realaudio': ['ra', 'ram', 'rm', 'rmm', 'rmp'],
|
|
757
|
-
'audio/x-pn-realaudio-plugin': ['ra', 'rmp', 'rpm'],
|
|
758
|
-
'audio/x-psid': 'sid',
|
|
759
|
-
'audio/x-realaudio': 'ra',
|
|
760
|
-
'audio/x-twinvq': 'vqf',
|
|
761
|
-
'audio/x-twinvq-plugin': ['vqe', 'vql'],
|
|
762
|
-
'audio/x-vnd.audioexplosion.mjuicemediafile': 'mjf',
|
|
763
|
-
'audio/x-voc': 'voc',
|
|
764
|
-
'audio/x-wav': 'wav',
|
|
765
|
-
'audio/xm': 'xm',
|
|
766
|
-
'chemical/x-cdx': 'cdx',
|
|
767
|
-
'chemical/x-cif': 'cif',
|
|
768
|
-
'chemical/x-cmdf': 'cmdf',
|
|
769
|
-
'chemical/x-cml': 'cml',
|
|
770
|
-
'chemical/x-csml': 'csml',
|
|
771
|
-
'chemical/x-pdb': ['pdb', 'xyz'],
|
|
772
|
-
'chemical/x-xyz': 'xyz',
|
|
773
|
-
'drawing/x-dwf': 'dwf',
|
|
774
|
-
'i-world/i-vrml': 'ivr',
|
|
775
|
-
'image/bmp': ['bmp', 'bm'],
|
|
776
|
-
'image/cgm': 'cgm',
|
|
777
|
-
'image/cis-cod': 'cod',
|
|
778
|
-
'image/cmu-raster': ['ras', 'rast'],
|
|
779
|
-
'image/fif': 'fif',
|
|
780
|
-
'image/florian': ['flo', 'turbot'],
|
|
781
|
-
'image/g3fax': 'g3',
|
|
782
|
-
'image/gif': 'gif',
|
|
783
|
-
'image/ief': ['ief', 'iefs'],
|
|
784
|
-
'image/jpeg': ['jpeg', 'jpe', 'jpg', 'jfif', 'jfif-tbnl'],
|
|
785
|
-
'image/jutvision': 'jut',
|
|
786
|
-
'image/ktx': 'ktx',
|
|
787
|
-
'image/naplps': ['nap', 'naplps'],
|
|
788
|
-
'image/pict': ['pic', 'pict'],
|
|
789
|
-
'image/pipeg': 'jfif',
|
|
790
|
-
'image/pjpeg': ['jfif', 'jpe', 'jpeg', 'jpg'],
|
|
791
|
-
'image/png': ['png', 'x-png'],
|
|
792
|
-
'image/prs.btif': 'btif',
|
|
793
|
-
'image/svg+xml': 'svg',
|
|
794
|
-
'image/tiff': ['tif', 'tiff'],
|
|
795
|
-
'image/vasa': 'mcf',
|
|
796
|
-
'image/vnd.adobe.photoshop': 'psd',
|
|
797
|
-
'image/vnd.dece.graphic': 'uvi',
|
|
798
|
-
'image/vnd.djvu': 'djvu',
|
|
799
|
-
'image/vnd.dvb.subtitle': 'sub',
|
|
800
|
-
'image/vnd.dwg': ['dwg', 'dxf', 'svf'],
|
|
801
|
-
'image/vnd.dxf': 'dxf',
|
|
802
|
-
'image/vnd.fastbidsheet': 'fbs',
|
|
803
|
-
'image/vnd.fpx': 'fpx',
|
|
804
|
-
'image/vnd.fst': 'fst',
|
|
805
|
-
'image/vnd.fujixerox.edmics-mmr': 'mmr',
|
|
806
|
-
'image/vnd.fujixerox.edmics-rlc': 'rlc',
|
|
807
|
-
'image/vnd.ms-modi': 'mdi',
|
|
808
|
-
'image/vnd.net-fpx': ['fpx', 'npx'],
|
|
809
|
-
'image/vnd.rn-realflash': 'rf',
|
|
810
|
-
'image/vnd.rn-realpix': 'rp',
|
|
811
|
-
'image/vnd.wap.wbmp': 'wbmp',
|
|
812
|
-
'image/vnd.xiff': 'xif',
|
|
813
|
-
'image/webp': 'webp',
|
|
814
|
-
'image/x-cmu-raster': 'ras',
|
|
815
|
-
'image/x-cmx': 'cmx',
|
|
816
|
-
'image/x-dwg': ['dwg', 'dxf', 'svf'],
|
|
817
|
-
'image/x-freehand': 'fh',
|
|
818
|
-
'image/x-icon': 'ico',
|
|
819
|
-
'image/x-jg': 'art',
|
|
820
|
-
'image/x-jps': 'jps',
|
|
821
|
-
'image/x-niff': ['niff', 'nif'],
|
|
822
|
-
'image/x-pcx': 'pcx',
|
|
823
|
-
'image/x-pict': ['pct', 'pic'],
|
|
824
|
-
'image/x-portable-anymap': 'pnm',
|
|
825
|
-
'image/x-portable-bitmap': 'pbm',
|
|
826
|
-
'image/x-portable-graymap': 'pgm',
|
|
827
|
-
'image/x-portable-greymap': 'pgm',
|
|
828
|
-
'image/x-portable-pixmap': 'ppm',
|
|
829
|
-
'image/x-quicktime': ['qif', 'qti', 'qtif'],
|
|
830
|
-
'image/x-rgb': 'rgb',
|
|
831
|
-
'image/x-tiff': ['tif', 'tiff'],
|
|
832
|
-
'image/x-windows-bmp': 'bmp',
|
|
833
|
-
'image/x-xbitmap': 'xbm',
|
|
834
|
-
'image/x-xbm': 'xbm',
|
|
835
|
-
'image/x-xpixmap': ['xpm', 'pm'],
|
|
836
|
-
'image/x-xwd': 'xwd',
|
|
837
|
-
'image/x-xwindowdump': 'xwd',
|
|
838
|
-
'image/xbm': 'xbm',
|
|
839
|
-
'image/xpm': 'xpm',
|
|
840
|
-
'message/rfc822': ['eml', 'mht', 'mhtml', 'nws', 'mime'],
|
|
841
|
-
'model/iges': ['iges', 'igs'],
|
|
842
|
-
'model/mesh': 'msh',
|
|
843
|
-
'model/vnd.collada+xml': 'dae',
|
|
844
|
-
'model/vnd.dwf': 'dwf',
|
|
845
|
-
'model/vnd.gdl': 'gdl',
|
|
846
|
-
'model/vnd.gtw': 'gtw',
|
|
847
|
-
'model/vnd.mts': 'mts',
|
|
848
|
-
'model/vnd.vtu': 'vtu',
|
|
849
|
-
'model/vrml': ['vrml', 'wrl', 'wrz'],
|
|
850
|
-
'model/x-pov': 'pov',
|
|
851
|
-
'multipart/x-gzip': 'gzip',
|
|
852
|
-
'multipart/x-ustar': 'ustar',
|
|
853
|
-
'multipart/x-zip': 'zip',
|
|
854
|
-
'music/crescendo': ['mid', 'midi'],
|
|
855
|
-
'music/x-karaoke': 'kar',
|
|
856
|
-
'paleovu/x-pv': 'pvu',
|
|
857
|
-
'text/asp': 'asp',
|
|
858
|
-
'text/calendar': 'ics',
|
|
859
|
-
'text/css': 'css',
|
|
860
|
-
'text/csv': 'csv',
|
|
861
|
-
'text/ecmascript': 'js',
|
|
862
|
-
'text/h323': '323',
|
|
863
|
-
'text/html': ['html', 'htm', 'stm', 'acgi', 'htmls', 'htx', 'shtml'],
|
|
864
|
-
'text/iuls': 'uls',
|
|
865
|
-
'text/javascript': 'js',
|
|
866
|
-
'text/mcf': 'mcf',
|
|
867
|
-
'text/n3': 'n3',
|
|
868
|
-
'text/pascal': 'pas',
|
|
869
|
-
'text/plain': [
|
|
870
|
-
'txt',
|
|
871
|
-
'bas',
|
|
872
|
-
'c',
|
|
873
|
-
'h',
|
|
874
|
-
'c++',
|
|
875
|
-
'cc',
|
|
876
|
-
'com',
|
|
877
|
-
'conf',
|
|
878
|
-
'cxx',
|
|
879
|
-
'def',
|
|
880
|
-
'f',
|
|
881
|
-
'f90',
|
|
882
|
-
'for',
|
|
883
|
-
'g',
|
|
884
|
-
'hh',
|
|
885
|
-
'idc',
|
|
886
|
-
'jav',
|
|
887
|
-
'java',
|
|
888
|
-
'list',
|
|
889
|
-
'log',
|
|
890
|
-
'lst',
|
|
891
|
-
'm',
|
|
892
|
-
'mar',
|
|
893
|
-
'pl',
|
|
894
|
-
'sdml',
|
|
895
|
-
'text'
|
|
896
|
-
],
|
|
897
|
-
'text/plain-bas': 'par',
|
|
898
|
-
'text/prs.lines.tag': 'dsc',
|
|
899
|
-
'text/richtext': ['rtx', 'rt', 'rtf'],
|
|
900
|
-
'text/scriplet': 'wsc',
|
|
901
|
-
'text/scriptlet': 'sct',
|
|
902
|
-
'text/sgml': ['sgm', 'sgml'],
|
|
903
|
-
'text/tab-separated-values': 'tsv',
|
|
904
|
-
'text/troff': 't',
|
|
905
|
-
'text/turtle': 'ttl',
|
|
906
|
-
'text/uri-list': ['uni', 'unis', 'uri', 'uris'],
|
|
907
|
-
'text/vnd.abc': 'abc',
|
|
908
|
-
'text/vnd.curl': 'curl',
|
|
909
|
-
'text/vnd.curl.dcurl': 'dcurl',
|
|
910
|
-
'text/vnd.curl.mcurl': 'mcurl',
|
|
911
|
-
'text/vnd.curl.scurl': 'scurl',
|
|
912
|
-
'text/vnd.fly': 'fly',
|
|
913
|
-
'text/vnd.fmi.flexstor': 'flx',
|
|
914
|
-
'text/vnd.graphviz': 'gv',
|
|
915
|
-
'text/vnd.in3d.3dml': '3dml',
|
|
916
|
-
'text/vnd.in3d.spot': 'spot',
|
|
917
|
-
'text/vnd.rn-realtext': 'rt',
|
|
918
|
-
'text/vnd.sun.j2me.app-descriptor': 'jad',
|
|
919
|
-
'text/vnd.wap.wml': 'wml',
|
|
920
|
-
'text/vnd.wap.wmlscript': 'wmls',
|
|
921
|
-
'text/webviewhtml': 'htt',
|
|
922
|
-
'text/x-asm': ['asm', 's'],
|
|
923
|
-
'text/x-audiosoft-intra': 'aip',
|
|
924
|
-
'text/x-c': ['c', 'cc', 'cpp'],
|
|
925
|
-
'text/x-component': 'htc',
|
|
926
|
-
'text/x-fortran': ['for', 'f', 'f77', 'f90'],
|
|
927
|
-
'text/x-h': ['h', 'hh'],
|
|
928
|
-
'text/x-java-source': ['java', 'jav'],
|
|
929
|
-
'text/x-java-source,java': 'java',
|
|
930
|
-
'text/x-la-asf': 'lsx',
|
|
931
|
-
'text/x-m': 'm',
|
|
932
|
-
'text/x-pascal': 'p',
|
|
933
|
-
'text/x-script': 'hlb',
|
|
934
|
-
'text/x-script.csh': 'csh',
|
|
935
|
-
'text/x-script.elisp': 'el',
|
|
936
|
-
'text/x-script.guile': 'scm',
|
|
937
|
-
'text/x-script.ksh': 'ksh',
|
|
938
|
-
'text/x-script.lisp': 'lsp',
|
|
939
|
-
'text/x-script.perl': 'pl',
|
|
940
|
-
'text/x-script.perl-module': 'pm',
|
|
941
|
-
'text/x-script.phyton': 'py',
|
|
942
|
-
'text/x-script.rexx': 'rexx',
|
|
943
|
-
'text/x-script.scheme': 'scm',
|
|
944
|
-
'text/x-script.sh': 'sh',
|
|
945
|
-
'text/x-script.tcl': 'tcl',
|
|
946
|
-
'text/x-script.tcsh': 'tcsh',
|
|
947
|
-
'text/x-script.zsh': 'zsh',
|
|
948
|
-
'text/x-server-parsed-html': ['shtml', 'ssi'],
|
|
949
|
-
'text/x-setext': 'etx',
|
|
950
|
-
'text/x-sgml': ['sgm', 'sgml'],
|
|
951
|
-
'text/x-speech': ['spc', 'talk'],
|
|
952
|
-
'text/x-uil': 'uil',
|
|
953
|
-
'text/x-uuencode': ['uu', 'uue'],
|
|
954
|
-
'text/x-vcalendar': 'vcs',
|
|
955
|
-
'text/x-vcard': 'vcf',
|
|
956
|
-
'text/xml': 'xml',
|
|
957
|
-
'video/3gpp': '3gp',
|
|
958
|
-
'video/3gpp2': '3g2',
|
|
959
|
-
'video/animaflex': 'afl',
|
|
960
|
-
'video/avi': 'avi',
|
|
961
|
-
'video/avs-video': 'avs',
|
|
962
|
-
'video/dl': 'dl',
|
|
963
|
-
'video/fli': 'fli',
|
|
964
|
-
'video/gl': 'gl',
|
|
965
|
-
'video/h261': 'h261',
|
|
966
|
-
'video/h263': 'h263',
|
|
967
|
-
'video/h264': 'h264',
|
|
968
|
-
'video/jpeg': 'jpgv',
|
|
969
|
-
'video/jpm': 'jpm',
|
|
970
|
-
'video/mj2': 'mj2',
|
|
971
|
-
'video/mp4': 'mp4',
|
|
972
|
-
'video/mpeg': ['mpeg', 'mp2', 'mpa', 'mpe', 'mpg', 'mpv2', 'm1v', 'm2v', 'mp3'],
|
|
973
|
-
'video/msvideo': 'avi',
|
|
974
|
-
'video/ogg': 'ogv',
|
|
975
|
-
'video/quicktime': ['mov', 'qt', 'moov'],
|
|
976
|
-
'video/vdo': 'vdo',
|
|
977
|
-
'video/vivo': ['viv', 'vivo'],
|
|
978
|
-
'video/vnd.dece.hd': 'uvh',
|
|
979
|
-
'video/vnd.dece.mobile': 'uvm',
|
|
980
|
-
'video/vnd.dece.pd': 'uvp',
|
|
981
|
-
'video/vnd.dece.sd': 'uvs',
|
|
982
|
-
'video/vnd.dece.video': 'uvv',
|
|
983
|
-
'video/vnd.fvt': 'fvt',
|
|
984
|
-
'video/vnd.mpegurl': 'mxu',
|
|
985
|
-
'video/vnd.ms-playready.media.pyv': 'pyv',
|
|
986
|
-
'video/vnd.rn-realvideo': 'rv',
|
|
987
|
-
'video/vnd.uvvu.mp4': 'uvu',
|
|
988
|
-
'video/vnd.vivo': ['viv', 'vivo'],
|
|
989
|
-
'video/vosaic': 'vos',
|
|
990
|
-
'video/webm': 'webm',
|
|
991
|
-
'video/x-amt-demorun': 'xdr',
|
|
992
|
-
'video/x-amt-showrun': 'xsr',
|
|
993
|
-
'video/x-atomic3d-feature': 'fmf',
|
|
994
|
-
'video/x-dl': 'dl',
|
|
995
|
-
'video/x-dv': ['dif', 'dv'],
|
|
996
|
-
'video/x-f4v': 'f4v',
|
|
997
|
-
'video/x-fli': 'fli',
|
|
998
|
-
'video/x-flv': 'flv',
|
|
999
|
-
'video/x-gl': 'gl',
|
|
1000
|
-
'video/x-isvideo': 'isu',
|
|
1001
|
-
'video/x-la-asf': ['lsf', 'lsx'],
|
|
1002
|
-
'video/x-m4v': 'm4v',
|
|
1003
|
-
'video/x-motion-jpeg': 'mjpg',
|
|
1004
|
-
'video/x-mpeg': ['mp3', 'mp2'],
|
|
1005
|
-
'video/x-mpeq2a': 'mp2',
|
|
1006
|
-
'video/x-ms-asf': ['asf', 'asr', 'asx'],
|
|
1007
|
-
'video/x-ms-asf-plugin': 'asx',
|
|
1008
|
-
'video/x-ms-wm': 'wm',
|
|
1009
|
-
'video/x-ms-wmv': 'wmv',
|
|
1010
|
-
'video/x-ms-wmx': 'wmx',
|
|
1011
|
-
'video/x-ms-wvx': 'wvx',
|
|
1012
|
-
'video/x-msvideo': 'avi',
|
|
1013
|
-
'video/x-qtc': 'qtc',
|
|
1014
|
-
'video/x-scm': 'scm',
|
|
1015
|
-
'video/x-sgi-movie': ['movie', 'mv'],
|
|
1016
|
-
'windows/metafile': 'wmf',
|
|
1017
|
-
'www/mime': 'mime',
|
|
1018
|
-
'x-conference/x-cooltalk': 'ice',
|
|
1019
|
-
'x-music/x-midi': ['mid', 'midi'],
|
|
1020
|
-
'x-world/x-3dmf': ['3dm', '3dmf', 'qd3', 'qd3d'],
|
|
1021
|
-
'x-world/x-svr': 'svr',
|
|
1022
|
-
'x-world/x-vrml': ['flr', 'vrml', 'wrl', 'wrz', 'xaf', 'xof'],
|
|
1023
|
-
'x-world/x-vrt': 'vrt',
|
|
1024
|
-
'xgl/drawing': 'xgz',
|
|
1025
|
-
'xgl/movie': 'xmz'
|
|
1026
|
-
},
|
|
1027
|
-
|
|
1028
|
-
extensions: {
|
|
1029
|
-
'*': 'application/octet-stream',
|
|
1030
|
-
'123': 'application/vnd.lotus-1-2-3',
|
|
1031
|
-
'323': 'text/h323',
|
|
1032
|
-
'3dm': 'x-world/x-3dmf',
|
|
1033
|
-
'3dmf': 'x-world/x-3dmf',
|
|
1034
|
-
'3dml': 'text/vnd.in3d.3dml',
|
|
1035
|
-
'3g2': 'video/3gpp2',
|
|
1036
|
-
'3gp': 'video/3gpp',
|
|
1037
|
-
'7z': 'application/x-7z-compressed',
|
|
1038
|
-
a: 'application/octet-stream',
|
|
1039
|
-
aab: 'application/x-authorware-bin',
|
|
1040
|
-
aac: 'audio/x-aac',
|
|
1041
|
-
aam: 'application/x-authorware-map',
|
|
1042
|
-
aas: 'application/x-authorware-seg',
|
|
1043
|
-
abc: 'text/vnd.abc',
|
|
1044
|
-
abw: 'application/x-abiword',
|
|
1045
|
-
ac: 'application/pkix-attr-cert',
|
|
1046
|
-
acc: 'application/vnd.americandynamics.acc',
|
|
1047
|
-
ace: 'application/x-ace-compressed',
|
|
1048
|
-
acgi: 'text/html',
|
|
1049
|
-
acu: 'application/vnd.acucobol',
|
|
1050
|
-
acx: 'application/internet-property-stream',
|
|
1051
|
-
adp: 'audio/adpcm',
|
|
1052
|
-
aep: 'application/vnd.audiograph',
|
|
1053
|
-
afl: 'video/animaflex',
|
|
1054
|
-
afp: 'application/vnd.ibm.modcap',
|
|
1055
|
-
ahead: 'application/vnd.ahead.space',
|
|
1056
|
-
ai: 'application/postscript',
|
|
1057
|
-
aif: ['audio/aiff', 'audio/x-aiff'],
|
|
1058
|
-
aifc: ['audio/aiff', 'audio/x-aiff'],
|
|
1059
|
-
aiff: ['audio/aiff', 'audio/x-aiff'],
|
|
1060
|
-
aim: 'application/x-aim',
|
|
1061
|
-
aip: 'text/x-audiosoft-intra',
|
|
1062
|
-
air: 'application/vnd.adobe.air-application-installer-package+zip',
|
|
1063
|
-
ait: 'application/vnd.dvb.ait',
|
|
1064
|
-
ami: 'application/vnd.amiga.ami',
|
|
1065
|
-
ani: 'application/x-navi-animation',
|
|
1066
|
-
aos: 'application/x-nokia-9000-communicator-add-on-software',
|
|
1067
|
-
apk: 'application/vnd.android.package-archive',
|
|
1068
|
-
application: 'application/x-ms-application',
|
|
1069
|
-
apr: 'application/vnd.lotus-approach',
|
|
1070
|
-
aps: 'application/mime',
|
|
1071
|
-
arc: 'application/octet-stream',
|
|
1072
|
-
arj: ['application/arj', 'application/octet-stream'],
|
|
1073
|
-
art: 'image/x-jg',
|
|
1074
|
-
asf: 'video/x-ms-asf',
|
|
1075
|
-
asm: 'text/x-asm',
|
|
1076
|
-
aso: 'application/vnd.accpac.simply.aso',
|
|
1077
|
-
asp: 'text/asp',
|
|
1078
|
-
asr: 'video/x-ms-asf',
|
|
1079
|
-
asx: ['video/x-ms-asf', 'application/x-mplayer2', 'video/x-ms-asf-plugin'],
|
|
1080
|
-
atc: 'application/vnd.acucorp',
|
|
1081
|
-
atomcat: 'application/atomcat+xml',
|
|
1082
|
-
atomsvc: 'application/atomsvc+xml',
|
|
1083
|
-
atx: 'application/vnd.antix.game-component',
|
|
1084
|
-
au: ['audio/basic', 'audio/x-au'],
|
|
1085
|
-
avi: ['video/avi', 'video/msvideo', 'application/x-troff-msvideo', 'video/x-msvideo'],
|
|
1086
|
-
avs: 'video/avs-video',
|
|
1087
|
-
aw: 'application/applixware',
|
|
1088
|
-
axs: 'application/olescript',
|
|
1089
|
-
azf: 'application/vnd.airzip.filesecure.azf',
|
|
1090
|
-
azs: 'application/vnd.airzip.filesecure.azs',
|
|
1091
|
-
azw: 'application/vnd.amazon.ebook',
|
|
1092
|
-
bas: 'text/plain',
|
|
1093
|
-
bcpio: 'application/x-bcpio',
|
|
1094
|
-
bdf: 'application/x-font-bdf',
|
|
1095
|
-
bdm: 'application/vnd.syncml.dm+wbxml',
|
|
1096
|
-
bed: 'application/vnd.realvnc.bed',
|
|
1097
|
-
bh2: 'application/vnd.fujitsu.oasysprs',
|
|
1098
|
-
bin: ['application/octet-stream', 'application/mac-binary', 'application/macbinary', 'application/x-macbinary', 'application/x-binary'],
|
|
1099
|
-
bm: 'image/bmp',
|
|
1100
|
-
bmi: 'application/vnd.bmi',
|
|
1101
|
-
bmp: ['image/bmp', 'image/x-windows-bmp'],
|
|
1102
|
-
boo: 'application/book',
|
|
1103
|
-
book: 'application/book',
|
|
1104
|
-
box: 'application/vnd.previewsystems.box',
|
|
1105
|
-
boz: 'application/x-bzip2',
|
|
1106
|
-
bsh: 'application/x-bsh',
|
|
1107
|
-
btif: 'image/prs.btif',
|
|
1108
|
-
bz: 'application/x-bzip',
|
|
1109
|
-
bz2: 'application/x-bzip2',
|
|
1110
|
-
c: ['text/plain', 'text/x-c'],
|
|
1111
|
-
'c++': 'text/plain',
|
|
1112
|
-
c11amc: 'application/vnd.cluetrust.cartomobile-config',
|
|
1113
|
-
c11amz: 'application/vnd.cluetrust.cartomobile-config-pkg',
|
|
1114
|
-
c4g: 'application/vnd.clonk.c4group',
|
|
1115
|
-
cab: 'application/vnd.ms-cab-compressed',
|
|
1116
|
-
car: 'application/vnd.curl.car',
|
|
1117
|
-
cat: ['application/vnd.ms-pkiseccat', 'application/vnd.ms-pki.seccat'],
|
|
1118
|
-
cc: ['text/plain', 'text/x-c'],
|
|
1119
|
-
ccad: 'application/clariscad',
|
|
1120
|
-
cco: 'application/x-cocoa',
|
|
1121
|
-
ccxml: 'application/ccxml+xml,',
|
|
1122
|
-
cdbcmsg: 'application/vnd.contact.cmsg',
|
|
1123
|
-
cdf: ['application/cdf', 'application/x-cdf', 'application/x-netcdf'],
|
|
1124
|
-
cdkey: 'application/vnd.mediastation.cdkey',
|
|
1125
|
-
cdmia: 'application/cdmi-capability',
|
|
1126
|
-
cdmic: 'application/cdmi-container',
|
|
1127
|
-
cdmid: 'application/cdmi-domain',
|
|
1128
|
-
cdmio: 'application/cdmi-object',
|
|
1129
|
-
cdmiq: 'application/cdmi-queue',
|
|
1130
|
-
cdx: 'chemical/x-cdx',
|
|
1131
|
-
cdxml: 'application/vnd.chemdraw+xml',
|
|
1132
|
-
cdy: 'application/vnd.cinderella',
|
|
1133
|
-
cer: ['application/pkix-cert', 'application/x-x509-ca-cert'],
|
|
1134
|
-
cgm: 'image/cgm',
|
|
1135
|
-
cha: 'application/x-chat',
|
|
1136
|
-
chat: 'application/x-chat',
|
|
1137
|
-
chm: 'application/vnd.ms-htmlhelp',
|
|
1138
|
-
chrt: 'application/vnd.kde.kchart',
|
|
1139
|
-
cif: 'chemical/x-cif',
|
|
1140
|
-
cii: 'application/vnd.anser-web-certificate-issue-initiation',
|
|
1141
|
-
cil: 'application/vnd.ms-artgalry',
|
|
1142
|
-
cla: 'application/vnd.claymore',
|
|
1143
|
-
class: ['application/octet-stream', 'application/java', 'application/java-byte-code', 'application/java-vm', 'application/x-java-class'],
|
|
1144
|
-
clkk: 'application/vnd.crick.clicker.keyboard',
|
|
1145
|
-
clkp: 'application/vnd.crick.clicker.palette',
|
|
1146
|
-
clkt: 'application/vnd.crick.clicker.template',
|
|
1147
|
-
clkw: 'application/vnd.crick.clicker.wordbank',
|
|
1148
|
-
clkx: 'application/vnd.crick.clicker',
|
|
1149
|
-
clp: 'application/x-msclip',
|
|
1150
|
-
cmc: 'application/vnd.cosmocaller',
|
|
1151
|
-
cmdf: 'chemical/x-cmdf',
|
|
1152
|
-
cml: 'chemical/x-cml',
|
|
1153
|
-
cmp: 'application/vnd.yellowriver-custom-menu',
|
|
1154
|
-
cmx: 'image/x-cmx',
|
|
1155
|
-
cod: ['image/cis-cod', 'application/vnd.rim.cod'],
|
|
1156
|
-
com: ['application/octet-stream', 'text/plain'],
|
|
1157
|
-
conf: 'text/plain',
|
|
1158
|
-
cpio: 'application/x-cpio',
|
|
1159
|
-
cpp: 'text/x-c',
|
|
1160
|
-
cpt: ['application/mac-compactpro', 'application/x-compactpro', 'application/x-cpt'],
|
|
1161
|
-
crd: 'application/x-mscardfile',
|
|
1162
|
-
crl: ['application/pkix-crl', 'application/pkcs-crl'],
|
|
1163
|
-
crt: ['application/pkix-cert', 'application/x-x509-user-cert', 'application/x-x509-ca-cert'],
|
|
1164
|
-
cryptonote: 'application/vnd.rig.cryptonote',
|
|
1165
|
-
csh: ['text/x-script.csh', 'application/x-csh'],
|
|
1166
|
-
csml: 'chemical/x-csml',
|
|
1167
|
-
csp: 'application/vnd.commonspace',
|
|
1168
|
-
css: ['text/css', 'application/x-pointplus'],
|
|
1169
|
-
csv: 'text/csv',
|
|
1170
|
-
cu: 'application/cu-seeme',
|
|
1171
|
-
curl: 'text/vnd.curl',
|
|
1172
|
-
cww: 'application/prs.cww',
|
|
1173
|
-
cxx: 'text/plain',
|
|
1174
|
-
dae: 'model/vnd.collada+xml',
|
|
1175
|
-
daf: 'application/vnd.mobius.daf',
|
|
1176
|
-
davmount: 'application/davmount+xml',
|
|
1177
|
-
dcr: 'application/x-director',
|
|
1178
|
-
dcurl: 'text/vnd.curl.dcurl',
|
|
1179
|
-
dd2: 'application/vnd.oma.dd2+xml',
|
|
1180
|
-
ddd: 'application/vnd.fujixerox.ddd',
|
|
1181
|
-
deb: 'application/x-debian-package',
|
|
1182
|
-
deepv: 'application/x-deepv',
|
|
1183
|
-
def: 'text/plain',
|
|
1184
|
-
der: 'application/x-x509-ca-cert',
|
|
1185
|
-
dfac: 'application/vnd.dreamfactory',
|
|
1186
|
-
dif: 'video/x-dv',
|
|
1187
|
-
dir: 'application/x-director',
|
|
1188
|
-
dis: 'application/vnd.mobius.dis',
|
|
1189
|
-
djvu: 'image/vnd.djvu',
|
|
1190
|
-
dl: ['video/dl', 'video/x-dl'],
|
|
1191
|
-
dll: 'application/x-msdownload',
|
|
1192
|
-
dms: 'application/octet-stream',
|
|
1193
|
-
dna: 'application/vnd.dna',
|
|
1194
|
-
doc: 'application/msword',
|
|
1195
|
-
docm: 'application/vnd.ms-word.document.macroenabled.12',
|
|
1196
|
-
docx: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
1197
|
-
dot: 'application/msword',
|
|
1198
|
-
dotm: 'application/vnd.ms-word.template.macroenabled.12',
|
|
1199
|
-
dotx: 'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
|
|
1200
|
-
dp: ['application/commonground', 'application/vnd.osgi.dp'],
|
|
1201
|
-
dpg: 'application/vnd.dpgraph',
|
|
1202
|
-
dra: 'audio/vnd.dra',
|
|
1203
|
-
drw: 'application/drafting',
|
|
1204
|
-
dsc: 'text/prs.lines.tag',
|
|
1205
|
-
dssc: 'application/dssc+der',
|
|
1206
|
-
dtb: 'application/x-dtbook+xml',
|
|
1207
|
-
dtd: 'application/xml-dtd',
|
|
1208
|
-
dts: 'audio/vnd.dts',
|
|
1209
|
-
dtshd: 'audio/vnd.dts.hd',
|
|
1210
|
-
dump: 'application/octet-stream',
|
|
1211
|
-
dv: 'video/x-dv',
|
|
1212
|
-
dvi: 'application/x-dvi',
|
|
1213
|
-
dwf: ['model/vnd.dwf', 'drawing/x-dwf'],
|
|
1214
|
-
dwg: ['application/acad', 'image/vnd.dwg', 'image/x-dwg'],
|
|
1215
|
-
dxf: ['application/dxf', 'image/vnd.dwg', 'image/vnd.dxf', 'image/x-dwg'],
|
|
1216
|
-
dxp: 'application/vnd.spotfire.dxp',
|
|
1217
|
-
dxr: 'application/x-director',
|
|
1218
|
-
ecelp4800: 'audio/vnd.nuera.ecelp4800',
|
|
1219
|
-
ecelp7470: 'audio/vnd.nuera.ecelp7470',
|
|
1220
|
-
ecelp9600: 'audio/vnd.nuera.ecelp9600',
|
|
1221
|
-
edm: 'application/vnd.novadigm.edm',
|
|
1222
|
-
edx: 'application/vnd.novadigm.edx',
|
|
1223
|
-
efif: 'application/vnd.picsel',
|
|
1224
|
-
ei6: 'application/vnd.pg.osasli',
|
|
1225
|
-
el: 'text/x-script.elisp',
|
|
1226
|
-
elc: ['application/x-elc', 'application/x-bytecode.elisp'],
|
|
1227
|
-
eml: 'message/rfc822',
|
|
1228
|
-
emma: 'application/emma+xml',
|
|
1229
|
-
env: 'application/x-envoy',
|
|
1230
|
-
eol: 'audio/vnd.digital-winds',
|
|
1231
|
-
eot: 'application/vnd.ms-fontobject',
|
|
1232
|
-
eps: 'application/postscript',
|
|
1233
|
-
epub: 'application/epub+zip',
|
|
1234
|
-
es: ['application/ecmascript', 'application/x-esrehber'],
|
|
1235
|
-
es3: 'application/vnd.eszigno3+xml',
|
|
1236
|
-
esf: 'application/vnd.epson.esf',
|
|
1237
|
-
etx: 'text/x-setext',
|
|
1238
|
-
evy: ['application/envoy', 'application/x-envoy'],
|
|
1239
|
-
exe: ['application/octet-stream', 'application/x-msdownload'],
|
|
1240
|
-
exi: 'application/exi',
|
|
1241
|
-
ext: 'application/vnd.novadigm.ext',
|
|
1242
|
-
ez2: 'application/vnd.ezpix-album',
|
|
1243
|
-
ez3: 'application/vnd.ezpix-package',
|
|
1244
|
-
f: ['text/plain', 'text/x-fortran'],
|
|
1245
|
-
f4v: 'video/x-f4v',
|
|
1246
|
-
f77: 'text/x-fortran',
|
|
1247
|
-
f90: ['text/plain', 'text/x-fortran'],
|
|
1248
|
-
fbs: 'image/vnd.fastbidsheet',
|
|
1249
|
-
fcs: 'application/vnd.isac.fcs',
|
|
1250
|
-
fdf: 'application/vnd.fdf',
|
|
1251
|
-
fe_launch: 'application/vnd.denovo.fcselayout-link',
|
|
1252
|
-
fg5: 'application/vnd.fujitsu.oasysgp',
|
|
1253
|
-
fh: 'image/x-freehand',
|
|
1254
|
-
fif: ['application/fractals', 'image/fif'],
|
|
1255
|
-
fig: 'application/x-xfig',
|
|
1256
|
-
fli: ['video/fli', 'video/x-fli'],
|
|
1257
|
-
flo: ['image/florian', 'application/vnd.micrografx.flo'],
|
|
1258
|
-
flr: 'x-world/x-vrml',
|
|
1259
|
-
flv: 'video/x-flv',
|
|
1260
|
-
flw: 'application/vnd.kde.kivio',
|
|
1261
|
-
flx: 'text/vnd.fmi.flexstor',
|
|
1262
|
-
fly: 'text/vnd.fly',
|
|
1263
|
-
fm: 'application/vnd.framemaker',
|
|
1264
|
-
fmf: 'video/x-atomic3d-feature',
|
|
1265
|
-
fnc: 'application/vnd.frogans.fnc',
|
|
1266
|
-
for: ['text/plain', 'text/x-fortran'],
|
|
1267
|
-
fpx: ['image/vnd.fpx', 'image/vnd.net-fpx'],
|
|
1268
|
-
frl: 'application/freeloader',
|
|
1269
|
-
fsc: 'application/vnd.fsc.weblaunch',
|
|
1270
|
-
fst: 'image/vnd.fst',
|
|
1271
|
-
ftc: 'application/vnd.fluxtime.clip',
|
|
1272
|
-
fti: 'application/vnd.anser-web-funds-transfer-initiation',
|
|
1273
|
-
funk: 'audio/make',
|
|
1274
|
-
fvt: 'video/vnd.fvt',
|
|
1275
|
-
fxp: 'application/vnd.adobe.fxp',
|
|
1276
|
-
fzs: 'application/vnd.fuzzysheet',
|
|
1277
|
-
g: 'text/plain',
|
|
1278
|
-
g2w: 'application/vnd.geoplan',
|
|
1279
|
-
g3: 'image/g3fax',
|
|
1280
|
-
g3w: 'application/vnd.geospace',
|
|
1281
|
-
gac: 'application/vnd.groove-account',
|
|
1282
|
-
gdl: 'model/vnd.gdl',
|
|
1283
|
-
geo: 'application/vnd.dynageo',
|
|
1284
|
-
gex: 'application/vnd.geometry-explorer',
|
|
1285
|
-
ggb: 'application/vnd.geogebra.file',
|
|
1286
|
-
ggt: 'application/vnd.geogebra.tool',
|
|
1287
|
-
ghf: 'application/vnd.groove-help',
|
|
1288
|
-
gif: 'image/gif',
|
|
1289
|
-
gim: 'application/vnd.groove-identity-message',
|
|
1290
|
-
gl: ['video/gl', 'video/x-gl'],
|
|
1291
|
-
gmx: 'application/vnd.gmx',
|
|
1292
|
-
gnumeric: 'application/x-gnumeric',
|
|
1293
|
-
gph: 'application/vnd.flographit',
|
|
1294
|
-
gqf: 'application/vnd.grafeq',
|
|
1295
|
-
gram: 'application/srgs',
|
|
1296
|
-
grv: 'application/vnd.groove-injector',
|
|
1297
|
-
grxml: 'application/srgs+xml',
|
|
1298
|
-
gsd: 'audio/x-gsm',
|
|
1299
|
-
gsf: 'application/x-font-ghostscript',
|
|
1300
|
-
gsm: 'audio/x-gsm',
|
|
1301
|
-
gsp: 'application/x-gsp',
|
|
1302
|
-
gss: 'application/x-gss',
|
|
1303
|
-
gtar: 'application/x-gtar',
|
|
1304
|
-
gtm: 'application/vnd.groove-tool-message',
|
|
1305
|
-
gtw: 'model/vnd.gtw',
|
|
1306
|
-
gv: 'text/vnd.graphviz',
|
|
1307
|
-
gxt: 'application/vnd.geonext',
|
|
1308
|
-
gz: ['application/x-gzip', 'application/x-compressed'],
|
|
1309
|
-
gzip: ['multipart/x-gzip', 'application/x-gzip'],
|
|
1310
|
-
h: ['text/plain', 'text/x-h'],
|
|
1311
|
-
h261: 'video/h261',
|
|
1312
|
-
h263: 'video/h263',
|
|
1313
|
-
h264: 'video/h264',
|
|
1314
|
-
hal: 'application/vnd.hal+xml',
|
|
1315
|
-
hbci: 'application/vnd.hbci',
|
|
1316
|
-
hdf: 'application/x-hdf',
|
|
1317
|
-
help: 'application/x-helpfile',
|
|
1318
|
-
hgl: 'application/vnd.hp-hpgl',
|
|
1319
|
-
hh: ['text/plain', 'text/x-h'],
|
|
1320
|
-
hlb: 'text/x-script',
|
|
1321
|
-
hlp: ['application/winhlp', 'application/hlp', 'application/x-helpfile', 'application/x-winhelp'],
|
|
1322
|
-
hpg: 'application/vnd.hp-hpgl',
|
|
1323
|
-
hpgl: 'application/vnd.hp-hpgl',
|
|
1324
|
-
hpid: 'application/vnd.hp-hpid',
|
|
1325
|
-
hps: 'application/vnd.hp-hps',
|
|
1326
|
-
hqx: [
|
|
1327
|
-
'application/mac-binhex40',
|
|
1328
|
-
'application/binhex',
|
|
1329
|
-
'application/binhex4',
|
|
1330
|
-
'application/mac-binhex',
|
|
1331
|
-
'application/x-binhex40',
|
|
1332
|
-
'application/x-mac-binhex40'
|
|
1333
|
-
],
|
|
1334
|
-
hta: 'application/hta',
|
|
1335
|
-
htc: 'text/x-component',
|
|
1336
|
-
htke: 'application/vnd.kenameaapp',
|
|
1337
|
-
htm: 'text/html',
|
|
1338
|
-
html: 'text/html',
|
|
1339
|
-
htmls: 'text/html',
|
|
1340
|
-
htt: 'text/webviewhtml',
|
|
1341
|
-
htx: 'text/html',
|
|
1342
|
-
hvd: 'application/vnd.yamaha.hv-dic',
|
|
1343
|
-
hvp: 'application/vnd.yamaha.hv-voice',
|
|
1344
|
-
hvs: 'application/vnd.yamaha.hv-script',
|
|
1345
|
-
i2g: 'application/vnd.intergeo',
|
|
1346
|
-
icc: 'application/vnd.iccprofile',
|
|
1347
|
-
ice: 'x-conference/x-cooltalk',
|
|
1348
|
-
ico: 'image/x-icon',
|
|
1349
|
-
ics: 'text/calendar',
|
|
1350
|
-
idc: 'text/plain',
|
|
1351
|
-
ief: 'image/ief',
|
|
1352
|
-
iefs: 'image/ief',
|
|
1353
|
-
ifm: 'application/vnd.shana.informed.formdata',
|
|
1354
|
-
iges: ['application/iges', 'model/iges'],
|
|
1355
|
-
igl: 'application/vnd.igloader',
|
|
1356
|
-
igm: 'application/vnd.insors.igm',
|
|
1357
|
-
igs: ['application/iges', 'model/iges'],
|
|
1358
|
-
igx: 'application/vnd.micrografx.igx',
|
|
1359
|
-
iif: 'application/vnd.shana.informed.interchange',
|
|
1360
|
-
iii: 'application/x-iphone',
|
|
1361
|
-
ima: 'application/x-ima',
|
|
1362
|
-
imap: 'application/x-httpd-imap',
|
|
1363
|
-
imp: 'application/vnd.accpac.simply.imp',
|
|
1364
|
-
ims: 'application/vnd.ms-ims',
|
|
1365
|
-
inf: 'application/inf',
|
|
1366
|
-
ins: ['application/x-internet-signup', 'application/x-internett-signup'],
|
|
1367
|
-
ip: 'application/x-ip2',
|
|
1368
|
-
ipfix: 'application/ipfix',
|
|
1369
|
-
ipk: 'application/vnd.shana.informed.package',
|
|
1370
|
-
irm: 'application/vnd.ibm.rights-management',
|
|
1371
|
-
irp: 'application/vnd.irepository.package+xml',
|
|
1372
|
-
isp: 'application/x-internet-signup',
|
|
1373
|
-
isu: 'video/x-isvideo',
|
|
1374
|
-
it: 'audio/it',
|
|
1375
|
-
itp: 'application/vnd.shana.informed.formtemplate',
|
|
1376
|
-
iv: 'application/x-inventor',
|
|
1377
|
-
ivp: 'application/vnd.immervision-ivp',
|
|
1378
|
-
ivr: 'i-world/i-vrml',
|
|
1379
|
-
ivu: 'application/vnd.immervision-ivu',
|
|
1380
|
-
ivy: 'application/x-livescreen',
|
|
1381
|
-
jad: 'text/vnd.sun.j2me.app-descriptor',
|
|
1382
|
-
jam: ['application/vnd.jam', 'audio/x-jam'],
|
|
1383
|
-
jar: 'application/java-archive',
|
|
1384
|
-
jav: ['text/plain', 'text/x-java-source'],
|
|
1385
|
-
java: ['text/plain', 'text/x-java-source,java', 'text/x-java-source'],
|
|
1386
|
-
jcm: 'application/x-java-commerce',
|
|
1387
|
-
jfif: ['image/pipeg', 'image/jpeg', 'image/pjpeg'],
|
|
1388
|
-
'jfif-tbnl': 'image/jpeg',
|
|
1389
|
-
jisp: 'application/vnd.jisp',
|
|
1390
|
-
jlt: 'application/vnd.hp-jlyt',
|
|
1391
|
-
jnlp: 'application/x-java-jnlp-file',
|
|
1392
|
-
joda: 'application/vnd.joost.joda-archive',
|
|
1393
|
-
jpe: ['image/jpeg', 'image/pjpeg'],
|
|
1394
|
-
jpeg: ['image/jpeg', 'image/pjpeg'],
|
|
1395
|
-
jpg: ['image/jpeg', 'image/pjpeg'],
|
|
1396
|
-
jpgv: 'video/jpeg',
|
|
1397
|
-
jpm: 'video/jpm',
|
|
1398
|
-
jps: 'image/x-jps',
|
|
1399
|
-
js: ['application/javascript', 'application/ecmascript', 'text/javascript', 'text/ecmascript', 'application/x-javascript'],
|
|
1400
|
-
json: 'application/json',
|
|
1401
|
-
jut: 'image/jutvision',
|
|
1402
|
-
kar: ['audio/midi', 'music/x-karaoke'],
|
|
1403
|
-
karbon: 'application/vnd.kde.karbon',
|
|
1404
|
-
kfo: 'application/vnd.kde.kformula',
|
|
1405
|
-
kia: 'application/vnd.kidspiration',
|
|
1406
|
-
kml: 'application/vnd.google-earth.kml+xml',
|
|
1407
|
-
kmz: 'application/vnd.google-earth.kmz',
|
|
1408
|
-
kne: 'application/vnd.kinar',
|
|
1409
|
-
kon: 'application/vnd.kde.kontour',
|
|
1410
|
-
kpr: 'application/vnd.kde.kpresenter',
|
|
1411
|
-
ksh: ['application/x-ksh', 'text/x-script.ksh'],
|
|
1412
|
-
ksp: 'application/vnd.kde.kspread',
|
|
1413
|
-
ktx: 'image/ktx',
|
|
1414
|
-
ktz: 'application/vnd.kahootz',
|
|
1415
|
-
kwd: 'application/vnd.kde.kword',
|
|
1416
|
-
la: ['audio/nspaudio', 'audio/x-nspaudio'],
|
|
1417
|
-
lam: 'audio/x-liveaudio',
|
|
1418
|
-
lasxml: 'application/vnd.las.las+xml',
|
|
1419
|
-
latex: 'application/x-latex',
|
|
1420
|
-
lbd: 'application/vnd.llamagraphics.life-balance.desktop',
|
|
1421
|
-
lbe: 'application/vnd.llamagraphics.life-balance.exchange+xml',
|
|
1422
|
-
les: 'application/vnd.hhe.lesson-player',
|
|
1423
|
-
lha: ['application/octet-stream', 'application/lha', 'application/x-lha'],
|
|
1424
|
-
lhx: 'application/octet-stream',
|
|
1425
|
-
link66: 'application/vnd.route66.link66+xml',
|
|
1426
|
-
list: 'text/plain',
|
|
1427
|
-
lma: ['audio/nspaudio', 'audio/x-nspaudio'],
|
|
1428
|
-
log: 'text/plain',
|
|
1429
|
-
lrm: 'application/vnd.ms-lrm',
|
|
1430
|
-
lsf: 'video/x-la-asf',
|
|
1431
|
-
lsp: ['application/x-lisp', 'text/x-script.lisp'],
|
|
1432
|
-
lst: 'text/plain',
|
|
1433
|
-
lsx: ['video/x-la-asf', 'text/x-la-asf'],
|
|
1434
|
-
ltf: 'application/vnd.frogans.ltf',
|
|
1435
|
-
ltx: 'application/x-latex',
|
|
1436
|
-
lvp: 'audio/vnd.lucent.voice',
|
|
1437
|
-
lwp: 'application/vnd.lotus-wordpro',
|
|
1438
|
-
lzh: ['application/octet-stream', 'application/x-lzh'],
|
|
1439
|
-
lzx: ['application/lzx', 'application/octet-stream', 'application/x-lzx'],
|
|
1440
|
-
m: ['text/plain', 'text/x-m'],
|
|
1441
|
-
m13: 'application/x-msmediaview',
|
|
1442
|
-
m14: 'application/x-msmediaview',
|
|
1443
|
-
m1v: 'video/mpeg',
|
|
1444
|
-
m21: 'application/mp21',
|
|
1445
|
-
m2a: 'audio/mpeg',
|
|
1446
|
-
m2v: 'video/mpeg',
|
|
1447
|
-
m3u: ['audio/x-mpegurl', 'audio/x-mpequrl'],
|
|
1448
|
-
m3u8: 'application/vnd.apple.mpegurl',
|
|
1449
|
-
m4v: 'video/x-m4v',
|
|
1450
|
-
ma: 'application/mathematica',
|
|
1451
|
-
mads: 'application/mads+xml',
|
|
1452
|
-
mag: 'application/vnd.ecowin.chart',
|
|
1453
|
-
man: 'application/x-troff-man',
|
|
1454
|
-
map: 'application/x-navimap',
|
|
1455
|
-
mar: 'text/plain',
|
|
1456
|
-
mathml: 'application/mathml+xml',
|
|
1457
|
-
mbd: 'application/mbedlet',
|
|
1458
|
-
mbk: 'application/vnd.mobius.mbk',
|
|
1459
|
-
mbox: 'application/mbox',
|
|
1460
|
-
mc$: 'application/x-magic-cap-package-1.0',
|
|
1461
|
-
mc1: 'application/vnd.medcalcdata',
|
|
1462
|
-
mcd: ['application/mcad', 'application/vnd.mcd', 'application/x-mathcad'],
|
|
1463
|
-
mcf: ['image/vasa', 'text/mcf'],
|
|
1464
|
-
mcp: 'application/netmc',
|
|
1465
|
-
mcurl: 'text/vnd.curl.mcurl',
|
|
1466
|
-
mdb: 'application/x-msaccess',
|
|
1467
|
-
mdi: 'image/vnd.ms-modi',
|
|
1468
|
-
me: 'application/x-troff-me',
|
|
1469
|
-
meta4: 'application/metalink4+xml',
|
|
1470
|
-
mets: 'application/mets+xml',
|
|
1471
|
-
mfm: 'application/vnd.mfmp',
|
|
1472
|
-
mgp: 'application/vnd.osgeo.mapguide.package',
|
|
1473
|
-
mgz: 'application/vnd.proteus.magazine',
|
|
1474
|
-
mht: 'message/rfc822',
|
|
1475
|
-
mhtml: 'message/rfc822',
|
|
1476
|
-
mid: ['audio/mid', 'audio/midi', 'music/crescendo', 'x-music/x-midi', 'audio/x-midi', 'application/x-midi', 'audio/x-mid'],
|
|
1477
|
-
midi: ['audio/midi', 'music/crescendo', 'x-music/x-midi', 'audio/x-midi', 'application/x-midi', 'audio/x-mid'],
|
|
1478
|
-
mif: ['application/vnd.mif', 'application/x-mif', 'application/x-frame'],
|
|
1479
|
-
mime: ['message/rfc822', 'www/mime'],
|
|
1480
|
-
mj2: 'video/mj2',
|
|
1481
|
-
mjf: 'audio/x-vnd.audioexplosion.mjuicemediafile',
|
|
1482
|
-
mjpg: 'video/x-motion-jpeg',
|
|
1483
|
-
mlp: 'application/vnd.dolby.mlp',
|
|
1484
|
-
mm: ['application/base64', 'application/x-meme'],
|
|
1485
|
-
mmd: 'application/vnd.chipnuts.karaoke-mmd',
|
|
1486
|
-
mme: 'application/base64',
|
|
1487
|
-
mmf: 'application/vnd.smaf',
|
|
1488
|
-
mmr: 'image/vnd.fujixerox.edmics-mmr',
|
|
1489
|
-
mny: 'application/x-msmoney',
|
|
1490
|
-
mod: ['audio/mod', 'audio/x-mod'],
|
|
1491
|
-
mods: 'application/mods+xml',
|
|
1492
|
-
moov: 'video/quicktime',
|
|
1493
|
-
mov: 'video/quicktime',
|
|
1494
|
-
movie: 'video/x-sgi-movie',
|
|
1495
|
-
mp2: ['video/mpeg', 'audio/mpeg', 'video/x-mpeg', 'audio/x-mpeg', 'video/x-mpeq2a'],
|
|
1496
|
-
mp3: ['audio/mpeg', 'audio/mpeg3', 'video/mpeg', 'audio/x-mpeg-3', 'video/x-mpeg'],
|
|
1497
|
-
mp4: ['video/mp4', 'application/mp4'],
|
|
1498
|
-
mp4a: 'audio/mp4',
|
|
1499
|
-
mpa: ['video/mpeg', 'audio/mpeg'],
|
|
1500
|
-
mpc: ['application/vnd.mophun.certificate', 'application/x-project'],
|
|
1501
|
-
mpe: 'video/mpeg',
|
|
1502
|
-
mpeg: 'video/mpeg',
|
|
1503
|
-
mpg: ['video/mpeg', 'audio/mpeg'],
|
|
1504
|
-
mpga: 'audio/mpeg',
|
|
1505
|
-
mpkg: 'application/vnd.apple.installer+xml',
|
|
1506
|
-
mpm: 'application/vnd.blueice.multipass',
|
|
1507
|
-
mpn: 'application/vnd.mophun.application',
|
|
1508
|
-
mpp: 'application/vnd.ms-project',
|
|
1509
|
-
mpt: 'application/x-project',
|
|
1510
|
-
mpv: 'application/x-project',
|
|
1511
|
-
mpv2: 'video/mpeg',
|
|
1512
|
-
mpx: 'application/x-project',
|
|
1513
|
-
mpy: 'application/vnd.ibm.minipay',
|
|
1514
|
-
mqy: 'application/vnd.mobius.mqy',
|
|
1515
|
-
mrc: 'application/marc',
|
|
1516
|
-
mrcx: 'application/marcxml+xml',
|
|
1517
|
-
ms: 'application/x-troff-ms',
|
|
1518
|
-
mscml: 'application/mediaservercontrol+xml',
|
|
1519
|
-
mseq: 'application/vnd.mseq',
|
|
1520
|
-
msf: 'application/vnd.epson.msf',
|
|
1521
|
-
msg: 'application/vnd.ms-outlook',
|
|
1522
|
-
msh: 'model/mesh',
|
|
1523
|
-
msl: 'application/vnd.mobius.msl',
|
|
1524
|
-
msty: 'application/vnd.muvee.style',
|
|
1525
|
-
mts: 'model/vnd.mts',
|
|
1526
|
-
mus: 'application/vnd.musician',
|
|
1527
|
-
musicxml: 'application/vnd.recordare.musicxml+xml',
|
|
1528
|
-
mv: 'video/x-sgi-movie',
|
|
1529
|
-
mvb: 'application/x-msmediaview',
|
|
1530
|
-
mwf: 'application/vnd.mfer',
|
|
1531
|
-
mxf: 'application/mxf',
|
|
1532
|
-
mxl: 'application/vnd.recordare.musicxml',
|
|
1533
|
-
mxml: 'application/xv+xml',
|
|
1534
|
-
mxs: 'application/vnd.triscape.mxs',
|
|
1535
|
-
mxu: 'video/vnd.mpegurl',
|
|
1536
|
-
my: 'audio/make',
|
|
1537
|
-
mzz: 'application/x-vnd.audioexplosion.mzz',
|
|
1538
|
-
'n-gage': 'application/vnd.nokia.n-gage.symbian.install',
|
|
1539
|
-
n3: 'text/n3',
|
|
1540
|
-
nap: 'image/naplps',
|
|
1541
|
-
naplps: 'image/naplps',
|
|
1542
|
-
nbp: 'application/vnd.wolfram.player',
|
|
1543
|
-
nc: 'application/x-netcdf',
|
|
1544
|
-
ncm: 'application/vnd.nokia.configuration-message',
|
|
1545
|
-
ncx: 'application/x-dtbncx+xml',
|
|
1546
|
-
ngdat: 'application/vnd.nokia.n-gage.data',
|
|
1547
|
-
nif: 'image/x-niff',
|
|
1548
|
-
niff: 'image/x-niff',
|
|
1549
|
-
nix: 'application/x-mix-transfer',
|
|
1550
|
-
nlu: 'application/vnd.neurolanguage.nlu',
|
|
1551
|
-
nml: 'application/vnd.enliven',
|
|
1552
|
-
nnd: 'application/vnd.noblenet-directory',
|
|
1553
|
-
nns: 'application/vnd.noblenet-sealer',
|
|
1554
|
-
nnw: 'application/vnd.noblenet-web',
|
|
1555
|
-
npx: 'image/vnd.net-fpx',
|
|
1556
|
-
nsc: 'application/x-conference',
|
|
1557
|
-
nsf: 'application/vnd.lotus-notes',
|
|
1558
|
-
nvd: 'application/x-navidoc',
|
|
1559
|
-
nws: 'message/rfc822',
|
|
1560
|
-
o: 'application/octet-stream',
|
|
1561
|
-
oa2: 'application/vnd.fujitsu.oasys2',
|
|
1562
|
-
oa3: 'application/vnd.fujitsu.oasys3',
|
|
1563
|
-
oas: 'application/vnd.fujitsu.oasys',
|
|
1564
|
-
obd: 'application/x-msbinder',
|
|
1565
|
-
oda: 'application/oda',
|
|
1566
|
-
odb: 'application/vnd.oasis.opendocument.database',
|
|
1567
|
-
odc: 'application/vnd.oasis.opendocument.chart',
|
|
1568
|
-
odf: 'application/vnd.oasis.opendocument.formula',
|
|
1569
|
-
odft: 'application/vnd.oasis.opendocument.formula-template',
|
|
1570
|
-
odg: 'application/vnd.oasis.opendocument.graphics',
|
|
1571
|
-
odi: 'application/vnd.oasis.opendocument.image',
|
|
1572
|
-
odm: 'application/vnd.oasis.opendocument.text-master',
|
|
1573
|
-
odp: 'application/vnd.oasis.opendocument.presentation',
|
|
1574
|
-
ods: 'application/vnd.oasis.opendocument.spreadsheet',
|
|
1575
|
-
odt: 'application/vnd.oasis.opendocument.text',
|
|
1576
|
-
oga: 'audio/ogg',
|
|
1577
|
-
ogv: 'video/ogg',
|
|
1578
|
-
ogx: 'application/ogg',
|
|
1579
|
-
omc: 'application/x-omc',
|
|
1580
|
-
omcd: 'application/x-omcdatamaker',
|
|
1581
|
-
omcr: 'application/x-omcregerator',
|
|
1582
|
-
onetoc: 'application/onenote',
|
|
1583
|
-
opf: 'application/oebps-package+xml',
|
|
1584
|
-
org: 'application/vnd.lotus-organizer',
|
|
1585
|
-
osf: 'application/vnd.yamaha.openscoreformat',
|
|
1586
|
-
osfpvg: 'application/vnd.yamaha.openscoreformat.osfpvg+xml',
|
|
1587
|
-
otc: 'application/vnd.oasis.opendocument.chart-template',
|
|
1588
|
-
otf: 'application/x-font-otf',
|
|
1589
|
-
otg: 'application/vnd.oasis.opendocument.graphics-template',
|
|
1590
|
-
oth: 'application/vnd.oasis.opendocument.text-web',
|
|
1591
|
-
oti: 'application/vnd.oasis.opendocument.image-template',
|
|
1592
|
-
otp: 'application/vnd.oasis.opendocument.presentation-template',
|
|
1593
|
-
ots: 'application/vnd.oasis.opendocument.spreadsheet-template',
|
|
1594
|
-
ott: 'application/vnd.oasis.opendocument.text-template',
|
|
1595
|
-
oxt: 'application/vnd.openofficeorg.extension',
|
|
1596
|
-
p: 'text/x-pascal',
|
|
1597
|
-
p10: ['application/pkcs10', 'application/x-pkcs10'],
|
|
1598
|
-
p12: ['application/pkcs-12', 'application/x-pkcs12'],
|
|
1599
|
-
p7a: 'application/x-pkcs7-signature',
|
|
1600
|
-
p7b: 'application/x-pkcs7-certificates',
|
|
1601
|
-
p7c: ['application/pkcs7-mime', 'application/x-pkcs7-mime'],
|
|
1602
|
-
p7m: ['application/pkcs7-mime', 'application/x-pkcs7-mime'],
|
|
1603
|
-
p7r: 'application/x-pkcs7-certreqresp',
|
|
1604
|
-
p7s: ['application/pkcs7-signature', 'application/x-pkcs7-signature'],
|
|
1605
|
-
p8: 'application/pkcs8',
|
|
1606
|
-
par: 'text/plain-bas',
|
|
1607
|
-
part: 'application/pro_eng',
|
|
1608
|
-
pas: 'text/pascal',
|
|
1609
|
-
paw: 'application/vnd.pawaafile',
|
|
1610
|
-
pbd: 'application/vnd.powerbuilder6',
|
|
1611
|
-
pbm: 'image/x-portable-bitmap',
|
|
1612
|
-
pcf: 'application/x-font-pcf',
|
|
1613
|
-
pcl: ['application/vnd.hp-pcl', 'application/x-pcl'],
|
|
1614
|
-
pclxl: 'application/vnd.hp-pclxl',
|
|
1615
|
-
pct: 'image/x-pict',
|
|
1616
|
-
pcurl: 'application/vnd.curl.pcurl',
|
|
1617
|
-
pcx: 'image/x-pcx',
|
|
1618
|
-
pdb: ['application/vnd.palm', 'chemical/x-pdb'],
|
|
1619
|
-
pdf: 'application/pdf',
|
|
1620
|
-
pfa: 'application/x-font-type1',
|
|
1621
|
-
pfr: 'application/font-tdpfr',
|
|
1622
|
-
pfunk: ['audio/make', 'audio/make.my.funk'],
|
|
1623
|
-
pfx: 'application/x-pkcs12',
|
|
1624
|
-
pgm: ['image/x-portable-graymap', 'image/x-portable-greymap'],
|
|
1625
|
-
pgn: 'application/x-chess-pgn',
|
|
1626
|
-
pgp: 'application/pgp-signature',
|
|
1627
|
-
pic: ['image/pict', 'image/x-pict'],
|
|
1628
|
-
pict: 'image/pict',
|
|
1629
|
-
pkg: 'application/x-newton-compatible-pkg',
|
|
1630
|
-
pki: 'application/pkixcmp',
|
|
1631
|
-
pkipath: 'application/pkix-pkipath',
|
|
1632
|
-
pko: ['application/ynd.ms-pkipko', 'application/vnd.ms-pki.pko'],
|
|
1633
|
-
pl: ['text/plain', 'text/x-script.perl'],
|
|
1634
|
-
plb: 'application/vnd.3gpp.pic-bw-large',
|
|
1635
|
-
plc: 'application/vnd.mobius.plc',
|
|
1636
|
-
plf: 'application/vnd.pocketlearn',
|
|
1637
|
-
pls: 'application/pls+xml',
|
|
1638
|
-
plx: 'application/x-pixclscript',
|
|
1639
|
-
pm: ['text/x-script.perl-module', 'image/x-xpixmap'],
|
|
1640
|
-
pm4: 'application/x-pagemaker',
|
|
1641
|
-
pm5: 'application/x-pagemaker',
|
|
1642
|
-
pma: 'application/x-perfmon',
|
|
1643
|
-
pmc: 'application/x-perfmon',
|
|
1644
|
-
pml: ['application/vnd.ctc-posml', 'application/x-perfmon'],
|
|
1645
|
-
pmr: 'application/x-perfmon',
|
|
1646
|
-
pmw: 'application/x-perfmon',
|
|
1647
|
-
png: 'image/png',
|
|
1648
|
-
pnm: ['application/x-portable-anymap', 'image/x-portable-anymap'],
|
|
1649
|
-
portpkg: 'application/vnd.macports.portpkg',
|
|
1650
|
-
pot: ['application/vnd.ms-powerpoint', 'application/mspowerpoint'],
|
|
1651
|
-
potm: 'application/vnd.ms-powerpoint.template.macroenabled.12',
|
|
1652
|
-
potx: 'application/vnd.openxmlformats-officedocument.presentationml.template',
|
|
1653
|
-
pov: 'model/x-pov',
|
|
1654
|
-
ppa: 'application/vnd.ms-powerpoint',
|
|
1655
|
-
ppam: 'application/vnd.ms-powerpoint.addin.macroenabled.12',
|
|
1656
|
-
ppd: 'application/vnd.cups-ppd',
|
|
1657
|
-
ppm: 'image/x-portable-pixmap',
|
|
1658
|
-
pps: ['application/vnd.ms-powerpoint', 'application/mspowerpoint'],
|
|
1659
|
-
ppsm: 'application/vnd.ms-powerpoint.slideshow.macroenabled.12',
|
|
1660
|
-
ppsx: 'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
|
|
1661
|
-
ppt: ['application/vnd.ms-powerpoint', 'application/mspowerpoint', 'application/powerpoint', 'application/x-mspowerpoint'],
|
|
1662
|
-
pptm: 'application/vnd.ms-powerpoint.presentation.macroenabled.12',
|
|
1663
|
-
pptx: 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
|
1664
|
-
ppz: 'application/mspowerpoint',
|
|
1665
|
-
prc: 'application/x-mobipocket-ebook',
|
|
1666
|
-
pre: ['application/vnd.lotus-freelance', 'application/x-freelance'],
|
|
1667
|
-
prf: 'application/pics-rules',
|
|
1668
|
-
prt: 'application/pro_eng',
|
|
1669
|
-
ps: 'application/postscript',
|
|
1670
|
-
psb: 'application/vnd.3gpp.pic-bw-small',
|
|
1671
|
-
psd: ['application/octet-stream', 'image/vnd.adobe.photoshop'],
|
|
1672
|
-
psf: 'application/x-font-linux-psf',
|
|
1673
|
-
pskcxml: 'application/pskc+xml',
|
|
1674
|
-
ptid: 'application/vnd.pvi.ptid1',
|
|
1675
|
-
pub: 'application/x-mspublisher',
|
|
1676
|
-
pvb: 'application/vnd.3gpp.pic-bw-var',
|
|
1677
|
-
pvu: 'paleovu/x-pv',
|
|
1678
|
-
pwn: 'application/vnd.3m.post-it-notes',
|
|
1679
|
-
pwz: 'application/vnd.ms-powerpoint',
|
|
1680
|
-
py: 'text/x-script.phyton',
|
|
1681
|
-
pya: 'audio/vnd.ms-playready.media.pya',
|
|
1682
|
-
pyc: 'applicaiton/x-bytecode.python',
|
|
1683
|
-
pyv: 'video/vnd.ms-playready.media.pyv',
|
|
1684
|
-
qam: 'application/vnd.epson.quickanime',
|
|
1685
|
-
qbo: 'application/vnd.intu.qbo',
|
|
1686
|
-
qcp: 'audio/vnd.qcelp',
|
|
1687
|
-
qd3: 'x-world/x-3dmf',
|
|
1688
|
-
qd3d: 'x-world/x-3dmf',
|
|
1689
|
-
qfx: 'application/vnd.intu.qfx',
|
|
1690
|
-
qif: 'image/x-quicktime',
|
|
1691
|
-
qps: 'application/vnd.publishare-delta-tree',
|
|
1692
|
-
qt: 'video/quicktime',
|
|
1693
|
-
qtc: 'video/x-qtc',
|
|
1694
|
-
qti: 'image/x-quicktime',
|
|
1695
|
-
qtif: 'image/x-quicktime',
|
|
1696
|
-
qxd: 'application/vnd.quark.quarkxpress',
|
|
1697
|
-
ra: ['audio/x-realaudio', 'audio/x-pn-realaudio', 'audio/x-pn-realaudio-plugin'],
|
|
1698
|
-
ram: 'audio/x-pn-realaudio',
|
|
1699
|
-
rar: 'application/x-rar-compressed',
|
|
1700
|
-
ras: ['image/cmu-raster', 'application/x-cmu-raster', 'image/x-cmu-raster'],
|
|
1701
|
-
rast: 'image/cmu-raster',
|
|
1702
|
-
rcprofile: 'application/vnd.ipunplugged.rcprofile',
|
|
1703
|
-
rdf: 'application/rdf+xml',
|
|
1704
|
-
rdz: 'application/vnd.data-vision.rdz',
|
|
1705
|
-
rep: 'application/vnd.businessobjects',
|
|
1706
|
-
res: 'application/x-dtbresource+xml',
|
|
1707
|
-
rexx: 'text/x-script.rexx',
|
|
1708
|
-
rf: 'image/vnd.rn-realflash',
|
|
1709
|
-
rgb: 'image/x-rgb',
|
|
1710
|
-
rif: 'application/reginfo+xml',
|
|
1711
|
-
rip: 'audio/vnd.rip',
|
|
1712
|
-
rl: 'application/resource-lists+xml',
|
|
1713
|
-
rlc: 'image/vnd.fujixerox.edmics-rlc',
|
|
1714
|
-
rld: 'application/resource-lists-diff+xml',
|
|
1715
|
-
rm: ['application/vnd.rn-realmedia', 'audio/x-pn-realaudio'],
|
|
1716
|
-
rmi: 'audio/mid',
|
|
1717
|
-
rmm: 'audio/x-pn-realaudio',
|
|
1718
|
-
rmp: ['audio/x-pn-realaudio-plugin', 'audio/x-pn-realaudio'],
|
|
1719
|
-
rms: 'application/vnd.jcp.javame.midlet-rms',
|
|
1720
|
-
rnc: 'application/relax-ng-compact-syntax',
|
|
1721
|
-
rng: ['application/ringing-tones', 'application/vnd.nokia.ringing-tone'],
|
|
1722
|
-
rnx: 'application/vnd.rn-realplayer',
|
|
1723
|
-
roff: 'application/x-troff',
|
|
1724
|
-
rp: 'image/vnd.rn-realpix',
|
|
1725
|
-
rp9: 'application/vnd.cloanto.rp9',
|
|
1726
|
-
rpm: 'audio/x-pn-realaudio-plugin',
|
|
1727
|
-
rpss: 'application/vnd.nokia.radio-presets',
|
|
1728
|
-
rpst: 'application/vnd.nokia.radio-preset',
|
|
1729
|
-
rq: 'application/sparql-query',
|
|
1730
|
-
rs: 'application/rls-services+xml',
|
|
1731
|
-
rsd: 'application/rsd+xml',
|
|
1732
|
-
rt: ['text/richtext', 'text/vnd.rn-realtext'],
|
|
1733
|
-
rtf: ['application/rtf', 'text/richtext', 'application/x-rtf'],
|
|
1734
|
-
rtx: ['text/richtext', 'application/rtf'],
|
|
1735
|
-
rv: 'video/vnd.rn-realvideo',
|
|
1736
|
-
s: 'text/x-asm',
|
|
1737
|
-
s3m: 'audio/s3m',
|
|
1738
|
-
saf: 'application/vnd.yamaha.smaf-audio',
|
|
1739
|
-
saveme: 'application/octet-stream',
|
|
1740
|
-
sbk: 'application/x-tbook',
|
|
1741
|
-
sbml: 'application/sbml+xml',
|
|
1742
|
-
sc: 'application/vnd.ibm.secure-container',
|
|
1743
|
-
scd: 'application/x-msschedule',
|
|
1744
|
-
scm: ['application/vnd.lotus-screencam', 'video/x-scm', 'text/x-script.guile', 'application/x-lotusscreencam', 'text/x-script.scheme'],
|
|
1745
|
-
scq: 'application/scvp-cv-request',
|
|
1746
|
-
scs: 'application/scvp-cv-response',
|
|
1747
|
-
sct: 'text/scriptlet',
|
|
1748
|
-
scurl: 'text/vnd.curl.scurl',
|
|
1749
|
-
sda: 'application/vnd.stardivision.draw',
|
|
1750
|
-
sdc: 'application/vnd.stardivision.calc',
|
|
1751
|
-
sdd: 'application/vnd.stardivision.impress',
|
|
1752
|
-
sdkm: 'application/vnd.solent.sdkm+xml',
|
|
1753
|
-
sdml: 'text/plain',
|
|
1754
|
-
sdp: ['application/sdp', 'application/x-sdp'],
|
|
1755
|
-
sdr: 'application/sounder',
|
|
1756
|
-
sdw: 'application/vnd.stardivision.writer',
|
|
1757
|
-
sea: ['application/sea', 'application/x-sea'],
|
|
1758
|
-
see: 'application/vnd.seemail',
|
|
1759
|
-
seed: 'application/vnd.fdsn.seed',
|
|
1760
|
-
sema: 'application/vnd.sema',
|
|
1761
|
-
semd: 'application/vnd.semd',
|
|
1762
|
-
semf: 'application/vnd.semf',
|
|
1763
|
-
ser: 'application/java-serialized-object',
|
|
1764
|
-
set: 'application/set',
|
|
1765
|
-
setpay: 'application/set-payment-initiation',
|
|
1766
|
-
setreg: 'application/set-registration-initiation',
|
|
1767
|
-
'sfd-hdstx': 'application/vnd.hydrostatix.sof-data',
|
|
1768
|
-
sfs: 'application/vnd.spotfire.sfs',
|
|
1769
|
-
sgl: 'application/vnd.stardivision.writer-global',
|
|
1770
|
-
sgm: ['text/sgml', 'text/x-sgml'],
|
|
1771
|
-
sgml: ['text/sgml', 'text/x-sgml'],
|
|
1772
|
-
sh: ['application/x-shar', 'application/x-bsh', 'application/x-sh', 'text/x-script.sh'],
|
|
1773
|
-
shar: ['application/x-bsh', 'application/x-shar'],
|
|
1774
|
-
shf: 'application/shf+xml',
|
|
1775
|
-
shtml: ['text/html', 'text/x-server-parsed-html'],
|
|
1776
|
-
sid: 'audio/x-psid',
|
|
1777
|
-
sis: 'application/vnd.symbian.install',
|
|
1778
|
-
sit: ['application/x-stuffit', 'application/x-sit'],
|
|
1779
|
-
sitx: 'application/x-stuffitx',
|
|
1780
|
-
skd: 'application/x-koan',
|
|
1781
|
-
skm: 'application/x-koan',
|
|
1782
|
-
skp: ['application/vnd.koan', 'application/x-koan'],
|
|
1783
|
-
skt: 'application/x-koan',
|
|
1784
|
-
sl: 'application/x-seelogo',
|
|
1785
|
-
sldm: 'application/vnd.ms-powerpoint.slide.macroenabled.12',
|
|
1786
|
-
sldx: 'application/vnd.openxmlformats-officedocument.presentationml.slide',
|
|
1787
|
-
slt: 'application/vnd.epson.salt',
|
|
1788
|
-
sm: 'application/vnd.stepmania.stepchart',
|
|
1789
|
-
smf: 'application/vnd.stardivision.math',
|
|
1790
|
-
smi: ['application/smil', 'application/smil+xml'],
|
|
1791
|
-
smil: 'application/smil',
|
|
1792
|
-
snd: ['audio/basic', 'audio/x-adpcm'],
|
|
1793
|
-
snf: 'application/x-font-snf',
|
|
1794
|
-
sol: 'application/solids',
|
|
1795
|
-
spc: ['text/x-speech', 'application/x-pkcs7-certificates'],
|
|
1796
|
-
spf: 'application/vnd.yamaha.smaf-phrase',
|
|
1797
|
-
spl: ['application/futuresplash', 'application/x-futuresplash'],
|
|
1798
|
-
spot: 'text/vnd.in3d.spot',
|
|
1799
|
-
spp: 'application/scvp-vp-response',
|
|
1800
|
-
spq: 'application/scvp-vp-request',
|
|
1801
|
-
spr: 'application/x-sprite',
|
|
1802
|
-
sprite: 'application/x-sprite',
|
|
1803
|
-
src: 'application/x-wais-source',
|
|
1804
|
-
sru: 'application/sru+xml',
|
|
1805
|
-
srx: 'application/sparql-results+xml',
|
|
1806
|
-
sse: 'application/vnd.kodak-descriptor',
|
|
1807
|
-
ssf: 'application/vnd.epson.ssf',
|
|
1808
|
-
ssi: 'text/x-server-parsed-html',
|
|
1809
|
-
ssm: 'application/streamingmedia',
|
|
1810
|
-
ssml: 'application/ssml+xml',
|
|
1811
|
-
sst: ['application/vnd.ms-pkicertstore', 'application/vnd.ms-pki.certstore'],
|
|
1812
|
-
st: 'application/vnd.sailingtracker.track',
|
|
1813
|
-
stc: 'application/vnd.sun.xml.calc.template',
|
|
1814
|
-
std: 'application/vnd.sun.xml.draw.template',
|
|
1815
|
-
step: 'application/step',
|
|
1816
|
-
stf: 'application/vnd.wt.stf',
|
|
1817
|
-
sti: 'application/vnd.sun.xml.impress.template',
|
|
1818
|
-
stk: 'application/hyperstudio',
|
|
1819
|
-
stl: ['application/vnd.ms-pkistl', 'application/sla', 'application/vnd.ms-pki.stl', 'application/x-navistyle'],
|
|
1820
|
-
stm: 'text/html',
|
|
1821
|
-
stp: 'application/step',
|
|
1822
|
-
str: 'application/vnd.pg.format',
|
|
1823
|
-
stw: 'application/vnd.sun.xml.writer.template',
|
|
1824
|
-
sub: 'image/vnd.dvb.subtitle',
|
|
1825
|
-
sus: 'application/vnd.sus-calendar',
|
|
1826
|
-
sv4cpio: 'application/x-sv4cpio',
|
|
1827
|
-
sv4crc: 'application/x-sv4crc',
|
|
1828
|
-
svc: 'application/vnd.dvb.service',
|
|
1829
|
-
svd: 'application/vnd.svd',
|
|
1830
|
-
svf: ['image/vnd.dwg', 'image/x-dwg'],
|
|
1831
|
-
svg: 'image/svg+xml',
|
|
1832
|
-
svr: ['x-world/x-svr', 'application/x-world'],
|
|
1833
|
-
swf: 'application/x-shockwave-flash',
|
|
1834
|
-
swi: 'application/vnd.aristanetworks.swi',
|
|
1835
|
-
sxc: 'application/vnd.sun.xml.calc',
|
|
1836
|
-
sxd: 'application/vnd.sun.xml.draw',
|
|
1837
|
-
sxg: 'application/vnd.sun.xml.writer.global',
|
|
1838
|
-
sxi: 'application/vnd.sun.xml.impress',
|
|
1839
|
-
sxm: 'application/vnd.sun.xml.math',
|
|
1840
|
-
sxw: 'application/vnd.sun.xml.writer',
|
|
1841
|
-
t: ['text/troff', 'application/x-troff'],
|
|
1842
|
-
talk: 'text/x-speech',
|
|
1843
|
-
tao: 'application/vnd.tao.intent-module-archive',
|
|
1844
|
-
tar: 'application/x-tar',
|
|
1845
|
-
tbk: ['application/toolbook', 'application/x-tbook'],
|
|
1846
|
-
tcap: 'application/vnd.3gpp2.tcap',
|
|
1847
|
-
tcl: ['text/x-script.tcl', 'application/x-tcl'],
|
|
1848
|
-
tcsh: 'text/x-script.tcsh',
|
|
1849
|
-
teacher: 'application/vnd.smart.teacher',
|
|
1850
|
-
tei: 'application/tei+xml',
|
|
1851
|
-
tex: 'application/x-tex',
|
|
1852
|
-
texi: 'application/x-texinfo',
|
|
1853
|
-
texinfo: 'application/x-texinfo',
|
|
1854
|
-
text: ['application/plain', 'text/plain'],
|
|
1855
|
-
tfi: 'application/thraud+xml',
|
|
1856
|
-
tfm: 'application/x-tex-tfm',
|
|
1857
|
-
tgz: ['application/gnutar', 'application/x-compressed'],
|
|
1858
|
-
thmx: 'application/vnd.ms-officetheme',
|
|
1859
|
-
tif: ['image/tiff', 'image/x-tiff'],
|
|
1860
|
-
tiff: ['image/tiff', 'image/x-tiff'],
|
|
1861
|
-
tmo: 'application/vnd.tmobile-livetv',
|
|
1862
|
-
torrent: 'application/x-bittorrent',
|
|
1863
|
-
tpl: 'application/vnd.groove-tool-template',
|
|
1864
|
-
tpt: 'application/vnd.trid.tpt',
|
|
1865
|
-
tr: 'application/x-troff',
|
|
1866
|
-
tra: 'application/vnd.trueapp',
|
|
1867
|
-
trm: 'application/x-msterminal',
|
|
1868
|
-
tsd: 'application/timestamped-data',
|
|
1869
|
-
tsi: 'audio/tsp-audio',
|
|
1870
|
-
tsp: ['application/dsptype', 'audio/tsplayer'],
|
|
1871
|
-
tsv: 'text/tab-separated-values',
|
|
1872
|
-
ttf: 'application/x-font-ttf',
|
|
1873
|
-
ttl: 'text/turtle',
|
|
1874
|
-
turbot: 'image/florian',
|
|
1875
|
-
twd: 'application/vnd.simtech-mindmapper',
|
|
1876
|
-
txd: 'application/vnd.genomatix.tuxedo',
|
|
1877
|
-
txf: 'application/vnd.mobius.txf',
|
|
1878
|
-
txt: 'text/plain',
|
|
1879
|
-
ufd: 'application/vnd.ufdl',
|
|
1880
|
-
uil: 'text/x-uil',
|
|
1881
|
-
uls: 'text/iuls',
|
|
1882
|
-
umj: 'application/vnd.umajin',
|
|
1883
|
-
uni: 'text/uri-list',
|
|
1884
|
-
unis: 'text/uri-list',
|
|
1885
|
-
unityweb: 'application/vnd.unity',
|
|
1886
|
-
unv: 'application/i-deas',
|
|
1887
|
-
uoml: 'application/vnd.uoml+xml',
|
|
1888
|
-
uri: 'text/uri-list',
|
|
1889
|
-
uris: 'text/uri-list',
|
|
1890
|
-
ustar: ['application/x-ustar', 'multipart/x-ustar'],
|
|
1891
|
-
utz: 'application/vnd.uiq.theme',
|
|
1892
|
-
uu: ['application/octet-stream', 'text/x-uuencode'],
|
|
1893
|
-
uue: 'text/x-uuencode',
|
|
1894
|
-
uva: 'audio/vnd.dece.audio',
|
|
1895
|
-
uvh: 'video/vnd.dece.hd',
|
|
1896
|
-
uvi: 'image/vnd.dece.graphic',
|
|
1897
|
-
uvm: 'video/vnd.dece.mobile',
|
|
1898
|
-
uvp: 'video/vnd.dece.pd',
|
|
1899
|
-
uvs: 'video/vnd.dece.sd',
|
|
1900
|
-
uvu: 'video/vnd.uvvu.mp4',
|
|
1901
|
-
uvv: 'video/vnd.dece.video',
|
|
1902
|
-
vcd: 'application/x-cdlink',
|
|
1903
|
-
vcf: 'text/x-vcard',
|
|
1904
|
-
vcg: 'application/vnd.groove-vcard',
|
|
1905
|
-
vcs: 'text/x-vcalendar',
|
|
1906
|
-
vcx: 'application/vnd.vcx',
|
|
1907
|
-
vda: 'application/vda',
|
|
1908
|
-
vdo: 'video/vdo',
|
|
1909
|
-
vew: 'application/groupwise',
|
|
1910
|
-
vis: 'application/vnd.visionary',
|
|
1911
|
-
viv: ['video/vivo', 'video/vnd.vivo'],
|
|
1912
|
-
vivo: ['video/vivo', 'video/vnd.vivo'],
|
|
1913
|
-
vmd: 'application/vocaltec-media-desc',
|
|
1914
|
-
vmf: 'application/vocaltec-media-file',
|
|
1915
|
-
voc: ['audio/voc', 'audio/x-voc'],
|
|
1916
|
-
vos: 'video/vosaic',
|
|
1917
|
-
vox: 'audio/voxware',
|
|
1918
|
-
vqe: 'audio/x-twinvq-plugin',
|
|
1919
|
-
vqf: 'audio/x-twinvq',
|
|
1920
|
-
vql: 'audio/x-twinvq-plugin',
|
|
1921
|
-
vrml: ['model/vrml', 'x-world/x-vrml', 'application/x-vrml'],
|
|
1922
|
-
vrt: 'x-world/x-vrt',
|
|
1923
|
-
vsd: ['application/vnd.visio', 'application/x-visio'],
|
|
1924
|
-
vsf: 'application/vnd.vsf',
|
|
1925
|
-
vst: 'application/x-visio',
|
|
1926
|
-
vsw: 'application/x-visio',
|
|
1927
|
-
vtu: 'model/vnd.vtu',
|
|
1928
|
-
vxml: 'application/voicexml+xml',
|
|
1929
|
-
w60: 'application/wordperfect6.0',
|
|
1930
|
-
w61: 'application/wordperfect6.1',
|
|
1931
|
-
w6w: 'application/msword',
|
|
1932
|
-
wad: 'application/x-doom',
|
|
1933
|
-
wav: ['audio/wav', 'audio/x-wav'],
|
|
1934
|
-
wax: 'audio/x-ms-wax',
|
|
1935
|
-
wb1: 'application/x-qpro',
|
|
1936
|
-
wbmp: 'image/vnd.wap.wbmp',
|
|
1937
|
-
wbs: 'application/vnd.criticaltools.wbs+xml',
|
|
1938
|
-
wbxml: 'application/vnd.wap.wbxml',
|
|
1939
|
-
wcm: 'application/vnd.ms-works',
|
|
1940
|
-
wdb: 'application/vnd.ms-works',
|
|
1941
|
-
web: 'application/vnd.xara',
|
|
1942
|
-
weba: 'audio/webm',
|
|
1943
|
-
webm: 'video/webm',
|
|
1944
|
-
webp: 'image/webp',
|
|
1945
|
-
wg: 'application/vnd.pmi.widget',
|
|
1946
|
-
wgt: 'application/widget',
|
|
1947
|
-
wiz: 'application/msword',
|
|
1948
|
-
wk1: 'application/x-123',
|
|
1949
|
-
wks: 'application/vnd.ms-works',
|
|
1950
|
-
wm: 'video/x-ms-wm',
|
|
1951
|
-
wma: 'audio/x-ms-wma',
|
|
1952
|
-
wmd: 'application/x-ms-wmd',
|
|
1953
|
-
wmf: ['windows/metafile', 'application/x-msmetafile'],
|
|
1954
|
-
wml: 'text/vnd.wap.wml',
|
|
1955
|
-
wmlc: 'application/vnd.wap.wmlc',
|
|
1956
|
-
wmls: 'text/vnd.wap.wmlscript',
|
|
1957
|
-
wmlsc: 'application/vnd.wap.wmlscriptc',
|
|
1958
|
-
wmv: 'video/x-ms-wmv',
|
|
1959
|
-
wmx: 'video/x-ms-wmx',
|
|
1960
|
-
wmz: 'application/x-ms-wmz',
|
|
1961
|
-
woff: 'application/x-font-woff',
|
|
1962
|
-
word: 'application/msword',
|
|
1963
|
-
wp: 'application/wordperfect',
|
|
1964
|
-
wp5: ['application/wordperfect', 'application/wordperfect6.0'],
|
|
1965
|
-
wp6: 'application/wordperfect',
|
|
1966
|
-
wpd: ['application/wordperfect', 'application/vnd.wordperfect', 'application/x-wpwin'],
|
|
1967
|
-
wpl: 'application/vnd.ms-wpl',
|
|
1968
|
-
wps: 'application/vnd.ms-works',
|
|
1969
|
-
wq1: 'application/x-lotus',
|
|
1970
|
-
wqd: 'application/vnd.wqd',
|
|
1971
|
-
wri: ['application/mswrite', 'application/x-wri', 'application/x-mswrite'],
|
|
1972
|
-
wrl: ['model/vrml', 'x-world/x-vrml', 'application/x-world'],
|
|
1973
|
-
wrz: ['model/vrml', 'x-world/x-vrml'],
|
|
1974
|
-
wsc: 'text/scriplet',
|
|
1975
|
-
wsdl: 'application/wsdl+xml',
|
|
1976
|
-
wspolicy: 'application/wspolicy+xml',
|
|
1977
|
-
wsrc: 'application/x-wais-source',
|
|
1978
|
-
wtb: 'application/vnd.webturbo',
|
|
1979
|
-
wtk: 'application/x-wintalk',
|
|
1980
|
-
wvx: 'video/x-ms-wvx',
|
|
1981
|
-
'x-png': 'image/png',
|
|
1982
|
-
x3d: 'application/vnd.hzn-3d-crossword',
|
|
1983
|
-
xaf: 'x-world/x-vrml',
|
|
1984
|
-
xap: 'application/x-silverlight-app',
|
|
1985
|
-
xar: 'application/vnd.xara',
|
|
1986
|
-
xbap: 'application/x-ms-xbap',
|
|
1987
|
-
xbd: 'application/vnd.fujixerox.docuworks.binder',
|
|
1988
|
-
xbm: ['image/xbm', 'image/x-xbm', 'image/x-xbitmap'],
|
|
1989
|
-
xdf: 'application/xcap-diff+xml',
|
|
1990
|
-
xdm: 'application/vnd.syncml.dm+xml',
|
|
1991
|
-
xdp: 'application/vnd.adobe.xdp+xml',
|
|
1992
|
-
xdr: 'video/x-amt-demorun',
|
|
1993
|
-
xdssc: 'application/dssc+xml',
|
|
1994
|
-
xdw: 'application/vnd.fujixerox.docuworks',
|
|
1995
|
-
xenc: 'application/xenc+xml',
|
|
1996
|
-
xer: 'application/patch-ops-error+xml',
|
|
1997
|
-
xfdf: 'application/vnd.adobe.xfdf',
|
|
1998
|
-
xfdl: 'application/vnd.xfdl',
|
|
1999
|
-
xgz: 'xgl/drawing',
|
|
2000
|
-
xhtml: 'application/xhtml+xml',
|
|
2001
|
-
xif: 'image/vnd.xiff',
|
|
2002
|
-
xl: 'application/excel',
|
|
2003
|
-
xla: ['application/vnd.ms-excel', 'application/excel', 'application/x-msexcel', 'application/x-excel'],
|
|
2004
|
-
xlam: 'application/vnd.ms-excel.addin.macroenabled.12',
|
|
2005
|
-
xlb: ['application/excel', 'application/vnd.ms-excel', 'application/x-excel'],
|
|
2006
|
-
xlc: ['application/vnd.ms-excel', 'application/excel', 'application/x-excel'],
|
|
2007
|
-
xld: ['application/excel', 'application/x-excel'],
|
|
2008
|
-
xlk: ['application/excel', 'application/x-excel'],
|
|
2009
|
-
xll: ['application/excel', 'application/vnd.ms-excel', 'application/x-excel'],
|
|
2010
|
-
xlm: ['application/vnd.ms-excel', 'application/excel', 'application/x-excel'],
|
|
2011
|
-
xls: ['application/vnd.ms-excel', 'application/excel', 'application/x-msexcel', 'application/x-excel'],
|
|
2012
|
-
xlsb: 'application/vnd.ms-excel.sheet.binary.macroenabled.12',
|
|
2013
|
-
xlsm: 'application/vnd.ms-excel.sheet.macroenabled.12',
|
|
2014
|
-
xlsx: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
|
2015
|
-
xlt: ['application/vnd.ms-excel', 'application/excel', 'application/x-excel'],
|
|
2016
|
-
xltm: 'application/vnd.ms-excel.template.macroenabled.12',
|
|
2017
|
-
xltx: 'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
|
|
2018
|
-
xlv: ['application/excel', 'application/x-excel'],
|
|
2019
|
-
xlw: ['application/vnd.ms-excel', 'application/excel', 'application/x-msexcel', 'application/x-excel'],
|
|
2020
|
-
xm: 'audio/xm',
|
|
2021
|
-
xml: ['application/xml', 'text/xml', 'application/atom+xml', 'application/rss+xml'],
|
|
2022
|
-
xmz: 'xgl/movie',
|
|
2023
|
-
xo: 'application/vnd.olpc-sugar',
|
|
2024
|
-
xof: 'x-world/x-vrml',
|
|
2025
|
-
xop: 'application/xop+xml',
|
|
2026
|
-
xpi: 'application/x-xpinstall',
|
|
2027
|
-
xpix: 'application/x-vnd.ls-xpix',
|
|
2028
|
-
xpm: ['image/xpm', 'image/x-xpixmap'],
|
|
2029
|
-
xpr: 'application/vnd.is-xpr',
|
|
2030
|
-
xps: 'application/vnd.ms-xpsdocument',
|
|
2031
|
-
xpw: 'application/vnd.intercon.formnet',
|
|
2032
|
-
xslt: 'application/xslt+xml',
|
|
2033
|
-
xsm: 'application/vnd.syncml+xml',
|
|
2034
|
-
xspf: 'application/xspf+xml',
|
|
2035
|
-
xsr: 'video/x-amt-showrun',
|
|
2036
|
-
xul: 'application/vnd.mozilla.xul+xml',
|
|
2037
|
-
xwd: ['image/x-xwd', 'image/x-xwindowdump'],
|
|
2038
|
-
xyz: ['chemical/x-xyz', 'chemical/x-pdb'],
|
|
2039
|
-
yang: 'application/yang',
|
|
2040
|
-
yin: 'application/yin+xml',
|
|
2041
|
-
z: ['application/x-compressed', 'application/x-compress'],
|
|
2042
|
-
zaz: 'application/vnd.zzazz.deck+xml',
|
|
2043
|
-
zip: ['application/zip', 'multipart/x-zip', 'application/x-zip-compressed', 'application/x-compressed'],
|
|
2044
|
-
zir: 'application/vnd.zul',
|
|
2045
|
-
zmm: 'application/vnd.handheld-entertainment+xml',
|
|
2046
|
-
zoo: 'application/octet-stream',
|
|
2047
|
-
zsh: 'text/x-script.zsh'
|
|
2048
|
-
}
|
|
2049
|
-
};
|