@mavogel/awscdk-rootmail 0.0.334 → 0.0.336

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.
Files changed (5932) hide show
  1. package/.jsii +11 -13
  2. package/CLAUDE.md +14 -30
  3. package/cdk.json +0 -1
  4. package/lib/custom-resource-types.d.ts +23 -0
  5. package/lib/custom-resource-types.js +3 -0
  6. package/lib/hosted-zone-dkim-propagation.is-complete-handler.d.ts +2 -2
  7. package/lib/hosted-zone-dkim-propagation.is-complete-handler.js +1 -1
  8. package/lib/hosted-zone-dkim-propagation.on-event-handler.d.ts +2 -2
  9. package/lib/hosted-zone-dkim-propagation.on-event-handler.js +1 -1
  10. package/lib/hosted-zone-dkim-verification-records.on-event-handler.d.ts +2 -2
  11. package/lib/hosted-zone-dkim-verification-records.on-event-handler.js +1 -1
  12. package/lib/rootmail-autowire-dns.is-complete-handler.d.ts +2 -2
  13. package/lib/rootmail-autowire-dns.is-complete-handler.js +1 -1
  14. package/lib/rootmail-autowire-dns.on-event-handler.d.ts +2 -1
  15. package/lib/rootmail-autowire-dns.on-event-handler.js +1 -1
  16. package/lib/rootmail.js +1 -1
  17. package/lib/ses-receipt-ruleset-activation.is-complete-handler.d.ts +2 -2
  18. package/lib/ses-receipt-ruleset-activation.is-complete-handler.js +1 -1
  19. package/lib/ses-receipt-ruleset-activation.on-event-handler.d.ts +2 -2
  20. package/lib/ses-receipt-ruleset-activation.on-event-handler.js +1 -1
  21. package/lib/ses-receive.js +1 -1
  22. package/node_modules/@aws/lambda-invoke-store/README.md +25 -1
  23. package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +12 -0
  24. package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +12 -0
  25. package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +6 -0
  26. package/node_modules/@aws/lambda-invoke-store/package.json +1 -1
  27. package/node_modules/@aws-sdk/checksums/README.md +6 -0
  28. package/node_modules/@aws-sdk/checksums/crc.d.ts +5 -0
  29. package/node_modules/@aws-sdk/checksums/crc.js +5 -0
  30. package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +22 -0
  31. package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/crc/index.js +159 -0
  32. package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/flexible-checksums/index.js +444 -0
  33. package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/md5/index.js +4 -0
  34. package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/sha/index.js +312 -0
  35. package/node_modules/@aws-sdk/checksums/dist-es/index.js +2 -0
  36. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cJs.js +31 -0
  37. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cNode.js +2 -0
  38. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc64-nvme/Crc64Nvme.js +18 -0
  39. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc64-nvme/Crc64NvmeJs.js +92 -0
  40. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.browser.js +6 -0
  41. package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.js +6 -0
  42. package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/flexibleChecksumsMiddleware.js +123 -0
  43. package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/flexibleChecksumsResponseMiddleware.js +48 -0
  44. package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/index.js +6 -0
  45. package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/isStreaming.js +2 -0
  46. package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/resolveFlexibleChecksumsConfig.js +11 -0
  47. package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/selectChecksumAlgorithmFunction.js +27 -0
  48. package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/stringHasher.js +6 -0
  49. package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/validateChecksumFromResponse.js +45 -0
  50. package/node_modules/@aws-sdk/checksums/dist-es/submodules/md5/index.js +1 -0
  51. package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.browser.js +4 -0
  52. package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.js +4 -0
  53. package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Js.js +173 -0
  54. package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Node.js +59 -0
  55. package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1WebCrypto.js +71 -0
  56. package/node_modules/@aws-sdk/checksums/dist-types/index.d.ts +3 -0
  57. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cJs.d.ts +13 -0
  58. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cNode.d.ts +13 -0
  59. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/Crc64Nvme.d.ts +21 -0
  60. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +14 -0
  61. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/crc64-nvme-crt-container.d.ts +11 -0
  62. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.browser.d.ts +5 -0
  63. package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.d.ts +6 -0
  64. package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +14 -0
  65. package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +14 -0
  66. package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/index.d.ts +9 -0
  67. package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/validateChecksumFromResponse.d.ts +13 -0
  68. package/node_modules/@aws-sdk/checksums/dist-types/submodules/md5/index.d.ts +1 -0
  69. package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.browser.d.ts +3 -0
  70. package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.d.ts +4 -0
  71. package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Js.d.ts +26 -0
  72. package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Node.d.ts +13 -0
  73. package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1WebCrypto.d.ts +22 -0
  74. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/index.d.ts +30 -0
  75. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cJs.d.ts +8 -0
  76. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cNode.d.ts +5 -0
  77. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc64-nvme/Crc64Nvme.d.ts +8 -0
  78. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +9 -0
  79. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.browser.d.ts +8 -0
  80. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.d.ts +6 -0
  81. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +7 -0
  82. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +7 -0
  83. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/index.d.ts +31 -0
  84. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/validateChecksumFromResponse.d.ts +12 -0
  85. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/md5/index.d.ts +1 -0
  86. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.browser.d.ts +8 -0
  87. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.d.ts +4 -0
  88. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Js.d.ts +20 -0
  89. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Node.d.ts +5 -0
  90. package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1WebCrypto.d.ts +14 -0
  91. package/node_modules/@aws-sdk/checksums/flexible-checksums.d.ts +5 -0
  92. package/node_modules/@aws-sdk/checksums/flexible-checksums.js +5 -0
  93. package/node_modules/@aws-sdk/checksums/md5.d.ts +5 -0
  94. package/node_modules/@aws-sdk/checksums/md5.js +5 -0
  95. package/node_modules/@aws-sdk/checksums/package.json +129 -0
  96. package/node_modules/@aws-sdk/checksums/sha.d.ts +5 -0
  97. package/node_modules/@aws-sdk/checksums/sha.js +5 -0
  98. package/node_modules/@aws-sdk/client-cloudwatch-logs/README.md +42 -0
  99. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/index.js +4564 -1443
  100. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/CloudWatchLogs.js +11 -1
  101. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/CloudWatchLogsClient.js +7 -10
  102. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  103. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commandBuilder.js +6 -0
  104. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/AssociateKmsKeyCommand.js +2 -14
  105. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/AssociateSourceToS3TableIntegrationCommand.js +2 -14
  106. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CancelExportTaskCommand.js +2 -14
  107. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CancelImportTaskCommand.js +2 -14
  108. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateDeliveryCommand.js +2 -14
  109. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateExportTaskCommand.js +2 -14
  110. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateImportTaskCommand.js +2 -14
  111. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLogAnomalyDetectorCommand.js +2 -14
  112. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLogGroupCommand.js +2 -14
  113. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLogStreamCommand.js +2 -14
  114. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLookupTableCommand.js +2 -14
  115. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateScheduledQueryCommand.js +2 -14
  116. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteAccountPolicyCommand.js +2 -14
  117. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDataProtectionPolicyCommand.js +2 -14
  118. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliveryCommand.js +2 -14
  119. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliveryDestinationCommand.js +2 -14
  120. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliveryDestinationPolicyCommand.js +2 -14
  121. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliverySourceCommand.js +2 -14
  122. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDestinationCommand.js +2 -14
  123. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteIndexPolicyCommand.js +2 -14
  124. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteIntegrationCommand.js +2 -14
  125. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLogAnomalyDetectorCommand.js +2 -14
  126. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLogGroupCommand.js +2 -14
  127. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLogStreamCommand.js +2 -14
  128. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLookupTableCommand.js +2 -14
  129. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteMetricFilterCommand.js +2 -14
  130. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteQueryDefinitionCommand.js +2 -14
  131. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteResourcePolicyCommand.js +2 -14
  132. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteRetentionPolicyCommand.js +2 -14
  133. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteScheduledQueryCommand.js +2 -14
  134. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteSubscriptionFilterCommand.js +2 -14
  135. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteSyslogConfigurationCommand.js +4 -0
  136. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteTransformerCommand.js +2 -14
  137. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeAccountPoliciesCommand.js +2 -14
  138. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeConfigurationTemplatesCommand.js +2 -14
  139. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDeliveriesCommand.js +2 -14
  140. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDeliveryDestinationsCommand.js +2 -14
  141. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDeliverySourcesCommand.js +2 -14
  142. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDestinationsCommand.js +2 -14
  143. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeExportTasksCommand.js +2 -14
  144. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeFieldIndexesCommand.js +2 -14
  145. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeImportTaskBatchesCommand.js +2 -14
  146. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeImportTasksCommand.js +2 -14
  147. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeIndexPoliciesCommand.js +2 -14
  148. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeLogGroupsCommand.js +2 -14
  149. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeLogStreamsCommand.js +2 -14
  150. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeLookupTablesCommand.js +2 -14
  151. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeMetricFiltersCommand.js +2 -14
  152. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeQueriesCommand.js +2 -14
  153. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeQueryDefinitionsCommand.js +2 -14
  154. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeResourcePoliciesCommand.js +2 -14
  155. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeSubscriptionFiltersCommand.js +2 -14
  156. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DisassociateKmsKeyCommand.js +2 -14
  157. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DisassociateSourceFromS3TableIntegrationCommand.js +2 -14
  158. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/FilterLogEventsCommand.js +2 -14
  159. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDataProtectionPolicyCommand.js +2 -14
  160. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliveryCommand.js +2 -14
  161. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliveryDestinationCommand.js +2 -14
  162. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliveryDestinationPolicyCommand.js +2 -14
  163. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliverySourceCommand.js +2 -14
  164. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetIntegrationCommand.js +2 -14
  165. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogAnomalyDetectorCommand.js +2 -14
  166. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogEventsCommand.js +2 -14
  167. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogFieldsCommand.js +2 -14
  168. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogGroupFieldsCommand.js +2 -14
  169. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogObjectCommand.js +2 -18
  170. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogRecordCommand.js +2 -14
  171. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLookupTableCommand.js +2 -14
  172. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetQueryResultsCommand.js +2 -14
  173. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetScheduledQueryCommand.js +2 -14
  174. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetScheduledQueryHistoryCommand.js +2 -14
  175. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetStorageTierPolicyCommand.js +4 -0
  176. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetTransformerCommand.js +2 -14
  177. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListAggregateLogGroupSummariesCommand.js +2 -14
  178. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListAnomaliesCommand.js +2 -14
  179. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListIntegrationsCommand.js +2 -14
  180. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListLogAnomalyDetectorsCommand.js +2 -14
  181. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListLogGroupsCommand.js +2 -14
  182. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListLogGroupsForQueryCommand.js +2 -14
  183. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListScheduledQueriesCommand.js +2 -14
  184. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListSourcesForS3TableIntegrationCommand.js +2 -14
  185. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListSyslogConfigurationsCommand.js +4 -0
  186. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  187. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListTagsLogGroupCommand.js +2 -14
  188. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutAccountPolicyCommand.js +2 -14
  189. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutBearerTokenAuthenticationCommand.js +2 -14
  190. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDataProtectionPolicyCommand.js +2 -14
  191. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDeliveryDestinationCommand.js +2 -14
  192. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDeliveryDestinationPolicyCommand.js +2 -14
  193. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDeliverySourceCommand.js +2 -14
  194. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDestinationCommand.js +2 -14
  195. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDestinationPolicyCommand.js +2 -14
  196. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutIndexPolicyCommand.js +2 -14
  197. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutIntegrationCommand.js +2 -14
  198. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutLogEventsCommand.js +2 -14
  199. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutLogGroupDeletionProtectionCommand.js +2 -14
  200. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutMetricFilterCommand.js +2 -14
  201. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutQueryDefinitionCommand.js +2 -14
  202. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutResourcePolicyCommand.js +2 -14
  203. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutRetentionPolicyCommand.js +2 -14
  204. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutStorageTierPolicyCommand.js +4 -0
  205. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutSubscriptionFilterCommand.js +2 -14
  206. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutSyslogConfigurationCommand.js +4 -0
  207. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutTransformerCommand.js +2 -14
  208. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/StartLiveTailCommand.js +2 -18
  209. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/StartQueryCommand.js +2 -14
  210. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/StopQueryCommand.js +2 -14
  211. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TagLogGroupCommand.js +2 -14
  212. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TagResourceCommand.js +2 -14
  213. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TestMetricFilterCommand.js +2 -14
  214. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TestTransformerCommand.js +2 -14
  215. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UntagLogGroupCommand.js +2 -14
  216. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UntagResourceCommand.js +2 -14
  217. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateAnomalyCommand.js +2 -14
  218. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateDeliveryConfigurationCommand.js +2 -14
  219. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateLogAnomalyDetectorCommand.js +2 -14
  220. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateLookupTableCommand.js +2 -14
  221. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateScheduledQueryCommand.js +2 -14
  222. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/index.js +5 -0
  223. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/endpoint/bdd.js +52 -0
  224. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/endpoint/endpointResolver.js +4 -4
  225. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/index.js +1 -0
  226. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/models/CloudWatchLogsServiceException.js +1 -1
  227. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/models/enums.js +25 -0
  228. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.browser.js +6 -10
  229. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.js +6 -12
  230. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.native.js +0 -2
  231. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.shared.js +5 -4
  232. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeExtensions.js +3 -3
  233. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/schemas/schemas_0.js +165 -39
  234. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/CloudWatchLogs.d.ts +44 -0
  235. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/CloudWatchLogsClient.d.ts +21 -10
  236. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commandBuilder.d.ts +18 -0
  237. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/AssociateKmsKeyCommand.d.ts +3 -6
  238. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/AssociateSourceToS3TableIntegrationCommand.d.ts +3 -6
  239. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CancelExportTaskCommand.d.ts +3 -6
  240. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CancelImportTaskCommand.d.ts +3 -6
  241. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateDeliveryCommand.d.ts +3 -6
  242. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateExportTaskCommand.d.ts +3 -6
  243. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateImportTaskCommand.d.ts +3 -6
  244. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLogAnomalyDetectorCommand.d.ts +3 -6
  245. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLogGroupCommand.d.ts +3 -6
  246. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLogStreamCommand.d.ts +3 -6
  247. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLookupTableCommand.d.ts +3 -6
  248. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateScheduledQueryCommand.d.ts +4 -6
  249. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteAccountPolicyCommand.d.ts +3 -6
  250. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDataProtectionPolicyCommand.d.ts +3 -6
  251. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliveryCommand.d.ts +3 -6
  252. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliveryDestinationCommand.d.ts +3 -6
  253. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliveryDestinationPolicyCommand.d.ts +3 -6
  254. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliverySourceCommand.d.ts +3 -6
  255. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDestinationCommand.d.ts +3 -6
  256. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteIndexPolicyCommand.d.ts +3 -6
  257. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteIntegrationCommand.d.ts +3 -6
  258. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLogAnomalyDetectorCommand.d.ts +3 -6
  259. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLogGroupCommand.d.ts +3 -6
  260. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLogStreamCommand.d.ts +3 -6
  261. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLookupTableCommand.d.ts +3 -6
  262. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteMetricFilterCommand.d.ts +3 -6
  263. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteQueryDefinitionCommand.d.ts +3 -6
  264. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteResourcePolicyCommand.d.ts +3 -6
  265. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteRetentionPolicyCommand.d.ts +3 -6
  266. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteScheduledQueryCommand.d.ts +3 -6
  267. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteSubscriptionFilterCommand.d.ts +3 -6
  268. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteSyslogConfigurationCommand.d.ts +92 -0
  269. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteTransformerCommand.d.ts +3 -6
  270. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeAccountPoliciesCommand.d.ts +3 -6
  271. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeConfigurationTemplatesCommand.d.ts +19 -6
  272. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDeliveriesCommand.d.ts +3 -6
  273. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDeliveryDestinationsCommand.d.ts +3 -6
  274. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDeliverySourcesCommand.d.ts +8 -6
  275. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDestinationsCommand.d.ts +3 -6
  276. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeExportTasksCommand.d.ts +3 -6
  277. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeFieldIndexesCommand.d.ts +3 -6
  278. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeImportTaskBatchesCommand.d.ts +3 -6
  279. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeImportTasksCommand.d.ts +3 -6
  280. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeIndexPoliciesCommand.d.ts +3 -6
  281. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeLogGroupsCommand.d.ts +3 -6
  282. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeLogStreamsCommand.d.ts +3 -6
  283. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeLookupTablesCommand.d.ts +3 -6
  284. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeMetricFiltersCommand.d.ts +3 -6
  285. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeQueriesCommand.d.ts +3 -6
  286. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeQueryDefinitionsCommand.d.ts +3 -6
  287. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeResourcePoliciesCommand.d.ts +3 -6
  288. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeSubscriptionFiltersCommand.d.ts +3 -6
  289. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DisassociateKmsKeyCommand.d.ts +3 -6
  290. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DisassociateSourceFromS3TableIntegrationCommand.d.ts +3 -6
  291. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/FilterLogEventsCommand.d.ts +8 -7
  292. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDataProtectionPolicyCommand.d.ts +3 -6
  293. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliveryCommand.d.ts +3 -6
  294. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliveryDestinationCommand.d.ts +3 -6
  295. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliveryDestinationPolicyCommand.d.ts +3 -6
  296. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliverySourceCommand.d.ts +8 -6
  297. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetIntegrationCommand.d.ts +3 -6
  298. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogAnomalyDetectorCommand.d.ts +3 -6
  299. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogEventsCommand.d.ts +3 -6
  300. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogFieldsCommand.d.ts +3 -6
  301. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogGroupFieldsCommand.d.ts +3 -6
  302. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogObjectCommand.d.ts +3 -6
  303. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogRecordCommand.d.ts +3 -6
  304. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLookupTableCommand.d.ts +3 -6
  305. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetQueryResultsCommand.d.ts +9 -6
  306. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetScheduledQueryCommand.d.ts +5 -6
  307. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetScheduledQueryHistoryCommand.d.ts +3 -6
  308. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetStorageTierPolicyCommand.d.ts +85 -0
  309. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetTransformerCommand.d.ts +3 -6
  310. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListAggregateLogGroupSummariesCommand.d.ts +3 -6
  311. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListAnomaliesCommand.d.ts +3 -6
  312. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListIntegrationsCommand.d.ts +3 -6
  313. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListLogAnomalyDetectorsCommand.d.ts +3 -6
  314. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListLogGroupsCommand.d.ts +14 -11
  315. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListLogGroupsForQueryCommand.d.ts +3 -6
  316. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListScheduledQueriesCommand.d.ts +5 -6
  317. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListSourcesForS3TableIntegrationCommand.d.ts +4 -6
  318. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListSyslogConfigurationsCommand.d.ts +101 -0
  319. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -6
  320. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListTagsLogGroupCommand.d.ts +3 -6
  321. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutAccountPolicyCommand.d.ts +51 -6
  322. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutBearerTokenAuthenticationCommand.d.ts +3 -6
  323. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDataProtectionPolicyCommand.d.ts +3 -6
  324. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDeliveryDestinationCommand.d.ts +3 -6
  325. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDeliveryDestinationPolicyCommand.d.ts +3 -6
  326. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDeliverySourceCommand.d.ts +11 -6
  327. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDestinationCommand.d.ts +3 -6
  328. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDestinationPolicyCommand.d.ts +3 -6
  329. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutIndexPolicyCommand.d.ts +3 -6
  330. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutIntegrationCommand.d.ts +3 -6
  331. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutLogEventsCommand.d.ts +3 -6
  332. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutLogGroupDeletionProtectionCommand.d.ts +3 -6
  333. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutMetricFilterCommand.d.ts +3 -6
  334. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutQueryDefinitionCommand.d.ts +3 -6
  335. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutResourcePolicyCommand.d.ts +3 -6
  336. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutRetentionPolicyCommand.d.ts +3 -6
  337. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutStorageTierPolicyCommand.d.ts +89 -0
  338. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutSubscriptionFilterCommand.d.ts +3 -6
  339. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutSyslogConfigurationCommand.d.ts +92 -0
  340. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutTransformerCommand.d.ts +3 -6
  341. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/StartLiveTailCommand.d.ts +3 -6
  342. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/StartQueryCommand.d.ts +5 -7
  343. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/StopQueryCommand.d.ts +3 -6
  344. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TagLogGroupCommand.d.ts +3 -6
  345. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TagResourceCommand.d.ts +3 -6
  346. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TestMetricFilterCommand.d.ts +5 -7
  347. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TestTransformerCommand.d.ts +4 -7
  348. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UntagLogGroupCommand.d.ts +4 -7
  349. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UntagResourceCommand.d.ts +4 -7
  350. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateAnomalyCommand.d.ts +4 -7
  351. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateDeliveryConfigurationCommand.d.ts +4 -7
  352. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateLogAnomalyDetectorCommand.d.ts +4 -7
  353. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateLookupTableCommand.d.ts +4 -8
  354. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateScheduledQueryCommand.d.ts +9 -6
  355. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/index.d.ts +5 -0
  356. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/endpoint/bdd.d.ts +2 -0
  357. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/extensionConfiguration.d.ts +1 -1
  358. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/index.d.ts +8 -0
  359. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/CloudWatchLogsServiceException.d.ts +1 -1
  360. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/enums.d.ts +73 -0
  361. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/errors.d.ts +1 -1
  362. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/models_0.d.ts +397 -279
  363. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/models_1.d.ts +283 -2
  364. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.browser.d.ts +5 -5
  365. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.d.ts +5 -5
  366. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.native.d.ts +5 -5
  367. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.shared.d.ts +1 -0
  368. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/schemas/schemas_0.d.ts +17 -0
  369. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/CloudWatchLogs.d.ts +87 -0
  370. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/CloudWatchLogsClient.d.ts +43 -21
  371. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  372. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/AssociateKmsKeyCommand.d.ts +9 -16
  373. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/AssociateSourceToS3TableIntegrationCommand.d.ts +9 -16
  374. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CancelExportTaskCommand.d.ts +9 -16
  375. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +9 -16
  376. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateDeliveryCommand.d.ts +9 -16
  377. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateExportTaskCommand.d.ts +9 -16
  378. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateImportTaskCommand.d.ts +9 -16
  379. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLogAnomalyDetectorCommand.d.ts +9 -16
  380. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLogGroupCommand.d.ts +9 -16
  381. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLogStreamCommand.d.ts +9 -16
  382. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLookupTableCommand.d.ts +9 -16
  383. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +9 -16
  384. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteAccountPolicyCommand.d.ts +9 -16
  385. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDataProtectionPolicyCommand.d.ts +9 -16
  386. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliveryCommand.d.ts +9 -16
  387. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliveryDestinationCommand.d.ts +9 -16
  388. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliveryDestinationPolicyCommand.d.ts +9 -16
  389. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliverySourceCommand.d.ts +9 -16
  390. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDestinationCommand.d.ts +9 -16
  391. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteIndexPolicyCommand.d.ts +9 -16
  392. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +9 -16
  393. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLogAnomalyDetectorCommand.d.ts +9 -16
  394. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLogGroupCommand.d.ts +9 -16
  395. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLogStreamCommand.d.ts +9 -16
  396. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLookupTableCommand.d.ts +9 -16
  397. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteMetricFilterCommand.d.ts +9 -16
  398. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteQueryDefinitionCommand.d.ts +9 -16
  399. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +9 -16
  400. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteRetentionPolicyCommand.d.ts +9 -16
  401. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +9 -16
  402. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteSubscriptionFilterCommand.d.ts +9 -16
  403. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteSyslogConfigurationCommand.d.ts +40 -0
  404. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteTransformerCommand.d.ts +9 -16
  405. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeAccountPoliciesCommand.d.ts +9 -16
  406. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeConfigurationTemplatesCommand.d.ts +9 -16
  407. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDeliveriesCommand.d.ts +9 -16
  408. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDeliveryDestinationsCommand.d.ts +9 -16
  409. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDeliverySourcesCommand.d.ts +9 -16
  410. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDestinationsCommand.d.ts +9 -16
  411. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +9 -16
  412. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeFieldIndexesCommand.d.ts +9 -16
  413. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeImportTaskBatchesCommand.d.ts +9 -16
  414. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +9 -16
  415. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeIndexPoliciesCommand.d.ts +9 -16
  416. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeLogGroupsCommand.d.ts +9 -16
  417. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeLogStreamsCommand.d.ts +9 -16
  418. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeLookupTablesCommand.d.ts +9 -16
  419. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeMetricFiltersCommand.d.ts +9 -16
  420. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeQueriesCommand.d.ts +9 -16
  421. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeQueryDefinitionsCommand.d.ts +9 -16
  422. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeResourcePoliciesCommand.d.ts +9 -16
  423. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeSubscriptionFiltersCommand.d.ts +9 -16
  424. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DisassociateKmsKeyCommand.d.ts +9 -16
  425. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DisassociateSourceFromS3TableIntegrationCommand.d.ts +9 -16
  426. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/FilterLogEventsCommand.d.ts +9 -16
  427. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDataProtectionPolicyCommand.d.ts +9 -16
  428. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliveryCommand.d.ts +9 -16
  429. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliveryDestinationCommand.d.ts +9 -16
  430. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliveryDestinationPolicyCommand.d.ts +9 -16
  431. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliverySourceCommand.d.ts +9 -16
  432. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetIntegrationCommand.d.ts +9 -16
  433. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogAnomalyDetectorCommand.d.ts +9 -16
  434. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogEventsCommand.d.ts +9 -16
  435. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogFieldsCommand.d.ts +9 -16
  436. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogGroupFieldsCommand.d.ts +9 -16
  437. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogObjectCommand.d.ts +9 -16
  438. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogRecordCommand.d.ts +9 -16
  439. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLookupTableCommand.d.ts +9 -16
  440. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +9 -16
  441. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetScheduledQueryCommand.d.ts +9 -16
  442. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetScheduledQueryHistoryCommand.d.ts +9 -16
  443. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetStorageTierPolicyCommand.d.ts +44 -0
  444. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetTransformerCommand.d.ts +9 -16
  445. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListAggregateLogGroupSummariesCommand.d.ts +9 -16
  446. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListAnomaliesCommand.d.ts +9 -16
  447. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListIntegrationsCommand.d.ts +9 -16
  448. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListLogAnomalyDetectorsCommand.d.ts +9 -16
  449. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListLogGroupsCommand.d.ts +9 -16
  450. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListLogGroupsForQueryCommand.d.ts +9 -16
  451. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +9 -16
  452. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListSourcesForS3TableIntegrationCommand.d.ts +9 -16
  453. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListSyslogConfigurationsCommand.d.ts +44 -0
  454. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -16
  455. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListTagsLogGroupCommand.d.ts +9 -16
  456. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutAccountPolicyCommand.d.ts +9 -16
  457. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutBearerTokenAuthenticationCommand.d.ts +9 -16
  458. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDataProtectionPolicyCommand.d.ts +9 -16
  459. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDeliveryDestinationCommand.d.ts +9 -16
  460. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDeliveryDestinationPolicyCommand.d.ts +9 -16
  461. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDeliverySourceCommand.d.ts +9 -16
  462. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDestinationCommand.d.ts +9 -16
  463. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDestinationPolicyCommand.d.ts +9 -16
  464. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutIndexPolicyCommand.d.ts +9 -16
  465. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutIntegrationCommand.d.ts +9 -16
  466. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutLogEventsCommand.d.ts +9 -16
  467. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutLogGroupDeletionProtectionCommand.d.ts +9 -16
  468. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutMetricFilterCommand.d.ts +9 -16
  469. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutQueryDefinitionCommand.d.ts +9 -16
  470. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +9 -16
  471. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutRetentionPolicyCommand.d.ts +9 -16
  472. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutStorageTierPolicyCommand.d.ts +44 -0
  473. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutSubscriptionFilterCommand.d.ts +9 -16
  474. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutSyslogConfigurationCommand.d.ts +39 -0
  475. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutTransformerCommand.d.ts +9 -16
  476. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/StartLiveTailCommand.d.ts +9 -16
  477. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/StartQueryCommand.d.ts +9 -16
  478. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/StopQueryCommand.d.ts +9 -20
  479. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TagLogGroupCommand.d.ts +9 -16
  480. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -16
  481. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TestMetricFilterCommand.d.ts +11 -20
  482. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TestTransformerCommand.d.ts +10 -17
  483. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UntagLogGroupCommand.d.ts +10 -17
  484. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +10 -17
  485. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateAnomalyCommand.d.ts +10 -17
  486. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateDeliveryConfigurationCommand.d.ts +10 -17
  487. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateLogAnomalyDetectorCommand.d.ts +10 -17
  488. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateLookupTableCommand.d.ts +12 -17
  489. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +9 -16
  490. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/index.d.ts +5 -0
  491. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
  492. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  493. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/index.d.ts +1 -0
  494. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/CloudWatchLogsServiceException.d.ts +1 -1
  495. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/enums.d.ts +35 -0
  496. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/errors.d.ts +1 -1
  497. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/models_0.d.ts +75 -57
  498. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/models_1.d.ts +73 -2
  499. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
  500. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
  501. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
  502. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  503. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
  504. package/node_modules/@aws-sdk/client-cloudwatch-logs/package.json +19 -53
  505. package/node_modules/@aws-sdk/client-route-53/dist-cjs/index.js +3975 -1068
  506. package/node_modules/@aws-sdk/client-route-53/dist-es/Route53.js +1 -1
  507. package/node_modules/@aws-sdk/client-route-53/dist-es/Route53Client.js +6 -9
  508. package/node_modules/@aws-sdk/client-route-53/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  509. package/node_modules/@aws-sdk/client-route-53/dist-es/commandBuilder.js +14 -0
  510. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ActivateKeySigningKeyCommand.js +2 -18
  511. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/AssociateVPCWithHostedZoneCommand.js +2 -18
  512. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeCidrCollectionCommand.js +2 -18
  513. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeResourceRecordSetsCommand.js +2 -19
  514. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeTagsForResourceCommand.js +2 -14
  515. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateCidrCollectionCommand.js +2 -14
  516. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHealthCheckCommand.js +2 -14
  517. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHostedZoneCommand.js +2 -18
  518. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateKeySigningKeyCommand.js +2 -18
  519. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateQueryLoggingConfigCommand.js +2 -18
  520. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateReusableDelegationSetCommand.js +2 -18
  521. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyCommand.js +2 -14
  522. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyInstanceCommand.js +2 -18
  523. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyVersionCommand.js +2 -18
  524. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateVPCAssociationAuthorizationCommand.js +2 -18
  525. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeactivateKeySigningKeyCommand.js +2 -18
  526. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteCidrCollectionCommand.js +2 -18
  527. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHealthCheckCommand.js +2 -14
  528. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHostedZoneCommand.js +2 -18
  529. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteKeySigningKeyCommand.js +2 -18
  530. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteQueryLoggingConfigCommand.js +2 -18
  531. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteReusableDelegationSetCommand.js +2 -18
  532. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyCommand.js +2 -18
  533. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyInstanceCommand.js +2 -18
  534. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteVPCAssociationAuthorizationCommand.js +2 -18
  535. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisableHostedZoneDNSSECCommand.js +2 -18
  536. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisassociateVPCFromHostedZoneCommand.js +2 -18
  537. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/EnableHostedZoneDNSSECCommand.js +2 -18
  538. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetAccountLimitCommand.js +2 -14
  539. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetChangeCommand.js +2 -18
  540. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetCheckerIpRangesCommand.js +2 -14
  541. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetDNSSECCommand.js +2 -18
  542. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetGeoLocationCommand.js +2 -14
  543. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCommand.js +2 -14
  544. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCountCommand.js +2 -14
  545. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckLastFailureReasonCommand.js +2 -14
  546. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckStatusCommand.js +2 -14
  547. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCommand.js +2 -18
  548. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCountCommand.js +2 -14
  549. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneLimitCommand.js +2 -18
  550. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetQueryLoggingConfigCommand.js +2 -18
  551. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetCommand.js +2 -18
  552. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetLimitCommand.js +2 -18
  553. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyCommand.js +2 -18
  554. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCommand.js +2 -18
  555. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCountCommand.js +2 -14
  556. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrBlocksCommand.js +2 -14
  557. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrCollectionsCommand.js +2 -14
  558. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrLocationsCommand.js +2 -14
  559. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListGeoLocationsCommand.js +2 -14
  560. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHealthChecksCommand.js +2 -14
  561. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByNameCommand.js +2 -18
  562. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByVPCCommand.js +2 -14
  563. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesCommand.js +2 -18
  564. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListQueryLoggingConfigsCommand.js +2 -18
  565. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListResourceRecordSetsCommand.js +2 -18
  566. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListReusableDelegationSetsCommand.js +2 -14
  567. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  568. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourcesCommand.js +2 -14
  569. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPoliciesCommand.js +2 -14
  570. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByHostedZoneCommand.js +2 -18
  571. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByPolicyCommand.js +2 -14
  572. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesCommand.js +2 -14
  573. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyVersionsCommand.js +2 -18
  574. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListVPCAssociationAuthorizationsCommand.js +2 -18
  575. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/TestDNSAnswerCommand.js +2 -18
  576. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHealthCheckCommand.js +2 -14
  577. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneCommentCommand.js +2 -18
  578. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneFeaturesCommand.js +2 -18
  579. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyCommentCommand.js +2 -18
  580. package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyInstanceCommand.js +2 -18
  581. package/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/bdd.js +83 -0
  582. package/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/endpointResolver.js +4 -4
  583. package/node_modules/@aws-sdk/client-route-53/dist-es/index.js +1 -0
  584. package/node_modules/@aws-sdk/client-route-53/dist-es/models/Route53ServiceException.js +1 -1
  585. package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.browser.js +5 -9
  586. package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.js +5 -11
  587. package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.native.js +0 -2
  588. package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.shared.js +5 -4
  589. package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeExtensions.js +3 -3
  590. package/node_modules/@aws-sdk/client-route-53/dist-es/waiters/waitForResourceRecordSetsChanged.js +2 -2
  591. package/node_modules/@aws-sdk/client-route-53/dist-types/Route53.d.ts +2 -2
  592. package/node_modules/@aws-sdk/client-route-53/dist-types/Route53Client.d.ts +6 -7
  593. package/node_modules/@aws-sdk/client-route-53/dist-types/commandBuilder.d.ts +26 -0
  594. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ActivateKeySigningKeyCommand.d.ts +3 -6
  595. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/AssociateVPCWithHostedZoneCommand.d.ts +3 -6
  596. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ChangeCidrCollectionCommand.d.ts +3 -6
  597. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ChangeResourceRecordSetsCommand.d.ts +3 -6
  598. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ChangeTagsForResourceCommand.d.ts +3 -6
  599. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateCidrCollectionCommand.d.ts +3 -6
  600. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateHealthCheckCommand.d.ts +3 -6
  601. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateHostedZoneCommand.d.ts +3 -6
  602. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateKeySigningKeyCommand.d.ts +3 -6
  603. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateQueryLoggingConfigCommand.d.ts +3 -6
  604. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateReusableDelegationSetCommand.d.ts +3 -6
  605. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateTrafficPolicyCommand.d.ts +3 -6
  606. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateTrafficPolicyInstanceCommand.d.ts +3 -6
  607. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateTrafficPolicyVersionCommand.d.ts +3 -6
  608. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateVPCAssociationAuthorizationCommand.d.ts +3 -6
  609. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeactivateKeySigningKeyCommand.d.ts +3 -6
  610. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteCidrCollectionCommand.d.ts +3 -6
  611. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteHealthCheckCommand.d.ts +3 -6
  612. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteHostedZoneCommand.d.ts +3 -6
  613. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteKeySigningKeyCommand.d.ts +3 -6
  614. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteQueryLoggingConfigCommand.d.ts +3 -6
  615. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteReusableDelegationSetCommand.d.ts +3 -6
  616. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteTrafficPolicyCommand.d.ts +3 -6
  617. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteTrafficPolicyInstanceCommand.d.ts +3 -6
  618. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteVPCAssociationAuthorizationCommand.d.ts +3 -6
  619. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DisableHostedZoneDNSSECCommand.d.ts +3 -6
  620. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DisassociateVPCFromHostedZoneCommand.d.ts +3 -6
  621. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/EnableHostedZoneDNSSECCommand.d.ts +3 -6
  622. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetAccountLimitCommand.d.ts +3 -6
  623. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetChangeCommand.d.ts +3 -6
  624. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetCheckerIpRangesCommand.d.ts +3 -6
  625. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetDNSSECCommand.d.ts +3 -6
  626. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetGeoLocationCommand.d.ts +3 -6
  627. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckCommand.d.ts +3 -6
  628. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckCountCommand.d.ts +3 -6
  629. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckLastFailureReasonCommand.d.ts +3 -6
  630. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckStatusCommand.d.ts +3 -6
  631. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHostedZoneCommand.d.ts +3 -6
  632. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHostedZoneCountCommand.d.ts +3 -6
  633. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHostedZoneLimitCommand.d.ts +3 -6
  634. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetQueryLoggingConfigCommand.d.ts +3 -6
  635. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetReusableDelegationSetCommand.d.ts +3 -6
  636. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetReusableDelegationSetLimitCommand.d.ts +3 -6
  637. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetTrafficPolicyCommand.d.ts +3 -6
  638. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetTrafficPolicyInstanceCommand.d.ts +3 -6
  639. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetTrafficPolicyInstanceCountCommand.d.ts +3 -6
  640. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListCidrBlocksCommand.d.ts +3 -6
  641. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListCidrCollectionsCommand.d.ts +3 -6
  642. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListCidrLocationsCommand.d.ts +3 -6
  643. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListGeoLocationsCommand.d.ts +3 -6
  644. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHealthChecksCommand.d.ts +3 -6
  645. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHostedZonesByNameCommand.d.ts +3 -6
  646. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHostedZonesByVPCCommand.d.ts +3 -6
  647. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHostedZonesCommand.d.ts +3 -6
  648. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListQueryLoggingConfigsCommand.d.ts +3 -6
  649. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListResourceRecordSetsCommand.d.ts +3 -6
  650. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListReusableDelegationSetsCommand.d.ts +3 -6
  651. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -6
  652. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTagsForResourcesCommand.d.ts +3 -6
  653. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPoliciesCommand.d.ts +3 -6
  654. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyInstancesByHostedZoneCommand.d.ts +3 -6
  655. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyInstancesByPolicyCommand.d.ts +3 -6
  656. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyInstancesCommand.d.ts +3 -6
  657. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyVersionsCommand.d.ts +3 -6
  658. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListVPCAssociationAuthorizationsCommand.d.ts +3 -6
  659. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/TestDNSAnswerCommand.d.ts +3 -6
  660. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateHealthCheckCommand.d.ts +3 -6
  661. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateHostedZoneCommentCommand.d.ts +3 -6
  662. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateHostedZoneFeaturesCommand.d.ts +3 -6
  663. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateTrafficPolicyCommentCommand.d.ts +3 -6
  664. package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateTrafficPolicyInstanceCommand.d.ts +3 -6
  665. package/node_modules/@aws-sdk/client-route-53/dist-types/endpoint/bdd.d.ts +2 -0
  666. package/node_modules/@aws-sdk/client-route-53/dist-types/extensionConfiguration.d.ts +1 -1
  667. package/node_modules/@aws-sdk/client-route-53/dist-types/index.d.ts +1 -0
  668. package/node_modules/@aws-sdk/client-route-53/dist-types/models/Route53ServiceException.d.ts +1 -1
  669. package/node_modules/@aws-sdk/client-route-53/dist-types/models/errors.d.ts +1 -1
  670. package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.browser.d.ts +5 -5
  671. package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.d.ts +5 -5
  672. package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.native.d.ts +5 -5
  673. package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.shared.d.ts +1 -0
  674. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/Route53.d.ts +2 -2
  675. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/Route53Client.d.ts +9 -17
  676. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commandBuilder.d.ts +58 -0
  677. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ActivateKeySigningKeyCommand.d.ts +9 -16
  678. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/AssociateVPCWithHostedZoneCommand.d.ts +9 -16
  679. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ChangeCidrCollectionCommand.d.ts +9 -16
  680. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ChangeResourceRecordSetsCommand.d.ts +9 -16
  681. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ChangeTagsForResourceCommand.d.ts +9 -16
  682. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateCidrCollectionCommand.d.ts +9 -16
  683. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateHealthCheckCommand.d.ts +9 -16
  684. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateHostedZoneCommand.d.ts +9 -16
  685. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateKeySigningKeyCommand.d.ts +9 -16
  686. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateQueryLoggingConfigCommand.d.ts +9 -16
  687. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateReusableDelegationSetCommand.d.ts +9 -16
  688. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateTrafficPolicyCommand.d.ts +9 -16
  689. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateTrafficPolicyInstanceCommand.d.ts +9 -16
  690. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateTrafficPolicyVersionCommand.d.ts +9 -16
  691. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateVPCAssociationAuthorizationCommand.d.ts +9 -16
  692. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeactivateKeySigningKeyCommand.d.ts +9 -16
  693. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteCidrCollectionCommand.d.ts +9 -16
  694. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteHealthCheckCommand.d.ts +9 -16
  695. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteHostedZoneCommand.d.ts +9 -16
  696. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteKeySigningKeyCommand.d.ts +9 -16
  697. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteQueryLoggingConfigCommand.d.ts +9 -16
  698. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteReusableDelegationSetCommand.d.ts +9 -16
  699. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteTrafficPolicyCommand.d.ts +9 -16
  700. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteTrafficPolicyInstanceCommand.d.ts +9 -16
  701. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteVPCAssociationAuthorizationCommand.d.ts +9 -16
  702. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DisableHostedZoneDNSSECCommand.d.ts +9 -16
  703. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DisassociateVPCFromHostedZoneCommand.d.ts +9 -16
  704. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/EnableHostedZoneDNSSECCommand.d.ts +9 -16
  705. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetAccountLimitCommand.d.ts +9 -16
  706. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetChangeCommand.d.ts +9 -20
  707. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetCheckerIpRangesCommand.d.ts +9 -16
  708. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetDNSSECCommand.d.ts +9 -20
  709. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetGeoLocationCommand.d.ts +9 -16
  710. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckCommand.d.ts +9 -16
  711. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckCountCommand.d.ts +9 -16
  712. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckLastFailureReasonCommand.d.ts +9 -16
  713. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckStatusCommand.d.ts +9 -16
  714. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHostedZoneCommand.d.ts +9 -16
  715. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHostedZoneCountCommand.d.ts +9 -16
  716. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHostedZoneLimitCommand.d.ts +9 -16
  717. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetQueryLoggingConfigCommand.d.ts +9 -16
  718. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetReusableDelegationSetCommand.d.ts +9 -16
  719. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetReusableDelegationSetLimitCommand.d.ts +9 -16
  720. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetTrafficPolicyCommand.d.ts +9 -16
  721. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetTrafficPolicyInstanceCommand.d.ts +9 -16
  722. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetTrafficPolicyInstanceCountCommand.d.ts +9 -16
  723. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListCidrBlocksCommand.d.ts +9 -16
  724. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListCidrCollectionsCommand.d.ts +9 -16
  725. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListCidrLocationsCommand.d.ts +9 -16
  726. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListGeoLocationsCommand.d.ts +9 -16
  727. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHealthChecksCommand.d.ts +9 -16
  728. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHostedZonesByNameCommand.d.ts +9 -16
  729. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHostedZonesByVPCCommand.d.ts +9 -16
  730. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHostedZonesCommand.d.ts +9 -16
  731. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListQueryLoggingConfigsCommand.d.ts +9 -16
  732. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListResourceRecordSetsCommand.d.ts +9 -16
  733. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListReusableDelegationSetsCommand.d.ts +9 -16
  734. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -16
  735. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTagsForResourcesCommand.d.ts +9 -16
  736. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPoliciesCommand.d.ts +9 -16
  737. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyInstancesByHostedZoneCommand.d.ts +9 -16
  738. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyInstancesByPolicyCommand.d.ts +9 -16
  739. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyInstancesCommand.d.ts +9 -16
  740. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyVersionsCommand.d.ts +9 -16
  741. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListVPCAssociationAuthorizationsCommand.d.ts +9 -16
  742. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/TestDNSAnswerCommand.d.ts +9 -16
  743. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateHealthCheckCommand.d.ts +9 -16
  744. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateHostedZoneCommentCommand.d.ts +9 -16
  745. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateHostedZoneFeaturesCommand.d.ts +9 -16
  746. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateTrafficPolicyCommentCommand.d.ts +9 -16
  747. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateTrafficPolicyInstanceCommand.d.ts +9 -16
  748. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
  749. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  750. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/index.d.ts +1 -0
  751. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/models/Route53ServiceException.d.ts +1 -1
  752. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/models/errors.d.ts +1 -1
  753. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
  754. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
  755. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
  756. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  757. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/waiters/waitForResourceRecordSetsChanged.d.ts +8 -4
  758. package/node_modules/@aws-sdk/client-route-53/dist-types/waiters/waitForResourceRecordSetsChanged.d.ts +5 -4
  759. package/node_modules/@aws-sdk/client-route-53/package.json +21 -53
  760. package/node_modules/@aws-sdk/client-s3/README.md +35 -0
  761. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5750 -2187
  762. package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +13 -1
  763. package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +9 -13
  764. package/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +2 -2
  765. package/node_modules/@aws-sdk/client-s3/dist-es/commandBuilder.js +122 -0
  766. package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +2 -22
  767. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +2 -24
  768. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +2 -26
  769. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +2 -25
  770. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataConfigurationCommand.js +2 -25
  771. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +2 -25
  772. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +2 -24
  773. package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +2 -22
  774. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +2 -18
  775. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +2 -18
  776. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +2 -18
  777. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +2 -18
  778. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +2 -18
  779. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +2 -18
  780. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +2 -18
  781. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataConfigurationCommand.js +2 -18
  782. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +2 -18
  783. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +2 -18
  784. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +2 -18
  785. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +2 -18
  786. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +2 -18
  787. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +2 -18
  788. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +2 -18
  789. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +4 -0
  790. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +2 -22
  791. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +2 -21
  792. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +2 -26
  793. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +2 -18
  794. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +2 -21
  795. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +2 -22
  796. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +2 -22
  797. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +2 -22
  798. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +2 -22
  799. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +2 -22
  800. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +2 -22
  801. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +2 -22
  802. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +2 -22
  803. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +2 -22
  804. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +2 -22
  805. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +2 -22
  806. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +2 -22
  807. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +2 -22
  808. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +2 -22
  809. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +2 -22
  810. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +2 -22
  811. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +2 -22
  812. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +2 -22
  813. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +2 -22
  814. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +2 -22
  815. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +2 -22
  816. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +2 -22
  817. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +2 -22
  818. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +4 -0
  819. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +2 -23
  820. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +2 -30
  821. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +2 -21
  822. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +2 -21
  823. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +2 -21
  824. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +2 -21
  825. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +2 -17
  826. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +2 -22
  827. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +2 -21
  828. package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +2 -25
  829. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +2 -22
  830. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +2 -22
  831. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +2 -22
  832. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +2 -22
  833. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +2 -18
  834. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +2 -21
  835. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +2 -22
  836. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +4 -0
  837. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +2 -22
  838. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +2 -22
  839. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +2 -22
  840. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +2 -24
  841. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAbacCommand.js +2 -24
  842. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +2 -25
  843. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +2 -25
  844. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +2 -18
  845. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +2 -25
  846. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +2 -25
  847. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +2 -18
  848. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +2 -18
  849. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +2 -27
  850. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +2 -25
  851. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +2 -18
  852. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +2 -18
  853. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +2 -25
  854. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +2 -25
  855. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +2 -25
  856. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +2 -25
  857. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +2 -25
  858. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +2 -25
  859. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +2 -25
  860. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +2 -27
  861. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +4 -0
  862. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +2 -30
  863. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +2 -26
  864. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +2 -26
  865. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +2 -26
  866. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +2 -26
  867. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +2 -25
  868. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +2 -22
  869. package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +2 -26
  870. package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +2 -27
  871. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +4 -0
  872. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.js +2 -25
  873. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataJournalTableConfigurationCommand.js +2 -25
  874. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +2 -26
  875. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +2 -29
  876. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +2 -24
  877. package/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +2 -17
  878. package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +5 -0
  879. package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/bdd.js +758 -0
  880. package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/endpointResolver.js +4 -4
  881. package/node_modules/@aws-sdk/client-s3/dist-es/index.js +1 -0
  882. package/node_modules/@aws-sdk/client-s3/dist-es/models/S3ServiceException.js +1 -1
  883. package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +17 -1
  884. package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +76 -4
  885. package/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectAnnotationsPaginator.js +4 -0
  886. package/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +1 -0
  887. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +7 -15
  888. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +9 -18
  889. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.native.js +0 -2
  890. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +9 -6
  891. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeExtensions.js +3 -3
  892. package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +318 -143
  893. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +3 -3
  894. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +3 -3
  895. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +3 -3
  896. package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +3 -3
  897. package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +48 -5
  898. package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +16 -12
  899. package/node_modules/@aws-sdk/client-s3/dist-types/commandBuilder.d.ts +106 -0
  900. package/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +3 -6
  901. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +18 -6
  902. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +10 -7
  903. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +3 -6
  904. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +31 -7
  905. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +4 -7
  906. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +5 -8
  907. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +3 -6
  908. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +3 -6
  909. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +3 -6
  910. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +3 -6
  911. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +3 -6
  912. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +3 -6
  913. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +41 -13
  914. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +3 -6
  915. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataConfigurationCommand.d.ts +3 -6
  916. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +3 -6
  917. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +3 -6
  918. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +3 -6
  919. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +3 -6
  920. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +3 -6
  921. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +3 -6
  922. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +3 -6
  923. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +114 -0
  924. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +3 -6
  925. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +3 -6
  926. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +4 -7
  927. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +3 -6
  928. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAbacCommand.d.ts +3 -6
  929. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +3 -6
  930. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +3 -6
  931. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +3 -6
  932. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +3 -6
  933. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +3 -6
  934. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +3 -6
  935. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +42 -14
  936. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +3 -6
  937. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +3 -6
  938. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +3 -6
  939. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +14 -6
  940. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +3 -6
  941. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +3 -6
  942. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +6 -9
  943. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +3 -6
  944. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +3 -6
  945. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +3 -6
  946. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +3 -6
  947. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +3 -6
  948. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +3 -6
  949. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +3 -6
  950. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +3 -6
  951. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +3 -6
  952. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +136 -0
  953. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +13 -6
  954. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +8 -6
  955. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +3 -6
  956. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +3 -6
  957. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +3 -6
  958. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +3 -6
  959. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +3 -6
  960. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +3 -6
  961. package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +3 -6
  962. package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +8 -6
  963. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +3 -6
  964. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +3 -6
  965. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +42 -14
  966. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +3 -6
  967. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +3 -6
  968. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +3 -6
  969. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +4 -7
  970. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +133 -0
  971. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +4 -7
  972. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +4 -7
  973. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +4 -7
  974. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +9 -7
  975. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +4 -7
  976. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +4 -7
  977. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +4 -7
  978. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +3 -6
  979. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +4 -7
  980. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +4 -7
  981. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +3 -6
  982. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +34 -11
  983. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +4 -7
  984. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +4 -7
  985. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +3 -6
  986. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +6 -9
  987. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +4 -7
  988. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +4 -7
  989. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +4 -7
  990. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +4 -7
  991. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +4 -7
  992. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +4 -7
  993. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +4 -7
  994. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +4 -7
  995. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +161 -0
  996. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +14 -7
  997. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +4 -7
  998. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +4 -7
  999. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +4 -7
  1000. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +4 -7
  1001. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +4 -7
  1002. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +4 -7
  1003. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +5 -9
  1004. package/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +3 -6
  1005. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +105 -0
  1006. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +4 -7
  1007. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +4 -7
  1008. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +4 -7
  1009. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +14 -7
  1010. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +8 -6
  1011. package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +8 -6
  1012. package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +5 -0
  1013. package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/bdd.d.ts +2 -0
  1014. package/node_modules/@aws-sdk/client-s3/dist-types/extensionConfiguration.d.ts +1 -1
  1015. package/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +1 -0
  1016. package/node_modules/@aws-sdk/client-s3/dist-types/models/S3ServiceException.d.ts +1 -1
  1017. package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +34 -2
  1018. package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +77 -5
  1019. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +1464 -544
  1020. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +574 -36
  1021. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectAnnotationsPaginator.d.ts +7 -0
  1022. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +1 -0
  1023. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +12 -12
  1024. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +50 -51
  1025. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +10 -10
  1026. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +5 -2
  1027. package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +24 -0
  1028. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +104 -5
  1029. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +45 -23
  1030. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commandBuilder.d.ts +133 -0
  1031. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +9 -16
  1032. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +9 -16
  1033. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +9 -16
  1034. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +9 -16
  1035. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataConfigurationCommand.d.ts +9 -16
  1036. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +9 -16
  1037. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +9 -16
  1038. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +9 -16
  1039. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +9 -16
  1040. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +9 -16
  1041. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +9 -16
  1042. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +9 -16
  1043. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +9 -16
  1044. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +9 -16
  1045. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +9 -16
  1046. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataConfigurationCommand.d.ts +9 -16
  1047. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +9 -16
  1048. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +9 -16
  1049. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +9 -16
  1050. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +9 -16
  1051. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +9 -16
  1052. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +9 -16
  1053. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +9 -16
  1054. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +44 -0
  1055. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +9 -16
  1056. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +9 -16
  1057. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +9 -16
  1058. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +9 -16
  1059. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAbacCommand.d.ts +9 -16
  1060. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +9 -16
  1061. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +9 -16
  1062. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +9 -16
  1063. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +9 -16
  1064. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +9 -16
  1065. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +9 -16
  1066. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +9 -16
  1067. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +9 -16
  1068. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +9 -16
  1069. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +9 -16
  1070. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataConfigurationCommand.d.ts +9 -16
  1071. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +9 -16
  1072. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +9 -16
  1073. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +9 -16
  1074. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +9 -16
  1075. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +9 -16
  1076. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +9 -16
  1077. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +9 -16
  1078. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +9 -16
  1079. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +9 -16
  1080. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +9 -16
  1081. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +9 -16
  1082. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +9 -16
  1083. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +52 -0
  1084. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +9 -16
  1085. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +9 -20
  1086. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +9 -16
  1087. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +9 -16
  1088. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +9 -16
  1089. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +9 -16
  1090. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +9 -16
  1091. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +9 -16
  1092. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +9 -16
  1093. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +9 -16
  1094. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +9 -16
  1095. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +9 -16
  1096. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +9 -16
  1097. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +9 -16
  1098. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +9 -16
  1099. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListDirectoryBucketsCommand.d.ts +9 -16
  1100. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +9 -16
  1101. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +44 -0
  1102. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +9 -16
  1103. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +9 -16
  1104. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +9 -16
  1105. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +9 -20
  1106. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAbacCommand.d.ts +9 -16
  1107. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +9 -16
  1108. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +9 -16
  1109. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +9 -16
  1110. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +9 -16
  1111. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +9 -16
  1112. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +9 -16
  1113. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +9 -16
  1114. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +9 -16
  1115. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +9 -16
  1116. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +9 -16
  1117. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +9 -16
  1118. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +9 -16
  1119. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +9 -16
  1120. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +9 -16
  1121. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +9 -16
  1122. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +9 -16
  1123. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +9 -16
  1124. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +9 -16
  1125. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +9 -16
  1126. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +52 -0
  1127. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +9 -20
  1128. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +9 -16
  1129. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +9 -16
  1130. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +9 -16
  1131. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +9 -16
  1132. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +9 -16
  1133. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +10 -17
  1134. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +10 -18
  1135. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +9 -16
  1136. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +40 -0
  1137. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +9 -16
  1138. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +9 -16
  1139. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateObjectEncryptionCommand.d.ts +9 -16
  1140. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +9 -16
  1141. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +9 -16
  1142. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +9 -16
  1143. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +5 -0
  1144. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
  1145. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  1146. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +1 -0
  1147. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +1 -1
  1148. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +23 -3
  1149. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +42 -4
  1150. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +193 -64
  1151. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +95 -5
  1152. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectAnnotationsPaginator.d.ts +11 -0
  1153. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +1 -0
  1154. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +20 -14
  1155. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +76 -80
  1156. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +19 -13
  1157. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +5 -2
  1158. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
  1159. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +8 -4
  1160. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +9 -4
  1161. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +8 -4
  1162. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +9 -4
  1163. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +5 -4
  1164. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +6 -4
  1165. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +5 -4
  1166. package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +6 -4
  1167. package/node_modules/@aws-sdk/client-s3/package.json +27 -71
  1168. package/node_modules/@aws-sdk/client-ses/dist-cjs/index.js +3013 -926
  1169. package/node_modules/@aws-sdk/client-ses/dist-es/SES.js +1 -1
  1170. package/node_modules/@aws-sdk/client-ses/dist-es/SESClient.js +6 -9
  1171. package/node_modules/@aws-sdk/client-ses/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  1172. package/node_modules/@aws-sdk/client-ses/dist-es/commandBuilder.js +6 -0
  1173. package/node_modules/@aws-sdk/client-ses/dist-es/commands/CloneReceiptRuleSetCommand.js +2 -14
  1174. package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateConfigurationSetCommand.js +2 -14
  1175. package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateConfigurationSetEventDestinationCommand.js +2 -14
  1176. package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateConfigurationSetTrackingOptionsCommand.js +2 -14
  1177. package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateCustomVerificationEmailTemplateCommand.js +2 -14
  1178. package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateReceiptFilterCommand.js +2 -14
  1179. package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateReceiptRuleCommand.js +2 -14
  1180. package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateReceiptRuleSetCommand.js +2 -14
  1181. package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateTemplateCommand.js +2 -14
  1182. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteConfigurationSetCommand.js +2 -14
  1183. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteConfigurationSetEventDestinationCommand.js +2 -14
  1184. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteConfigurationSetTrackingOptionsCommand.js +2 -14
  1185. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteCustomVerificationEmailTemplateCommand.js +2 -14
  1186. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteIdentityCommand.js +2 -14
  1187. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteIdentityPolicyCommand.js +2 -14
  1188. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteReceiptFilterCommand.js +2 -14
  1189. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteReceiptRuleCommand.js +2 -14
  1190. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteReceiptRuleSetCommand.js +2 -14
  1191. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteTemplateCommand.js +2 -14
  1192. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteVerifiedEmailAddressCommand.js +2 -14
  1193. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeActiveReceiptRuleSetCommand.js +2 -14
  1194. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeConfigurationSetCommand.js +2 -14
  1195. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeReceiptRuleCommand.js +2 -14
  1196. package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeReceiptRuleSetCommand.js +2 -14
  1197. package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetAccountSendingEnabledCommand.js +2 -14
  1198. package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetCustomVerificationEmailTemplateCommand.js +2 -14
  1199. package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityDkimAttributesCommand.js +2 -14
  1200. package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityMailFromDomainAttributesCommand.js +2 -14
  1201. package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityNotificationAttributesCommand.js +2 -14
  1202. package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityPoliciesCommand.js +2 -14
  1203. package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityVerificationAttributesCommand.js +2 -14
  1204. package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetSendQuotaCommand.js +2 -14
  1205. package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetSendStatisticsCommand.js +2 -14
  1206. package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetTemplateCommand.js +2 -14
  1207. package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListConfigurationSetsCommand.js +2 -14
  1208. package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListCustomVerificationEmailTemplatesCommand.js +2 -14
  1209. package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListIdentitiesCommand.js +2 -14
  1210. package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListIdentityPoliciesCommand.js +2 -14
  1211. package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListReceiptFiltersCommand.js +2 -14
  1212. package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListReceiptRuleSetsCommand.js +2 -14
  1213. package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListTemplatesCommand.js +2 -14
  1214. package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListVerifiedEmailAddressesCommand.js +2 -14
  1215. package/node_modules/@aws-sdk/client-ses/dist-es/commands/PutConfigurationSetDeliveryOptionsCommand.js +2 -14
  1216. package/node_modules/@aws-sdk/client-ses/dist-es/commands/PutIdentityPolicyCommand.js +2 -14
  1217. package/node_modules/@aws-sdk/client-ses/dist-es/commands/ReorderReceiptRuleSetCommand.js +2 -14
  1218. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendBounceCommand.js +2 -14
  1219. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendBulkTemplatedEmailCommand.js +2 -14
  1220. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendCustomVerificationEmailCommand.js +2 -14
  1221. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendEmailCommand.js +2 -14
  1222. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendRawEmailCommand.js +2 -14
  1223. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendTemplatedEmailCommand.js +2 -14
  1224. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetActiveReceiptRuleSetCommand.js +2 -14
  1225. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityDkimEnabledCommand.js +2 -14
  1226. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityFeedbackForwardingEnabledCommand.js +2 -14
  1227. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +2 -14
  1228. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityMailFromDomainCommand.js +2 -14
  1229. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityNotificationTopicCommand.js +2 -14
  1230. package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetReceiptRulePositionCommand.js +2 -14
  1231. package/node_modules/@aws-sdk/client-ses/dist-es/commands/TestRenderTemplateCommand.js +2 -14
  1232. package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateAccountSendingEnabledCommand.js +2 -14
  1233. package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetEventDestinationCommand.js +2 -14
  1234. package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +2 -14
  1235. package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetSendingEnabledCommand.js +2 -14
  1236. package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetTrackingOptionsCommand.js +2 -14
  1237. package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateCustomVerificationEmailTemplateCommand.js +2 -14
  1238. package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateReceiptRuleCommand.js +2 -14
  1239. package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateTemplateCommand.js +2 -14
  1240. package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyDomainDkimCommand.js +2 -14
  1241. package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyDomainIdentityCommand.js +2 -14
  1242. package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyEmailAddressCommand.js +2 -14
  1243. package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyEmailIdentityCommand.js +2 -14
  1244. package/node_modules/@aws-sdk/client-ses/dist-es/endpoint/bdd.js +46 -0
  1245. package/node_modules/@aws-sdk/client-ses/dist-es/endpoint/endpointResolver.js +4 -4
  1246. package/node_modules/@aws-sdk/client-ses/dist-es/index.js +1 -0
  1247. package/node_modules/@aws-sdk/client-ses/dist-es/models/SESServiceException.js +1 -1
  1248. package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.browser.js +5 -9
  1249. package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.js +5 -11
  1250. package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.native.js +0 -2
  1251. package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.shared.js +5 -4
  1252. package/node_modules/@aws-sdk/client-ses/dist-es/runtimeExtensions.js +3 -3
  1253. package/node_modules/@aws-sdk/client-ses/dist-es/waiters/waitForIdentityExists.js +1 -1
  1254. package/node_modules/@aws-sdk/client-ses/dist-types/SES.d.ts +2 -2
  1255. package/node_modules/@aws-sdk/client-ses/dist-types/SESClient.d.ts +6 -7
  1256. package/node_modules/@aws-sdk/client-ses/dist-types/commandBuilder.d.ts +18 -0
  1257. package/node_modules/@aws-sdk/client-ses/dist-types/commands/CloneReceiptRuleSetCommand.d.ts +3 -6
  1258. package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateConfigurationSetCommand.d.ts +3 -6
  1259. package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +3 -6
  1260. package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +3 -6
  1261. package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +3 -6
  1262. package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateReceiptFilterCommand.d.ts +3 -6
  1263. package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateReceiptRuleCommand.d.ts +3 -6
  1264. package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateReceiptRuleSetCommand.d.ts +3 -6
  1265. package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateTemplateCommand.d.ts +3 -6
  1266. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteConfigurationSetCommand.d.ts +3 -6
  1267. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +3 -6
  1268. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +3 -6
  1269. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +3 -6
  1270. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteIdentityCommand.d.ts +3 -6
  1271. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteIdentityPolicyCommand.d.ts +3 -6
  1272. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteReceiptFilterCommand.d.ts +3 -6
  1273. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteReceiptRuleCommand.d.ts +3 -6
  1274. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteReceiptRuleSetCommand.d.ts +3 -6
  1275. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteTemplateCommand.d.ts +3 -6
  1276. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteVerifiedEmailAddressCommand.d.ts +3 -6
  1277. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeActiveReceiptRuleSetCommand.d.ts +3 -6
  1278. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeConfigurationSetCommand.d.ts +3 -6
  1279. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeReceiptRuleCommand.d.ts +3 -6
  1280. package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeReceiptRuleSetCommand.d.ts +3 -6
  1281. package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetAccountSendingEnabledCommand.d.ts +3 -6
  1282. package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +3 -6
  1283. package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityDkimAttributesCommand.d.ts +3 -6
  1284. package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +3 -6
  1285. package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityNotificationAttributesCommand.d.ts +3 -6
  1286. package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityPoliciesCommand.d.ts +3 -6
  1287. package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityVerificationAttributesCommand.d.ts +3 -6
  1288. package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetSendQuotaCommand.d.ts +3 -6
  1289. package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetSendStatisticsCommand.d.ts +3 -6
  1290. package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetTemplateCommand.d.ts +3 -6
  1291. package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListConfigurationSetsCommand.d.ts +3 -6
  1292. package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +3 -6
  1293. package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListIdentitiesCommand.d.ts +3 -6
  1294. package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListIdentityPoliciesCommand.d.ts +3 -6
  1295. package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListReceiptFiltersCommand.d.ts +3 -6
  1296. package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListReceiptRuleSetsCommand.d.ts +3 -6
  1297. package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListTemplatesCommand.d.ts +3 -6
  1298. package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListVerifiedEmailAddressesCommand.d.ts +3 -6
  1299. package/node_modules/@aws-sdk/client-ses/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +3 -6
  1300. package/node_modules/@aws-sdk/client-ses/dist-types/commands/PutIdentityPolicyCommand.d.ts +3 -6
  1301. package/node_modules/@aws-sdk/client-ses/dist-types/commands/ReorderReceiptRuleSetCommand.d.ts +3 -6
  1302. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendBounceCommand.d.ts +3 -6
  1303. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendBulkTemplatedEmailCommand.d.ts +3 -6
  1304. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendCustomVerificationEmailCommand.d.ts +3 -6
  1305. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendEmailCommand.d.ts +3 -6
  1306. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendRawEmailCommand.d.ts +3 -6
  1307. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendTemplatedEmailCommand.d.ts +3 -6
  1308. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetActiveReceiptRuleSetCommand.d.ts +3 -6
  1309. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityDkimEnabledCommand.d.ts +3 -6
  1310. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +3 -6
  1311. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +3 -6
  1312. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityMailFromDomainCommand.d.ts +3 -6
  1313. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityNotificationTopicCommand.d.ts +3 -6
  1314. package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetReceiptRulePositionCommand.d.ts +3 -6
  1315. package/node_modules/@aws-sdk/client-ses/dist-types/commands/TestRenderTemplateCommand.d.ts +3 -6
  1316. package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateAccountSendingEnabledCommand.d.ts +3 -6
  1317. package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +3 -6
  1318. package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +3 -6
  1319. package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +3 -6
  1320. package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +3 -6
  1321. package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +3 -6
  1322. package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateReceiptRuleCommand.d.ts +3 -6
  1323. package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateTemplateCommand.d.ts +3 -6
  1324. package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyDomainDkimCommand.d.ts +3 -6
  1325. package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyDomainIdentityCommand.d.ts +3 -6
  1326. package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyEmailAddressCommand.d.ts +3 -6
  1327. package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyEmailIdentityCommand.d.ts +3 -6
  1328. package/node_modules/@aws-sdk/client-ses/dist-types/endpoint/bdd.d.ts +2 -0
  1329. package/node_modules/@aws-sdk/client-ses/dist-types/extensionConfiguration.d.ts +1 -1
  1330. package/node_modules/@aws-sdk/client-ses/dist-types/index.d.ts +1 -0
  1331. package/node_modules/@aws-sdk/client-ses/dist-types/models/SESServiceException.d.ts +1 -1
  1332. package/node_modules/@aws-sdk/client-ses/dist-types/models/errors.d.ts +1 -1
  1333. package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.browser.d.ts +5 -5
  1334. package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.d.ts +5 -5
  1335. package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.native.d.ts +5 -5
  1336. package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.shared.d.ts +1 -0
  1337. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/SES.d.ts +2 -2
  1338. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/SESClient.d.ts +9 -17
  1339. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  1340. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CloneReceiptRuleSetCommand.d.ts +9 -16
  1341. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateConfigurationSetCommand.d.ts +9 -16
  1342. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateConfigurationSetEventDestinationCommand.d.ts +9 -16
  1343. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +9 -16
  1344. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +9 -16
  1345. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateReceiptFilterCommand.d.ts +9 -16
  1346. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateReceiptRuleCommand.d.ts +9 -16
  1347. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateReceiptRuleSetCommand.d.ts +9 -16
  1348. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateTemplateCommand.d.ts +9 -16
  1349. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteConfigurationSetCommand.d.ts +9 -16
  1350. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +9 -16
  1351. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +9 -16
  1352. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +9 -16
  1353. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteIdentityCommand.d.ts +9 -16
  1354. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteIdentityPolicyCommand.d.ts +9 -16
  1355. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteReceiptFilterCommand.d.ts +9 -16
  1356. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteReceiptRuleCommand.d.ts +9 -16
  1357. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteReceiptRuleSetCommand.d.ts +9 -16
  1358. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteTemplateCommand.d.ts +9 -16
  1359. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteVerifiedEmailAddressCommand.d.ts +9 -16
  1360. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeActiveReceiptRuleSetCommand.d.ts +9 -16
  1361. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeConfigurationSetCommand.d.ts +9 -16
  1362. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeReceiptRuleCommand.d.ts +9 -16
  1363. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeReceiptRuleSetCommand.d.ts +9 -16
  1364. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetAccountSendingEnabledCommand.d.ts +9 -16
  1365. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetCustomVerificationEmailTemplateCommand.d.ts +9 -16
  1366. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityDkimAttributesCommand.d.ts +9 -16
  1367. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +9 -16
  1368. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityNotificationAttributesCommand.d.ts +9 -16
  1369. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityPoliciesCommand.d.ts +9 -16
  1370. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityVerificationAttributesCommand.d.ts +9 -16
  1371. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetSendQuotaCommand.d.ts +9 -16
  1372. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetSendStatisticsCommand.d.ts +9 -16
  1373. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +9 -16
  1374. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListConfigurationSetsCommand.d.ts +9 -16
  1375. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +9 -16
  1376. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListIdentitiesCommand.d.ts +9 -16
  1377. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListIdentityPoliciesCommand.d.ts +9 -16
  1378. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListReceiptFiltersCommand.d.ts +9 -16
  1379. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListReceiptRuleSetsCommand.d.ts +9 -16
  1380. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +9 -16
  1381. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListVerifiedEmailAddressesCommand.d.ts +9 -16
  1382. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +9 -16
  1383. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/PutIdentityPolicyCommand.d.ts +9 -16
  1384. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ReorderReceiptRuleSetCommand.d.ts +9 -16
  1385. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendBounceCommand.d.ts +9 -16
  1386. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendBulkTemplatedEmailCommand.d.ts +9 -16
  1387. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +9 -16
  1388. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendEmailCommand.d.ts +9 -20
  1389. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendRawEmailCommand.d.ts +9 -16
  1390. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendTemplatedEmailCommand.d.ts +9 -16
  1391. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetActiveReceiptRuleSetCommand.d.ts +9 -16
  1392. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityDkimEnabledCommand.d.ts +9 -16
  1393. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +9 -16
  1394. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +9 -16
  1395. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityMailFromDomainCommand.d.ts +9 -16
  1396. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityNotificationTopicCommand.d.ts +9 -16
  1397. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetReceiptRulePositionCommand.d.ts +9 -16
  1398. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/TestRenderTemplateCommand.d.ts +9 -16
  1399. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateAccountSendingEnabledCommand.d.ts +9 -16
  1400. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +9 -16
  1401. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +9 -16
  1402. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +9 -16
  1403. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +9 -16
  1404. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +9 -16
  1405. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateReceiptRuleCommand.d.ts +9 -16
  1406. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateTemplateCommand.d.ts +9 -16
  1407. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyDomainDkimCommand.d.ts +9 -16
  1408. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyDomainIdentityCommand.d.ts +9 -16
  1409. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyEmailAddressCommand.d.ts +9 -16
  1410. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyEmailIdentityCommand.d.ts +9 -16
  1411. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
  1412. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  1413. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/index.d.ts +1 -0
  1414. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/models/SESServiceException.d.ts +1 -1
  1415. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/models/errors.d.ts +1 -1
  1416. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
  1417. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
  1418. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
  1419. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  1420. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/waiters/waitForIdentityExists.d.ts +12 -4
  1421. package/node_modules/@aws-sdk/client-ses/dist-types/waiters/waitForIdentityExists.d.ts +5 -4
  1422. package/node_modules/@aws-sdk/client-ses/package.json +19 -51
  1423. package/node_modules/@aws-sdk/client-ssm/README.md +42 -0
  1424. package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +9401 -1940
  1425. package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +17 -1
  1426. package/node_modules/@aws-sdk/client-ssm/dist-es/SSMClient.js +6 -9
  1427. package/node_modules/@aws-sdk/client-ssm/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  1428. package/node_modules/@aws-sdk/client-ssm/dist-es/commandBuilder.js +6 -0
  1429. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +2 -14
  1430. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +2 -14
  1431. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +2 -14
  1432. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +2 -14
  1433. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +2 -14
  1434. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +2 -14
  1435. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +2 -14
  1436. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateCloudConnectorCommand.js +4 -0
  1437. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +2 -14
  1438. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +2 -14
  1439. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +2 -14
  1440. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +2 -14
  1441. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +2 -14
  1442. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +2 -14
  1443. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +2 -14
  1444. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +2 -14
  1445. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteCloudConnectorCommand.js +4 -0
  1446. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +2 -14
  1447. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +2 -14
  1448. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +2 -14
  1449. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsItemCommand.js +2 -14
  1450. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +2 -14
  1451. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +2 -14
  1452. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +2 -14
  1453. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +2 -14
  1454. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +2 -14
  1455. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +2 -14
  1456. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +2 -14
  1457. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +2 -14
  1458. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +2 -14
  1459. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +2 -14
  1460. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +2 -14
  1461. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +2 -14
  1462. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +2 -14
  1463. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +2 -14
  1464. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +2 -14
  1465. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +2 -14
  1466. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +2 -14
  1467. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +2 -14
  1468. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +2 -14
  1469. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +2 -14
  1470. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +2 -14
  1471. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +2 -14
  1472. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +2 -14
  1473. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +2 -14
  1474. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +2 -14
  1475. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +2 -14
  1476. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePropertiesCommand.js +2 -14
  1477. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +2 -14
  1478. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +2 -14
  1479. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +2 -14
  1480. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +2 -14
  1481. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +2 -14
  1482. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +2 -14
  1483. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +2 -14
  1484. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +2 -14
  1485. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +2 -14
  1486. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +2 -14
  1487. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +2 -14
  1488. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +2 -14
  1489. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +2 -14
  1490. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +2 -14
  1491. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +2 -14
  1492. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +2 -14
  1493. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +2 -14
  1494. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAccessTokenCommand.js +2 -14
  1495. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +2 -14
  1496. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +2 -14
  1497. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCloudConnectorCommand.js +4 -0
  1498. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +2 -14
  1499. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +2 -14
  1500. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +2 -14
  1501. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +2 -14
  1502. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +2 -14
  1503. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetExecutionPreviewCommand.js +2 -14
  1504. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +2 -14
  1505. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +2 -14
  1506. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +2 -14
  1507. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +2 -14
  1508. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +2 -14
  1509. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +2 -14
  1510. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +2 -14
  1511. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +2 -14
  1512. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +2 -14
  1513. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +2 -14
  1514. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +2 -14
  1515. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +2 -14
  1516. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +2 -14
  1517. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +2 -14
  1518. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +2 -14
  1519. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +2 -14
  1520. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +2 -14
  1521. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +2 -14
  1522. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +2 -14
  1523. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +2 -14
  1524. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +2 -14
  1525. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCloudConnectorsCommand.js +4 -0
  1526. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +2 -14
  1527. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +2 -14
  1528. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +2 -14
  1529. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +2 -14
  1530. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +2 -14
  1531. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +2 -14
  1532. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +2 -14
  1533. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +2 -14
  1534. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesCommand.js +2 -14
  1535. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesSummaryCommand.js +2 -14
  1536. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +2 -14
  1537. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +2 -14
  1538. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +2 -14
  1539. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +2 -14
  1540. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +2 -14
  1541. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  1542. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +2 -14
  1543. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +2 -14
  1544. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +2 -14
  1545. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +2 -14
  1546. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +2 -14
  1547. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +2 -14
  1548. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +2 -14
  1549. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +2 -14
  1550. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +2 -14
  1551. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +2 -14
  1552. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +2 -14
  1553. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +2 -14
  1554. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +2 -14
  1555. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +2 -14
  1556. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAccessRequestCommand.js +2 -14
  1557. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +2 -14
  1558. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +2 -14
  1559. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +2 -14
  1560. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartExecutionPreviewCommand.js +2 -14
  1561. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +2 -14
  1562. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +2 -14
  1563. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +2 -14
  1564. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +2 -14
  1565. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +2 -14
  1566. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +2 -14
  1567. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateCloudConnectorCommand.js +4 -0
  1568. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +2 -14
  1569. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +2 -14
  1570. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +2 -14
  1571. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +2 -14
  1572. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +2 -14
  1573. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +2 -14
  1574. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +2 -14
  1575. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +2 -14
  1576. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +2 -14
  1577. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +2 -14
  1578. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +2 -14
  1579. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +2 -14
  1580. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ValidateCloudConnectorCommand.js +4 -0
  1581. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +6 -0
  1582. package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/bdd.js +49 -0
  1583. package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/endpointResolver.js +4 -4
  1584. package/node_modules/@aws-sdk/client-ssm/dist-es/index.js +1 -0
  1585. package/node_modules/@aws-sdk/client-ssm/dist-es/models/SSMServiceException.js +1 -1
  1586. package/node_modules/@aws-sdk/client-ssm/dist-es/models/enums.js +34 -0
  1587. package/node_modules/@aws-sdk/client-ssm/dist-es/models/errors.js +50 -36
  1588. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCloudConnectorsPaginator.js +4 -0
  1589. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ValidateCloudConnectorPaginator.js +4 -0
  1590. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +2 -0
  1591. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +5 -9
  1592. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +5 -11
  1593. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.native.js +0 -2
  1594. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +5 -4
  1595. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeExtensions.js +3 -3
  1596. package/node_modules/@aws-sdk/client-ssm/dist-es/schemas/schemas_0.js +232 -45
  1597. package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +2 -2
  1598. package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +59 -2
  1599. package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +14 -9
  1600. package/node_modules/@aws-sdk/client-ssm/dist-types/commandBuilder.d.ts +18 -0
  1601. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +4 -7
  1602. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +3 -6
  1603. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +3 -6
  1604. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +3 -6
  1605. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +3 -6
  1606. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +3 -6
  1607. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +3 -6
  1608. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateCloudConnectorCommand.d.ts +108 -0
  1609. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +3 -6
  1610. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +3 -6
  1611. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +3 -6
  1612. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +3 -6
  1613. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +3 -6
  1614. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +3 -6
  1615. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +3 -6
  1616. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +3 -6
  1617. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteCloudConnectorCommand.d.ts +81 -0
  1618. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +3 -6
  1619. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +3 -6
  1620. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +3 -6
  1621. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsItemCommand.d.ts +3 -6
  1622. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +3 -6
  1623. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +3 -6
  1624. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +3 -6
  1625. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +3 -6
  1626. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +3 -6
  1627. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +3 -6
  1628. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +3 -6
  1629. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +3 -6
  1630. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +3 -6
  1631. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +3 -6
  1632. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +3 -6
  1633. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +3 -6
  1634. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +3 -6
  1635. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +3 -6
  1636. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +3 -6
  1637. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +3 -6
  1638. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +3 -6
  1639. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +3 -6
  1640. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +3 -6
  1641. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +3 -6
  1642. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +3 -6
  1643. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +3 -6
  1644. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +5 -7
  1645. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +3 -6
  1646. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +3 -6
  1647. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +3 -6
  1648. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +6 -7
  1649. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +3 -6
  1650. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +3 -6
  1651. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +3 -6
  1652. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +3 -6
  1653. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +3 -6
  1654. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +3 -6
  1655. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +3 -6
  1656. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +3 -6
  1657. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +3 -6
  1658. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +3 -6
  1659. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +3 -6
  1660. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +3 -6
  1661. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +3 -6
  1662. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +3 -6
  1663. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +3 -6
  1664. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +3 -6
  1665. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +3 -6
  1666. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAccessTokenCommand.d.ts +3 -6
  1667. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +3 -6
  1668. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +3 -6
  1669. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCloudConnectorCommand.d.ts +99 -0
  1670. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +3 -6
  1671. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +3 -6
  1672. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +3 -6
  1673. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +3 -6
  1674. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +3 -6
  1675. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetExecutionPreviewCommand.d.ts +3 -6
  1676. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +3 -6
  1677. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +3 -6
  1678. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +3 -6
  1679. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +3 -6
  1680. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +3 -6
  1681. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +3 -6
  1682. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +3 -6
  1683. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +3 -6
  1684. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +3 -6
  1685. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +3 -6
  1686. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +17 -6
  1687. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +3 -6
  1688. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +4 -7
  1689. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +17 -6
  1690. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +4 -7
  1691. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +4 -7
  1692. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +4 -7
  1693. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +4 -8
  1694. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +3 -6
  1695. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +3 -6
  1696. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +4 -7
  1697. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCloudConnectorsCommand.d.ts +93 -0
  1698. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +3 -6
  1699. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +3 -6
  1700. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +3 -6
  1701. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +3 -6
  1702. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +3 -6
  1703. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +3 -6
  1704. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +3 -6
  1705. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +3 -6
  1706. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesCommand.d.ts +10 -7
  1707. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesSummaryCommand.d.ts +6 -9
  1708. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +3 -6
  1709. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +3 -6
  1710. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +3 -6
  1711. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +3 -6
  1712. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +3 -6
  1713. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -7
  1714. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +3 -6
  1715. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +3 -6
  1716. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +3 -6
  1717. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +17 -6
  1718. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +3 -6
  1719. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +3 -6
  1720. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +3 -6
  1721. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +3 -6
  1722. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +3 -6
  1723. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +4 -7
  1724. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +3 -6
  1725. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +3 -6
  1726. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +3 -6
  1727. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +3 -6
  1728. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAccessRequestCommand.d.ts +3 -6
  1729. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +3 -6
  1730. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +3 -6
  1731. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +3 -6
  1732. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartExecutionPreviewCommand.d.ts +3 -6
  1733. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +3 -6
  1734. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +3 -6
  1735. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +3 -6
  1736. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +3 -6
  1737. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +3 -6
  1738. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +3 -6
  1739. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateCloudConnectorCommand.d.ts +99 -0
  1740. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +3 -6
  1741. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +3 -6
  1742. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +3 -6
  1743. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +3 -6
  1744. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +3 -6
  1745. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +3 -6
  1746. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +3 -6
  1747. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +3 -6
  1748. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +3 -6
  1749. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +3 -6
  1750. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +3 -6
  1751. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +3 -6
  1752. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ValidateCloudConnectorCommand.d.ts +91 -0
  1753. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +6 -0
  1754. package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/bdd.d.ts +2 -0
  1755. package/node_modules/@aws-sdk/client-ssm/dist-types/extensionConfiguration.d.ts +1 -1
  1756. package/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +1 -0
  1757. package/node_modules/@aws-sdk/client-ssm/dist-types/models/SSMServiceException.d.ts +1 -1
  1758. package/node_modules/@aws-sdk/client-ssm/dist-types/models/enums.d.ts +66 -0
  1759. package/node_modules/@aws-sdk/client-ssm/dist-types/models/errors.d.ts +62 -48
  1760. package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +268 -360
  1761. package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +601 -3
  1762. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCloudConnectorsPaginator.d.ts +7 -0
  1763. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ValidateCloudConnectorPaginator.d.ts +7 -0
  1764. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +2 -0
  1765. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +5 -5
  1766. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +5 -5
  1767. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +5 -5
  1768. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.shared.d.ts +1 -0
  1769. package/node_modules/@aws-sdk/client-ssm/dist-types/schemas/schemas_0.d.ts +27 -0
  1770. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +119 -2
  1771. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +47 -19
  1772. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  1773. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +9 -16
  1774. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +9 -16
  1775. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +9 -16
  1776. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +9 -16
  1777. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +9 -16
  1778. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +9 -16
  1779. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +9 -16
  1780. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateCloudConnectorCommand.d.ts +44 -0
  1781. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +9 -16
  1782. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +9 -16
  1783. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +9 -16
  1784. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +9 -16
  1785. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +9 -16
  1786. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +9 -16
  1787. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +9 -16
  1788. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +9 -16
  1789. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteCloudConnectorCommand.d.ts +44 -0
  1790. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +9 -16
  1791. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +9 -16
  1792. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +9 -16
  1793. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsItemCommand.d.ts +9 -16
  1794. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +9 -16
  1795. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +9 -16
  1796. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +9 -16
  1797. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +9 -16
  1798. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +9 -16
  1799. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +9 -16
  1800. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +9 -16
  1801. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +9 -16
  1802. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +9 -16
  1803. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +9 -16
  1804. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +9 -16
  1805. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +9 -16
  1806. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +9 -16
  1807. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +9 -16
  1808. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +9 -16
  1809. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +9 -16
  1810. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +9 -16
  1811. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +9 -16
  1812. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +9 -16
  1813. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +9 -16
  1814. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +9 -16
  1815. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +9 -16
  1816. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +9 -16
  1817. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +9 -16
  1818. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +9 -16
  1819. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +9 -16
  1820. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePropertiesCommand.d.ts +9 -16
  1821. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +9 -16
  1822. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +9 -16
  1823. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +9 -16
  1824. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +9 -16
  1825. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +9 -16
  1826. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +9 -16
  1827. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +9 -16
  1828. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +9 -16
  1829. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +9 -16
  1830. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +9 -16
  1831. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +9 -16
  1832. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +9 -16
  1833. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +9 -16
  1834. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +9 -16
  1835. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +9 -16
  1836. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +9 -16
  1837. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +9 -16
  1838. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +9 -16
  1839. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +9 -16
  1840. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +9 -16
  1841. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCloudConnectorCommand.d.ts +44 -0
  1842. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +9 -16
  1843. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +9 -16
  1844. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +9 -16
  1845. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +9 -16
  1846. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +9 -16
  1847. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetExecutionPreviewCommand.d.ts +9 -16
  1848. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +9 -16
  1849. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +9 -16
  1850. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +9 -16
  1851. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +9 -16
  1852. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +9 -16
  1853. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +9 -16
  1854. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +9 -16
  1855. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +9 -16
  1856. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +9 -16
  1857. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +9 -16
  1858. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +9 -16
  1859. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +9 -16
  1860. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +10 -17
  1861. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +9 -16
  1862. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +10 -17
  1863. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +10 -17
  1864. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +10 -17
  1865. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +12 -17
  1866. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +9 -16
  1867. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +9 -16
  1868. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +9 -16
  1869. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCloudConnectorsCommand.d.ts +44 -0
  1870. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +9 -16
  1871. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +9 -16
  1872. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +9 -16
  1873. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +9 -16
  1874. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +9 -16
  1875. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +9 -16
  1876. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +9 -16
  1877. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +9 -16
  1878. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesCommand.d.ts +9 -18
  1879. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesSummaryCommand.d.ts +9 -16
  1880. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +9 -16
  1881. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +9 -16
  1882. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +9 -16
  1883. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +9 -16
  1884. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +9 -16
  1885. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -16
  1886. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +9 -16
  1887. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +9 -16
  1888. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +9 -16
  1889. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +9 -16
  1890. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +9 -16
  1891. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +9 -16
  1892. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +9 -16
  1893. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +9 -16
  1894. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +9 -16
  1895. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +9 -16
  1896. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +9 -16
  1897. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +9 -16
  1898. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +9 -16
  1899. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +9 -16
  1900. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAccessRequestCommand.d.ts +9 -16
  1901. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +9 -16
  1902. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +9 -16
  1903. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +9 -16
  1904. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartExecutionPreviewCommand.d.ts +9 -16
  1905. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +9 -16
  1906. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +9 -16
  1907. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +9 -16
  1908. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +9 -16
  1909. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +9 -16
  1910. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +9 -16
  1911. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateCloudConnectorCommand.d.ts +44 -0
  1912. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +9 -16
  1913. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +9 -16
  1914. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +9 -16
  1915. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +9 -16
  1916. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +9 -16
  1917. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +9 -16
  1918. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +9 -16
  1919. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +9 -16
  1920. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +9 -16
  1921. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +9 -16
  1922. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +9 -16
  1923. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +9 -16
  1924. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ValidateCloudConnectorCommand.d.ts +44 -0
  1925. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +6 -0
  1926. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
  1927. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  1928. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/index.d.ts +1 -0
  1929. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/SSMServiceException.d.ts +1 -1
  1930. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/enums.d.ts +42 -0
  1931. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/errors.d.ts +27 -21
  1932. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +78 -59
  1933. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +123 -0
  1934. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCloudConnectorsPaginator.d.ts +11 -0
  1935. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ValidateCloudConnectorPaginator.d.ts +11 -0
  1936. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +2 -0
  1937. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
  1938. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
  1939. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
  1940. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  1941. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
  1942. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +10 -4
  1943. package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +5 -4
  1944. package/node_modules/@aws-sdk/client-ssm/package.json +15 -47
  1945. package/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +1 -3
  1946. package/node_modules/@aws-sdk/core/client.d.ts +1 -3
  1947. package/node_modules/@aws-sdk/core/dist-cjs/index.js +19 -2236
  1948. package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -4
  1949. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +923 -7
  1950. package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +31 -27
  1951. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +211 -189
  1952. package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +57 -0
  1953. package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
  1954. package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +1 -1
  1955. package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -3
  1956. package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -6
  1957. package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.browser.js +36 -0
  1958. package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +26 -4
  1959. package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.native.js +37 -0
  1960. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-host-header/hostHeaderMiddleware.js +33 -0
  1961. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/configuration.js +7 -0
  1962. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.js +3 -0
  1963. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.js +58 -0
  1964. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-user-agent/check-features.js +49 -0
  1965. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-user-agent/user-agent-middleware.js +82 -0
  1966. package/node_modules/@aws-sdk/core/dist-es/submodules/client/region-config-resolver/awsRegionConfig.js +2 -0
  1967. package/node_modules/@aws-sdk/core/dist-es/submodules/client/region-config-resolver/stsRegionDefaultResolver.js +15 -0
  1968. package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +2 -0
  1969. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/aws.js +10 -0
  1970. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/isVirtualHostableS3Bucket.js +25 -0
  1971. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partition.js +41 -0
  1972. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +276 -0
  1973. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/isIpAddress.js +1 -0
  1974. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
  1975. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/resolveEndpoint.js +1 -0
  1976. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/types/EndpointError.js +1 -0
  1977. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.browser.js +1 -0
  1978. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/defaultUserAgent.js +31 -0
  1979. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.js +9 -0
  1980. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +2 -1
  1981. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +12 -7
  1982. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +3 -3
  1983. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +1 -1
  1984. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -2
  1985. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +1 -1
  1986. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -3
  1987. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +12 -11
  1988. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +4 -1
  1989. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +1 -1
  1990. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -2
  1991. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +19 -20
  1992. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +11 -11
  1993. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +3 -2
  1994. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +7 -5
  1995. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +16 -12
  1996. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +1 -1
  1997. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +3 -3
  1998. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +43 -28
  1999. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +4 -9
  2000. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +4 -4
  2001. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +3 -3
  2002. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +2 -2
  2003. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +6 -5
  2004. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +1 -1
  2005. package/node_modules/@aws-sdk/core/dist-es/submodules/util/index.js +2 -0
  2006. package/node_modules/@aws-sdk/core/dist-es/submodules/util/util-format-url/format-url.js +29 -0
  2007. package/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +3 -1
  2008. package/node_modules/@aws-sdk/core/dist-types/index.d.ts +13 -14
  2009. package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
  2010. package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +5 -3
  2011. package/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +1 -2
  2012. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.browser.d.ts +47 -0
  2013. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +38 -4
  2014. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.native.d.ts +48 -0
  2015. package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/configuration.d.ts +6 -0
  2016. package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.d.ts +5 -0
  2017. package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.d.ts +10 -0
  2018. package/node_modules/@aws-sdk/core/dist-types/submodules/client/region-config-resolver/awsRegionConfig.d.ts +15 -0
  2019. package/node_modules/@aws-sdk/core/dist-types/submodules/client/region-config-resolver/stsRegionDefaultResolver.d.ts +14 -0
  2020. package/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +1 -1
  2021. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/aws.d.ts +2 -0
  2022. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/lib/aws/partitions.d.ts +638 -0
  2023. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/lib/isIpAddress.d.ts +1 -0
  2024. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/resolveEndpoint.d.ts +1 -0
  2025. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointError.d.ts +1 -0
  2026. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +1 -0
  2027. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -0
  2028. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/RuleSetObject.d.ts +1 -0
  2029. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -0
  2030. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/shared.d.ts +1 -0
  2031. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/createUserAgentStringParsingProvider.d.ts +14 -0
  2032. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +2 -0
  2033. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.d.ts +13 -0
  2034. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
  2035. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -3
  2036. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
  2037. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +3 -2
  2038. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
  2039. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +1 -1
  2040. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +22 -20
  2041. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +2 -2
  2042. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +4 -0
  2043. package/node_modules/@aws-sdk/core/dist-types/submodules/util/index.d.ts +3 -0
  2044. package/node_modules/@aws-sdk/core/dist-types/submodules/util/util-format-url/format-url.d.ts +2 -0
  2045. package/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +0 -1
  2046. package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +65 -3
  2047. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
  2048. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +16 -3
  2049. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.browser.d.ts +116 -0
  2050. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +123 -4
  2051. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.native.d.ts +116 -0
  2052. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.d.ts +4 -0
  2053. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/region-config-resolver/awsRegionConfig.d.ts +8 -0
  2054. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/region-config-resolver/stsRegionDefaultResolver.d.ts +7 -0
  2055. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/aws.d.ts +2 -0
  2056. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/lib/aws/partitions.d.ts +647 -0
  2057. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/lib/isIpAddress.d.ts +1 -0
  2058. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/resolveEndpoint.d.ts +1 -0
  2059. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/EndpointError.d.ts +1 -0
  2060. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +6 -0
  2061. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -0
  2062. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/RuleSetObject.d.ts +5 -0
  2063. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -0
  2064. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/shared.d.ts +12 -0
  2065. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/createUserAgentStringParsingProvider.d.ts +9 -0
  2066. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +7 -0
  2067. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.d.ts +6 -0
  2068. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
  2069. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +23 -3
  2070. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
  2071. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +24 -2
  2072. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
  2073. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +1 -1
  2074. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +31 -20
  2075. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +1 -1
  2076. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +5 -0
  2077. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/index.d.ts +3 -0
  2078. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/util-format-url/format-url.d.ts +4 -0
  2079. package/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +1 -3
  2080. package/node_modules/@aws-sdk/core/package.json +40 -23
  2081. package/node_modules/@aws-sdk/core/protocols.d.ts +1 -3
  2082. package/node_modules/@aws-sdk/core/util.d.ts +5 -0
  2083. package/node_modules/@aws-sdk/core/util.js +5 -0
  2084. package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -6
  2085. package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +1 -1
  2086. package/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -1
  2087. package/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +2 -4
  2088. package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +10 -1
  2089. package/node_modules/@aws-sdk/credential-provider-env/package.json +10 -10
  2090. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +179 -5
  2091. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +1 -1
  2092. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +1 -1
  2093. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +29 -17
  2094. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +4 -4
  2095. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +1 -1
  2096. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +1 -1
  2097. package/node_modules/@aws-sdk/credential-provider-http/package.json +23 -18
  2098. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +47 -42
  2099. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +1 -1
  2100. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -1
  2101. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +1 -2
  2102. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +1 -1
  2103. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +1 -1
  2104. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -4
  2105. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +1 -1
  2106. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -10
  2107. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +1 -1
  2108. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +2 -4
  2109. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +1 -1
  2110. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +2 -1
  2111. package/node_modules/@aws-sdk/credential-provider-ini/package.json +18 -19
  2112. package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +31 -34
  2113. package/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +2 -3
  2114. package/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +1 -2
  2115. package/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +1 -2
  2116. package/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +2 -8
  2117. package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +7 -2
  2118. package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +1 -1
  2119. package/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +1 -1
  2120. package/node_modules/@aws-sdk/credential-provider-login/package.json +11 -13
  2121. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +28 -20
  2122. package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +1 -2
  2123. package/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -1
  2124. package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +1 -1
  2125. package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +12 -1
  2126. package/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +2 -1
  2127. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +6 -1
  2128. package/node_modules/@aws-sdk/credential-provider-node/package.json +16 -17
  2129. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +11 -14
  2130. package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +1 -1
  2131. package/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -1
  2132. package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +1 -2
  2133. package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +1 -1
  2134. package/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +2 -4
  2135. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +1 -1
  2136. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +2 -1
  2137. package/node_modules/@aws-sdk/credential-provider-process/package.json +10 -11
  2138. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +26 -26
  2139. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BGYXHf8s.js +3 -0
  2140. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +1 -2
  2141. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +3 -4
  2142. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +6 -4
  2143. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +1 -1
  2144. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +5 -5
  2145. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +5 -16
  2146. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +1 -1
  2147. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +5 -4
  2148. package/node_modules/@aws-sdk/credential-provider-sso/package.json +15 -14
  2149. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +55 -24
  2150. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +1 -2
  2151. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -2
  2152. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +4 -8
  2153. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +7 -2
  2154. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +12 -14
  2155. package/node_modules/@aws-sdk/middleware-sdk-route53/dist-cjs/index.js +0 -2
  2156. package/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/index.js +2 -2
  2157. package/node_modules/@aws-sdk/middleware-sdk-route53/dist-types/index.d.ts +4 -2
  2158. package/node_modules/@aws-sdk/middleware-sdk-route53/dist-types/ts3.4/index.d.ts +12 -2
  2159. package/node_modules/@aws-sdk/middleware-sdk-route53/package.json +9 -9
  2160. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -567
  2161. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +1040 -0
  2162. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +213 -0
  2163. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -9
  2164. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/NodeDisableMultiregionAccessPointConfigOptions.js +8 -0
  2165. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/NodeUseArnRegionConfigOptions.js +8 -0
  2166. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.browser.js +30 -0
  2167. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.js +25 -0
  2168. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint/bucketEndpointMiddleware.js +81 -0
  2169. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-check-content-length-header/check-content-length-header.js +32 -0
  2170. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-expect-continue/middleware-expect-continue.js +41 -0
  2171. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-configuration/s3Configuration.js +17 -0
  2172. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-expires/s3-expires-middleware.js +33 -0
  2173. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/classes/SignatureV4S3Express.js +3 -0
  2174. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/constants.js +13 -0
  2175. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/functions/s3ExpressHttpSigningMiddleware.js +38 -0
  2176. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/functions/s3ExpressMiddleware.js +41 -0
  2177. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.js +51 -0
  2178. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-validate-bucket-name/validate-bucket-name.js +25 -0
  2179. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/to-stream/toStream.browser.js +8 -0
  2180. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/to-stream/toStream.js +4 -0
  2181. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/configurations.js +7 -0
  2182. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/constants.js +5 -0
  2183. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/index.js +7 -0
  2184. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.js +17 -0
  2185. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.js +18 -0
  2186. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.js +8 -0
  2187. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.js +94 -0
  2188. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/update-arnables-request.js +31 -0
  2189. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.js +26 -0
  2190. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -9
  2191. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/NodeDisableMultiregionAccessPointConfigOptions.d.ts +4 -0
  2192. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/NodeUseArnRegionConfigOptions.d.ts +9 -0
  2193. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.browser.d.ts +36 -0
  2194. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.d.ts +32 -0
  2195. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint/bucketHostnameUtils.d.ts +174 -0
  2196. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts +12 -0
  2197. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-configuration/s3Configuration.d.ts +79 -0
  2198. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-express/classes/SignatureV4S3Express.d.ts +6 -0
  2199. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-express/constants.d.ts +37 -0
  2200. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +27 -0
  2201. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.d.ts +21 -0
  2202. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-validate-bucket-name/validate-bucket-name.d.ts +14 -0
  2203. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/to-stream/toStream.browser.d.ts +4 -0
  2204. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/to-stream/toStream.d.ts +5 -0
  2205. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/configurations.d.ts +47 -0
  2206. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/constants.d.ts +5 -0
  2207. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/index.d.ts +9 -0
  2208. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +17 -0
  2209. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +6 -0
  2210. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +3 -0
  2211. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.d.ts +27 -0
  2212. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/update-arnables-request.d.ts +19 -0
  2213. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.d.ts +17 -0
  2214. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +39 -9
  2215. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/NodeDisableMultiregionAccessPointConfigOptions.d.ts +6 -0
  2216. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/NodeUseArnRegionConfigOptions.d.ts +6 -0
  2217. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.browser.d.ts +103 -0
  2218. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.d.ts +107 -0
  2219. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint/bucketHostnameUtils.d.ts +80 -0
  2220. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts +22 -0
  2221. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-configuration/s3Configuration.d.ts +33 -0
  2222. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-express/classes/SignatureV4S3Express.d.ts +2 -0
  2223. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-express/constants.d.ts +11 -0
  2224. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +40 -0
  2225. 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
  2226. 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
  2227. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/to-stream/toStream.browser.d.ts +1 -0
  2228. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/to-stream/toStream.d.ts +2 -0
  2229. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/configurations.d.ts +23 -0
  2230. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/constants.d.ts +5 -0
  2231. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/index.d.ts +26 -0
  2232. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +13 -0
  2233. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +13 -0
  2234. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +5 -0
  2235. 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
  2236. 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
  2237. 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
  2238. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +63 -24
  2239. package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +5 -0
  2240. package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.js +5 -0
  2241. package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +5 -0
  2242. package/node_modules/@aws-sdk/middleware-sdk-s3/s3.js +5 -0
  2243. package/node_modules/@aws-sdk/nested-clients/cognito-identity.d.ts +1 -3
  2244. package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +0 -1
  2245. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +525 -85
  2246. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +450 -75
  2247. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +382 -75
  2248. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +576 -75
  2249. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +748 -72
  2250. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentity.js +1 -1
  2251. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +6 -9
  2252. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +5 -6
  2253. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commandBuilder.js +6 -0
  2254. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -14
  2255. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -14
  2256. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +61 -0
  2257. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +4 -4
  2258. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/index.js +1 -0
  2259. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/CognitoIdentityServiceException.js +1 -1
  2260. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +6 -11
  2261. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +7 -15
  2262. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.native.js +0 -2
  2263. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +5 -4
  2264. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeExtensions.js +3 -3
  2265. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/schemas/schemas_0.js +73 -41
  2266. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +1 -1
  2267. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +6 -9
  2268. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +5 -6
  2269. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commandBuilder.js +8 -0
  2270. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -14
  2271. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +90 -0
  2272. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +5 -5
  2273. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +1 -0
  2274. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +1 -1
  2275. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +3 -0
  2276. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +6 -11
  2277. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +7 -15
  2278. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +0 -2
  2279. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +5 -4
  2280. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +3 -3
  2281. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +36 -59
  2282. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js +1 -1
  2283. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js +6 -9
  2284. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +5 -6
  2285. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commandBuilder.js +6 -0
  2286. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -14
  2287. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +49 -0
  2288. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +4 -4
  2289. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/index.js +1 -0
  2290. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/SSOServiceException.js +1 -1
  2291. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +6 -11
  2292. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +7 -15
  2293. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.native.js +0 -2
  2294. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +5 -4
  2295. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js +3 -3
  2296. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/schemas/schemas_0.js +32 -32
  2297. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +1 -1
  2298. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +6 -9
  2299. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +5 -6
  2300. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commandBuilder.js +6 -0
  2301. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -14
  2302. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +49 -0
  2303. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +4 -4
  2304. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +1 -0
  2305. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +1 -1
  2306. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +6 -11
  2307. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +7 -15
  2308. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +0 -2
  2309. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +5 -4
  2310. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +3 -3
  2311. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +50 -50
  2312. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +1 -1
  2313. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +7 -9
  2314. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +91 -13
  2315. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commandBuilder.js +6 -0
  2316. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -14
  2317. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -14
  2318. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +1 -1
  2319. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +1 -7
  2320. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +85 -0
  2321. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +4 -4
  2322. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +1 -0
  2323. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +1 -1
  2324. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +1 -0
  2325. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +6 -11
  2326. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +15 -18
  2327. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +0 -2
  2328. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +13 -5
  2329. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +3 -3
  2330. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +63 -80
  2331. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +6 -7
  2332. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commandBuilder.d.ts +18 -0
  2333. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +3 -6
  2334. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +3 -6
  2335. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
  2336. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
  2337. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/index.d.ts +1 -0
  2338. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
  2339. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/errors.d.ts +1 -1
  2340. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +7 -7
  2341. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +6 -6
  2342. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +7 -7
  2343. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
  2344. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +6 -7
  2345. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commandBuilder.d.ts +18 -0
  2346. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -6
  2347. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
  2348. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/bdd.d.ts +2 -0
  2349. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +1 -1
  2350. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +1 -0
  2351. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +1 -1
  2352. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +12 -0
  2353. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +1 -1
  2354. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +7 -7
  2355. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +6 -6
  2356. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +7 -7
  2357. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +1 -0
  2358. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSOClient.d.ts +6 -7
  2359. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commandBuilder.d.ts +18 -0
  2360. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -6
  2361. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/bdd.d.ts +2 -0
  2362. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/extensionConfiguration.d.ts +1 -1
  2363. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/index.d.ts +1 -0
  2364. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/SSOServiceException.d.ts +1 -1
  2365. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/errors.d.ts +1 -1
  2366. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +7 -7
  2367. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +6 -6
  2368. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +7 -7
  2369. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.shared.d.ts +1 -0
  2370. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +6 -7
  2371. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commandBuilder.d.ts +18 -0
  2372. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -6
  2373. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
  2374. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
  2375. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +1 -0
  2376. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
  2377. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +1 -1
  2378. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +7 -7
  2379. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +6 -6
  2380. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +7 -7
  2381. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
  2382. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +6 -7
  2383. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +16 -18
  2384. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commandBuilder.d.ts +18 -0
  2385. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +3 -6
  2386. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +3 -6
  2387. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +0 -9
  2388. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/bdd.d.ts +2 -0
  2389. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +1 -1
  2390. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +1 -0
  2391. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +1 -1
  2392. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +2 -1
  2393. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +10 -9
  2394. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +16 -10
  2395. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +10 -9
  2396. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +4 -1
  2397. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +9 -17
  2398. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commandBuilder.d.ts +46 -0
  2399. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +9 -16
  2400. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +9 -16
  2401. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
  2402. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
  2403. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +1 -0
  2404. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
  2405. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/errors.d.ts +1 -1
  2406. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +13 -7
  2407. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +12 -6
  2408. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +14 -8
  2409. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
  2410. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +9 -17
  2411. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commandBuilder.d.ts +42 -0
  2412. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +5 -8
  2413. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
  2414. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/bdd.d.ts +2 -0
  2415. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +1 -1
  2416. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +1 -0
  2417. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +1 -1
  2418. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +3 -0
  2419. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +1 -1
  2420. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +13 -7
  2421. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +12 -6
  2422. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +14 -8
  2423. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +1 -0
  2424. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +9 -17
  2425. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commandBuilder.d.ts +42 -0
  2426. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +5 -8
  2427. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/bdd.d.ts +2 -0
  2428. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/extensionConfiguration.d.ts +1 -1
  2429. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/index.d.ts +1 -0
  2430. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/SSOServiceException.d.ts +1 -1
  2431. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/errors.d.ts +1 -1
  2432. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +13 -7
  2433. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +12 -6
  2434. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +14 -8
  2435. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +1 -0
  2436. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +9 -17
  2437. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commandBuilder.d.ts +42 -0
  2438. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +5 -8
  2439. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
  2440. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
  2441. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +1 -0
  2442. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
  2443. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +1 -1
  2444. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +13 -7
  2445. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +12 -6
  2446. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +14 -8
  2447. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
  2448. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +9 -17
  2449. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +20 -19
  2450. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commandBuilder.d.ts +46 -0
  2451. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +9 -16
  2452. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +9 -16
  2453. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +0 -3
  2454. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/bdd.d.ts +2 -0
  2455. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +1 -1
  2456. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +1 -0
  2457. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +1 -1
  2458. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +2 -1
  2459. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +24 -12
  2460. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +47 -22
  2461. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +25 -13
  2462. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +9 -1
  2463. package/node_modules/@aws-sdk/nested-clients/package.json +16 -45
  2464. package/node_modules/@aws-sdk/nested-clients/signin.d.ts +1 -3
  2465. package/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +1 -3
  2466. package/node_modules/@aws-sdk/nested-clients/sso.d.ts +1 -3
  2467. package/node_modules/@aws-sdk/nested-clients/sts.d.ts +1 -3
  2468. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +41 -7
  2469. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js +2 -2
  2470. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4SignWithCredentials.js +36 -0
  2471. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/index.js +3 -2
  2472. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4MultiRegion.d.ts +1 -1
  2473. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4SignWithCredentials.d.ts +20 -0
  2474. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/index.d.ts +3 -5
  2475. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4SignWithCredentials.d.ts +21 -0
  2476. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +9 -2
  2477. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +12 -13
  2478. package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +26 -29
  2479. package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +1 -1
  2480. package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +1 -2
  2481. package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +1 -1
  2482. package/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -4
  2483. package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +1 -1
  2484. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +1 -1
  2485. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +1 -1
  2486. package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +1 -1
  2487. package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +1 -1
  2488. package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +1 -1
  2489. package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +7 -4
  2490. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +1 -1
  2491. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +1 -1
  2492. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +7 -4
  2493. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +1 -1
  2494. package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +1 -1
  2495. package/node_modules/@aws-sdk/token-providers/package.json +11 -12
  2496. package/node_modules/@aws-sdk/types/dist-cjs/index.js +7 -8
  2497. package/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -1
  2498. package/node_modules/@aws-sdk/types/dist-es/identity/index.js +1 -5
  2499. package/node_modules/@aws-sdk/types/dist-es/index.js +4 -34
  2500. package/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -1
  2501. package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -1
  2502. package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +2 -1
  2503. package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -2
  2504. package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -1
  2505. package/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -1
  2506. package/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -1
  2507. package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -1
  2508. package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -1
  2509. package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -1
  2510. package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +2 -1
  2511. package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -1
  2512. package/node_modules/@aws-sdk/types/dist-types/http.d.ts +1 -1
  2513. package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +7 -7
  2514. package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -1
  2515. package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -1
  2516. package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -5
  2517. package/node_modules/@aws-sdk/types/dist-types/index.d.ts +42 -34
  2518. package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +1 -1
  2519. package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -1
  2520. package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -1
  2521. package/node_modules/@aws-sdk/types/dist-types/response.d.ts +1 -1
  2522. package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -1
  2523. package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +1 -1
  2524. package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -1
  2525. package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -1
  2526. package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -1
  2527. package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +2 -1
  2528. package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +2 -5
  2529. package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +1 -1
  2530. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +1 -1
  2531. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +17 -5
  2532. package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +225 -34
  2533. package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +1 -1
  2534. package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -1
  2535. package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -1
  2536. package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -1
  2537. package/node_modules/@aws-sdk/types/package.json +7 -7
  2538. package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +236 -5
  2539. package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +2 -2
  2540. package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +1 -1
  2541. package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +233 -19
  2542. package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +2 -11
  2543. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -2
  2544. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -1
  2545. package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +2 -1
  2546. package/node_modules/@aws-sdk/xml-builder/package.json +11 -11
  2547. package/node_modules/@selderee/plugin-htmlparser2/LICENSE +1 -1
  2548. package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.cjs +51 -4
  2549. package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.d.cts +25 -0
  2550. package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.d.mts +25 -0
  2551. package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.mjs +51 -2
  2552. package/node_modules/@selderee/plugin-htmlparser2/package.json +20 -9
  2553. package/node_modules/@smithy/core/cbor.d.ts +1 -3
  2554. package/node_modules/@smithy/core/cbor.js +0 -1
  2555. package/node_modules/@smithy/core/checksum.d.ts +5 -0
  2556. package/node_modules/@smithy/core/checksum.js +5 -0
  2557. package/node_modules/@smithy/core/client.d.ts +5 -0
  2558. package/node_modules/@smithy/core/client.js +5 -0
  2559. package/node_modules/@smithy/core/config.d.ts +5 -0
  2560. package/node_modules/@smithy/core/config.js +5 -0
  2561. package/node_modules/@smithy/core/dist-cjs/index.js +15 -18
  2562. package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +576 -417
  2563. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +413 -0
  2564. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +577 -0
  2565. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +440 -0
  2566. package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1145 -0
  2567. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +374 -0
  2568. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +779 -0
  2569. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +363 -0
  2570. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +826 -0
  2571. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +851 -15
  2572. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +867 -0
  2573. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +645 -12
  2574. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +230 -66
  2575. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +816 -0
  2576. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +843 -0
  2577. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +25 -12
  2578. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +1397 -0
  2579. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +1047 -6
  2580. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +1397 -0
  2581. package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +182 -0
  2582. package/node_modules/@smithy/core/dist-es/index.js +8 -8
  2583. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +42 -0
  2584. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/index.js +3 -0
  2585. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js +23 -0
  2586. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/index.js +2 -0
  2587. package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/DefaultIdentityProviderConfig.js +14 -0
  2588. package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +34 -0
  2589. package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +11 -0
  2590. package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
  2591. package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/index.js +3 -0
  2592. package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +24 -14
  2593. package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +3 -4
  2594. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +325 -269
  2595. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +191 -103
  2596. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +4 -2
  2597. package/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +3 -3
  2598. package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +11 -6
  2599. package/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.js +27 -0
  2600. package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Js.js +30 -0
  2601. package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js +24 -0
  2602. package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-blob-browser/blobHasher.js +8 -0
  2603. package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/HashCalculator.js +18 -0
  2604. package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/fileStreamHasher.js +24 -0
  2605. package/node_modules/@smithy/core/dist-es/submodules/checksum/index.browser.js +12 -0
  2606. package/node_modules/@smithy/core/dist-es/submodules/checksum/index.js +11 -0
  2607. package/node_modules/@smithy/core/dist-es/submodules/checksum/index.native.js +12 -0
  2608. package/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Js.js +92 -0
  2609. package/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Node.js +29 -0
  2610. package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Js.js +179 -0
  2611. package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Node.js +59 -0
  2612. package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256WebCrypto.js +71 -0
  2613. package/node_modules/@smithy/core/dist-es/submodules/client/index.js +27 -0
  2614. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client-command-builder.js +17 -0
  2615. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client.js +51 -0
  2616. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/command.js +131 -0
  2617. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/checksum.js +49 -0
  2618. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.js +9 -0
  2619. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js +12 -0
  2620. package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/createWaiter.js +48 -0
  2621. package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/poller.js +87 -0
  2622. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +15 -0
  2623. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +15 -0
  2624. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
  2625. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.js +14 -0
  2626. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js +15 -0
  2627. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/config.js +17 -0
  2628. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.js +92 -0
  2629. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/constants.js +9 -0
  2630. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.js +30 -0
  2631. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js +45 -0
  2632. package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.js +19 -0
  2633. package/node_modules/@smithy/core/dist-es/submodules/config/index.browser.js +43 -0
  2634. package/node_modules/@smithy/core/dist-es/submodules/config/index.js +29 -0
  2635. package/node_modules/@smithy/core/dist-es/submodules/config/index.native.js +43 -0
  2636. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/configLoader.js +10 -0
  2637. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromEnv.js +14 -0
  2638. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromSharedConfigFiles.js +24 -0
  2639. package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromStatic.js +3 -0
  2640. package/node_modules/@smithy/core/dist-es/submodules/config/property-provider/fromValue.js +1 -0
  2641. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigFilepath.js +4 -0
  2642. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getCredentialsFilepath.js +4 -0
  2643. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getHomeDir.js +22 -0
  2644. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.js +8 -0
  2645. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.js +11 -0
  2646. package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.js +39 -0
  2647. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +22 -0
  2648. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +22 -1
  2649. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.js +3 -0
  2650. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.js +65 -0
  2651. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.js +31 -0
  2652. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js +1 -0
  2653. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +47 -0
  2654. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/getEndpointPlugin.js +26 -0
  2655. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js +25 -0
  2656. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/index.js +1 -0
  2657. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.js +15 -0
  2658. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/index.js +2 -0
  2659. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/decideEndpoint.js +42 -0
  2660. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/coalesce.js +8 -0
  2661. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/getAttr.js +12 -0
  2662. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js +12 -0
  2663. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/ite.js +3 -0
  2664. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/split.js +13 -0
  2665. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/substring.js +9 -0
  2666. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/resolveEndpoint.js +22 -0
  2667. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/index.js +1 -0
  2668. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/endpointFunctions.js +15 -0
  2669. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateCondition.js +16 -0
  2670. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateConditions.js +26 -0
  2671. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateEndpointRule.js +28 -0
  2672. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.js +17 -0
  2673. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateExpression.js +46 -0
  2674. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateRules.js +42 -0
  2675. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateTemplate.js +33 -0
  2676. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.js +12 -0
  2677. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointProperties.js +28 -0
  2678. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getReferenceValue.js +3 -0
  2679. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/index.js +2 -0
  2680. package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +17 -9
  2681. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/EventStreamCodec.js +67 -0
  2682. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/HeaderMarshaller.js +184 -0
  2683. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/Int64.js +44 -0
  2684. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/splitMessage.js +31 -0
  2685. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.js +21 -0
  2686. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.js +45 -0
  2687. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/utils.js +28 -0
  2688. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.js +30 -0
  2689. package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.browser.js +14 -0
  2690. package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +14 -1
  2691. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +12 -8
  2692. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +23 -10
  2693. package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +2 -2
  2694. package/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +1 -1
  2695. package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +25 -13
  2696. package/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js +39 -0
  2697. package/node_modules/@smithy/core/dist-es/submodules/protocols/querystring-builder/buildQueryString.js +21 -0
  2698. package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +1 -1
  2699. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +1 -3
  2700. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +1 -1
  2701. package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +1 -2
  2702. package/node_modules/@smithy/core/dist-es/submodules/retry/index.browser.js +27 -0
  2703. package/node_modules/@smithy/core/dist-es/submodules/retry/index.js +20 -0
  2704. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js +63 -0
  2705. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.js +3 -0
  2706. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.js +22 -0
  2707. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/parseRetryAfterHeader.js +49 -0
  2708. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +22 -0
  2709. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +95 -0
  2710. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.js +27 -0
  2711. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.js +2 -0
  2712. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.js +7 -0
  2713. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js +108 -0
  2714. package/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/constants.js +28 -0
  2715. package/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/service-error-classification.js +44 -0
  2716. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/AdaptiveRetryStrategy.js +36 -0
  2717. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js +18 -0
  2718. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +111 -0
  2719. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRetryToken.js +28 -0
  2720. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js +97 -0
  2721. package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +18 -1
  2722. package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -14
  2723. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +3 -4
  2724. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +1 -2
  2725. package/node_modules/@smithy/core/dist-es/submodules/serde/concatBytes.js +15 -0
  2726. package/node_modules/@smithy/core/dist-es/submodules/serde/hash-node/hash-node.js +36 -0
  2727. package/node_modules/@smithy/core/dist-es/submodules/serde/index.browser.js +43 -0
  2728. package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +42 -10
  2729. package/node_modules/@smithy/core/dist-es/submodules/serde/index.native.js +45 -0
  2730. package/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js +58 -0
  2731. package/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +6 -3
  2732. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.browser.js +36 -0
  2733. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.js +12 -0
  2734. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.browser.js +35 -0
  2735. package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.js +15 -0
  2736. package/node_modules/@smithy/core/dist-es/submodules/serde/util-body-length/calculateBodyLength.js +27 -0
  2737. package/node_modules/@smithy/core/dist-es/submodules/serde/util-buffer-from/buffer-from.js +13 -0
  2738. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.js +23 -0
  2739. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +68 -0
  2740. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.browser.js +35 -0
  2741. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.js +9 -0
  2742. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.js +57 -0
  2743. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js +39 -0
  2744. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.browser.js +64 -0
  2745. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.js +50 -0
  2746. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.js +13 -0
  2747. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js +27 -0
  2748. package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js +33 -0
  2749. package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.js +5 -0
  2750. package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.browser.js +13 -0
  2751. package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.js +13 -0
  2752. package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.js +10 -0
  2753. package/node_modules/@smithy/core/dist-es/submodules/serde/uuid/v4.js +32 -0
  2754. package/node_modules/@smithy/core/dist-es/submodules/transport/index.js +9 -0
  2755. package/node_modules/@smithy/core/dist-es/submodules/transport/parseUrl.js +18 -0
  2756. package/node_modules/@smithy/core/dist-es/submodules/transport/toEndpointV1.js +17 -0
  2757. package/node_modules/@smithy/core/dist-types/index.d.ts +14 -8
  2758. package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
  2759. package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
  2760. package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
  2761. package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/index.d.ts +4 -0
  2762. package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-signing/index.d.ts +2 -0
  2763. package/node_modules/@smithy/core/dist-types/legacy-root-exports/pagination/createPaginator.d.ts +7 -0
  2764. package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
  2765. package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
  2766. package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
  2767. package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/index.d.ts +4 -0
  2768. package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/memoizeIdentityProvider.d.ts +31 -0
  2769. package/node_modules/@smithy/core/dist-types/setFeature.d.ts +3 -3
  2770. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +9 -4
  2771. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +8 -4
  2772. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +4 -4
  2773. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +3 -4
  2774. package/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +3 -3
  2775. package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +3 -3
  2776. package/node_modules/@smithy/core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.d.ts +6 -0
  2777. package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Js.d.ts +18 -0
  2778. package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Node.d.ts +18 -0
  2779. package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/HashCalculator.d.ts +10 -0
  2780. package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/fileStreamHasher.d.ts +6 -0
  2781. package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/readableStreamHasher.d.ts +6 -0
  2782. package/node_modules/@smithy/core/dist-types/submodules/checksum/index.browser.d.ts +11 -0
  2783. package/node_modules/@smithy/core/dist-types/submodules/checksum/index.d.ts +11 -0
  2784. package/node_modules/@smithy/core/dist-types/submodules/checksum/index.native.d.ts +11 -0
  2785. package/node_modules/@smithy/core/dist-types/submodules/checksum/md5/Md5Js.d.ts +19 -0
  2786. package/node_modules/@smithy/core/dist-types/submodules/checksum/md5/Md5Node.d.ts +17 -0
  2787. package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256Js.d.ts +28 -0
  2788. package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256Node.d.ts +13 -0
  2789. package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256WebCrypto.d.ts +22 -0
  2790. package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +27 -0
  2791. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client-command-builder.d.ts +22 -0
  2792. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client.d.ts +84 -0
  2793. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/command.d.ts +118 -0
  2794. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/create-aggregated-client.d.ts +16 -0
  2795. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/default-error-handler.d.ts +15 -0
  2796. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.d.ts +7 -0
  2797. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/exceptions.d.ts +42 -0
  2798. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/checksum.d.ts +25 -0
  2799. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.d.ts +38 -0
  2800. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-array-if-single-item.d.ts +7 -0
  2801. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-value-from-text-node.d.ts +7 -0
  2802. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/object-mapping.d.ts +163 -0
  2803. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/ser-utils.d.ts +14 -0
  2804. package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/serde-json.d.ts +10 -0
  2805. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/createWaiter.d.ts +11 -0
  2806. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/poller.d.ts +11 -0
  2807. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/utils/validate.d.ts +8 -0
  2808. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/waiter.d.ts +49 -0
  2809. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +23 -0
  2810. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +23 -0
  2811. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
  2812. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/config.d.ts +17 -0
  2813. package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.d.ts +7 -0
  2814. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/constants.d.ts +36 -0
  2815. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/defaultsModeConfig.d.ts +6 -0
  2816. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.d.ts +17 -0
  2817. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.d.ts +17 -0
  2818. package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.d.ts +16 -0
  2819. package/node_modules/@smithy/core/dist-types/submodules/config/index.browser.d.ts +55 -0
  2820. package/node_modules/@smithy/core/dist-types/submodules/config/index.d.ts +36 -0
  2821. package/node_modules/@smithy/core/dist-types/submodules/config/index.native.d.ts +55 -0
  2822. package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/configLoader.d.ts +31 -0
  2823. package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/fromSharedConfigFiles.d.ts +22 -0
  2824. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/CredentialsProviderError.d.ts +29 -0
  2825. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/ProviderError.d.ts +38 -0
  2826. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/TokenProviderError.d.ts +29 -0
  2827. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/chain.d.ts +12 -0
  2828. package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/fromValue.d.ts +5 -0
  2829. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getConfigData.d.ts +8 -0
  2830. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.d.ts +53 -0
  2831. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSsoSessionData.d.ts +6 -0
  2832. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseIni.d.ts +2 -0
  2833. package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseKnownFiles.d.ts +18 -0
  2834. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +24 -0
  2835. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +24 -1
  2836. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
  2837. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +20 -0
  2838. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.d.ts +2 -0
  2839. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +5 -0
  2840. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +10 -0
  2841. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +11 -0
  2842. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.d.ts +110 -0
  2843. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/service-customizations/index.d.ts +4 -0
  2844. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.d.ts +22 -0
  2845. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/cache/EndpointCache.d.ts +34 -0
  2846. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/debug/index.d.ts +2 -0
  2847. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/decideEndpoint.d.ts +7 -0
  2848. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/getEndpointUrlConfig.d.ts +12 -0
  2849. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/coalesce.d.ts +7 -0
  2850. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/index.d.ts +13 -0
  2851. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/ite.d.ts +6 -0
  2852. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/parseURL.d.ts +5 -0
  2853. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/split.d.ts +11 -0
  2854. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/resolveEndpoint.d.ts +6 -0
  2855. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/types/index.d.ts +7 -0
  2856. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/types/shared.d.ts +25 -0
  2857. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/endpointFunctions.d.ts +2 -0
  2858. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateCondition.d.ts +11 -0
  2859. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateConditions.d.ts +8 -0
  2860. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.d.ts +2 -0
  2861. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateExpression.d.ts +7 -0
  2862. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateRules.d.ts +8 -0
  2863. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.d.ts +2 -0
  2864. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointProperties.d.ts +8 -0
  2865. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointUrl.d.ts +2 -0
  2866. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getReferenceValue.d.ts +4 -0
  2867. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/index.d.ts +2 -0
  2868. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/EventStreamCodec.d.ts +30 -0
  2869. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.d.ts +46 -0
  2870. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.d.ts +31 -0
  2871. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/utils.d.ts +11 -0
  2872. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.d.ts +22 -0
  2873. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.d.ts +18 -0
  2874. package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.browser.d.ts +23 -0
  2875. package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +23 -1
  2876. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +2 -2
  2877. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
  2878. package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +3 -3
  2879. package/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +2 -2
  2880. package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +27 -13
  2881. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/Field.d.ts +49 -0
  2882. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.d.ts +33 -0
  2883. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpHandler.d.ts +31 -0
  2884. package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +3 -2
  2885. package/node_modules/@smithy/core/dist-types/submodules/retry/index.browser.d.ts +26 -0
  2886. package/node_modules/@smithy/core/dist-types/submodules/retry/index.d.ts +20 -0
  2887. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/configurations.d.ts +71 -0
  2888. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  2889. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  2890. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +23 -0
  2891. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retryMiddleware.d.ts +19 -0
  2892. package/node_modules/@smithy/core/dist-types/submodules/retry/service-error-classification/service-error-classification.d.ts +30 -0
  2893. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/AdaptiveRetryStrategy.d.ts +38 -0
  2894. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/ConfiguredRetryStrategy.d.ts +31 -0
  2895. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/DefaultRetryToken.d.ts +18 -0
  2896. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/StandardRetryStrategy.d.ts +56 -0
  2897. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/constants.d.ts +60 -0
  2898. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/retries-2026-config.d.ts +11 -0
  2899. package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
  2900. package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -14
  2901. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +1 -1
  2902. package/node_modules/@smithy/core/dist-types/submodules/serde/concatBytes.d.ts +6 -0
  2903. package/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +7 -19
  2904. package/node_modules/@smithy/core/dist-types/submodules/serde/index.browser.d.ts +41 -0
  2905. package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +39 -10
  2906. package/node_modules/@smithy/core/dist-types/submodules/serde/index.native.d.ts +39 -0
  2907. package/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +4 -6
  2908. package/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +31 -51
  2909. package/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +3 -12
  2910. package/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +1 -2
  2911. package/node_modules/@smithy/core/dist-types/submodules/serde/util-buffer-from/buffer-from.d.ts +12 -0
  2912. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.d.ts +18 -0
  2913. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +77 -0
  2914. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.browser.d.ts +14 -0
  2915. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.d.ts +13 -0
  2916. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.browser.d.ts +51 -0
  2917. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.d.ts +16 -0
  2918. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/getAwsChunkedEncodingStream.d.ts +10 -0
  2919. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/headStream.d.ts +9 -0
  2920. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/sdk-stream-mixin.d.ts +8 -0
  2921. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/splitStream.d.ts +11 -0
  2922. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.browser.d.ts +12 -0
  2923. package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.d.ts +6 -0
  2924. package/node_modules/@smithy/core/dist-types/submodules/serde/util-utf8/toUint8Array.browser.d.ts +4 -0
  2925. package/node_modules/@smithy/core/dist-types/submodules/serde/uuid/v4.d.ts +24 -0
  2926. package/node_modules/@smithy/core/dist-types/submodules/transport/getSmithyContext.d.ts +5 -0
  2927. package/node_modules/@smithy/core/dist-types/submodules/transport/httpRequest.d.ts +55 -0
  2928. package/node_modules/@smithy/core/dist-types/submodules/transport/index.d.ts +10 -0
  2929. package/node_modules/@smithy/core/endpoints.d.ts +1 -3
  2930. package/node_modules/@smithy/core/endpoints.js +0 -1
  2931. package/node_modules/@smithy/core/event-streams.d.ts +1 -3
  2932. package/node_modules/@smithy/core/event-streams.js +0 -1
  2933. package/node_modules/@smithy/core/package.json +135 -26
  2934. package/node_modules/@smithy/core/protocols.d.ts +1 -3
  2935. package/node_modules/@smithy/core/protocols.js +0 -1
  2936. package/node_modules/@smithy/core/retry.d.ts +5 -0
  2937. package/node_modules/@smithy/core/retry.js +5 -0
  2938. package/node_modules/@smithy/core/schema.d.ts +1 -3
  2939. package/node_modules/@smithy/core/schema.js +0 -1
  2940. package/node_modules/@smithy/core/serde.d.ts +1 -3
  2941. package/node_modules/@smithy/core/serde.js +0 -1
  2942. package/node_modules/@smithy/core/transport.d.ts +5 -0
  2943. package/node_modules/@smithy/core/transport.js +5 -0
  2944. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +55 -57
  2945. package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +1 -1
  2946. package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +16 -15
  2947. package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +2 -3
  2948. package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +3 -4
  2949. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +3 -4
  2950. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/node-http.js +2 -0
  2951. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +2 -2
  2952. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +1 -1
  2953. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +1 -1
  2954. package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +3 -3
  2955. package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +3 -3
  2956. package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +3 -3
  2957. package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +5 -4
  2958. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -2
  2959. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/node-http.d.ts +2 -0
  2960. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +1 -2
  2961. package/node_modules/@smithy/credential-provider-imds/package.json +7 -9
  2962. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -62
  2963. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +1 -2
  2964. package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -2
  2965. package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +2 -1
  2966. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +7 -8
  2967. package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -2
  2968. package/node_modules/@smithy/fetch-http-handler/package.json +10 -12
  2969. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +259 -181
  2970. package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +1 -1
  2971. package/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +50 -0
  2972. package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -3
  2973. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +33 -22
  2974. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +90 -41
  2975. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -18
  2976. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +50 -46
  2977. package/node_modules/@smithy/node-http-handler/dist-es/node-http2.js +2 -0
  2978. package/node_modules/@smithy/node-http-handler/dist-es/node-https.js +2 -0
  2979. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +2 -2
  2980. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +1 -1
  2981. package/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +46 -0
  2982. package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -3
  2983. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +9 -8
  2984. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +36 -14
  2985. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +33 -9
  2986. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +21 -8
  2987. package/node_modules/@smithy/node-http-handler/dist-types/node-http2.d.ts +2 -0
  2988. package/node_modules/@smithy/node-http-handler/dist-types/node-https.d.ts +2 -0
  2989. package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +1 -1
  2990. package/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +2 -1
  2991. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +2 -2
  2992. package/node_modules/@smithy/node-http-handler/package.json +8 -9
  2993. package/node_modules/@smithy/signature-v4/dist-cjs/index.js +178 -177
  2994. package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +1 -2
  2995. package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +14 -9
  2996. package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +3 -4
  2997. package/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +1 -2
  2998. package/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +1 -1
  2999. package/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +1 -3
  3000. package/node_modules/@smithy/signature-v4/dist-es/index.js +4 -4
  3001. package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +1 -1
  3002. package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +1 -1
  3003. package/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +2 -1
  3004. package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +4 -5
  3005. package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +6 -5
  3006. package/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +2 -3
  3007. package/node_modules/@smithy/signature-v4/package.json +7 -13
  3008. package/node_modules/@smithy/types/README.md +3 -3
  3009. package/node_modules/@smithy/types/dist-cjs/index.js +23 -18
  3010. package/node_modules/@smithy/types/dist-es/auth/index.js +2 -6
  3011. package/node_modules/@smithy/types/dist-es/connection/index.js +1 -3
  3012. package/node_modules/@smithy/types/dist-es/endpoints/index.js +1 -5
  3013. package/node_modules/@smithy/types/dist-es/extensions/index.js +1 -2
  3014. package/node_modules/@smithy/types/dist-es/identity/index.js +1 -4
  3015. package/node_modules/@smithy/types/dist-es/index.js +7 -43
  3016. package/node_modules/@smithy/types/dist-types/abort.d.ts +5 -7
  3017. package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +6 -4
  3018. package/node_modules/@smithy/types/dist-types/auth/index.d.ts +7 -6
  3019. package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +7 -10
  3020. package/node_modules/@smithy/types/dist-types/checksum.d.ts +4 -6
  3021. package/node_modules/@smithy/types/dist-types/client.d.ts +8 -8
  3022. package/node_modules/@smithy/types/dist-types/command.d.ts +2 -2
  3023. package/node_modules/@smithy/types/dist-types/connection/config.d.ts +5 -0
  3024. package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -3
  3025. package/node_modules/@smithy/types/dist-types/crypto.d.ts +6 -8
  3026. package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +6 -7
  3027. package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -5
  3028. package/node_modules/@smithy/types/dist-types/eventStream.d.ts +10 -10
  3029. package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +9 -10
  3030. package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +2 -2
  3031. package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +6 -4
  3032. package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +10 -10
  3033. package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +2 -2
  3034. package/node_modules/@smithy/types/dist-types/http.d.ts +18 -21
  3035. package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -4
  3036. package/node_modules/@smithy/types/dist-types/index.d.ts +52 -43
  3037. package/node_modules/@smithy/types/dist-types/logger.d.ts +2 -2
  3038. package/node_modules/@smithy/types/dist-types/metrics.d.ts +93 -0
  3039. package/node_modules/@smithy/types/dist-types/middleware.d.ts +28 -27
  3040. package/node_modules/@smithy/types/dist-types/pagination.d.ts +4 -4
  3041. package/node_modules/@smithy/types/dist-types/retry.d.ts +25 -0
  3042. package/node_modules/@smithy/types/dist-types/serde.d.ts +10 -10
  3043. package/node_modules/@smithy/types/dist-types/shapes.d.ts +9 -12
  3044. package/node_modules/@smithy/types/dist-types/signature.d.ts +24 -7
  3045. package/node_modules/@smithy/types/dist-types/stream.d.ts +2 -2
  3046. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +7 -11
  3047. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +23 -29
  3048. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +9 -19
  3049. package/node_modules/@smithy/types/dist-types/transfer.d.ts +2 -1
  3050. package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +4 -4
  3051. package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +14 -18
  3052. package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +2 -2
  3053. package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +12 -12
  3054. package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +14 -9
  3055. package/node_modules/@smithy/types/dist-types/uri.d.ts +2 -2
  3056. package/node_modules/@smithy/types/dist-types/util.d.ts +28 -28
  3057. package/node_modules/@smithy/types/package.json +10 -10
  3058. package/node_modules/@zone-eu/mailsplit/index.d.ts +97 -0
  3059. package/node_modules/@zone-eu/mailsplit/index.js +4 -1
  3060. package/node_modules/@zone-eu/mailsplit/lib/chunked-passthrough.d.ts +59 -0
  3061. package/node_modules/@zone-eu/mailsplit/lib/chunked-passthrough.js +16 -0
  3062. package/node_modules/@zone-eu/mailsplit/lib/flowed-decoder.d.ts +59 -0
  3063. package/node_modules/@zone-eu/mailsplit/lib/flowed-decoder.js +23 -6
  3064. package/node_modules/@zone-eu/mailsplit/lib/headers.d.ts +117 -0
  3065. package/node_modules/@zone-eu/mailsplit/lib/headers.js +147 -28
  3066. package/node_modules/@zone-eu/mailsplit/lib/message-joiner.d.ts +56 -0
  3067. package/node_modules/@zone-eu/mailsplit/lib/message-joiner.js +18 -0
  3068. package/node_modules/@zone-eu/mailsplit/lib/message-splitter.d.ts +59 -0
  3069. package/node_modules/@zone-eu/mailsplit/lib/message-splitter.js +68 -9
  3070. package/node_modules/@zone-eu/mailsplit/lib/mime-node.d.ts +144 -0
  3071. package/node_modules/@zone-eu/mailsplit/lib/mime-node.js +129 -47
  3072. package/node_modules/@zone-eu/mailsplit/lib/node-rewriter.d.ts +105 -0
  3073. package/node_modules/@zone-eu/mailsplit/lib/node-rewriter.js +66 -21
  3074. package/node_modules/@zone-eu/mailsplit/lib/node-streamer.d.ts +105 -0
  3075. package/node_modules/@zone-eu/mailsplit/lib/node-streamer.js +66 -13
  3076. package/node_modules/@zone-eu/mailsplit/lib/types.d.ts +285 -0
  3077. package/node_modules/@zone-eu/mailsplit/package.json +16 -6
  3078. package/node_modules/cdk-nag/.devcontainer.json +6 -1
  3079. package/node_modules/cdk-nag/.jsii +188 -180
  3080. package/node_modules/cdk-nag/.jsii.tabl.json +1 -0
  3081. package/node_modules/cdk-nag/RULES.md +2 -1
  3082. package/node_modules/cdk-nag/lib/ignore-suppression-conditions.js +5 -5
  3083. package/node_modules/cdk-nag/lib/nag-logger.js +9 -5
  3084. package/node_modules/cdk-nag/lib/nag-pack.js +1 -1
  3085. package/node_modules/cdk-nag/lib/nag-rules.js +1 -1
  3086. package/node_modules/cdk-nag/lib/nag-suppressions.js +1 -1
  3087. package/node_modules/cdk-nag/lib/packs/aws-solutions.js +10 -10
  3088. package/node_modules/cdk-nag/lib/packs/hipaa-security.js +1 -1
  3089. package/node_modules/cdk-nag/lib/packs/nist-800-53-r4.js +1 -1
  3090. package/node_modules/cdk-nag/lib/packs/nist-800-53-r5.js +1 -1
  3091. package/node_modules/cdk-nag/lib/packs/pci-dss-321.js +1 -1
  3092. package/node_modules/cdk-nag/lib/packs/serverless.js +1 -1
  3093. package/node_modules/cdk-nag/lib/rules/apigw/APIGWStructuredLogging.js +2 -2
  3094. package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolPlusTier.d.ts +8 -0
  3095. package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolPlusTier.js +25 -0
  3096. package/node_modules/cdk-nag/lib/rules/cognito/index.d.ts +1 -1
  3097. package/node_modules/cdk-nag/lib/rules/cognito/index.js +4 -4
  3098. package/node_modules/cdk-nag/lib/rules/index.d.ts +1 -0
  3099. package/node_modules/cdk-nag/lib/rules/index.js +3 -2
  3100. package/node_modules/cdk-nag/lib/rules/mwaa/MWAAAllLoggingInfo.d.ts +9 -0
  3101. package/node_modules/cdk-nag/lib/rules/mwaa/MWAAAllLoggingInfo.js +78 -0
  3102. package/node_modules/cdk-nag/lib/rules/mwaa/index.d.ts +1 -0
  3103. package/node_modules/cdk-nag/lib/rules/mwaa/index.js +10 -0
  3104. package/node_modules/cdk-nag/lib/rules/s3/S3DefaultEncryptionKMS.js +1 -4
  3105. package/node_modules/cdk-nag/package.json +55 -41
  3106. package/node_modules/cdk-nag/rosetta/default.ts-fixture +13 -0
  3107. package/node_modules/deepmerge-ts/CHANGELOG.md +390 -0
  3108. package/node_modules/deepmerge-ts/LICENSE +29 -0
  3109. package/node_modules/deepmerge-ts/README.md +185 -0
  3110. package/node_modules/deepmerge-ts/dist/index.cjs +619 -0
  3111. package/node_modules/deepmerge-ts/dist/index.d.cts +832 -0
  3112. package/node_modules/deepmerge-ts/dist/index.d.mts +832 -0
  3113. package/node_modules/deepmerge-ts/dist/index.mjs +611 -0
  3114. package/node_modules/deepmerge-ts/package.json +154 -0
  3115. package/node_modules/html-to-text/CHANGELOG.md +38 -1
  3116. package/node_modules/html-to-text/LICENSE +1 -1
  3117. package/node_modules/html-to-text/README.md +47 -39
  3118. package/node_modules/html-to-text/lib/html-to-text.cjs +104 -85
  3119. package/node_modules/html-to-text/lib/html-to-text.mjs +104 -79
  3120. package/node_modules/html-to-text/package.json +22 -14
  3121. package/node_modules/htmlparser2/README.md +5 -6
  3122. package/node_modules/htmlparser2/WritableStream.js +3 -0
  3123. package/node_modules/htmlparser2/dist/commonjs/Parser.d.ts +198 -0
  3124. package/node_modules/htmlparser2/dist/commonjs/Parser.d.ts.map +1 -0
  3125. package/node_modules/htmlparser2/dist/commonjs/Parser.js +527 -0
  3126. package/node_modules/htmlparser2/dist/commonjs/Parser.js.map +1 -0
  3127. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.d.ts +126 -0
  3128. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.d.ts.map +1 -0
  3129. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.js +805 -0
  3130. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.js.map +1 -0
  3131. package/node_modules/htmlparser2/dist/commonjs/WritableStream.d.ts +15 -0
  3132. package/node_modules/htmlparser2/dist/commonjs/WritableStream.d.ts.map +1 -0
  3133. package/node_modules/htmlparser2/dist/commonjs/WritableStream.js +36 -0
  3134. package/node_modules/htmlparser2/dist/commonjs/WritableStream.js.map +1 -0
  3135. package/node_modules/htmlparser2/dist/commonjs/index.d.ts +54 -0
  3136. package/node_modules/htmlparser2/dist/commonjs/index.d.ts.map +1 -0
  3137. package/node_modules/htmlparser2/dist/commonjs/index.js +123 -0
  3138. package/node_modules/htmlparser2/dist/commonjs/index.js.map +1 -0
  3139. package/node_modules/htmlparser2/dist/commonjs/package.json +3 -0
  3140. package/node_modules/htmlparser2/dist/esm/Parser.d.ts +198 -0
  3141. package/node_modules/htmlparser2/dist/esm/Parser.d.ts.map +1 -0
  3142. package/node_modules/htmlparser2/dist/esm/Parser.js +490 -0
  3143. package/node_modules/htmlparser2/dist/esm/Parser.js.map +1 -0
  3144. package/node_modules/htmlparser2/dist/esm/Tokenizer.d.ts +126 -0
  3145. package/node_modules/htmlparser2/dist/esm/Tokenizer.d.ts.map +1 -0
  3146. package/node_modules/htmlparser2/dist/esm/Tokenizer.js +801 -0
  3147. package/node_modules/htmlparser2/dist/esm/Tokenizer.js.map +1 -0
  3148. package/node_modules/htmlparser2/dist/esm/WritableStream.d.ts +15 -0
  3149. package/node_modules/htmlparser2/dist/esm/WritableStream.d.ts.map +1 -0
  3150. package/node_modules/htmlparser2/dist/esm/WritableStream.js.map +1 -0
  3151. package/node_modules/htmlparser2/dist/esm/index.d.ts +54 -0
  3152. package/node_modules/htmlparser2/dist/esm/index.d.ts.map +1 -0
  3153. package/node_modules/htmlparser2/dist/esm/index.js +74 -0
  3154. package/node_modules/htmlparser2/dist/esm/index.js.map +1 -0
  3155. package/node_modules/htmlparser2/dist/esm/package.json +3 -0
  3156. package/node_modules/htmlparser2/node_modules/entities/decode.d.ts +3 -0
  3157. package/node_modules/htmlparser2/node_modules/entities/decode.js +3 -0
  3158. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
  3159. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
  3160. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
  3161. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
  3162. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.d.ts +205 -0
  3163. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
  3164. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.js +568 -0
  3165. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.js.map +1 -0
  3166. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
  3167. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
  3168. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.js +92 -0
  3169. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.js.map +1 -0
  3170. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.d.ts +46 -0
  3171. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
  3172. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.js +138 -0
  3173. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.js.map +1 -0
  3174. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +2 -0
  3175. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
  3176. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
  3177. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
  3178. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
  3179. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
  3180. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
  3181. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
  3182. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +3 -0
  3183. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
  3184. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.js +14 -0
  3185. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
  3186. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.d.ts +96 -0
  3187. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
  3188. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.js +131 -0
  3189. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.js.map +1 -0
  3190. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts +17 -0
  3191. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts.map +1 -0
  3192. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
  3193. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js.map +1 -0
  3194. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts +2 -0
  3195. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts.map +1 -0
  3196. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
  3197. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.js.map +1 -0
  3198. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts +32 -0
  3199. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts.map +1 -0
  3200. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.js +94 -0
  3201. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.js.map +1 -0
  3202. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/package.json +3 -0
  3203. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
  3204. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
  3205. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
  3206. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
  3207. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.d.ts +205 -0
  3208. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
  3209. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.js +554 -0
  3210. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.js.map +1 -0
  3211. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.d.ts +22 -0
  3212. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
  3213. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.js +88 -0
  3214. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.js.map +1 -0
  3215. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.d.ts +46 -0
  3216. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
  3217. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.js +134 -0
  3218. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.js.map +1 -0
  3219. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +2 -0
  3220. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
  3221. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.js +4 -0
  3222. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
  3223. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +2 -0
  3224. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
  3225. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.js +4 -0
  3226. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
  3227. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.d.ts +3 -0
  3228. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
  3229. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.js +11 -0
  3230. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
  3231. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.d.ts +96 -0
  3232. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.d.ts.map +1 -0
  3233. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.js +107 -0
  3234. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.js.map +1 -0
  3235. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts +17 -0
  3236. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts.map +1 -0
  3237. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.js +18 -0
  3238. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.js.map +1 -0
  3239. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.d.ts +2 -0
  3240. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.d.ts.map +1 -0
  3241. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.js +28 -0
  3242. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.js.map +1 -0
  3243. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.d.ts +32 -0
  3244. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.d.ts.map +1 -0
  3245. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.js +91 -0
  3246. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.js.map +1 -0
  3247. package/node_modules/htmlparser2/node_modules/entities/dist/esm/package.json +3 -0
  3248. package/node_modules/htmlparser2/node_modules/entities/escape.d.ts +3 -0
  3249. package/node_modules/htmlparser2/node_modules/entities/escape.js +3 -0
  3250. package/node_modules/htmlparser2/node_modules/entities/package.json +99 -69
  3251. package/node_modules/htmlparser2/node_modules/entities/readme.md +50 -29
  3252. package/node_modules/htmlparser2/node_modules/entities/src/decode-codepoint.ts +81 -0
  3253. package/node_modules/htmlparser2/node_modules/entities/src/decode.ts +685 -0
  3254. package/node_modules/htmlparser2/node_modules/entities/src/encode.ts +93 -0
  3255. package/node_modules/htmlparser2/node_modules/entities/src/escape.ts +161 -0
  3256. package/node_modules/htmlparser2/node_modules/entities/src/generated/.eslintrc.json +10 -0
  3257. package/node_modules/htmlparser2/node_modules/entities/src/generated/decode-data-html.ts +6 -0
  3258. package/node_modules/htmlparser2/node_modules/entities/src/generated/decode-data-xml.ts +6 -0
  3259. package/node_modules/htmlparser2/node_modules/entities/src/generated/encode-html.ts +17 -0
  3260. package/node_modules/htmlparser2/node_modules/entities/src/index.ts +187 -0
  3261. package/node_modules/htmlparser2/node_modules/entities/src/internal/bin-trie-flags.ts +16 -0
  3262. package/node_modules/htmlparser2/node_modules/entities/src/internal/decode-shared.ts +30 -0
  3263. package/node_modules/htmlparser2/node_modules/entities/src/internal/encode-shared.ts +121 -0
  3264. package/node_modules/htmlparser2/package.json +74 -58
  3265. package/node_modules/htmlparser2/src/Parser.ts +663 -0
  3266. package/node_modules/htmlparser2/src/Tokenizer.ts +877 -0
  3267. package/node_modules/htmlparser2/src/WritableStream.ts +43 -0
  3268. package/node_modules/htmlparser2/src/index.ts +115 -0
  3269. package/node_modules/leac/LICENSE +1 -1
  3270. package/node_modules/leac/README.md +91 -12
  3271. package/node_modules/leac/lib/leac.cjs +133 -1
  3272. package/node_modules/leac/lib/leac.d.cts +173 -0
  3273. package/node_modules/leac/lib/leac.d.mts +173 -0
  3274. package/node_modules/leac/lib/leac.mjs +131 -1
  3275. package/node_modules/leac/package.json +51 -37
  3276. package/node_modules/libmime/CHANGELOG.md +14 -0
  3277. package/node_modules/libmime/README.md +9 -7
  3278. package/node_modules/libmime/lib/charset.js +3 -2
  3279. package/node_modules/libmime/lib/libmime.js +13 -0
  3280. package/node_modules/libmime/node_modules/iconv-lite/encodings/sbcs-data.js +2 -0
  3281. package/node_modules/libmime/node_modules/iconv-lite/encodings/utf32.js +10 -3
  3282. package/node_modules/libmime/node_modules/iconv-lite/package.json +2 -2
  3283. package/node_modules/libmime/node_modules/iconv-lite/types/encodings.d.ts +2 -0
  3284. package/node_modules/libmime/package.json +4 -4
  3285. package/node_modules/linkify-it/README.md +3 -4
  3286. package/node_modules/linkify-it/build/index.cjs.js +143 -135
  3287. package/node_modules/linkify-it/index.mjs +109 -105
  3288. package/node_modules/linkify-it/lib/re.mjs +34 -30
  3289. package/node_modules/linkify-it/package.json +20 -15
  3290. package/node_modules/mailparser/.release-please-manifest.json +1 -1
  3291. package/node_modules/mailparser/CHANGELOG.md +42 -0
  3292. package/node_modules/mailparser/SECURITY.md +90 -0
  3293. package/node_modules/mailparser/SECURITY.txt +27 -0
  3294. package/node_modules/mailparser/lib/mail-parser.js +4 -1
  3295. package/node_modules/mailparser/node_modules/iconv-lite/encodings/sbcs-data.js +2 -0
  3296. package/node_modules/mailparser/node_modules/iconv-lite/encodings/utf32.js +10 -3
  3297. package/node_modules/mailparser/node_modules/iconv-lite/package.json +2 -2
  3298. package/node_modules/mailparser/node_modules/iconv-lite/types/encodings.d.ts +2 -0
  3299. package/node_modules/mailparser/package.json +11 -11
  3300. package/node_modules/nodemailer/CHANGELOG.md +86 -0
  3301. package/node_modules/nodemailer/CLAUDE.md +1 -0
  3302. package/node_modules/nodemailer/SECURITY.md +65 -0
  3303. package/node_modules/nodemailer/lib/addressparser/index.js +17 -1
  3304. package/node_modules/nodemailer/lib/base64/index.js +6 -8
  3305. package/node_modules/nodemailer/lib/dkim/relaxed-body.js +1 -1
  3306. package/node_modules/nodemailer/lib/fetch/cookies.js +1 -1
  3307. package/node_modules/nodemailer/lib/fetch/index.js +26 -3
  3308. package/node_modules/nodemailer/lib/mail-composer/index.js +72 -34
  3309. package/node_modules/nodemailer/lib/mailer/index.js +34 -26
  3310. package/node_modules/nodemailer/lib/mailer/mail-message.js +30 -20
  3311. package/node_modules/nodemailer/lib/mime-funcs/mime-types.js +1 -1
  3312. package/node_modules/nodemailer/lib/mime-node/index.js +12 -8
  3313. package/node_modules/nodemailer/lib/nodemailer.js +26 -7
  3314. package/node_modules/nodemailer/lib/sendmail-transport/index.js +14 -2
  3315. package/node_modules/nodemailer/lib/ses-transport/index.js +60 -18
  3316. package/node_modules/nodemailer/lib/shared/index.js +44 -11
  3317. package/node_modules/nodemailer/lib/shared/url.js +151 -0
  3318. package/node_modules/nodemailer/lib/smtp-connection/http-proxy-client.js +36 -6
  3319. package/node_modules/nodemailer/lib/smtp-connection/index.js +120 -31
  3320. package/node_modules/nodemailer/lib/smtp-transport/index.js +38 -11
  3321. package/node_modules/nodemailer/lib/stream-transport/index.js +9 -0
  3322. package/node_modules/nodemailer/lib/xoauth2/index.js +14 -2
  3323. package/node_modules/nodemailer/package.json +9 -10
  3324. package/node_modules/parseley/LICENSE +1 -1
  3325. package/node_modules/parseley/README.md +33 -8
  3326. package/node_modules/parseley/lib/ast.d.cts +183 -0
  3327. package/node_modules/parseley/lib/ast.d.mts +183 -0
  3328. package/node_modules/parseley/lib/parseley.cjs +212 -93
  3329. package/node_modules/parseley/lib/parseley.d.cts +96 -0
  3330. package/node_modules/parseley/lib/parseley.d.mts +96 -0
  3331. package/node_modules/parseley/lib/parseley.mjs +210 -87
  3332. package/node_modules/parseley/package.json +40 -29
  3333. package/node_modules/peberminta/LICENSE +1 -1
  3334. package/node_modules/peberminta/README.md +74 -31
  3335. package/node_modules/peberminta/lib/char.cjs +37 -19
  3336. package/node_modules/peberminta/lib/char.d.cts +165 -0
  3337. package/node_modules/peberminta/lib/char.d.mts +165 -0
  3338. package/node_modules/peberminta/lib/char.mjs +31 -11
  3339. package/node_modules/peberminta/lib/core.cjs +351 -218
  3340. package/node_modules/peberminta/lib/core.d.cts +1355 -0
  3341. package/node_modules/peberminta/lib/core.d.mts +1355 -0
  3342. package/node_modules/peberminta/lib/core.mjs +336 -210
  3343. package/node_modules/peberminta/lib/util/util.cjs +11 -0
  3344. package/node_modules/peberminta/package.json +65 -61
  3345. package/node_modules/selderee/LICENSE +1 -1
  3346. package/node_modules/selderee/README.md +18 -18
  3347. package/node_modules/selderee/lib/selderee.cjs +90 -79
  3348. package/node_modules/selderee/lib/selderee.d.cts +289 -0
  3349. package/node_modules/selderee/lib/selderee.d.mts +289 -0
  3350. package/node_modules/selderee/lib/selderee.mjs +86 -72
  3351. package/node_modules/selderee/package.json +15 -7
  3352. package/node_modules/uuid/README.md +196 -171
  3353. package/node_modules/uuid/dist/index.d.ts +15 -0
  3354. package/node_modules/uuid/dist/index.js +14 -79
  3355. package/node_modules/uuid/dist/max.d.ts +2 -0
  3356. package/node_modules/uuid/dist/max.js +1 -0
  3357. package/node_modules/uuid/dist/md5.d.ts +2 -0
  3358. package/node_modules/uuid/dist/md5.js +134 -22
  3359. package/node_modules/uuid/dist/nil.d.ts +2 -0
  3360. package/node_modules/uuid/dist/nil.js +1 -8
  3361. package/node_modules/uuid/dist/parse.d.ts +3 -0
  3362. package/node_modules/uuid/dist/parse.js +7 -43
  3363. package/node_modules/uuid/dist/regex.d.ts +2 -0
  3364. package/node_modules/uuid/dist/regex.js +1 -8
  3365. package/node_modules/uuid/dist/rng.d.ts +1 -0
  3366. package/node_modules/uuid/dist/rng.js +4 -24
  3367. package/node_modules/uuid/dist/sha1.d.ts +2 -0
  3368. package/node_modules/uuid/dist/sha1.js +68 -21
  3369. package/node_modules/uuid/dist/stringify.d.ts +3 -0
  3370. package/node_modules/uuid/dist/stringify.js +29 -38
  3371. package/node_modules/uuid/dist/types.d.ts +22 -0
  3372. package/node_modules/uuid/dist/uuid-bin.d.ts +1 -0
  3373. package/node_modules/uuid/dist/uuid-bin.js +61 -76
  3374. package/node_modules/uuid/dist/v1.d.ts +11 -0
  3375. package/node_modules/uuid/dist/v1.js +79 -103
  3376. package/node_modules/uuid/dist/v1ToV6.d.ts +3 -0
  3377. package/node_modules/uuid/dist/v1ToV6.js +10 -0
  3378. package/node_modules/uuid/dist/v3.d.ts +9 -0
  3379. package/node_modules/uuid/dist/v3.js +9 -16
  3380. package/node_modules/uuid/dist/v35.d.ts +7 -0
  3381. package/node_modules/uuid/dist/v35.js +34 -75
  3382. package/node_modules/uuid/dist/v4.d.ts +4 -0
  3383. package/node_modules/uuid/dist/v4.js +26 -40
  3384. package/node_modules/uuid/dist/v5.d.ts +9 -0
  3385. package/node_modules/uuid/dist/v5.js +9 -16
  3386. package/node_modules/uuid/dist/v6.d.ts +4 -0
  3387. package/node_modules/uuid/dist/v6.js +20 -0
  3388. package/node_modules/uuid/dist/v6ToV1.d.ts +2 -0
  3389. package/node_modules/uuid/dist/v6ToV1.js +10 -0
  3390. package/node_modules/uuid/dist/v7.d.ts +9 -0
  3391. package/node_modules/uuid/dist/v7.js +65 -0
  3392. package/node_modules/uuid/dist/validate.d.ts +2 -0
  3393. package/node_modules/uuid/dist/validate.js +3 -15
  3394. package/node_modules/uuid/dist/version.d.ts +2 -0
  3395. package/node_modules/uuid/dist/version.js +6 -19
  3396. package/node_modules/uuid/dist-node/bin/uuid +2 -0
  3397. package/node_modules/uuid/dist-node/index.js +14 -0
  3398. package/node_modules/uuid/dist-node/max.js +1 -0
  3399. package/node_modules/uuid/dist-node/md5.js +11 -0
  3400. package/node_modules/uuid/dist-node/nil.js +1 -0
  3401. package/node_modules/uuid/dist-node/parse.js +9 -0
  3402. package/node_modules/uuid/dist-node/regex.js +1 -0
  3403. package/node_modules/uuid/dist-node/rng.js +4 -0
  3404. package/node_modules/uuid/dist-node/sha1.js +11 -0
  3405. package/node_modules/uuid/dist-node/stringify.js +35 -0
  3406. package/node_modules/uuid/dist-node/uuid-bin.js +70 -0
  3407. package/node_modules/uuid/dist-node/v1.js +83 -0
  3408. package/node_modules/uuid/dist-node/v1ToV6.js +10 -0
  3409. package/node_modules/uuid/dist-node/v3.js +9 -0
  3410. package/node_modules/uuid/dist-node/v35.js +39 -0
  3411. package/node_modules/uuid/dist-node/v4.js +29 -0
  3412. package/node_modules/uuid/dist-node/v5.js +9 -0
  3413. package/node_modules/uuid/dist-node/v6.js +20 -0
  3414. package/node_modules/uuid/dist-node/v6ToV1.js +10 -0
  3415. package/node_modules/uuid/dist-node/v7.js +65 -0
  3416. package/node_modules/uuid/dist-node/validate.js +5 -0
  3417. package/node_modules/uuid/dist-node/version.js +8 -0
  3418. package/node_modules/uuid/package.json +66 -87
  3419. package/package.json +25 -34
  3420. package/lib/index-cli-synth.js +0 -68
  3421. package/lib/scripts/publish-assets.js +0 -39
  3422. package/node_modules/@aws-crypto/crc32/CHANGELOG.md +0 -100
  3423. package/node_modules/@aws-crypto/crc32/LICENSE +0 -201
  3424. package/node_modules/@aws-crypto/crc32/README.md +0 -16
  3425. package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.d.ts +0 -7
  3426. package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js +0 -31
  3427. package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js.map +0 -1
  3428. package/node_modules/@aws-crypto/crc32/build/main/index.d.ts +0 -7
  3429. package/node_modules/@aws-crypto/crc32/build/main/index.js +0 -108
  3430. package/node_modules/@aws-crypto/crc32/build/main/index.js.map +0 -1
  3431. package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.d.ts +0 -7
  3432. package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js +0 -28
  3433. package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js.map +0 -1
  3434. package/node_modules/@aws-crypto/crc32/build/module/index.d.ts +0 -7
  3435. package/node_modules/@aws-crypto/crc32/build/module/index.js +0 -103
  3436. package/node_modules/@aws-crypto/crc32/build/module/index.js.map +0 -1
  3437. package/node_modules/@aws-crypto/crc32/package.json +0 -32
  3438. package/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +0 -24
  3439. package/node_modules/@aws-crypto/crc32/src/index.ts +0 -92
  3440. package/node_modules/@aws-crypto/crc32/tsconfig.json +0 -9
  3441. package/node_modules/@aws-crypto/crc32/tsconfig.module.json +0 -7
  3442. package/node_modules/@aws-crypto/crc32c/CHANGELOG.md +0 -76
  3443. package/node_modules/@aws-crypto/crc32c/LICENSE +0 -201
  3444. package/node_modules/@aws-crypto/crc32c/README.md +0 -16
  3445. package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.d.ts +0 -7
  3446. package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js +0 -31
  3447. package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js.map +0 -1
  3448. package/node_modules/@aws-crypto/crc32c/build/main/index.d.ts +0 -7
  3449. package/node_modules/@aws-crypto/crc32c/build/main/index.js +0 -78
  3450. package/node_modules/@aws-crypto/crc32c/build/main/index.js.map +0 -1
  3451. package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.d.ts +0 -7
  3452. package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js +0 -28
  3453. package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js.map +0 -1
  3454. package/node_modules/@aws-crypto/crc32c/build/module/index.d.ts +0 -7
  3455. package/node_modules/@aws-crypto/crc32c/build/module/index.js +0 -73
  3456. package/node_modules/@aws-crypto/crc32c/build/module/index.js.map +0 -1
  3457. package/node_modules/@aws-crypto/crc32c/package.json +0 -32
  3458. package/node_modules/@aws-crypto/crc32c/src/aws_crc32c.ts +0 -24
  3459. package/node_modules/@aws-crypto/crc32c/src/index.ts +0 -64
  3460. package/node_modules/@aws-crypto/crc32c/tsconfig.json +0 -9
  3461. package/node_modules/@aws-crypto/crc32c/tsconfig.module.json +0 -7
  3462. package/node_modules/@aws-crypto/sha1-browser/CHANGELOG.md +0 -62
  3463. package/node_modules/@aws-crypto/sha1-browser/LICENSE +0 -202
  3464. package/node_modules/@aws-crypto/sha1-browser/README.md +0 -21
  3465. package/node_modules/@aws-crypto/sha1-browser/build/main/constants.d.ts +0 -10
  3466. package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js +0 -31
  3467. package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js.map +0 -1
  3468. package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.d.ts +0 -8
  3469. package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js +0 -29
  3470. package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js.map +0 -1
  3471. package/node_modules/@aws-crypto/sha1-browser/build/main/index.d.ts +0 -2
  3472. package/node_modules/@aws-crypto/sha1-browser/build/main/index.js +0 -8
  3473. package/node_modules/@aws-crypto/sha1-browser/build/main/index.js.map +0 -1
  3474. package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.d.ts +0 -2
  3475. package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js +0 -11
  3476. package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js.map +0 -1
  3477. package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.d.ts +0 -9
  3478. package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js +0 -61
  3479. package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js.map +0 -1
  3480. package/node_modules/@aws-crypto/sha1-browser/build/module/constants.d.ts +0 -10
  3481. package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js +0 -28
  3482. package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js.map +0 -1
  3483. package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.d.ts +0 -8
  3484. package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js +0 -26
  3485. package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js.map +0 -1
  3486. package/node_modules/@aws-crypto/sha1-browser/build/module/index.d.ts +0 -2
  3487. package/node_modules/@aws-crypto/sha1-browser/build/module/index.js +0 -3
  3488. package/node_modules/@aws-crypto/sha1-browser/build/module/index.js.map +0 -1
  3489. package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.d.ts +0 -2
  3490. package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js +0 -7
  3491. package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js.map +0 -1
  3492. package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.d.ts +0 -9
  3493. package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js +0 -58
  3494. package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js.map +0 -1
  3495. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  3496. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/README.md +0 -10
  3497. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
  3498. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
  3499. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/package.json +0 -60
  3500. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  3501. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/README.md +0 -10
  3502. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
  3503. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  3504. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  3505. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  3506. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/package.json +0 -61
  3507. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/LICENSE +0 -201
  3508. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/README.md +0 -4
  3509. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
  3510. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
  3511. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
  3512. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
  3513. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
  3514. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
  3515. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
  3516. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
  3517. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
  3518. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
  3519. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
  3520. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
  3521. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
  3522. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
  3523. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
  3524. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
  3525. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
  3526. package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/package.json +0 -66
  3527. package/node_modules/@aws-crypto/sha1-browser/package.json +0 -35
  3528. package/node_modules/@aws-crypto/sha1-browser/src/constants.ts +0 -29
  3529. package/node_modules/@aws-crypto/sha1-browser/src/crossPlatformSha1.ts +0 -29
  3530. package/node_modules/@aws-crypto/sha1-browser/src/index.ts +0 -2
  3531. package/node_modules/@aws-crypto/sha1-browser/src/isEmptyData.ts +0 -9
  3532. package/node_modules/@aws-crypto/sha1-browser/src/webCryptoSha1.ts +0 -79
  3533. package/node_modules/@aws-crypto/sha1-browser/tsconfig.json +0 -10
  3534. package/node_modules/@aws-crypto/sha1-browser/tsconfig.module.json +0 -7
  3535. package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +0 -118
  3536. package/node_modules/@aws-crypto/sha256-browser/LICENSE +0 -202
  3537. package/node_modules/@aws-crypto/sha256-browser/README.md +0 -31
  3538. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +0 -10
  3539. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +0 -43
  3540. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +0 -1
  3541. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +0 -8
  3542. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +0 -30
  3543. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +0 -1
  3544. package/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +0 -2
  3545. package/node_modules/@aws-crypto/sha256-browser/build/main/index.js +0 -8
  3546. package/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +0 -1
  3547. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +0 -2
  3548. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +0 -11
  3549. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +0 -1
  3550. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +0 -10
  3551. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +0 -56
  3552. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +0 -1
  3553. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +0 -10
  3554. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +0 -40
  3555. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +0 -1
  3556. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +0 -8
  3557. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +0 -27
  3558. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +0 -1
  3559. package/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +0 -2
  3560. package/node_modules/@aws-crypto/sha256-browser/build/module/index.js +0 -3
  3561. package/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +0 -1
  3562. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +0 -2
  3563. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +0 -7
  3564. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +0 -1
  3565. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +0 -10
  3566. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +0 -53
  3567. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +0 -1
  3568. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  3569. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/README.md +0 -10
  3570. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
  3571. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
  3572. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
  3573. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
  3574. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/package.json +0 -60
  3575. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  3576. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/README.md +0 -10
  3577. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
  3578. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  3579. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  3580. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  3581. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/package.json +0 -61
  3582. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/LICENSE +0 -201
  3583. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/README.md +0 -4
  3584. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
  3585. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
  3586. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
  3587. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
  3588. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
  3589. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
  3590. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
  3591. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
  3592. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
  3593. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
  3594. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
  3595. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
  3596. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
  3597. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
  3598. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
  3599. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
  3600. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
  3601. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
  3602. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
  3603. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
  3604. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
  3605. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
  3606. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
  3607. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
  3608. package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/package.json +0 -66
  3609. package/node_modules/@aws-crypto/sha256-browser/package.json +0 -33
  3610. package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +0 -41
  3611. package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +0 -30
  3612. package/node_modules/@aws-crypto/sha256-browser/src/index.ts +0 -2
  3613. package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +0 -9
  3614. package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +0 -71
  3615. package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +0 -10
  3616. package/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +0 -7
  3617. package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +0 -106
  3618. package/node_modules/@aws-crypto/sha256-js/LICENSE +0 -201
  3619. package/node_modules/@aws-crypto/sha256-js/README.md +0 -29
  3620. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +0 -17
  3621. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +0 -124
  3622. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +0 -1
  3623. package/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +0 -20
  3624. package/node_modules/@aws-crypto/sha256-js/build/main/constants.js +0 -98
  3625. package/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +0 -1
  3626. package/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +0 -1
  3627. package/node_modules/@aws-crypto/sha256-js/build/main/index.js +0 -5
  3628. package/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +0 -1
  3629. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +0 -12
  3630. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +0 -85
  3631. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +0 -1
  3632. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +0 -5
  3633. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +0 -322
  3634. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +0 -1
  3635. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +0 -17
  3636. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +0 -121
  3637. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +0 -1
  3638. package/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +0 -20
  3639. package/node_modules/@aws-crypto/sha256-js/build/module/constants.js +0 -95
  3640. package/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +0 -1
  3641. package/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +0 -1
  3642. package/node_modules/@aws-crypto/sha256-js/build/module/index.js +0 -2
  3643. package/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +0 -1
  3644. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +0 -12
  3645. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +0 -82
  3646. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +0 -1
  3647. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +0 -5
  3648. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +0 -319
  3649. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +0 -1
  3650. package/node_modules/@aws-crypto/sha256-js/package.json +0 -32
  3651. package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +0 -164
  3652. package/node_modules/@aws-crypto/sha256-js/src/constants.ts +0 -98
  3653. package/node_modules/@aws-crypto/sha256-js/src/index.ts +0 -1
  3654. package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +0 -94
  3655. package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +0 -401
  3656. package/node_modules/@aws-crypto/sha256-js/tsconfig.json +0 -10
  3657. package/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +0 -7
  3658. package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +0 -66
  3659. package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +0 -202
  3660. package/node_modules/@aws-crypto/supports-web-crypto/README.md +0 -32
  3661. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +0 -1
  3662. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +0 -5
  3663. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +0 -1
  3664. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +0 -4
  3665. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +0 -69
  3666. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +0 -1
  3667. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +0 -1
  3668. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +0 -2
  3669. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +0 -1
  3670. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +0 -4
  3671. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +0 -62
  3672. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +0 -1
  3673. package/node_modules/@aws-crypto/supports-web-crypto/package.json +0 -28
  3674. package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +0 -1
  3675. package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +0 -76
  3676. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +0 -10
  3677. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +0 -7
  3678. package/node_modules/@aws-crypto/util/CHANGELOG.md +0 -71
  3679. package/node_modules/@aws-crypto/util/LICENSE +0 -201
  3680. package/node_modules/@aws-crypto/util/README.md +0 -16
  3681. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +0 -2
  3682. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +0 -24
  3683. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +0 -1
  3684. package/node_modules/@aws-crypto/util/build/main/index.d.ts +0 -4
  3685. package/node_modules/@aws-crypto/util/build/main/index.js +0 -14
  3686. package/node_modules/@aws-crypto/util/build/main/index.js.map +0 -1
  3687. package/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +0 -2
  3688. package/node_modules/@aws-crypto/util/build/main/isEmptyData.js +0 -13
  3689. package/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +0 -1
  3690. package/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +0 -1
  3691. package/node_modules/@aws-crypto/util/build/main/numToUint8.js +0 -15
  3692. package/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +0 -1
  3693. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +0 -1
  3694. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +0 -20
  3695. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +0 -1
  3696. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +0 -2
  3697. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +0 -20
  3698. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +0 -1
  3699. package/node_modules/@aws-crypto/util/build/module/index.d.ts +0 -4
  3700. package/node_modules/@aws-crypto/util/build/module/index.js +0 -7
  3701. package/node_modules/@aws-crypto/util/build/module/index.js.map +0 -1
  3702. package/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +0 -2
  3703. package/node_modules/@aws-crypto/util/build/module/isEmptyData.js +0 -9
  3704. package/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +0 -1
  3705. package/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +0 -1
  3706. package/node_modules/@aws-crypto/util/build/module/numToUint8.js +0 -11
  3707. package/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +0 -1
  3708. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +0 -1
  3709. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +0 -16
  3710. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +0 -1
  3711. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  3712. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/README.md +0 -10
  3713. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
  3714. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
  3715. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
  3716. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
  3717. package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/package.json +0 -60
  3718. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  3719. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/README.md +0 -10
  3720. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
  3721. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  3722. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  3723. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  3724. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/package.json +0 -61
  3725. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/LICENSE +0 -201
  3726. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/README.md +0 -4
  3727. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
  3728. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
  3729. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
  3730. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
  3731. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
  3732. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
  3733. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
  3734. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
  3735. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
  3736. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
  3737. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
  3738. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
  3739. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
  3740. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
  3741. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
  3742. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
  3743. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
  3744. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
  3745. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
  3746. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
  3747. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
  3748. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
  3749. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
  3750. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
  3751. package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/package.json +0 -66
  3752. package/node_modules/@aws-crypto/util/package.json +0 -32
  3753. package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +0 -30
  3754. package/node_modules/@aws-crypto/util/src/index.ts +0 -7
  3755. package/node_modules/@aws-crypto/util/src/isEmptyData.ts +0 -12
  3756. package/node_modules/@aws-crypto/util/src/numToUint8.ts +0 -11
  3757. package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +0 -16
  3758. package/node_modules/@aws-crypto/util/tsconfig.json +0 -9
  3759. package/node_modules/@aws-crypto/util/tsconfig.module.json +0 -7
  3760. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
  3761. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/endpoint/endpointResolver.js +0 -18
  3762. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/endpoint/ruleset.js +0 -7
  3763. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/models/CloudWatchLogsServiceException.js +0 -12
  3764. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/models/errors.js +0 -285
  3765. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.browser.js +0 -40
  3766. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.js +0 -56
  3767. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.native.js +0 -15
  3768. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.shared.js +0 -44
  3769. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/schemas/schemas_0.js +0 -3119
  3770. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/endpoint/ruleset.js +0 -4
  3771. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/endpoint/ruleset.d.ts +0 -2
  3772. package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
  3773. package/node_modules/@aws-sdk/client-route-53/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
  3774. package/node_modules/@aws-sdk/client-route-53/dist-cjs/endpoint/endpointResolver.js +0 -18
  3775. package/node_modules/@aws-sdk/client-route-53/dist-cjs/endpoint/ruleset.js +0 -7
  3776. package/node_modules/@aws-sdk/client-route-53/dist-cjs/models/Route53ServiceException.js +0 -12
  3777. package/node_modules/@aws-sdk/client-route-53/dist-cjs/models/errors.js +0 -916
  3778. package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.browser.js +0 -38
  3779. package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.js +0 -54
  3780. package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.native.js +0 -15
  3781. package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.shared.js +0 -44
  3782. package/node_modules/@aws-sdk/client-route-53/dist-cjs/schemas/schemas_0.js +0 -2255
  3783. package/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/ruleset.js +0 -4
  3784. package/node_modules/@aws-sdk/client-route-53/dist-types/endpoint/ruleset.d.ts +0 -2
  3785. package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
  3786. package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +0 -126
  3787. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +0 -33
  3788. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js +0 -7
  3789. package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +0 -12
  3790. package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +0 -203
  3791. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +0 -46
  3792. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +0 -68
  3793. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +0 -15
  3794. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +0 -56
  3795. package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +0 -3258
  3796. package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/ruleset.js +0 -4
  3797. package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/ruleset.d.ts +0 -2
  3798. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
  3799. package/node_modules/@aws-sdk/client-ses/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
  3800. package/node_modules/@aws-sdk/client-ses/dist-cjs/endpoint/endpointResolver.js +0 -18
  3801. package/node_modules/@aws-sdk/client-ses/dist-cjs/endpoint/ruleset.js +0 -7
  3802. package/node_modules/@aws-sdk/client-ses/dist-cjs/models/SESServiceException.js +0 -12
  3803. package/node_modules/@aws-sdk/client-ses/dist-cjs/models/errors.js +0 -504
  3804. package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.browser.js +0 -38
  3805. package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.js +0 -54
  3806. package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.native.js +0 -15
  3807. package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.shared.js +0 -44
  3808. package/node_modules/@aws-sdk/client-ses/dist-cjs/schemas/schemas_0.js +0 -1812
  3809. package/node_modules/@aws-sdk/client-ses/dist-es/endpoint/ruleset.js +0 -4
  3810. package/node_modules/@aws-sdk/client-ses/dist-types/endpoint/ruleset.d.ts +0 -2
  3811. package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
  3812. package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
  3813. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +0 -18
  3814. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/ruleset.js +0 -7
  3815. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +0 -12
  3816. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +0 -2059
  3817. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +0 -38
  3818. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +0 -54
  3819. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +0 -15
  3820. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +0 -44
  3821. package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +0 -5616
  3822. package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/ruleset.js +0 -4
  3823. package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/ruleset.d.ts +0 -2
  3824. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
  3825. package/node_modules/@aws-sdk/crc64-nvme/LICENSE +0 -201
  3826. package/node_modules/@aws-sdk/crc64-nvme/README.md +0 -61
  3827. package/node_modules/@aws-sdk/crc64-nvme/dist-cjs/index.js +0 -101
  3828. package/node_modules/@aws-sdk/crc64-nvme/dist-es/Crc64Nvme.js +0 -92
  3829. package/node_modules/@aws-sdk/crc64-nvme/dist-es/index.js +0 -2
  3830. package/node_modules/@aws-sdk/crc64-nvme/dist-types/Crc64Nvme.d.ts +0 -24
  3831. package/node_modules/@aws-sdk/crc64-nvme/dist-types/crc64-nvme-crt-container.d.ts +0 -13
  3832. package/node_modules/@aws-sdk/crc64-nvme/dist-types/index.d.ts +0 -2
  3833. package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/Crc64Nvme.d.ts +0 -9
  3834. package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/index.d.ts +0 -2
  3835. package/node_modules/@aws-sdk/crc64-nvme/package.json +0 -50
  3836. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +0 -46
  3837. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +0 -31
  3838. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +0 -70
  3839. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +0 -2
  3840. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +0 -53
  3841. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +0 -17
  3842. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +0 -5
  3843. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +0 -8
  3844. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +0 -34
  3845. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +0 -62
  3846. package/node_modules/@aws-sdk/middleware-bucket-endpoint/LICENSE +0 -201
  3847. package/node_modules/@aws-sdk/middleware-bucket-endpoint/README.md +0 -4
  3848. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js +0 -352
  3849. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/NodeDisableMultiregionAccessPointConfigOptions.js +0 -8
  3850. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/NodeUseArnRegionConfigOptions.js +0 -8
  3851. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/bucketEndpointMiddleware.js +0 -81
  3852. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/index.js +0 -6
  3853. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -4
  3854. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/NodeUseArnRegionConfigOptions.d.ts +0 -9
  3855. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/bucketHostnameUtils.d.ts +0 -174
  3856. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/index.d.ts +0 -6
  3857. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -6
  3858. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeUseArnRegionConfigOptions.d.ts +0 -6
  3859. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketHostnameUtils.d.ts +0 -80
  3860. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/index.d.ts +0 -16
  3861. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +0 -60
  3862. package/node_modules/@aws-sdk/middleware-expect-continue/LICENSE +0 -201
  3863. package/node_modules/@aws-sdk/middleware-expect-continue/README.md +0 -4
  3864. package/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js +0 -48
  3865. package/node_modules/@aws-sdk/middleware-expect-continue/dist-es/index.js +0 -41
  3866. package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/index.d.ts +0 -12
  3867. package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/ts3.4/index.d.ts +0 -22
  3868. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +0 -58
  3869. package/node_modules/@aws-sdk/middleware-flexible-checksums/LICENSE +0 -201
  3870. package/node_modules/@aws-sdk/middleware-flexible-checksums/README.md +0 -7
  3871. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/getCrc32ChecksumAlgorithmFunction.browser.js +0 -6
  3872. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/getCrc32ChecksumAlgorithmFunction.js +0 -26
  3873. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +0 -451
  3874. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsMiddleware.js +0 -123
  3875. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsResponseMiddleware.js +0 -48
  3876. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getCrc32ChecksumAlgorithmFunction.browser.js +0 -2
  3877. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getCrc32ChecksumAlgorithmFunction.js +0 -21
  3878. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +0 -6
  3879. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/isStreaming.js +0 -2
  3880. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/resolveFlexibleChecksumsConfig.js +0 -11
  3881. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/selectChecksumAlgorithmFunction.js +0 -32
  3882. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/stringHasher.js +0 -6
  3883. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/validateChecksumFromResponse.js +0 -45
  3884. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -14
  3885. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -14
  3886. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
  3887. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getCrc32ChecksumAlgorithmFunction.d.ts +0 -10
  3888. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts +0 -6
  3889. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -7
  3890. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -7
  3891. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
  3892. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getCrc32ChecksumAlgorithmFunction.d.ts +0 -12
  3893. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/index.d.ts +0 -6
  3894. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/validateChecksumFromResponse.d.ts +0 -12
  3895. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/validateChecksumFromResponse.d.ts +0 -13
  3896. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +0 -78
  3897. package/node_modules/@aws-sdk/middleware-host-header/README.md +0 -4
  3898. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +0 -41
  3899. package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +0 -33
  3900. package/node_modules/@aws-sdk/middleware-host-header/package.json +0 -59
  3901. package/node_modules/@aws-sdk/middleware-location-constraint/LICENSE +0 -201
  3902. package/node_modules/@aws-sdk/middleware-location-constraint/README.md +0 -4
  3903. package/node_modules/@aws-sdk/middleware-location-constraint/dist-cjs/index.js +0 -30
  3904. package/node_modules/@aws-sdk/middleware-location-constraint/package.json +0 -57
  3905. package/node_modules/@aws-sdk/middleware-logger/LICENSE +0 -201
  3906. package/node_modules/@aws-sdk/middleware-logger/README.md +0 -4
  3907. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +0 -48
  3908. package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +0 -1
  3909. package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +0 -1
  3910. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +0 -1
  3911. package/node_modules/@aws-sdk/middleware-logger/package.json +0 -59
  3912. package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +0 -201
  3913. package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +0 -17
  3914. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +0 -29
  3915. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +0 -33
  3916. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +0 -5
  3917. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +0 -7
  3918. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +0 -2
  3919. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +0 -29
  3920. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +0 -5
  3921. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +0 -2
  3922. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +0 -6
  3923. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +0 -2
  3924. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +0 -63
  3925. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/check-content-length-header.js +0 -32
  3926. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-expires-middleware.js +0 -33
  3927. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/SignatureV4S3Express.js +0 -41
  3928. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/constants.js +0 -13
  3929. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressHttpSigningMiddleware.js +0 -38
  3930. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressMiddleware.js +0 -41
  3931. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js +0 -7
  3932. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3Configuration.js +0 -17
  3933. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +0 -67
  3934. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/validate-bucket-name.js +0 -25
  3935. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/SignatureV4S3Express.d.ts +0 -17
  3936. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/constants.d.ts +0 -37
  3937. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -27
  3938. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts +0 -9
  3939. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3Configuration.d.ts +0 -79
  3940. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts +0 -20
  3941. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/SignatureV4S3Express.d.ts +0 -19
  3942. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/constants.d.ts +0 -11
  3943. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -40
  3944. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/index.d.ts +0 -17
  3945. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3Configuration.d.ts +0 -33
  3946. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +0 -17
  3947. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/validate-bucket-name.d.ts +0 -13
  3948. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/validate-bucket-name.d.ts +0 -14
  3949. package/node_modules/@aws-sdk/middleware-ssec/LICENSE +0 -201
  3950. package/node_modules/@aws-sdk/middleware-ssec/README.md +0 -4
  3951. package/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js +0 -73
  3952. package/node_modules/@aws-sdk/middleware-ssec/package.json +0 -57
  3953. package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +0 -201
  3954. package/node_modules/@aws-sdk/middleware-user-agent/README.md +0 -4
  3955. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +0 -194
  3956. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +0 -49
  3957. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +0 -2
  3958. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +0 -82
  3959. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +0 -2
  3960. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +0 -2
  3961. package/node_modules/@aws-sdk/middleware-user-agent/package.json +0 -63
  3962. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +0 -60
  3963. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +0 -18
  3964. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/ruleset.js +0 -146
  3965. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/CognitoIdentityServiceException.js +0 -12
  3966. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/errors.js +0 -121
  3967. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.browser.js +0 -38
  3968. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.js +0 -54
  3969. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.native.js +0 -15
  3970. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +0 -50
  3971. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/schemas/schemas_0.js +0 -110
  3972. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +0 -56
  3973. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +0 -18
  3974. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +0 -133
  3975. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/SigninServiceException.js +0 -12
  3976. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/errors.js +0 -64
  3977. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +0 -39
  3978. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +0 -54
  3979. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +0 -15
  3980. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +0 -49
  3981. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/schemas/schemas_0.js +0 -125
  3982. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +0 -56
  3983. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +0 -18
  3984. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/ruleset.js +0 -106
  3985. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/SSOServiceException.js +0 -12
  3986. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/errors.js +0 -56
  3987. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.browser.js +0 -38
  3988. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.js +0 -54
  3989. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.native.js +0 -15
  3990. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.shared.js +0 -49
  3991. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/schemas/schemas_0.js +0 -90
  3992. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +0 -56
  3993. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +0 -18
  3994. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +0 -106
  3995. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/SSOOIDCServiceException.js +0 -12
  3996. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/errors.js +0 -195
  3997. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +0 -38
  3998. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +0 -54
  3999. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +0 -15
  4000. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +0 -49
  4001. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/schemas/schemas_0.js +0 -140
  4002. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +0 -54
  4003. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +0 -43
  4004. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +0 -62
  4005. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +0 -19
  4006. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +0 -18
  4007. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +0 -145
  4008. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/STSServiceException.js +0 -12
  4009. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +0 -95
  4010. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +0 -39
  4011. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +0 -68
  4012. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +0 -15
  4013. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +0 -50
  4014. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +0 -13
  4015. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/schemas/schemas_0.js +0 -195
  4016. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/ruleset.js +0 -143
  4017. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +0 -130
  4018. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/ruleset.js +0 -103
  4019. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +0 -103
  4020. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +0 -142
  4021. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
  4022. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +0 -2
  4023. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/ruleset.d.ts +0 -2
  4024. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
  4025. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +0 -2
  4026. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
  4027. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +0 -2
  4028. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/ruleset.d.ts +0 -2
  4029. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
  4030. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +0 -2
  4031. package/node_modules/@aws-sdk/region-config-resolver/LICENSE +0 -201
  4032. package/node_modules/@aws-sdk/region-config-resolver/README.md +0 -19
  4033. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +0 -38
  4034. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +0 -20
  4035. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +0 -6
  4036. package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +0 -3
  4037. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +0 -2
  4038. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +0 -16
  4039. package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +0 -3
  4040. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +0 -15
  4041. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +0 -14
  4042. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +0 -3
  4043. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +0 -11
  4044. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +0 -7
  4045. package/node_modules/@aws-sdk/region-config-resolver/package.json +0 -62
  4046. package/node_modules/@aws-sdk/util-arn-parser/LICENSE +0 -201
  4047. package/node_modules/@aws-sdk/util-arn-parser/README.md +0 -4
  4048. package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +0 -27
  4049. package/node_modules/@aws-sdk/util-arn-parser/package.json +0 -55
  4050. package/node_modules/@aws-sdk/util-endpoints/LICENSE +0 -201
  4051. package/node_modules/@aws-sdk/util-endpoints/README.md +0 -6
  4052. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +0 -406
  4053. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +0 -267
  4054. package/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +0 -10
  4055. package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +0 -6
  4056. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +0 -3
  4057. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +0 -25
  4058. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +0 -41
  4059. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +0 -267
  4060. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +0 -1
  4061. package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +0 -21
  4062. package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +0 -1
  4063. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +0 -1
  4064. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +0 -6
  4065. package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +0 -2
  4066. package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +0 -6
  4067. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +0 -3
  4068. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +0 -1
  4069. package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -1
  4070. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +0 -2
  4071. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +0 -6
  4072. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +0 -3
  4073. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +0 -1
  4074. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +0 -1
  4075. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +0 -1
  4076. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +0 -6
  4077. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +0 -1
  4078. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +0 -5
  4079. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +0 -1
  4080. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +0 -6
  4081. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +0 -12
  4082. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +0 -1
  4083. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +0 -1
  4084. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +0 -1
  4085. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +0 -1
  4086. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +0 -1
  4087. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +0 -6
  4088. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +0 -1
  4089. package/node_modules/@aws-sdk/util-endpoints/package.json +0 -60
  4090. package/node_modules/@aws-sdk/util-locate-window/LICENSE +0 -201
  4091. package/node_modules/@aws-sdk/util-locate-window/README.md +0 -4
  4092. package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -14
  4093. package/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +0 -10
  4094. package/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +0 -6
  4095. package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +0 -1
  4096. package/node_modules/@aws-sdk/util-locate-window/package.json +0 -54
  4097. package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +0 -201
  4098. package/node_modules/@aws-sdk/util-user-agent-browser/README.md +0 -29
  4099. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +0 -2
  4100. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +0 -57
  4101. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +0 -58
  4102. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +0 -22
  4103. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +0 -14
  4104. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +0 -9
  4105. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +0 -55
  4106. package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +0 -201
  4107. package/node_modules/@aws-sdk/util-user-agent-node/README.md +0 -17
  4108. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +0 -185
  4109. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +0 -36
  4110. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getNodeModulesParentDirs.js +0 -15
  4111. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedDevTypeScriptVersion.js +0 -14
  4112. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedTypeScriptVersion.js +0 -9
  4113. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +0 -75
  4114. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +0 -2
  4115. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +0 -9
  4116. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getNodeModulesParentDirs.d.ts +0 -10
  4117. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedDevTypeScriptVersion.d.ts +0 -8
  4118. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedTypeScriptVersion.d.ts +0 -8
  4119. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getTypeScriptUserAgentPair.d.ts +0 -6
  4120. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +0 -2
  4121. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +0 -13
  4122. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getNodeModulesParentDirs.d.ts +0 -1
  4123. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedDevTypeScriptVersion.d.ts +0 -3
  4124. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedTypeScriptVersion.d.ts +0 -3
  4125. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getTypeScriptUserAgentPair.d.ts +0 -4
  4126. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +0 -2
  4127. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +0 -6
  4128. package/node_modules/@aws-sdk/util-user-agent-node/package.json +0 -69
  4129. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +0 -23
  4130. package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.d.ts +0 -16
  4131. package/node_modules/@smithy/chunked-blob-reader/LICENSE +0 -201
  4132. package/node_modules/@smithy/chunked-blob-reader/README.md +0 -10
  4133. package/node_modules/@smithy/chunked-blob-reader/dist-cjs/index.js +0 -13
  4134. package/node_modules/@smithy/chunked-blob-reader/dist-types/index.d.ts +0 -5
  4135. package/node_modules/@smithy/chunked-blob-reader/dist-types/ts3.4/index.d.ts +0 -5
  4136. package/node_modules/@smithy/chunked-blob-reader/package.json +0 -60
  4137. package/node_modules/@smithy/chunked-blob-reader-native/LICENSE +0 -201
  4138. package/node_modules/@smithy/chunked-blob-reader-native/README.md +0 -10
  4139. package/node_modules/@smithy/chunked-blob-reader-native/dist-cjs/index.js +0 -32
  4140. package/node_modules/@smithy/chunked-blob-reader-native/dist-es/index.js +0 -27
  4141. package/node_modules/@smithy/chunked-blob-reader-native/dist-types/ts3.4/index.d.ts +0 -4
  4142. package/node_modules/@smithy/chunked-blob-reader-native/package.json +0 -61
  4143. package/node_modules/@smithy/config-resolver/LICENSE +0 -201
  4144. package/node_modules/@smithy/config-resolver/README.md +0 -17
  4145. package/node_modules/@smithy/config-resolver/dist-cjs/index.js +0 -198
  4146. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -14
  4147. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -14
  4148. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +0 -4
  4149. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +0 -10
  4150. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +0 -14
  4151. package/node_modules/@smithy/config-resolver/dist-es/index.js +0 -3
  4152. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +0 -15
  4153. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +0 -12
  4154. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +0 -2
  4155. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +0 -3
  4156. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -23
  4157. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -23
  4158. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +0 -16
  4159. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +0 -57
  4160. package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +0 -12
  4161. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +0 -17
  4162. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +0 -8
  4163. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +0 -12
  4164. package/node_modules/@smithy/config-resolver/package.json +0 -65
  4165. package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +0 -6
  4166. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -21
  4167. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +0 -21
  4168. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -46
  4169. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +0 -6
  4170. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/resolveAuthOptions.js +0 -24
  4171. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +0 -19
  4172. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +0 -27
  4173. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +0 -5
  4174. package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +0 -10
  4175. package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +0 -44
  4176. package/node_modules/@smithy/core/dist-cjs/request-builder/requestBuilder.js +0 -5
  4177. package/node_modules/@smithy/core/dist-cjs/setFeature.js +0 -14
  4178. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +0 -17
  4179. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +0 -38
  4180. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +0 -15
  4181. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +0 -6
  4182. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +0 -9
  4183. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +0 -6
  4184. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +0 -61
  4185. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -42
  4186. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +0 -3
  4187. package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +0 -23
  4188. package/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +0 -2
  4189. package/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +0 -1
  4190. package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +0 -17
  4191. package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +0 -2
  4192. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +0 -13
  4193. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +0 -34
  4194. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +0 -11
  4195. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +0 -3
  4196. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +0 -3
  4197. package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +0 -5
  4198. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +0 -18
  4199. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +0 -18
  4200. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +0 -33
  4201. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +0 -3
  4202. package/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +0 -2
  4203. package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +0 -7
  4204. package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +0 -5
  4205. package/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +0 -2
  4206. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +0 -8
  4207. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +0 -8
  4208. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +0 -3
  4209. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +0 -3
  4210. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +0 -30
  4211. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +0 -2
  4212. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +0 -8
  4213. package/node_modules/@smithy/eventstream-codec/LICENSE +0 -201
  4214. package/node_modules/@smithy/eventstream-codec/README.md +0 -17
  4215. package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +0 -401
  4216. package/node_modules/@smithy/eventstream-codec/dist-es/EventStreamCodec.js +0 -65
  4217. package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +0 -184
  4218. package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +0 -44
  4219. package/node_modules/@smithy/eventstream-codec/dist-es/TestVectors.fixture.js +0 -146
  4220. package/node_modules/@smithy/eventstream-codec/dist-es/index.js +0 -8
  4221. package/node_modules/@smithy/eventstream-codec/dist-es/splitMessage.js +0 -30
  4222. package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +0 -31
  4223. package/node_modules/@smithy/eventstream-codec/dist-types/TestVectors.fixture.d.ts +0 -2
  4224. package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +0 -8
  4225. package/node_modules/@smithy/eventstream-codec/dist-types/vectorTypes.fixture.d.ts +0 -12
  4226. package/node_modules/@smithy/eventstream-codec/package.json +0 -64
  4227. package/node_modules/@smithy/eventstream-serde-browser/LICENSE +0 -201
  4228. package/node_modules/@smithy/eventstream-serde-browser/README.md +0 -17
  4229. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +0 -58
  4230. package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +0 -20
  4231. package/node_modules/@smithy/eventstream-serde-browser/dist-es/index.js +0 -3
  4232. package/node_modules/@smithy/eventstream-serde-browser/dist-es/provider.js +0 -2
  4233. package/node_modules/@smithy/eventstream-serde-browser/dist-es/utils.js +0 -28
  4234. package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +0 -47
  4235. package/node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts +0 -12
  4236. package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +0 -3
  4237. package/node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts +0 -13
  4238. package/node_modules/@smithy/eventstream-serde-browser/package.json +0 -60
  4239. package/node_modules/@smithy/eventstream-serde-config-resolver/LICENSE +0 -201
  4240. package/node_modules/@smithy/eventstream-serde-config-resolver/README.md +0 -17
  4241. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js +0 -7
  4242. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-es/index.js +0 -1
  4243. package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts +0 -4
  4244. package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +0 -61
  4245. package/node_modules/@smithy/eventstream-serde-node/LICENSE +0 -201
  4246. package/node_modules/@smithy/eventstream-serde-node/README.md +0 -17
  4247. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +0 -53
  4248. package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +0 -19
  4249. package/node_modules/@smithy/eventstream-serde-node/dist-es/index.js +0 -2
  4250. package/node_modules/@smithy/eventstream-serde-node/dist-es/provider.js +0 -2
  4251. package/node_modules/@smithy/eventstream-serde-node/dist-es/utils.js +0 -26
  4252. package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +0 -23
  4253. package/node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts +0 -8
  4254. package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +0 -3
  4255. package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +0 -12
  4256. package/node_modules/@smithy/eventstream-serde-node/package.json +0 -61
  4257. package/node_modules/@smithy/eventstream-serde-universal/LICENSE +0 -201
  4258. package/node_modules/@smithy/eventstream-serde-universal/README.md +0 -17
  4259. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +0 -132
  4260. package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +0 -25
  4261. package/node_modules/@smithy/eventstream-serde-universal/dist-es/index.js +0 -2
  4262. package/node_modules/@smithy/eventstream-serde-universal/dist-es/provider.js +0 -2
  4263. package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +0 -23
  4264. package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +0 -18
  4265. package/node_modules/@smithy/eventstream-serde-universal/dist-types/index.d.ts +0 -8
  4266. package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +0 -3
  4267. package/node_modules/@smithy/eventstream-serde-universal/package.json +0 -65
  4268. package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +0 -53
  4269. package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +0 -2
  4270. package/node_modules/@smithy/hash-blob-browser/LICENSE +0 -201
  4271. package/node_modules/@smithy/hash-blob-browser/README.md +0 -17
  4272. package/node_modules/@smithy/hash-blob-browser/dist-cjs/index.js +0 -13
  4273. package/node_modules/@smithy/hash-blob-browser/dist-es/index.js +0 -8
  4274. package/node_modules/@smithy/hash-blob-browser/package.json +0 -69
  4275. package/node_modules/@smithy/hash-node/LICENSE +0 -201
  4276. package/node_modules/@smithy/hash-node/README.md +0 -17
  4277. package/node_modules/@smithy/hash-node/dist-cjs/index.js +0 -42
  4278. package/node_modules/@smithy/hash-node/dist-es/index.js +0 -37
  4279. package/node_modules/@smithy/hash-node/package.json +0 -64
  4280. package/node_modules/@smithy/hash-stream-node/LICENSE +0 -201
  4281. package/node_modules/@smithy/hash-stream-node/README.md +0 -17
  4282. package/node_modules/@smithy/hash-stream-node/dist-cjs/index.js +0 -67
  4283. package/node_modules/@smithy/hash-stream-node/dist-es/HashCalculator.js +0 -18
  4284. package/node_modules/@smithy/hash-stream-node/dist-es/fileStreamHasher.js +0 -24
  4285. package/node_modules/@smithy/hash-stream-node/dist-es/index.js +0 -2
  4286. package/node_modules/@smithy/hash-stream-node/dist-types/HashCalculator.d.ts +0 -11
  4287. package/node_modules/@smithy/hash-stream-node/dist-types/fileStreamHasher.d.ts +0 -6
  4288. package/node_modules/@smithy/hash-stream-node/dist-types/index.d.ts +0 -8
  4289. package/node_modules/@smithy/hash-stream-node/dist-types/readableStreamHasher.d.ts +0 -6
  4290. package/node_modules/@smithy/hash-stream-node/package.json +0 -64
  4291. package/node_modules/@smithy/invalid-dependency/LICENSE +0 -201
  4292. package/node_modules/@smithy/invalid-dependency/README.md +0 -17
  4293. package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +0 -10
  4294. package/node_modules/@smithy/invalid-dependency/dist-es/index.js +0 -2
  4295. package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +0 -8
  4296. package/node_modules/@smithy/invalid-dependency/package.json +0 -60
  4297. package/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  4298. package/node_modules/@smithy/is-array-buffer/README.md +0 -10
  4299. package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -6
  4300. package/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
  4301. package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
  4302. package/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
  4303. package/node_modules/@smithy/is-array-buffer/package.json +0 -61
  4304. package/node_modules/@smithy/md5-js/LICENSE +0 -201
  4305. package/node_modules/@smithy/md5-js/README.md +0 -17
  4306. package/node_modules/@smithy/md5-js/dist-cjs/index.js +0 -176
  4307. package/node_modules/@smithy/md5-js/dist-es/constants.js +0 -3
  4308. package/node_modules/@smithy/md5-js/dist-es/index.js +0 -168
  4309. package/node_modules/@smithy/md5-js/dist-types/constants.d.ts +0 -12
  4310. package/node_modules/@smithy/md5-js/dist-types/index.d.ts +0 -16
  4311. package/node_modules/@smithy/md5-js/package.json +0 -65
  4312. package/node_modules/@smithy/middleware-content-length/LICENSE +0 -201
  4313. package/node_modules/@smithy/middleware-content-length/README.md +0 -17
  4314. package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +0 -46
  4315. package/node_modules/@smithy/middleware-content-length/dist-es/index.js +0 -39
  4316. package/node_modules/@smithy/middleware-content-length/package.json +0 -63
  4317. package/node_modules/@smithy/middleware-endpoint/LICENSE +0 -201
  4318. package/node_modules/@smithy/middleware-endpoint/README.md +0 -17
  4319. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +0 -5
  4320. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +0 -7
  4321. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +0 -35
  4322. package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +0 -264
  4323. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +0 -3
  4324. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +0 -64
  4325. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +0 -31
  4326. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +0 -2
  4327. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +0 -17
  4328. package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +0 -36
  4329. package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +0 -18
  4330. package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +0 -6
  4331. package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +0 -24
  4332. package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +0 -1
  4333. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
  4334. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +0 -28
  4335. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +0 -2
  4336. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +0 -8
  4337. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +0 -6
  4338. package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +0 -10
  4339. package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +0 -11
  4340. package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +0 -18
  4341. package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +0 -109
  4342. package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +0 -4
  4343. package/node_modules/@smithy/middleware-endpoint/package.json +0 -74
  4344. package/node_modules/@smithy/middleware-retry/LICENSE +0 -201
  4345. package/node_modules/@smithy/middleware-retry/README.md +0 -24
  4346. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +0 -396
  4347. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +0 -5
  4348. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +0 -7
  4349. package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +0 -48
  4350. package/node_modules/@smithy/middleware-retry/dist-es/index.js +0 -8
  4351. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +0 -3
  4352. package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +0 -22
  4353. package/node_modules/@smithy/middleware-retry/dist-es/parseRetryAfterHeader.js +0 -49
  4354. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +0 -21
  4355. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/StandardRetryStrategy.js +0 -94
  4356. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/defaultRetryQuota.js +0 -27
  4357. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/delayDecider.js +0 -2
  4358. package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/retryDecider.js +0 -7
  4359. package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +0 -105
  4360. package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +0 -68
  4361. package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +0 -8
  4362. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
  4363. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +0 -5
  4364. package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +0 -24
  4365. package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +0 -14
  4366. package/node_modules/@smithy/middleware-retry/package.json +0 -79
  4367. package/node_modules/@smithy/middleware-serde/LICENSE +0 -201
  4368. package/node_modules/@smithy/middleware-serde/README.md +0 -17
  4369. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +0 -104
  4370. package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +0 -58
  4371. package/node_modules/@smithy/middleware-serde/dist-es/index.js +0 -3
  4372. package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +0 -3
  4373. package/node_modules/@smithy/middleware-serde/package.json +0 -65
  4374. package/node_modules/@smithy/middleware-stack/LICENSE +0 -201
  4375. package/node_modules/@smithy/middleware-stack/README.md +0 -91
  4376. package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +0 -285
  4377. package/node_modules/@smithy/middleware-stack/dist-es/index.js +0 -1
  4378. package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +0 -1
  4379. package/node_modules/@smithy/middleware-stack/package.json +0 -63
  4380. package/node_modules/@smithy/node-config-provider/LICENSE +0 -201
  4381. package/node_modules/@smithy/node-config-provider/README.md +0 -17
  4382. package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +0 -62
  4383. package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +0 -9
  4384. package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +0 -14
  4385. package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +0 -23
  4386. package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +0 -3
  4387. package/node_modules/@smithy/node-config-provider/dist-es/index.js +0 -1
  4388. package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +0 -31
  4389. package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +0 -22
  4390. package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +0 -4
  4391. package/node_modules/@smithy/node-config-provider/package.json +0 -65
  4392. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -21
  4393. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
  4394. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -8
  4395. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
  4396. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -21
  4397. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -13
  4398. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
  4399. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
  4400. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
  4401. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -13
  4402. package/node_modules/@smithy/property-provider/LICENSE +0 -201
  4403. package/node_modules/@smithy/property-provider/README.md +0 -17
  4404. package/node_modules/@smithy/property-provider/dist-cjs/index.js +0 -117
  4405. package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +0 -1
  4406. package/node_modules/@smithy/property-provider/dist-es/index.js +0 -6
  4407. package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +0 -31
  4408. package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +0 -39
  4409. package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +0 -31
  4410. package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +0 -13
  4411. package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +0 -5
  4412. package/node_modules/@smithy/property-provider/dist-types/index.d.ts +0 -24
  4413. package/node_modules/@smithy/property-provider/package.json +0 -60
  4414. package/node_modules/@smithy/protocol-http/LICENSE +0 -201
  4415. package/node_modules/@smithy/protocol-http/README.md +0 -17
  4416. package/node_modules/@smithy/protocol-http/dist-cjs/index.js +0 -169
  4417. package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +0 -1
  4418. package/node_modules/@smithy/protocol-http/dist-es/index.js +0 -8
  4419. package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +0 -50
  4420. package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +0 -33
  4421. package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +0 -1
  4422. package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +0 -35
  4423. package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +0 -56
  4424. package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +0 -8
  4425. package/node_modules/@smithy/protocol-http/package.json +0 -61
  4426. package/node_modules/@smithy/querystring-builder/LICENSE +0 -201
  4427. package/node_modules/@smithy/querystring-builder/README.md +0 -17
  4428. package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +0 -26
  4429. package/node_modules/@smithy/querystring-builder/dist-es/index.js +0 -21
  4430. package/node_modules/@smithy/querystring-builder/package.json +0 -60
  4431. package/node_modules/@smithy/querystring-parser/LICENSE +0 -201
  4432. package/node_modules/@smithy/querystring-parser/README.md +0 -17
  4433. package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +0 -27
  4434. package/node_modules/@smithy/querystring-parser/package.json +0 -60
  4435. package/node_modules/@smithy/service-error-classification/LICENSE +0 -201
  4436. package/node_modules/@smithy/service-error-classification/README.md +0 -17
  4437. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +0 -77
  4438. package/node_modules/@smithy/service-error-classification/dist-es/constants.js +0 -28
  4439. package/node_modules/@smithy/service-error-classification/dist-es/index.js +0 -39
  4440. package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +0 -24
  4441. package/node_modules/@smithy/service-error-classification/package.json +0 -59
  4442. package/node_modules/@smithy/shared-ini-file-loader/LICENSE +0 -201
  4443. package/node_modules/@smithy/shared-ini-file-loader/README.md +0 -105
  4444. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +0 -26
  4445. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +0 -12
  4446. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +0 -15
  4447. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +0 -196
  4448. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +0 -16
  4449. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +0 -4
  4450. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +0 -4
  4451. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +0 -22
  4452. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +0 -8
  4453. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +0 -11
  4454. package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +0 -10
  4455. package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +0 -39
  4456. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +0 -8
  4457. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +0 -52
  4458. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +0 -6
  4459. package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +0 -10
  4460. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +0 -2
  4461. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +0 -18
  4462. package/node_modules/@smithy/shared-ini-file-loader/package.json +0 -72
  4463. package/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +0 -399
  4464. package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +0 -14
  4465. package/node_modules/@smithy/smithy-client/LICENSE +0 -201
  4466. package/node_modules/@smithy/smithy-client/README.md +0 -17
  4467. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +0 -635
  4468. package/node_modules/@smithy/smithy-client/dist-es/client.js +0 -51
  4469. package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +0 -1
  4470. package/node_modules/@smithy/smithy-client/dist-es/command.js +0 -124
  4471. package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +0 -1
  4472. package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +0 -49
  4473. package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +0 -9
  4474. package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +0 -1
  4475. package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +0 -12
  4476. package/node_modules/@smithy/smithy-client/dist-es/index.js +0 -20
  4477. package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +0 -1
  4478. package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +0 -87
  4479. package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +0 -5
  4480. package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +0 -119
  4481. package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +0 -18
  4482. package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +0 -15
  4483. package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +0 -8
  4484. package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +0 -42
  4485. package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +0 -5
  4486. package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +0 -26
  4487. package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -38
  4488. package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +0 -1
  4489. package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +0 -7
  4490. package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +0 -7
  4491. package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +0 -21
  4492. package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +0 -162
  4493. package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +0 -5
  4494. package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +0 -15
  4495. package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +0 -12
  4496. package/node_modules/@smithy/smithy-client/package.json +0 -69
  4497. package/node_modules/@smithy/url-parser/LICENSE +0 -201
  4498. package/node_modules/@smithy/url-parser/README.md +0 -17
  4499. package/node_modules/@smithy/url-parser/dist-cjs/index.js +0 -23
  4500. package/node_modules/@smithy/url-parser/dist-es/index.js +0 -18
  4501. package/node_modules/@smithy/url-parser/package.json +0 -61
  4502. package/node_modules/@smithy/util-base64/LICENSE +0 -201
  4503. package/node_modules/@smithy/util-base64/README.md +0 -4
  4504. package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +0 -12
  4505. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +0 -40
  4506. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +0 -16
  4507. package/node_modules/@smithy/util-base64/dist-cjs/index.js +0 -27
  4508. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +0 -38
  4509. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +0 -19
  4510. package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +0 -36
  4511. package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +0 -12
  4512. package/node_modules/@smithy/util-base64/dist-es/index.js +0 -2
  4513. package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +0 -35
  4514. package/node_modules/@smithy/util-base64/dist-es/toBase64.js +0 -15
  4515. package/node_modules/@smithy/util-base64/dist-types/index.d.ts +0 -2
  4516. package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +0 -5
  4517. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +0 -8
  4518. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +0 -7
  4519. package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +0 -2
  4520. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +0 -9
  4521. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +0 -8
  4522. package/node_modules/@smithy/util-base64/package.json +0 -74
  4523. package/node_modules/@smithy/util-body-length-browser/LICENSE +0 -201
  4524. package/node_modules/@smithy/util-body-length-browser/README.md +0 -12
  4525. package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +0 -30
  4526. package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +0 -1
  4527. package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +0 -4
  4528. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
  4529. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +0 -4
  4530. package/node_modules/@smithy/util-body-length-browser/package.json +0 -61
  4531. package/node_modules/@smithy/util-body-length-node/LICENSE +0 -201
  4532. package/node_modules/@smithy/util-body-length-node/README.md +0 -12
  4533. package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +0 -32
  4534. package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +0 -27
  4535. package/node_modules/@smithy/util-body-length-node/dist-es/index.js +0 -1
  4536. package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +0 -4
  4537. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
  4538. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +0 -4
  4539. package/node_modules/@smithy/util-body-length-node/package.json +0 -62
  4540. package/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  4541. package/node_modules/@smithy/util-buffer-from/README.md +0 -10
  4542. package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -20
  4543. package/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  4544. package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  4545. package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  4546. package/node_modules/@smithy/util-buffer-from/package.json +0 -62
  4547. package/node_modules/@smithy/util-config-provider/LICENSE +0 -201
  4548. package/node_modules/@smithy/util-config-provider/README.md +0 -4
  4549. package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +0 -30
  4550. package/node_modules/@smithy/util-config-provider/dist-es/index.js +0 -3
  4551. package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +0 -3
  4552. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +0 -10
  4553. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +0 -3
  4554. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +0 -9
  4555. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +0 -4
  4556. package/node_modules/@smithy/util-config-provider/package.json +0 -63
  4557. package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +0 -201
  4558. package/node_modules/@smithy/util-defaults-mode-browser/README.md +0 -17
  4559. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +0 -4
  4560. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +0 -16
  4561. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +0 -34
  4562. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +0 -23
  4563. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +0 -1
  4564. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +0 -1
  4565. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +0 -30
  4566. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +0 -19
  4567. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +0 -12
  4568. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +0 -4
  4569. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
  4570. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +0 -16
  4571. package/node_modules/@smithy/util-defaults-mode-browser/package.json +0 -65
  4572. package/node_modules/@smithy/util-defaults-mode-node/LICENSE +0 -201
  4573. package/node_modules/@smithy/util-defaults-mode-node/README.md +0 -17
  4574. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +0 -74
  4575. package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +0 -6
  4576. package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +0 -1
  4577. package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +0 -52
  4578. package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +0 -24
  4579. package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +0 -6
  4580. package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +0 -4
  4581. package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
  4582. package/node_modules/@smithy/util-defaults-mode-node/package.json +0 -66
  4583. package/node_modules/@smithy/util-endpoints/LICENSE +0 -201
  4584. package/node_modules/@smithy/util-endpoints/README.md +0 -17
  4585. package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +0 -472
  4586. package/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +0 -2
  4587. package/node_modules/@smithy/util-endpoints/dist-es/index.js +0 -6
  4588. package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +0 -11
  4589. package/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +0 -9
  4590. package/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +0 -9
  4591. package/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +0 -27
  4592. package/node_modules/@smithy/util-endpoints/dist-es/types/index.js +0 -7
  4593. package/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +0 -12
  4594. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +0 -14
  4595. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +0 -22
  4596. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +0 -27
  4597. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +0 -14
  4598. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +0 -29
  4599. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +0 -42
  4600. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +0 -36
  4601. package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +0 -12
  4602. package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +0 -28
  4603. package/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +0 -7
  4604. package/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +0 -2
  4605. package/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +0 -34
  4606. package/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +0 -2
  4607. package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +0 -2
  4608. package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +0 -6
  4609. package/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +0 -9
  4610. package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +0 -5
  4611. package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -6
  4612. package/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +0 -7
  4613. package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +0 -25
  4614. package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +0 -11
  4615. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +0 -8
  4616. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +0 -8
  4617. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +0 -2
  4618. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +0 -7
  4619. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +0 -8
  4620. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +0 -2
  4621. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +0 -8
  4622. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +0 -2
  4623. package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +0 -2
  4624. package/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +0 -2
  4625. package/node_modules/@smithy/util-endpoints/package.json +0 -68
  4626. package/node_modules/@smithy/util-hex-encoding/LICENSE +0 -201
  4627. package/node_modules/@smithy/util-hex-encoding/README.md +0 -4
  4628. package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +0 -38
  4629. package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +0 -12
  4630. package/node_modules/@smithy/util-hex-encoding/package.json +0 -61
  4631. package/node_modules/@smithy/util-middleware/LICENSE +0 -201
  4632. package/node_modules/@smithy/util-middleware/README.md +0 -17
  4633. package/node_modules/@smithy/util-middleware/dist-cjs/index.js +0 -15
  4634. package/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +0 -2
  4635. package/node_modules/@smithy/util-middleware/dist-es/index.js +0 -2
  4636. package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +0 -5
  4637. package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +0 -8
  4638. package/node_modules/@smithy/util-middleware/package.json +0 -66
  4639. package/node_modules/@smithy/util-retry/LICENSE +0 -201
  4640. package/node_modules/@smithy/util-retry/README.md +0 -78
  4641. package/node_modules/@smithy/util-retry/dist-cjs/index.js +0 -333
  4642. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +0 -33
  4643. package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +0 -19
  4644. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +0 -110
  4645. package/node_modules/@smithy/util-retry/dist-es/DefaultRetryToken.js +0 -25
  4646. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +0 -83
  4647. package/node_modules/@smithy/util-retry/dist-es/index.js +0 -8
  4648. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -38
  4649. package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +0 -32
  4650. package/node_modules/@smithy/util-retry/dist-types/DefaultRetryToken.d.ts +0 -15
  4651. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +0 -48
  4652. package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +0 -60
  4653. package/node_modules/@smithy/util-retry/dist-types/index.d.ts +0 -8
  4654. package/node_modules/@smithy/util-retry/dist-types/retries-2026-config.d.ts +0 -11
  4655. package/node_modules/@smithy/util-retry/package.json +0 -70
  4656. package/node_modules/@smithy/util-stream/LICENSE +0 -201
  4657. package/node_modules/@smithy/util-stream/README.md +0 -6
  4658. package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +0 -36
  4659. package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +0 -7
  4660. package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +0 -64
  4661. package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +0 -39
  4662. package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +0 -12
  4663. package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +0 -60
  4664. package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +0 -103
  4665. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +0 -31
  4666. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +0 -41
  4667. package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +0 -34
  4668. package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +0 -42
  4669. package/node_modules/@smithy/util-stream/dist-cjs/index.js +0 -108
  4670. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +0 -68
  4671. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +0 -54
  4672. package/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +0 -10
  4673. package/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +0 -16
  4674. package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +0 -10
  4675. package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +0 -23
  4676. package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +0 -60
  4677. package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +0 -35
  4678. package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +0 -9
  4679. package/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +0 -57
  4680. package/node_modules/@smithy/util-stream/dist-es/headStream.js +0 -38
  4681. package/node_modules/@smithy/util-stream/dist-es/index.js +0 -9
  4682. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +0 -64
  4683. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +0 -50
  4684. package/node_modules/@smithy/util-stream/dist-es/splitStream.js +0 -13
  4685. package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +0 -22
  4686. package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +0 -61
  4687. package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +0 -14
  4688. package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +0 -13
  4689. package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +0 -15
  4690. package/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +0 -50
  4691. package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +0 -10
  4692. package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +0 -9
  4693. package/node_modules/@smithy/util-stream/dist-types/index.d.ts +0 -12
  4694. package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +0 -8
  4695. package/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +0 -11
  4696. package/node_modules/@smithy/util-stream/package.json +0 -98
  4697. package/node_modules/@smithy/util-uri-escape/LICENSE +0 -201
  4698. package/node_modules/@smithy/util-uri-escape/README.md +0 -10
  4699. package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +0 -9
  4700. package/node_modules/@smithy/util-uri-escape/dist-es/index.js +0 -2
  4701. package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +0 -8
  4702. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +0 -4
  4703. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +0 -4
  4704. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +0 -8
  4705. package/node_modules/@smithy/util-uri-escape/package.json +0 -60
  4706. package/node_modules/@smithy/util-utf8/LICENSE +0 -201
  4707. package/node_modules/@smithy/util-utf8/README.md +0 -4
  4708. package/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -32
  4709. package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
  4710. package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
  4711. package/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
  4712. package/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
  4713. package/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
  4714. package/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
  4715. package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
  4716. package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
  4717. package/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
  4718. package/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
  4719. package/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
  4720. package/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
  4721. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
  4722. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
  4723. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
  4724. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
  4725. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
  4726. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
  4727. package/node_modules/@smithy/util-utf8/package.json +0 -67
  4728. package/node_modules/@smithy/util-waiter/LICENSE +0 -201
  4729. package/node_modules/@smithy/util-waiter/README.md +0 -17
  4730. package/node_modules/@smithy/util-waiter/dist-cjs/index.js +0 -179
  4731. package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +0 -48
  4732. package/node_modules/@smithy/util-waiter/dist-es/index.js +0 -2
  4733. package/node_modules/@smithy/util-waiter/dist-es/poller.js +0 -60
  4734. package/node_modules/@smithy/util-waiter/dist-es/utils/index.js +0 -2
  4735. package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +0 -11
  4736. package/node_modules/@smithy/util-waiter/dist-types/index.d.ts +0 -2
  4737. package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +0 -10
  4738. package/node_modules/@smithy/util-waiter/dist-types/utils/index.d.ts +0 -8
  4739. package/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +0 -8
  4740. package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +0 -49
  4741. package/node_modules/@smithy/util-waiter/package.json +0 -62
  4742. package/node_modules/@smithy/uuid/LICENSE +0 -201
  4743. package/node_modules/@smithy/uuid/README.md +0 -10
  4744. package/node_modules/@smithy/uuid/dist-cjs/index.js +0 -36
  4745. package/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +0 -6
  4746. package/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +0 -4
  4747. package/node_modules/@smithy/uuid/dist-es/index.js +0 -1
  4748. package/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +0 -1
  4749. package/node_modules/@smithy/uuid/dist-es/randomUUID.js +0 -2
  4750. package/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +0 -1
  4751. package/node_modules/@smithy/uuid/dist-es/v4.js +0 -31
  4752. package/node_modules/@smithy/uuid/dist-types/index.d.ts +0 -1
  4753. package/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +0 -1
  4754. package/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +0 -2
  4755. package/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +0 -1
  4756. package/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +0 -1
  4757. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +0 -1
  4758. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +0 -2
  4759. package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +0 -1
  4760. package/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +0 -19
  4761. package/node_modules/@smithy/uuid/dist-types/v4.d.ts +0 -19
  4762. package/node_modules/@smithy/uuid/package.json +0 -66
  4763. package/node_modules/@zone-eu/mailsplit/node_modules/libmime/CHANGELOG.md +0 -172
  4764. package/node_modules/@zone-eu/mailsplit/node_modules/libmime/LICENSE +0 -19
  4765. package/node_modules/@zone-eu/mailsplit/node_modules/libmime/README.md +0 -207
  4766. package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/charset.js +0 -118
  4767. package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/charsets.js +0 -212
  4768. package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/get-charset-name.js +0 -227
  4769. package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/libmime.js +0 -924
  4770. package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/mimetypes.js +0 -2049
  4771. package/node_modules/@zone-eu/mailsplit/node_modules/libmime/package.json +0 -42
  4772. package/node_modules/async-retry/LICENSE.md +0 -21
  4773. package/node_modules/async-retry/README.md +0 -53
  4774. package/node_modules/async-retry/lib/index.js +0 -61
  4775. package/node_modules/async-retry/package.json +0 -55
  4776. package/node_modules/asynckit/LICENSE +0 -21
  4777. package/node_modules/asynckit/README.md +0 -233
  4778. package/node_modules/asynckit/bench.js +0 -76
  4779. package/node_modules/asynckit/index.js +0 -6
  4780. package/node_modules/asynckit/lib/abort.js +0 -29
  4781. package/node_modules/asynckit/lib/async.js +0 -34
  4782. package/node_modules/asynckit/lib/defer.js +0 -26
  4783. package/node_modules/asynckit/lib/iterate.js +0 -75
  4784. package/node_modules/asynckit/lib/readable_asynckit.js +0 -91
  4785. package/node_modules/asynckit/lib/readable_parallel.js +0 -25
  4786. package/node_modules/asynckit/lib/readable_serial.js +0 -25
  4787. package/node_modules/asynckit/lib/readable_serial_ordered.js +0 -29
  4788. package/node_modules/asynckit/lib/state.js +0 -37
  4789. package/node_modules/asynckit/lib/streamify.js +0 -141
  4790. package/node_modules/asynckit/lib/terminator.js +0 -29
  4791. package/node_modules/asynckit/package.json +0 -63
  4792. package/node_modules/asynckit/parallel.js +0 -43
  4793. package/node_modules/asynckit/serial.js +0 -17
  4794. package/node_modules/asynckit/serialOrdered.js +0 -75
  4795. package/node_modules/asynckit/stream.js +0 -21
  4796. package/node_modules/axios/CHANGELOG.md +0 -1416
  4797. package/node_modules/axios/LICENSE +0 -7
  4798. package/node_modules/axios/MIGRATION_GUIDE.md +0 -877
  4799. package/node_modules/axios/README.md +0 -2019
  4800. package/node_modules/axios/dist/axios.js +0 -4494
  4801. package/node_modules/axios/dist/axios.js.map +0 -1
  4802. package/node_modules/axios/dist/axios.min.js +0 -5
  4803. package/node_modules/axios/dist/axios.min.js.map +0 -1
  4804. package/node_modules/axios/dist/browser/axios.cjs +0 -4273
  4805. package/node_modules/axios/dist/browser/axios.cjs.map +0 -1
  4806. package/node_modules/axios/dist/esm/axios.js +0 -4293
  4807. package/node_modules/axios/dist/esm/axios.js.map +0 -1
  4808. package/node_modules/axios/dist/esm/axios.min.js +0 -3
  4809. package/node_modules/axios/dist/esm/axios.min.js.map +0 -1
  4810. package/node_modules/axios/dist/node/axios.cjs +0 -4811
  4811. package/node_modules/axios/dist/node/axios.cjs.map +0 -1
  4812. package/node_modules/axios/index.d.cts +0 -716
  4813. package/node_modules/axios/index.d.ts +0 -810
  4814. package/node_modules/axios/index.js +0 -43
  4815. package/node_modules/axios/lib/adapters/README.md +0 -36
  4816. package/node_modules/axios/lib/adapters/adapters.js +0 -130
  4817. package/node_modules/axios/lib/adapters/fetch.js +0 -338
  4818. package/node_modules/axios/lib/adapters/http.js +0 -954
  4819. package/node_modules/axios/lib/adapters/xhr.js +0 -222
  4820. package/node_modules/axios/lib/axios.js +0 -89
  4821. package/node_modules/axios/lib/cancel/CancelToken.js +0 -135
  4822. package/node_modules/axios/lib/cancel/CanceledError.js +0 -22
  4823. package/node_modules/axios/lib/cancel/isCancel.js +0 -5
  4824. package/node_modules/axios/lib/core/Axios.js +0 -277
  4825. package/node_modules/axios/lib/core/AxiosError.js +0 -90
  4826. package/node_modules/axios/lib/core/AxiosHeaders.js +0 -378
  4827. package/node_modules/axios/lib/core/InterceptorManager.js +0 -72
  4828. package/node_modules/axios/lib/core/README.md +0 -8
  4829. package/node_modules/axios/lib/core/buildFullPath.js +0 -22
  4830. package/node_modules/axios/lib/core/dispatchRequest.js +0 -77
  4831. package/node_modules/axios/lib/core/mergeConfig.js +0 -107
  4832. package/node_modules/axios/lib/core/settle.js +0 -31
  4833. package/node_modules/axios/lib/core/transformData.js +0 -28
  4834. package/node_modules/axios/lib/defaults/index.js +0 -172
  4835. package/node_modules/axios/lib/defaults/transitional.js +0 -8
  4836. package/node_modules/axios/lib/env/README.md +0 -3
  4837. package/node_modules/axios/lib/env/classes/FormData.js +0 -2
  4838. package/node_modules/axios/lib/env/data.js +0 -1
  4839. package/node_modules/axios/lib/helpers/AxiosTransformStream.js +0 -156
  4840. package/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +0 -62
  4841. package/node_modules/axios/lib/helpers/HttpStatusCode.js +0 -77
  4842. package/node_modules/axios/lib/helpers/README.md +0 -7
  4843. package/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +0 -29
  4844. package/node_modules/axios/lib/helpers/bind.js +0 -14
  4845. package/node_modules/axios/lib/helpers/buildURL.js +0 -66
  4846. package/node_modules/axios/lib/helpers/callbackify.js +0 -18
  4847. package/node_modules/axios/lib/helpers/combineURLs.js +0 -15
  4848. package/node_modules/axios/lib/helpers/composeSignals.js +0 -56
  4849. package/node_modules/axios/lib/helpers/cookies.js +0 -48
  4850. package/node_modules/axios/lib/helpers/deprecatedMethod.js +0 -31
  4851. package/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +0 -73
  4852. package/node_modules/axios/lib/helpers/formDataToJSON.js +0 -95
  4853. package/node_modules/axios/lib/helpers/formDataToStream.js +0 -118
  4854. package/node_modules/axios/lib/helpers/fromDataURI.js +0 -53
  4855. package/node_modules/axios/lib/helpers/isAbsoluteURL.js +0 -19
  4856. package/node_modules/axios/lib/helpers/isAxiosError.js +0 -14
  4857. package/node_modules/axios/lib/helpers/isURLSameOrigin.js +0 -16
  4858. package/node_modules/axios/lib/helpers/null.js +0 -2
  4859. package/node_modules/axios/lib/helpers/parseHeaders.js +0 -69
  4860. package/node_modules/axios/lib/helpers/parseProtocol.js +0 -6
  4861. package/node_modules/axios/lib/helpers/progressEventReducer.js +0 -51
  4862. package/node_modules/axios/lib/helpers/readBlob.js +0 -15
  4863. package/node_modules/axios/lib/helpers/resolveConfig.js +0 -70
  4864. package/node_modules/axios/lib/helpers/shouldBypassProxy.js +0 -106
  4865. package/node_modules/axios/lib/helpers/speedometer.js +0 -55
  4866. package/node_modules/axios/lib/helpers/spread.js +0 -28
  4867. package/node_modules/axios/lib/helpers/throttle.js +0 -44
  4868. package/node_modules/axios/lib/helpers/toFormData.js +0 -241
  4869. package/node_modules/axios/lib/helpers/toURLEncodedForm.js +0 -19
  4870. package/node_modules/axios/lib/helpers/trackStream.js +0 -89
  4871. package/node_modules/axios/lib/helpers/validator.js +0 -110
  4872. package/node_modules/axios/lib/platform/browser/classes/Blob.js +0 -3
  4873. package/node_modules/axios/lib/platform/browser/classes/FormData.js +0 -3
  4874. package/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +0 -4
  4875. package/node_modules/axios/lib/platform/browser/index.js +0 -13
  4876. package/node_modules/axios/lib/platform/common/utils.js +0 -52
  4877. package/node_modules/axios/lib/platform/index.js +0 -7
  4878. package/node_modules/axios/lib/platform/node/classes/FormData.js +0 -3
  4879. package/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +0 -4
  4880. package/node_modules/axios/lib/platform/node/index.js +0 -37
  4881. package/node_modules/axios/lib/utils.js +0 -919
  4882. package/node_modules/axios/package.json +0 -190
  4883. package/node_modules/call-bind-apply-helpers/.eslintrc +0 -17
  4884. package/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +0 -12
  4885. package/node_modules/call-bind-apply-helpers/.nycrc +0 -9
  4886. package/node_modules/call-bind-apply-helpers/CHANGELOG.md +0 -30
  4887. package/node_modules/call-bind-apply-helpers/LICENSE +0 -21
  4888. package/node_modules/call-bind-apply-helpers/README.md +0 -62
  4889. package/node_modules/call-bind-apply-helpers/actualApply.d.ts +0 -1
  4890. package/node_modules/call-bind-apply-helpers/actualApply.js +0 -10
  4891. package/node_modules/call-bind-apply-helpers/applyBind.d.ts +0 -19
  4892. package/node_modules/call-bind-apply-helpers/applyBind.js +0 -10
  4893. package/node_modules/call-bind-apply-helpers/functionApply.d.ts +0 -1
  4894. package/node_modules/call-bind-apply-helpers/functionApply.js +0 -4
  4895. package/node_modules/call-bind-apply-helpers/functionCall.d.ts +0 -1
  4896. package/node_modules/call-bind-apply-helpers/functionCall.js +0 -4
  4897. package/node_modules/call-bind-apply-helpers/index.d.ts +0 -64
  4898. package/node_modules/call-bind-apply-helpers/index.js +0 -15
  4899. package/node_modules/call-bind-apply-helpers/package.json +0 -85
  4900. package/node_modules/call-bind-apply-helpers/reflectApply.d.ts +0 -3
  4901. package/node_modules/call-bind-apply-helpers/reflectApply.js +0 -4
  4902. package/node_modules/call-bind-apply-helpers/test/index.js +0 -63
  4903. package/node_modules/call-bind-apply-helpers/tsconfig.json +0 -9
  4904. package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolAdvancedSecurityModeEnforced.d.ts +0 -8
  4905. package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolAdvancedSecurityModeEnforced.js +0 -32
  4906. package/node_modules/combined-stream/License +0 -19
  4907. package/node_modules/combined-stream/Readme.md +0 -138
  4908. package/node_modules/combined-stream/lib/combined_stream.js +0 -208
  4909. package/node_modules/combined-stream/package.json +0 -25
  4910. package/node_modules/deepmerge/.editorconfig +0 -7
  4911. package/node_modules/deepmerge/.eslintcache +0 -1
  4912. package/node_modules/deepmerge/changelog.md +0 -167
  4913. package/node_modules/deepmerge/dist/cjs.js +0 -133
  4914. package/node_modules/deepmerge/dist/umd.js +0 -139
  4915. package/node_modules/deepmerge/index.d.ts +0 -20
  4916. package/node_modules/deepmerge/index.js +0 -106
  4917. package/node_modules/deepmerge/license.txt +0 -21
  4918. package/node_modules/deepmerge/package.json +0 -42
  4919. package/node_modules/deepmerge/readme.md +0 -264
  4920. package/node_modules/deepmerge/rollup.config.js +0 -22
  4921. package/node_modules/delayed-stream/.npmignore +0 -1
  4922. package/node_modules/delayed-stream/License +0 -19
  4923. package/node_modules/delayed-stream/Makefile +0 -7
  4924. package/node_modules/delayed-stream/Readme.md +0 -141
  4925. package/node_modules/delayed-stream/lib/delayed_stream.js +0 -107
  4926. package/node_modules/delayed-stream/package.json +0 -27
  4927. package/node_modules/dunder-proto/.eslintrc +0 -5
  4928. package/node_modules/dunder-proto/.github/FUNDING.yml +0 -12
  4929. package/node_modules/dunder-proto/.nycrc +0 -13
  4930. package/node_modules/dunder-proto/CHANGELOG.md +0 -24
  4931. package/node_modules/dunder-proto/LICENSE +0 -21
  4932. package/node_modules/dunder-proto/README.md +0 -54
  4933. package/node_modules/dunder-proto/get.d.ts +0 -5
  4934. package/node_modules/dunder-proto/get.js +0 -30
  4935. package/node_modules/dunder-proto/package.json +0 -76
  4936. package/node_modules/dunder-proto/set.d.ts +0 -5
  4937. package/node_modules/dunder-proto/set.js +0 -35
  4938. package/node_modules/dunder-proto/test/get.js +0 -34
  4939. package/node_modules/dunder-proto/test/index.js +0 -4
  4940. package/node_modules/dunder-proto/test/set.js +0 -50
  4941. package/node_modules/dunder-proto/tsconfig.json +0 -9
  4942. package/node_modules/es-define-property/.eslintrc +0 -13
  4943. package/node_modules/es-define-property/.github/FUNDING.yml +0 -12
  4944. package/node_modules/es-define-property/.nycrc +0 -9
  4945. package/node_modules/es-define-property/CHANGELOG.md +0 -29
  4946. package/node_modules/es-define-property/LICENSE +0 -21
  4947. package/node_modules/es-define-property/README.md +0 -49
  4948. package/node_modules/es-define-property/index.d.ts +0 -3
  4949. package/node_modules/es-define-property/index.js +0 -14
  4950. package/node_modules/es-define-property/package.json +0 -81
  4951. package/node_modules/es-define-property/test/index.js +0 -56
  4952. package/node_modules/es-define-property/tsconfig.json +0 -10
  4953. package/node_modules/es-errors/.eslintrc +0 -5
  4954. package/node_modules/es-errors/.github/FUNDING.yml +0 -12
  4955. package/node_modules/es-errors/CHANGELOG.md +0 -40
  4956. package/node_modules/es-errors/LICENSE +0 -21
  4957. package/node_modules/es-errors/README.md +0 -55
  4958. package/node_modules/es-errors/eval.d.ts +0 -3
  4959. package/node_modules/es-errors/eval.js +0 -4
  4960. package/node_modules/es-errors/index.d.ts +0 -3
  4961. package/node_modules/es-errors/index.js +0 -4
  4962. package/node_modules/es-errors/package.json +0 -80
  4963. package/node_modules/es-errors/range.d.ts +0 -3
  4964. package/node_modules/es-errors/range.js +0 -4
  4965. package/node_modules/es-errors/ref.d.ts +0 -3
  4966. package/node_modules/es-errors/ref.js +0 -4
  4967. package/node_modules/es-errors/syntax.d.ts +0 -3
  4968. package/node_modules/es-errors/syntax.js +0 -4
  4969. package/node_modules/es-errors/test/index.js +0 -19
  4970. package/node_modules/es-errors/tsconfig.json +0 -49
  4971. package/node_modules/es-errors/type.d.ts +0 -3
  4972. package/node_modules/es-errors/type.js +0 -4
  4973. package/node_modules/es-errors/uri.d.ts +0 -3
  4974. package/node_modules/es-errors/uri.js +0 -4
  4975. package/node_modules/es-object-atoms/.eslintrc +0 -16
  4976. package/node_modules/es-object-atoms/.github/FUNDING.yml +0 -12
  4977. package/node_modules/es-object-atoms/CHANGELOG.md +0 -37
  4978. package/node_modules/es-object-atoms/LICENSE +0 -21
  4979. package/node_modules/es-object-atoms/README.md +0 -63
  4980. package/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +0 -3
  4981. package/node_modules/es-object-atoms/RequireObjectCoercible.js +0 -11
  4982. package/node_modules/es-object-atoms/ToObject.d.ts +0 -7
  4983. package/node_modules/es-object-atoms/ToObject.js +0 -10
  4984. package/node_modules/es-object-atoms/index.d.ts +0 -3
  4985. package/node_modules/es-object-atoms/index.js +0 -4
  4986. package/node_modules/es-object-atoms/isObject.d.ts +0 -3
  4987. package/node_modules/es-object-atoms/isObject.js +0 -6
  4988. package/node_modules/es-object-atoms/package.json +0 -80
  4989. package/node_modules/es-object-atoms/test/index.js +0 -38
  4990. package/node_modules/es-object-atoms/tsconfig.json +0 -6
  4991. package/node_modules/es-set-tostringtag/.eslintrc +0 -13
  4992. package/node_modules/es-set-tostringtag/.nycrc +0 -9
  4993. package/node_modules/es-set-tostringtag/CHANGELOG.md +0 -67
  4994. package/node_modules/es-set-tostringtag/LICENSE +0 -21
  4995. package/node_modules/es-set-tostringtag/README.md +0 -53
  4996. package/node_modules/es-set-tostringtag/index.d.ts +0 -10
  4997. package/node_modules/es-set-tostringtag/index.js +0 -35
  4998. package/node_modules/es-set-tostringtag/package.json +0 -78
  4999. package/node_modules/es-set-tostringtag/test/index.js +0 -85
  5000. package/node_modules/es-set-tostringtag/tsconfig.json +0 -9
  5001. package/node_modules/fast-xml-builder/CHANGELOG.md +0 -16
  5002. package/node_modules/fast-xml-builder/LICENSE +0 -21
  5003. package/node_modules/fast-xml-builder/README.md +0 -23
  5004. package/node_modules/fast-xml-builder/lib/fxb.cjs +0 -1
  5005. package/node_modules/fast-xml-builder/lib/fxb.d.cts +0 -180
  5006. package/node_modules/fast-xml-builder/lib/fxb.min.js +0 -2
  5007. package/node_modules/fast-xml-builder/lib/fxb.min.js.map +0 -1
  5008. package/node_modules/fast-xml-builder/package.json +0 -80
  5009. package/node_modules/fast-xml-builder/src/fxb.d.ts +0 -180
  5010. package/node_modules/fast-xml-builder/src/fxb.js +0 -529
  5011. package/node_modules/fast-xml-builder/src/ignoreAttributes.js +0 -18
  5012. package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +0 -292
  5013. package/node_modules/fast-xml-builder/src/prettifyJs2Xml.js +0 -0
  5014. package/node_modules/fast-xml-parser/CHANGELOG.md +0 -759
  5015. package/node_modules/fast-xml-parser/LICENSE +0 -21
  5016. package/node_modules/fast-xml-parser/README.md +0 -225
  5017. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +0 -2
  5018. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +0 -1
  5019. package/node_modules/fast-xml-parser/lib/fxp.cjs +0 -1
  5020. package/node_modules/fast-xml-parser/lib/fxp.d.cts +0 -603
  5021. package/node_modules/fast-xml-parser/lib/fxp.min.js +0 -2
  5022. package/node_modules/fast-xml-parser/lib/fxp.min.js.map +0 -1
  5023. package/node_modules/fast-xml-parser/lib/fxparser.min.js +0 -2
  5024. package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +0 -1
  5025. package/node_modules/fast-xml-parser/lib/fxvalidator.min.js +0 -2
  5026. package/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +0 -1
  5027. package/node_modules/fast-xml-parser/lib/pem.d.cts +0 -148
  5028. package/node_modules/fast-xml-parser/package.json +0 -94
  5029. package/node_modules/fast-xml-parser/src/cli/cli.js +0 -97
  5030. package/node_modules/fast-xml-parser/src/cli/man.js +0 -17
  5031. package/node_modules/fast-xml-parser/src/cli/read.js +0 -43
  5032. package/node_modules/fast-xml-parser/src/fxp.d.ts +0 -579
  5033. package/node_modules/fast-xml-parser/src/fxp.js +0 -14
  5034. package/node_modules/fast-xml-parser/src/ignoreAttributes.js +0 -18
  5035. package/node_modules/fast-xml-parser/src/pem.d.ts +0 -135
  5036. package/node_modules/fast-xml-parser/src/util.js +0 -61
  5037. package/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +0 -16
  5038. package/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +0 -106
  5039. package/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +0 -61
  5040. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -69
  5041. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +0 -103
  5042. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -100
  5043. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +0 -154
  5044. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -94
  5045. package/node_modules/fast-xml-parser/src/v6/Report.js +0 -0
  5046. package/node_modules/fast-xml-parser/src/v6/TagPath.js +0 -81
  5047. package/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +0 -13
  5048. package/node_modules/fast-xml-parser/src/v6/XMLParser.js +0 -83
  5049. package/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +0 -235
  5050. package/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +0 -210
  5051. package/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +0 -111
  5052. package/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +0 -116
  5053. package/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +0 -121
  5054. package/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +0 -105
  5055. package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +0 -22
  5056. package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +0 -19
  5057. package/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +0 -38
  5058. package/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +0 -13
  5059. package/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +0 -14
  5060. package/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +0 -6
  5061. package/node_modules/fast-xml-parser/src/validator.js +0 -425
  5062. package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +0 -6
  5063. package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +0 -410
  5064. package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +0 -159
  5065. package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +0 -911
  5066. package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +0 -71
  5067. package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +0 -173
  5068. package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +0 -40
  5069. package/node_modules/follow-redirects/LICENSE +0 -18
  5070. package/node_modules/follow-redirects/README.md +0 -155
  5071. package/node_modules/follow-redirects/debug.js +0 -15
  5072. package/node_modules/follow-redirects/http.js +0 -1
  5073. package/node_modules/follow-redirects/https.js +0 -1
  5074. package/node_modules/follow-redirects/index.js +0 -686
  5075. package/node_modules/follow-redirects/package.json +0 -58
  5076. package/node_modules/form-data/CHANGELOG.md +0 -659
  5077. package/node_modules/form-data/License +0 -19
  5078. package/node_modules/form-data/README.md +0 -355
  5079. package/node_modules/form-data/index.d.ts +0 -62
  5080. package/node_modules/form-data/lib/browser.js +0 -4
  5081. package/node_modules/form-data/lib/form_data.js +0 -494
  5082. package/node_modules/form-data/lib/populate.js +0 -10
  5083. package/node_modules/form-data/package.json +0 -82
  5084. package/node_modules/function-bind/.eslintrc +0 -21
  5085. package/node_modules/function-bind/.github/FUNDING.yml +0 -12
  5086. package/node_modules/function-bind/.github/SECURITY.md +0 -3
  5087. package/node_modules/function-bind/.nycrc +0 -13
  5088. package/node_modules/function-bind/CHANGELOG.md +0 -136
  5089. package/node_modules/function-bind/LICENSE +0 -20
  5090. package/node_modules/function-bind/README.md +0 -46
  5091. package/node_modules/function-bind/implementation.js +0 -84
  5092. package/node_modules/function-bind/index.js +0 -5
  5093. package/node_modules/function-bind/package.json +0 -87
  5094. package/node_modules/function-bind/test/.eslintrc +0 -9
  5095. package/node_modules/function-bind/test/index.js +0 -252
  5096. package/node_modules/get-intrinsic/.eslintrc +0 -42
  5097. package/node_modules/get-intrinsic/.github/FUNDING.yml +0 -12
  5098. package/node_modules/get-intrinsic/.nycrc +0 -9
  5099. package/node_modules/get-intrinsic/CHANGELOG.md +0 -186
  5100. package/node_modules/get-intrinsic/LICENSE +0 -21
  5101. package/node_modules/get-intrinsic/README.md +0 -71
  5102. package/node_modules/get-intrinsic/index.js +0 -378
  5103. package/node_modules/get-intrinsic/package.json +0 -97
  5104. package/node_modules/get-intrinsic/test/GetIntrinsic.js +0 -274
  5105. package/node_modules/get-proto/.eslintrc +0 -10
  5106. package/node_modules/get-proto/.github/FUNDING.yml +0 -12
  5107. package/node_modules/get-proto/.nycrc +0 -9
  5108. package/node_modules/get-proto/CHANGELOG.md +0 -21
  5109. package/node_modules/get-proto/LICENSE +0 -21
  5110. package/node_modules/get-proto/Object.getPrototypeOf.d.ts +0 -5
  5111. package/node_modules/get-proto/Object.getPrototypeOf.js +0 -6
  5112. package/node_modules/get-proto/README.md +0 -50
  5113. package/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +0 -3
  5114. package/node_modules/get-proto/Reflect.getPrototypeOf.js +0 -4
  5115. package/node_modules/get-proto/index.d.ts +0 -5
  5116. package/node_modules/get-proto/index.js +0 -27
  5117. package/node_modules/get-proto/package.json +0 -81
  5118. package/node_modules/get-proto/test/index.js +0 -68
  5119. package/node_modules/get-proto/tsconfig.json +0 -9
  5120. package/node_modules/gopd/.eslintrc +0 -16
  5121. package/node_modules/gopd/.github/FUNDING.yml +0 -12
  5122. package/node_modules/gopd/CHANGELOG.md +0 -45
  5123. package/node_modules/gopd/LICENSE +0 -21
  5124. package/node_modules/gopd/README.md +0 -40
  5125. package/node_modules/gopd/gOPD.d.ts +0 -1
  5126. package/node_modules/gopd/gOPD.js +0 -4
  5127. package/node_modules/gopd/index.d.ts +0 -5
  5128. package/node_modules/gopd/index.js +0 -15
  5129. package/node_modules/gopd/package.json +0 -77
  5130. package/node_modules/gopd/test/index.js +0 -36
  5131. package/node_modules/gopd/tsconfig.json +0 -9
  5132. package/node_modules/has-symbols/.eslintrc +0 -11
  5133. package/node_modules/has-symbols/.github/FUNDING.yml +0 -12
  5134. package/node_modules/has-symbols/.nycrc +0 -9
  5135. package/node_modules/has-symbols/CHANGELOG.md +0 -91
  5136. package/node_modules/has-symbols/LICENSE +0 -21
  5137. package/node_modules/has-symbols/README.md +0 -46
  5138. package/node_modules/has-symbols/index.d.ts +0 -3
  5139. package/node_modules/has-symbols/index.js +0 -14
  5140. package/node_modules/has-symbols/package.json +0 -111
  5141. package/node_modules/has-symbols/shams.d.ts +0 -3
  5142. package/node_modules/has-symbols/shams.js +0 -45
  5143. package/node_modules/has-symbols/test/index.js +0 -22
  5144. package/node_modules/has-symbols/test/shams/core-js.js +0 -29
  5145. package/node_modules/has-symbols/test/shams/get-own-property-symbols.js +0 -29
  5146. package/node_modules/has-symbols/test/tests.js +0 -58
  5147. package/node_modules/has-symbols/tsconfig.json +0 -10
  5148. package/node_modules/has-tostringtag/.eslintrc +0 -5
  5149. package/node_modules/has-tostringtag/.github/FUNDING.yml +0 -12
  5150. package/node_modules/has-tostringtag/.nycrc +0 -13
  5151. package/node_modules/has-tostringtag/CHANGELOG.md +0 -42
  5152. package/node_modules/has-tostringtag/LICENSE +0 -21
  5153. package/node_modules/has-tostringtag/README.md +0 -46
  5154. package/node_modules/has-tostringtag/index.d.ts +0 -3
  5155. package/node_modules/has-tostringtag/index.js +0 -8
  5156. package/node_modules/has-tostringtag/package.json +0 -108
  5157. package/node_modules/has-tostringtag/shams.d.ts +0 -3
  5158. package/node_modules/has-tostringtag/shams.js +0 -8
  5159. package/node_modules/has-tostringtag/test/index.js +0 -21
  5160. package/node_modules/has-tostringtag/test/shams/core-js.js +0 -31
  5161. package/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +0 -30
  5162. package/node_modules/has-tostringtag/test/tests.js +0 -15
  5163. package/node_modules/has-tostringtag/tsconfig.json +0 -49
  5164. package/node_modules/hasown/.eslintrc +0 -5
  5165. package/node_modules/hasown/.github/FUNDING.yml +0 -12
  5166. package/node_modules/hasown/.nycrc +0 -13
  5167. package/node_modules/hasown/CHANGELOG.md +0 -40
  5168. package/node_modules/hasown/LICENSE +0 -21
  5169. package/node_modules/hasown/README.md +0 -40
  5170. package/node_modules/hasown/index.d.ts +0 -3
  5171. package/node_modules/hasown/index.js +0 -8
  5172. package/node_modules/hasown/package.json +0 -92
  5173. package/node_modules/hasown/tsconfig.json +0 -6
  5174. package/node_modules/htmlparser2/lib/Parser.d.ts +0 -190
  5175. package/node_modules/htmlparser2/lib/Parser.d.ts.map +0 -1
  5176. package/node_modules/htmlparser2/lib/Parser.js +0 -518
  5177. package/node_modules/htmlparser2/lib/Parser.js.map +0 -1
  5178. package/node_modules/htmlparser2/lib/Tokenizer.d.ts +0 -143
  5179. package/node_modules/htmlparser2/lib/Tokenizer.d.ts.map +0 -1
  5180. package/node_modules/htmlparser2/lib/Tokenizer.js +0 -938
  5181. package/node_modules/htmlparser2/lib/Tokenizer.js.map +0 -1
  5182. package/node_modules/htmlparser2/lib/WritableStream.d.ts +0 -17
  5183. package/node_modules/htmlparser2/lib/WritableStream.d.ts.map +0 -1
  5184. package/node_modules/htmlparser2/lib/WritableStream.js +0 -54
  5185. package/node_modules/htmlparser2/lib/WritableStream.js.map +0 -1
  5186. package/node_modules/htmlparser2/lib/esm/Parser.d.ts +0 -190
  5187. package/node_modules/htmlparser2/lib/esm/Parser.d.ts.map +0 -1
  5188. package/node_modules/htmlparser2/lib/esm/Parser.js +0 -489
  5189. package/node_modules/htmlparser2/lib/esm/Parser.js.map +0 -1
  5190. package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts +0 -143
  5191. package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts.map +0 -1
  5192. package/node_modules/htmlparser2/lib/esm/Tokenizer.js +0 -932
  5193. package/node_modules/htmlparser2/lib/esm/Tokenizer.js.map +0 -1
  5194. package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts +0 -17
  5195. package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts.map +0 -1
  5196. package/node_modules/htmlparser2/lib/esm/WritableStream.js.map +0 -1
  5197. package/node_modules/htmlparser2/lib/esm/index.d.ts +0 -44
  5198. package/node_modules/htmlparser2/lib/esm/index.d.ts.map +0 -1
  5199. package/node_modules/htmlparser2/lib/esm/index.js +0 -62
  5200. package/node_modules/htmlparser2/lib/esm/index.js.map +0 -1
  5201. package/node_modules/htmlparser2/lib/esm/package.json +0 -1
  5202. package/node_modules/htmlparser2/lib/index.d.ts +0 -44
  5203. package/node_modules/htmlparser2/lib/index.d.ts.map +0 -1
  5204. package/node_modules/htmlparser2/lib/index.js +0 -100
  5205. package/node_modules/htmlparser2/lib/index.js.map +0 -1
  5206. package/node_modules/htmlparser2/node_modules/entities/lib/decode.d.ts +0 -211
  5207. package/node_modules/htmlparser2/node_modules/entities/lib/decode.d.ts.map +0 -1
  5208. package/node_modules/htmlparser2/node_modules/entities/lib/decode.js +0 -536
  5209. package/node_modules/htmlparser2/node_modules/entities/lib/decode.js.map +0 -1
  5210. package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.d.ts +0 -19
  5211. package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.d.ts.map +0 -1
  5212. package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.js +0 -76
  5213. package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.js.map +0 -1
  5214. package/node_modules/htmlparser2/node_modules/entities/lib/encode.d.ts +0 -22
  5215. package/node_modules/htmlparser2/node_modules/entities/lib/encode.d.ts.map +0 -1
  5216. package/node_modules/htmlparser2/node_modules/entities/lib/encode.js +0 -77
  5217. package/node_modules/htmlparser2/node_modules/entities/lib/encode.js.map +0 -1
  5218. package/node_modules/htmlparser2/node_modules/entities/lib/escape.d.ts +0 -43
  5219. package/node_modules/htmlparser2/node_modules/entities/lib/escape.d.ts.map +0 -1
  5220. package/node_modules/htmlparser2/node_modules/entities/lib/escape.js +0 -122
  5221. package/node_modules/htmlparser2/node_modules/entities/lib/escape.js.map +0 -1
  5222. package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.d.ts +0 -211
  5223. package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.d.ts.map +0 -1
  5224. package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.js +0 -496
  5225. package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.js.map +0 -1
  5226. package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.d.ts +0 -19
  5227. package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +0 -1
  5228. package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.js +0 -71
  5229. package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.js.map +0 -1
  5230. package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.d.ts +0 -22
  5231. package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.d.ts.map +0 -1
  5232. package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.js +0 -69
  5233. package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.js.map +0 -1
  5234. package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.d.ts +0 -43
  5235. package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.d.ts.map +0 -1
  5236. package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.js +0 -116
  5237. package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.js.map +0 -1
  5238. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +0 -3
  5239. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +0 -1
  5240. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.js +0 -7
  5241. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.js.map +0 -1
  5242. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +0 -3
  5243. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +0 -1
  5244. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.js +0 -7
  5245. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +0 -1
  5246. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.d.ts +0 -8
  5247. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +0 -1
  5248. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.js +0 -10
  5249. package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.js.map +0 -1
  5250. package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.d.ts +0 -96
  5251. package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.d.ts.map +0 -1
  5252. package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.js +0 -99
  5253. package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.js.map +0 -1
  5254. package/node_modules/htmlparser2/node_modules/entities/lib/esm/package.json +0 -1
  5255. package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.d.ts +0 -3
  5256. package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.d.ts.map +0 -1
  5257. package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.js +0 -9
  5258. package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.js.map +0 -1
  5259. package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.d.ts +0 -3
  5260. package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +0 -1
  5261. package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.js +0 -9
  5262. package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.js.map +0 -1
  5263. package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.d.ts +0 -8
  5264. package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.d.ts.map +0 -1
  5265. package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.js +0 -12
  5266. package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.js.map +0 -1
  5267. package/node_modules/htmlparser2/node_modules/entities/lib/index.d.ts +0 -96
  5268. package/node_modules/htmlparser2/node_modules/entities/lib/index.d.ts.map +0 -1
  5269. package/node_modules/htmlparser2/node_modules/entities/lib/index.js +0 -126
  5270. package/node_modules/htmlparser2/node_modules/entities/lib/index.js.map +0 -1
  5271. package/node_modules/iconv-lite/.github/dependabot.yml +0 -11
  5272. package/node_modules/iconv-lite/.idea/codeStyles/Project.xml +0 -47
  5273. package/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +0 -5
  5274. package/node_modules/iconv-lite/.idea/iconv-lite.iml +0 -12
  5275. package/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +0 -6
  5276. package/node_modules/iconv-lite/.idea/modules.xml +0 -8
  5277. package/node_modules/iconv-lite/.idea/vcs.xml +0 -6
  5278. package/node_modules/iconv-lite/Changelog.md +0 -212
  5279. package/node_modules/iconv-lite/LICENSE +0 -21
  5280. package/node_modules/iconv-lite/README.md +0 -130
  5281. package/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -597
  5282. package/node_modules/iconv-lite/encodings/dbcs-data.js +0 -188
  5283. package/node_modules/iconv-lite/encodings/index.js +0 -23
  5284. package/node_modules/iconv-lite/encodings/internal.js +0 -198
  5285. package/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -72
  5286. package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
  5287. package/node_modules/iconv-lite/encodings/sbcs-data.js +0 -179
  5288. package/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
  5289. package/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
  5290. package/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
  5291. package/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
  5292. package/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
  5293. package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
  5294. package/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -56
  5295. package/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
  5296. package/node_modules/iconv-lite/encodings/utf16.js +0 -197
  5297. package/node_modules/iconv-lite/encodings/utf32.js +0 -319
  5298. package/node_modules/iconv-lite/encodings/utf7.js +0 -290
  5299. package/node_modules/iconv-lite/lib/bom-handling.js +0 -52
  5300. package/node_modules/iconv-lite/lib/index.d.ts +0 -41
  5301. package/node_modules/iconv-lite/lib/index.js +0 -180
  5302. package/node_modules/iconv-lite/lib/streams.js +0 -109
  5303. package/node_modules/iconv-lite/package.json +0 -44
  5304. package/node_modules/leac/lib/leac.d.ts +0 -165
  5305. package/node_modules/mailparser/.github/FUNDING.yml +0 -4
  5306. package/node_modules/mailparser/.github/workflows/release.yaml +0 -36
  5307. package/node_modules/mailparser/.github/workflows/stale.yml +0 -24
  5308. package/node_modules/mailparser/.github/workflows/test.yml +0 -21
  5309. package/node_modules/mailparser/.ncurc.js +0 -6
  5310. package/node_modules/math-intrinsics/.eslintrc +0 -16
  5311. package/node_modules/math-intrinsics/.github/FUNDING.yml +0 -12
  5312. package/node_modules/math-intrinsics/CHANGELOG.md +0 -24
  5313. package/node_modules/math-intrinsics/LICENSE +0 -21
  5314. package/node_modules/math-intrinsics/README.md +0 -50
  5315. package/node_modules/math-intrinsics/abs.d.ts +0 -1
  5316. package/node_modules/math-intrinsics/abs.js +0 -4
  5317. package/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +0 -3
  5318. package/node_modules/math-intrinsics/constants/maxArrayLength.js +0 -4
  5319. package/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +0 -3
  5320. package/node_modules/math-intrinsics/constants/maxSafeInteger.js +0 -5
  5321. package/node_modules/math-intrinsics/constants/maxValue.d.ts +0 -3
  5322. package/node_modules/math-intrinsics/constants/maxValue.js +0 -5
  5323. package/node_modules/math-intrinsics/floor.d.ts +0 -1
  5324. package/node_modules/math-intrinsics/floor.js +0 -4
  5325. package/node_modules/math-intrinsics/isFinite.d.ts +0 -3
  5326. package/node_modules/math-intrinsics/isFinite.js +0 -12
  5327. package/node_modules/math-intrinsics/isInteger.d.ts +0 -3
  5328. package/node_modules/math-intrinsics/isInteger.js +0 -16
  5329. package/node_modules/math-intrinsics/isNaN.d.ts +0 -1
  5330. package/node_modules/math-intrinsics/isNaN.js +0 -6
  5331. package/node_modules/math-intrinsics/isNegativeZero.d.ts +0 -3
  5332. package/node_modules/math-intrinsics/isNegativeZero.js +0 -6
  5333. package/node_modules/math-intrinsics/max.d.ts +0 -1
  5334. package/node_modules/math-intrinsics/max.js +0 -4
  5335. package/node_modules/math-intrinsics/min.d.ts +0 -1
  5336. package/node_modules/math-intrinsics/min.js +0 -4
  5337. package/node_modules/math-intrinsics/mod.d.ts +0 -3
  5338. package/node_modules/math-intrinsics/mod.js +0 -9
  5339. package/node_modules/math-intrinsics/package.json +0 -86
  5340. package/node_modules/math-intrinsics/pow.d.ts +0 -1
  5341. package/node_modules/math-intrinsics/pow.js +0 -4
  5342. package/node_modules/math-intrinsics/round.d.ts +0 -1
  5343. package/node_modules/math-intrinsics/round.js +0 -4
  5344. package/node_modules/math-intrinsics/sign.d.ts +0 -3
  5345. package/node_modules/math-intrinsics/sign.js +0 -11
  5346. package/node_modules/math-intrinsics/test/index.js +0 -192
  5347. package/node_modules/math-intrinsics/tsconfig.json +0 -3
  5348. package/node_modules/mime-db/HISTORY.md +0 -507
  5349. package/node_modules/mime-db/LICENSE +0 -23
  5350. package/node_modules/mime-db/README.md +0 -100
  5351. package/node_modules/mime-db/db.json +0 -8519
  5352. package/node_modules/mime-db/index.js +0 -12
  5353. package/node_modules/mime-db/package.json +0 -60
  5354. package/node_modules/mime-types/HISTORY.md +0 -397
  5355. package/node_modules/mime-types/LICENSE +0 -23
  5356. package/node_modules/mime-types/README.md +0 -113
  5357. package/node_modules/mime-types/index.js +0 -188
  5358. package/node_modules/mime-types/package.json +0 -44
  5359. package/node_modules/parseley/lib/ast.d.ts +0 -148
  5360. package/node_modules/parseley/lib/parseley.d.ts +0 -39
  5361. package/node_modules/parseley/lib/parser.d.ts +0 -19
  5362. package/node_modules/path-expression-matcher/LICENSE +0 -21
  5363. package/node_modules/path-expression-matcher/README.md +0 -872
  5364. package/node_modules/path-expression-matcher/lib/pem.cjs +0 -1
  5365. package/node_modules/path-expression-matcher/lib/pem.d.cts +0 -634
  5366. package/node_modules/path-expression-matcher/lib/pem.min.js +0 -2
  5367. package/node_modules/path-expression-matcher/lib/pem.min.js.map +0 -1
  5368. package/node_modules/path-expression-matcher/package.json +0 -78
  5369. package/node_modules/path-expression-matcher/src/Expression.js +0 -232
  5370. package/node_modules/path-expression-matcher/src/ExpressionSet.js +0 -209
  5371. package/node_modules/path-expression-matcher/src/Matcher.js +0 -570
  5372. package/node_modules/path-expression-matcher/src/index.d.ts +0 -523
  5373. package/node_modules/path-expression-matcher/src/index.js +0 -29
  5374. package/node_modules/peberminta/lib/char.d.ts +0 -154
  5375. package/node_modules/peberminta/lib/core.d.ts +0 -1051
  5376. package/node_modules/peberminta/lib/util.cjs +0 -13
  5377. package/node_modules/proxy-from-env/LICENSE +0 -20
  5378. package/node_modules/proxy-from-env/README.md +0 -163
  5379. package/node_modules/proxy-from-env/index.cjs +0 -105
  5380. package/node_modules/proxy-from-env/index.js +0 -103
  5381. package/node_modules/proxy-from-env/package.json +0 -43
  5382. package/node_modules/retry/License +0 -21
  5383. package/node_modules/retry/README.md +0 -227
  5384. package/node_modules/retry/example/dns.js +0 -31
  5385. package/node_modules/retry/example/stop.js +0 -40
  5386. package/node_modules/retry/index.js +0 -1
  5387. package/node_modules/retry/lib/retry.js +0 -100
  5388. package/node_modules/retry/lib/retry_operation.js +0 -162
  5389. package/node_modules/retry/package.json +0 -36
  5390. package/node_modules/selderee/lib/Ast.d.ts +0 -100
  5391. package/node_modules/selderee/lib/DecisionTree.d.ts +0 -34
  5392. package/node_modules/selderee/lib/Picker.d.ts +0 -49
  5393. package/node_modules/selderee/lib/TreeifyBuilder.d.ts +0 -16
  5394. package/node_modules/selderee/lib/Types.d.ts +0 -20
  5395. package/node_modules/selderee/lib/selderee.d.ts +0 -5
  5396. package/node_modules/strnum/CHANGELOG.md +0 -40
  5397. package/node_modules/strnum/LICENSE +0 -21
  5398. package/node_modules/strnum/README.md +0 -104
  5399. package/node_modules/strnum/package.json +0 -31
  5400. package/node_modules/strnum/strnum.js +0 -161
  5401. package/node_modules/uuid/CHANGELOG.md +0 -274
  5402. package/node_modules/uuid/CONTRIBUTING.md +0 -18
  5403. package/node_modules/uuid/dist/bin/uuid +0 -2
  5404. package/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
  5405. package/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
  5406. package/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
  5407. package/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
  5408. package/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
  5409. package/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
  5410. package/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
  5411. package/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
  5412. package/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
  5413. package/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
  5414. package/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
  5415. package/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
  5416. package/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
  5417. package/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
  5418. package/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
  5419. package/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
  5420. package/node_modules/uuid/dist/esm-browser/index.js +0 -9
  5421. package/node_modules/uuid/dist/esm-browser/md5.js +0 -215
  5422. package/node_modules/uuid/dist/esm-browser/native.js +0 -4
  5423. package/node_modules/uuid/dist/esm-browser/nil.js +0 -1
  5424. package/node_modules/uuid/dist/esm-browser/parse.js +0 -35
  5425. package/node_modules/uuid/dist/esm-browser/regex.js +0 -1
  5426. package/node_modules/uuid/dist/esm-browser/rng.js +0 -18
  5427. package/node_modules/uuid/dist/esm-browser/sha1.js +0 -96
  5428. package/node_modules/uuid/dist/esm-browser/stringify.js +0 -33
  5429. package/node_modules/uuid/dist/esm-browser/v1.js +0 -95
  5430. package/node_modules/uuid/dist/esm-browser/v3.js +0 -4
  5431. package/node_modules/uuid/dist/esm-browser/v35.js +0 -66
  5432. package/node_modules/uuid/dist/esm-browser/v4.js +0 -29
  5433. package/node_modules/uuid/dist/esm-browser/v5.js +0 -4
  5434. package/node_modules/uuid/dist/esm-browser/validate.js +0 -7
  5435. package/node_modules/uuid/dist/esm-browser/version.js +0 -11
  5436. package/node_modules/uuid/dist/esm-node/index.js +0 -9
  5437. package/node_modules/uuid/dist/esm-node/md5.js +0 -13
  5438. package/node_modules/uuid/dist/esm-node/native.js +0 -4
  5439. package/node_modules/uuid/dist/esm-node/nil.js +0 -1
  5440. package/node_modules/uuid/dist/esm-node/parse.js +0 -35
  5441. package/node_modules/uuid/dist/esm-node/regex.js +0 -1
  5442. package/node_modules/uuid/dist/esm-node/rng.js +0 -12
  5443. package/node_modules/uuid/dist/esm-node/sha1.js +0 -13
  5444. package/node_modules/uuid/dist/esm-node/stringify.js +0 -33
  5445. package/node_modules/uuid/dist/esm-node/v1.js +0 -95
  5446. package/node_modules/uuid/dist/esm-node/v3.js +0 -4
  5447. package/node_modules/uuid/dist/esm-node/v35.js +0 -66
  5448. package/node_modules/uuid/dist/esm-node/v4.js +0 -29
  5449. package/node_modules/uuid/dist/esm-node/v5.js +0 -4
  5450. package/node_modules/uuid/dist/esm-node/validate.js +0 -7
  5451. package/node_modules/uuid/dist/esm-node/version.js +0 -11
  5452. package/node_modules/uuid/dist/md5-browser.js +0 -223
  5453. package/node_modules/uuid/dist/native-browser.js +0 -11
  5454. package/node_modules/uuid/dist/native.js +0 -15
  5455. package/node_modules/uuid/dist/rng-browser.js +0 -25
  5456. package/node_modules/uuid/dist/sha1-browser.js +0 -104
  5457. package/node_modules/uuid/wrapper.mjs +0 -10
  5458. /package/node_modules/@aws-sdk/{middleware-host-header → checksums}/LICENSE +0 -0
  5459. /package/node_modules/@aws-sdk/{crc64-nvme/dist-es → checksums/dist-es/submodules/crc/crc64-nvme}/crc64-nvme-crt-container.js +0 -0
  5460. /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
  5461. /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
  5462. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/configuration.js +0 -0
  5463. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/constants.js +0 -0
  5464. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.js +0 -0
  5465. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksum.js +0 -0
  5466. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksumAlgorithmForRequest.js +0 -0
  5467. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.js +0 -0
  5468. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksumLocationName.js +0 -0
  5469. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getFlexibleChecksumsPlugin.js +0 -0
  5470. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/hasHeader.js +0 -0
  5471. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/hasHeaderWithPrefix.js +0 -0
  5472. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/isChecksumWithPartNumber.js +0 -0
  5473. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/stringUnionSelector.js +0 -0
  5474. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/types.js +0 -0
  5475. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/configuration.d.ts +0 -0
  5476. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/constants.d.ts +0 -0
  5477. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
  5478. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
  5479. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
  5480. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksum.d.ts +0 -0
  5481. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
  5482. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
  5483. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
  5484. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
  5485. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/hasHeader.d.ts +0 -0
  5486. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
  5487. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
  5488. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/isStreaming.d.ts +0 -0
  5489. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
  5490. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
  5491. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/stringHasher.d.ts +0 -0
  5492. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/stringUnionSelector.d.ts +0 -0
  5493. /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/types.d.ts +0 -0
  5494. /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
  5495. /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
  5496. /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
  5497. /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
  5498. /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
  5499. /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
  5500. /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
  5501. /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
  5502. /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
  5503. /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
  5504. /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
  5505. /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
  5506. /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
  5507. /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
  5508. /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
  5509. /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
  5510. /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
  5511. /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
  5512. /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
  5513. /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
  5514. /package/node_modules/@aws-sdk/{middleware-logger/dist-es → core/dist-es/submodules/client/middleware-logger}/loggerMiddleware.js +0 -0
  5515. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/getRecursionDetectionPlugin.js +0 -0
  5516. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.js +0 -0
  5517. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.js +0 -0
  5518. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/configurations.js +0 -0
  5519. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/constants.js +0 -0
  5520. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/encode-features.js +0 -0
  5521. /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
  5522. /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.js +0 -0
  5523. /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.js +0 -0
  5524. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/lib/aws/parseArn.js +0 -0
  5525. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/EndpointRuleObject.js +0 -0
  5526. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/ErrorRuleObject.js +0 -0
  5527. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/RuleSetObject.js +0 -0
  5528. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/TreeRuleObject.js +0 -0
  5529. /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/shared.js +0 -0
  5530. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es → core/dist-es/submodules/client/util-user-agent-browser}/configurations.js +0 -0
  5531. /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es → core/dist-es/submodules/client/util-user-agent-browser}/createUserAgentStringParsingProvider.js +0 -0
  5532. /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
  5533. /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
  5534. /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
  5535. /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.js +0 -0
  5536. /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
  5537. /package/node_modules/@aws-sdk/{util-arn-parser/dist-es/index.js → core/dist-es/submodules/util/util-arn-parser/arn.js} +0 -0
  5538. /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
  5539. /package/node_modules/@aws-sdk/{middleware-logger/dist-types → core/dist-types/submodules/client/middleware-logger}/loggerMiddleware.d.ts +0 -0
  5540. /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
  5541. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.d.ts +0 -0
  5542. /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.d.ts +0 -0
  5543. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/check-features.d.ts +0 -0
  5544. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/configurations.d.ts +0 -0
  5545. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/constants.d.ts +0 -0
  5546. /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/encode-features.d.ts +0 -0
  5547. /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
  5548. /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
  5549. /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
  5550. /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
  5551. /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -0
  5552. /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/parseArn.d.ts +0 -0
  5553. /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/partition.d.ts +0 -0
  5554. /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/resolveDefaultAwsRegionalEndpointsConfig.d.ts +0 -0
  5555. /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
  5556. /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
  5557. /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
  5558. /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
  5559. /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
  5560. /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
  5561. /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
  5562. /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
  5563. /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
  5564. /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
  5565. /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
  5566. /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
  5567. /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
  5568. /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
  5569. /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
  5570. /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
  5571. /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
  5572. /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
  5573. /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
  5574. /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
  5575. /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
  5576. /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
  5577. /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
  5578. /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
  5579. /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
  5580. /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
  5581. /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
  5582. /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
  5583. /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
  5584. /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
  5585. /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
  5586. /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
  5587. /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
  5588. /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
  5589. /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
  5590. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostname.js +0 -0
  5591. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.js +0 -0
  5592. /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/configurations.js +0 -0
  5593. /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-location-constraint}/configuration.js +0 -0
  5594. /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
  5595. /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
  5596. /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
  5597. /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
  5598. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.js +0 -0
  5599. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.js +0 -0
  5600. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.js +0 -0
  5601. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.js +0 -0
  5602. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.js +0 -0
  5603. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.js +0 -0
  5604. /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
  5605. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.js +0 -0
  5606. /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
  5607. /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
  5608. /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
  5609. /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
  5610. /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
  5611. /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
  5612. /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
  5613. /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
  5614. /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
  5615. /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
  5616. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.d.ts +0 -0
  5617. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.d.ts +0 -0
  5618. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.d.ts +0 -0
  5619. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.d.ts +0 -0
  5620. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.d.ts +0 -0
  5621. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.d.ts +0 -0
  5622. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.d.ts +0 -0
  5623. /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
  5624. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
  5625. /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
  5626. /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
  5627. /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
  5628. /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
  5629. /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
  5630. /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
  5631. /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
  5632. /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
  5633. /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
  5634. /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
  5635. /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
  5636. /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
  5637. /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
  5638. /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
  5639. /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
  5640. /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
  5641. /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
  5642. /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
  5643. /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
  5644. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -0
  5645. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemePlugin.js +0 -0
  5646. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.js +0 -0
  5647. /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.js +0 -0
  5648. /package/node_modules/@smithy/core/dist-es/{pagination → legacy-root-exports/pagination}/createPaginator.js +0 -0
  5649. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.js +0 -0
  5650. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/memoizeIdentityProvider.js +0 -0
  5651. /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
  5652. /package/node_modules/@smithy/{hash-stream-node/dist-es → core/dist-es/submodules/checksum/hash-stream-node}/readableStreamHasher.js +0 -0
  5653. /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidFunction.js +0 -0
  5654. /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidProvider.js +0 -0
  5655. /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/client/middleware-stack}/MiddlewareStack.js +0 -0
  5656. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/client/middleware-stack}/types.js +0 -0
  5657. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/NoOpLogger.js +0 -0
  5658. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/constants.js +0 -0
  5659. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/create-aggregated-client.js +0 -0
  5660. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/default-error-handler.js +0 -0
  5661. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/defaults-mode.js +0 -0
  5662. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/emitWarningIfUnsupportedVersion.js +0 -0
  5663. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/exceptions.js +0 -0
  5664. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/extensions/retry.js +0 -0
  5665. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/get-array-if-single-item.js +0 -0
  5666. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/is-serializable-header-value.js +0 -0
  5667. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/object-mapping.js +0 -0
  5668. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/schemaLogFilter.js +0 -0
  5669. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/ser-utils.js +0 -0
  5670. /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/serde-json.js +0 -0
  5671. /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/circularReplacer.js +0 -0
  5672. /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/utils/sleep.js +0 -0
  5673. /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/utils/validate.js +0 -0
  5674. /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/waiter.js +0 -0
  5675. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.js +0 -0
  5676. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/getRealRegion.js +0 -0
  5677. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/isFipsRegion.js +0 -0
  5678. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.js +0 -0
  5679. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariant.js +0 -0
  5680. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.js +0 -0
  5681. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/PartitionHash.js +0 -0
  5682. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/RegionHash.js +0 -0
  5683. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.js +0 -0
  5684. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getRegionInfo.js +0 -0
  5685. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedHostname.js +0 -0
  5686. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedPartition.js +0 -0
  5687. /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.js +0 -0
  5688. /package/node_modules/@smithy/{util-defaults-mode-node/dist-es → core/dist-es/submodules/config/defaults-mode}/defaultsModeConfig.js +0 -0
  5689. /package/node_modules/@smithy/{node-config-provider/dist-es → core/dist-es/submodules/config/node-config-provider}/getSelectorName.js +0 -0
  5690. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/CredentialsProviderError.js +0 -0
  5691. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/ProviderError.js +0 -0
  5692. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/TokenProviderError.js +0 -0
  5693. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/chain.js +0 -0
  5694. /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/memoize.js +0 -0
  5695. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/constants.js +0 -0
  5696. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/externalDataInterceptor.js +0 -0
  5697. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getConfigData.js +0 -0
  5698. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getProfileName.js +0 -0
  5699. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getSsoSessionData.js +0 -0
  5700. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/loadSsoSessionData.js +0 -0
  5701. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/mergeConfigFiles.js +0 -0
  5702. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseIni.js +0 -0
  5703. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseKnownFiles.js +0 -0
  5704. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/readFile.js +0 -0
  5705. /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
  5706. /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/booleanSelector.js +0 -0
  5707. /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/numberSelector.js +0 -0
  5708. /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/types.js +0 -0
  5709. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.js +0 -0
  5710. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.browser.js +0 -0
  5711. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.js +0 -0
  5712. /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/service-customizations/s3.js +0 -0
  5713. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/cache/EndpointCache.js +0 -0
  5714. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/debugId.js +0 -0
  5715. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/toDebugString.js +0 -0
  5716. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/getEndpointUrlConfig.js +0 -0
  5717. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/booleanEquals.js +0 -0
  5718. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/getAttrPathList.js +0 -0
  5719. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isIpAddress.js +0 -0
  5720. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isSet.js +0 -0
  5721. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/not.js +0 -0
  5722. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/parseURL.js +0 -0
  5723. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/stringEquals.js +0 -0
  5724. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/uriEncode.js +0 -0
  5725. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointError.js +0 -0
  5726. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointFunctions.js +0 -0
  5727. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.js +0 -0
  5728. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.js +0 -0
  5729. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/RuleSetObject.js +0 -0
  5730. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/TreeRuleObject.js +0 -0
  5731. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/shared.js +0 -0
  5732. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/callFunction.js +0 -0
  5733. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.js +0 -0
  5734. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.js +0 -0
  5735. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.js +0 -0
  5736. /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointUrl.js +0 -0
  5737. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/Message.js +0 -0
  5738. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageDecoderStream.js +0 -0
  5739. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageEncoderStream.js +0 -0
  5740. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.js +0 -0
  5741. /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.js +0 -0
  5742. /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.js +0 -0
  5743. /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.js +0 -0
  5744. /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getUnmarshalledStream.js +0 -0
  5745. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Field.js +0 -0
  5746. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Fields.js +0 -0
  5747. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/extensions/httpExtensionConfiguration.js +0 -0
  5748. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpHandler.js +0 -0
  5749. /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/protocols/protocol-http}/types.js +0 -0
  5750. /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri-path.js +0 -0
  5751. /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri.js +0 -0
  5752. /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/isStreamingPayload/isStreamingPayload.browser.js +0 -0
  5753. /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/longPollMiddleware.js +0 -0
  5754. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated}/types.js +0 -0
  5755. /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/util.js +0 -0
  5756. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.js +0 -0
  5757. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/config.js +0 -0
  5758. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/constants.js +0 -0
  5759. /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/retries-2026-config.js +0 -0
  5760. /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/retry/util-retry}/types.js +0 -0
  5761. /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
  5762. /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serdePlugin.js +0 -0
  5763. /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serializerMiddleware.js +0 -0
  5764. /package/node_modules/@smithy/{util-base64/dist-es/constants.browser.js → core/dist-es/submodules/serde/util-base64/constants-for-browser.js} +0 -0
  5765. /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
  5766. /package/node_modules/@smithy/{util-hex-encoding/dist-es/index.js → core/dist-es/submodules/serde/util-hex-encoding/hex-encoding.js} +0 -0
  5767. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/ByteArrayCollector.js +0 -0
  5768. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/checksum/ChecksumStream.browser.js +0 -0
  5769. /package/node_modules/@smithy/{util-stream/dist-es/createBufferedReadableStream.js → core/dist-es/submodules/serde/util-stream/createBufferedReadable.browser.js} +0 -0
  5770. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.js +0 -0
  5771. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.js +0 -0
  5772. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/headStream.browser.js +0 -0
  5773. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/splitStream.browser.js +0 -0
  5774. /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/stream-type-check.js +0 -0
  5775. /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
  5776. /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
  5777. /package/node_modules/@smithy/core/dist-es/{getSmithyContext.js → submodules/transport/getSmithyContext.js} +0 -0
  5778. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/transport}/httpRequest.js +0 -0
  5779. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/transport}/httpResponse.js +0 -0
  5780. /package/node_modules/@smithy/{util-endpoints/dist-es/lib → core/dist-es/submodules/transport}/isValidHostLabel.js +0 -0
  5781. /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/transport}/isValidHostname.js +0 -0
  5782. /package/node_modules/@smithy/{util-middleware/dist-es → core/dist-es/submodules/transport}/normalizeProvider.js +0 -0
  5783. /package/node_modules/@smithy/{querystring-parser/dist-es/index.js → core/dist-es/submodules/transport/parseQueryString.js} +0 -0
  5784. /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.d.ts +0 -0
  5785. /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.d.ts +0 -0
  5786. /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/httpSigningMiddleware.d.ts +0 -0
  5787. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/DefaultIdentityProviderConfig.d.ts +0 -0
  5788. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.d.ts +0 -0
  5789. /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
  5790. /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
  5791. /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidFunction.d.ts +0 -0
  5792. /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidProvider.d.ts +0 -0
  5793. /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/MiddlewareStack.d.ts +0 -0
  5794. /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/types.d.ts +0 -0
  5795. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/NoOpLogger.d.ts +0 -0
  5796. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/constants.d.ts +0 -0
  5797. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/defaults-mode.d.ts +0 -0
  5798. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/extensions/retry.d.ts +0 -0
  5799. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/is-serializable-header-value.d.ts +0 -0
  5800. /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/schemaLogFilter.d.ts +0 -0
  5801. /package/node_modules/@smithy/{util-waiter/dist-types → core/dist-types/submodules/client/util-waiter}/circularReplacer.d.ts +0 -0
  5802. /package/node_modules/@smithy/{util-waiter/dist-types → core/dist-types/submodules/client/util-waiter}/utils/sleep.d.ts +0 -0
  5803. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -0
  5804. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -0
  5805. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/checkRegion.d.ts +0 -0
  5806. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/getRealRegion.d.ts +0 -0
  5807. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/isFipsRegion.d.ts +0 -0
  5808. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.d.ts +0 -0
  5809. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariant.d.ts +0 -0
  5810. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.d.ts +0 -0
  5811. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/PartitionHash.d.ts +0 -0
  5812. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/RegionHash.d.ts +0 -0
  5813. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.d.ts +0 -0
  5814. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getRegionInfo.d.ts +0 -0
  5815. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedHostname.d.ts +0 -0
  5816. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedPartition.d.ts +0 -0
  5817. /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.d.ts +0 -0
  5818. /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromEnv.d.ts +0 -0
  5819. /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromStatic.d.ts +0 -0
  5820. /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/getSelectorName.d.ts +0 -0
  5821. /package/node_modules/@smithy/{property-provider/dist-types → core/dist-types/submodules/config/property-provider}/memoize.d.ts +0 -0
  5822. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/constants.d.ts +0 -0
  5823. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/externalDataInterceptor.d.ts +0 -0
  5824. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getConfigFilepath.d.ts +0 -0
  5825. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getCredentialsFilepath.d.ts +0 -0
  5826. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getHomeDir.d.ts +0 -0
  5827. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getProfileName.d.ts +0 -0
  5828. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getSSOTokenFilepath.d.ts +0 -0
  5829. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSharedConfigFiles.d.ts +0 -0
  5830. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSsoSessionData.d.ts +0 -0
  5831. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/mergeConfigFiles.d.ts +0 -0
  5832. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/readFile.d.ts +0 -0
  5833. /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/types.d.ts +0 -0
  5834. /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/booleanSelector.d.ts +0 -0
  5835. /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/numberSelector.d.ts +0 -0
  5836. /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/types.d.ts +0 -0
  5837. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.d.ts +0 -0
  5838. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.d.ts +0 -0
  5839. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.d.ts +0 -0
  5840. /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/service-customizations/s3.d.ts +0 -0
  5841. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/debugId.d.ts +0 -0
  5842. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/toDebugString.d.ts +0 -0
  5843. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/booleanEquals.d.ts +0 -0
  5844. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttr.d.ts +0 -0
  5845. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttrPathList.d.ts +0 -0
  5846. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isIpAddress.d.ts +0 -0
  5847. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isSet.d.ts +0 -0
  5848. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/not.d.ts +0 -0
  5849. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/stringEquals.d.ts +0 -0
  5850. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/substring.d.ts +0 -0
  5851. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/uriEncode.d.ts +0 -0
  5852. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointError.d.ts +0 -0
  5853. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointFunctions.d.ts +0 -0
  5854. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.d.ts +0 -0
  5855. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.d.ts +0 -0
  5856. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/RuleSetObject.d.ts +0 -0
  5857. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/TreeRuleObject.d.ts +0 -0
  5858. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/callFunction.d.ts +0 -0
  5859. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.d.ts +0 -0
  5860. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateEndpointRule.d.ts +0 -0
  5861. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTemplate.d.ts +0 -0
  5862. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.d.ts +0 -0
  5863. /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.d.ts +0 -0
  5864. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/HeaderMarshaller.d.ts +0 -0
  5865. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Int64.d.ts +0 -0
  5866. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Message.d.ts +0 -0
  5867. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageDecoderStream.d.ts +0 -0
  5868. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageEncoderStream.d.ts +0 -0
  5869. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.d.ts +0 -0
  5870. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.d.ts +0 -0
  5871. /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/splitMessage.d.ts +0 -0
  5872. /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
  5873. /package/node_modules/@smithy/{eventstream-serde-universal/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.d.ts +0 -0
  5874. /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
  5875. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/Fields.d.ts +0 -0
  5876. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/types.d.ts +0 -0
  5877. /package/node_modules/@smithy/{querystring-builder/dist-types/index.d.ts → core/dist-types/submodules/protocols/querystring-builder/buildQueryString.d.ts} +0 -0
  5878. /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri-path.d.ts +0 -0
  5879. /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri.d.ts +0 -0
  5880. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/longPollMiddleware.d.ts +0 -0
  5881. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/omitRetryHeadersMiddleware.d.ts +0 -0
  5882. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/parseRetryAfterHeader.d.ts +0 -0
  5883. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +0 -0
  5884. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +0 -0
  5885. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/delayDecider.d.ts +0 -0
  5886. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/retryDecider.d.ts +0 -0
  5887. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/types.d.ts +0 -0
  5888. /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/util.d.ts +0 -0
  5889. /package/node_modules/@smithy/{service-error-classification/dist-types → core/dist-types/submodules/retry/service-error-classification}/constants.d.ts +0 -0
  5890. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRateLimiter.d.ts +0 -0
  5891. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.d.ts +0 -0
  5892. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/config.d.ts +0 -0
  5893. /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/types.d.ts +0 -0
  5894. /package/node_modules/@smithy/{hash-node/dist-types/index.d.ts → core/dist-types/submodules/serde/hash-node/hash-node.d.ts} +0 -0
  5895. /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
  5896. /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/deserializerMiddleware.d.ts +0 -0
  5897. /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serdePlugin.d.ts +0 -0
  5898. /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serializerMiddleware.d.ts +0 -0
  5899. /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
  5900. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.browser.d.ts +0 -0
  5901. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.d.ts +0 -0
  5902. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.browser.d.ts +0 -0
  5903. /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.d.ts +0 -0
  5904. /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
  5905. /package/node_modules/@smithy/{util-body-length-node/dist-types → core/dist-types/submodules/serde/util-body-length}/calculateBodyLength.d.ts +0 -0
  5906. /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
  5907. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/ByteArrayCollector.d.ts +0 -0
  5908. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/checksum/ChecksumStream.browser.d.ts +0 -0
  5909. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.d.ts +0 -0
  5910. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/headStream.browser.d.ts +0 -0
  5911. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/sdk-stream-mixin.browser.d.ts +0 -0
  5912. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/splitStream.browser.d.ts +0 -0
  5913. /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/stream-type-check.d.ts +0 -0
  5914. /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
  5915. /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
  5916. /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
  5917. /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
  5918. /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
  5919. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/transport}/httpResponse.d.ts +0 -0
  5920. /package/node_modules/@smithy/{util-endpoints/dist-types/lib → core/dist-types/submodules/transport}/isValidHostLabel.d.ts +0 -0
  5921. /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/transport}/isValidHostname.d.ts +0 -0
  5922. /package/node_modules/@smithy/{util-middleware/dist-types → core/dist-types/submodules/transport}/normalizeProvider.d.ts +0 -0
  5923. /package/node_modules/@smithy/{querystring-parser/dist-types/index.d.ts → core/dist-types/submodules/transport/parseQueryString.d.ts} +0 -0
  5924. /package/node_modules/@smithy/{url-parser/dist-types/index.d.ts → core/dist-types/submodules/transport/parseUrl.d.ts} +0 -0
  5925. /package/node_modules/@smithy/core/dist-types/submodules/{endpoints → transport}/toEndpointV1.d.ts +0 -0
  5926. /package/{lib/index-cli-synth.d.ts → node_modules/@smithy/types/dist-es/endpoints/EndpointParameterInstructions.js} +0 -0
  5927. /package/{lib/scripts/publish-assets.d.ts → node_modules/@smithy/types/dist-es/metrics.js} +0 -0
  5928. /package/node_modules/@smithy/{middleware-endpoint/dist-types/types.d.ts → types/dist-types/endpoints/EndpointParameterInstructions.d.ts} +0 -0
  5929. /package/node_modules/htmlparser2/{lib → dist}/esm/WritableStream.js +0 -0
  5930. /package/node_modules/peberminta/lib/{util.mjs → util/util.mjs} +0 -0
  5931. /package/node_modules/{@smithy/eventstream-codec/dist-es/vectorTypes.fixture.js → uuid/dist/types.js} +0 -0
  5932. /package/node_modules/{@smithy/util-retry/dist-es → uuid/dist-node}/types.js +0 -0
@@ -0,0 +1,527 @@
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
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.Parser = void 0;
37
+ const Tokenizer_js_1 = __importStar(require("./Tokenizer.js"));
38
+ const decode_1 = require("entities/decode");
39
+ const formTags = new Set([
40
+ "input",
41
+ "option",
42
+ "optgroup",
43
+ "select",
44
+ "button",
45
+ "datalist",
46
+ "textarea",
47
+ ]);
48
+ const pTag = new Set(["p"]);
49
+ const tableSectionTags = new Set(["thead", "tbody"]);
50
+ const ddtTags = new Set(["dd", "dt"]);
51
+ const rtpTags = new Set(["rt", "rp"]);
52
+ const openImpliesClose = new Map([
53
+ ["tr", new Set(["tr", "th", "td"])],
54
+ ["th", new Set(["th"])],
55
+ ["td", new Set(["thead", "th", "td"])],
56
+ ["body", new Set(["head", "link", "script"])],
57
+ ["li", new Set(["li"])],
58
+ ["p", pTag],
59
+ ["h1", pTag],
60
+ ["h2", pTag],
61
+ ["h3", pTag],
62
+ ["h4", pTag],
63
+ ["h5", pTag],
64
+ ["h6", pTag],
65
+ ["select", formTags],
66
+ ["input", formTags],
67
+ ["output", formTags],
68
+ ["button", formTags],
69
+ ["datalist", formTags],
70
+ ["textarea", formTags],
71
+ ["option", new Set(["option"])],
72
+ ["optgroup", new Set(["optgroup", "option"])],
73
+ ["dd", ddtTags],
74
+ ["dt", ddtTags],
75
+ ["address", pTag],
76
+ ["article", pTag],
77
+ ["aside", pTag],
78
+ ["blockquote", pTag],
79
+ ["details", pTag],
80
+ ["div", pTag],
81
+ ["dl", pTag],
82
+ ["fieldset", pTag],
83
+ ["figcaption", pTag],
84
+ ["figure", pTag],
85
+ ["footer", pTag],
86
+ ["form", pTag],
87
+ ["header", pTag],
88
+ ["hr", pTag],
89
+ ["main", pTag],
90
+ ["nav", pTag],
91
+ ["ol", pTag],
92
+ ["pre", pTag],
93
+ ["section", pTag],
94
+ ["table", pTag],
95
+ ["ul", pTag],
96
+ ["rt", rtpTags],
97
+ ["rp", rtpTags],
98
+ ["tbody", tableSectionTags],
99
+ ["tfoot", tableSectionTags],
100
+ ]);
101
+ const voidElements = new Set([
102
+ "area",
103
+ "base",
104
+ "basefont",
105
+ "br",
106
+ "col",
107
+ "command",
108
+ "embed",
109
+ "frame",
110
+ "hr",
111
+ "img",
112
+ "input",
113
+ "isindex",
114
+ "keygen",
115
+ "link",
116
+ "meta",
117
+ "param",
118
+ "source",
119
+ "track",
120
+ "wbr",
121
+ ]);
122
+ const foreignContextElements = new Set(["math", "svg"]);
123
+ const htmlIntegrationElements = new Set([
124
+ "mi",
125
+ "mo",
126
+ "mn",
127
+ "ms",
128
+ "mtext",
129
+ "annotation-xml",
130
+ "foreignobject",
131
+ "desc",
132
+ "title",
133
+ ]);
134
+ const reNameEnd = /\s|\//;
135
+ class Parser {
136
+ constructor(cbs, options = {}) {
137
+ var _a, _b, _c, _d, _e, _f;
138
+ this.options = options;
139
+ /** The start index of the last event. */
140
+ this.startIndex = 0;
141
+ /** The end index of the last event. */
142
+ this.endIndex = 0;
143
+ /**
144
+ * Store the start index of the current open tag,
145
+ * so we can update the start index for attributes.
146
+ */
147
+ this.openTagStart = 0;
148
+ this.tagname = "";
149
+ this.attribname = "";
150
+ this.attribvalue = "";
151
+ this.attribs = null;
152
+ this.stack = [];
153
+ this.buffers = [];
154
+ this.bufferOffset = 0;
155
+ /** The index of the last written buffer. Used when resuming after a `pause()`. */
156
+ this.writeIndex = 0;
157
+ /** Indicates whether the parser has finished running / `.end` has been called. */
158
+ this.ended = false;
159
+ this.cbs = cbs !== null && cbs !== void 0 ? cbs : {};
160
+ this.htmlMode = !this.options.xmlMode;
161
+ this.lowerCaseTagNames = (_a = options.lowerCaseTags) !== null && _a !== void 0 ? _a : this.htmlMode;
162
+ this.lowerCaseAttributeNames =
163
+ (_b = options.lowerCaseAttributeNames) !== null && _b !== void 0 ? _b : this.htmlMode;
164
+ this.recognizeSelfClosing =
165
+ (_c = options.recognizeSelfClosing) !== null && _c !== void 0 ? _c : !this.htmlMode;
166
+ this.tokenizer = new ((_d = options.Tokenizer) !== null && _d !== void 0 ? _d : Tokenizer_js_1.default)(this.options, this);
167
+ this.foreignContext = [!this.htmlMode];
168
+ (_f = (_e = this.cbs).onparserinit) === null || _f === void 0 ? void 0 : _f.call(_e, this);
169
+ }
170
+ // Tokenizer event handlers
171
+ /** @internal */
172
+ ontext(start, endIndex) {
173
+ var _a, _b;
174
+ const data = this.getSlice(start, endIndex);
175
+ this.endIndex = endIndex - 1;
176
+ (_b = (_a = this.cbs).ontext) === null || _b === void 0 ? void 0 : _b.call(_a, data);
177
+ this.startIndex = endIndex;
178
+ }
179
+ /** @internal */
180
+ ontextentity(cp, endIndex) {
181
+ var _a, _b;
182
+ this.endIndex = endIndex - 1;
183
+ (_b = (_a = this.cbs).ontext) === null || _b === void 0 ? void 0 : _b.call(_a, (0, decode_1.fromCodePoint)(cp));
184
+ this.startIndex = endIndex;
185
+ }
186
+ /**
187
+ * Checks if the current tag is a void element. Override this if you want
188
+ * to specify your own additional void elements.
189
+ */
190
+ isVoidElement(name) {
191
+ return this.htmlMode && voidElements.has(name);
192
+ }
193
+ /** @internal */
194
+ onopentagname(start, endIndex) {
195
+ this.endIndex = endIndex;
196
+ let name = this.getSlice(start, endIndex);
197
+ if (this.lowerCaseTagNames) {
198
+ name = name.toLowerCase();
199
+ }
200
+ this.emitOpenTag(name);
201
+ }
202
+ emitOpenTag(name) {
203
+ var _a, _b, _c, _d;
204
+ this.openTagStart = this.startIndex;
205
+ this.tagname = name;
206
+ const impliesClose = this.htmlMode && openImpliesClose.get(name);
207
+ if (impliesClose) {
208
+ while (this.stack.length > 0 && impliesClose.has(this.stack[0])) {
209
+ const element = this.stack.shift();
210
+ (_b = (_a = this.cbs).onclosetag) === null || _b === void 0 ? void 0 : _b.call(_a, element, true);
211
+ }
212
+ }
213
+ if (!this.isVoidElement(name)) {
214
+ this.stack.unshift(name);
215
+ if (this.htmlMode) {
216
+ if (foreignContextElements.has(name)) {
217
+ this.foreignContext.unshift(true);
218
+ }
219
+ else if (htmlIntegrationElements.has(name)) {
220
+ this.foreignContext.unshift(false);
221
+ }
222
+ }
223
+ }
224
+ (_d = (_c = this.cbs).onopentagname) === null || _d === void 0 ? void 0 : _d.call(_c, name);
225
+ if (this.cbs.onopentag)
226
+ this.attribs = {};
227
+ }
228
+ endOpenTag(isImplied) {
229
+ var _a, _b;
230
+ this.startIndex = this.openTagStart;
231
+ if (this.attribs) {
232
+ (_b = (_a = this.cbs).onopentag) === null || _b === void 0 ? void 0 : _b.call(_a, this.tagname, this.attribs, isImplied);
233
+ this.attribs = null;
234
+ }
235
+ if (this.cbs.onclosetag && this.isVoidElement(this.tagname)) {
236
+ this.cbs.onclosetag(this.tagname, true);
237
+ }
238
+ this.tagname = "";
239
+ }
240
+ /** @internal */
241
+ onopentagend(endIndex) {
242
+ this.endIndex = endIndex;
243
+ this.endOpenTag(false);
244
+ // Set `startIndex` for next node
245
+ this.startIndex = endIndex + 1;
246
+ }
247
+ /** @internal */
248
+ onclosetag(start, endIndex) {
249
+ var _a, _b, _c, _d, _e, _f, _g, _h;
250
+ this.endIndex = endIndex;
251
+ let name = this.getSlice(start, endIndex);
252
+ if (this.lowerCaseTagNames) {
253
+ name = name.toLowerCase();
254
+ }
255
+ if (this.htmlMode &&
256
+ (foreignContextElements.has(name) ||
257
+ htmlIntegrationElements.has(name))) {
258
+ this.foreignContext.shift();
259
+ }
260
+ if (!this.isVoidElement(name)) {
261
+ const pos = this.stack.indexOf(name);
262
+ if (pos !== -1) {
263
+ for (let index = 0; index <= pos; index++) {
264
+ const element = this.stack.shift();
265
+ // We know the stack has sufficient elements.
266
+ (_b = (_a = this.cbs).onclosetag) === null || _b === void 0 ? void 0 : _b.call(_a, element, index !== pos);
267
+ }
268
+ }
269
+ else if (this.htmlMode && name === "p") {
270
+ // Implicit open before close
271
+ this.emitOpenTag("p");
272
+ this.closeCurrentTag(true);
273
+ }
274
+ }
275
+ else if (this.htmlMode && name === "br") {
276
+ // We can't use `emitOpenTag` for implicit open, as `br` would be implicitly closed.
277
+ (_d = (_c = this.cbs).onopentagname) === null || _d === void 0 ? void 0 : _d.call(_c, "br");
278
+ (_f = (_e = this.cbs).onopentag) === null || _f === void 0 ? void 0 : _f.call(_e, "br", {}, true);
279
+ (_h = (_g = this.cbs).onclosetag) === null || _h === void 0 ? void 0 : _h.call(_g, "br", false);
280
+ }
281
+ // Set `startIndex` for next node
282
+ this.startIndex = endIndex + 1;
283
+ }
284
+ /** @internal */
285
+ onselfclosingtag(endIndex) {
286
+ this.endIndex = endIndex;
287
+ if (this.recognizeSelfClosing || this.foreignContext[0]) {
288
+ this.closeCurrentTag(false);
289
+ // Set `startIndex` for next node
290
+ this.startIndex = endIndex + 1;
291
+ }
292
+ else {
293
+ // Ignore the fact that the tag is self-closing.
294
+ this.onopentagend(endIndex);
295
+ }
296
+ }
297
+ closeCurrentTag(isOpenImplied) {
298
+ var _a, _b;
299
+ const name = this.tagname;
300
+ this.endOpenTag(isOpenImplied);
301
+ // Self-closing tags will be on the top of the stack
302
+ if (this.stack[0] === name) {
303
+ // If the opening tag isn't implied, the closing tag has to be implied.
304
+ (_b = (_a = this.cbs).onclosetag) === null || _b === void 0 ? void 0 : _b.call(_a, name, !isOpenImplied);
305
+ this.stack.shift();
306
+ }
307
+ }
308
+ /** @internal */
309
+ onattribname(start, endIndex) {
310
+ this.startIndex = start;
311
+ const name = this.getSlice(start, endIndex);
312
+ this.attribname = this.lowerCaseAttributeNames
313
+ ? name.toLowerCase()
314
+ : name;
315
+ }
316
+ /** @internal */
317
+ onattribdata(start, endIndex) {
318
+ this.attribvalue += this.getSlice(start, endIndex);
319
+ }
320
+ /** @internal */
321
+ onattribentity(cp) {
322
+ this.attribvalue += (0, decode_1.fromCodePoint)(cp);
323
+ }
324
+ /** @internal */
325
+ onattribend(quote, endIndex) {
326
+ var _a, _b;
327
+ this.endIndex = endIndex;
328
+ (_b = (_a = this.cbs).onattribute) === null || _b === void 0 ? void 0 : _b.call(_a, this.attribname, this.attribvalue, quote === Tokenizer_js_1.QuoteType.Double
329
+ ? '"'
330
+ : quote === Tokenizer_js_1.QuoteType.Single
331
+ ? "'"
332
+ : quote === Tokenizer_js_1.QuoteType.NoValue
333
+ ? undefined
334
+ : null);
335
+ if (this.attribs &&
336
+ !Object.prototype.hasOwnProperty.call(this.attribs, this.attribname)) {
337
+ this.attribs[this.attribname] = this.attribvalue;
338
+ }
339
+ this.attribvalue = "";
340
+ }
341
+ getInstructionName(value) {
342
+ const index = value.search(reNameEnd);
343
+ let name = index < 0 ? value : value.substr(0, index);
344
+ if (this.lowerCaseTagNames) {
345
+ name = name.toLowerCase();
346
+ }
347
+ return name;
348
+ }
349
+ /** @internal */
350
+ ondeclaration(start, endIndex) {
351
+ this.endIndex = endIndex;
352
+ const value = this.getSlice(start, endIndex);
353
+ if (this.cbs.onprocessinginstruction) {
354
+ const name = this.getInstructionName(value);
355
+ this.cbs.onprocessinginstruction(`!${name}`, `!${value}`);
356
+ }
357
+ // Set `startIndex` for next node
358
+ this.startIndex = endIndex + 1;
359
+ }
360
+ /** @internal */
361
+ onprocessinginstruction(start, endIndex) {
362
+ this.endIndex = endIndex;
363
+ const value = this.getSlice(start, endIndex);
364
+ if (this.cbs.onprocessinginstruction) {
365
+ const name = this.getInstructionName(value);
366
+ this.cbs.onprocessinginstruction(`?${name}`, `?${value}`);
367
+ }
368
+ // Set `startIndex` for next node
369
+ this.startIndex = endIndex + 1;
370
+ }
371
+ /** @internal */
372
+ oncomment(start, endIndex, offset) {
373
+ var _a, _b, _c, _d;
374
+ this.endIndex = endIndex;
375
+ (_b = (_a = this.cbs).oncomment) === null || _b === void 0 ? void 0 : _b.call(_a, this.getSlice(start, endIndex - offset));
376
+ (_d = (_c = this.cbs).oncommentend) === null || _d === void 0 ? void 0 : _d.call(_c);
377
+ // Set `startIndex` for next node
378
+ this.startIndex = endIndex + 1;
379
+ }
380
+ /** @internal */
381
+ oncdata(start, endIndex, offset) {
382
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
383
+ this.endIndex = endIndex;
384
+ const value = this.getSlice(start, endIndex - offset);
385
+ if (!this.htmlMode || this.options.recognizeCDATA) {
386
+ (_b = (_a = this.cbs).oncdatastart) === null || _b === void 0 ? void 0 : _b.call(_a);
387
+ (_d = (_c = this.cbs).ontext) === null || _d === void 0 ? void 0 : _d.call(_c, value);
388
+ (_f = (_e = this.cbs).oncdataend) === null || _f === void 0 ? void 0 : _f.call(_e);
389
+ }
390
+ else {
391
+ (_h = (_g = this.cbs).oncomment) === null || _h === void 0 ? void 0 : _h.call(_g, `[CDATA[${value}]]`);
392
+ (_k = (_j = this.cbs).oncommentend) === null || _k === void 0 ? void 0 : _k.call(_j);
393
+ }
394
+ // Set `startIndex` for next node
395
+ this.startIndex = endIndex + 1;
396
+ }
397
+ /** @internal */
398
+ onend() {
399
+ var _a, _b;
400
+ if (this.cbs.onclosetag) {
401
+ // Set the end index for all remaining tags
402
+ this.endIndex = this.startIndex;
403
+ for (let index = 0; index < this.stack.length; index++) {
404
+ this.cbs.onclosetag(this.stack[index], true);
405
+ }
406
+ }
407
+ (_b = (_a = this.cbs).onend) === null || _b === void 0 ? void 0 : _b.call(_a);
408
+ }
409
+ /**
410
+ * Resets the parser to a blank state, ready to parse a new HTML document
411
+ */
412
+ reset() {
413
+ var _a, _b, _c, _d;
414
+ (_b = (_a = this.cbs).onreset) === null || _b === void 0 ? void 0 : _b.call(_a);
415
+ this.tokenizer.reset();
416
+ this.tagname = "";
417
+ this.attribname = "";
418
+ this.attribs = null;
419
+ this.stack.length = 0;
420
+ this.startIndex = 0;
421
+ this.endIndex = 0;
422
+ (_d = (_c = this.cbs).onparserinit) === null || _d === void 0 ? void 0 : _d.call(_c, this);
423
+ this.buffers.length = 0;
424
+ this.foreignContext.length = 0;
425
+ this.foreignContext.unshift(!this.htmlMode);
426
+ this.bufferOffset = 0;
427
+ this.writeIndex = 0;
428
+ this.ended = false;
429
+ }
430
+ /**
431
+ * Resets the parser, then parses a complete document and
432
+ * pushes it to the handler.
433
+ *
434
+ * @param data Document to parse.
435
+ */
436
+ parseComplete(data) {
437
+ this.reset();
438
+ this.end(data);
439
+ }
440
+ getSlice(start, end) {
441
+ while (start - this.bufferOffset >= this.buffers[0].length) {
442
+ this.shiftBuffer();
443
+ }
444
+ let slice = this.buffers[0].slice(start - this.bufferOffset, end - this.bufferOffset);
445
+ while (end - this.bufferOffset > this.buffers[0].length) {
446
+ this.shiftBuffer();
447
+ slice += this.buffers[0].slice(0, end - this.bufferOffset);
448
+ }
449
+ return slice;
450
+ }
451
+ shiftBuffer() {
452
+ this.bufferOffset += this.buffers[0].length;
453
+ this.writeIndex--;
454
+ this.buffers.shift();
455
+ }
456
+ /**
457
+ * Parses a chunk of data and calls the corresponding callbacks.
458
+ *
459
+ * @param chunk Chunk to parse.
460
+ */
461
+ write(chunk) {
462
+ var _a, _b;
463
+ if (this.ended) {
464
+ (_b = (_a = this.cbs).onerror) === null || _b === void 0 ? void 0 : _b.call(_a, new Error(".write() after done!"));
465
+ return;
466
+ }
467
+ this.buffers.push(chunk);
468
+ if (this.tokenizer.running) {
469
+ this.tokenizer.write(chunk);
470
+ this.writeIndex++;
471
+ }
472
+ }
473
+ /**
474
+ * Parses the end of the buffer and clears the stack, calls onend.
475
+ *
476
+ * @param chunk Optional final chunk to parse.
477
+ */
478
+ end(chunk) {
479
+ var _a, _b;
480
+ if (this.ended) {
481
+ (_b = (_a = this.cbs).onerror) === null || _b === void 0 ? void 0 : _b.call(_a, new Error(".end() after done!"));
482
+ return;
483
+ }
484
+ if (chunk)
485
+ this.write(chunk);
486
+ this.ended = true;
487
+ this.tokenizer.end();
488
+ }
489
+ /**
490
+ * Pauses parsing. The parser won't emit events until `resume` is called.
491
+ */
492
+ pause() {
493
+ this.tokenizer.pause();
494
+ }
495
+ /**
496
+ * Resumes parsing after `pause` was called.
497
+ */
498
+ resume() {
499
+ this.tokenizer.resume();
500
+ while (this.tokenizer.running &&
501
+ this.writeIndex < this.buffers.length) {
502
+ this.tokenizer.write(this.buffers[this.writeIndex++]);
503
+ }
504
+ if (this.ended)
505
+ this.tokenizer.end();
506
+ }
507
+ /**
508
+ * Alias of `write`, for backwards compatibility.
509
+ *
510
+ * @param chunk Chunk to parse.
511
+ * @deprecated
512
+ */
513
+ parseChunk(chunk) {
514
+ this.write(chunk);
515
+ }
516
+ /**
517
+ * Alias of `end`, for backwards compatibility.
518
+ *
519
+ * @param chunk Optional final chunk to parse.
520
+ * @deprecated
521
+ */
522
+ done(chunk) {
523
+ this.end(chunk);
524
+ }
525
+ }
526
+ exports.Parser = Parser;
527
+ //# sourceMappingURL=Parser.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Parser.js","sourceRoot":"","sources":["../../src/Parser.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+DAAsE;AACtE,4CAAgD;AAEhD,MAAM,QAAQ,GAAG,IAAI,GAAG,CAAC;IACrB,OAAO;IACP,QAAQ;IACR,UAAU;IACV,QAAQ;IACR,QAAQ;IACR,UAAU;IACV,UAAU;CACb,CAAC,CAAC;AACH,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;AAC5B,MAAM,gBAAgB,GAAG,IAAI,GAAG,CAAC,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC;AACrD,MAAM,OAAO,GAAG,IAAI,GAAG,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC;AACtC,MAAM,OAAO,GAAG,IAAI,GAAG,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC;AAEtC,MAAM,gBAAgB,GAAG,IAAI,GAAG,CAAsB;IAClD,CAAC,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC;IACnC,CAAC,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;IACvB,CAAC,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC;IACtC,CAAC,MAAM,EAAE,IAAI,GAAG,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC;IAC7C,CAAC,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;IACvB,CAAC,GAAG,EAAE,IAAI,CAAC;IACX,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,QAAQ,EAAE,QAAQ,CAAC;IACpB,CAAC,OAAO,EAAE,QAAQ,CAAC;IACnB,CAAC,QAAQ,EAAE,QAAQ,CAAC;IACpB,CAAC,QAAQ,EAAE,QAAQ,CAAC;IACpB,CAAC,UAAU,EAAE,QAAQ,CAAC;IACtB,CAAC,UAAU,EAAE,QAAQ,CAAC;IACtB,CAAC,QAAQ,EAAE,IAAI,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC;IAC/B,CAAC,UAAU,EAAE,IAAI,GAAG,CAAC,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,CAAC;IAC7C,CAAC,IAAI,EAAE,OAAO,CAAC;IACf,CAAC,IAAI,EAAE,OAAO,CAAC;IACf,CAAC,SAAS,EAAE,IAAI,CAAC;IACjB,CAAC,SAAS,EAAE,IAAI,CAAC;IACjB,CAAC,OAAO,EAAE,IAAI,CAAC;IACf,CAAC,YAAY,EAAE,IAAI,CAAC;IACpB,CAAC,SAAS,EAAE,IAAI,CAAC;IACjB,CAAC,KAAK,EAAE,IAAI,CAAC;IACb,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,UAAU,EAAE,IAAI,CAAC;IAClB,CAAC,YAAY,EAAE,IAAI,CAAC;IACpB,CAAC,QAAQ,EAAE,IAAI,CAAC;IAChB,CAAC,QAAQ,EAAE,IAAI,CAAC;IAChB,CAAC,MAAM,EAAE,IAAI,CAAC;IACd,CAAC,QAAQ,EAAE,IAAI,CAAC;IAChB,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,MAAM,EAAE,IAAI,CAAC;IACd,CAAC,KAAK,EAAE,IAAI,CAAC;IACb,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,KAAK,EAAE,IAAI,CAAC;IACb,CAAC,SAAS,EAAE,IAAI,CAAC;IACjB,CAAC,OAAO,EAAE,IAAI,CAAC;IACf,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,IAAI,EAAE,OAAO,CAAC;IACf,CAAC,IAAI,EAAE,OAAO,CAAC;IACf,CAAC,OAAO,EAAE,gBAAgB,CAAC;IAC3B,CAAC,OAAO,EAAE,gBAAgB,CAAC;CAC9B,CAAC,CAAC;AAEH,MAAM,YAAY,GAAG,IAAI,GAAG,CAAC;IACzB,MAAM;IACN,MAAM;IACN,UAAU;IACV,IAAI;IACJ,KAAK;IACL,SAAS;IACT,OAAO;IACP,OAAO;IACP,IAAI;IACJ,KAAK;IACL,OAAO;IACP,SAAS;IACT,QAAQ;IACR,MAAM;IACN,MAAM;IACN,OAAO;IACP,QAAQ;IACR,OAAO;IACP,KAAK;CACR,CAAC,CAAC;AAEH,MAAM,sBAAsB,GAAG,IAAI,GAAG,CAAC,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,CAAC;AAExD,MAAM,uBAAuB,GAAG,IAAI,GAAG,CAAC;IACpC,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,OAAO;IACP,gBAAgB;IAChB,eAAe;IACf,MAAM;IACN,OAAO;CACV,CAAC,CAAC;AA+FH,MAAM,SAAS,GAAG,OAAO,CAAC;AAE1B,MAAa,MAAM;IAiCf,YACI,GAA6B,EACZ,UAAyB,EAAE;;QAA3B,YAAO,GAAP,OAAO,CAAoB;QAlChD,yCAAyC;QAClC,eAAU,GAAG,CAAC,CAAC;QACtB,uCAAuC;QAChC,aAAQ,GAAG,CAAC,CAAC;QACpB;;;WAGG;QACK,iBAAY,GAAG,CAAC,CAAC;QAEjB,YAAO,GAAG,EAAE,CAAC;QACb,eAAU,GAAG,EAAE,CAAC;QAChB,gBAAW,GAAG,EAAE,CAAC;QACjB,YAAO,GAAqC,IAAI,CAAC;QACxC,UAAK,GAAa,EAAE,CAAC;QAWrB,YAAO,GAAa,EAAE,CAAC;QAChC,iBAAY,GAAG,CAAC,CAAC;QACzB,kFAAkF;QAC1E,eAAU,GAAG,CAAC,CAAC;QACvB,kFAAkF;QAC1E,UAAK,GAAG,KAAK,CAAC;QAMlB,IAAI,CAAC,GAAG,GAAG,GAAG,aAAH,GAAG,cAAH,GAAG,GAAI,EAAE,CAAC;QACrB,IAAI,CAAC,QAAQ,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;QACtC,IAAI,CAAC,iBAAiB,GAAG,MAAA,OAAO,CAAC,aAAa,mCAAI,IAAI,CAAC,QAAQ,CAAC;QAChE,IAAI,CAAC,uBAAuB;YACxB,MAAA,OAAO,CAAC,uBAAuB,mCAAI,IAAI,CAAC,QAAQ,CAAC;QACrD,IAAI,CAAC,oBAAoB;YACrB,MAAA,OAAO,CAAC,oBAAoB,mCAAI,CAAC,IAAI,CAAC,QAAQ,CAAC;QACnD,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,MAAA,OAAO,CAAC,SAAS,mCAAI,sBAAS,CAAC,CACjD,IAAI,CAAC,OAAO,EACZ,IAAI,CACP,CAAC;QACF,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QACvC,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,YAAY,mDAAG,IAAI,CAAC,CAAC;IAClC,CAAC;IAED,2BAA2B;IAE3B,gBAAgB;IAChB,MAAM,CAAC,KAAa,EAAE,QAAgB;;QAClC,MAAM,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;QAC5C,IAAI,CAAC,QAAQ,GAAG,QAAQ,GAAG,CAAC,CAAC;QAC7B,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,MAAM,mDAAG,IAAI,CAAC,CAAC;QACxB,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC;IAC/B,CAAC;IAED,gBAAgB;IAChB,YAAY,CAAC,EAAU,EAAE,QAAgB;;QACrC,IAAI,CAAC,QAAQ,GAAG,QAAQ,GAAG,CAAC,CAAC;QAC7B,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,MAAM,mDAAG,IAAA,sBAAa,EAAC,EAAE,CAAC,CAAC,CAAC;QACrC,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC;IAC/B,CAAC;IAED;;;OAGG;IACO,aAAa,CAAC,IAAY;QAChC,OAAO,IAAI,CAAC,QAAQ,IAAI,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;IACnD,CAAC;IAED,gBAAgB;IAChB,aAAa,CAAC,KAAa,EAAE,QAAgB;QACzC,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QAEzB,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;QAE1C,IAAI,IAAI,CAAC,iBAAiB,EAAE,CAAC;YACzB,IAAI,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC;QAC9B,CAAC;QAED,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;IAC3B,CAAC;IAEO,WAAW,CAAC,IAAY;;QAC5B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC;QACpC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QAEpB,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,IAAI,gBAAgB,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;QAEjE,IAAI,YAAY,EAAE,CAAC;YACf,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,IAAI,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;gBAC9D,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,EAAG,CAAC;gBACpC,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,UAAU,mDAAG,OAAO,EAAE,IAAI,CAAC,CAAC;YACzC,CAAC;QACL,CAAC;QACD,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,EAAE,CAAC;YAC5B,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;YAEzB,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;gBAChB,IAAI,sBAAsB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;oBACnC,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;gBACtC,CAAC;qBAAM,IAAI,uBAAuB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;oBAC3C,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;gBACvC,CAAC;YACL,CAAC;QACL,CAAC;QACD,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,aAAa,mDAAG,IAAI,CAAC,CAAC;QAC/B,IAAI,IAAI,CAAC,GAAG,CAAC,SAAS;YAAE,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;IAC9C,CAAC;IAEO,UAAU,CAAC,SAAkB;;QACjC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,YAAY,CAAC;QAEpC,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC;YACf,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,SAAS,mDAAG,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;YAC5D,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACxB,CAAC;QACD,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU,IAAI,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;YAC1D,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAC5C,CAAC;QAED,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;IACtB,CAAC;IAED,gBAAgB;IAChB,YAAY,CAAC,QAAgB;QACzB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;QAEvB,iCAAiC;QACjC,IAAI,CAAC,UAAU,GAAG,QAAQ,GAAG,CAAC,CAAC;IACnC,CAAC;IAED,gBAAgB;IAChB,UAAU,CAAC,KAAa,EAAE,QAAgB;;QACtC,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QAEzB,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;QAE1C,IAAI,IAAI,CAAC,iBAAiB,EAAE,CAAC;YACzB,IAAI,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC;QAC9B,CAAC;QAED,IACI,IAAI,CAAC,QAAQ;YACb,CAAC,sBAAsB,CAAC,GAAG,CAAC,IAAI,CAAC;gBAC7B,uBAAuB,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EACxC,CAAC;YACC,IAAI,CAAC,cAAc,CAAC,KAAK,EAAE,CAAC;QAChC,CAAC;QAED,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,EAAE,CAAC;YAC5B,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,GAAG,KAAK,CAAC,CAAC,EAAE,CAAC;gBACb,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,IAAI,GAAG,EAAE,KAAK,EAAE,EAAE,CAAC;oBACxC,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,EAAG,CAAC;oBACpC,6CAA6C;oBAC7C,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,UAAU,mDAAG,OAAO,EAAE,KAAK,KAAK,GAAG,CAAC,CAAC;gBAClD,CAAC;YACL,CAAC;iBAAM,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,KAAK,GAAG,EAAE,CAAC;gBACvC,6BAA6B;gBAC7B,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;gBACtB,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;YAC/B,CAAC;QACL,CAAC;aAAM,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,KAAK,IAAI,EAAE,CAAC;YACxC,oFAAoF;YACpF,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,aAAa,mDAAG,IAAI,CAAC,CAAC;YAC/B,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,SAAS,mDAAG,IAAI,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC;YACrC,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,UAAU,mDAAG,IAAI,EAAE,KAAK,CAAC,CAAC;QACvC,CAAC;QAED,iCAAiC;QACjC,IAAI,CAAC,UAAU,GAAG,QAAQ,GAAG,CAAC,CAAC;IACnC,CAAC;IAED,gBAAgB;IAChB,gBAAgB,CAAC,QAAgB;QAC7B,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,IAAI,CAAC,oBAAoB,IAAI,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,CAAC;YACtD,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC;YAE5B,iCAAiC;YACjC,IAAI,CAAC,UAAU,GAAG,QAAQ,GAAG,CAAC,CAAC;QACnC,CAAC;aAAM,CAAC;YACJ,gDAAgD;YAChD,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;QAChC,CAAC;IACL,CAAC;IAEO,eAAe,CAAC,aAAsB;;QAC1C,MAAM,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC;QAC1B,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;QAE/B,oDAAoD;QACpD,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC;YACzB,uEAAuE;YACvE,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,UAAU,mDAAG,IAAI,EAAE,CAAC,aAAa,CAAC,CAAC;YAC5C,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;QACvB,CAAC;IACL,CAAC;IAED,gBAAgB;IAChB,YAAY,CAAC,KAAa,EAAE,QAAgB;QACxC,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;QACxB,MAAM,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;QAE5C,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,uBAAuB;YAC1C,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE;YACpB,CAAC,CAAC,IAAI,CAAC;IACf,CAAC;IAED,gBAAgB;IAChB,YAAY,CAAC,KAAa,EAAE,QAAgB;QACxC,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;IACvD,CAAC;IAED,gBAAgB;IAChB,cAAc,CAAC,EAAU;QACrB,IAAI,CAAC,WAAW,IAAI,IAAA,sBAAa,EAAC,EAAE,CAAC,CAAC;IAC1C,CAAC;IAED,gBAAgB;IAChB,WAAW,CAAC,KAAgB,EAAE,QAAgB;;QAC1C,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QAEzB,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,WAAW,mDAChB,IAAI,CAAC,UAAU,EACf,IAAI,CAAC,WAAW,EAChB,KAAK,KAAK,wBAAS,CAAC,MAAM;YACtB,CAAC,CAAC,GAAG;YACL,CAAC,CAAC,KAAK,KAAK,wBAAS,CAAC,MAAM;gBAC1B,CAAC,CAAC,GAAG;gBACL,CAAC,CAAC,KAAK,KAAK,wBAAS,CAAC,OAAO;oBAC3B,CAAC,CAAC,SAAS;oBACX,CAAC,CAAC,IAAI,CACjB,CAAC;QAEF,IACI,IAAI,CAAC,OAAO;YACZ,CAAC,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,UAAU,CAAC,EACtE,CAAC;YACC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC;QACrD,CAAC;QACD,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;IAC1B,CAAC;IAEO,kBAAkB,CAAC,KAAa;QACpC,MAAM,KAAK,GAAG,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;QACtC,IAAI,IAAI,GAAG,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;QAEtD,IAAI,IAAI,CAAC,iBAAiB,EAAE,CAAC;YACzB,IAAI,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC;QAC9B,CAAC;QAED,OAAO,IAAI,CAAC;IAChB,CAAC;IAED,gBAAgB;IAChB,aAAa,CAAC,KAAa,EAAE,QAAgB;QACzC,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;QAE7C,IAAI,IAAI,CAAC,GAAG,CAAC,uBAAuB,EAAE,CAAC;YACnC,MAAM,IAAI,GAAG,IAAI,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;YAC5C,IAAI,CAAC,GAAG,CAAC,uBAAuB,CAAC,IAAI,IAAI,EAAE,EAAE,IAAI,KAAK,EAAE,CAAC,CAAC;QAC9D,CAAC;QAED,iCAAiC;QACjC,IAAI,CAAC,UAAU,GAAG,QAAQ,GAAG,CAAC,CAAC;IACnC,CAAC;IAED,gBAAgB;IAChB,uBAAuB,CAAC,KAAa,EAAE,QAAgB;QACnD,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;QAE7C,IAAI,IAAI,CAAC,GAAG,CAAC,uBAAuB,EAAE,CAAC;YACnC,MAAM,IAAI,GAAG,IAAI,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;YAC5C,IAAI,CAAC,GAAG,CAAC,uBAAuB,CAAC,IAAI,IAAI,EAAE,EAAE,IAAI,KAAK,EAAE,CAAC,CAAC;QAC9D,CAAC;QAED,iCAAiC;QACjC,IAAI,CAAC,UAAU,GAAG,QAAQ,GAAG,CAAC,CAAC;IACnC,CAAC;IAED,gBAAgB;IAChB,SAAS,CAAC,KAAa,EAAE,QAAgB,EAAE,MAAc;;QACrD,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QAEzB,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,SAAS,mDAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,QAAQ,GAAG,MAAM,CAAC,CAAC,CAAC;QAC9D,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,YAAY,kDAAI,CAAC;QAE1B,iCAAiC;QACjC,IAAI,CAAC,UAAU,GAAG,QAAQ,GAAG,CAAC,CAAC;IACnC,CAAC;IAED,gBAAgB;IAChB,OAAO,CAAC,KAAa,EAAE,QAAgB,EAAE,MAAc;;QACnD,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,QAAQ,GAAG,MAAM,CAAC,CAAC;QAEtD,IAAI,CAAC,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,CAAC;YAChD,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,YAAY,kDAAI,CAAC;YAC1B,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,MAAM,mDAAG,KAAK,CAAC,CAAC;YACzB,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,UAAU,kDAAI,CAAC;QAC5B,CAAC;aAAM,CAAC;YACJ,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,SAAS,mDAAG,UAAU,KAAK,IAAI,CAAC,CAAC;YAC1C,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,YAAY,kDAAI,CAAC;QAC9B,CAAC;QAED,iCAAiC;QACjC,IAAI,CAAC,UAAU,GAAG,QAAQ,GAAG,CAAC,CAAC;IACnC,CAAC;IAED,gBAAgB;IAChB,KAAK;;QACD,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU,EAAE,CAAC;YACtB,2CAA2C;YAC3C,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC;YAChC,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE,CAAC;gBACrD,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,IAAI,CAAC,CAAC;YACjD,CAAC;QACL,CAAC;QACD,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,KAAK,kDAAI,CAAC;IACvB,CAAC;IAED;;OAEG;IACI,KAAK;;QACR,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,OAAO,kDAAI,CAAC;QACrB,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;QAClB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;QACrB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;QACpB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;QAClB,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,YAAY,mDAAG,IAAI,CAAC,CAAC;QAC9B,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,cAAc,CAAC,MAAM,GAAG,CAAC,CAAC;QAC/B,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC5C,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;QACpB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACvB,CAAC;IAED;;;;;OAKG;IACI,aAAa,CAAC,IAAY;QAC7B,IAAI,CAAC,KAAK,EAAE,CAAC;QACb,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;IACnB,CAAC;IAEO,QAAQ,CAAC,KAAa,EAAE,GAAW;QACvC,OAAO,KAAK,GAAG,IAAI,CAAC,YAAY,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;YACzD,IAAI,CAAC,WAAW,EAAE,CAAC;QACvB,CAAC;QAED,IAAI,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAC7B,KAAK,GAAG,IAAI,CAAC,YAAY,EACzB,GAAG,GAAG,IAAI,CAAC,YAAY,CAC1B,CAAC;QAEF,OAAO,GAAG,GAAG,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;YACtD,IAAI,CAAC,WAAW,EAAE,CAAC;YACnB,KAAK,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC;QAC/D,CAAC;QAED,OAAO,KAAK,CAAC;IACjB,CAAC;IAEO,WAAW;QACf,IAAI,CAAC,YAAY,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;QAC5C,IAAI,CAAC,UAAU,EAAE,CAAC;QAClB,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;IACzB,CAAC;IAED;;;;OAIG;IACI,KAAK,CAAC,KAAa;;QACtB,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;YACb,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,OAAO,mDAAG,IAAI,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC;YACtD,OAAO;QACX,CAAC;QAED,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzB,IAAI,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,CAAC;YACzB,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YAC5B,IAAI,CAAC,UAAU,EAAE,CAAC;QACtB,CAAC;IACL,CAAC;IAED;;;;OAIG;IACI,GAAG,CAAC,KAAc;;QACrB,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;YACb,MAAA,MAAA,IAAI,CAAC,GAAG,EAAC,OAAO,mDAAG,IAAI,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC;YACpD,OAAO;QACX,CAAC;QAED,IAAI,KAAK;YAAE,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QAC7B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,IAAI,CAAC,SAAS,CAAC,GAAG,EAAE,CAAC;IACzB,CAAC;IAED;;OAEG;IACI,KAAK;QACR,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,CAAC;IAC3B,CAAC;IAED;;OAEG;IACI,MAAM;QACT,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC;QAExB,OACI,IAAI,CAAC,SAAS,CAAC,OAAO;YACtB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EACvC,CAAC;YACC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC;QAC1D,CAAC;QAED,IAAI,IAAI,CAAC,KAAK;YAAE,IAAI,CAAC,SAAS,CAAC,GAAG,EAAE,CAAC;IACzC,CAAC;IAED;;;;;OAKG;IACI,UAAU,CAAC,KAAa;QAC3B,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IACtB,CAAC;IACD;;;;;OAKG;IACI,IAAI,CAAC,KAAc;QACtB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IACpB,CAAC;CACJ;AAhdD,wBAgdC"}
@@ -0,0 +1,126 @@
1
+ export declare enum QuoteType {
2
+ NoValue = 0,
3
+ Unquoted = 1,
4
+ Single = 2,
5
+ Double = 3
6
+ }
7
+ export interface Callbacks {
8
+ onattribdata(start: number, endIndex: number): void;
9
+ onattribentity(codepoint: number): void;
10
+ onattribend(quote: QuoteType, endIndex: number): void;
11
+ onattribname(start: number, endIndex: number): void;
12
+ oncdata(start: number, endIndex: number, endOffset: number): void;
13
+ onclosetag(start: number, endIndex: number): void;
14
+ oncomment(start: number, endIndex: number, endOffset: number): void;
15
+ ondeclaration(start: number, endIndex: number): void;
16
+ onend(): void;
17
+ onopentagend(endIndex: number): void;
18
+ onopentagname(start: number, endIndex: number): void;
19
+ onprocessinginstruction(start: number, endIndex: number): void;
20
+ onselfclosingtag(endIndex: number): void;
21
+ ontext(start: number, endIndex: number): void;
22
+ ontextentity(codepoint: number, endIndex: number): void;
23
+ }
24
+ export default class Tokenizer {
25
+ private readonly cbs;
26
+ /** The current state the tokenizer is in. */
27
+ private state;
28
+ /** The read buffer. */
29
+ private buffer;
30
+ /** The beginning of the section that is currently being read. */
31
+ private sectionStart;
32
+ /** The index within the buffer that we are currently looking at. */
33
+ private index;
34
+ /** The start of the last entity. */
35
+ private entityStart;
36
+ /** Some behavior, eg. when decoding entities, is done while we are in another state. This keeps track of the other state type. */
37
+ private baseState;
38
+ /** For special parsing behavior inside of script and style tags. */
39
+ private isSpecial;
40
+ /** Indicates whether the tokenizer has been paused. */
41
+ running: boolean;
42
+ /** The offset of the current buffer. */
43
+ private offset;
44
+ private readonly xmlMode;
45
+ private readonly decodeEntities;
46
+ private readonly entityDecoder;
47
+ constructor({ xmlMode, decodeEntities, }: {
48
+ xmlMode?: boolean;
49
+ decodeEntities?: boolean;
50
+ }, cbs: Callbacks);
51
+ reset(): void;
52
+ write(chunk: string): void;
53
+ end(): void;
54
+ pause(): void;
55
+ resume(): void;
56
+ private stateText;
57
+ private currentSequence;
58
+ private sequenceIndex;
59
+ private stateSpecialStartSequence;
60
+ /** Look for an end tag. For <title> tags, also decode entities. */
61
+ private stateInSpecialTag;
62
+ private stateCDATASequence;
63
+ /**
64
+ * When we wait for one specific character, we can speed things up
65
+ * by skipping through the buffer until we find it.
66
+ *
67
+ * @returns Whether the character was found.
68
+ */
69
+ private fastForwardTo;
70
+ /**
71
+ * Comments and CDATA end with `-->` and `]]>`.
72
+ *
73
+ * Their common qualities are:
74
+ * - Their end sequences have a distinct character they start with.
75
+ * - That character is then repeated, so we have to check multiple repeats.
76
+ * - All characters but the start character of the sequence can be skipped.
77
+ */
78
+ private stateInCommentLike;
79
+ /**
80
+ * HTML only allows ASCII alpha characters (a-z and A-Z) at the beginning of a tag name.
81
+ *
82
+ * XML allows a lot more characters here (@see https://www.w3.org/TR/REC-xml/#NT-NameStartChar).
83
+ * We allow anything that wouldn't end the tag.
84
+ */
85
+ private isTagStartChar;
86
+ private startSpecial;
87
+ private stateBeforeTagName;
88
+ private stateInTagName;
89
+ private stateBeforeClosingTagName;
90
+ private stateInClosingTagName;
91
+ private stateAfterClosingTagName;
92
+ private stateBeforeAttributeName;
93
+ private stateInSelfClosingTag;
94
+ private stateInAttributeName;
95
+ private stateAfterAttributeName;
96
+ private stateBeforeAttributeValue;
97
+ private handleInAttributeValue;
98
+ private stateInAttributeValueDoubleQuotes;
99
+ private stateInAttributeValueSingleQuotes;
100
+ private stateInAttributeValueNoQuotes;
101
+ private stateBeforeDeclaration;
102
+ private stateInDeclaration;
103
+ private stateInProcessingInstruction;
104
+ private stateBeforeComment;
105
+ private stateInSpecialComment;
106
+ private stateBeforeSpecialS;
107
+ private stateBeforeSpecialT;
108
+ private startEntity;
109
+ private stateInEntity;
110
+ /**
111
+ * Remove data that has already been consumed from the buffer.
112
+ */
113
+ private cleanup;
114
+ private shouldContinue;
115
+ /**
116
+ * Iterates through the buffer, calling the function corresponding to the current state.
117
+ *
118
+ * States that are more likely to be hit are higher up, as a performance improvement.
119
+ */
120
+ private parse;
121
+ private finish;
122
+ /** Handle any trailing data. */
123
+ private handleTrailingData;
124
+ private emitCodePoint;
125
+ }
126
+ //# sourceMappingURL=Tokenizer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Tokenizer.d.ts","sourceRoot":"","sources":["../../src/Tokenizer.ts"],"names":[],"mappings":"AAmGA,oBAAY,SAAS;IACjB,OAAO,IAAI;IACX,QAAQ,IAAI;IACZ,MAAM,IAAI;IACV,MAAM,IAAI;CACb;AAED,MAAM,WAAW,SAAS;IACtB,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACpD,cAAc,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC,WAAW,CAAC,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACtD,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACpD,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAClE,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IAClD,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACpE,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACrD,KAAK,IAAI,IAAI,CAAC;IACd,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACrD,uBAAuB,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/D,gBAAgB,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACzC,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9C,YAAY,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3D;AAqBD,MAAM,CAAC,OAAO,OAAO,SAAS;IA6BtB,OAAO,CAAC,QAAQ,CAAC,GAAG;IA5BxB,6CAA6C;IAC7C,OAAO,CAAC,KAAK,CAAc;IAC3B,uBAAuB;IACvB,OAAO,CAAC,MAAM,CAAM;IACpB,iEAAiE;IACjE,OAAO,CAAC,YAAY,CAAK;IACzB,oEAAoE;IACpE,OAAO,CAAC,KAAK,CAAK;IAClB,oCAAoC;IACpC,OAAO,CAAC,WAAW,CAAK;IACxB,kIAAkI;IAClI,OAAO,CAAC,SAAS,CAAc;IAC/B,oEAAoE;IACpE,OAAO,CAAC,SAAS,CAAS;IAC1B,uDAAuD;IAChD,OAAO,UAAQ;IACtB,wCAAwC;IACxC,OAAO,CAAC,MAAM,CAAK;IAEnB,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAU;IAClC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAU;IACzC,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAgB;gBAG1C,EACI,OAAe,EACf,cAAqB,GACxB,EAAE;QAAE,OAAO,CAAC,EAAE,OAAO,CAAC;QAAC,cAAc,CAAC,EAAE,OAAO,CAAA;KAAE,EACjC,GAAG,EAAE,SAAS;IAU5B,KAAK,IAAI,IAAI;IAWb,KAAK,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAM1B,GAAG,IAAI,IAAI;IAIX,KAAK,IAAI,IAAI;IAIb,MAAM,IAAI,IAAI;IAOrB,OAAO,CAAC,SAAS;IAejB,OAAO,CAAC,eAAe,CAA0B;IACjD,OAAO,CAAC,aAAa,CAAK;IAC1B,OAAO,CAAC,yBAAyB;IAoBjC,mEAAmE;IACnE,OAAO,CAAC,iBAAiB;IAwCzB,OAAO,CAAC,kBAAkB;IAe1B;;;;;OAKG;IACH,OAAO,CAAC,aAAa;IAkBrB;;;;;;;OAOG;IACH,OAAO,CAAC,kBAAkB;IAwB1B;;;;;OAKG;IACH,OAAO,CAAC,cAAc;IAItB,OAAO,CAAC,YAAY;IAOpB,OAAO,CAAC,kBAAkB;IA6B1B,OAAO,CAAC,cAAc;IAQtB,OAAO,CAAC,yBAAyB;IAYjC,OAAO,CAAC,qBAAqB;IAQ7B,OAAO,CAAC,wBAAwB;IAOhC,OAAO,CAAC,wBAAwB;IAiBhC,OAAO,CAAC,qBAAqB;IAW7B,OAAO,CAAC,oBAAoB;IAQ5B,OAAO,CAAC,uBAAuB;IAc/B,OAAO,CAAC,yBAAyB;IAajC,OAAO,CAAC,sBAAsB;IAkB9B,OAAO,CAAC,iCAAiC;IAGzC,OAAO,CAAC,iCAAiC;IAGzC,OAAO,CAAC,6BAA6B;IAWrC,OAAO,CAAC,sBAAsB;IAW9B,OAAO,CAAC,kBAAkB;IAO1B,OAAO,CAAC,4BAA4B;IAOpC,OAAO,CAAC,kBAAkB;IAW1B,OAAO,CAAC,qBAAqB;IAO7B,OAAO,CAAC,mBAAmB;IAY3B,OAAO,CAAC,mBAAmB;IAyB3B,OAAO,CAAC,WAAW;IAcnB,OAAO,CAAC,aAAa;IA0BrB;;OAEG;IACH,OAAO,CAAC,OAAO;IAoBf,OAAO,CAAC,cAAc;IAItB;;;;OAIG;IACH,OAAO,CAAC,KAAK;IAkHb,OAAO,CAAC,MAAM;IAWd,gCAAgC;IAChC,OAAO,CAAC,kBAAkB;IAkC1B,OAAO,CAAC,aAAa;CAsBxB"}