@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,13 +1,47 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
2
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
36
|
exports.HostedZoneDKIMAndVerificationRecords = void 0;
|
|
4
37
|
const aws_cdk_lib_1 = require("aws-cdk-lib");
|
|
5
38
|
const aws_lambda_nodejs_1 = require("aws-cdk-lib/aws-lambda-nodejs");
|
|
6
|
-
const cr = require("aws-cdk-lib/custom-resources");
|
|
7
|
-
const cdk_nag_1 = require("cdk-nag");
|
|
39
|
+
const cr = __importStar(require("aws-cdk-lib/custom-resources"));
|
|
8
40
|
const constructs_1 = require("constructs");
|
|
9
41
|
const hosted_zone_dkim_verification_records_on_event_handler_1 = require("./hosted-zone-dkim-verification-records.on-event-handler");
|
|
10
42
|
class HostedZoneDKIMAndVerificationRecords extends constructs_1.Construct {
|
|
43
|
+
verificationToken;
|
|
44
|
+
dkimTokens;
|
|
11
45
|
constructor(scope, id, props) {
|
|
12
46
|
super(scope, id);
|
|
13
47
|
const resource = new aws_cdk_lib_1.CustomResource(this, 'Resource', {
|
|
@@ -33,10 +67,11 @@ class HostedZoneDKIMAndVerificationRecordsProvider extends constructs_1.Construc
|
|
|
33
67
|
|| new HostedZoneDKIMAndVerificationRecordsProvider(stack, id);
|
|
34
68
|
return x.provider.serviceToken;
|
|
35
69
|
}
|
|
70
|
+
provider;
|
|
36
71
|
constructor(scope, id) {
|
|
37
72
|
super(scope, id);
|
|
38
73
|
const onEventHandlerFunc = new aws_lambda_nodejs_1.NodejsFunction(this, 'on-event-handler', {
|
|
39
|
-
runtime: aws_cdk_lib_1.aws_lambda.Runtime.
|
|
74
|
+
runtime: aws_cdk_lib_1.aws_lambda.Runtime.NODEJS_24_X,
|
|
40
75
|
logRetention: 1,
|
|
41
76
|
timeout: aws_cdk_lib_1.Duration.seconds(200),
|
|
42
77
|
});
|
|
@@ -52,15 +87,15 @@ class HostedZoneDKIMAndVerificationRecordsProvider extends constructs_1.Construc
|
|
|
52
87
|
onEventHandler: onEventHandlerFunc,
|
|
53
88
|
logRetention: 1,
|
|
54
89
|
});
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
90
|
+
// Granular findings only. Portable IDs only: Resource::* is constant across any deployment,
|
|
91
|
+
// Resource::<logical-id> findings are not. AwsSolutions-IAM4[Policy::...] cannot be
|
|
92
|
+
// acknowledged at all right now - aws-cdk-lib's Validations.acknowledge() rejects any id with
|
|
93
|
+
// more than one '::', and AWS managed policy ARNs always contain one (cdklabs/cdk-nag#2359,
|
|
94
|
+
// #2351, both open upstream). See docs/plans/2026-08-09-bump-mvc-projen-cdk-nag-v3.md Task 3.
|
|
95
|
+
const iam5ResourceStar = 'AwsSolutions-IAM5[Resource::*]';
|
|
96
|
+
const reasonIam5 = 'wildcards are ok for the provider as the function has restrictions';
|
|
97
|
+
aws_cdk_lib_1.Validations.of(this.provider.onEventHandler).acknowledge({ id: iam5ResourceStar, reason: reasonIam5 });
|
|
63
98
|
}
|
|
64
99
|
;
|
|
65
100
|
}
|
|
66
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
101
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaG9zdGVkLXpvbmUtZGtpbS12ZXJpZmljYXRpb24tcmVjb3Jkcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9ob3N0ZWQtem9uZS1ka2ltLXZlcmlmaWNhdGlvbi1yZWNvcmRzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLDZDQU9xQjtBQUNyQixxRUFBK0Q7QUFDL0QsaUVBQW1EO0FBQ25ELDJDQUE2QztBQUM3QyxxSUFBa0k7QUFNbEksTUFBYSxvQ0FBcUMsU0FBUSxzQkFBUztJQUNqRCxpQkFBaUIsQ0FBUztJQUMxQixVQUFVLENBQVc7SUFFckMsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUFnRDtRQUN4RixLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBRWpCLE1BQU0sUUFBUSxHQUFHLElBQUksNEJBQWMsQ0FBQyxJQUFJLEVBQUUsVUFBVSxFQUFFO1lBQ3BELFlBQVksRUFBRSw0Q0FBNEMsQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDO1lBQzVFLFlBQVksRUFBRSw4Q0FBOEM7WUFDNUQsVUFBVSxFQUFFO2dCQUNWLENBQUMsb0VBQVcsQ0FBQyxFQUFFLEtBQUssQ0FBQyxNQUFNO2FBQzVCO1NBQ0YsQ0FBQyxDQUFDO1FBRUgsSUFBSSxDQUFDLGlCQUFpQixHQUFHLFFBQVEsQ0FBQyxZQUFZLENBQUMsZ0ZBQXVCLENBQUMsQ0FBQztRQUN4RSxJQUFJLENBQUMsVUFBVSxHQUFHLFFBQVEsQ0FBQyxNQUFNLENBQUMseUVBQWdCLENBQUMsQ0FBQyxZQUFZLEVBQUUsQ0FBQztJQUNyRSxDQUFDO0NBQ0Y7QUFsQkQsb0ZBa0JDO0FBRUQsTUFBTSw0Q0FBNkMsU0FBUSxzQkFBUztJQUVsRTs7T0FFRztJQUNJLE1BQU0sQ0FBQyxXQUFXLENBQUMsS0FBZ0I7UUFDeEMsTUFBTSxLQUFLLEdBQUcsbUJBQUssQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDOUIsTUFBTSxFQUFFLEdBQUcseURBQXlELENBQUM7UUFDckUsTUFBTSxDQUFDLEdBQUcsaUJBQUksQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsWUFBWSxDQUFDLEVBQUUsQ0FBaUQ7ZUFDcEYsSUFBSSw0Q0FBNEMsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFDakUsT0FBTyxDQUFDLENBQUMsUUFBUSxDQUFDLFlBQVksQ0FBQztJQUNqQyxDQUFDO0lBRWdCLFFBQVEsQ0FBYztJQUV2QyxZQUFZLEtBQWdCLEVBQUUsRUFBVTtRQUN0QyxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBRWpCLE1BQU0sa0JBQWtCLEdBQUcsSUFBSSxrQ0FBYyxDQUFDLElBQUksRUFBRSxrQkFBa0IsRUFBRTtZQUN0RSxPQUFPLEVBQUUsd0JBQU0sQ0FBQyxPQUFPLENBQUMsV0FBVztZQUNuQyxZQUFZLEVBQUUsQ0FBQztZQUNmLE9BQU8sRUFBRSxzQkFBUSxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUM7U0FDL0IsQ0FBQyxDQUFDO1FBRUgsa0JBQWtCLENBQUMsZUFBZSxDQUNoQyxJQUFJLHFCQUFHLENBQUMsZUFBZSxDQUFDO1lBQ3RCLE9BQU8sRUFBRTtnQkFDUCxzQkFBc0I7Z0JBQ3RCLDBCQUEwQjtnQkFDMUIsb0JBQW9CO2FBQ3JCO1lBQ0QsU0FBUyxFQUFFLENBQUMsR0FBRyxDQUFDO1NBQ2pCLENBQUMsQ0FDSCxDQUFDO1FBRUYsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLEVBQUUsQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLGdEQUFnRCxFQUFFO1lBQ3RGLGNBQWMsRUFBRSxrQkFBa0I7WUFDbEMsWUFBWSxFQUFFLENBQUM7U0FDaEIsQ0FBQyxDQUFDO1FBQ0gsNEZBQTRGO1FBQzVGLG9GQUFvRjtRQUNwRiw4RkFBOEY7UUFDOUYsNEZBQTRGO1FBQzVGLDhGQUE4RjtRQUM5RixNQUFNLGdCQUFnQixHQUFHLGdDQUFnQyxDQUFDO1FBQzFELE1BQU0sVUFBVSxHQUFHLG9FQUFvRSxDQUFDO1FBRXhGLHlCQUFXLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsY0FBYyxDQUFDLENBQUMsV0FBVyxDQUFDLEVBQUUsRUFBRSxFQUFFLGdCQUFnQixFQUFFLE1BQU0sRUFBRSxVQUFVLEVBQUUsQ0FBQyxDQUFDO0lBQ3pHLENBQUM7SUFBQSxDQUFDO0NBQ0giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDdXN0b21SZXNvdXJjZSxcbiAgRHVyYXRpb24sXG4gIFN0YWNrLFxuICBhd3NfaWFtIGFzIGlhbSxcbiAgYXdzX2xhbWJkYSBhcyBsYW1iZGEsXG4gIFZhbGlkYXRpb25zLFxufSBmcm9tICdhd3MtY2RrLWxpYic7XG5pbXBvcnQgeyBOb2RlanNGdW5jdGlvbiB9IGZyb20gJ2F3cy1jZGstbGliL2F3cy1sYW1iZGEtbm9kZWpzJztcbmltcG9ydCAqIGFzIGNyIGZyb20gJ2F3cy1jZGstbGliL2N1c3RvbS1yZXNvdXJjZXMnO1xuaW1wb3J0IHsgQ29uc3RydWN0LCBOb2RlIH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBBVFRSX1ZFUklGSUNBVElPTl9UT0tFTiwgQVRUUl9ES0lNX1RPS0VOUywgUFJPUF9ET01BSU4gfSBmcm9tICcuL2hvc3RlZC16b25lLWRraW0tdmVyaWZpY2F0aW9uLXJlY29yZHMub24tZXZlbnQtaGFuZGxlcic7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSG9zdGVkWm9uZURLSU1BbmRWZXJpZmljYXRpb25SZWNvcmRzUHJvcHMge1xuICByZWFkb25seSBkb21haW46IHN0cmluZztcbn1cblxuZXhwb3J0IGNsYXNzIEhvc3RlZFpvbmVES0lNQW5kVmVyaWZpY2F0aW9uUmVjb3JkcyBleHRlbmRzIENvbnN0cnVjdCB7XG4gIHB1YmxpYyByZWFkb25seSB2ZXJpZmljYXRpb25Ub2tlbjogc3RyaW5nO1xuICBwdWJsaWMgcmVhZG9ubHkgZGtpbVRva2Vuczogc3RyaW5nW107XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IEhvc3RlZFpvbmVES0lNQW5kVmVyaWZpY2F0aW9uUmVjb3Jkc1Byb3BzKSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkKTtcblxuICAgIGNvbnN0IHJlc291cmNlID0gbmV3IEN1c3RvbVJlc291cmNlKHRoaXMsICdSZXNvdXJjZScsIHtcbiAgICAgIHNlcnZpY2VUb2tlbjogSG9zdGVkWm9uZURLSU1BbmRWZXJpZmljYXRpb25SZWNvcmRzUHJvdmlkZXIuZ2V0T3JDcmVhdGUodGhpcyksXG4gICAgICByZXNvdXJjZVR5cGU6ICdDdXN0b206Okhvc3RlZFpvbmVES0lNQW5kVmVyaWZpY2F0aW9uUmVjb3JkcycsXG4gICAgICBwcm9wZXJ0aWVzOiB7XG4gICAgICAgIFtQUk9QX0RPTUFJTl06IHByb3BzLmRvbWFpbixcbiAgICAgIH0sXG4gICAgfSk7XG5cbiAgICB0aGlzLnZlcmlmaWNhdGlvblRva2VuID0gcmVzb3VyY2UuZ2V0QXR0U3RyaW5nKEFUVFJfVkVSSUZJQ0FUSU9OX1RPS0VOKTtcbiAgICB0aGlzLmRraW1Ub2tlbnMgPSByZXNvdXJjZS5nZXRBdHQoQVRUUl9ES0lNX1RPS0VOUykudG9TdHJpbmdMaXN0KCk7XG4gIH1cbn1cblxuY2xhc3MgSG9zdGVkWm9uZURLSU1BbmRWZXJpZmljYXRpb25SZWNvcmRzUHJvdmlkZXIgZXh0ZW5kcyBDb25zdHJ1Y3Qge1xuXG4gIC8qKlxuICAgKiBSZXR1cm5zIHRoZSBzaW5nbGV0b24gcHJvdmlkZXIuXG4gICAqL1xuICBwdWJsaWMgc3RhdGljIGdldE9yQ3JlYXRlKHNjb3BlOiBDb25zdHJ1Y3QpIHtcbiAgICBjb25zdCBzdGFjayA9IFN0YWNrLm9mKHNjb3BlKTtcbiAgICBjb25zdCBpZCA9ICdyb290bWFpbC5ob3N0ZWQtem9uZS1ka2ltLXZlcmlmaWNhdGlvbi1yZWNvcmRzLXByb3ZpZGVyJztcbiAgICBjb25zdCB4ID0gTm9kZS5vZihzdGFjaykudHJ5RmluZENoaWxkKGlkKSBhcyBIb3N0ZWRab25lREtJTUFuZFZlcmlmaWNhdGlvblJlY29yZHNQcm92aWRlclxuICAgICAgfHwgbmV3IEhvc3RlZFpvbmVES0lNQW5kVmVyaWZpY2F0aW9uUmVjb3Jkc1Byb3ZpZGVyKHN0YWNrLCBpZCk7XG4gICAgcmV0dXJuIHgucHJvdmlkZXIuc2VydmljZVRva2VuO1xuICB9XG5cbiAgcHJpdmF0ZSByZWFkb25seSBwcm92aWRlcjogY3IuUHJvdmlkZXI7XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCk7XG5cbiAgICBjb25zdCBvbkV2ZW50SGFuZGxlckZ1bmMgPSBuZXcgTm9kZWpzRnVuY3Rpb24odGhpcywgJ29uLWV2ZW50LWhhbmRsZXInLCB7XG4gICAgICBydW50aW1lOiBsYW1iZGEuUnVudGltZS5OT0RFSlNfMjRfWCxcbiAgICAgIGxvZ1JldGVudGlvbjogMSxcbiAgICAgIHRpbWVvdXQ6IER1cmF0aW9uLnNlY29uZHMoMjAwKSxcbiAgICB9KTtcblxuICAgIG9uRXZlbnRIYW5kbGVyRnVuYy5hZGRUb1JvbGVQb2xpY3koXG4gICAgICBuZXcgaWFtLlBvbGljeVN0YXRlbWVudCh7XG4gICAgICAgIGFjdGlvbnM6IFtcbiAgICAgICAgICAnc2VzOlZlcmlmeURvbWFpbkRraW0nLFxuICAgICAgICAgICdzZXM6VmVyaWZ5RG9tYWluSWRlbnRpdHknLFxuICAgICAgICAgICdzZXM6RGVsZXRlSWRlbnRpdHknLFxuICAgICAgICBdLFxuICAgICAgICByZXNvdXJjZXM6IFsnKiddLFxuICAgICAgfSksXG4gICAgKTtcblxuICAgIHRoaXMucHJvdmlkZXIgPSBuZXcgY3IuUHJvdmlkZXIodGhpcywgJ2hvc3RlZC16b25lLWRraW0tdmVyaWZpY2F0aW9uLXJlY29yZHMtcHJvdmlkZXInLCB7XG4gICAgICBvbkV2ZW50SGFuZGxlcjogb25FdmVudEhhbmRsZXJGdW5jLFxuICAgICAgbG9nUmV0ZW50aW9uOiAxLFxuICAgIH0pO1xuICAgIC8vIEdyYW51bGFyIGZpbmRpbmdzIG9ubHkuIFBvcnRhYmxlIElEcyBvbmx5OiBSZXNvdXJjZTo6KiBpcyBjb25zdGFudCBhY3Jvc3MgYW55IGRlcGxveW1lbnQsXG4gICAgLy8gUmVzb3VyY2U6Ojxsb2dpY2FsLWlkPiBmaW5kaW5ncyBhcmUgbm90LiBBd3NTb2x1dGlvbnMtSUFNNFtQb2xpY3k6Oi4uLl0gY2Fubm90IGJlXG4gICAgLy8gYWNrbm93bGVkZ2VkIGF0IGFsbCByaWdodCBub3cgLSBhd3MtY2RrLWxpYidzIFZhbGlkYXRpb25zLmFja25vd2xlZGdlKCkgcmVqZWN0cyBhbnkgaWQgd2l0aFxuICAgIC8vIG1vcmUgdGhhbiBvbmUgJzo6JywgYW5kIEFXUyBtYW5hZ2VkIHBvbGljeSBBUk5zIGFsd2F5cyBjb250YWluIG9uZSAoY2RrbGFicy9jZGstbmFnIzIzNTksXG4gICAgLy8gIzIzNTEsIGJvdGggb3BlbiB1cHN0cmVhbSkuIFNlZSBkb2NzL3BsYW5zLzIwMjYtMDgtMDktYnVtcC1tdmMtcHJvamVuLWNkay1uYWctdjMubWQgVGFzayAzLlxuICAgIGNvbnN0IGlhbTVSZXNvdXJjZVN0YXIgPSAnQXdzU29sdXRpb25zLUlBTTVbUmVzb3VyY2U6OipdJztcbiAgICBjb25zdCByZWFzb25JYW01ID0gJ3dpbGRjYXJkcyBhcmUgb2sgZm9yIHRoZSBwcm92aWRlciBhcyB0aGUgZnVuY3Rpb24gaGFzIHJlc3RyaWN0aW9ucyc7XG5cbiAgICBWYWxpZGF0aW9ucy5vZih0aGlzLnByb3ZpZGVyLm9uRXZlbnRIYW5kbGVyKS5hY2tub3dsZWRnZSh7IGlkOiBpYW01UmVzb3VyY2VTdGFyLCByZWFzb246IHJlYXNvbklhbTUgfSk7XG4gIH07XG59Il19
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { OnEventRequest, OnEventResponse } from './custom-resource-types';
|
|
2
2
|
export declare const PROP_DOMAIN = "Domain";
|
|
3
3
|
export declare const ATTR_VERIFICATION_TOKEN = "VerificationToken";
|
|
4
4
|
export declare const ATTR_DKIM_TOKENS = "DkimTokens";
|
|
5
|
-
export declare function handler(event:
|
|
5
|
+
export declare function handler(event: OnEventRequest): Promise<OnEventResponse>;
|
|
@@ -41,4 +41,4 @@ async function handler(event) {
|
|
|
41
41
|
};
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
44
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaG9zdGVkLXpvbmUtZGtpbS12ZXJpZmljYXRpb24tcmVjb3Jkcy5vbi1ldmVudC1oYW5kbGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2hvc3RlZC16b25lLWRraW0tdmVyaWZpY2F0aW9uLXJlY29yZHMub24tZXZlbnQtaGFuZGxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFRQSwwQkFvQ0M7QUE1Q0Qsb0RBQTBDO0FBRTdCLFFBQUEsV0FBVyxHQUFHLFFBQVEsQ0FBQztBQUN2QixRQUFBLHVCQUF1QixHQUFHLG1CQUFtQixDQUFDO0FBQzlDLFFBQUEsZ0JBQWdCLEdBQUcsWUFBWSxDQUFDO0FBRTdDLE1BQU0sR0FBRyxHQUFHLElBQUksZ0JBQUcsRUFBRSxDQUFDO0FBRWYsS0FBSyxVQUFVLE9BQU8sQ0FBQyxLQUFxQjtJQUNqRCxNQUFNLE1BQU0sR0FBRyxLQUFLLENBQUMsa0JBQWtCLENBQUMsbUJBQVcsQ0FBQyxDQUFDO0lBQ3JELFFBQVEsS0FBSyxDQUFDLFdBQVcsRUFBRSxDQUFDO1FBQzFCLEtBQUssUUFBUSxDQUFDO1FBQ2QsS0FBSyxRQUFRO1lBQ1gsSUFBSSxrQkFBa0IsR0FBRyxLQUFLLENBQUMsa0JBQWtCLENBQUM7WUFDbEQsSUFBSSxLQUFLLENBQUMsV0FBVyxLQUFLLFFBQVEsRUFBRSxDQUFDO2dCQUNuQyxrQkFBa0IsR0FBRyxLQUFLLENBQUMsU0FBUyxDQUFDO1lBQ3ZDLENBQUM7WUFFRCxPQUFPLENBQUMsR0FBRyxDQUFDLEdBQUcsS0FBSyxDQUFDLFdBQVcsaURBQWlELEtBQUssQ0FBQyxpQkFBaUIsZ0JBQWdCLE1BQU0sOEJBQThCLGtCQUFrQixHQUFHLENBQUMsQ0FBQztZQUNuTCxNQUFNLG9CQUFvQixHQUFHLE1BQU0sR0FBRyxDQUFDLG9CQUFvQixDQUFDLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBRSxDQUFDLENBQUM7WUFDaEYsTUFBTSxpQkFBaUIsR0FBRyxvQkFBb0IsQ0FBQyxpQkFBaUIsQ0FBQztZQUNqRSxPQUFPLENBQUMsR0FBRyxDQUFDLEdBQUcsS0FBSyxDQUFDLFdBQVcsNkJBQTZCLGlCQUFpQixpQkFBaUIsTUFBTSxHQUFHLENBQUMsQ0FBQztZQUUxRyxNQUFNLHdCQUF3QixHQUFHLE1BQU0sR0FBRyxDQUFDLGdCQUFnQixDQUFDLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBRSxDQUFDLENBQUM7WUFDaEYsTUFBTSxVQUFVLEdBQUcsd0JBQXdCLENBQUMsVUFBVSxDQUFDO1lBQ3ZELE9BQU8sQ0FBQyxHQUFHLENBQUMsR0FBRyxLQUFLLENBQUMsV0FBVyxzQkFBc0IsVUFBVSxpQkFBaUIsTUFBTSxHQUFHLENBQUMsQ0FBQztZQUU1RixPQUFPO2dCQUNMLGtCQUFrQixFQUFFLGtCQUFrQjtnQkFDdEMsSUFBSSxFQUFFO29CQUNKLENBQUMsK0JBQXVCLENBQUMsRUFBRSxpQkFBaUI7b0JBQzVDLENBQUMsd0JBQWdCLENBQUMsRUFBRSxVQUFVO2lCQUMvQjthQUNGLENBQUM7UUFDSiw0SEFBNEg7UUFDNUgsc0NBQXNDO1FBQ3RDLEtBQUssUUFBUTtZQUNYLE9BQU8sQ0FBQyxHQUFHLENBQUMsd0NBQXdDLE1BQU0sOEJBQThCLEtBQUssQ0FBQyxrQkFBa0IsR0FBRyxDQUFDLENBQUM7WUFDckgsTUFBTSxjQUFjLEdBQUcsTUFBTSxHQUFHLENBQUMsY0FBYyxDQUFDLEVBQUUsUUFBUSxFQUFFLE1BQU0sRUFBRSxDQUFDLENBQUM7WUFDdEUsT0FBTyxDQUFDLEdBQUcsQ0FBQyx1Q0FBdUMsTUFBTSxHQUFHLEVBQUUsY0FBYyxDQUFDLENBQUM7WUFDOUUsT0FBTztnQkFDTCxrQkFBa0IsRUFBRSxLQUFLLENBQUMsa0JBQWtCO2FBQzdDLENBQUM7SUFDTixDQUFDO0FBQ0gsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNFUyB9IGZyb20gJ0Bhd3Mtc2RrL2NsaWVudC1zZXMnO1xuaW1wb3J0IHsgT25FdmVudFJlcXVlc3QsIE9uRXZlbnRSZXNwb25zZSB9IGZyb20gJy4vY3VzdG9tLXJlc291cmNlLXR5cGVzJztcbmV4cG9ydCBjb25zdCBQUk9QX0RPTUFJTiA9ICdEb21haW4nO1xuZXhwb3J0IGNvbnN0IEFUVFJfVkVSSUZJQ0FUSU9OX1RPS0VOID0gJ1ZlcmlmaWNhdGlvblRva2VuJztcbmV4cG9ydCBjb25zdCBBVFRSX0RLSU1fVE9LRU5TID0gJ0RraW1Ub2tlbnMnO1xuXG5jb25zdCBzZXMgPSBuZXcgU0VTKCk7XG5cbmV4cG9ydCBhc3luYyBmdW5jdGlvbiBoYW5kbGVyKGV2ZW50OiBPbkV2ZW50UmVxdWVzdCk6IFByb21pc2U8T25FdmVudFJlc3BvbnNlPiB7XG4gIGNvbnN0IGRvbWFpbiA9IGV2ZW50LlJlc291cmNlUHJvcGVydGllc1tQUk9QX0RPTUFJTl07XG4gIHN3aXRjaCAoZXZlbnQuUmVxdWVzdFR5cGUpIHtcbiAgICBjYXNlICdDcmVhdGUnOlxuICAgIGNhc2UgJ1VwZGF0ZSc6XG4gICAgICBsZXQgcGh5c2ljYWxSZXNvdXJjZUlkID0gZXZlbnQuUGh5c2ljYWxSZXNvdXJjZUlkO1xuICAgICAgaWYgKGV2ZW50LlJlcXVlc3RUeXBlID09PSAnQ3JlYXRlJykge1xuICAgICAgICBwaHlzaWNhbFJlc291cmNlSWQgPSBldmVudC5SZXF1ZXN0SWQ7XG4gICAgICB9XG5cbiAgICAgIGNvbnNvbGUubG9nKGAke2V2ZW50LlJlcXVlc3RUeXBlfTogRG8gRG9tYWluIHZlcmlmaWNhdGlvbiBhbmQgREtJTSByZWNvcmRzIGZvciAke2V2ZW50LkxvZ2ljYWxSZXNvdXJjZUlkfSBhbmQgZG9tYWluICcke2RvbWFpbn0nIHdpdGggUGh5c2ljYWxSZXNvdXJjZUlkICcke3BoeXNpY2FsUmVzb3VyY2VJZH0nYCk7XG4gICAgICBjb25zdCB2ZXJpZnlEb21haW5SZXNwb25zZSA9IGF3YWl0IHNlcy52ZXJpZnlEb21haW5JZGVudGl0eSh7IERvbWFpbjogZG9tYWluIH0pO1xuICAgICAgY29uc3QgdmVyaWZpY2F0aW9uVG9rZW4gPSB2ZXJpZnlEb21haW5SZXNwb25zZS5WZXJpZmljYXRpb25Ub2tlbjtcbiAgICAgIGNvbnNvbGUubG9nKGAke2V2ZW50LlJlcXVlc3RUeXBlfTogR290IHZlcmlmaWNhdGlvbiB0b2tlbiAnJHt2ZXJpZmljYXRpb25Ub2tlbn0nIGZvciBkb21haW4gJyR7ZG9tYWlufSdgKTtcblxuICAgICAgY29uc3QgdmVyaWZ5RG9tYWluRGtpbVJlc3BvbnNlID0gYXdhaXQgc2VzLnZlcmlmeURvbWFpbkRraW0oeyBEb21haW46IGRvbWFpbiB9KTtcbiAgICAgIGNvbnN0IGRraW1Ub2tlbnMgPSB2ZXJpZnlEb21haW5Ea2ltUmVzcG9uc2UuRGtpbVRva2VucztcbiAgICAgIGNvbnNvbGUubG9nKGAke2V2ZW50LlJlcXVlc3RUeXBlfTogR290IERLSU0gdG9rZW5zICcke2RraW1Ub2tlbnN9JyBmb3IgZG9tYWluICcke2RvbWFpbn0nYCk7XG5cbiAgICAgIHJldHVybiB7XG4gICAgICAgIFBoeXNpY2FsUmVzb3VyY2VJZDogcGh5c2ljYWxSZXNvdXJjZUlkLFxuICAgICAgICBEYXRhOiB7XG4gICAgICAgICAgW0FUVFJfVkVSSUZJQ0FUSU9OX1RPS0VOXTogdmVyaWZpY2F0aW9uVG9rZW4sXG4gICAgICAgICAgW0FUVFJfREtJTV9UT0tFTlNdOiBka2ltVG9rZW5zLFxuICAgICAgICB9LFxuICAgICAgfTtcbiAgICAvLyBUT0RPIGNoZWNrIGlmIGRlbGV0ZSBzaG91bGQgZG8gbm90aGluZzogaHR0cHM6Ly9naXRodWIuY29tL3N1cGVyd2Vya2VyL3N1cGVyd2Vya2VyL2Jsb2IvbWFpbi90ZW1wbGF0ZXMvcm9vdG1haWwueWFtbCNMMTcwXG4gICAgLy8gd2Ugc3RvcmUgaW4gUGFyYW1ldGVyIFN0b3JlIGFzIHdlbGxcbiAgICBjYXNlICdEZWxldGUnOlxuICAgICAgY29uc29sZS5sb2coYERlbGV0aW5nIERvbWFpbiBpZGVudGl0eSBmb3IgZG9tYWluICcke2RvbWFpbn0nIHdpdGggUGh5c2ljYWxSZXNvdXJjZUlkICcke2V2ZW50LlBoeXNpY2FsUmVzb3VyY2VJZH0nYCk7XG4gICAgICBjb25zdCBkZWxldGVSZXNwb25zZSA9IGF3YWl0IHNlcy5kZWxldGVJZGVudGl0eSh7IElkZW50aXR5OiBkb21haW4gfSk7XG4gICAgICBjb25zb2xlLmxvZyhgRGVsZXRlZCBEb21haW4gaWRlbnRpdHkgZm9yIGRvbWFpbiAnJHtkb21haW59J2AsIGRlbGV0ZVJlc3BvbnNlKTtcbiAgICAgIHJldHVybiB7XG4gICAgICAgIFBoeXNpY2FsUmVzb3VyY2VJZDogZXZlbnQuUGh5c2ljYWxSZXNvdXJjZUlkLFxuICAgICAgfTtcbiAgfVxufVxuXG4iXX0=
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { OnEventRequest } from './custom-resource-types';
|
|
2
2
|
export declare const PROP_DOMAIN = "Domain";
|
|
3
3
|
export declare const PROP_SUB_DOMAIN = "Subdomain";
|
|
4
4
|
export declare const PROP_R53_HANGEINFO_ID_PARAMETER_NAME = "R53ChangeInfoIdParameterName";
|
|
@@ -6,4 +6,4 @@ export declare const PROP_PARENT_HOSTED_ZONE_ID = "ParentHostedZoneId";
|
|
|
6
6
|
export interface IsCompleteHandlerResponse {
|
|
7
7
|
IsComplete: boolean;
|
|
8
8
|
}
|
|
9
|
-
export declare function handler(event:
|
|
9
|
+
export declare function handler(event: OnEventRequest): Promise<IsCompleteHandlerResponse>;
|
|
@@ -72,4 +72,4 @@ async function handler(event) {
|
|
|
72
72
|
function log(msg) {
|
|
73
73
|
console.log(JSON.stringify(msg));
|
|
74
74
|
}
|
|
75
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
75
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm9vdG1haWwtYXV0b3dpcmUtZG5zLmlzLWNvbXBsZXRlLWhhbmRsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvcm9vdG1haWwtYXV0b3dpcmUtZG5zLmlzLWNvbXBsZXRlLWhhbmRsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBZUEsMEJBOERDO0FBN0VELDhEQUF1RjtBQUN2RixvREFBMEM7QUFFN0IsUUFBQSxXQUFXLEdBQUcsUUFBUSxDQUFDO0FBQ3ZCLFFBQUEsZUFBZSxHQUFHLFdBQVcsQ0FBQztBQUM5QixRQUFBLG9DQUFvQyxHQUFHLDhCQUE4QixDQUFDLENBQUMsMEJBQTBCO0FBQ2pHLFFBQUEsMEJBQTBCLEdBQUcsb0JBQW9CLENBQUM7QUFFL0QsTUFBTSxPQUFPLEdBQUcsSUFBSSx5QkFBTyxFQUFFLENBQUM7QUFDOUIsTUFBTSxHQUFHLEdBQUcsSUFBSSxnQkFBRyxFQUFFLENBQUM7QUFNZixLQUFLLFVBQVUsT0FBTyxDQUFDLEtBQXFCO0lBQ2pELE1BQU0sTUFBTSxHQUFHLEtBQUssQ0FBQyxrQkFBa0IsQ0FBQyxtQkFBVyxDQUFDLENBQUM7SUFDckQsTUFBTSxTQUFTLEdBQUcsS0FBSyxDQUFDLGtCQUFrQixDQUFDLHVCQUFlLENBQUMsQ0FBQztJQUM1RCxNQUFNLHVCQUF1QixHQUFHLEtBQUssQ0FBQyxrQkFBa0IsQ0FBQyw0Q0FBb0MsQ0FBQyxDQUFDO0lBQy9GLE1BQU0sa0JBQWtCLEdBQUcsS0FBSyxDQUFDLGtCQUFrQixDQUFDLGtDQUEwQixDQUFDLENBQUM7SUFFaEYsSUFBSSxrQkFBa0IsS0FBSyxTQUFTLElBQUksa0JBQWtCLEtBQUssRUFBRSxFQUFFLENBQUM7UUFDbEUsR0FBRyxDQUFDLCtCQUErQixLQUFLLENBQUMsV0FBVyxpQkFBaUIsU0FBUyxJQUFJLE1BQU0sc0NBQXNDLENBQUMsQ0FBQztRQUNoSSxPQUFPO1lBQ0wsVUFBVSxFQUFFLElBQUk7U0FDakIsQ0FBQztJQUNKLENBQUM7SUFFRCxNQUFNLDBDQUEwQyxHQUFHLE1BQU0sR0FBRyxDQUFDLFlBQVksQ0FBQztRQUN4RSxJQUFJLEVBQUUsdUJBQXVCO0tBQzlCLENBQUMsQ0FBQztJQUNILE1BQU0scUNBQXFDLEdBQUcsMENBQTBDLENBQUMsU0FBUyxFQUFFLEtBQWUsQ0FBQztJQUVwSCxHQUFHLENBQUMsMkJBQTJCLHFDQUFxQyxtQkFBbUIsS0FBSyxDQUFDLFdBQVcsRUFBRSxDQUFDLENBQUM7SUFDNUcsR0FBRyxDQUFDO1FBQ0YsR0FBRyxFQUFFLE9BQU87UUFDWixLQUFLO0tBQ04sQ0FBQyxDQUFDO0lBRUgsUUFBUSxLQUFLLENBQUMsV0FBVyxFQUFFLENBQUM7UUFDMUIsS0FBSyxRQUFRO1lBQ1gsR0FBRyxDQUFDLDhCQUE4QixDQUFDLENBQUM7WUFDcEMsSUFBSSxDQUFDO2dCQUNILE1BQU0sR0FBRyxHQUFHLE1BQU0sSUFBQSxvREFBa0MsRUFBQztvQkFDbkQsTUFBTSxFQUFFLE9BQU87b0JBQ2YsUUFBUSxFQUFFLENBQUM7b0JBQ1gsV0FBVyxFQUFFLENBQUM7aUJBQ2YsRUFBRTtvQkFDRCxFQUFFLEVBQUUscUNBQXFDO2lCQUMxQyxDQUFDLENBQUM7Z0JBRUgsUUFBUSxHQUFHLENBQUMsS0FBSyxFQUFFLENBQUM7b0JBQ2xCLEtBQUssU0FBUzt3QkFDWixHQUFHLENBQUMsK0JBQStCLEdBQUcsQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDO3dCQUNqRCxPQUFPLEVBQUUsVUFBVSxFQUFFLElBQUksRUFBRSxDQUFDO29CQUM5QixLQUFLLE9BQU87d0JBQ1YsR0FBRyxDQUFDLGdEQUFnRCxHQUFHLENBQUMsS0FBSyxHQUFHLENBQUMsQ0FBQzt3QkFDbEUsT0FBTyxFQUFFLFVBQVUsRUFBRSxLQUFLLEVBQUUsQ0FBQztvQkFDL0IsS0FBSyxTQUFTLENBQUM7b0JBQ2YsS0FBSyxTQUFTLENBQUM7b0JBQ2YsS0FBSyxTQUFTO3dCQUNaLEdBQUcsQ0FBQyxpQ0FBaUMsR0FBRyxDQUFDLEtBQUssR0FBRyxDQUFDLENBQUM7d0JBQ25ELE9BQU8sRUFBRSxVQUFVLEVBQUUsS0FBSyxFQUFFLENBQUM7b0JBQy9CO3dCQUNFLEdBQUcsQ0FBQyxpQ0FBaUMsR0FBRyxDQUFDLEtBQUssR0FBRyxDQUFDLENBQUM7d0JBQ25ELE9BQU8sRUFBRSxVQUFVLEVBQUUsS0FBSyxFQUFFLENBQUM7Z0JBQ2pDLENBQUM7WUFDSCxDQUFDO1lBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQztnQkFDWCxHQUFHLENBQUMsd0NBQXdDLENBQUMsRUFBRSxDQUFDLENBQUM7Z0JBQ2pELE9BQU8sRUFBRSxVQUFVLEVBQUUsS0FBSyxFQUFFLENBQUM7WUFDL0IsQ0FBQztRQUNILEtBQUssUUFBUSxDQUFDO1FBQ2QsS0FBSyxRQUFRO1lBQ1gsT0FBTztnQkFDTCxVQUFVLEVBQUUsSUFBSTthQUNqQixDQUFDO0lBQ04sQ0FBQztBQUNILENBQUM7QUFFRCxTQUFTLEdBQUcsQ0FBQyxHQUFRO0lBQ25CLE9BQU8sQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO0FBQ25DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBSb3V0ZTUzLCB3YWl0VW50aWxSZXNvdXJjZVJlY29yZFNldHNDaGFuZ2VkIH0gZnJvbSAnQGF3cy1zZGsvY2xpZW50LXJvdXRlLTUzJztcbmltcG9ydCB7IFNTTSB9IGZyb20gJ0Bhd3Mtc2RrL2NsaWVudC1zc20nO1xuaW1wb3J0IHsgT25FdmVudFJlcXVlc3QgfSBmcm9tICcuL2N1c3RvbS1yZXNvdXJjZS10eXBlcyc7XG5leHBvcnQgY29uc3QgUFJPUF9ET01BSU4gPSAnRG9tYWluJztcbmV4cG9ydCBjb25zdCBQUk9QX1NVQl9ET01BSU4gPSAnU3ViZG9tYWluJztcbmV4cG9ydCBjb25zdCBQUk9QX1I1M19IQU5HRUlORk9fSURfUEFSQU1FVEVSX05BTUUgPSAnUjUzQ2hhbmdlSW5mb0lkUGFyYW1ldGVyTmFtZSc7IC8vIFRPRE8gRFJZIHdpdGggaW50ZXJmYWNlXG5leHBvcnQgY29uc3QgUFJPUF9QQVJFTlRfSE9TVEVEX1pPTkVfSUQgPSAnUGFyZW50SG9zdGVkWm9uZUlkJztcblxuY29uc3Qgcm91dGU1MyA9IG5ldyBSb3V0ZTUzKCk7XG5jb25zdCBzc20gPSBuZXcgU1NNKCk7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSXNDb21wbGV0ZUhhbmRsZXJSZXNwb25zZSB7XG4gIElzQ29tcGxldGU6IGJvb2xlYW47XG59XG5cbmV4cG9ydCBhc3luYyBmdW5jdGlvbiBoYW5kbGVyKGV2ZW50OiBPbkV2ZW50UmVxdWVzdCk6IFByb21pc2U8SXNDb21wbGV0ZUhhbmRsZXJSZXNwb25zZT4ge1xuICBjb25zdCBkb21haW4gPSBldmVudC5SZXNvdXJjZVByb3BlcnRpZXNbUFJPUF9ET01BSU5dO1xuICBjb25zdCBzdWJkb21haW4gPSBldmVudC5SZXNvdXJjZVByb3BlcnRpZXNbUFJPUF9TVUJfRE9NQUlOXTtcbiAgY29uc3QgaG9zdGVkWm9uZVBhcmFtZXRlck5hbWUgPSBldmVudC5SZXNvdXJjZVByb3BlcnRpZXNbUFJPUF9SNTNfSEFOR0VJTkZPX0lEX1BBUkFNRVRFUl9OQU1FXTtcbiAgY29uc3QgcGFyZW50SG9zdGVkWm9uZUlkID0gZXZlbnQuUmVzb3VyY2VQcm9wZXJ0aWVzW1BST1BfUEFSRU5UX0hPU1RFRF9aT05FX0lEXTtcblxuICBpZiAocGFyZW50SG9zdGVkWm9uZUlkID09PSB1bmRlZmluZWQgfHwgcGFyZW50SG9zdGVkWm9uZUlkID09PSAnJykge1xuICAgIGxvZyhgU2tpcHBpbmcgYXV0b0ROUyB3aXJpbmcgb24gJyR7ZXZlbnQuUmVxdWVzdFR5cGV9JyBmb3IgZG9tYWluICcke3N1YmRvbWFpbn0uJHtkb21haW59JyBhcyBubyBwYXJlbnRIb3N0ZWRab25lSWQgaXMgZ2l2ZW4hYCk7XG4gICAgcmV0dXJuIHtcbiAgICAgIElzQ29tcGxldGU6IHRydWUsXG4gICAgfTtcbiAgfVxuXG4gIGNvbnN0IHJlY29yZFNldENyZWF0aW9uUmVzcG9uc2VDaGFuZ2VJbmZvSWRQYXJhbSA9IGF3YWl0IHNzbS5nZXRQYXJhbWV0ZXIoe1xuICAgIE5hbWU6IGhvc3RlZFpvbmVQYXJhbWV0ZXJOYW1lLFxuICB9KTtcbiAgY29uc3QgcmVjb3JkU2V0Q3JlYXRpb25SZXNwb25zZUNoYW5nZUluZm9JZCA9IHJlY29yZFNldENyZWF0aW9uUmVzcG9uc2VDaGFuZ2VJbmZvSWRQYXJhbS5QYXJhbWV0ZXI/LlZhbHVlIGFzIHN0cmluZztcblxuICBsb2coYGdvdCBSNTMgY2hhbmdlIGluZm8gaWQ6ICR7cmVjb3JkU2V0Q3JlYXRpb25SZXNwb25zZUNoYW5nZUluZm9JZH0gZm9yIGV2ZW50IHR5cGUgJHtldmVudC5SZXF1ZXN0VHlwZX1gKTtcbiAgbG9nKHtcbiAgICBtc2c6ICdldmVudCcsXG4gICAgZXZlbnQsXG4gIH0pO1xuXG4gIHN3aXRjaCAoZXZlbnQuUmVxdWVzdFR5cGUpIHtcbiAgICBjYXNlICdDcmVhdGUnOlxuICAgICAgbG9nKCd3YWl0aW5nIGZvciBETlMgdG8gcHJvcGFnYXRlJyk7XG4gICAgICB0cnkge1xuICAgICAgICBjb25zdCByZXMgPSBhd2FpdCB3YWl0VW50aWxSZXNvdXJjZVJlY29yZFNldHNDaGFuZ2VkKHtcbiAgICAgICAgICBjbGllbnQ6IHJvdXRlNTMsXG4gICAgICAgICAgbWluRGVsYXk6IDIsXG4gICAgICAgICAgbWF4V2FpdFRpbWU6IDQsXG4gICAgICAgIH0sIHtcbiAgICAgICAgICBJZDogcmVjb3JkU2V0Q3JlYXRpb25SZXNwb25zZUNoYW5nZUluZm9JZCxcbiAgICAgICAgfSk7XG5cbiAgICAgICAgc3dpdGNoIChyZXMuc3RhdGUpIHtcbiAgICAgICAgICBjYXNlICdTVUNDRVNTJzpcbiAgICAgICAgICAgIGxvZyhgRE5TIHByb3BhZ2F0ZWQgd2l0aCBzdGF0dXMgJyR7cmVzLnN0YXRlfSdgKTtcbiAgICAgICAgICAgIHJldHVybiB7IElzQ29tcGxldGU6IHRydWUgfTtcbiAgICAgICAgICBjYXNlICdSRVRSWSc6XG4gICAgICAgICAgICBsb2coYEROUyBwcm9wYWdhdGlvbiBub3QgaW4gc3luYyB5ZXQuIEhhcyBzdGF0dXMgJyR7cmVzLnN0YXRlfSdgKTtcbiAgICAgICAgICAgIHJldHVybiB7IElzQ29tcGxldGU6IGZhbHNlIH07XG4gICAgICAgICAgY2FzZSAnQUJPUlRFRCc6XG4gICAgICAgICAgY2FzZSAnRkFJTFVSRSc6XG4gICAgICAgICAgY2FzZSAnVElNRU9VVCc6XG4gICAgICAgICAgICBsb2coYEROUyBwcm9wYWdhdGlvbiBzdGF0ZSBmYWlsZWQgJyR7cmVzLnN0YXRlfSdgKTtcbiAgICAgICAgICAgIHJldHVybiB7IElzQ29tcGxldGU6IGZhbHNlIH07XG4gICAgICAgICAgZGVmYXVsdDpcbiAgICAgICAgICAgIGxvZyhgRE5TIHByb3BhZ2F0aW9uIHN0YXRlIHVua25vdyAnJHtyZXMuc3RhdGV9J2ApO1xuICAgICAgICAgICAgcmV0dXJuIHsgSXNDb21wbGV0ZTogZmFsc2UgfTtcbiAgICAgICAgfVxuICAgICAgfSBjYXRjaCAoZSkge1xuICAgICAgICBsb2coYEROUyBwcm9wYWdhdGlvbiBlcnJvcmVkLiBIYXMgbWVzc2FnZSAke2V9YCk7XG4gICAgICAgIHJldHVybiB7IElzQ29tcGxldGU6IGZhbHNlIH07XG4gICAgICB9XG4gICAgY2FzZSAnVXBkYXRlJzpcbiAgICBjYXNlICdEZWxldGUnOlxuICAgICAgcmV0dXJuIHtcbiAgICAgICAgSXNDb21wbGV0ZTogdHJ1ZSxcbiAgICAgIH07XG4gIH1cbn1cblxuZnVuY3Rpb24gbG9nKG1zZzogYW55KSB7XG4gIGNvbnNvbGUubG9nKEpTT04uc3RyaW5naWZ5KG1zZykpO1xufSJdfQ==
|
|
@@ -1,10 +1,42 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
2
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
36
|
exports.RootmailAutowireDns = void 0;
|
|
4
37
|
const aws_cdk_lib_1 = require("aws-cdk-lib");
|
|
5
38
|
const aws_lambda_nodejs_1 = require("aws-cdk-lib/aws-lambda-nodejs");
|
|
6
|
-
const cr = require("aws-cdk-lib/custom-resources");
|
|
7
|
-
const cdk_nag_1 = require("cdk-nag");
|
|
39
|
+
const cr = __importStar(require("aws-cdk-lib/custom-resources"));
|
|
8
40
|
const constructs_1 = require("constructs");
|
|
9
41
|
const rootmail_autowire_dns_on_event_handler_1 = require("./rootmail-autowire-dns.on-event-handler");
|
|
10
42
|
class RootmailAutowireDns extends constructs_1.Construct {
|
|
@@ -46,10 +78,11 @@ class RootmailAutowireDnsProvider extends constructs_1.Construct {
|
|
|
46
78
|
|| new RootmailAutowireDnsProvider(stack, id, props);
|
|
47
79
|
return x.provider.serviceToken;
|
|
48
80
|
}
|
|
81
|
+
provider;
|
|
49
82
|
constructor(scope, id, props) {
|
|
50
83
|
super(scope, id);
|
|
51
84
|
const isCompleteHandlerFunc = new aws_lambda_nodejs_1.NodejsFunction(this, 'is-complete-handler', {
|
|
52
|
-
runtime: aws_cdk_lib_1.aws_lambda.Runtime.
|
|
85
|
+
runtime: aws_cdk_lib_1.aws_lambda.Runtime.NODEJS_24_X,
|
|
53
86
|
timeout: aws_cdk_lib_1.Duration.seconds(120),
|
|
54
87
|
logRetention: 1,
|
|
55
88
|
});
|
|
@@ -63,7 +96,7 @@ class RootmailAutowireDnsProvider extends constructs_1.Construct {
|
|
|
63
96
|
}));
|
|
64
97
|
props.autoWireR53ChangeInfoIdParameter.grantRead(isCompleteHandlerFunc);
|
|
65
98
|
const onEventHandlerFunc = new aws_lambda_nodejs_1.NodejsFunction(this, 'on-event-handler', {
|
|
66
|
-
runtime: aws_cdk_lib_1.aws_lambda.Runtime.
|
|
99
|
+
runtime: aws_cdk_lib_1.aws_lambda.Runtime.NODEJS_24_X,
|
|
67
100
|
timeout: aws_cdk_lib_1.Duration.seconds(160), // 2m40s
|
|
68
101
|
logRetention: 1,
|
|
69
102
|
environment: {},
|
|
@@ -109,17 +142,16 @@ class RootmailAutowireDnsProvider extends constructs_1.Construct {
|
|
|
109
142
|
onEventHandler: onEventHandlerFunc,
|
|
110
143
|
logRetention: 1,
|
|
111
144
|
});
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
], true);
|
|
145
|
+
// Granular findings only. Portable IDs only: Resource::* is constant across any deployment,
|
|
146
|
+
// Resource::<logical-id> findings are not. AwsSolutions-IAM4[Policy::...] cannot be
|
|
147
|
+
// acknowledged at all right now - aws-cdk-lib's Validations.acknowledge() rejects any id with
|
|
148
|
+
// more than one '::', and AWS managed policy ARNs always contain one (cdklabs/cdk-nag#2359,
|
|
149
|
+
// #2351, both open upstream). See docs/plans/2026-08-09-bump-mvc-projen-cdk-nag-v3.md Task 3.
|
|
150
|
+
const iam5ResourceStar = 'AwsSolutions-IAM5[Resource::*]';
|
|
151
|
+
const reasonIam5 = 'wildcards are ok for the provider as the function has restrictions';
|
|
152
|
+
aws_cdk_lib_1.Validations.of(this.provider.onEventHandler).acknowledge({ id: iam5ResourceStar, reason: reasonIam5 });
|
|
153
|
+
aws_cdk_lib_1.Validations.of(this.provider.isCompleteHandler).acknowledge({ id: iam5ResourceStar, reason: reasonIam5 });
|
|
122
154
|
}
|
|
123
155
|
;
|
|
124
156
|
}
|
|
125
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm9vdG1haWwtYXV0b3dpcmUtZG5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3Jvb3RtYWlsLWF1dG93aXJlLWRucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSw2Q0FTcUI7QUFDckIscUVBQStEO0FBQy9ELG1EQUFtRDtBQUNuRCxxQ0FBMEM7QUFDMUMsMkNBQTZDO0FBQzdDLHFHQU1rRDtBQWtDbEQsTUFBYSxtQkFBb0IsU0FBUSxzQkFBUztJQUVoRCxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQStCO1FBQ3ZFLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFFakIsTUFBTSxTQUFTLEdBQUcsS0FBSyxDQUFDLFNBQVMsSUFBSSxLQUFLLENBQUM7UUFDM0MsTUFBTSxxQkFBcUIsR0FBRyxLQUFLLENBQUMscUJBQXFCLElBQUksU0FBUyxDQUFDO1FBQ3ZFLE1BQU0sb0NBQW9DLEdBQUcsdUNBQXVDLENBQUM7UUFHckYsMkRBQTJEO1FBQzNELE1BQU0sdUJBQXVCLEdBQUcsSUFBSSxxQkFBRyxDQUFDLGVBQWUsQ0FBQyxJQUFJLEVBQUUseUJBQXlCLEVBQUU7WUFDdkYsYUFBYSxFQUFFLG9DQUFvQztZQUNuRCxXQUFXLEVBQUUsT0FBTztTQUNyQixDQUFDLENBQUM7UUFFSCxJQUFJLDRCQUFjLENBQUMsSUFBSSxFQUFFLFVBQVUsRUFBRTtZQUNuQyxZQUFZLEVBQUUsMkJBQTJCLENBQUMsV0FBVyxDQUFDLElBQUksRUFBRTtnQkFDMUQsZ0NBQWdDLEVBQUUsdUJBQXVCO2dCQUN6RCxHQUFHLEtBQUs7YUFDVCxDQUFDO1lBQ0YsWUFBWSxFQUFFLHFDQUFxQztZQUNuRCxVQUFVLEVBQUU7Z0JBQ1YsQ0FBQyxvREFBVyxDQUFDLEVBQUUsS0FBSyxDQUFDLE1BQU07Z0JBQzNCLENBQUMsd0RBQWUsQ0FBQyxFQUFFLFNBQVM7Z0JBQzVCLENBQUMsbUVBQTBCLENBQUMsRUFBRSxxQkFBcUI7Z0JBQ25ELENBQUMsd0VBQStCLENBQUMsRUFBRSxLQUFLLENBQUMsc0JBQXNCLENBQUMsYUFBYTtnQkFDN0UsQ0FBQyw4RUFBcUMsQ0FBQyxFQUFFLHVCQUF1QixDQUFDLGFBQWE7YUFDL0U7U0FDRixDQUFDLENBQUM7SUFFTCxDQUFDO0NBQ0Y7QUFoQ0Qsa0RBZ0NDO0FBUUQsTUFBTSwyQkFBNEIsU0FBUSxzQkFBUztJQUNqRDs7T0FFRztJQUNJLE1BQU0sQ0FBQyxXQUFXLENBQUMsS0FBZ0IsRUFBRSxLQUF1QztRQUNqRixNQUFNLEtBQUssR0FBRyxtQkFBSyxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUM5QixNQUFNLEVBQUUsR0FBRyxnQ0FBZ0MsQ0FBQztRQUM1QyxNQUFNLENBQUMsR0FBRyxpQkFBSSxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUMsQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFnQztlQUNuRSxJQUFJLDJCQUEyQixDQUFDLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFDdkQsT0FBTyxDQUFDLENBQUMsUUFBUSxDQUFDLFlBQVksQ0FBQztJQUNqQyxDQUFDO0lBSUQsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUF1QztRQUMvRSxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBRWpCLE1BQU0scUJBQXFCLEdBQUcsSUFBSSxrQ0FBYyxDQUFDLElBQUksRUFBRSxxQkFBcUIsRUFBRTtZQUM1RSxPQUFPLEVBQUUsd0JBQU0sQ0FBQyxPQUFPLENBQUMsV0FBVztZQUNuQyxPQUFPLEVBQUUsc0JBQVEsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDO1lBQzlCLFlBQVksRUFBRSxDQUFDO1NBQ2hCLENBQUMsQ0FBQztRQUVILHFCQUFxQixDQUFDLGVBQWUsQ0FDbkMsSUFBSSxxQkFBRyxDQUFDLGVBQWUsQ0FBQztZQUN0QixPQUFPLEVBQUU7Z0JBQ1AsK0JBQStCO2dCQUMvQixtQkFBbUI7YUFDcEI7WUFDRCxNQUFNLEVBQUUscUJBQUcsQ0FBQyxNQUFNLENBQUMsS0FBSztZQUN4QixTQUFTLEVBQUUsQ0FBQyxHQUFHLENBQUM7U0FDakIsQ0FBQyxDQUNILENBQUM7UUFFRixLQUFLLENBQUMsZ0NBQWdDLENBQUMsU0FBUyxDQUFDLHFCQUFxQixDQUFDLENBQUM7UUFFeEUsTUFBTSxrQkFBa0IsR0FBRyxJQUFJLGtDQUFjLENBQUMsSUFBSSxFQUFFLGtCQUFrQixFQUFFO1lBQ3RFLE9BQU8sRUFBRSx3QkFBTSxDQUFDLE9BQU8sQ0FBQyxXQUFXO1lBQ25DLE9BQU8sRUFBRSxzQkFBUSxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsRUFBRSxRQUFRO1lBQ3hDLFlBQVksRUFBRSxDQUFDO1lBQ2YsV0FBVyxFQUFFLEVBQUU7U0FDaEIsQ0FBQyxDQUFDO1FBRUgsS0FBSyxDQUFDLHNCQUFzQixDQUFDLFNBQVMsQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO1FBQzNELElBQUksS0FBSyxDQUFDLGdDQUFnQyxLQUFLLFNBQVMsRUFBRSxDQUFDO1lBQ3pELEtBQUssQ0FBQyxnQ0FBZ0MsQ0FBQyxVQUFVLENBQUMsa0JBQWtCLENBQUMsQ0FBQztRQUN4RSxDQUFDO1FBRUQsa0JBQWtCLENBQUMsZUFBZSxDQUNoQyxJQUFJLHFCQUFHLENBQUMsZUFBZSxDQUFDO1lBQ3RCLE9BQU8sRUFBRTtnQkFDUCwrQkFBK0I7Z0JBQy9CLG1CQUFtQjthQUNwQjtZQUNELE1BQU0sRUFBRSxxQkFBRyxDQUFDLE1BQU0sQ0FBQyxLQUFLO1lBQ3hCLFNBQVMsRUFBRSxDQUFDLEdBQUcsQ0FBQztTQUNqQixDQUFDLENBQ0gsQ0FBQztRQUVGLElBQUksS0FBSyxDQUFDLHFCQUFxQixLQUFLLFNBQVMsSUFBSSxLQUFLLENBQUMscUJBQXFCLENBQUMsSUFBSSxFQUFFLENBQUMsTUFBTSxHQUFHLENBQUMsRUFBRSxDQUFDO1lBQy9GLGtCQUFrQixDQUFDLGVBQWUsQ0FDaEMsSUFBSSxxQkFBRyxDQUFDLGVBQWUsQ0FBQztnQkFDdEIsT0FBTyxFQUFFO29CQUNQLGdDQUFnQztvQkFDaEMsa0NBQWtDO2lCQUNuQztnQkFDRCxNQUFNLEVBQUUscUJBQUcsQ0FBQyxNQUFNLENBQUMsS0FBSztnQkFDeEIsU0FBUyxFQUFFO29CQUNULHNDQUFzQztvQkFDdEMsOEVBQThFO29CQUM5RSxpQkFBRyxDQUFDLE1BQU0sQ0FBQzt3QkFDVCxTQUFTLEVBQUUsS0FBSzt3QkFDaEIsT0FBTyxFQUFFLFNBQVM7d0JBQ2xCLE1BQU0sRUFBRSxFQUFFO3dCQUNWLE9BQU8sRUFBRSxFQUFFO3dCQUNYLFFBQVEsRUFBRSxZQUFZO3dCQUN0QixTQUFTLEVBQUUsdUJBQVMsQ0FBQyxtQkFBbUI7d0JBQ3hDLFlBQVksRUFBRSxLQUFLLENBQUMscUJBQXFCO3FCQUMxQyxDQUFDO2lCQUNIO2FBQ0YsQ0FBQyxDQUNILENBQUM7UUFDSixDQUFDO1FBRUQsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLEVBQUUsQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLGdDQUFnQyxFQUFFO1lBQ3RFLGlCQUFpQixFQUFFLHFCQUFxQjtZQUN4QyxhQUFhLEVBQUUsc0JBQVEsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDO1lBQ2xDLFlBQVksRUFBRSxzQkFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsRUFBRSwrQ0FBK0M7WUFDaEYsY0FBYyxFQUFFLGtCQUFrQjtZQUNsQyxZQUFZLEVBQUUsQ0FBQztTQUNoQixDQUFDLENBQUM7UUFDSCx5QkFBZSxDQUFDLHVCQUF1QixDQUNyQztZQUNFLElBQUksQ0FBQyxRQUFRO1lBQ2IsSUFBSSxDQUFDLFFBQVEsQ0FBQyxjQUFlO1lBQzdCLElBQUksQ0FBQyxRQUFRLENBQUMsY0FBYyxDQUFDLElBQUs7WUFDbEMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxpQkFBa0I7WUFDaEMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxpQkFBa0IsQ0FBQyxJQUFLO1NBQ3ZDLEVBQ0Q7WUFDRSxFQUFFLEVBQUUsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLEVBQUUsb0NBQW9DLEVBQUU7WUFDekUsRUFBRSxFQUFFLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxFQUFFLG9FQUFvRSxFQUFFO1NBQzFHLEVBQUUsSUFBSSxDQUFDLENBQUM7SUFDYixDQUFDO0lBQUEsQ0FBQztDQUNIIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQXJuLFxuICBBcm5Gb3JtYXQsXG4gIEN1c3RvbVJlc291cmNlLFxuICBEdXJhdGlvbixcbiAgYXdzX2lhbSBhcyBpYW0sXG4gIGF3c19sYW1iZGEgYXMgbGFtYmRhLFxuICBhd3Nfc3NtIGFzIHNzbSxcbiAgU3RhY2ssXG59IGZyb20gJ2F3cy1jZGstbGliJztcbmltcG9ydCB7IE5vZGVqc0Z1bmN0aW9uIH0gZnJvbSAnYXdzLWNkay1saWIvYXdzLWxhbWJkYS1ub2RlanMnO1xuaW1wb3J0ICogYXMgY3IgZnJvbSAnYXdzLWNkay1saWIvY3VzdG9tLXJlc291cmNlcyc7XG5pbXBvcnQgeyBOYWdTdXBwcmVzc2lvbnMgfSBmcm9tICdjZGstbmFnJztcbmltcG9ydCB7IENvbnN0cnVjdCwgTm9kZSB9IGZyb20gJ2NvbnN0cnVjdHMnO1xuaW1wb3J0IHtcbiAgUFJPUF9ET01BSU4sXG4gIFBST1BfU1VCX0RPTUFJTixcbiAgUFJPUF9IT1NURURfWk9ORV9QQVJBTUVURVJfTkFNRSxcbiAgUFJPUF9SNTNfQ0hBTkdFSU5GT19JRF9QQVJBTUVURVJfTkFNRSxcbiAgUFJPUF9QQVJFTlRfSE9TVEVEX1pPTkVfSUQsXG59IGZyb20gJy4vcm9vdG1haWwtYXV0b3dpcmUtZG5zLm9uLWV2ZW50LWhhbmRsZXInO1xuXG5leHBvcnQgaW50ZXJmYWNlIFJvb3RtYWlsQXV0b3dpcmVEbnNQcm9wcyB7XG4gIC8qKlxuICAgKiBEb21haW4gdXNlZCBmb3Igcm9vdCBtYWlsIGZlYXR1cmUuXG4gICAqL1xuICByZWFkb25seSBkb21haW46IHN0cmluZztcblxuICAvKipcbiAgICogU3ViZG9tYWluIHVzZWQgZm9yIHJvb3QgbWFpbCBmZWF0dXJlLlxuICAgKlxuICAgKiBAZGVmYXVsdCAnYXdzJ1xuICAgKi9cbiAgcmVhZG9ubHkgc3ViZG9tYWluPzogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBUaGUgaG9zdGVkIHpvbmUgSUQgb2YgdGhlIGRvbWFpbiB0aGF0IGlzIHJlZ2lzdGVyZWQgUm91dGU1MyBBTkQgaW4gdGhlIHNhbWUgQVdTIGFjY291bnRcbiAgICogdG8gZW5hYmxlIGF1dG93aXJpbmcgb2YgdGhlIEROUyByZWNvcmRzLlxuICAgKlxuICAgKiBAZGVmYXVsdCB1bmRlZmluZWRcbiAgICovXG4gIHJlYWRvbmx5IHdpcmVETlNUb0hvc3RlZFpvbmVJRD86IHN0cmluZztcblxuICAvKipcbiAgICogVGhlIEhvc3RlZCBab25lIFNTTSBQYXJhbWV0ZXIgTmFtZSBmb3IgdGhlIE5TIHJlY29yZHMuXG4gICAqL1xuICByZWFkb25seSBob3N0ZWRab25lU1NNUGFyYW1ldGVyOiBzc20uU3RyaW5nTGlzdFBhcmFtZXRlcjtcblxuICAvKipcbiAgICogVGhlIHRvdGFsIHRpbWUgdG8gd2FpdCBmb3IgdGhlIEROUyByZWNvcmRzIHRvIGJlIGF2YWlsYWJsZS93aXJlZC5cbiAgICovXG4gIHJlYWRvbmx5IHRvdGFsVGltZVRvV2lyZUROUzogRHVyYXRpb247XG59XG5cbmV4cG9ydCBjbGFzcyBSb290bWFpbEF1dG93aXJlRG5zIGV4dGVuZHMgQ29uc3RydWN0IHtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogUm9vdG1haWxBdXRvd2lyZURuc1Byb3BzKSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkKTtcblxuICAgIGNvbnN0IHN1YmRvbWFpbiA9IHByb3BzLnN1YmRvbWFpbiA/PyAnYXdzJztcbiAgICBjb25zdCB3aXJlRE5TVG9Ib3N0ZWRab25lSUQgPSBwcm9wcy53aXJlRE5TVG9Ib3N0ZWRab25lSUQgPz8gdW5kZWZpbmVkO1xuICAgIGNvbnN0IGF1dG9XaXJlUjUzQ2hhbmdlSW5mb0lkUGFyYW1ldGVyTmFtZSA9ICcvcm9vdG1haWwvYXV0b193aXJlX3I1M19jaGFuZ2VpbmZvX2lkJztcblxuXG4gICAgLy8gVE9ETzogY3JlYXRlIGl0IGluIHRoZSBmdW5jdGlvbiB0byBhdm9pZCB0aGUgZHVtbXkgdmFsdWVcbiAgICBjb25zdCBhdXRvV2lyZVI1M0NoYW5nZUluZm9JZCA9IG5ldyBzc20uU3RyaW5nUGFyYW1ldGVyKHRoaXMsICdBdXRvV2lyZVI1M0NoYW5nZUluZm9JZCcsIHtcbiAgICAgIHBhcmFtZXRlck5hbWU6IGF1dG9XaXJlUjUzQ2hhbmdlSW5mb0lkUGFyYW1ldGVyTmFtZSxcbiAgICAgIHN0cmluZ1ZhbHVlOiAnZHVtbXknLFxuICAgIH0pO1xuXG4gICAgbmV3IEN1c3RvbVJlc291cmNlKHRoaXMsICdSZXNvdXJjZScsIHtcbiAgICAgIHNlcnZpY2VUb2tlbjogUm9vdG1haWxBdXRvd2lyZURuc1Byb3ZpZGVyLmdldE9yQ3JlYXRlKHRoaXMsIHtcbiAgICAgICAgYXV0b1dpcmVSNTNDaGFuZ2VJbmZvSWRQYXJhbWV0ZXI6IGF1dG9XaXJlUjUzQ2hhbmdlSW5mb0lkLFxuICAgICAgICAuLi5wcm9wcyxcbiAgICAgIH0pLFxuICAgICAgcmVzb3VyY2VUeXBlOiAnQ3VzdG9tOjpSb290bWFpbEF1dG93aXJlRG5zUHJvdmlkZXInLFxuICAgICAgcHJvcGVydGllczoge1xuICAgICAgICBbUFJPUF9ET01BSU5dOiBwcm9wcy5kb21haW4sXG4gICAgICAgIFtQUk9QX1NVQl9ET01BSU5dOiBzdWJkb21haW4sXG4gICAgICAgIFtQUk9QX1BBUkVOVF9IT1NURURfWk9ORV9JRF06IHdpcmVETlNUb0hvc3RlZFpvbmVJRCxcbiAgICAgICAgW1BST1BfSE9TVEVEX1pPTkVfUEFSQU1FVEVSX05BTUVdOiBwcm9wcy5ob3N0ZWRab25lU1NNUGFyYW1ldGVyLnBhcmFtZXRlck5hbWUsXG4gICAgICAgIFtQUk9QX1I1M19DSEFOR0VJTkZPX0lEX1BBUkFNRVRFUl9OQU1FXTogYXV0b1dpcmVSNTNDaGFuZ2VJbmZvSWQucGFyYW1ldGVyTmFtZSxcbiAgICAgIH0sXG4gICAgfSk7XG5cbiAgfVxufVxuXG5pbnRlcmZhY2UgUm9vdG1haWxBdXRvd2lyZURuc1Byb3ZpZGVyUHJvcHMgZXh0ZW5kcyBSb290bWFpbEF1dG93aXJlRG5zUHJvcHMge1xuICByZWFkb25seSBhdXRvV2lyZVI1M0NoYW5nZUluZm9JZFBhcmFtZXRlcjogc3NtLlN0cmluZ1BhcmFtZXRlcjtcbiAgcmVhZG9ubHkgd2lyZUROU1RvSG9zdGVkWm9uZUlEPzogc3RyaW5nO1xuICByZWFkb25seSB0b3RhbFRpbWVUb1dpcmVETlM6IER1cmF0aW9uO1xufVxuXG5jbGFzcyBSb290bWFpbEF1dG93aXJlRG5zUHJvdmlkZXIgZXh0ZW5kcyBDb25zdHJ1Y3Qge1xuICAvKipcbiAgICogUmV0dXJucyB0aGUgc2luZ2xldG9uIHByb3ZpZGVyLlxuICAgKi9cbiAgcHVibGljIHN0YXRpYyBnZXRPckNyZWF0ZShzY29wZTogQ29uc3RydWN0LCBwcm9wczogUm9vdG1haWxBdXRvd2lyZURuc1Byb3ZpZGVyUHJvcHMpIHtcbiAgICBjb25zdCBzdGFjayA9IFN0YWNrLm9mKHNjb3BlKTtcbiAgICBjb25zdCBpZCA9ICdyb290bWFpbC5hdXRvd2lyZS1kbnMtcHJvdmlkZXInO1xuICAgIGNvbnN0IHggPSBOb2RlLm9mKHN0YWNrKS50cnlGaW5kQ2hpbGQoaWQpIGFzIFJvb3RtYWlsQXV0b3dpcmVEbnNQcm92aWRlclxuICAgICAgfHwgbmV3IFJvb3RtYWlsQXV0b3dpcmVEbnNQcm92aWRlcihzdGFjaywgaWQsIHByb3BzKTtcbiAgICByZXR1cm4geC5wcm92aWRlci5zZXJ2aWNlVG9rZW47XG4gIH1cblxuICBwcml2YXRlIHJlYWRvbmx5IHByb3ZpZGVyOiBjci5Qcm92aWRlcjtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogUm9vdG1haWxBdXRvd2lyZURuc1Byb3ZpZGVyUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQpO1xuXG4gICAgY29uc3QgaXNDb21wbGV0ZUhhbmRsZXJGdW5jID0gbmV3IE5vZGVqc0Z1bmN0aW9uKHRoaXMsICdpcy1jb21wbGV0ZS1oYW5kbGVyJywge1xuICAgICAgcnVudGltZTogbGFtYmRhLlJ1bnRpbWUuTk9ERUpTXzE4X1gsXG4gICAgICB0aW1lb3V0OiBEdXJhdGlvbi5zZWNvbmRzKDEyMCksXG4gICAgICBsb2dSZXRlbnRpb246IDEsXG4gICAgfSk7XG5cbiAgICBpc0NvbXBsZXRlSGFuZGxlckZ1bmMuYWRkVG9Sb2xlUG9saWN5KFxuICAgICAgbmV3IGlhbS5Qb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgICBhY3Rpb25zOiBbXG4gICAgICAgICAgJ3JvdXRlNTM6TGlzdEhvc3RlZFpvbmVzQnlOYW1lJyxcbiAgICAgICAgICAncm91dGU1MzpHZXRDaGFuZ2UnLFxuICAgICAgICBdLFxuICAgICAgICBlZmZlY3Q6IGlhbS5FZmZlY3QuQUxMT1csXG4gICAgICAgIHJlc291cmNlczogWycqJ10sXG4gICAgICB9KSxcbiAgICApO1xuXG4gICAgcHJvcHMuYXV0b1dpcmVSNTNDaGFuZ2VJbmZvSWRQYXJhbWV0ZXIuZ3JhbnRSZWFkKGlzQ29tcGxldGVIYW5kbGVyRnVuYyk7XG5cbiAgICBjb25zdCBvbkV2ZW50SGFuZGxlckZ1bmMgPSBuZXcgTm9kZWpzRnVuY3Rpb24odGhpcywgJ29uLWV2ZW50LWhhbmRsZXInLCB7XG4gICAgICBydW50aW1lOiBsYW1iZGEuUnVudGltZS5OT0RFSlNfMThfWCxcbiAgICAgIHRpbWVvdXQ6IER1cmF0aW9uLnNlY29uZHMoMTYwKSwgLy8gMm00MHNcbiAgICAgIGxvZ1JldGVudGlvbjogMSxcbiAgICAgIGVudmlyb25tZW50OiB7fSxcbiAgICB9KTtcblxuICAgIHByb3BzLmhvc3RlZFpvbmVTU01QYXJhbWV0ZXIuZ3JhbnRSZWFkKG9uRXZlbnRIYW5kbGVyRnVuYyk7XG4gICAgaWYgKHByb3BzLmF1dG9XaXJlUjUzQ2hhbmdlSW5mb0lkUGFyYW1ldGVyICE9PSB1bmRlZmluZWQpIHtcbiAgICAgIHByb3BzLmF1dG9XaXJlUjUzQ2hhbmdlSW5mb0lkUGFyYW1ldGVyLmdyYW50V3JpdGUob25FdmVudEhhbmRsZXJGdW5jKTtcbiAgICB9XG5cbiAgICBvbkV2ZW50SGFuZGxlckZ1bmMuYWRkVG9Sb2xlUG9saWN5KFxuICAgICAgbmV3IGlhbS5Qb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgICBhY3Rpb25zOiBbXG4gICAgICAgICAgJ3JvdXRlNTM6TGlzdEhvc3RlZFpvbmVzQnlOYW1lJyxcbiAgICAgICAgICAncm91dGU1MzpHZXRDaGFuZ2UnLFxuICAgICAgICBdLFxuICAgICAgICBlZmZlY3Q6IGlhbS5FZmZlY3QuQUxMT1csXG4gICAgICAgIHJlc291cmNlczogWycqJ10sXG4gICAgICB9KSxcbiAgICApO1xuXG4gICAgaWYgKHByb3BzLndpcmVETlNUb0hvc3RlZFpvbmVJRCAhPT0gdW5kZWZpbmVkICYmIHByb3BzLndpcmVETlNUb0hvc3RlZFpvbmVJRC50cmltKCkubGVuZ3RoID4gMCkge1xuICAgICAgb25FdmVudEhhbmRsZXJGdW5jLmFkZFRvUm9sZVBvbGljeShcbiAgICAgICAgbmV3IGlhbS5Qb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgICAgIGFjdGlvbnM6IFtcbiAgICAgICAgICAgICdyb3V0ZTUzOkxpc3RSZXNvdXJjZVJlY29yZFNldHMnLFxuICAgICAgICAgICAgJ3JvdXRlNTM6Q2hhbmdlUmVzb3VyY2VSZWNvcmRTZXRzJyxcbiAgICAgICAgICBdLFxuICAgICAgICAgIGVmZmVjdDogaWFtLkVmZmVjdC5BTExPVyxcbiAgICAgICAgICByZXNvdXJjZXM6IFtcbiAgICAgICAgICAgIC8vIGFybjphd3M6cm91dGU1Mzo6Omhvc3RlZHpvbmUvSDEyMzQ1XG4gICAgICAgICAgICAvLyBhcm46e3BhcnRpdGlvbn06e3NlcnZpY2V9OntyZWdpb259OnthY2NvdW50fTp7cmVzb3VyY2V9e3NlcH17cmVzb3VyY2UtbmFtZX1cbiAgICAgICAgICAgIEFybi5mb3JtYXQoe1xuICAgICAgICAgICAgICBwYXJ0aXRpb246ICdhd3MnLFxuICAgICAgICAgICAgICBzZXJ2aWNlOiAncm91dGU1MycsXG4gICAgICAgICAgICAgIHJlZ2lvbjogJycsXG4gICAgICAgICAgICAgIGFjY291bnQ6ICcnLFxuICAgICAgICAgICAgICByZXNvdXJjZTogJ2hvc3RlZHpvbmUnLFxuICAgICAgICAgICAgICBhcm5Gb3JtYXQ6IEFybkZvcm1hdC5TTEFTSF9SRVNPVVJDRV9OQU1FLFxuICAgICAgICAgICAgICByZXNvdXJjZU5hbWU6IHByb3BzLndpcmVETlNUb0hvc3RlZFpvbmVJRCxcbiAgICAgICAgICAgIH0pLFxuICAgICAgICAgIF0sXG4gICAgICAgIH0pLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICB0aGlzLnByb3ZpZGVyID0gbmV3IGNyLlByb3ZpZGVyKHRoaXMsICdyb290bWFpbC1hdXRvd2lyZS1kbnMtcHJvdmlkZXInLCB7XG4gICAgICBpc0NvbXBsZXRlSGFuZGxlcjogaXNDb21wbGV0ZUhhbmRsZXJGdW5jLFxuICAgICAgcXVlcnlJbnRlcnZhbDogRHVyYXRpb24uc2Vjb25kcyg1KSxcbiAgICAgIHRvdGFsVGltZW91dDogRHVyYXRpb24uaG91cnMoMiksIC8vIHByb3BzLnRvdGFsVGltZVRvV2lyZUROUywgVE9ETyBkb2VzIG5vdCB3b3JrXG4gICAgICBvbkV2ZW50SGFuZGxlcjogb25FdmVudEhhbmRsZXJGdW5jLFxuICAgICAgbG9nUmV0ZW50aW9uOiAxLFxuICAgIH0pO1xuICAgIE5hZ1N1cHByZXNzaW9ucy5hZGRSZXNvdXJjZVN1cHByZXNzaW9ucyhcbiAgICAgIFtcbiAgICAgICAgdGhpcy5wcm92aWRlcixcbiAgICAgICAgdGhpcy5wcm92aWRlci5vbkV2ZW50SGFuZGxlciEsXG4gICAgICAgIHRoaXMucHJvdmlkZXIub25FdmVudEhhbmRsZXIucm9sZSEsXG4gICAgICAgIHRoaXMucHJvdmlkZXIuaXNDb21wbGV0ZUhhbmRsZXIhLFxuICAgICAgICB0aGlzLnByb3ZpZGVyLmlzQ29tcGxldGVIYW5kbGVyIS5yb2xlISxcbiAgICAgIF0sXG4gICAgICBbXG4gICAgICAgIHsgaWQ6ICdBd3NTb2x1dGlvbnMtSUFNNCcsIHJlYXNvbjogJ25vIHNlcnZpY2Ugcm9sZSByZXN0cmljdGlvbiBuZWVkZWQnIH0sXG4gICAgICAgIHsgaWQ6ICdBd3NTb2x1dGlvbnMtSUFNNScsIHJlYXNvbjogJ3dpbGRjYXJkcyBhcmUgb2sgZm9yIHRoZSBwcm92aWRlciBhcyB0aGUgZnVuY3Rpb24gaGFzIHJlc3RyaWN0aW9ucycgfSxcbiAgICAgIF0sIHRydWUpO1xuICB9O1xufSJdfQ==
|
|
157
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm9vdG1haWwtYXV0b3dpcmUtZG5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3Jvb3RtYWlsLWF1dG93aXJlLWRucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSw2Q0FVcUI7QUFDckIscUVBQStEO0FBQy9ELGlFQUFtRDtBQUNuRCwyQ0FBNkM7QUFDN0MscUdBTWtEO0FBa0NsRCxNQUFhLG1CQUFvQixTQUFRLHNCQUFTO0lBRWhELFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBK0I7UUFDdkUsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQztRQUVqQixNQUFNLFNBQVMsR0FBRyxLQUFLLENBQUMsU0FBUyxJQUFJLEtBQUssQ0FBQztRQUMzQyxNQUFNLHFCQUFxQixHQUFHLEtBQUssQ0FBQyxxQkFBcUIsSUFBSSxTQUFTLENBQUM7UUFDdkUsTUFBTSxvQ0FBb0MsR0FBRyx1Q0FBdUMsQ0FBQztRQUdyRiwyREFBMkQ7UUFDM0QsTUFBTSx1QkFBdUIsR0FBRyxJQUFJLHFCQUFHLENBQUMsZUFBZSxDQUFDLElBQUksRUFBRSx5QkFBeUIsRUFBRTtZQUN2RixhQUFhLEVBQUUsb0NBQW9DO1lBQ25ELFdBQVcsRUFBRSxPQUFPO1NBQ3JCLENBQUMsQ0FBQztRQUVILElBQUksNEJBQWMsQ0FBQyxJQUFJLEVBQUUsVUFBVSxFQUFFO1lBQ25DLFlBQVksRUFBRSwyQkFBMkIsQ0FBQyxXQUFXLENBQUMsSUFBSSxFQUFFO2dCQUMxRCxnQ0FBZ0MsRUFBRSx1QkFBdUI7Z0JBQ3pELEdBQUcsS0FBSzthQUNULENBQUM7WUFDRixZQUFZLEVBQUUscUNBQXFDO1lBQ25ELFVBQVUsRUFBRTtnQkFDVixDQUFDLG9EQUFXLENBQUMsRUFBRSxLQUFLLENBQUMsTUFBTTtnQkFDM0IsQ0FBQyx3REFBZSxDQUFDLEVBQUUsU0FBUztnQkFDNUIsQ0FBQyxtRUFBMEIsQ0FBQyxFQUFFLHFCQUFxQjtnQkFDbkQsQ0FBQyx3RUFBK0IsQ0FBQyxFQUFFLEtBQUssQ0FBQyxzQkFBc0IsQ0FBQyxhQUFhO2dCQUM3RSxDQUFDLDhFQUFxQyxDQUFDLEVBQUUsdUJBQXVCLENBQUMsYUFBYTthQUMvRTtTQUNGLENBQUMsQ0FBQztJQUVMLENBQUM7Q0FDRjtBQWhDRCxrREFnQ0M7QUFRRCxNQUFNLDJCQUE0QixTQUFRLHNCQUFTO0lBQ2pEOztPQUVHO0lBQ0ksTUFBTSxDQUFDLFdBQVcsQ0FBQyxLQUFnQixFQUFFLEtBQXVDO1FBQ2pGLE1BQU0sS0FBSyxHQUFHLG1CQUFLLENBQUMsRUFBRSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzlCLE1BQU0sRUFBRSxHQUFHLGdDQUFnQyxDQUFDO1FBQzVDLE1BQU0sQ0FBQyxHQUFHLGlCQUFJLENBQUMsRUFBRSxDQUFDLEtBQUssQ0FBQyxDQUFDLFlBQVksQ0FBQyxFQUFFLENBQWdDO2VBQ25FLElBQUksMkJBQTJCLENBQUMsS0FBSyxFQUFFLEVBQUUsRUFBRSxLQUFLLENBQUMsQ0FBQztRQUN2RCxPQUFPLENBQUMsQ0FBQyxRQUFRLENBQUMsWUFBWSxDQUFDO0lBQ2pDLENBQUM7SUFFZ0IsUUFBUSxDQUFjO0lBRXZDLFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBdUM7UUFDL0UsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQztRQUVqQixNQUFNLHFCQUFxQixHQUFHLElBQUksa0NBQWMsQ0FBQyxJQUFJLEVBQUUscUJBQXFCLEVBQUU7WUFDNUUsT0FBTyxFQUFFLHdCQUFNLENBQUMsT0FBTyxDQUFDLFdBQVc7WUFDbkMsT0FBTyxFQUFFLHNCQUFRLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQztZQUM5QixZQUFZLEVBQUUsQ0FBQztTQUNoQixDQUFDLENBQUM7UUFFSCxxQkFBcUIsQ0FBQyxlQUFlLENBQ25DLElBQUkscUJBQUcsQ0FBQyxlQUFlLENBQUM7WUFDdEIsT0FBTyxFQUFFO2dCQUNQLCtCQUErQjtnQkFDL0IsbUJBQW1CO2FBQ3BCO1lBQ0QsTUFBTSxFQUFFLHFCQUFHLENBQUMsTUFBTSxDQUFDLEtBQUs7WUFDeEIsU0FBUyxFQUFFLENBQUMsR0FBRyxDQUFDO1NBQ2pCLENBQUMsQ0FDSCxDQUFDO1FBRUYsS0FBSyxDQUFDLGdDQUFnQyxDQUFDLFNBQVMsQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDO1FBRXhFLE1BQU0sa0JBQWtCLEdBQUcsSUFBSSxrQ0FBYyxDQUFDLElBQUksRUFBRSxrQkFBa0IsRUFBRTtZQUN0RSxPQUFPLEVBQUUsd0JBQU0sQ0FBQyxPQUFPLENBQUMsV0FBVztZQUNuQyxPQUFPLEVBQUUsc0JBQVEsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLEVBQUUsUUFBUTtZQUN4QyxZQUFZLEVBQUUsQ0FBQztZQUNmLFdBQVcsRUFBRSxFQUFFO1NBQ2hCLENBQUMsQ0FBQztRQUVILEtBQUssQ0FBQyxzQkFBc0IsQ0FBQyxTQUFTLENBQUMsa0JBQWtCLENBQUMsQ0FBQztRQUMzRCxJQUFJLEtBQUssQ0FBQyxnQ0FBZ0MsS0FBSyxTQUFTLEVBQUUsQ0FBQztZQUN6RCxLQUFLLENBQUMsZ0NBQWdDLENBQUMsVUFBVSxDQUFDLGtCQUFrQixDQUFDLENBQUM7UUFDeEUsQ0FBQztRQUVELGtCQUFrQixDQUFDLGVBQWUsQ0FDaEMsSUFBSSxxQkFBRyxDQUFDLGVBQWUsQ0FBQztZQUN0QixPQUFPLEVBQUU7Z0JBQ1AsK0JBQStCO2dCQUMvQixtQkFBbUI7YUFDcEI7WUFDRCxNQUFNLEVBQUUscUJBQUcsQ0FBQyxNQUFNLENBQUMsS0FBSztZQUN4QixTQUFTLEVBQUUsQ0FBQyxHQUFHLENBQUM7U0FDakIsQ0FBQyxDQUNILENBQUM7UUFFRixJQUFJLEtBQUssQ0FBQyxxQkFBcUIsS0FBSyxTQUFTLElBQUksS0FBSyxDQUFDLHFCQUFxQixDQUFDLElBQUksRUFBRSxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUUsQ0FBQztZQUMvRixrQkFBa0IsQ0FBQyxlQUFlLENBQ2hDLElBQUkscUJBQUcsQ0FBQyxlQUFlLENBQUM7Z0JBQ3RCLE9BQU8sRUFBRTtvQkFDUCxnQ0FBZ0M7b0JBQ2hDLGtDQUFrQztpQkFDbkM7Z0JBQ0QsTUFBTSxFQUFFLHFCQUFHLENBQUMsTUFBTSxDQUFDLEtBQUs7Z0JBQ3hCLFNBQVMsRUFBRTtvQkFDVCxzQ0FBc0M7b0JBQ3RDLDhFQUE4RTtvQkFDOUUsaUJBQUcsQ0FBQyxNQUFNLENBQUM7d0JBQ1QsU0FBUyxFQUFFLEtBQUs7d0JBQ2hCLE9BQU8sRUFBRSxTQUFTO3dCQUNsQixNQUFNLEVBQUUsRUFBRTt3QkFDVixPQUFPLEVBQUUsRUFBRTt3QkFDWCxRQUFRLEVBQUUsWUFBWTt3QkFDdEIsU0FBUyxFQUFFLHVCQUFTLENBQUMsbUJBQW1CO3dCQUN4QyxZQUFZLEVBQUUsS0FBSyxDQUFDLHFCQUFxQjtxQkFDMUMsQ0FBQztpQkFDSDthQUNGLENBQUMsQ0FDSCxDQUFDO1FBQ0osQ0FBQztRQUVELElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxFQUFFLENBQUMsUUFBUSxDQUFDLElBQUksRUFBRSxnQ0FBZ0MsRUFBRTtZQUN0RSxpQkFBaUIsRUFBRSxxQkFBcUI7WUFDeEMsYUFBYSxFQUFFLHNCQUFRLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQztZQUNsQyxZQUFZLEVBQUUsc0JBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQUUsK0NBQStDO1lBQ2hGLGNBQWMsRUFBRSxrQkFBa0I7WUFDbEMsWUFBWSxFQUFFLENBQUM7U0FDaEIsQ0FBQyxDQUFDO1FBQ0gsNEZBQTRGO1FBQzVGLG9GQUFvRjtRQUNwRiw4RkFBOEY7UUFDOUYsNEZBQTRGO1FBQzVGLDhGQUE4RjtRQUM5RixNQUFNLGdCQUFnQixHQUFHLGdDQUFnQyxDQUFDO1FBQzFELE1BQU0sVUFBVSxHQUFHLG9FQUFvRSxDQUFDO1FBRXhGLHlCQUFXLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsY0FBZSxDQUFDLENBQUMsV0FBVyxDQUFDLEVBQUUsRUFBRSxFQUFFLGdCQUFnQixFQUFFLE1BQU0sRUFBRSxVQUFVLEVBQUUsQ0FBQyxDQUFDO1FBQ3hHLHlCQUFXLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsaUJBQWtCLENBQUMsQ0FBQyxXQUFXLENBQUMsRUFBRSxFQUFFLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxFQUFFLFVBQVUsRUFBRSxDQUFDLENBQUM7SUFDN0csQ0FBQztJQUFBLENBQUM7Q0FDSCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIEFybixcbiAgQXJuRm9ybWF0LFxuICBDdXN0b21SZXNvdXJjZSxcbiAgRHVyYXRpb24sXG4gIGF3c19pYW0gYXMgaWFtLFxuICBhd3NfbGFtYmRhIGFzIGxhbWJkYSxcbiAgYXdzX3NzbSBhcyBzc20sXG4gIFN0YWNrLFxuICBWYWxpZGF0aW9ucyxcbn0gZnJvbSAnYXdzLWNkay1saWInO1xuaW1wb3J0IHsgTm9kZWpzRnVuY3Rpb24gfSBmcm9tICdhd3MtY2RrLWxpYi9hd3MtbGFtYmRhLW5vZGVqcyc7XG5pbXBvcnQgKiBhcyBjciBmcm9tICdhd3MtY2RrLWxpYi9jdXN0b20tcmVzb3VyY2VzJztcbmltcG9ydCB7IENvbnN0cnVjdCwgTm9kZSB9IGZyb20gJ2NvbnN0cnVjdHMnO1xuaW1wb3J0IHtcbiAgUFJPUF9ET01BSU4sXG4gIFBST1BfU1VCX0RPTUFJTixcbiAgUFJPUF9IT1NURURfWk9ORV9QQVJBTUVURVJfTkFNRSxcbiAgUFJPUF9SNTNfQ0hBTkdFSU5GT19JRF9QQVJBTUVURVJfTkFNRSxcbiAgUFJPUF9QQVJFTlRfSE9TVEVEX1pPTkVfSUQsXG59IGZyb20gJy4vcm9vdG1haWwtYXV0b3dpcmUtZG5zLm9uLWV2ZW50LWhhbmRsZXInO1xuXG5leHBvcnQgaW50ZXJmYWNlIFJvb3RtYWlsQXV0b3dpcmVEbnNQcm9wcyB7XG4gIC8qKlxuICAgKiBEb21haW4gdXNlZCBmb3Igcm9vdCBtYWlsIGZlYXR1cmUuXG4gICAqL1xuICByZWFkb25seSBkb21haW46IHN0cmluZztcblxuICAvKipcbiAgICogU3ViZG9tYWluIHVzZWQgZm9yIHJvb3QgbWFpbCBmZWF0dXJlLlxuICAgKlxuICAgKiBAZGVmYXVsdCAnYXdzJ1xuICAgKi9cbiAgcmVhZG9ubHkgc3ViZG9tYWluPzogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBUaGUgaG9zdGVkIHpvbmUgSUQgb2YgdGhlIGRvbWFpbiB0aGF0IGlzIHJlZ2lzdGVyZWQgUm91dGU1MyBBTkQgaW4gdGhlIHNhbWUgQVdTIGFjY291bnRcbiAgICogdG8gZW5hYmxlIGF1dG93aXJpbmcgb2YgdGhlIEROUyByZWNvcmRzLlxuICAgKlxuICAgKiBAZGVmYXVsdCB1bmRlZmluZWRcbiAgICovXG4gIHJlYWRvbmx5IHdpcmVETlNUb0hvc3RlZFpvbmVJRD86IHN0cmluZztcblxuICAvKipcbiAgICogVGhlIEhvc3RlZCBab25lIFNTTSBQYXJhbWV0ZXIgTmFtZSBmb3IgdGhlIE5TIHJlY29yZHMuXG4gICAqL1xuICByZWFkb25seSBob3N0ZWRab25lU1NNUGFyYW1ldGVyOiBzc20uU3RyaW5nTGlzdFBhcmFtZXRlcjtcblxuICAvKipcbiAgICogVGhlIHRvdGFsIHRpbWUgdG8gd2FpdCBmb3IgdGhlIEROUyByZWNvcmRzIHRvIGJlIGF2YWlsYWJsZS93aXJlZC5cbiAgICovXG4gIHJlYWRvbmx5IHRvdGFsVGltZVRvV2lyZUROUzogRHVyYXRpb247XG59XG5cbmV4cG9ydCBjbGFzcyBSb290bWFpbEF1dG93aXJlRG5zIGV4dGVuZHMgQ29uc3RydWN0IHtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogUm9vdG1haWxBdXRvd2lyZURuc1Byb3BzKSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkKTtcblxuICAgIGNvbnN0IHN1YmRvbWFpbiA9IHByb3BzLnN1YmRvbWFpbiA/PyAnYXdzJztcbiAgICBjb25zdCB3aXJlRE5TVG9Ib3N0ZWRab25lSUQgPSBwcm9wcy53aXJlRE5TVG9Ib3N0ZWRab25lSUQgPz8gdW5kZWZpbmVkO1xuICAgIGNvbnN0IGF1dG9XaXJlUjUzQ2hhbmdlSW5mb0lkUGFyYW1ldGVyTmFtZSA9ICcvcm9vdG1haWwvYXV0b193aXJlX3I1M19jaGFuZ2VpbmZvX2lkJztcblxuXG4gICAgLy8gVE9ETzogY3JlYXRlIGl0IGluIHRoZSBmdW5jdGlvbiB0byBhdm9pZCB0aGUgZHVtbXkgdmFsdWVcbiAgICBjb25zdCBhdXRvV2lyZVI1M0NoYW5nZUluZm9JZCA9IG5ldyBzc20uU3RyaW5nUGFyYW1ldGVyKHRoaXMsICdBdXRvV2lyZVI1M0NoYW5nZUluZm9JZCcsIHtcbiAgICAgIHBhcmFtZXRlck5hbWU6IGF1dG9XaXJlUjUzQ2hhbmdlSW5mb0lkUGFyYW1ldGVyTmFtZSxcbiAgICAgIHN0cmluZ1ZhbHVlOiAnZHVtbXknLFxuICAgIH0pO1xuXG4gICAgbmV3IEN1c3RvbVJlc291cmNlKHRoaXMsICdSZXNvdXJjZScsIHtcbiAgICAgIHNlcnZpY2VUb2tlbjogUm9vdG1haWxBdXRvd2lyZURuc1Byb3ZpZGVyLmdldE9yQ3JlYXRlKHRoaXMsIHtcbiAgICAgICAgYXV0b1dpcmVSNTNDaGFuZ2VJbmZvSWRQYXJhbWV0ZXI6IGF1dG9XaXJlUjUzQ2hhbmdlSW5mb0lkLFxuICAgICAgICAuLi5wcm9wcyxcbiAgICAgIH0pLFxuICAgICAgcmVzb3VyY2VUeXBlOiAnQ3VzdG9tOjpSb290bWFpbEF1dG93aXJlRG5zUHJvdmlkZXInLFxuICAgICAgcHJvcGVydGllczoge1xuICAgICAgICBbUFJPUF9ET01BSU5dOiBwcm9wcy5kb21haW4sXG4gICAgICAgIFtQUk9QX1NVQl9ET01BSU5dOiBzdWJkb21haW4sXG4gICAgICAgIFtQUk9QX1BBUkVOVF9IT1NURURfWk9ORV9JRF06IHdpcmVETlNUb0hvc3RlZFpvbmVJRCxcbiAgICAgICAgW1BST1BfSE9TVEVEX1pPTkVfUEFSQU1FVEVSX05BTUVdOiBwcm9wcy5ob3N0ZWRab25lU1NNUGFyYW1ldGVyLnBhcmFtZXRlck5hbWUsXG4gICAgICAgIFtQUk9QX1I1M19DSEFOR0VJTkZPX0lEX1BBUkFNRVRFUl9OQU1FXTogYXV0b1dpcmVSNTNDaGFuZ2VJbmZvSWQucGFyYW1ldGVyTmFtZSxcbiAgICAgIH0sXG4gICAgfSk7XG5cbiAgfVxufVxuXG5pbnRlcmZhY2UgUm9vdG1haWxBdXRvd2lyZURuc1Byb3ZpZGVyUHJvcHMgZXh0ZW5kcyBSb290bWFpbEF1dG93aXJlRG5zUHJvcHMge1xuICByZWFkb25seSBhdXRvV2lyZVI1M0NoYW5nZUluZm9JZFBhcmFtZXRlcjogc3NtLlN0cmluZ1BhcmFtZXRlcjtcbiAgcmVhZG9ubHkgd2lyZUROU1RvSG9zdGVkWm9uZUlEPzogc3RyaW5nO1xuICByZWFkb25seSB0b3RhbFRpbWVUb1dpcmVETlM6IER1cmF0aW9uO1xufVxuXG5jbGFzcyBSb290bWFpbEF1dG93aXJlRG5zUHJvdmlkZXIgZXh0ZW5kcyBDb25zdHJ1Y3Qge1xuICAvKipcbiAgICogUmV0dXJucyB0aGUgc2luZ2xldG9uIHByb3ZpZGVyLlxuICAgKi9cbiAgcHVibGljIHN0YXRpYyBnZXRPckNyZWF0ZShzY29wZTogQ29uc3RydWN0LCBwcm9wczogUm9vdG1haWxBdXRvd2lyZURuc1Byb3ZpZGVyUHJvcHMpIHtcbiAgICBjb25zdCBzdGFjayA9IFN0YWNrLm9mKHNjb3BlKTtcbiAgICBjb25zdCBpZCA9ICdyb290bWFpbC5hdXRvd2lyZS1kbnMtcHJvdmlkZXInO1xuICAgIGNvbnN0IHggPSBOb2RlLm9mKHN0YWNrKS50cnlGaW5kQ2hpbGQoaWQpIGFzIFJvb3RtYWlsQXV0b3dpcmVEbnNQcm92aWRlclxuICAgICAgfHwgbmV3IFJvb3RtYWlsQXV0b3dpcmVEbnNQcm92aWRlcihzdGFjaywgaWQsIHByb3BzKTtcbiAgICByZXR1cm4geC5wcm92aWRlci5zZXJ2aWNlVG9rZW47XG4gIH1cblxuICBwcml2YXRlIHJlYWRvbmx5IHByb3ZpZGVyOiBjci5Qcm92aWRlcjtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogUm9vdG1haWxBdXRvd2lyZURuc1Byb3ZpZGVyUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQpO1xuXG4gICAgY29uc3QgaXNDb21wbGV0ZUhhbmRsZXJGdW5jID0gbmV3IE5vZGVqc0Z1bmN0aW9uKHRoaXMsICdpcy1jb21wbGV0ZS1oYW5kbGVyJywge1xuICAgICAgcnVudGltZTogbGFtYmRhLlJ1bnRpbWUuTk9ERUpTXzI0X1gsXG4gICAgICB0aW1lb3V0OiBEdXJhdGlvbi5zZWNvbmRzKDEyMCksXG4gICAgICBsb2dSZXRlbnRpb246IDEsXG4gICAgfSk7XG5cbiAgICBpc0NvbXBsZXRlSGFuZGxlckZ1bmMuYWRkVG9Sb2xlUG9saWN5KFxuICAgICAgbmV3IGlhbS5Qb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgICBhY3Rpb25zOiBbXG4gICAgICAgICAgJ3JvdXRlNTM6TGlzdEhvc3RlZFpvbmVzQnlOYW1lJyxcbiAgICAgICAgICAncm91dGU1MzpHZXRDaGFuZ2UnLFxuICAgICAgICBdLFxuICAgICAgICBlZmZlY3Q6IGlhbS5FZmZlY3QuQUxMT1csXG4gICAgICAgIHJlc291cmNlczogWycqJ10sXG4gICAgICB9KSxcbiAgICApO1xuXG4gICAgcHJvcHMuYXV0b1dpcmVSNTNDaGFuZ2VJbmZvSWRQYXJhbWV0ZXIuZ3JhbnRSZWFkKGlzQ29tcGxldGVIYW5kbGVyRnVuYyk7XG5cbiAgICBjb25zdCBvbkV2ZW50SGFuZGxlckZ1bmMgPSBuZXcgTm9kZWpzRnVuY3Rpb24odGhpcywgJ29uLWV2ZW50LWhhbmRsZXInLCB7XG4gICAgICBydW50aW1lOiBsYW1iZGEuUnVudGltZS5OT0RFSlNfMjRfWCxcbiAgICAgIHRpbWVvdXQ6IER1cmF0aW9uLnNlY29uZHMoMTYwKSwgLy8gMm00MHNcbiAgICAgIGxvZ1JldGVudGlvbjogMSxcbiAgICAgIGVudmlyb25tZW50OiB7fSxcbiAgICB9KTtcblxuICAgIHByb3BzLmhvc3RlZFpvbmVTU01QYXJhbWV0ZXIuZ3JhbnRSZWFkKG9uRXZlbnRIYW5kbGVyRnVuYyk7XG4gICAgaWYgKHByb3BzLmF1dG9XaXJlUjUzQ2hhbmdlSW5mb0lkUGFyYW1ldGVyICE9PSB1bmRlZmluZWQpIHtcbiAgICAgIHByb3BzLmF1dG9XaXJlUjUzQ2hhbmdlSW5mb0lkUGFyYW1ldGVyLmdyYW50V3JpdGUob25FdmVudEhhbmRsZXJGdW5jKTtcbiAgICB9XG5cbiAgICBvbkV2ZW50SGFuZGxlckZ1bmMuYWRkVG9Sb2xlUG9saWN5KFxuICAgICAgbmV3IGlhbS5Qb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgICBhY3Rpb25zOiBbXG4gICAgICAgICAgJ3JvdXRlNTM6TGlzdEhvc3RlZFpvbmVzQnlOYW1lJyxcbiAgICAgICAgICAncm91dGU1MzpHZXRDaGFuZ2UnLFxuICAgICAgICBdLFxuICAgICAgICBlZmZlY3Q6IGlhbS5FZmZlY3QuQUxMT1csXG4gICAgICAgIHJlc291cmNlczogWycqJ10sXG4gICAgICB9KSxcbiAgICApO1xuXG4gICAgaWYgKHByb3BzLndpcmVETlNUb0hvc3RlZFpvbmVJRCAhPT0gdW5kZWZpbmVkICYmIHByb3BzLndpcmVETlNUb0hvc3RlZFpvbmVJRC50cmltKCkubGVuZ3RoID4gMCkge1xuICAgICAgb25FdmVudEhhbmRsZXJGdW5jLmFkZFRvUm9sZVBvbGljeShcbiAgICAgICAgbmV3IGlhbS5Qb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgICAgIGFjdGlvbnM6IFtcbiAgICAgICAgICAgICdyb3V0ZTUzOkxpc3RSZXNvdXJjZVJlY29yZFNldHMnLFxuICAgICAgICAgICAgJ3JvdXRlNTM6Q2hhbmdlUmVzb3VyY2VSZWNvcmRTZXRzJyxcbiAgICAgICAgICBdLFxuICAgICAgICAgIGVmZmVjdDogaWFtLkVmZmVjdC5BTExPVyxcbiAgICAgICAgICByZXNvdXJjZXM6IFtcbiAgICAgICAgICAgIC8vIGFybjphd3M6cm91dGU1Mzo6Omhvc3RlZHpvbmUvSDEyMzQ1XG4gICAgICAgICAgICAvLyBhcm46e3BhcnRpdGlvbn06e3NlcnZpY2V9OntyZWdpb259OnthY2NvdW50fTp7cmVzb3VyY2V9e3NlcH17cmVzb3VyY2UtbmFtZX1cbiAgICAgICAgICAgIEFybi5mb3JtYXQoe1xuICAgICAgICAgICAgICBwYXJ0aXRpb246ICdhd3MnLFxuICAgICAgICAgICAgICBzZXJ2aWNlOiAncm91dGU1MycsXG4gICAgICAgICAgICAgIHJlZ2lvbjogJycsXG4gICAgICAgICAgICAgIGFjY291bnQ6ICcnLFxuICAgICAgICAgICAgICByZXNvdXJjZTogJ2hvc3RlZHpvbmUnLFxuICAgICAgICAgICAgICBhcm5Gb3JtYXQ6IEFybkZvcm1hdC5TTEFTSF9SRVNPVVJDRV9OQU1FLFxuICAgICAgICAgICAgICByZXNvdXJjZU5hbWU6IHByb3BzLndpcmVETlNUb0hvc3RlZFpvbmVJRCxcbiAgICAgICAgICAgIH0pLFxuICAgICAgICAgIF0sXG4gICAgICAgIH0pLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICB0aGlzLnByb3ZpZGVyID0gbmV3IGNyLlByb3ZpZGVyKHRoaXMsICdyb290bWFpbC1hdXRvd2lyZS1kbnMtcHJvdmlkZXInLCB7XG4gICAgICBpc0NvbXBsZXRlSGFuZGxlcjogaXNDb21wbGV0ZUhhbmRsZXJGdW5jLFxuICAgICAgcXVlcnlJbnRlcnZhbDogRHVyYXRpb24uc2Vjb25kcyg1KSxcbiAgICAgIHRvdGFsVGltZW91dDogRHVyYXRpb24uaG91cnMoMiksIC8vIHByb3BzLnRvdGFsVGltZVRvV2lyZUROUywgVE9ETyBkb2VzIG5vdCB3b3JrXG4gICAgICBvbkV2ZW50SGFuZGxlcjogb25FdmVudEhhbmRsZXJGdW5jLFxuICAgICAgbG9nUmV0ZW50aW9uOiAxLFxuICAgIH0pO1xuICAgIC8vIEdyYW51bGFyIGZpbmRpbmdzIG9ubHkuIFBvcnRhYmxlIElEcyBvbmx5OiBSZXNvdXJjZTo6KiBpcyBjb25zdGFudCBhY3Jvc3MgYW55IGRlcGxveW1lbnQsXG4gICAgLy8gUmVzb3VyY2U6Ojxsb2dpY2FsLWlkPiBmaW5kaW5ncyBhcmUgbm90LiBBd3NTb2x1dGlvbnMtSUFNNFtQb2xpY3k6Oi4uLl0gY2Fubm90IGJlXG4gICAgLy8gYWNrbm93bGVkZ2VkIGF0IGFsbCByaWdodCBub3cgLSBhd3MtY2RrLWxpYidzIFZhbGlkYXRpb25zLmFja25vd2xlZGdlKCkgcmVqZWN0cyBhbnkgaWQgd2l0aFxuICAgIC8vIG1vcmUgdGhhbiBvbmUgJzo6JywgYW5kIEFXUyBtYW5hZ2VkIHBvbGljeSBBUk5zIGFsd2F5cyBjb250YWluIG9uZSAoY2RrbGFicy9jZGstbmFnIzIzNTksXG4gICAgLy8gIzIzNTEsIGJvdGggb3BlbiB1cHN0cmVhbSkuIFNlZSBkb2NzL3BsYW5zLzIwMjYtMDgtMDktYnVtcC1tdmMtcHJvamVuLWNkay1uYWctdjMubWQgVGFzayAzLlxuICAgIGNvbnN0IGlhbTVSZXNvdXJjZVN0YXIgPSAnQXdzU29sdXRpb25zLUlBTTVbUmVzb3VyY2U6OipdJztcbiAgICBjb25zdCByZWFzb25JYW01ID0gJ3dpbGRjYXJkcyBhcmUgb2sgZm9yIHRoZSBwcm92aWRlciBhcyB0aGUgZnVuY3Rpb24gaGFzIHJlc3RyaWN0aW9ucyc7XG5cbiAgICBWYWxpZGF0aW9ucy5vZih0aGlzLnByb3ZpZGVyLm9uRXZlbnRIYW5kbGVyISkuYWNrbm93bGVkZ2UoeyBpZDogaWFtNVJlc291cmNlU3RhciwgcmVhc29uOiByZWFzb25JYW01IH0pO1xuICAgIFZhbGlkYXRpb25zLm9mKHRoaXMucHJvdmlkZXIuaXNDb21wbGV0ZUhhbmRsZXIhKS5hY2tub3dsZWRnZSh7IGlkOiBpYW01UmVzb3VyY2VTdGFyLCByZWFzb246IHJlYXNvbklhbTUgfSk7XG4gIH07XG59Il19
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { OnEventRequest, OnEventResponse } from './custom-resource-types';
|
|
1
2
|
export declare const PROP_DOMAIN = "Domain";
|
|
2
3
|
export declare const PROP_SUB_DOMAIN = "Subdomain";
|
|
3
4
|
export declare const PROP_PARENT_HOSTED_ZONE_ID = "ParentHostedZoneId";
|
|
4
5
|
export declare const PROP_HOSTED_ZONE_PARAMETER_NAME = "HostedZoneParameterName";
|
|
5
6
|
export declare const PROP_R53_CHANGEINFO_ID_PARAMETER_NAME = "R53ChangeInfoIdParameterName";
|
|
6
|
-
export declare function handler(event:
|
|
7
|
+
export declare function handler(event: OnEventRequest): Promise<OnEventResponse>;
|
|
@@ -191,4 +191,4 @@ async function handler(event) {
|
|
|
191
191
|
function log(msg) {
|
|
192
192
|
console.log(JSON.stringify(msg));
|
|
193
193
|
}
|
|
194
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm9vdG1haWwtYXV0b3dpcmUtZG5zLm9uLWV2ZW50LWhhbmRsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvcm9vdG1haWwtYXV0b3dpcmUtZG5zLm9uLWV2ZW50LWhhbmRsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBV0EsMEJBd01DO0FBbk5ELDhEQUFtRDtBQUNuRCxvREFBMEM7QUFDN0IsUUFBQSxXQUFXLEdBQUcsUUFBUSxDQUFDO0FBQ3ZCLFFBQUEsZUFBZSxHQUFHLFdBQVcsQ0FBQztBQUM5QixRQUFBLDBCQUEwQixHQUFHLG9CQUFvQixDQUFDO0FBQ2xELFFBQUEsK0JBQStCLEdBQUcseUJBQXlCLENBQUM7QUFDNUQsUUFBQSxxQ0FBcUMsR0FBRyw4QkFBOEIsQ0FBQztBQUVwRixNQUFNLE9BQU8sR0FBRyxJQUFJLHlCQUFPLEVBQUUsQ0FBQztBQUM5QixNQUFNLEdBQUcsR0FBRyxJQUFJLGdCQUFHLEVBQUUsQ0FBQztBQUVmLEtBQUssVUFBVSxPQUFPLENBQUMsS0FBK0M7SUFDM0UsTUFBTSxNQUFNLEdBQUcsS0FBSyxDQUFDLGtCQUFrQixDQUFDLG1CQUFXLENBQUMsQ0FBQztJQUNyRCxxRUFBcUU7SUFDckUsOEJBQThCO0lBQzlCLE1BQU0sa0JBQWtCLEdBQUcsS0FBSyxDQUFDLGtCQUFrQixDQUFDLGtDQUEwQixDQUFDLENBQUM7SUFDaEYsSUFBSSxrQkFBa0IsS0FBSyxTQUFTLElBQUksa0JBQWtCLENBQUMsSUFBSSxFQUFFLENBQUMsTUFBTSxLQUFLLENBQUMsRUFBRSxDQUFDO1FBQy9FLFFBQVEsS0FBSyxDQUFDLFdBQVcsRUFBRSxDQUFDO1lBQzFCLEtBQUssUUFBUTtnQkFDWCxHQUFHLENBQUMsR0FBRyxLQUFLLENBQUMsV0FBVyxtQ0FBbUMsTUFBTSxvQ0FBb0MsS0FBSyxDQUFDLFNBQVMsRUFBRSxDQUFDLENBQUM7Z0JBQ3hILE9BQU87b0JBQ0wsa0JBQWtCLEVBQUUsS0FBSyxDQUFDLFNBQVM7aUJBQ3BDLENBQUM7WUFDSixLQUFLLFFBQVEsQ0FBQztZQUNkLEtBQUssUUFBUTtnQkFDWCxHQUFHLENBQUMsR0FBRyxLQUFLLENBQUMsV0FBVyxtQ0FBbUMsTUFBTSxvQ0FBb0MsS0FBSyxDQUFDLGtCQUFrQixFQUFFLENBQUMsQ0FBQztnQkFDakksT0FBTztvQkFDTCxrQkFBa0IsRUFBRSxLQUFLLENBQUMsa0JBQWtCO2lCQUM3QyxDQUFDO1FBQ04sQ0FBQztJQUNILENBQUM7SUFFRCxNQUFNLFNBQVMsR0FBRyxLQUFLLENBQUMsa0JBQWtCLENBQUMsdUJBQWUsQ0FBQyxDQUFDO0lBQzVELE1BQU0sdUJBQXVCLEdBQUcsS0FBSyxDQUFDLGtCQUFrQixDQUFDLHVDQUErQixDQUFDLENBQUM7SUFDMUYsTUFBTSw0QkFBNEIsR0FBRyxLQUFLLENBQUMsa0JBQWtCLENBQUMsNkNBQXFDLENBQUMsQ0FBQztJQUVyRyxRQUFRLEtBQUssQ0FBQyxXQUFXLEVBQUUsQ0FBQztRQUMxQixLQUFLLFFBQVE7WUFDWCwrREFBK0Q7WUFDL0QsTUFBTSxxQ0FBcUMsR0FBRyxNQUFNLEdBQUcsQ0FBQyxZQUFZLENBQUM7Z0JBQ25FLElBQUksRUFBRSx1QkFBdUI7YUFDOUIsQ0FBQyxDQUFDO1lBRUgsTUFBTSw2QkFBNkIsR0FBRyxxQ0FBcUMsQ0FBQyxTQUFTLEVBQUUsS0FBSyxDQUFDO1lBQzdGLEdBQUcsQ0FBQztnQkFDRixLQUFLLEVBQUUsNkJBQTZCO2dCQUNwQyxLQUFLLEVBQUUsT0FBTzthQUNmLENBQUMsQ0FBQztZQUVILElBQUksNkJBQTZCLEtBQUssU0FBUyxJQUFJLDZCQUE2QixLQUFLLEVBQUUsRUFBRSxDQUFDO2dCQUN4RixNQUFNLElBQUksS0FBSyxDQUFDLHNFQUFzRSxNQUFNLEtBQUssNkJBQTZCLEVBQUUsQ0FBQyxDQUFDO1lBQ3BJLENBQUM7WUFFRCxNQUFNLHFCQUFxQixHQUFHLDZCQUE2QixFQUFFLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQztZQUN4RSxJQUFJLHFCQUFxQixDQUFDLE1BQU0sS0FBSyxDQUFDLEVBQUUsQ0FBQztnQkFDdkMsTUFBTSxJQUFJLEtBQUssQ0FBQyxtREFBbUQsTUFBTSxTQUFTLHFCQUFxQixDQUFDLE1BQU0sS0FBSyxxQkFBcUIsRUFBRSxDQUFDLENBQUM7WUFDOUksQ0FBQztZQUVELG1FQUFtRTtZQUNuRSx5REFBeUQ7WUFDekQsTUFBTSxrQkFBa0IsR0FBRyxNQUFNLE9BQU8sQ0FBQyxxQkFBcUIsQ0FBQztnQkFDN0QsT0FBTyxFQUFFLE1BQU07YUFDaEIsQ0FBQyxDQUFDO1lBRUgsSUFBSSxrQkFBa0IsQ0FBQyxXQUFXLEtBQUssU0FBUyxJQUFJLGtCQUFrQixDQUFDLFdBQVcsRUFBRSxNQUFNLEtBQUssQ0FBQyxFQUFFLENBQUM7Z0JBQ2pHLEdBQUcsQ0FBQztvQkFDRixLQUFLLEVBQUUsa0JBQWtCO29CQUN6QixLQUFLLEVBQUUsT0FBTztpQkFDZixDQUFDLENBQUM7Z0JBRUgsTUFBTSxJQUFJLEtBQUssQ0FBQyxpREFBaUQsTUFBTSxFQUFFLENBQUMsQ0FBQztZQUM3RSxDQUFDO1lBRUQsTUFBTSxtQkFBbUIsR0FBRyxrQkFBa0IsQ0FBQyxXQUFXLEVBQUUsTUFBTSxDQUFDLENBQUMsVUFBVSxFQUFFLEVBQUU7Z0JBQ2hGLG9GQUFvRjtnQkFDcEYsT0FBTyxVQUFVLENBQUMsRUFBRSxLQUFLLGVBQWUsa0JBQWtCLEVBQUUsQ0FBQztZQUMvRCxDQUFDLENBQUMsQ0FBQztZQUVILElBQUksbUJBQW1CLENBQUMsTUFBTSxLQUFLLENBQUMsRUFBRSxDQUFDO2dCQUNyQyxHQUFHLENBQUM7b0JBQ0YsS0FBSyxFQUFFLGtCQUFrQjtvQkFDekIsS0FBSyxFQUFFLE9BQU87aUJBQ2YsQ0FBQyxDQUFDO2dCQUVILE1BQU0sSUFBSSxLQUFLLENBQUMsdURBQXVELE1BQU0sU0FBUyxtQkFBbUIsQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDO1lBQ3RILENBQUM7WUFFRCwwREFBMEQ7WUFFMUQsbUNBQW1DO1lBQ25DLE1BQU0sOEJBQThCLEdBQUcsTUFBTSxPQUFPLENBQUMsc0JBQXNCLENBQUM7Z0JBQzFFLDhDQUE4QztnQkFDOUMsWUFBWSxFQUFFLGtCQUFrQixDQUFDLE9BQU8sQ0FBQyxjQUFjLEVBQUUsRUFBRSxDQUFDO2FBQzdELENBQUMsQ0FBQztZQUVILElBQUksOEJBQThCLENBQUMsa0JBQWtCLEtBQUssU0FBUyxFQUFFLENBQUM7Z0JBQ3BFLEdBQUcsQ0FBQztvQkFDRixLQUFLLEVBQUUsOEJBQThCO29CQUNyQyxLQUFLLEVBQUUsT0FBTztpQkFDZixDQUFDLENBQUM7Z0JBRUgsTUFBTSxJQUFJLEtBQUssQ0FBQyx5REFBeUQsTUFBTSxFQUFFLENBQUMsQ0FBQztZQUNyRixDQUFDO1lBRUQsTUFBTSxtQkFBbUIsR0FBRyw4QkFBOEIsQ0FBQyxrQkFBa0IsRUFBRSxJQUFJLENBQUMsQ0FBQyxTQUFTLEVBQUUsRUFBRTtnQkFDaEcsZ0RBQWdEO2dCQUNoRCxPQUFPLFNBQVMsQ0FBQyxJQUFJLEtBQUssR0FBRyxTQUFTLElBQUksTUFBTSxHQUFHLElBQUksU0FBUyxDQUFDLElBQUksS0FBSyxJQUFJLENBQUM7WUFDakYsQ0FBQyxDQUFDLENBQUM7WUFFSCxJQUFJLG1CQUFtQixLQUFLLFNBQVMsRUFBRSxDQUFDO2dCQUN0QyxHQUFHLENBQUM7b0JBQ0YsS0FBSyxFQUFFLG1CQUFtQjtvQkFDMUIsS0FBSyxFQUFFLE9BQU87aUJBQ2YsQ0FBQyxDQUFDO2dCQUVILEdBQUcsQ0FBQyx1QkFBdUIsU0FBUyxJQUFJLE1BQU0seUNBQXlDLENBQUMsQ0FBQztnQkFDekYsT0FBTztvQkFDTCxrQkFBa0IsRUFBRSxLQUFLLENBQUMsU0FBUztpQkFDcEMsQ0FBQztZQUNKLENBQUM7WUFFRCxHQUFHLENBQUMsdUJBQXVCLFNBQVMsSUFBSSxNQUFNLHlDQUF5QyxDQUFDLENBQUM7WUFDekYsdUZBQXVGO1lBQ3ZGLE1BQU0seUJBQXlCLEdBQUcsTUFBTSxPQUFPLENBQUMsd0JBQXdCLENBQUM7Z0JBQ3ZFLFlBQVksRUFBRSxrQkFBa0I7Z0JBQ2hDLFdBQVcsRUFBRTtvQkFDWCxPQUFPLEVBQUUsdUJBQXVCO29CQUNoQyxPQUFPLEVBQUU7d0JBQ1A7NEJBQ0UsTUFBTSxFQUFFLFFBQVE7NEJBQ2hCLGlCQUFpQixFQUFFO2dDQUNqQixJQUFJLEVBQUUsR0FBRyxTQUFTLElBQUksTUFBTSxFQUFFO2dDQUM5QixJQUFJLEVBQUUsSUFBSTtnQ0FDVixHQUFHLEVBQUUsRUFBRTtnQ0FDUCxlQUFlLEVBQUU7b0NBQ2YsRUFBRSxLQUFLLEVBQUUscUJBQXFCLENBQUMsQ0FBQyxDQUFDLEVBQUU7b0NBQ25DLEVBQUUsS0FBSyxFQUFFLHFCQUFxQixDQUFDLENBQUMsQ0FBQyxFQUFFO29DQUNuQyxFQUFFLEtBQUssRUFBRSxxQkFBcUIsQ0FBQyxDQUFDLENBQUMsRUFBRTtvQ0FDbkMsRUFBRSxLQUFLLEVBQUUscUJBQXFCLENBQUMsQ0FBQyxDQUFDLEVBQUU7aUNBQ3BDOzZCQUNGO3lCQUNGO3FCQUNGO2lCQUNGO2FBQ0YsQ0FBQyxDQUFDO1lBRUgsMkZBQTJGO1lBQzNGLE1BQU0sR0FBRyxDQUFDLFlBQVksQ0FBQztnQkFDckIsSUFBSSxFQUFFLDRCQUE0QjtnQkFDbEMsS0FBSyxFQUFFLHlCQUF5QixDQUFDLFVBQVcsQ0FBQyxFQUFFO2dCQUMvQyxTQUFTLEVBQUUsSUFBSTthQUNoQixDQUFDLENBQUM7WUFFSCxPQUFPO2dCQUNMLGtCQUFrQixFQUFFLEtBQUssQ0FBQyxTQUFTO2FBQ3BDLENBQUM7UUFDSixLQUFLLFFBQVE7WUFDWCxHQUFHLENBQUMsMkNBQTJDLFNBQVMsSUFBSSxNQUFNLEdBQUcsQ0FBQyxDQUFDO1lBQ3ZFLE9BQU87Z0JBQ0wsa0JBQWtCLEVBQUUsS0FBSyxDQUFDLGtCQUFrQjthQUM3QyxDQUFDO1FBQ0osS0FBSyxRQUFRO1lBQ1gsR0FBRyxDQUFDLGdDQUFnQyxTQUFTLElBQUksTUFBTSxnQ0FBZ0Msa0JBQWtCLEVBQUUsQ0FBQyxDQUFDO1lBQzdHLE1BQU0sVUFBVSxHQUFHLEdBQUcsU0FBUyxJQUFJLE1BQU0sRUFBRSxDQUFDO1lBRTVDLElBQUksQ0FBQztnQkFDSCxJQUFJLGNBQWtDLENBQUM7Z0JBQ3ZDLElBQUksZUFBZSxHQUFHLEtBQUssQ0FBQztnQkFDNUIsR0FBRyxDQUFDO29CQUNGLE1BQU0sZUFBZSxHQUFHLE1BQU0sT0FBTyxDQUFDLHNCQUFzQixDQUFDO3dCQUMzRCxZQUFZLEVBQUUsa0JBQWtCO3dCQUNoQyxlQUFlLEVBQUUsY0FBYztxQkFDaEMsQ0FBQyxDQUFDO29CQUVILEtBQUssTUFBTSxTQUFTLElBQUksZUFBZSxDQUFDLGtCQUFrQixJQUFJLEVBQUUsRUFBRSxDQUFDO3dCQUNqRSxnREFBZ0Q7d0JBQ2hELElBQUksU0FBUyxDQUFDLElBQUksS0FBSyxHQUFHLFVBQVUsR0FBRyxJQUFJLFNBQVMsQ0FBQyxJQUFJLEtBQUssSUFBSSxFQUFFLENBQUM7NEJBQ25FLE9BQU8sQ0FBQyxHQUFHLENBQUMsb0JBQW9CLFNBQVMsQ0FBQyxJQUFJLElBQUksU0FBUyxDQUFDLElBQUksRUFBRSxDQUFDLENBQUM7NEJBQ3BFLE1BQU0sT0FBTyxDQUFDLHdCQUF3QixDQUFDO2dDQUNyQyxZQUFZLEVBQUUsa0JBQWtCO2dDQUNoQyxXQUFXLEVBQUU7b0NBQ1gsT0FBTyxFQUFFO3dDQUNQOzRDQUNFLE1BQU0sRUFBRSxRQUFROzRDQUNoQixpQkFBaUIsRUFBRSxTQUFTO3lDQUM3QjtxQ0FDRjtpQ0FDRjs2QkFDRixDQUFDLENBQUM7NEJBQ0gsT0FBTyxDQUFDLEdBQUcsQ0FBQyxtQkFBbUIsU0FBUyxDQUFDLElBQUksSUFBSSxTQUFTLENBQUMsSUFBSSxrQkFBa0IsQ0FBQyxDQUFDOzRCQUNuRixlQUFlLEdBQUcsSUFBSSxDQUFDOzRCQUN2QiwrRUFBK0U7NEJBQy9FLE1BQU07d0JBQ1IsQ0FBQztvQkFDSCxDQUFDO29CQUVELGNBQWMsR0FBRyxlQUFlLENBQUMsY0FBYyxDQUFDO29CQUNoRCxJQUFJLGVBQWUsRUFBRSxDQUFDO3dCQUNwQixPQUFPLENBQUMsR0FBRyxDQUFDLG1CQUFtQixVQUFVLHVCQUF1QixDQUFDLENBQUM7d0JBQ2xFLE1BQU07b0JBQ1IsQ0FBQztnQkFDSCxDQUFDLFFBQVEsY0FBYyxFQUFFO1lBQzNCLENBQUM7WUFBQyxPQUFPLEdBQUcsRUFBRSxDQUFDO2dCQUNiLE9BQU8sQ0FBQyxHQUFHLENBQUMsMkJBQTJCLEdBQUcsRUFBRSxDQUFDLENBQUM7Z0JBQzlDLE1BQU0sR0FBRyxDQUFDO1lBQ1osQ0FBQztZQUVELE9BQU87Z0JBQ0wsa0JBQWtCLEVBQUUsS0FBSyxDQUFDLGtCQUFrQjthQUM3QyxDQUFDO0lBQ04sQ0FBQztBQUNILENBQUM7QUFFRCxTQUFTLEdBQUcsQ0FBQyxHQUFRO0lBQ25CLE9BQU8sQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO0FBQ25DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBSb3V0ZTUzIH0gZnJvbSAnQGF3cy1zZGsvY2xpZW50LXJvdXRlLTUzJztcbmltcG9ydCB7IFNTTSB9IGZyb20gJ0Bhd3Mtc2RrL2NsaWVudC1zc20nO1xuZXhwb3J0IGNvbnN0IFBST1BfRE9NQUlOID0gJ0RvbWFpbic7XG5leHBvcnQgY29uc3QgUFJPUF9TVUJfRE9NQUlOID0gJ1N1YmRvbWFpbic7XG5leHBvcnQgY29uc3QgUFJPUF9QQVJFTlRfSE9TVEVEX1pPTkVfSUQgPSAnUGFyZW50SG9zdGVkWm9uZUlkJztcbmV4cG9ydCBjb25zdCBQUk9QX0hPU1RFRF9aT05FX1BBUkFNRVRFUl9OQU1FID0gJ0hvc3RlZFpvbmVQYXJhbWV0ZXJOYW1lJztcbmV4cG9ydCBjb25zdCBQUk9QX1I1M19DSEFOR0VJTkZPX0lEX1BBUkFNRVRFUl9OQU1FID0gJ1I1M0NoYW5nZUluZm9JZFBhcmFtZXRlck5hbWUnO1xuXG5jb25zdCByb3V0ZTUzID0gbmV3IFJvdXRlNTMoKTtcbmNvbnN0IHNzbSA9IG5ldyBTU00oKTtcblxuZXhwb3J0IGFzeW5jIGZ1bmN0aW9uIGhhbmRsZXIoZXZlbnQ6IEFXU0NES0FzeW5jQ3VzdG9tUmVzb3VyY2UuT25FdmVudFJlcXVlc3QpOiBQcm9taXNlPEFXU0NES0FzeW5jQ3VzdG9tUmVzb3VyY2UuT25FdmVudFJlc3BvbnNlPiB7XG4gIGNvbnN0IGRvbWFpbiA9IGV2ZW50LlJlc291cmNlUHJvcGVydGllc1tQUk9QX0RPTUFJTl07XG4gIC8vIE5PVEU6IHRoaXMgaGFzIHRvIGhhcHBlbiBoZXJlIGFzIGlmIHdlIGRvIHRoaXMgYXJvdW5kIHRoZSB3aG9sZSBDUlxuICAvLyBpdCBpcyBub3Qgc3l0aGVzaXplZCBhdCBhbGxcbiAgY29uc3QgcGFyZW50SG9zdGVkWm9uZUlkID0gZXZlbnQuUmVzb3VyY2VQcm9wZXJ0aWVzW1BST1BfUEFSRU5UX0hPU1RFRF9aT05FX0lEXTtcbiAgaWYgKHBhcmVudEhvc3RlZFpvbmVJZCA9PT0gdW5kZWZpbmVkIHx8IHBhcmVudEhvc3RlZFpvbmVJZC50cmltKCkubGVuZ3RoID09PSAwKSB7XG4gICAgc3dpdGNoIChldmVudC5SZXF1ZXN0VHlwZSkge1xuICAgICAgY2FzZSAnQ3JlYXRlJzpcbiAgICAgICAgbG9nKGAke2V2ZW50LlJlcXVlc3RUeXBlfTogQXV0b3dpcmUgRE5TIGlzIGRpc2FibGVkIGZvciAnJHtkb21haW59Jy4gU2tpcHBpbmcuIFBoeXNpY2FsUmVzb3VyY2VJZDogJHtldmVudC5SZXF1ZXN0SWR9YCk7XG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgUGh5c2ljYWxSZXNvdXJjZUlkOiBldmVudC5SZXF1ZXN0SWQsXG4gICAgICAgIH07XG4gICAgICBjYXNlICdVcGRhdGUnOlxuICAgICAgY2FzZSAnRGVsZXRlJzpcbiAgICAgICAgbG9nKGAke2V2ZW50LlJlcXVlc3RUeXBlfTogQXV0b3dpcmUgRE5TIGlzIGRpc2FibGVkIGZvciAnJHtkb21haW59Jy4gU2tpcHBpbmcuIFBoeXNpY2FsUmVzb3VyY2VJZDogJHtldmVudC5QaHlzaWNhbFJlc291cmNlSWR9YCk7XG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgUGh5c2ljYWxSZXNvdXJjZUlkOiBldmVudC5QaHlzaWNhbFJlc291cmNlSWQsXG4gICAgICAgIH07XG4gICAgfVxuICB9XG5cbiAgY29uc3Qgc3ViZG9tYWluID0gZXZlbnQuUmVzb3VyY2VQcm9wZXJ0aWVzW1BST1BfU1VCX0RPTUFJTl07XG4gIGNvbnN0IGhvc3RlZFpvbmVQYXJhbWV0ZXJOYW1lID0gZXZlbnQuUmVzb3VyY2VQcm9wZXJ0aWVzW1BST1BfSE9TVEVEX1pPTkVfUEFSQU1FVEVSX05BTUVdO1xuICBjb25zdCByNTNDaGFuZ2VJbmZvSWRQYXJhbWV0ZXJOYW1lID0gZXZlbnQuUmVzb3VyY2VQcm9wZXJ0aWVzW1BST1BfUjUzX0NIQU5HRUlORk9fSURfUEFSQU1FVEVSX05BTUVdO1xuXG4gIHN3aXRjaCAoZXZlbnQuUmVxdWVzdFR5cGUpIHtcbiAgICBjYXNlICdDcmVhdGUnOlxuICAgICAgLy8gMTogY2hlY2sgaWYgdGhlIHN1YmRvbWFpbiB3YXMgY3JlYXRlZCBhbmQgZ2V0IGl0cyBOUyByZWNvcmRzXG4gICAgICBjb25zdCBob3N0ZWRab25lTmFtZVNlcnZlclBhcmFtZXRlclJlc3BvbnNlID0gYXdhaXQgc3NtLmdldFBhcmFtZXRlcih7XG4gICAgICAgIE5hbWU6IGhvc3RlZFpvbmVQYXJhbWV0ZXJOYW1lLFxuICAgICAgfSk7XG5cbiAgICAgIGNvbnN0IGhvc3RlZFpvbmVOYW1lU2VydmVyc0FzU3RyaW5nID0gaG9zdGVkWm9uZU5hbWVTZXJ2ZXJQYXJhbWV0ZXJSZXNwb25zZS5QYXJhbWV0ZXI/LlZhbHVlO1xuICAgICAgbG9nKHtcbiAgICAgICAgZXZlbnQ6IGhvc3RlZFpvbmVOYW1lU2VydmVyc0FzU3RyaW5nLFxuICAgICAgICBsZXZlbDogJ2RlYnVnJyxcbiAgICAgIH0pO1xuXG4gICAgICBpZiAoaG9zdGVkWm9uZU5hbWVTZXJ2ZXJzQXNTdHJpbmcgPT09IHVuZGVmaW5lZCB8fCBob3N0ZWRab25lTmFtZVNlcnZlcnNBc1N0cmluZyA9PT0gJycpIHtcbiAgICAgICAgdGhyb3cgbmV3IEVycm9yKGBob3N0ZWQgem9uZSBuYW1lIHNlcnZlcnMgbm90IGZvdW5kIG9yIGVtcHR5IGluIHBhcmFtZXRlciBzdG9yZSBmb3IgJHtkb21haW59OiAke2hvc3RlZFpvbmVOYW1lU2VydmVyc0FzU3RyaW5nfWApO1xuICAgICAgfVxuXG4gICAgICBjb25zdCBob3N0ZWRab25lTmFtZVNlcnZlcnMgPSBob3N0ZWRab25lTmFtZVNlcnZlcnNBc1N0cmluZz8uc3BsaXQoJywnKTtcbiAgICAgIGlmIChob3N0ZWRab25lTmFtZVNlcnZlcnMubGVuZ3RoICE9PSA0KSB7XG4gICAgICAgIHRocm93IG5ldyBFcnJvcihgZXhwZWN0ZWQgZXhhY3RseSA0IGhvc3RlZCB6b25lIG5hbWUgc2VydmVycyBmb3IgJHtkb21haW59LiBHb3QgJHtob3N0ZWRab25lTmFtZVNlcnZlcnMubGVuZ3RofTogJHtob3N0ZWRab25lTmFtZVNlcnZlcnN9YCk7XG4gICAgICB9XG5cbiAgICAgIC8vIDI6IGNoZWNrIGlmIHRoZSBkb21haW4gaGFzIGEgaG9zdGVkIHpvbmUgaW4gdGhlIHNhbWUgQVdTIEFjY291bnRcbiAgICAgIC8vIHdoaWNoIGlzIGEgcHJlcmVxdWlzaXRlIGZvciBhdXRvd2lyaW5nIHRoZSBETlMgcmVjb3Jkc1xuICAgICAgY29uc3QgaG9zdGVkWm9uZVJlc3BvbnNlID0gYXdhaXQgcm91dGU1My5saXN0SG9zdGVkWm9uZXNCeU5hbWUoe1xuICAgICAgICBETlNOYW1lOiBkb21haW4sXG4gICAgICB9KTtcblxuICAgICAgaWYgKGhvc3RlZFpvbmVSZXNwb25zZS5Ib3N0ZWRab25lcyA9PT0gdW5kZWZpbmVkIHx8IGhvc3RlZFpvbmVSZXNwb25zZS5Ib3N0ZWRab25lcz8ubGVuZ3RoID09PSAwKSB7XG4gICAgICAgIGxvZyh7XG4gICAgICAgICAgZXZlbnQ6IGhvc3RlZFpvbmVSZXNwb25zZSxcbiAgICAgICAgICBsZXZlbDogJ2RlYnVnJyxcbiAgICAgICAgfSk7XG5cbiAgICAgICAgdGhyb3cgbmV3IEVycm9yKGBleHBlY3RlZCB0byBmaW5kIGF0IGxlYXN0IG9uZSBob3N0ZWQgem9uZSBmb3IgJHtkb21haW59YCk7XG4gICAgICB9XG5cbiAgICAgIGNvbnN0IGZpbHRlcmVkSG9zdGVkWm9uZXMgPSBob3N0ZWRab25lUmVzcG9uc2UuSG9zdGVkWm9uZXM/LmZpbHRlcigoaG9zdGVkWm9uZSkgPT4ge1xuICAgICAgICAvLyB0aGUgcmVzcG9uc2UgcHJlZml4IGlzIC9ob3N0ZWR6b25lLyBidXQgdGhlIGlucHV0IHBhcmFtZXRlciBpcyB3aXRob3V0IHRoZSBwcmVmaXhcbiAgICAgICAgcmV0dXJuIGhvc3RlZFpvbmUuSWQgPT09IGAvaG9zdGVkem9uZS8ke3BhcmVudEhvc3RlZFpvbmVJZH1gO1xuICAgICAgfSk7XG5cbiAgICAgIGlmIChmaWx0ZXJlZEhvc3RlZFpvbmVzLmxlbmd0aCAhPT0gMSkge1xuICAgICAgICBsb2coe1xuICAgICAgICAgIGV2ZW50OiBob3N0ZWRab25lUmVzcG9uc2UsXG4gICAgICAgICAgbGV2ZWw6ICdkZWJ1ZycsXG4gICAgICAgIH0pO1xuXG4gICAgICAgIHRocm93IG5ldyBFcnJvcihgZXhwZWN0ZWQgdG8gZmluZCAmIGZpbHRlciBleGFjdGx5IDEgaG9zdGVkIHpvbmUgZm9yICR7ZG9tYWlufS4gR290ICR7ZmlsdGVyZWRIb3N0ZWRab25lcy5sZW5ndGh9YCk7XG4gICAgICB9XG5cbiAgICAgIC8vIDM6IG5vdyB3ZSBjb250aW51ZSB3aXRoIHRoZSBnaXZlbiBwYXJlbnQgaG9zdGVkIHpvbmUgSURcblxuICAgICAgLy8gaXRlcmF0ZSBvdmVyIGhvc3RlZCB6b25lIHJlY29yZHNcbiAgICAgIGNvbnN0IGxpc3RSZXNvdXJjZVJlY29yZFNldHNSZXNwb25zZSA9IGF3YWl0IHJvdXRlNTMubGlzdFJlc291cmNlUmVjb3JkU2V0cyh7XG4gICAgICAgIC8vIHJlbW92ZSB0aGUgcHJlZml4IGZvciB1c2luZyBpdCBhcyBwYXJhbWV0ZXJcbiAgICAgICAgSG9zdGVkWm9uZUlkOiBwYXJlbnRIb3N0ZWRab25lSWQucmVwbGFjZSgnL2hvc3RlZHpvbmUvJywgJycpLFxuICAgICAgfSk7XG5cbiAgICAgIGlmIChsaXN0UmVzb3VyY2VSZWNvcmRTZXRzUmVzcG9uc2UuUmVzb3VyY2VSZWNvcmRTZXRzID09PSB1bmRlZmluZWQpIHtcbiAgICAgICAgbG9nKHtcbiAgICAgICAgICBldmVudDogbGlzdFJlc291cmNlUmVjb3JkU2V0c1Jlc3BvbnNlLFxuICAgICAgICAgIGxldmVsOiAnZGVidWcnLFxuICAgICAgICB9KTtcblxuICAgICAgICB0aHJvdyBuZXcgRXJyb3IoYGV4cGVjdGVkIHRvIGZpbmQgYXQgbGVhc3Qgb25lIHJlc291cmNlIHJlY29yZCBzZXQgZm9yICR7ZG9tYWlufWApO1xuICAgICAgfVxuXG4gICAgICBjb25zdCBleGlzdGluZ05TUmVjb3JkU2V0ID0gbGlzdFJlc291cmNlUmVjb3JkU2V0c1Jlc3BvbnNlLlJlc291cmNlUmVjb3JkU2V0cz8uZmluZCgocmVjb3JkU2V0KSA9PiB7XG4gICAgICAgIC8vIE5vdGUgdGhlIHRyYWlubGluZyBkb3QgaW4gdGhlIG5hbWUgYXQgdGhlIGVuZFxuICAgICAgICByZXR1cm4gcmVjb3JkU2V0Lk5hbWUgPT09IGAke3N1YmRvbWFpbn0uJHtkb21haW59LmAgJiYgcmVjb3JkU2V0LlR5cGUgPT09ICdOUyc7XG4gICAgICB9KTtcblxuICAgICAgaWYgKGV4aXN0aW5nTlNSZWNvcmRTZXQgIT09IHVuZGVmaW5lZCkge1xuICAgICAgICBsb2coe1xuICAgICAgICAgIGV2ZW50OiBleGlzdGluZ05TUmVjb3JkU2V0LFxuICAgICAgICAgIGxldmVsOiAnZGVidWcnLFxuICAgICAgICB9KTtcblxuICAgICAgICBsb2coYE5TIHJlY29yZCBmb3IgTmFtZSAnJHtzdWJkb21haW59LiR7ZG9tYWlufScgYW5kIHR5cGUgTlMgYWxyZWFkeSBleGlzdHMuIFNraXBwaW5nLmApO1xuICAgICAgICByZXR1cm4ge1xuICAgICAgICAgIFBoeXNpY2FsUmVzb3VyY2VJZDogZXZlbnQuUmVxdWVzdElkLFxuICAgICAgICB9O1xuICAgICAgfVxuXG4gICAgICBsb2coYE5TIHJlY29yZCBmb3IgTmFtZSAnJHtzdWJkb21haW59LiR7ZG9tYWlufScgYW5kIHR5cGUgTlMgZG9lcyBub3QgZXhpc3QuIENyZWF0aW5nLmApO1xuICAgICAgLy8gaW4gdGhlIEhaIG9mIHRoZSBkb21haW4gKHBhcmVudEhvc3RlZFpvbmUpIHdlIGNyZWF0ZSB0aGUgTlMgcmVjb3JkIGZvciB0aGUgc3ViZG9tYWluXG4gICAgICBjb25zdCByZWNvcmRTZXRDcmVhdGlvblJlc3BvbnNlID0gYXdhaXQgcm91dGU1My5jaGFuZ2VSZXNvdXJjZVJlY29yZFNldHMoe1xuICAgICAgICBIb3N0ZWRab25lSWQ6IHBhcmVudEhvc3RlZFpvbmVJZCxcbiAgICAgICAgQ2hhbmdlQmF0Y2g6IHtcbiAgICAgICAgICBDb21tZW50OiAncm9vdG1haWwtYXV0b3dpcmUtZG5zJyxcbiAgICAgICAgICBDaGFuZ2VzOiBbXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgIEFjdGlvbjogJ0NSRUFURScsXG4gICAgICAgICAgICAgIFJlc291cmNlUmVjb3JkU2V0OiB7XG4gICAgICAgICAgICAgICAgTmFtZTogYCR7c3ViZG9tYWlufS4ke2RvbWFpbn1gLFxuICAgICAgICAgICAgICAgIFR5cGU6ICdOUycsXG4gICAgICAgICAgICAgICAgVFRMOiA2MCxcbiAgICAgICAgICAgICAgICBSZXNvdXJjZVJlY29yZHM6IFsgLy8gYXJlIGFsd2F5cyA0XG4gICAgICAgICAgICAgICAgICB7IFZhbHVlOiBob3N0ZWRab25lTmFtZVNlcnZlcnNbMF0gfSxcbiAgICAgICAgICAgICAgICAgIHsgVmFsdWU6IGhvc3RlZFpvbmVOYW1lU2VydmVyc1sxXSB9LFxuICAgICAgICAgICAgICAgICAgeyBWYWx1ZTogaG9zdGVkWm9uZU5hbWVTZXJ2ZXJzWzJdIH0sXG4gICAgICAgICAgICAgICAgICB7IFZhbHVlOiBob3N0ZWRab25lTmFtZVNlcnZlcnNbM10gfSxcbiAgICAgICAgICAgICAgICBdLFxuICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICBdLFxuICAgICAgICB9LFxuICAgICAgfSk7XG5cbiAgICAgIC8vIHdlIGFkZCB0aGUgY2hhbmdlIGluZm8gaWQgdG8gdGhlIHBhcmFtZXRlciBzdG9yZSBzbyB3ZSB1c2UgaXQgaW4gdGhlIGlzLWNvbXBsZXRlLWhhbmRsZXJcbiAgICAgIGF3YWl0IHNzbS5wdXRQYXJhbWV0ZXIoe1xuICAgICAgICBOYW1lOiByNTNDaGFuZ2VJbmZvSWRQYXJhbWV0ZXJOYW1lLFxuICAgICAgICBWYWx1ZTogcmVjb3JkU2V0Q3JlYXRpb25SZXNwb25zZS5DaGFuZ2VJbmZvIS5JZCxcbiAgICAgICAgT3ZlcndyaXRlOiB0cnVlLFxuICAgICAgfSk7XG5cbiAgICAgIHJldHVybiB7XG4gICAgICAgIFBoeXNpY2FsUmVzb3VyY2VJZDogZXZlbnQuUmVxdWVzdElkLFxuICAgICAgfTtcbiAgICBjYXNlICdVcGRhdGUnOlxuICAgICAgbG9nKGBTa2lwcGluZyB1cGRhdGUgZm9yIE5TIHJlY29yZCBmb3IgTmFtZSAnJHtzdWJkb21haW59LiR7ZG9tYWlufSdgKTtcbiAgICAgIHJldHVybiB7XG4gICAgICAgIFBoeXNpY2FsUmVzb3VyY2VJZDogZXZlbnQuUGh5c2ljYWxSZXNvdXJjZUlkLFxuICAgICAgfTtcbiAgICBjYXNlICdEZWxldGUnOlxuICAgICAgbG9nKGBEZWxldGluZyBOUyByZWNvcmQgZm9yIE5hbWUgJyR7c3ViZG9tYWlufS4ke2RvbWFpbn0nIGluIHRoZSBob3N0ZWQgem9uZSB3aXRoIElEICR7cGFyZW50SG9zdGVkWm9uZUlkfWApO1xuICAgICAgY29uc3QgcmVjb3JkTmFtZSA9IGAke3N1YmRvbWFpbn0uJHtkb21haW59YDtcblxuICAgICAgdHJ5IHtcbiAgICAgICAgbGV0IG5leHRSZWNvcmROYW1lOiBzdHJpbmcgfCB1bmRlZmluZWQ7XG4gICAgICAgIGxldCBpc1JlY29yZERlbGV0ZWQgPSBmYWxzZTtcbiAgICAgICAgZG8ge1xuICAgICAgICAgIGNvbnN0IHJlY29yZHNSZXNwb25zZSA9IGF3YWl0IHJvdXRlNTMubGlzdFJlc291cmNlUmVjb3JkU2V0cyh7XG4gICAgICAgICAgICBIb3N0ZWRab25lSWQ6IHBhcmVudEhvc3RlZFpvbmVJZCxcbiAgICAgICAgICAgIFN0YXJ0UmVjb3JkTmFtZTogbmV4dFJlY29yZE5hbWUsXG4gICAgICAgICAgfSk7XG5cbiAgICAgICAgICBmb3IgKGNvbnN0IHJlY29yZFNldCBvZiByZWNvcmRzUmVzcG9uc2UuUmVzb3VyY2VSZWNvcmRTZXRzIHx8IFtdKSB7XG4gICAgICAgICAgICAvLyBOb3RlIHRoZSB0cmFpbmxpbmcgZG90IGluIHRoZSBuYW1lIGF0IHRoZSBlbmRcbiAgICAgICAgICAgIGlmIChyZWNvcmRTZXQuTmFtZSA9PT0gYCR7cmVjb3JkTmFtZX0uYCAmJiByZWNvcmRTZXQuVHlwZSA9PT0gJ05TJykge1xuICAgICAgICAgICAgICBjb25zb2xlLmxvZyhgRGVsZXRpbmcgcmVjb3JkOiAke3JlY29yZFNldC5OYW1lfSAke3JlY29yZFNldC5UeXBlfWApO1xuICAgICAgICAgICAgICBhd2FpdCByb3V0ZTUzLmNoYW5nZVJlc291cmNlUmVjb3JkU2V0cyh7XG4gICAgICAgICAgICAgICAgSG9zdGVkWm9uZUlkOiBwYXJlbnRIb3N0ZWRab25lSWQsXG4gICAgICAgICAgICAgICAgQ2hhbmdlQmF0Y2g6IHtcbiAgICAgICAgICAgICAgICAgIENoYW5nZXM6IFtcbiAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgIEFjdGlvbjogJ0RFTEVURScsXG4gICAgICAgICAgICAgICAgICAgICAgUmVzb3VyY2VSZWNvcmRTZXQ6IHJlY29yZFNldCxcbiAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgfSk7XG4gICAgICAgICAgICAgIGNvbnNvbGUubG9nKGBEZWxldGVkIHJlY29yZDogJHtyZWNvcmRTZXQuTmFtZX0gJHtyZWNvcmRTZXQuVHlwZX0uIFN0b3BwaW5nIGhlcmUuYCk7XG4gICAgICAgICAgICAgIGlzUmVjb3JkRGVsZXRlZCA9IHRydWU7XG4gICAgICAgICAgICAgIC8vIHdlIGV4aXQgaGVyZSBhcyB0aGVyZSBzaG91bGQgYmUgb25seSBvbmUgcmVjb3JkIHdpdGggdGhlIGdpdmVuIG5hbWUgYW5kIHR5cGVcbiAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICB9XG4gICAgICAgICAgfVxuXG4gICAgICAgICAgbmV4dFJlY29yZE5hbWUgPSByZWNvcmRzUmVzcG9uc2UuTmV4dFJlY29yZE5hbWU7XG4gICAgICAgICAgaWYgKGlzUmVjb3JkRGVsZXRlZCkge1xuICAgICAgICAgICAgY29uc29sZS5sb2coYFJlY29yZCBkZWxldGVkOiAke3JlY29yZE5hbWV9IHR5cGUgJ05TJy4gUXVpdHRpbmcuYCk7XG4gICAgICAgICAgICBicmVhaztcbiAgICAgICAgICB9XG4gICAgICAgIH0gd2hpbGUgKG5leHRSZWNvcmROYW1lKTtcbiAgICAgIH0gY2F0Y2ggKGVycikge1xuICAgICAgICBjb25zb2xlLmxvZyhgRXJyb3IgZGVsZXRpbmcgcmVjb3JkczogJHtlcnJ9YCk7XG4gICAgICAgIHRocm93IGVycjtcbiAgICAgIH1cblxuICAgICAgcmV0dXJuIHtcbiAgICAgICAgUGh5c2ljYWxSZXNvdXJjZUlkOiBldmVudC5QaHlzaWNhbFJlc291cmNlSWQsXG4gICAgICB9O1xuICB9XG59XG5cbmZ1bmN0aW9uIGxvZyhtc2c6IGFueSkge1xuICBjb25zb2xlLmxvZyhKU09OLnN0cmluZ2lmeShtc2cpKTtcbn1cbiJdfQ==
|
|
194
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm9vdG1haWwtYXV0b3dpcmUtZG5zLm9uLWV2ZW50LWhhbmRsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvcm9vdG1haWwtYXV0b3dpcmUtZG5zLm9uLWV2ZW50LWhhbmRsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBWUEsMEJBd01DO0FBcE5ELDhEQUFtRDtBQUNuRCxvREFBMEM7QUFFN0IsUUFBQSxXQUFXLEdBQUcsUUFBUSxDQUFDO0FBQ3ZCLFFBQUEsZUFBZSxHQUFHLFdBQVcsQ0FBQztBQUM5QixRQUFBLDBCQUEwQixHQUFHLG9CQUFvQixDQUFDO0FBQ2xELFFBQUEsK0JBQStCLEdBQUcseUJBQXlCLENBQUM7QUFDNUQsUUFBQSxxQ0FBcUMsR0FBRyw4QkFBOEIsQ0FBQztBQUVwRixNQUFNLE9BQU8sR0FBRyxJQUFJLHlCQUFPLEVBQUUsQ0FBQztBQUM5QixNQUFNLEdBQUcsR0FBRyxJQUFJLGdCQUFHLEVBQUUsQ0FBQztBQUVmLEtBQUssVUFBVSxPQUFPLENBQUMsS0FBcUI7SUFDakQsTUFBTSxNQUFNLEdBQUcsS0FBSyxDQUFDLGtCQUFrQixDQUFDLG1CQUFXLENBQUMsQ0FBQztJQUNyRCxxRUFBcUU7SUFDckUsOEJBQThCO0lBQzlCLE1BQU0sa0JBQWtCLEdBQUcsS0FBSyxDQUFDLGtCQUFrQixDQUFDLGtDQUEwQixDQUFDLENBQUM7SUFDaEYsSUFBSSxrQkFBa0IsS0FBSyxTQUFTLElBQUksa0JBQWtCLENBQUMsSUFBSSxFQUFFLENBQUMsTUFBTSxLQUFLLENBQUMsRUFBRSxDQUFDO1FBQy9FLFFBQVEsS0FBSyxDQUFDLFdBQVcsRUFBRSxDQUFDO1lBQzFCLEtBQUssUUFBUTtnQkFDWCxHQUFHLENBQUMsR0FBRyxLQUFLLENBQUMsV0FBVyxtQ0FBbUMsTUFBTSxvQ0FBb0MsS0FBSyxDQUFDLFNBQVMsRUFBRSxDQUFDLENBQUM7Z0JBQ3hILE9BQU87b0JBQ0wsa0JBQWtCLEVBQUUsS0FBSyxDQUFDLFNBQVM7aUJBQ3BDLENBQUM7WUFDSixLQUFLLFFBQVEsQ0FBQztZQUNkLEtBQUssUUFBUTtnQkFDWCxHQUFHLENBQUMsR0FBRyxLQUFLLENBQUMsV0FBVyxtQ0FBbUMsTUFBTSxvQ0FBb0MsS0FBSyxDQUFDLGtCQUFrQixFQUFFLENBQUMsQ0FBQztnQkFDakksT0FBTztvQkFDTCxrQkFBa0IsRUFBRSxLQUFLLENBQUMsa0JBQWtCO2lCQUM3QyxDQUFDO1FBQ04sQ0FBQztJQUNILENBQUM7SUFFRCxNQUFNLFNBQVMsR0FBRyxLQUFLLENBQUMsa0JBQWtCLENBQUMsdUJBQWUsQ0FBQyxDQUFDO0lBQzVELE1BQU0sdUJBQXVCLEdBQUcsS0FBSyxDQUFDLGtCQUFrQixDQUFDLHVDQUErQixDQUFDLENBQUM7SUFDMUYsTUFBTSw0QkFBNEIsR0FBRyxLQUFLLENBQUMsa0JBQWtCLENBQUMsNkNBQXFDLENBQUMsQ0FBQztJQUVyRyxRQUFRLEtBQUssQ0FBQyxXQUFXLEVBQUUsQ0FBQztRQUMxQixLQUFLLFFBQVE7WUFDWCwrREFBK0Q7WUFDL0QsTUFBTSxxQ0FBcUMsR0FBRyxNQUFNLEdBQUcsQ0FBQyxZQUFZLENBQUM7Z0JBQ25FLElBQUksRUFBRSx1QkFBdUI7YUFDOUIsQ0FBQyxDQUFDO1lBRUgsTUFBTSw2QkFBNkIsR0FBRyxxQ0FBcUMsQ0FBQyxTQUFTLEVBQUUsS0FBSyxDQUFDO1lBQzdGLEdBQUcsQ0FBQztnQkFDRixLQUFLLEVBQUUsNkJBQTZCO2dCQUNwQyxLQUFLLEVBQUUsT0FBTzthQUNmLENBQUMsQ0FBQztZQUVILElBQUksNkJBQTZCLEtBQUssU0FBUyxJQUFJLDZCQUE2QixLQUFLLEVBQUUsRUFBRSxDQUFDO2dCQUN4RixNQUFNLElBQUksS0FBSyxDQUFDLHNFQUFzRSxNQUFNLEtBQUssNkJBQTZCLEVBQUUsQ0FBQyxDQUFDO1lBQ3BJLENBQUM7WUFFRCxNQUFNLHFCQUFxQixHQUFHLDZCQUE2QixFQUFFLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQztZQUN4RSxJQUFJLHFCQUFxQixDQUFDLE1BQU0sS0FBSyxDQUFDLEVBQUUsQ0FBQztnQkFDdkMsTUFBTSxJQUFJLEtBQUssQ0FBQyxtREFBbUQsTUFBTSxTQUFTLHFCQUFxQixDQUFDLE1BQU0sS0FBSyxxQkFBcUIsRUFBRSxDQUFDLENBQUM7WUFDOUksQ0FBQztZQUVELG1FQUFtRTtZQUNuRSx5REFBeUQ7WUFDekQsTUFBTSxrQkFBa0IsR0FBRyxNQUFNLE9BQU8sQ0FBQyxxQkFBcUIsQ0FBQztnQkFDN0QsT0FBTyxFQUFFLE1BQU07YUFDaEIsQ0FBQyxDQUFDO1lBRUgsSUFBSSxrQkFBa0IsQ0FBQyxXQUFXLEtBQUssU0FBUyxJQUFJLGtCQUFrQixDQUFDLFdBQVcsRUFBRSxNQUFNLEtBQUssQ0FBQyxFQUFFLENBQUM7Z0JBQ2pHLEdBQUcsQ0FBQztvQkFDRixLQUFLLEVBQUUsa0JBQWtCO29CQUN6QixLQUFLLEVBQUUsT0FBTztpQkFDZixDQUFDLENBQUM7Z0JBRUgsTUFBTSxJQUFJLEtBQUssQ0FBQyxpREFBaUQsTUFBTSxFQUFFLENBQUMsQ0FBQztZQUM3RSxDQUFDO1lBRUQsTUFBTSxtQkFBbUIsR0FBRyxrQkFBa0IsQ0FBQyxXQUFXLEVBQUUsTUFBTSxDQUFDLENBQUMsVUFBVSxFQUFFLEVBQUU7Z0JBQ2hGLG9GQUFvRjtnQkFDcEYsT0FBTyxVQUFVLENBQUMsRUFBRSxLQUFLLGVBQWUsa0JBQWtCLEVBQUUsQ0FBQztZQUMvRCxDQUFDLENBQUMsQ0FBQztZQUVILElBQUksbUJBQW1CLENBQUMsTUFBTSxLQUFLLENBQUMsRUFBRSxDQUFDO2dCQUNyQyxHQUFHLENBQUM7b0JBQ0YsS0FBSyxFQUFFLGtCQUFrQjtvQkFDekIsS0FBSyxFQUFFLE9BQU87aUJBQ2YsQ0FBQyxDQUFDO2dCQUVILE1BQU0sSUFBSSxLQUFLLENBQUMsdURBQXVELE1BQU0sU0FBUyxtQkFBbUIsQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDO1lBQ3RILENBQUM7WUFFRCwwREFBMEQ7WUFFMUQsbUNBQW1DO1lBQ25DLE1BQU0sOEJBQThCLEdBQUcsTUFBTSxPQUFPLENBQUMsc0JBQXNCLENBQUM7Z0JBQzFFLDhDQUE4QztnQkFDOUMsWUFBWSxFQUFFLGtCQUFrQixDQUFDLE9BQU8sQ0FBQyxjQUFjLEVBQUUsRUFBRSxDQUFDO2FBQzdELENBQUMsQ0FBQztZQUVILElBQUksOEJBQThCLENBQUMsa0JBQWtCLEtBQUssU0FBUyxFQUFFLENBQUM7Z0JBQ3BFLEdBQUcsQ0FBQztvQkFDRixLQUFLLEVBQUUsOEJBQThCO29CQUNyQyxLQUFLLEVBQUUsT0FBTztpQkFDZixDQUFDLENBQUM7Z0JBRUgsTUFBTSxJQUFJLEtBQUssQ0FBQyx5REFBeUQsTUFBTSxFQUFFLENBQUMsQ0FBQztZQUNyRixDQUFDO1lBRUQsTUFBTSxtQkFBbUIsR0FBRyw4QkFBOEIsQ0FBQyxrQkFBa0IsRUFBRSxJQUFJLENBQUMsQ0FBQyxTQUFTLEVBQUUsRUFBRTtnQkFDaEcsZ0RBQWdEO2dCQUNoRCxPQUFPLFNBQVMsQ0FBQyxJQUFJLEtBQUssR0FBRyxTQUFTLElBQUksTUFBTSxHQUFHLElBQUksU0FBUyxDQUFDLElBQUksS0FBSyxJQUFJLENBQUM7WUFDakYsQ0FBQyxDQUFDLENBQUM7WUFFSCxJQUFJLG1CQUFtQixLQUFLLFNBQVMsRUFBRSxDQUFDO2dCQUN0QyxHQUFHLENBQUM7b0JBQ0YsS0FBSyxFQUFFLG1CQUFtQjtvQkFDMUIsS0FBSyxFQUFFLE9BQU87aUJBQ2YsQ0FBQyxDQUFDO2dCQUVILEdBQUcsQ0FBQyx1QkFBdUIsU0FBUyxJQUFJLE1BQU0seUNBQXlDLENBQUMsQ0FBQztnQkFDekYsT0FBTztvQkFDTCxrQkFBa0IsRUFBRSxLQUFLLENBQUMsU0FBUztpQkFDcEMsQ0FBQztZQUNKLENBQUM7WUFFRCxHQUFHLENBQUMsdUJBQXVCLFNBQVMsSUFBSSxNQUFNLHlDQUF5QyxDQUFDLENBQUM7WUFDekYsdUZBQXVGO1lBQ3ZGLE1BQU0seUJBQXlCLEdBQUcsTUFBTSxPQUFPLENBQUMsd0JBQXdCLENBQUM7Z0JBQ3ZFLFlBQVksRUFBRSxrQkFBa0I7Z0JBQ2hDLFdBQVcsRUFBRTtvQkFDWCxPQUFPLEVBQUUsdUJBQXVCO29CQUNoQyxPQUFPLEVBQUU7d0JBQ1A7NEJBQ0UsTUFBTSxFQUFFLFFBQVE7NEJBQ2hCLGlCQUFpQixFQUFFO2dDQUNqQixJQUFJLEVBQUUsR0FBRyxTQUFTLElBQUksTUFBTSxFQUFFO2dDQUM5QixJQUFJLEVBQUUsSUFBSTtnQ0FDVixHQUFHLEVBQUUsRUFBRTtnQ0FDUCxlQUFlLEVBQUU7b0NBQ2YsRUFBRSxLQUFLLEVBQUUscUJBQXFCLENBQUMsQ0FBQyxDQUFDLEVBQUU7b0NBQ25DLEVBQUUsS0FBSyxFQUFFLHFCQUFxQixDQUFDLENBQUMsQ0FBQyxFQUFFO29DQUNuQyxFQUFFLEtBQUssRUFBRSxxQkFBcUIsQ0FBQyxDQUFDLENBQUMsRUFBRTtvQ0FDbkMsRUFBRSxLQUFLLEVBQUUscUJBQXFCLENBQUMsQ0FBQyxDQUFDLEVBQUU7aUNBQ3BDOzZCQUNGO3lCQUNGO3FCQUNGO2lCQUNGO2FBQ0YsQ0FBQyxDQUFDO1lBRUgsMkZBQTJGO1lBQzNGLE1BQU0sR0FBRyxDQUFDLFlBQVksQ0FBQztnQkFDckIsSUFBSSxFQUFFLDRCQUE0QjtnQkFDbEMsS0FBSyxFQUFFLHlCQUF5QixDQUFDLFVBQVcsQ0FBQyxFQUFFO2dCQUMvQyxTQUFTLEVBQUUsSUFBSTthQUNoQixDQUFDLENBQUM7WUFFSCxPQUFPO2dCQUNMLGtCQUFrQixFQUFFLEtBQUssQ0FBQyxTQUFTO2FBQ3BDLENBQUM7UUFDSixLQUFLLFFBQVE7WUFDWCxHQUFHLENBQUMsMkNBQTJDLFNBQVMsSUFBSSxNQUFNLEdBQUcsQ0FBQyxDQUFDO1lBQ3ZFLE9BQU87Z0JBQ0wsa0JBQWtCLEVBQUUsS0FBSyxDQUFDLGtCQUFrQjthQUM3QyxDQUFDO1FBQ0osS0FBSyxRQUFRO1lBQ1gsR0FBRyxDQUFDLGdDQUFnQyxTQUFTLElBQUksTUFBTSxnQ0FBZ0Msa0JBQWtCLEVBQUUsQ0FBQyxDQUFDO1lBQzdHLE1BQU0sVUFBVSxHQUFHLEdBQUcsU0FBUyxJQUFJLE1BQU0sRUFBRSxDQUFDO1lBRTVDLElBQUksQ0FBQztnQkFDSCxJQUFJLGNBQWtDLENBQUM7Z0JBQ3ZDLElBQUksZUFBZSxHQUFHLEtBQUssQ0FBQztnQkFDNUIsR0FBRyxDQUFDO29CQUNGLE1BQU0sZUFBZSxHQUFHLE1BQU0sT0FBTyxDQUFDLHNCQUFzQixDQUFDO3dCQUMzRCxZQUFZLEVBQUUsa0JBQWtCO3dCQUNoQyxlQUFlLEVBQUUsY0FBYztxQkFDaEMsQ0FBQyxDQUFDO29CQUVILEtBQUssTUFBTSxTQUFTLElBQUksZUFBZSxDQUFDLGtCQUFrQixJQUFJLEVBQUUsRUFBRSxDQUFDO3dCQUNqRSxnREFBZ0Q7d0JBQ2hELElBQUksU0FBUyxDQUFDLElBQUksS0FBSyxHQUFHLFVBQVUsR0FBRyxJQUFJLFNBQVMsQ0FBQyxJQUFJLEtBQUssSUFBSSxFQUFFLENBQUM7NEJBQ25FLE9BQU8sQ0FBQyxHQUFHLENBQUMsb0JBQW9CLFNBQVMsQ0FBQyxJQUFJLElBQUksU0FBUyxDQUFDLElBQUksRUFBRSxDQUFDLENBQUM7NEJBQ3BFLE1BQU0sT0FBTyxDQUFDLHdCQUF3QixDQUFDO2dDQUNyQyxZQUFZLEVBQUUsa0JBQWtCO2dDQUNoQyxXQUFXLEVBQUU7b0NBQ1gsT0FBTyxFQUFFO3dDQUNQOzRDQUNFLE1BQU0sRUFBRSxRQUFROzRDQUNoQixpQkFBaUIsRUFBRSxTQUFTO3lDQUM3QjtxQ0FDRjtpQ0FDRjs2QkFDRixDQUFDLENBQUM7NEJBQ0gsT0FBTyxDQUFDLEdBQUcsQ0FBQyxtQkFBbUIsU0FBUyxDQUFDLElBQUksSUFBSSxTQUFTLENBQUMsSUFBSSxrQkFBa0IsQ0FBQyxDQUFDOzRCQUNuRixlQUFlLEdBQUcsSUFBSSxDQUFDOzRCQUN2QiwrRUFBK0U7NEJBQy9FLE1BQU07d0JBQ1IsQ0FBQztvQkFDSCxDQUFDO29CQUVELGNBQWMsR0FBRyxlQUFlLENBQUMsY0FBYyxDQUFDO29CQUNoRCxJQUFJLGVBQWUsRUFBRSxDQUFDO3dCQUNwQixPQUFPLENBQUMsR0FBRyxDQUFDLG1CQUFtQixVQUFVLHVCQUF1QixDQUFDLENBQUM7d0JBQ2xFLE1BQU07b0JBQ1IsQ0FBQztnQkFDSCxDQUFDLFFBQVEsY0FBYyxFQUFFO1lBQzNCLENBQUM7WUFBQyxPQUFPLEdBQUcsRUFBRSxDQUFDO2dCQUNiLE9BQU8sQ0FBQyxHQUFHLENBQUMsMkJBQTJCLEdBQUcsRUFBRSxDQUFDLENBQUM7Z0JBQzlDLE1BQU0sR0FBRyxDQUFDO1lBQ1osQ0FBQztZQUVELE9BQU87Z0JBQ0wsa0JBQWtCLEVBQUUsS0FBSyxDQUFDLGtCQUFrQjthQUM3QyxDQUFDO0lBQ04sQ0FBQztBQUNILENBQUM7QUFFRCxTQUFTLEdBQUcsQ0FBQyxHQUFRO0lBQ25CLE9BQU8sQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO0FBQ25DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBSb3V0ZTUzIH0gZnJvbSAnQGF3cy1zZGsvY2xpZW50LXJvdXRlLTUzJztcbmltcG9ydCB7IFNTTSB9IGZyb20gJ0Bhd3Mtc2RrL2NsaWVudC1zc20nO1xuaW1wb3J0IHsgT25FdmVudFJlcXVlc3QsIE9uRXZlbnRSZXNwb25zZSB9IGZyb20gJy4vY3VzdG9tLXJlc291cmNlLXR5cGVzJztcbmV4cG9ydCBjb25zdCBQUk9QX0RPTUFJTiA9ICdEb21haW4nO1xuZXhwb3J0IGNvbnN0IFBST1BfU1VCX0RPTUFJTiA9ICdTdWJkb21haW4nO1xuZXhwb3J0IGNvbnN0IFBST1BfUEFSRU5UX0hPU1RFRF9aT05FX0lEID0gJ1BhcmVudEhvc3RlZFpvbmVJZCc7XG5leHBvcnQgY29uc3QgUFJPUF9IT1NURURfWk9ORV9QQVJBTUVURVJfTkFNRSA9ICdIb3N0ZWRab25lUGFyYW1ldGVyTmFtZSc7XG5leHBvcnQgY29uc3QgUFJPUF9SNTNfQ0hBTkdFSU5GT19JRF9QQVJBTUVURVJfTkFNRSA9ICdSNTNDaGFuZ2VJbmZvSWRQYXJhbWV0ZXJOYW1lJztcblxuY29uc3Qgcm91dGU1MyA9IG5ldyBSb3V0ZTUzKCk7XG5jb25zdCBzc20gPSBuZXcgU1NNKCk7XG5cbmV4cG9ydCBhc3luYyBmdW5jdGlvbiBoYW5kbGVyKGV2ZW50OiBPbkV2ZW50UmVxdWVzdCk6IFByb21pc2U8T25FdmVudFJlc3BvbnNlPiB7XG4gIGNvbnN0IGRvbWFpbiA9IGV2ZW50LlJlc291cmNlUHJvcGVydGllc1tQUk9QX0RPTUFJTl07XG4gIC8vIE5PVEU6IHRoaXMgaGFzIHRvIGhhcHBlbiBoZXJlIGFzIGlmIHdlIGRvIHRoaXMgYXJvdW5kIHRoZSB3aG9sZSBDUlxuICAvLyBpdCBpcyBub3Qgc3l0aGVzaXplZCBhdCBhbGxcbiAgY29uc3QgcGFyZW50SG9zdGVkWm9uZUlkID0gZXZlbnQuUmVzb3VyY2VQcm9wZXJ0aWVzW1BST1BfUEFSRU5UX0hPU1RFRF9aT05FX0lEXTtcbiAgaWYgKHBhcmVudEhvc3RlZFpvbmVJZCA9PT0gdW5kZWZpbmVkIHx8IHBhcmVudEhvc3RlZFpvbmVJZC50cmltKCkubGVuZ3RoID09PSAwKSB7XG4gICAgc3dpdGNoIChldmVudC5SZXF1ZXN0VHlwZSkge1xuICAgICAgY2FzZSAnQ3JlYXRlJzpcbiAgICAgICAgbG9nKGAke2V2ZW50LlJlcXVlc3RUeXBlfTogQXV0b3dpcmUgRE5TIGlzIGRpc2FibGVkIGZvciAnJHtkb21haW59Jy4gU2tpcHBpbmcuIFBoeXNpY2FsUmVzb3VyY2VJZDogJHtldmVudC5SZXF1ZXN0SWR9YCk7XG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgUGh5c2ljYWxSZXNvdXJjZUlkOiBldmVudC5SZXF1ZXN0SWQsXG4gICAgICAgIH07XG4gICAgICBjYXNlICdVcGRhdGUnOlxuICAgICAgY2FzZSAnRGVsZXRlJzpcbiAgICAgICAgbG9nKGAke2V2ZW50LlJlcXVlc3RUeXBlfTogQXV0b3dpcmUgRE5TIGlzIGRpc2FibGVkIGZvciAnJHtkb21haW59Jy4gU2tpcHBpbmcuIFBoeXNpY2FsUmVzb3VyY2VJZDogJHtldmVudC5QaHlzaWNhbFJlc291cmNlSWR9YCk7XG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgUGh5c2ljYWxSZXNvdXJjZUlkOiBldmVudC5QaHlzaWNhbFJlc291cmNlSWQsXG4gICAgICAgIH07XG4gICAgfVxuICB9XG5cbiAgY29uc3Qgc3ViZG9tYWluID0gZXZlbnQuUmVzb3VyY2VQcm9wZXJ0aWVzW1BST1BfU1VCX0RPTUFJTl07XG4gIGNvbnN0IGhvc3RlZFpvbmVQYXJhbWV0ZXJOYW1lID0gZXZlbnQuUmVzb3VyY2VQcm9wZXJ0aWVzW1BST1BfSE9TVEVEX1pPTkVfUEFSQU1FVEVSX05BTUVdO1xuICBjb25zdCByNTNDaGFuZ2VJbmZvSWRQYXJhbWV0ZXJOYW1lID0gZXZlbnQuUmVzb3VyY2VQcm9wZXJ0aWVzW1BST1BfUjUzX0NIQU5HRUlORk9fSURfUEFSQU1FVEVSX05BTUVdO1xuXG4gIHN3aXRjaCAoZXZlbnQuUmVxdWVzdFR5cGUpIHtcbiAgICBjYXNlICdDcmVhdGUnOlxuICAgICAgLy8gMTogY2hlY2sgaWYgdGhlIHN1YmRvbWFpbiB3YXMgY3JlYXRlZCBhbmQgZ2V0IGl0cyBOUyByZWNvcmRzXG4gICAgICBjb25zdCBob3N0ZWRab25lTmFtZVNlcnZlclBhcmFtZXRlclJlc3BvbnNlID0gYXdhaXQgc3NtLmdldFBhcmFtZXRlcih7XG4gICAgICAgIE5hbWU6IGhvc3RlZFpvbmVQYXJhbWV0ZXJOYW1lLFxuICAgICAgfSk7XG5cbiAgICAgIGNvbnN0IGhvc3RlZFpvbmVOYW1lU2VydmVyc0FzU3RyaW5nID0gaG9zdGVkWm9uZU5hbWVTZXJ2ZXJQYXJhbWV0ZXJSZXNwb25zZS5QYXJhbWV0ZXI/LlZhbHVlO1xuICAgICAgbG9nKHtcbiAgICAgICAgZXZlbnQ6IGhvc3RlZFpvbmVOYW1lU2VydmVyc0FzU3RyaW5nLFxuICAgICAgICBsZXZlbDogJ2RlYnVnJyxcbiAgICAgIH0pO1xuXG4gICAgICBpZiAoaG9zdGVkWm9uZU5hbWVTZXJ2ZXJzQXNTdHJpbmcgPT09IHVuZGVmaW5lZCB8fCBob3N0ZWRab25lTmFtZVNlcnZlcnNBc1N0cmluZyA9PT0gJycpIHtcbiAgICAgICAgdGhyb3cgbmV3IEVycm9yKGBob3N0ZWQgem9uZSBuYW1lIHNlcnZlcnMgbm90IGZvdW5kIG9yIGVtcHR5IGluIHBhcmFtZXRlciBzdG9yZSBmb3IgJHtkb21haW59OiAke2hvc3RlZFpvbmVOYW1lU2VydmVyc0FzU3RyaW5nfWApO1xuICAgICAgfVxuXG4gICAgICBjb25zdCBob3N0ZWRab25lTmFtZVNlcnZlcnMgPSBob3N0ZWRab25lTmFtZVNlcnZlcnNBc1N0cmluZz8uc3BsaXQoJywnKTtcbiAgICAgIGlmIChob3N0ZWRab25lTmFtZVNlcnZlcnMubGVuZ3RoICE9PSA0KSB7XG4gICAgICAgIHRocm93IG5ldyBFcnJvcihgZXhwZWN0ZWQgZXhhY3RseSA0IGhvc3RlZCB6b25lIG5hbWUgc2VydmVycyBmb3IgJHtkb21haW59LiBHb3QgJHtob3N0ZWRab25lTmFtZVNlcnZlcnMubGVuZ3RofTogJHtob3N0ZWRab25lTmFtZVNlcnZlcnN9YCk7XG4gICAgICB9XG5cbiAgICAgIC8vIDI6IGNoZWNrIGlmIHRoZSBkb21haW4gaGFzIGEgaG9zdGVkIHpvbmUgaW4gdGhlIHNhbWUgQVdTIEFjY291bnRcbiAgICAgIC8vIHdoaWNoIGlzIGEgcHJlcmVxdWlzaXRlIGZvciBhdXRvd2lyaW5nIHRoZSBETlMgcmVjb3Jkc1xuICAgICAgY29uc3QgaG9zdGVkWm9uZVJlc3BvbnNlID0gYXdhaXQgcm91dGU1My5saXN0SG9zdGVkWm9uZXNCeU5hbWUoe1xuICAgICAgICBETlNOYW1lOiBkb21haW4sXG4gICAgICB9KTtcblxuICAgICAgaWYgKGhvc3RlZFpvbmVSZXNwb25zZS5Ib3N0ZWRab25lcyA9PT0gdW5kZWZpbmVkIHx8IGhvc3RlZFpvbmVSZXNwb25zZS5Ib3N0ZWRab25lcz8ubGVuZ3RoID09PSAwKSB7XG4gICAgICAgIGxvZyh7XG4gICAgICAgICAgZXZlbnQ6IGhvc3RlZFpvbmVSZXNwb25zZSxcbiAgICAgICAgICBsZXZlbDogJ2RlYnVnJyxcbiAgICAgICAgfSk7XG5cbiAgICAgICAgdGhyb3cgbmV3IEVycm9yKGBleHBlY3RlZCB0byBmaW5kIGF0IGxlYXN0IG9uZSBob3N0ZWQgem9uZSBmb3IgJHtkb21haW59YCk7XG4gICAgICB9XG5cbiAgICAgIGNvbnN0IGZpbHRlcmVkSG9zdGVkWm9uZXMgPSBob3N0ZWRab25lUmVzcG9uc2UuSG9zdGVkWm9uZXM/LmZpbHRlcigoaG9zdGVkWm9uZSkgPT4ge1xuICAgICAgICAvLyB0aGUgcmVzcG9uc2UgcHJlZml4IGlzIC9ob3N0ZWR6b25lLyBidXQgdGhlIGlucHV0IHBhcmFtZXRlciBpcyB3aXRob3V0IHRoZSBwcmVmaXhcbiAgICAgICAgcmV0dXJuIGhvc3RlZFpvbmUuSWQgPT09IGAvaG9zdGVkem9uZS8ke3BhcmVudEhvc3RlZFpvbmVJZH1gO1xuICAgICAgfSk7XG5cbiAgICAgIGlmIChmaWx0ZXJlZEhvc3RlZFpvbmVzLmxlbmd0aCAhPT0gMSkge1xuICAgICAgICBsb2coe1xuICAgICAgICAgIGV2ZW50OiBob3N0ZWRab25lUmVzcG9uc2UsXG4gICAgICAgICAgbGV2ZWw6ICdkZWJ1ZycsXG4gICAgICAgIH0pO1xuXG4gICAgICAgIHRocm93IG5ldyBFcnJvcihgZXhwZWN0ZWQgdG8gZmluZCAmIGZpbHRlciBleGFjdGx5IDEgaG9zdGVkIHpvbmUgZm9yICR7ZG9tYWlufS4gR290ICR7ZmlsdGVyZWRIb3N0ZWRab25lcy5sZW5ndGh9YCk7XG4gICAgICB9XG5cbiAgICAgIC8vIDM6IG5vdyB3ZSBjb250aW51ZSB3aXRoIHRoZSBnaXZlbiBwYXJlbnQgaG9zdGVkIHpvbmUgSURcblxuICAgICAgLy8gaXRlcmF0ZSBvdmVyIGhvc3RlZCB6b25lIHJlY29yZHNcbiAgICAgIGNvbnN0IGxpc3RSZXNvdXJjZVJlY29yZFNldHNSZXNwb25zZSA9IGF3YWl0IHJvdXRlNTMubGlzdFJlc291cmNlUmVjb3JkU2V0cyh7XG4gICAgICAgIC8vIHJlbW92ZSB0aGUgcHJlZml4IGZvciB1c2luZyBpdCBhcyBwYXJhbWV0ZXJcbiAgICAgICAgSG9zdGVkWm9uZUlkOiBwYXJlbnRIb3N0ZWRab25lSWQucmVwbGFjZSgnL2hvc3RlZHpvbmUvJywgJycpLFxuICAgICAgfSk7XG5cbiAgICAgIGlmIChsaXN0UmVzb3VyY2VSZWNvcmRTZXRzUmVzcG9uc2UuUmVzb3VyY2VSZWNvcmRTZXRzID09PSB1bmRlZmluZWQpIHtcbiAgICAgICAgbG9nKHtcbiAgICAgICAgICBldmVudDogbGlzdFJlc291cmNlUmVjb3JkU2V0c1Jlc3BvbnNlLFxuICAgICAgICAgIGxldmVsOiAnZGVidWcnLFxuICAgICAgICB9KTtcblxuICAgICAgICB0aHJvdyBuZXcgRXJyb3IoYGV4cGVjdGVkIHRvIGZpbmQgYXQgbGVhc3Qgb25lIHJlc291cmNlIHJlY29yZCBzZXQgZm9yICR7ZG9tYWlufWApO1xuICAgICAgfVxuXG4gICAgICBjb25zdCBleGlzdGluZ05TUmVjb3JkU2V0ID0gbGlzdFJlc291cmNlUmVjb3JkU2V0c1Jlc3BvbnNlLlJlc291cmNlUmVjb3JkU2V0cz8uZmluZCgocmVjb3JkU2V0KSA9PiB7XG4gICAgICAgIC8vIE5vdGUgdGhlIHRyYWlubGluZyBkb3QgaW4gdGhlIG5hbWUgYXQgdGhlIGVuZFxuICAgICAgICByZXR1cm4gcmVjb3JkU2V0Lk5hbWUgPT09IGAke3N1YmRvbWFpbn0uJHtkb21haW59LmAgJiYgcmVjb3JkU2V0LlR5cGUgPT09ICdOUyc7XG4gICAgICB9KTtcblxuICAgICAgaWYgKGV4aXN0aW5nTlNSZWNvcmRTZXQgIT09IHVuZGVmaW5lZCkge1xuICAgICAgICBsb2coe1xuICAgICAgICAgIGV2ZW50OiBleGlzdGluZ05TUmVjb3JkU2V0LFxuICAgICAgICAgIGxldmVsOiAnZGVidWcnLFxuICAgICAgICB9KTtcblxuICAgICAgICBsb2coYE5TIHJlY29yZCBmb3IgTmFtZSAnJHtzdWJkb21haW59LiR7ZG9tYWlufScgYW5kIHR5cGUgTlMgYWxyZWFkeSBleGlzdHMuIFNraXBwaW5nLmApO1xuICAgICAgICByZXR1cm4ge1xuICAgICAgICAgIFBoeXNpY2FsUmVzb3VyY2VJZDogZXZlbnQuUmVxdWVzdElkLFxuICAgICAgICB9O1xuICAgICAgfVxuXG4gICAgICBsb2coYE5TIHJlY29yZCBmb3IgTmFtZSAnJHtzdWJkb21haW59LiR7ZG9tYWlufScgYW5kIHR5cGUgTlMgZG9lcyBub3QgZXhpc3QuIENyZWF0aW5nLmApO1xuICAgICAgLy8gaW4gdGhlIEhaIG9mIHRoZSBkb21haW4gKHBhcmVudEhvc3RlZFpvbmUpIHdlIGNyZWF0ZSB0aGUgTlMgcmVjb3JkIGZvciB0aGUgc3ViZG9tYWluXG4gICAgICBjb25zdCByZWNvcmRTZXRDcmVhdGlvblJlc3BvbnNlID0gYXdhaXQgcm91dGU1My5jaGFuZ2VSZXNvdXJjZVJlY29yZFNldHMoe1xuICAgICAgICBIb3N0ZWRab25lSWQ6IHBhcmVudEhvc3RlZFpvbmVJZCxcbiAgICAgICAgQ2hhbmdlQmF0Y2g6IHtcbiAgICAgICAgICBDb21tZW50OiAncm9vdG1haWwtYXV0b3dpcmUtZG5zJyxcbiAgICAgICAgICBDaGFuZ2VzOiBbXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgIEFjdGlvbjogJ0NSRUFURScsXG4gICAgICAgICAgICAgIFJlc291cmNlUmVjb3JkU2V0OiB7XG4gICAgICAgICAgICAgICAgTmFtZTogYCR7c3ViZG9tYWlufS4ke2RvbWFpbn1gLFxuICAgICAgICAgICAgICAgIFR5cGU6ICdOUycsXG4gICAgICAgICAgICAgICAgVFRMOiA2MCxcbiAgICAgICAgICAgICAgICBSZXNvdXJjZVJlY29yZHM6IFsgLy8gYXJlIGFsd2F5cyA0XG4gICAgICAgICAgICAgICAgICB7IFZhbHVlOiBob3N0ZWRab25lTmFtZVNlcnZlcnNbMF0gfSxcbiAgICAgICAgICAgICAgICAgIHsgVmFsdWU6IGhvc3RlZFpvbmVOYW1lU2VydmVyc1sxXSB9LFxuICAgICAgICAgICAgICAgICAgeyBWYWx1ZTogaG9zdGVkWm9uZU5hbWVTZXJ2ZXJzWzJdIH0sXG4gICAgICAgICAgICAgICAgICB7IFZhbHVlOiBob3N0ZWRab25lTmFtZVNlcnZlcnNbM10gfSxcbiAgICAgICAgICAgICAgICBdLFxuICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICBdLFxuICAgICAgICB9LFxuICAgICAgfSk7XG5cbiAgICAgIC8vIHdlIGFkZCB0aGUgY2hhbmdlIGluZm8gaWQgdG8gdGhlIHBhcmFtZXRlciBzdG9yZSBzbyB3ZSB1c2UgaXQgaW4gdGhlIGlzLWNvbXBsZXRlLWhhbmRsZXJcbiAgICAgIGF3YWl0IHNzbS5wdXRQYXJhbWV0ZXIoe1xuICAgICAgICBOYW1lOiByNTNDaGFuZ2VJbmZvSWRQYXJhbWV0ZXJOYW1lLFxuICAgICAgICBWYWx1ZTogcmVjb3JkU2V0Q3JlYXRpb25SZXNwb25zZS5DaGFuZ2VJbmZvIS5JZCxcbiAgICAgICAgT3ZlcndyaXRlOiB0cnVlLFxuICAgICAgfSk7XG5cbiAgICAgIHJldHVybiB7XG4gICAgICAgIFBoeXNpY2FsUmVzb3VyY2VJZDogZXZlbnQuUmVxdWVzdElkLFxuICAgICAgfTtcbiAgICBjYXNlICdVcGRhdGUnOlxuICAgICAgbG9nKGBTa2lwcGluZyB1cGRhdGUgZm9yIE5TIHJlY29yZCBmb3IgTmFtZSAnJHtzdWJkb21haW59LiR7ZG9tYWlufSdgKTtcbiAgICAgIHJldHVybiB7XG4gICAgICAgIFBoeXNpY2FsUmVzb3VyY2VJZDogZXZlbnQuUGh5c2ljYWxSZXNvdXJjZUlkLFxuICAgICAgfTtcbiAgICBjYXNlICdEZWxldGUnOlxuICAgICAgbG9nKGBEZWxldGluZyBOUyByZWNvcmQgZm9yIE5hbWUgJyR7c3ViZG9tYWlufS4ke2RvbWFpbn0nIGluIHRoZSBob3N0ZWQgem9uZSB3aXRoIElEICR7cGFyZW50SG9zdGVkWm9uZUlkfWApO1xuICAgICAgY29uc3QgcmVjb3JkTmFtZSA9IGAke3N1YmRvbWFpbn0uJHtkb21haW59YDtcblxuICAgICAgdHJ5IHtcbiAgICAgICAgbGV0IG5leHRSZWNvcmROYW1lOiBzdHJpbmcgfCB1bmRlZmluZWQ7XG4gICAgICAgIGxldCBpc1JlY29yZERlbGV0ZWQgPSBmYWxzZTtcbiAgICAgICAgZG8ge1xuICAgICAgICAgIGNvbnN0IHJlY29yZHNSZXNwb25zZSA9IGF3YWl0IHJvdXRlNTMubGlzdFJlc291cmNlUmVjb3JkU2V0cyh7XG4gICAgICAgICAgICBIb3N0ZWRab25lSWQ6IHBhcmVudEhvc3RlZFpvbmVJZCxcbiAgICAgICAgICAgIFN0YXJ0UmVjb3JkTmFtZTogbmV4dFJlY29yZE5hbWUsXG4gICAgICAgICAgfSk7XG5cbiAgICAgICAgICBmb3IgKGNvbnN0IHJlY29yZFNldCBvZiByZWNvcmRzUmVzcG9uc2UuUmVzb3VyY2VSZWNvcmRTZXRzIHx8IFtdKSB7XG4gICAgICAgICAgICAvLyBOb3RlIHRoZSB0cmFpbmxpbmcgZG90IGluIHRoZSBuYW1lIGF0IHRoZSBlbmRcbiAgICAgICAgICAgIGlmIChyZWNvcmRTZXQuTmFtZSA9PT0gYCR7cmVjb3JkTmFtZX0uYCAmJiByZWNvcmRTZXQuVHlwZSA9PT0gJ05TJykge1xuICAgICAgICAgICAgICBjb25zb2xlLmxvZyhgRGVsZXRpbmcgcmVjb3JkOiAke3JlY29yZFNldC5OYW1lfSAke3JlY29yZFNldC5UeXBlfWApO1xuICAgICAgICAgICAgICBhd2FpdCByb3V0ZTUzLmNoYW5nZVJlc291cmNlUmVjb3JkU2V0cyh7XG4gICAgICAgICAgICAgICAgSG9zdGVkWm9uZUlkOiBwYXJlbnRIb3N0ZWRab25lSWQsXG4gICAgICAgICAgICAgICAgQ2hhbmdlQmF0Y2g6IHtcbiAgICAgICAgICAgICAgICAgIENoYW5nZXM6IFtcbiAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgIEFjdGlvbjogJ0RFTEVURScsXG4gICAgICAgICAgICAgICAgICAgICAgUmVzb3VyY2VSZWNvcmRTZXQ6IHJlY29yZFNldCxcbiAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgfSk7XG4gICAgICAgICAgICAgIGNvbnNvbGUubG9nKGBEZWxldGVkIHJlY29yZDogJHtyZWNvcmRTZXQuTmFtZX0gJHtyZWNvcmRTZXQuVHlwZX0uIFN0b3BwaW5nIGhlcmUuYCk7XG4gICAgICAgICAgICAgIGlzUmVjb3JkRGVsZXRlZCA9IHRydWU7XG4gICAgICAgICAgICAgIC8vIHdlIGV4aXQgaGVyZSBhcyB0aGVyZSBzaG91bGQgYmUgb25seSBvbmUgcmVjb3JkIHdpdGggdGhlIGdpdmVuIG5hbWUgYW5kIHR5cGVcbiAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICB9XG4gICAgICAgICAgfVxuXG4gICAgICAgICAgbmV4dFJlY29yZE5hbWUgPSByZWNvcmRzUmVzcG9uc2UuTmV4dFJlY29yZE5hbWU7XG4gICAgICAgICAgaWYgKGlzUmVjb3JkRGVsZXRlZCkge1xuICAgICAgICAgICAgY29uc29sZS5sb2coYFJlY29yZCBkZWxldGVkOiAke3JlY29yZE5hbWV9IHR5cGUgJ05TJy4gUXVpdHRpbmcuYCk7XG4gICAgICAgICAgICBicmVhaztcbiAgICAgICAgICB9XG4gICAgICAgIH0gd2hpbGUgKG5leHRSZWNvcmROYW1lKTtcbiAgICAgIH0gY2F0Y2ggKGVycikge1xuICAgICAgICBjb25zb2xlLmxvZyhgRXJyb3IgZGVsZXRpbmcgcmVjb3JkczogJHtlcnJ9YCk7XG4gICAgICAgIHRocm93IGVycjtcbiAgICAgIH1cblxuICAgICAgcmV0dXJuIHtcbiAgICAgICAgUGh5c2ljYWxSZXNvdXJjZUlkOiBldmVudC5QaHlzaWNhbFJlc291cmNlSWQsXG4gICAgICB9O1xuICB9XG59XG5cbmZ1bmN0aW9uIGxvZyhtc2c6IGFueSkge1xuICBjb25zb2xlLmxvZyhKU09OLnN0cmluZ2lmeShtc2cpKTtcbn1cbiJdfQ==
|
package/lib/rootmail.js
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var _a;
|
|
3
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
3
|
exports.Rootmail = void 0;
|
|
5
4
|
const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
6
5
|
const aws_cdk_lib_1 = require("aws-cdk-lib");
|
|
7
|
-
const cdk_nag_1 = require("cdk-nag");
|
|
8
6
|
const constructs_1 = require("constructs");
|
|
9
7
|
const common_1 = require("./common");
|
|
10
8
|
const hosted_zone_dkim_1 = require("./hosted-zone-dkim");
|
|
@@ -13,6 +11,15 @@ const ses_receive_1 = require("./ses-receive");
|
|
|
13
11
|
* Rootmail construct
|
|
14
12
|
*/
|
|
15
13
|
class Rootmail extends constructs_1.Construct {
|
|
14
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@mavogel/awscdk-rootmail.Rootmail", version: "0.1.0" };
|
|
15
|
+
/**
|
|
16
|
+
* The name parameter in SSM to store the domain name server.
|
|
17
|
+
*/
|
|
18
|
+
hostedZoneParameterName;
|
|
19
|
+
/**
|
|
20
|
+
* S3 bucket to store the root mails in
|
|
21
|
+
*/
|
|
22
|
+
emailBucket;
|
|
16
23
|
constructor(scope, id, props) {
|
|
17
24
|
super(scope, id);
|
|
18
25
|
this.hostedZoneParameterName = '/rootmail/domain_name_servers';
|
|
@@ -37,18 +44,10 @@ class Rootmail extends constructs_1.Construct {
|
|
|
37
44
|
removalPolicy: emailBucketDeletePolicy,
|
|
38
45
|
autoDeleteObjects: emailBucketDeletePolicy === aws_cdk_lib_1.RemovalPolicy.DESTROY,
|
|
39
46
|
});
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
], [
|
|
43
|
-
{ id: 'AwsSolutions-S1', reason: 'no server access logs needed' },
|
|
44
|
-
{ id: 'AwsSolutions-S10', reason: 'no SSL access needed' },
|
|
45
|
-
], true);
|
|
47
|
+
aws_cdk_lib_1.Validations.of(this.emailBucket).acknowledge({ id: 'AwsSolutions-S1', reason: 'no server access logs needed' });
|
|
48
|
+
aws_cdk_lib_1.Validations.of(this.emailBucket).acknowledge({ id: 'AwsSolutions-S10', reason: 'no SSL access needed' });
|
|
46
49
|
this.emailBucket.grantPut(new aws_cdk_lib_1.aws_iam.ServicePrincipal('ses.amazonaws.com'), 'RootMail/*');
|
|
47
|
-
|
|
48
|
-
this.emailBucket.policy,
|
|
49
|
-
], [
|
|
50
|
-
{ id: 'AwsSolutions-S10', reason: 'no SSL access needed' },
|
|
51
|
-
], true);
|
|
50
|
+
aws_cdk_lib_1.Validations.of(this.emailBucket.policy).acknowledge({ id: 'AwsSolutions-S10', reason: 'no SSL access needed' });
|
|
52
51
|
/**
|
|
53
52
|
* HOSTED ZONE
|
|
54
53
|
*/
|
|
@@ -81,8 +80,6 @@ class Rootmail extends constructs_1.Construct {
|
|
|
81
80
|
}
|
|
82
81
|
}
|
|
83
82
|
exports.Rootmail = Rootmail;
|
|
84
|
-
_a = JSII_RTTI_SYMBOL_1;
|
|
85
|
-
Rootmail[_a] = { fqn: "@mavogel/awscdk-rootmail.Rootmail", version: "0.0.335" };
|
|
86
83
|
/**
|
|
87
84
|
* Aspect for setting all removal policies to DESTROY
|
|
88
85
|
*/
|
|
@@ -93,4 +90,4 @@ class ApplyDestroyPolicyAspect {
|
|
|
93
90
|
}
|
|
94
91
|
}
|
|
95
92
|
}
|
|
96
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm9vdG1haWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvcm9vdG1haWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSw2Q0FZcUI7QUFDckIscUNBQTBDO0FBQzFDLDJDQUFtRDtBQUNuRCxxQ0FBaUU7QUFDakUseURBQW9EO0FBQ3BELCtDQUEyQztBQWdFM0M7O0dBRUc7QUFDSCxNQUFhLFFBQVMsU0FBUSxzQkFBUztJQVdyQyxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQW9CO1FBQzVELEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFDakIsSUFBSSxDQUFDLHVCQUF1QixHQUFHLCtCQUErQixDQUFDO1FBRS9ELE1BQU0sTUFBTSxHQUFHLEtBQUssQ0FBQyxNQUFNLENBQUM7UUFDNUIsTUFBTSxTQUFTLEdBQUcsS0FBSyxDQUFDLFNBQVMsSUFBSSxLQUFLLENBQUM7UUFDM0MsTUFBTSxrQkFBa0IsR0FBRyxLQUFLLENBQUMsa0JBQWtCLElBQUksc0JBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDekUsTUFBTSxxQkFBcUIsR0FBRyxLQUFLLENBQUMscUJBQXFCLElBQUksU0FBUyxDQUFDO1FBQ3ZFLE1BQU0sOEJBQThCLEdBQUcsS0FBSyxDQUFDLDhCQUE4QixJQUFJLEtBQUssQ0FBQztRQUNyRixNQUFNLHVCQUF1QixHQUFHLEtBQUssQ0FBQyx1QkFBdUIsSUFBSSwyQkFBYSxDQUFDLE1BQU0sQ0FBQztRQUN0RixNQUFNLHFCQUFxQixHQUFHLEtBQUssQ0FBQyxxQkFBcUIsSUFBSSxFQUFFLENBQUM7UUFFaEUsTUFBTSxZQUFZLEdBQUcsbUJBQUssQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLENBQUMsTUFBTSxDQUFDO1FBQzNDLE9BQU8sQ0FBQyxHQUFHLENBQUMsb0JBQW9CLFlBQVksRUFBRSxDQUFDLENBQUM7UUFDaEQsSUFBSSxDQUFDLElBQUEsMkJBQWtCLEVBQUMsWUFBWSxDQUFDLEVBQUUsQ0FBQztZQUN0QyxNQUFNLElBQUksS0FBSyxDQUFDLGtDQUFrQyxZQUFZLHVDQUF1QywwQkFBaUIsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQ3ZJLENBQUM7UUFFRDs7V0FFRztRQUNILElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxvQkFBRSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsYUFBYSxFQUFFO1lBQ3BELGlCQUFpQixFQUFFLG9CQUFFLENBQUMsaUJBQWlCLENBQUMsU0FBUztZQUNqRCxVQUFVLEVBQUUsb0JBQUUsQ0FBQyxnQkFBZ0IsQ0FBQyxVQUFVO1lBQzFDLGFBQWEsRUFBRSx1QkFBdUI7WUFDdEMsaUJBQWlCLEVBQUUsdUJBQXVCLEtBQUssMkJBQWEsQ0FBQyxPQUFPO1NBQ3JFLENBQUMsQ0FBQztRQUNILHlCQUFlLENBQUMsdUJBQXVCLENBQUM7WUFDdEMsSUFBSSxDQUFDLFdBQVc7U0FDakIsRUFBRTtZQUNELEVBQUUsRUFBRSxFQUFFLGlCQUFpQixFQUFFLE1BQU0sRUFBRSw4QkFBOEIsRUFBRTtZQUNqRSxFQUFFLEVBQUUsRUFBRSxrQkFBa0IsRUFBRSxNQUFNLEVBQUUsc0JBQXNCLEVBQUU7U0FDM0QsRUFBRSxJQUFJLENBQUMsQ0FBQztRQUNULElBQUksQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLElBQUkscUJBQUcsQ0FBQyxnQkFBZ0IsQ0FBQyxtQkFBbUIsQ0FBQyxFQUFFLFlBQVksQ0FBQyxDQUFDO1FBRXZGLHlCQUFlLENBQUMsdUJBQXVCLENBQUM7WUFDdEMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxNQUFPO1NBQ3pCLEVBQUU7WUFDRCxFQUFFLEVBQUUsRUFBRSxrQkFBa0IsRUFBRSxNQUFNLEVBQUUsc0JBQXNCLEVBQUU7U0FDM0QsRUFBRSxJQUFJLENBQUMsQ0FBQztRQUVUOztXQUVHO1FBQ0gsTUFBTSxVQUFVLEdBQUcsSUFBSSx5QkFBRyxDQUFDLFVBQVUsQ0FBQyxJQUFJLEVBQUUsWUFBWSxFQUFFO1lBQ3hELFFBQVEsRUFBRSxHQUFHLFNBQVMsSUFBSSxNQUFNLEVBQUU7U0FDbkMsQ0FBQyxDQUFDO1FBRUgsTUFBTSxzQkFBc0IsR0FBRyxJQUFJLHFCQUFHLENBQUMsbUJBQW1CLENBQUMsSUFBSSxFQUFFLHdCQUF3QixFQUFFO1lBQ3pGLGFBQWEsRUFBRSxJQUFJLENBQUMsdUJBQXVCO1lBQzNDLGVBQWUsRUFBRSxVQUFVLENBQUMscUJBQXFCLElBQUksRUFBRTtTQUN4RCxDQUFDLENBQUM7UUFFSCxJQUFJLGlDQUFjLENBQUMsSUFBSSxFQUFFLGdCQUFnQixFQUFFO1lBQ3pDLE1BQU0sRUFBRSxNQUFNO1lBQ2QsU0FBUyxFQUFFLFNBQVM7WUFDcEIsVUFBVSxFQUFFLFVBQVU7WUFDdEIscUJBQXFCLEVBQUUscUJBQXFCO1lBQzVDLHNCQUFzQixFQUFFLHNCQUFzQjtZQUM5QyxrQkFBa0IsRUFBRSxrQkFBa0I7U0FDdkMsQ0FBQyxDQUFDO1FBRUgsSUFBSSx3QkFBVSxDQUFDLElBQUksRUFBRSxZQUFZLEVBQUU7WUFDakMsTUFBTSxFQUFFLE1BQU07WUFDZCxTQUFTLEVBQUUsU0FBUztZQUNwQixXQUFXLEVBQUUsSUFBSSxDQUFDLFdBQVc7WUFDN0Isd0JBQXdCLEVBQUUsS0FBSyxDQUFDLHdCQUF3QjtZQUN4RCxxQkFBcUIsRUFBRSxxQkFBcUI7U0FDN0MsQ0FBQyxDQUFDO1FBRUgsdUNBQXVDO1FBQ3ZDLElBQUksOEJBQThCLEVBQUUsQ0FBQztZQUNuQyxxQkFBTyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLENBQUMsSUFBSSx3QkFBd0IsRUFBRSxDQUFDLENBQUM7UUFDdkQsQ0FBQztJQUNILENBQUM7O0FBckZILDRCQXVGQzs7O0FBRUQ7O0dBRUc7QUFDSCxNQUFNLHdCQUF3QjtJQUNyQixLQUFLLENBQUMsSUFBZ0I7UUFDM0IsSUFBSSxJQUFJLFlBQVkseUJBQVcsRUFBRSxDQUFDO1lBQ2hDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQywyQkFBYSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBQ2pELENBQUM7SUFDSCxDQUFDO0NBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBEdXJhdGlvbixcbiAgU3RhY2ssXG4gIGF3c19pYW0gYXMgaWFtLFxuICBhd3NfbGFtYmRhIGFzIGxhbWJkYSxcbiAgYXdzX3JvdXRlNTMgYXMgcjUzLFxuICBhd3NfczMgYXMgczMsXG4gIGF3c19zc20gYXMgc3NtLFxuICBDZm5SZXNvdXJjZSxcbiAgSUFzcGVjdCxcbiAgUmVtb3ZhbFBvbGljeSxcbiAgQXNwZWN0cyxcbn0gZnJvbSAnYXdzLWNkay1saWInO1xuaW1wb3J0IHsgTmFnU3VwcHJlc3Npb25zIH0gZnJvbSAnY2RrLW5hZyc7XG5pbXBvcnQgeyBDb25zdHJ1Y3QsIElDb25zdHJ1Y3QgfSBmcm9tICdjb25zdHJ1Y3RzJztcbmltcG9ydCB7IGlzU0VTRW5hYmxlZFJlZ2lvbiwgc2VzRW5hYmxlZFJlZ2lvbnMgfSBmcm9tICcuL2NvbW1vbic7XG5pbXBvcnQgeyBIb3N0ZWRab25lRGtpbSB9IGZyb20gJy4vaG9zdGVkLXpvbmUtZGtpbSc7XG5pbXBvcnQgeyBTRVNSZWNlaXZlIH0gZnJvbSAnLi9zZXMtcmVjZWl2ZSc7XG5cbi8qKlxuICogUHJvcGVydGllcyBmb3IgdGhlIGNvbnN0cnVjdFxuICovXG5leHBvcnQgaW50ZXJmYWNlIFJvb3RtYWlsUHJvcHMge1xuICAvKipcbiAgICogRG9tYWluIHVzZWQgZm9yIHJvb3QgbWFpbCBmZWF0dXJlLlxuICAgKi9cbiAgcmVhZG9ubHkgZG9tYWluOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFN1YmRvbWFpbiB1c2VkIGZvciByb290IG1haWwgZmVhdHVyZS5cbiAgICpcbiAgICogQGRlZmF1bHQgJ2F3cydcbiAgICovXG4gIHJlYWRvbmx5IHN1YmRvbWFpbj86IHN0cmluZztcblxuICAvKipcbiAgICogVGhlIHRvdGFsIHRpbWUgdG8gd2FpdCBmb3IgdGhlIEROUyByZWNvcmRzIHRvIGJlIGF2YWlsYWJsZS93aXJlZC5cbiAgICpcbiAgICogQGRlZmF1bHQgRHVyYXRpb24uaG91cnMoMilcbiAgICovXG4gIHJlYWRvbmx5IHRvdGFsVGltZVRvV2lyZUROUz86IER1cmF0aW9uO1xuXG4gIC8qKlxuICAgKiBUaGUgaG9zdGVkIHpvbmUgSUQgb2YgdGhlIGRvbWFpbiB0aGF0IGlzIHJlZ2lzdGVyZWQgUm91dGU1MyBBTkQgaW4gdGhlIHNhbWUgQVdTIGFjY291bnRcbiAgICogdG8gZW5hYmxlIGF1dG93aXJpbmcgb2YgdGhlIEROUyByZWNvcmRzLlxuICAgKlxuICAgKiBAZGVmYXVsdCBlbXRweSBzdHJpbmdcbiAgICovXG4gIHJlYWRvbmx5IHdpcmVETlNUb0hvc3RlZFpvbmVJRD86IHN0cmluZztcblxuICAvKipcbiAgICogVGhlIGN1c3RvbSBTRVMgcmVjZWl2ZSBmdW5jdGlvbiB0byB1c2VcbiAgICpcbiAgICogW2Rpc2FibGUtYXdzbGludDpyZWYtdmlhLWludGVyZmFjZV1cbiAgICpcbiAgICogQGRlZmF1bHQgdGhlIHByb3ZpZGVkIGZ1bmN0aW9ucyB3aXRoaW4gdGhlIGNvbnN0cnVjdFxuICAgKi9cbiAgcmVhZG9ubHkgY3VzdG9tU2VzUmVjZWl2ZUZ1bmN0aW9uPzogbGFtYmRhLkZ1bmN0aW9uO1xuXG4gIC8qKlxuICAgKiBGaWx0ZXJlZCBlbWFpbCBzdWJqZWN0cy4gTk9URTogbXVzdCBub3QgY29udGFpbiBjb21tYXMuXG4gICAqXG4gICAqIEBkZWZhdWx0IFtdXG4gICAqL1xuICByZWFkb25seSBmaWx0ZXJlZEVtYWlsU3ViamVjdHM/OiBzdHJpbmdbXTtcblxuICAvKipcbiAgICogVGhlIHJlbW92YWwgcG9saWN5IGZvciB0aGUgZW1haWwgYnVja2V0XG4gICAqXG4gICAqIEBkZWZhdWx0IFJlbW92YWxQb2xpY3kuUkVUQUlOXG4gICAqL1xuICByZWFkb25seSBlbWFpbEJ1Y2tldERlbGV0ZVBvbGljeT86IFJlbW92YWxQb2xpY3k7XG5cbiAgLyoqXG4gICAqIFdoZXRoZXIgdG8gc2V0IGFsbCByZW1vdmFsIHBvbGljaWVzIHRvIERFU1RST1kuIFRoaXMgaXMgdXNlZnVsIGZvciBpbnRlZ3JhdGlvbiB0ZXN0aW5nIHB1cnBvc2VzLlxuICAgKlxuICAgKiBAZGVmYXVsdCBmYWxzZVxuICAgKi9cbiAgcmVhZG9ubHkgc2V0RGVzdHJveVBvbGljeVRvQWxsUmVzb3VyY2VzPzogYm9vbGVhbjtcbn1cblxuLyoqXG4gKiBSb290bWFpbCBjb25zdHJ1Y3RcbiAqL1xuZXhwb3J0IGNsYXNzIFJvb3RtYWlsIGV4dGVuZHMgQ29uc3RydWN0IHtcbiAgLyoqXG4gICAqIFRoZSBuYW1lIHBhcmFtZXRlciBpbiBTU00gdG8gc3RvcmUgdGhlIGRvbWFpbiBuYW1lIHNlcnZlci5cbiAgICovXG4gIHB1YmxpYyByZWFkb25seSBob3N0ZWRab25lUGFyYW1ldGVyTmFtZTogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBTMyBidWNrZXQgdG8gc3RvcmUgdGhlIHJvb3QgbWFpbHMgaW5cbiAgICovXG4gIHB1YmxpYyByZWFkb25seSBlbWFpbEJ1Y2tldDogczMuQnVja2V0O1xuXG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBSb290bWFpbFByb3BzKSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkKTtcbiAgICB0aGlzLmhvc3RlZFpvbmVQYXJhbWV0ZXJOYW1lID0gJy9yb290bWFpbC9kb21haW5fbmFtZV9zZXJ2ZXJzJztcblxuICAgIGNvbnN0IGRvbWFpbiA9IHByb3BzLmRvbWFpbjtcbiAgICBjb25zdCBzdWJkb21haW4gPSBwcm9wcy5zdWJkb21haW4gPz8gJ2F3cyc7XG4gICAgY29uc3QgdG90YWxUaW1lVG9XaXJlRE5TID0gcHJvcHMudG90YWxUaW1lVG9XaXJlRE5TID8/IER1cmF0aW9uLmhvdXJzKDIpO1xuICAgIGNvbnN0IHdpcmVETlNUb0hvc3RlZFpvbmVJRCA9IHByb3BzLndpcmVETlNUb0hvc3RlZFpvbmVJRCA/PyB1bmRlZmluZWQ7XG4gICAgY29uc3Qgc2V0RGVzdHJveVBvbGljeVRvQWxsUmVzb3VyY2VzID0gcHJvcHMuc2V0RGVzdHJveVBvbGljeVRvQWxsUmVzb3VyY2VzID8/IGZhbHNlO1xuICAgIGNvbnN0IGVtYWlsQnVja2V0RGVsZXRlUG9saWN5ID0gcHJvcHMuZW1haWxCdWNrZXREZWxldGVQb2xpY3kgPz8gUmVtb3ZhbFBvbGljeS5SRVRBSU47XG4gICAgY29uc3QgZmlsdGVyZWRFbWFpbFN1YmplY3RzID0gcHJvcHMuZmlsdGVyZWRFbWFpbFN1YmplY3RzIHx8IFtdO1xuXG4gICAgY29uc3QgZGVwbG95UmVnaW9uID0gU3RhY2sub2YodGhpcykucmVnaW9uO1xuICAgIGNvbnNvbGUubG9nKGBEZXBsb3kgcmVnaW9uIGlzICR7ZGVwbG95UmVnaW9ufWApO1xuICAgIGlmICghaXNTRVNFbmFibGVkUmVnaW9uKGRlcGxveVJlZ2lvbikpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihgU0VTIGlzIG5vdCBhdmFpbGFibGUgaW4gcmVnaW9uICR7ZGVwbG95UmVnaW9ufS4gVXNlIG9uZSBvZiB0aGUgZm9sbG93aW5nIHJlZ2lvbnM6ICR7c2VzRW5hYmxlZFJlZ2lvbnMuam9pbignLCAnKX1gKTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBFTUFJTCBCdWNrZXRcbiAgICAgKi9cbiAgICB0aGlzLmVtYWlsQnVja2V0ID0gbmV3IHMzLkJ1Y2tldCh0aGlzLCAnRW1haWxCdWNrZXQnLCB7XG4gICAgICBibG9ja1B1YmxpY0FjY2VzczogczMuQmxvY2tQdWJsaWNBY2Nlc3MuQkxPQ0tfQUxMLFxuICAgICAgZW5jcnlwdGlvbjogczMuQnVja2V0RW5jcnlwdGlvbi5TM19NQU5BR0VELFxuICAgICAgcmVtb3ZhbFBvbGljeTogZW1haWxCdWNrZXREZWxldGVQb2xpY3ksXG4gICAgICBhdXRvRGVsZXRlT2JqZWN0czogZW1haWxCdWNrZXREZWxldGVQb2xpY3kgPT09IFJlbW92YWxQb2xpY3kuREVTVFJPWSxcbiAgICB9KTtcbiAgICBOYWdTdXBwcmVzc2lvbnMuYWRkUmVzb3VyY2VTdXBwcmVzc2lvbnMoW1xuICAgICAgdGhpcy5lbWFpbEJ1Y2tldCxcbiAgICBdLCBbXG4gICAgICB7IGlkOiAnQXdzU29sdXRpb25zLVMxJywgcmVhc29uOiAnbm8gc2VydmVyIGFjY2VzcyBsb2dzIG5lZWRlZCcgfSxcbiAgICAgIHsgaWQ6ICdBd3NTb2x1dGlvbnMtUzEwJywgcmVhc29uOiAnbm8gU1NMIGFjY2VzcyBuZWVkZWQnIH0sXG4gICAgXSwgdHJ1ZSk7XG4gICAgdGhpcy5lbWFpbEJ1Y2tldC5ncmFudFB1dChuZXcgaWFtLlNlcnZpY2VQcmluY2lwYWwoJ3Nlcy5hbWF6b25hd3MuY29tJyksICdSb290TWFpbC8qJyk7XG5cbiAgICBOYWdTdXBwcmVzc2lvbnMuYWRkUmVzb3VyY2VTdXBwcmVzc2lvbnMoW1xuICAgICAgdGhpcy5lbWFpbEJ1Y2tldC5wb2xpY3khLFxuICAgIF0sIFtcbiAgICAgIHsgaWQ6ICdBd3NTb2x1dGlvbnMtUzEwJywgcmVhc29uOiAnbm8gU1NMIGFjY2VzcyBuZWVkZWQnIH0sXG4gICAgXSwgdHJ1ZSk7XG5cbiAgICAvKipcbiAgICAgKiBIT1NURUQgWk9ORVxuICAgICAqL1xuICAgIGNvbnN0IGhvc3RlZFpvbmUgPSBuZXcgcjUzLkhvc3RlZFpvbmUodGhpcywgJ0hvc3RlZFpvbmUnLCB7XG4gICAgICB6b25lTmFtZTogYCR7c3ViZG9tYWlufS4ke2RvbWFpbn1gLFxuICAgIH0pO1xuXG4gICAgY29uc3QgaG9zdGVkWm9uZVNTTVBhcmFtZXRlciA9IG5ldyBzc20uU3RyaW5nTGlzdFBhcmFtZXRlcih0aGlzLCAnSG9zdGVkWm9uZVNTTVBhcmFtZXRlcicsIHtcbiAgICAgIHBhcmFtZXRlck5hbWU6IHRoaXMuaG9zdGVkWm9uZVBhcmFtZXRlck5hbWUsXG4gICAgICBzdHJpbmdMaXN0VmFsdWU6IGhvc3RlZFpvbmUuaG9zdGVkWm9uZU5hbWVTZXJ2ZXJzIHx8IFtdLFxuICAgIH0pO1xuXG4gICAgbmV3IEhvc3RlZFpvbmVEa2ltKHRoaXMsICdIb3N0ZWRab25lRGtpbScsIHtcbiAgICAgIGRvbWFpbjogZG9tYWluLFxuICAgICAgc3ViZG9tYWluOiBzdWJkb21haW4sXG4gICAgICBob3N0ZWRab25lOiBob3N0ZWRab25lLFxuICAgICAgd2lyZUROU1RvSG9zdGVkWm9uZUlEOiB3aXJlRE5TVG9Ib3N0ZWRab25lSUQsXG4gICAgICBob3N0ZWRab25lU1NNUGFyYW1ldGVyOiBob3N0ZWRab25lU1NNUGFyYW1ldGVyLFxuICAgICAgdG90YWxUaW1lVG9XaXJlRE5TOiB0b3RhbFRpbWVUb1dpcmVETlMsXG4gICAgfSk7XG5cbiAgICBuZXcgU0VTUmVjZWl2ZSh0aGlzLCAnU0VTUmVjZWl2ZScsIHtcbiAgICAgIGRvbWFpbjogZG9tYWluLFxuICAgICAgc3ViZG9tYWluOiBzdWJkb21haW4sXG4gICAgICBlbWFpbGJ1Y2tldDogdGhpcy5lbWFpbEJ1Y2tldCxcbiAgICAgIGN1c3RvbVNlc1JlY2VpdmVGdW5jdGlvbjogcHJvcHMuY3VzdG9tU2VzUmVjZWl2ZUZ1bmN0aW9uLFxuICAgICAgZmlsdGVyZWRFbWFpbFN1YmplY3RzOiBmaWx0ZXJlZEVtYWlsU3ViamVjdHMsXG4gICAgfSk7XG5cbiAgICAvLyBJZiBEZXN0cm95IFBvbGljeSBBc3BlY3QgaXMgcHJlc2VudDpcbiAgICBpZiAoc2V0RGVzdHJveVBvbGljeVRvQWxsUmVzb3VyY2VzKSB7XG4gICAgICBBc3BlY3RzLm9mKHRoaXMpLmFkZChuZXcgQXBwbHlEZXN0cm95UG9saWN5QXNwZWN0KCkpO1xuICAgIH1cbiAgfVxuXG59XG5cbi8qKlxuICogQXNwZWN0IGZvciBzZXR0aW5nIGFsbCByZW1vdmFsIHBvbGljaWVzIHRvIERFU1RST1lcbiAqL1xuY2xhc3MgQXBwbHlEZXN0cm95UG9saWN5QXNwZWN0IGltcGxlbWVudHMgSUFzcGVjdCB7XG4gIHB1YmxpYyB2aXNpdChub2RlOiBJQ29uc3RydWN0KTogdm9pZCB7XG4gICAgaWYgKG5vZGUgaW5zdGFuY2VvZiBDZm5SZXNvdXJjZSkge1xuICAgICAgbm9kZS5hcHBseVJlbW92YWxQb2xpY3koUmVtb3ZhbFBvbGljeS5ERVNUUk9ZKTtcbiAgICB9XG4gIH1cbn0iXX0=
|
|
93
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm9vdG1haWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvcm9vdG1haWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLDZDQWFxQjtBQUNyQiwyQ0FBbUQ7QUFDbkQscUNBQWlFO0FBQ2pFLHlEQUFvRDtBQUNwRCwrQ0FBMkM7QUFnRTNDOztHQUVHO0FBQ0gsTUFBYSxRQUFTLFNBQVEsc0JBQVM7O0lBQ3JDOztPQUVHO0lBQ2EsdUJBQXVCLENBQVM7SUFFaEQ7O09BRUc7SUFDYSxXQUFXLENBQVk7SUFFdkMsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUFvQjtRQUM1RCxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBQ2pCLElBQUksQ0FBQyx1QkFBdUIsR0FBRywrQkFBK0IsQ0FBQztRQUUvRCxNQUFNLE1BQU0sR0FBRyxLQUFLLENBQUMsTUFBTSxDQUFDO1FBQzVCLE1BQU0sU0FBUyxHQUFHLEtBQUssQ0FBQyxTQUFTLElBQUksS0FBSyxDQUFDO1FBQzNDLE1BQU0sa0JBQWtCLEdBQUcsS0FBSyxDQUFDLGtCQUFrQixJQUFJLHNCQUFRLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ3pFLE1BQU0scUJBQXFCLEdBQUcsS0FBSyxDQUFDLHFCQUFxQixJQUFJLFNBQVMsQ0FBQztRQUN2RSxNQUFNLDhCQUE4QixHQUFHLEtBQUssQ0FBQyw4QkFBOEIsSUFBSSxLQUFLLENBQUM7UUFDckYsTUFBTSx1QkFBdUIsR0FBRyxLQUFLLENBQUMsdUJBQXVCLElBQUksMkJBQWEsQ0FBQyxNQUFNLENBQUM7UUFDdEYsTUFBTSxxQkFBcUIsR0FBRyxLQUFLLENBQUMscUJBQXFCLElBQUksRUFBRSxDQUFDO1FBRWhFLE1BQU0sWUFBWSxHQUFHLG1CQUFLLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxDQUFDLE1BQU0sQ0FBQztRQUMzQyxPQUFPLENBQUMsR0FBRyxDQUFDLG9CQUFvQixZQUFZLEVBQUUsQ0FBQyxDQUFDO1FBQ2hELElBQUksQ0FBQyxJQUFBLDJCQUFrQixFQUFDLFlBQVksQ0FBQyxFQUFFLENBQUM7WUFDdEMsTUFBTSxJQUFJLEtBQUssQ0FBQyxrQ0FBa0MsWUFBWSx1Q0FBdUMsMEJBQWlCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUN2SSxDQUFDO1FBRUQ7O1dBRUc7UUFDSCxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksb0JBQUUsQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLGFBQWEsRUFBRTtZQUNwRCxpQkFBaUIsRUFBRSxvQkFBRSxDQUFDLGlCQUFpQixDQUFDLFNBQVM7WUFDakQsVUFBVSxFQUFFLG9CQUFFLENBQUMsZ0JBQWdCLENBQUMsVUFBVTtZQUMxQyxhQUFhLEVBQUUsdUJBQXVCO1lBQ3RDLGlCQUFpQixFQUFFLHVCQUF1QixLQUFLLDJCQUFhLENBQUMsT0FBTztTQUNyRSxDQUFDLENBQUM7UUFDSCx5QkFBVyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUMsV0FBVyxDQUFDLEVBQUUsRUFBRSxFQUFFLGlCQUFpQixFQUFFLE1BQU0sRUFBRSw4QkFBOEIsRUFBRSxDQUFDLENBQUM7UUFDaEgseUJBQVcsQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLFdBQVcsQ0FBQyxFQUFFLEVBQUUsRUFBRSxrQkFBa0IsRUFBRSxNQUFNLEVBQUUsc0JBQXNCLEVBQUUsQ0FBQyxDQUFDO1FBQ3pHLElBQUksQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLElBQUkscUJBQUcsQ0FBQyxnQkFBZ0IsQ0FBQyxtQkFBbUIsQ0FBQyxFQUFFLFlBQVksQ0FBQyxDQUFDO1FBRXZGLHlCQUFXLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsTUFBTyxDQUFDLENBQUMsV0FBVyxDQUFDLEVBQUUsRUFBRSxFQUFFLGtCQUFrQixFQUFFLE1BQU0sRUFBRSxzQkFBc0IsRUFBRSxDQUFDLENBQUM7UUFFakg7O1dBRUc7UUFDSCxNQUFNLFVBQVUsR0FBRyxJQUFJLHlCQUFHLENBQUMsVUFBVSxDQUFDLElBQUksRUFBRSxZQUFZLEVBQUU7WUFDeEQsUUFBUSxFQUFFLEdBQUcsU0FBUyxJQUFJLE1BQU0sRUFBRTtTQUNuQyxDQUFDLENBQUM7UUFFSCxNQUFNLHNCQUFzQixHQUFHLElBQUkscUJBQUcsQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLEVBQUUsd0JBQXdCLEVBQUU7WUFDekYsYUFBYSxFQUFFLElBQUksQ0FBQyx1QkFBdUI7WUFDM0MsZUFBZSxFQUFFLFVBQVUsQ0FBQyxxQkFBcUIsSUFBSSxFQUFFO1NBQ3hELENBQUMsQ0FBQztRQUVILElBQUksaUNBQWMsQ0FBQyxJQUFJLEVBQUUsZ0JBQWdCLEVBQUU7WUFDekMsTUFBTSxFQUFFLE1BQU07WUFDZCxTQUFTLEVBQUUsU0FBUztZQUNwQixVQUFVLEVBQUUsVUFBVTtZQUN0QixxQkFBcUIsRUFBRSxxQkFBcUI7WUFDNUMsc0JBQXNCLEVBQUUsc0JBQXNCO1lBQzlDLGtCQUFrQixFQUFFLGtCQUFrQjtTQUN2QyxDQUFDLENBQUM7UUFFSCxJQUFJLHdCQUFVLENBQUMsSUFBSSxFQUFFLFlBQVksRUFBRTtZQUNqQyxNQUFNLEVBQUUsTUFBTTtZQUNkLFNBQVMsRUFBRSxTQUFTO1lBQ3BCLFdBQVcsRUFBRSxJQUFJLENBQUMsV0FBVztZQUM3Qix3QkFBd0IsRUFBRSxLQUFLLENBQUMsd0JBQXdCO1lBQ3hELHFCQUFxQixFQUFFLHFCQUFxQjtTQUM3QyxDQUFDLENBQUM7UUFFSCx1Q0FBdUM7UUFDdkMsSUFBSSw4QkFBOEIsRUFBRSxDQUFDO1lBQ25DLHFCQUFPLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxDQUFDLEdBQUcsQ0FBQyxJQUFJLHdCQUF3QixFQUFFLENBQUMsQ0FBQztRQUN2RCxDQUFDO0lBQ0gsQ0FBQzs7QUE3RUgsNEJBK0VDO0FBRUQ7O0dBRUc7QUFDSCxNQUFNLHdCQUF3QjtJQUNyQixLQUFLLENBQUMsSUFBZ0I7UUFDM0IsSUFBSSxJQUFJLFlBQVkseUJBQVcsRUFBRSxDQUFDO1lBQ2hDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQywyQkFBYSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBQ2pELENBQUM7SUFDSCxDQUFDO0NBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBEdXJhdGlvbixcbiAgU3RhY2ssXG4gIGF3c19pYW0gYXMgaWFtLFxuICBhd3NfbGFtYmRhIGFzIGxhbWJkYSxcbiAgYXdzX3JvdXRlNTMgYXMgcjUzLFxuICBhd3NfczMgYXMgczMsXG4gIGF3c19zc20gYXMgc3NtLFxuICBDZm5SZXNvdXJjZSxcbiAgSUFzcGVjdCxcbiAgUmVtb3ZhbFBvbGljeSxcbiAgQXNwZWN0cyxcbiAgVmFsaWRhdGlvbnMsXG59IGZyb20gJ2F3cy1jZGstbGliJztcbmltcG9ydCB7IENvbnN0cnVjdCwgSUNvbnN0cnVjdCB9IGZyb20gJ2NvbnN0cnVjdHMnO1xuaW1wb3J0IHsgaXNTRVNFbmFibGVkUmVnaW9uLCBzZXNFbmFibGVkUmVnaW9ucyB9IGZyb20gJy4vY29tbW9uJztcbmltcG9ydCB7IEhvc3RlZFpvbmVEa2ltIH0gZnJvbSAnLi9ob3N0ZWQtem9uZS1ka2ltJztcbmltcG9ydCB7IFNFU1JlY2VpdmUgfSBmcm9tICcuL3Nlcy1yZWNlaXZlJztcblxuLyoqXG4gKiBQcm9wZXJ0aWVzIGZvciB0aGUgY29uc3RydWN0XG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgUm9vdG1haWxQcm9wcyB7XG4gIC8qKlxuICAgKiBEb21haW4gdXNlZCBmb3Igcm9vdCBtYWlsIGZlYXR1cmUuXG4gICAqL1xuICByZWFkb25seSBkb21haW46IHN0cmluZztcblxuICAvKipcbiAgICogU3ViZG9tYWluIHVzZWQgZm9yIHJvb3QgbWFpbCBmZWF0dXJlLlxuICAgKlxuICAgKiBAZGVmYXVsdCAnYXdzJ1xuICAgKi9cbiAgcmVhZG9ubHkgc3ViZG9tYWluPzogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBUaGUgdG90YWwgdGltZSB0byB3YWl0IGZvciB0aGUgRE5TIHJlY29yZHMgdG8gYmUgYXZhaWxhYmxlL3dpcmVkLlxuICAgKlxuICAgKiBAZGVmYXVsdCBEdXJhdGlvbi5ob3VycygyKVxuICAgKi9cbiAgcmVhZG9ubHkgdG90YWxUaW1lVG9XaXJlRE5TPzogRHVyYXRpb247XG5cbiAgLyoqXG4gICAqIFRoZSBob3N0ZWQgem9uZSBJRCBvZiB0aGUgZG9tYWluIHRoYXQgaXMgcmVnaXN0ZXJlZCBSb3V0ZTUzIEFORCBpbiB0aGUgc2FtZSBBV1MgYWNjb3VudFxuICAgKiB0byBlbmFibGUgYXV0b3dpcmluZyBvZiB0aGUgRE5TIHJlY29yZHMuXG4gICAqXG4gICAqIEBkZWZhdWx0IGVtdHB5IHN0cmluZ1xuICAgKi9cbiAgcmVhZG9ubHkgd2lyZUROU1RvSG9zdGVkWm9uZUlEPzogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBUaGUgY3VzdG9tIFNFUyByZWNlaXZlIGZ1bmN0aW9uIHRvIHVzZVxuICAgKlxuICAgKiBbZGlzYWJsZS1hd3NsaW50OnJlZi12aWEtaW50ZXJmYWNlXVxuICAgKlxuICAgKiBAZGVmYXVsdCB0aGUgcHJvdmlkZWQgZnVuY3Rpb25zIHdpdGhpbiB0aGUgY29uc3RydWN0XG4gICAqL1xuICByZWFkb25seSBjdXN0b21TZXNSZWNlaXZlRnVuY3Rpb24/OiBsYW1iZGEuRnVuY3Rpb247XG5cbiAgLyoqXG4gICAqIEZpbHRlcmVkIGVtYWlsIHN1YmplY3RzLiBOT1RFOiBtdXN0IG5vdCBjb250YWluIGNvbW1hcy5cbiAgICpcbiAgICogQGRlZmF1bHQgW11cbiAgICovXG4gIHJlYWRvbmx5IGZpbHRlcmVkRW1haWxTdWJqZWN0cz86IHN0cmluZ1tdO1xuXG4gIC8qKlxuICAgKiBUaGUgcmVtb3ZhbCBwb2xpY3kgZm9yIHRoZSBlbWFpbCBidWNrZXRcbiAgICpcbiAgICogQGRlZmF1bHQgUmVtb3ZhbFBvbGljeS5SRVRBSU5cbiAgICovXG4gIHJlYWRvbmx5IGVtYWlsQnVja2V0RGVsZXRlUG9saWN5PzogUmVtb3ZhbFBvbGljeTtcblxuICAvKipcbiAgICogV2hldGhlciB0byBzZXQgYWxsIHJlbW92YWwgcG9saWNpZXMgdG8gREVTVFJPWS4gVGhpcyBpcyB1c2VmdWwgZm9yIGludGVncmF0aW9uIHRlc3RpbmcgcHVycG9zZXMuXG4gICAqXG4gICAqIEBkZWZhdWx0IGZhbHNlXG4gICAqL1xuICByZWFkb25seSBzZXREZXN0cm95UG9saWN5VG9BbGxSZXNvdXJjZXM/OiBib29sZWFuO1xufVxuXG4vKipcbiAqIFJvb3RtYWlsIGNvbnN0cnVjdFxuICovXG5leHBvcnQgY2xhc3MgUm9vdG1haWwgZXh0ZW5kcyBDb25zdHJ1Y3Qge1xuICAvKipcbiAgICogVGhlIG5hbWUgcGFyYW1ldGVyIGluIFNTTSB0byBzdG9yZSB0aGUgZG9tYWluIG5hbWUgc2VydmVyLlxuICAgKi9cbiAgcHVibGljIHJlYWRvbmx5IGhvc3RlZFpvbmVQYXJhbWV0ZXJOYW1lOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFMzIGJ1Y2tldCB0byBzdG9yZSB0aGUgcm9vdCBtYWlscyBpblxuICAgKi9cbiAgcHVibGljIHJlYWRvbmx5IGVtYWlsQnVja2V0OiBzMy5CdWNrZXQ7XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IFJvb3RtYWlsUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQpO1xuICAgIHRoaXMuaG9zdGVkWm9uZVBhcmFtZXRlck5hbWUgPSAnL3Jvb3RtYWlsL2RvbWFpbl9uYW1lX3NlcnZlcnMnO1xuXG4gICAgY29uc3QgZG9tYWluID0gcHJvcHMuZG9tYWluO1xuICAgIGNvbnN0IHN1YmRvbWFpbiA9IHByb3BzLnN1YmRvbWFpbiA/PyAnYXdzJztcbiAgICBjb25zdCB0b3RhbFRpbWVUb1dpcmVETlMgPSBwcm9wcy50b3RhbFRpbWVUb1dpcmVETlMgPz8gRHVyYXRpb24uaG91cnMoMik7XG4gICAgY29uc3Qgd2lyZUROU1RvSG9zdGVkWm9uZUlEID0gcHJvcHMud2lyZUROU1RvSG9zdGVkWm9uZUlEID8/IHVuZGVmaW5lZDtcbiAgICBjb25zdCBzZXREZXN0cm95UG9saWN5VG9BbGxSZXNvdXJjZXMgPSBwcm9wcy5zZXREZXN0cm95UG9saWN5VG9BbGxSZXNvdXJjZXMgPz8gZmFsc2U7XG4gICAgY29uc3QgZW1haWxCdWNrZXREZWxldGVQb2xpY3kgPSBwcm9wcy5lbWFpbEJ1Y2tldERlbGV0ZVBvbGljeSA/PyBSZW1vdmFsUG9saWN5LlJFVEFJTjtcbiAgICBjb25zdCBmaWx0ZXJlZEVtYWlsU3ViamVjdHMgPSBwcm9wcy5maWx0ZXJlZEVtYWlsU3ViamVjdHMgfHwgW107XG5cbiAgICBjb25zdCBkZXBsb3lSZWdpb24gPSBTdGFjay5vZih0aGlzKS5yZWdpb247XG4gICAgY29uc29sZS5sb2coYERlcGxveSByZWdpb24gaXMgJHtkZXBsb3lSZWdpb259YCk7XG4gICAgaWYgKCFpc1NFU0VuYWJsZWRSZWdpb24oZGVwbG95UmVnaW9uKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKGBTRVMgaXMgbm90IGF2YWlsYWJsZSBpbiByZWdpb24gJHtkZXBsb3lSZWdpb259LiBVc2Ugb25lIG9mIHRoZSBmb2xsb3dpbmcgcmVnaW9uczogJHtzZXNFbmFibGVkUmVnaW9ucy5qb2luKCcsICcpfWApO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIEVNQUlMIEJ1Y2tldFxuICAgICAqL1xuICAgIHRoaXMuZW1haWxCdWNrZXQgPSBuZXcgczMuQnVja2V0KHRoaXMsICdFbWFpbEJ1Y2tldCcsIHtcbiAgICAgIGJsb2NrUHVibGljQWNjZXNzOiBzMy5CbG9ja1B1YmxpY0FjY2Vzcy5CTE9DS19BTEwsXG4gICAgICBlbmNyeXB0aW9uOiBzMy5CdWNrZXRFbmNyeXB0aW9uLlMzX01BTkFHRUQsXG4gICAgICByZW1vdmFsUG9saWN5OiBlbWFpbEJ1Y2tldERlbGV0ZVBvbGljeSxcbiAgICAgIGF1dG9EZWxldGVPYmplY3RzOiBlbWFpbEJ1Y2tldERlbGV0ZVBvbGljeSA9PT0gUmVtb3ZhbFBvbGljeS5ERVNUUk9ZLFxuICAgIH0pO1xuICAgIFZhbGlkYXRpb25zLm9mKHRoaXMuZW1haWxCdWNrZXQpLmFja25vd2xlZGdlKHsgaWQ6ICdBd3NTb2x1dGlvbnMtUzEnLCByZWFzb246ICdubyBzZXJ2ZXIgYWNjZXNzIGxvZ3MgbmVlZGVkJyB9KTtcbiAgICBWYWxpZGF0aW9ucy5vZih0aGlzLmVtYWlsQnVja2V0KS5hY2tub3dsZWRnZSh7IGlkOiAnQXdzU29sdXRpb25zLVMxMCcsIHJlYXNvbjogJ25vIFNTTCBhY2Nlc3MgbmVlZGVkJyB9KTtcbiAgICB0aGlzLmVtYWlsQnVja2V0LmdyYW50UHV0KG5ldyBpYW0uU2VydmljZVByaW5jaXBhbCgnc2VzLmFtYXpvbmF3cy5jb20nKSwgJ1Jvb3RNYWlsLyonKTtcblxuICAgIFZhbGlkYXRpb25zLm9mKHRoaXMuZW1haWxCdWNrZXQucG9saWN5ISkuYWNrbm93bGVkZ2UoeyBpZDogJ0F3c1NvbHV0aW9ucy1TMTAnLCByZWFzb246ICdubyBTU0wgYWNjZXNzIG5lZWRlZCcgfSk7XG5cbiAgICAvKipcbiAgICAgKiBIT1NURUQgWk9ORVxuICAgICAqL1xuICAgIGNvbnN0IGhvc3RlZFpvbmUgPSBuZXcgcjUzLkhvc3RlZFpvbmUodGhpcywgJ0hvc3RlZFpvbmUnLCB7XG4gICAgICB6b25lTmFtZTogYCR7c3ViZG9tYWlufS4ke2RvbWFpbn1gLFxuICAgIH0pO1xuXG4gICAgY29uc3QgaG9zdGVkWm9uZVNTTVBhcmFtZXRlciA9IG5ldyBzc20uU3RyaW5nTGlzdFBhcmFtZXRlcih0aGlzLCAnSG9zdGVkWm9uZVNTTVBhcmFtZXRlcicsIHtcbiAgICAgIHBhcmFtZXRlck5hbWU6IHRoaXMuaG9zdGVkWm9uZVBhcmFtZXRlck5hbWUsXG4gICAgICBzdHJpbmdMaXN0VmFsdWU6IGhvc3RlZFpvbmUuaG9zdGVkWm9uZU5hbWVTZXJ2ZXJzIHx8IFtdLFxuICAgIH0pO1xuXG4gICAgbmV3IEhvc3RlZFpvbmVEa2ltKHRoaXMsICdIb3N0ZWRab25lRGtpbScsIHtcbiAgICAgIGRvbWFpbjogZG9tYWluLFxuICAgICAgc3ViZG9tYWluOiBzdWJkb21haW4sXG4gICAgICBob3N0ZWRab25lOiBob3N0ZWRab25lLFxuICAgICAgd2lyZUROU1RvSG9zdGVkWm9uZUlEOiB3aXJlRE5TVG9Ib3N0ZWRab25lSUQsXG4gICAgICBob3N0ZWRab25lU1NNUGFyYW1ldGVyOiBob3N0ZWRab25lU1NNUGFyYW1ldGVyLFxuICAgICAgdG90YWxUaW1lVG9XaXJlRE5TOiB0b3RhbFRpbWVUb1dpcmVETlMsXG4gICAgfSk7XG5cbiAgICBuZXcgU0VTUmVjZWl2ZSh0aGlzLCAnU0VTUmVjZWl2ZScsIHtcbiAgICAgIGRvbWFpbjogZG9tYWluLFxuICAgICAgc3ViZG9tYWluOiBzdWJkb21haW4sXG4gICAgICBlbWFpbGJ1Y2tldDogdGhpcy5lbWFpbEJ1Y2tldCxcbiAgICAgIGN1c3RvbVNlc1JlY2VpdmVGdW5jdGlvbjogcHJvcHMuY3VzdG9tU2VzUmVjZWl2ZUZ1bmN0aW9uLFxuICAgICAgZmlsdGVyZWRFbWFpbFN1YmplY3RzOiBmaWx0ZXJlZEVtYWlsU3ViamVjdHMsXG4gICAgfSk7XG5cbiAgICAvLyBJZiBEZXN0cm95IFBvbGljeSBBc3BlY3QgaXMgcHJlc2VudDpcbiAgICBpZiAoc2V0RGVzdHJveVBvbGljeVRvQWxsUmVzb3VyY2VzKSB7XG4gICAgICBBc3BlY3RzLm9mKHRoaXMpLmFkZChuZXcgQXBwbHlEZXN0cm95UG9saWN5QXNwZWN0KCkpO1xuICAgIH1cbiAgfVxuXG59XG5cbi8qKlxuICogQXNwZWN0IGZvciBzZXR0aW5nIGFsbCByZW1vdmFsIHBvbGljaWVzIHRvIERFU1RST1lcbiAqL1xuY2xhc3MgQXBwbHlEZXN0cm95UG9saWN5QXNwZWN0IGltcGxlbWVudHMgSUFzcGVjdCB7XG4gIHB1YmxpYyB2aXNpdChub2RlOiBJQ29uc3RydWN0KTogdm9pZCB7XG4gICAgaWYgKG5vZGUgaW5zdGFuY2VvZiBDZm5SZXNvdXJjZSkge1xuICAgICAgbm9kZS5hcHBseVJlbW92YWxQb2xpY3koUmVtb3ZhbFBvbGljeS5ERVNUUk9ZKTtcbiAgICB9XG4gIH1cbn0iXX0=
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { OnEventRequest } from './custom-resource-types';
|
|
2
2
|
export declare const PROP_EMAILBUCKET_NAME = "EmailBucketName";
|
|
3
3
|
export interface IsCompleteHandlerResponse {
|
|
4
4
|
IsComplete: boolean;
|
|
5
5
|
}
|
|
6
|
-
export declare function handler(event:
|
|
6
|
+
export declare function handler(event: OnEventRequest): Promise<IsCompleteHandlerResponse>;
|
|
@@ -36,4 +36,4 @@ async function handler(event) {
|
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
;
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
39
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VzLXJlY2VpcHQtcnVsZXNldC1hY3RpdmF0aW9uLmlzLWNvbXBsZXRlLWhhbmRsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvc2VzLXJlY2VpcHQtcnVsZXNldC1hY3RpdmF0aW9uLmlzLWNvbXBsZXRlLWhhbmRsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBWUEsMEJBK0JDO0FBM0NELGtEQUF3QztBQUUzQixRQUFBLHFCQUFxQixHQUFHLGlCQUFpQixDQUFDO0FBRXZELE1BQU0sT0FBTyxHQUFHLHdDQUF3QyxDQUFDO0FBRXpELE1BQU0sRUFBRSxHQUFHLElBQUksY0FBRSxFQUFFLENBQUM7QUFNYixLQUFLLFVBQVUsT0FBTyxDQUFDLEtBQXFCO0lBQ2pELE1BQU0sZUFBZSxHQUFHLEtBQUssQ0FBQyxrQkFBa0IsQ0FBQyw2QkFBcUIsQ0FBQyxDQUFDO0lBRXhFLFFBQVEsS0FBSyxDQUFDLFdBQVcsRUFBRSxDQUFDO1FBQzFCLEtBQUssUUFBUTtZQUNYLE9BQU8sQ0FBQyxHQUFHLENBQUMsZUFBZSxPQUFPLHVDQUF1QyxlQUFlLEVBQUUsQ0FBQyxDQUFDO1lBQzVGLCtEQUErRDtZQUMvRCw2Q0FBNkM7WUFDN0MsTUFBTSxNQUFNLEdBQUcsTUFBTSxFQUFFLENBQUMsVUFBVSxDQUFDO2dCQUNqQyxNQUFNLEVBQUUsZUFBZTtnQkFDdkIsR0FBRyxFQUFFLE9BQU87YUFDYixDQUFDLENBQUM7WUFFSCwyQkFBMkI7WUFDM0IsSUFBSSxNQUFNLENBQUMsU0FBUyxDQUFDLGNBQWMsS0FBSyxHQUFHLEVBQUUsQ0FBQztnQkFDNUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxRQUFRLE9BQU8sK0JBQStCLENBQUMsQ0FBQztnQkFDNUQsT0FBTztvQkFDTCxVQUFVLEVBQUUsS0FBSztpQkFDbEIsQ0FBQztZQUNKLENBQUM7WUFFRCxPQUFPLENBQUMsR0FBRyxDQUFDLFFBQVEsT0FBTyx3Q0FBd0MsQ0FBQyxDQUFDO1lBQ3JFLE9BQU87Z0JBQ0wsVUFBVSxFQUFFLElBQUk7YUFDakIsQ0FBQztRQUNKLEtBQUssUUFBUSxDQUFDO1FBQ2QsS0FBSyxRQUFRO1lBQ1gsT0FBTztnQkFDTCxVQUFVLEVBQUUsSUFBSTthQUNqQixDQUFDO0lBQ04sQ0FBQztBQUNILENBQUM7QUFBQSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUzMgfSBmcm9tICdAYXdzLXNkay9jbGllbnQtczMnO1xuaW1wb3J0IHsgT25FdmVudFJlcXVlc3QgfSBmcm9tICcuL2N1c3RvbS1yZXNvdXJjZS10eXBlcyc7XG5leHBvcnQgY29uc3QgUFJPUF9FTUFJTEJVQ0tFVF9OQU1FID0gJ0VtYWlsQnVja2V0TmFtZSc7XG5cbmNvbnN0IGZpbGVLZXkgPSAnUm9vdE1haWwvQU1BWk9OX1NFU19TRVRVUF9OT1RJRklDQVRJT04nO1xuXG5jb25zdCBzMyA9IG5ldyBTMygpO1xuXG5leHBvcnQgaW50ZXJmYWNlIElzQ29tcGxldGVIYW5kbGVyUmVzcG9uc2Uge1xuICBJc0NvbXBsZXRlOiBib29sZWFuO1xufVxuXG5leHBvcnQgYXN5bmMgZnVuY3Rpb24gaGFuZGxlcihldmVudDogT25FdmVudFJlcXVlc3QpOiBQcm9taXNlPElzQ29tcGxldGVIYW5kbGVyUmVzcG9uc2U+IHtcbiAgY29uc3QgZW1haWxCdWNrZXROYW1lID0gZXZlbnQuUmVzb3VyY2VQcm9wZXJ0aWVzW1BST1BfRU1BSUxCVUNLRVRfTkFNRV07XG5cbiAgc3dpdGNoIChldmVudC5SZXF1ZXN0VHlwZSkge1xuICAgIGNhc2UgJ0NyZWF0ZSc6XG4gICAgICBjb25zb2xlLmxvZyhgVGVzdGluZyBpZiAnJHtmaWxlS2V5fScgZmlsZSBpcyBwcmVzZW50IGluIHRoZSBTMyBidWNrZXQ6ICR7ZW1haWxCdWNrZXROYW1lfWApO1xuICAgICAgLy8gUm9vdE1haWwvQU1BWk9OX1NFU19TRVRVUF9OT1RJRklDQVRJT04gbWFpbCBpbiB0aGUgUzMgYnVja2V0XG4gICAgICAvLyBhbmQgdGhlIHRlc3QgcnVuIHRoZSBzZXR1cCBiZWluZyBjb21wbGV0ZS5cbiAgICAgIGNvbnN0IHJlc3VsdCA9IGF3YWl0IHMzLmhlYWRPYmplY3Qoe1xuICAgICAgICBCdWNrZXQ6IGVtYWlsQnVja2V0TmFtZSxcbiAgICAgICAgS2V5OiBmaWxlS2V5LFxuICAgICAgfSk7XG5cbiAgICAgIC8vIGNoZWNrIGlmIGZpbGUgaXMgcHJlc2VudFxuICAgICAgaWYgKHJlc3VsdC4kbWV0YWRhdGEuaHR0cFN0YXR1c0NvZGUgPT09IDQwNCkge1xuICAgICAgICBjb25zb2xlLmxvZyhgRmlsZSAke2ZpbGVLZXl9IE5PVCBmb3VuZC4gSXNDb21wbGV0ZTogZmFsc2VgKTtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICBJc0NvbXBsZXRlOiBmYWxzZSxcbiAgICAgICAgfTtcbiAgICAgIH1cblxuICAgICAgY29uc29sZS5sb2coYEZpbGUgJHtmaWxlS2V5fSBmb3VuZC4gU0VTIHNldHVwIGNvbXBsZXRlLiBQcm9jZWVkaW5nYCk7XG4gICAgICByZXR1cm4ge1xuICAgICAgICBJc0NvbXBsZXRlOiB0cnVlLFxuICAgICAgfTtcbiAgICBjYXNlICdVcGRhdGUnOlxuICAgIGNhc2UgJ0RlbGV0ZSc6XG4gICAgICByZXR1cm4ge1xuICAgICAgICBJc0NvbXBsZXRlOiB0cnVlLFxuICAgICAgfTtcbiAgfVxufTtcbiJdfQ==
|