@cdklabs/cdk-ssm-documents 0.0.51 → 0.0.52

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 (1123) hide show
  1. package/.jsii +11 -11
  2. package/lib/construct/synth-utils.js +1 -1
  3. package/lib/document/automation-document.js +1 -1
  4. package/lib/document/command-document.js +1 -1
  5. package/lib/document/document-builder.js +2 -2
  6. package/lib/document/ssm-document.js +1 -1
  7. package/lib/domain/aws-service.js +1 -1
  8. package/lib/domain/choice.js +1 -1
  9. package/lib/domain/data-type.js +1 -1
  10. package/lib/domain/enum/install-action.js +2 -2
  11. package/lib/domain/enum/install-uninstall-repair.js +2 -2
  12. package/lib/domain/enum/installation-type.js +2 -2
  13. package/lib/domain/enum/package-name.js +2 -2
  14. package/lib/domain/input.js +1 -1
  15. package/lib/domain/operation.js +1 -1
  16. package/lib/domain/platform.js +1 -1
  17. package/lib/domain/precondition.js +1 -1
  18. package/lib/incident-response/incident-response.js +3 -3
  19. package/lib/interface/approve-hook.js +2 -2
  20. package/lib/interface/auth-method.js +3 -3
  21. package/lib/interface/aws-invoker.js +2 -2
  22. package/lib/interface/downloadable-content.js +8 -8
  23. package/lib/interface/environment.js +3 -3
  24. package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
  25. package/lib/interface/observer.js +1 -1
  26. package/lib/interface/on-failure.js +6 -6
  27. package/lib/interface/pause-hook.js +2 -2
  28. package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
  29. package/lib/interface/run-document-location.js +2 -2
  30. package/lib/interface/sleep-hook.js +2 -2
  31. package/lib/interface/step-ref.js +1 -1
  32. package/lib/interface/variables/boolean-variable.js +2 -2
  33. package/lib/interface/variables/map-list-variable.js +2 -2
  34. package/lib/interface/variables/number-variable.js +2 -2
  35. package/lib/interface/variables/secure-string-variable.js +4 -4
  36. package/lib/interface/variables/string-list-variable.js +2 -2
  37. package/lib/interface/variables/string-map-variable.js +2 -2
  38. package/lib/interface/variables/string-variable.js +4 -4
  39. package/lib/interface/variables/variable.js +2 -2
  40. package/lib/interface/webhook.js +1 -1
  41. package/lib/parent-steps/automation/approve-step.js +1 -1
  42. package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
  43. package/lib/parent-steps/automation/aws-api-step.js +1 -1
  44. package/lib/parent-steps/automation/branch-step.js +1 -1
  45. package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
  46. package/lib/parent-steps/automation/copy-image-step.js +1 -1
  47. package/lib/parent-steps/automation/create-image-step.js +1 -1
  48. package/lib/parent-steps/automation/create-stack-step.js +3 -3
  49. package/lib/parent-steps/automation/create-tags-step.js +3 -3
  50. package/lib/parent-steps/automation/delete-image-step.js +1 -1
  51. package/lib/parent-steps/automation/delete-stack-step.js +1 -1
  52. package/lib/parent-steps/automation/execute-automation-step.js +1 -1
  53. package/lib/parent-steps/automation/execute-script-step.js +5 -5
  54. package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
  55. package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
  56. package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
  57. package/lib/parent-steps/automation/pause-step.js +1 -1
  58. package/lib/parent-steps/automation/run-command-step.js +3 -3
  59. package/lib/parent-steps/automation/run-instance-step.js +1 -1
  60. package/lib/parent-steps/automation/sleep-step.js +1 -1
  61. package/lib/parent-steps/automation/update-variable.js +1 -1
  62. package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
  63. package/lib/parent-steps/automation-step.js +1 -1
  64. package/lib/parent-steps/command/applications-step.js +1 -1
  65. package/lib/parent-steps/command/configure-docker-step.js +1 -1
  66. package/lib/parent-steps/command/configure-package-step.js +1 -1
  67. package/lib/parent-steps/command/domain-join-step.js +1 -1
  68. package/lib/parent-steps/command/download-content-step.js +1 -1
  69. package/lib/parent-steps/command/ps-module-step.js +1 -1
  70. package/lib/parent-steps/command/run-docker-action-step.js +1 -1
  71. package/lib/parent-steps/command/run-document-step.js +1 -1
  72. package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
  73. package/lib/parent-steps/command/run-shell-script-step.js +1 -1
  74. package/lib/parent-steps/command/software-inventory-step.js +1 -1
  75. package/lib/parent-steps/command/update-agent-step.js +1 -1
  76. package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
  77. package/lib/parent-steps/command-step.js +1 -1
  78. package/lib/parent-steps/step.js +1 -1
  79. package/lib/patterns/automation/composite-step.js +2 -2
  80. package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
  81. package/lib/patterns/automation/string-step.js +1 -1
  82. package/lib/patterns/document/string-document.js +1 -1
  83. package/lib/patterns/document/timed-document.js +1 -1
  84. package/lib/samples/hello-world.js +1 -1
  85. package/lib/simulation/automation/approve-simulation.js +1 -1
  86. package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
  87. package/lib/simulation/automation/automation-simulation-base.js +1 -1
  88. package/lib/simulation/automation/aws-api-simulation.js +1 -1
  89. package/lib/simulation/automation/branch-simulation.js +1 -1
  90. package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
  91. package/lib/simulation/automation/copy-image-simulation.js +1 -1
  92. package/lib/simulation/automation/create-image-simulation.js +1 -1
  93. package/lib/simulation/automation/create-stack-simulation.js +1 -1
  94. package/lib/simulation/automation/create-tags-simulation.js +1 -1
  95. package/lib/simulation/automation/delete-image-simulation.js +1 -1
  96. package/lib/simulation/automation/delete-stack-simulation.js +1 -1
  97. package/lib/simulation/automation/execute-script-simulation.js +1 -1
  98. package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
  99. package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
  100. package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
  101. package/lib/simulation/automation/pause-simulation.js +1 -1
  102. package/lib/simulation/automation/run-command-simulation.js +1 -1
  103. package/lib/simulation/automation/run-instance-simulation.js +1 -1
  104. package/lib/simulation/automation/sleep-simulation.js +1 -1
  105. package/lib/simulation/automation/update-variable-simulation.js +1 -1
  106. package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
  107. package/lib/simulation/automation-step-simulation.js +1 -1
  108. package/lib/simulation/command/command-simulation-base.js +1 -1
  109. package/lib/simulation/command/ps-module-simulation.js +1 -1
  110. package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
  111. package/lib/simulation/command/run-shell-script-simulation.js +1 -1
  112. package/lib/simulation/command-step-simulation.js +1 -1
  113. package/lib/simulation/document/automation-simulation.js +1 -1
  114. package/lib/simulation/document/command-simulation.js +1 -1
  115. package/lib/simulation/simulation.js +1 -1
  116. package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +2 -2
  117. package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +2 -2
  118. package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +1 -1
  119. package/node_modules/@aws/lambda-invoke-store/package.json +1 -1
  120. package/node_modules/@aws-sdk/client-cloudformation/README.md +26 -46
  121. package/node_modules/@aws-sdk/client-cloudformation/package.json +34 -34
  122. package/node_modules/@aws-sdk/client-cloudwatch/README.md +76 -46
  123. package/node_modules/@aws-sdk/client-cloudwatch/package.json +36 -36
  124. package/node_modules/@aws-sdk/client-ec2/README.md +26 -46
  125. package/node_modules/@aws-sdk/client-ec2/package.json +36 -36
  126. package/node_modules/@aws-sdk/client-iam/README.md +26 -46
  127. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +1 -1
  128. package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +10 -10
  129. package/node_modules/@aws-sdk/client-iam/package.json +35 -35
  130. package/node_modules/@aws-sdk/client-lambda/README.md +26 -46
  131. package/node_modules/@aws-sdk/client-lambda/package.json +38 -38
  132. package/node_modules/@aws-sdk/client-s3/README.md +26 -46
  133. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5 -0
  134. package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +6 -4
  135. package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +4 -0
  136. package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +6 -4
  137. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +5 -4
  138. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +9 -0
  139. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +0 -1
  140. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +0 -1
  141. package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +5 -4
  142. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +5 -4
  143. package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +12 -0
  144. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +24 -2
  145. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +6 -0
  146. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +2 -0
  147. package/node_modules/@aws-sdk/client-s3/package.json +50 -50
  148. package/node_modules/@aws-sdk/client-sns/README.md +26 -46
  149. package/node_modules/@aws-sdk/client-sns/package.json +33 -33
  150. package/node_modules/@aws-sdk/client-sqs/README.md +65 -46
  151. package/node_modules/@aws-sdk/client-sqs/package.json +36 -36
  152. package/node_modules/@aws-sdk/client-ssm/README.md +26 -46
  153. package/node_modules/@aws-sdk/client-ssm/package.json +34 -34
  154. package/node_modules/@aws-sdk/core/dist-cjs/index.js +4 -0
  155. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +4 -0
  156. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +2 -0
  157. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +3 -0
  158. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +2 -0
  159. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +4 -0
  160. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +3 -0
  161. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +2 -0
  162. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +1 -0
  163. package/node_modules/@aws-sdk/core/package.json +11 -11
  164. package/node_modules/@aws-sdk/crc64-nvme/package.json +2 -2
  165. package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
  166. package/node_modules/@aws-sdk/credential-provider-http/package.json +10 -10
  167. package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
  168. package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
  169. package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
  170. package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
  171. package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
  172. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
  173. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +5 -5
  174. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +4 -4
  175. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +10 -10
  176. package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
  177. package/node_modules/@aws-sdk/middleware-location-constraint/package.json +3 -3
  178. package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
  179. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
  180. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +8 -8
  181. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +11 -11
  182. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
  183. package/node_modules/@aws-sdk/middleware-ssec/package.json +3 -3
  184. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +9 -9
  185. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +9 -9
  186. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +4 -2
  187. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +3 -3
  188. package/node_modules/@aws-sdk/middleware-user-agent/package.json +8 -7
  189. package/node_modules/@aws-sdk/nested-clients/package.json +32 -32
  190. package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
  191. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +6 -6
  192. package/node_modules/@aws-sdk/token-providers/package.json +7 -7
  193. package/node_modules/@aws-sdk/types/package.json +2 -2
  194. package/node_modules/@aws-sdk/util-endpoints/package.json +5 -5
  195. package/node_modules/@aws-sdk/util-format-url/package.json +4 -4
  196. package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +10 -38
  197. package/node_modules/@aws-sdk/util-locate-window/package.json +11 -10
  198. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
  199. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +75 -19
  200. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getNodeModulesParentDirs.js +15 -0
  201. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedDevTypeScriptVersion.js +14 -0
  202. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +53 -7
  203. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/{getTypeScriptPackageJsonPaths.d.ts → getNodeModulesParentDirs.d.ts} +2 -2
  204. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedDevTypeScriptVersion.d.ts +8 -0
  205. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getNodeModulesParentDirs.d.ts +1 -0
  206. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedDevTypeScriptVersion.d.ts +3 -0
  207. package/node_modules/@aws-sdk/util-user-agent-node/package.json +6 -5
  208. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/CHANGELOG.md +16 -0
  209. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/README.md +1 -1
  210. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/fxb.cjs +1 -0
  211. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/fxb.d.cts +22 -9
  212. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/fxb.min.js +2 -0
  213. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -0
  214. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/package.json +7 -5
  215. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/src/fxb.d.ts +27 -3
  216. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/src/fxb.js +265 -21
  217. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/src/orderedJs2Xml.js +165 -18
  218. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/LICENSE +21 -0
  219. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/README.md +635 -0
  220. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.cjs +1 -0
  221. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.d.cts +335 -0
  222. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.min.js +2 -0
  223. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -0
  224. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/package.json +78 -0
  225. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/src/Expression.js +232 -0
  226. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/src/Matcher.js +414 -0
  227. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/src/index.d.ts +366 -0
  228. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/src/index.js +28 -0
  229. package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
  230. package/node_modules/@smithy/abort-controller/package.json +2 -2
  231. package/node_modules/@smithy/config-resolver/package.json +5 -5
  232. package/node_modules/@smithy/core/dist-cjs/index.js +1 -2
  233. package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +7 -1
  234. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +22 -0
  235. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +11 -1
  236. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +41 -4
  237. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +1 -2
  238. package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +7 -1
  239. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +1 -0
  240. package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +17 -0
  241. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +10 -0
  242. package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +1 -1
  243. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +3 -2
  244. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +30 -1
  245. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +5 -1
  246. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +1 -0
  247. package/node_modules/@smithy/core/dist-types/submodules/endpoints/toEndpointV1.d.ts +6 -0
  248. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +11 -0
  249. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +6 -0
  250. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.d.ts +1 -0
  251. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/toEndpointV1.d.ts +6 -0
  252. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +11 -0
  253. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +6 -0
  254. package/node_modules/@smithy/core/endpoints.d.ts +7 -0
  255. package/node_modules/@smithy/core/endpoints.js +6 -0
  256. package/node_modules/@smithy/core/package.json +16 -7
  257. package/node_modules/@smithy/credential-provider-imds/package.json +5 -5
  258. package/node_modules/@smithy/eventstream-codec/package.json +2 -2
  259. package/node_modules/@smithy/eventstream-serde-browser/package.json +3 -3
  260. package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +2 -2
  261. package/node_modules/@smithy/eventstream-serde-node/package.json +3 -3
  262. package/node_modules/@smithy/eventstream-serde-universal/package.json +3 -3
  263. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +4 -1
  264. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +4 -1
  265. package/node_modules/@smithy/fetch-http-handler/package.json +5 -5
  266. package/node_modules/@smithy/hash-blob-browser/package.json +2 -2
  267. package/node_modules/@smithy/hash-node/package.json +2 -2
  268. package/node_modules/@smithy/hash-stream-node/package.json +2 -2
  269. package/node_modules/@smithy/invalid-dependency/package.json +2 -2
  270. package/node_modules/@smithy/md5-js/package.json +2 -2
  271. package/node_modules/@smithy/middleware-compression/package.json +6 -6
  272. package/node_modules/@smithy/middleware-content-length/package.json +3 -3
  273. package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +17 -1
  274. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +9 -0
  275. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +8 -1
  276. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +1 -0
  277. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +1 -0
  278. package/node_modules/@smithy/middleware-endpoint/package.json +8 -8
  279. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +9 -12
  280. package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +9 -12
  281. package/node_modules/@smithy/middleware-retry/package.json +8 -8
  282. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +3 -2
  283. package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +3 -2
  284. package/node_modules/@smithy/middleware-serde/package.json +4 -3
  285. package/node_modules/@smithy/middleware-stack/package.json +2 -2
  286. package/node_modules/@smithy/node-config-provider/package.json +4 -4
  287. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +48 -38
  288. package/node_modules/@smithy/node-http-handler/dist-es/build-abort-error.js +4 -1
  289. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +38 -31
  290. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +1 -1
  291. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +1 -1
  292. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +1 -1
  293. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +6 -6
  294. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +1 -1
  295. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +1 -1
  296. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +1 -1
  297. package/node_modules/@smithy/node-http-handler/dist-types/build-abort-error.d.ts +4 -3
  298. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +1 -1
  299. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +4 -4
  300. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +1 -1
  301. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +1 -1
  302. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +2 -2
  303. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +3 -3
  304. package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +1 -1
  305. package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +1 -1
  306. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +1 -1
  307. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +1 -1
  308. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +1 -1
  309. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +2 -2
  310. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/build-abort-error.d.ts +4 -3
  311. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +1 -1
  312. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +4 -4
  313. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +1 -1
  314. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +1 -1
  315. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +2 -2
  316. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +3 -3
  317. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +1 -1
  318. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +1 -1
  319. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +1 -1
  320. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +1 -1
  321. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +1 -1
  322. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +2 -2
  323. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +2 -2
  324. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +2 -2
  325. package/node_modules/@smithy/node-http-handler/package.json +5 -5
  326. package/node_modules/@smithy/property-provider/package.json +2 -2
  327. package/node_modules/@smithy/protocol-http/package.json +2 -2
  328. package/node_modules/@smithy/querystring-builder/package.json +2 -2
  329. package/node_modules/@smithy/querystring-parser/package.json +2 -2
  330. package/node_modules/@smithy/service-error-classification/package.json +2 -2
  331. package/node_modules/@smithy/shared-ini-file-loader/package.json +2 -2
  332. package/node_modules/@smithy/signature-v4/package.json +4 -4
  333. package/node_modules/@smithy/smithy-client/package.json +7 -7
  334. package/node_modules/@smithy/types/dist-types/http.d.ts +1 -0
  335. package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +1 -0
  336. package/node_modules/@smithy/types/package.json +1 -1
  337. package/node_modules/@smithy/url-parser/package.json +3 -3
  338. package/node_modules/@smithy/util-defaults-mode-browser/package.json +4 -4
  339. package/node_modules/@smithy/util-defaults-mode-node/package.json +7 -7
  340. package/node_modules/@smithy/util-endpoints/package.json +3 -3
  341. package/node_modules/@smithy/util-middleware/package.json +2 -2
  342. package/node_modules/@smithy/util-retry/package.json +3 -3
  343. package/node_modules/@smithy/util-stream/package.json +4 -4
  344. package/node_modules/@smithy/util-waiter/dist-cjs/index.js +1 -1
  345. package/node_modules/@smithy/util-waiter/dist-es/poller.js +1 -1
  346. package/node_modules/@smithy/util-waiter/package.json +3 -3
  347. package/node_modules/bowser/README.md +74 -7
  348. package/node_modules/bowser/bundled.js +1 -1
  349. package/node_modules/bowser/es5.js +1 -1
  350. package/node_modules/bowser/index.d.ts +115 -12
  351. package/node_modules/bowser/package.json +17 -7
  352. package/node_modules/bowser/src/bowser.js +24 -8
  353. package/node_modules/bowser/src/constants.js +79 -18
  354. package/node_modules/bowser/src/parser-browsers.js +483 -0
  355. package/node_modules/bowser/src/parser-os.js +12 -0
  356. package/node_modules/bowser/src/parser-platforms.js +301 -1
  357. package/node_modules/bowser/src/parser.js +106 -10
  358. package/node_modules/bowser/src/utils.js +33 -15
  359. package/node_modules/deasync/.github/workflows/npm_test.yml +3 -3
  360. package/node_modules/deasync/bin/darwin-arm64-node-24/deasync.node +0 -0
  361. package/node_modules/deasync/bin/linux-x64-node-24/deasync.node +0 -0
  362. package/node_modules/deasync/bin/win32-x64-node-24/deasync.node +0 -0
  363. package/node_modules/deasync/package.json +1 -1
  364. package/package.json +10 -10
  365. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/LICENSE +0 -201
  366. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/README.md +0 -4
  367. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  368. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  369. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  370. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  371. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  372. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  373. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  374. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  375. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  376. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  377. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  378. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  379. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  380. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  381. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  382. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  383. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  384. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  385. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  386. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  387. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  388. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  389. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  390. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  391. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  392. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  393. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  394. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  395. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  396. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  397. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  398. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  399. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  400. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  401. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  402. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  403. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  404. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  405. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  406. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  407. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  408. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  409. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  410. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  411. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  412. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  413. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  414. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  415. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  416. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  417. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  418. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  419. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  420. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  421. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  422. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  423. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  424. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  425. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  426. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  427. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  428. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  429. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  430. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  431. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  432. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  433. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  434. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  435. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  436. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  437. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  438. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  439. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  440. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  441. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  442. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  443. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  444. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  445. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  446. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  447. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  448. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  449. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  450. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  451. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  452. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  453. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  454. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  455. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  456. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  457. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  458. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  459. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  460. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  461. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  462. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  463. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  464. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  465. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  466. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  467. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  468. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  469. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  470. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  471. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  472. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  473. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  474. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  475. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  476. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  477. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  478. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  479. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  480. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  481. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  482. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  483. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  484. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  485. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  486. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  487. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  488. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/package.json +0 -56
  489. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/LICENSE +0 -201
  490. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/README.md +0 -4
  491. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  492. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  493. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  494. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  495. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  496. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  497. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  498. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  499. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  500. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  501. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  502. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  503. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  504. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  505. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  506. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  507. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  508. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  509. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  510. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  511. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  512. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  513. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  514. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  515. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  516. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  517. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  518. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  519. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  520. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  521. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  522. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  523. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  524. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  525. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  526. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  527. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  528. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  529. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  530. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  531. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  532. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  533. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  534. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  535. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  536. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  537. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  538. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  539. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  540. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  541. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  542. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  543. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  544. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  545. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  546. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  547. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  548. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  549. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  550. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  551. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  552. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  553. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  554. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  555. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  556. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  557. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  558. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  559. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  560. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  561. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  562. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  563. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  564. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  565. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  566. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  567. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  568. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  569. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  570. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  571. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  572. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  573. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  574. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  575. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  576. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  577. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  578. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  579. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  580. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  581. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  582. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  583. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  584. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  585. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  586. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  587. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  588. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  589. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  590. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  591. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  592. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  593. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  594. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  595. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  596. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  597. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  598. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  599. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  600. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  601. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  602. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  603. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  604. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  605. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  606. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  607. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  608. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  609. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  610. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  611. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  612. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/package.json +0 -56
  613. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/LICENSE +0 -201
  614. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/README.md +0 -4
  615. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  616. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  617. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  618. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  619. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  620. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  621. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  622. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  623. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  624. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  625. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  626. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  627. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  628. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  629. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  630. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  631. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  632. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  633. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  634. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  635. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  636. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  637. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  638. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  639. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  640. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  641. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  642. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  643. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  644. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  645. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  646. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  647. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  648. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  649. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  650. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  651. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  652. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  653. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  654. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  655. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  656. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  657. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  658. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  659. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  660. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  661. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  662. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  663. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  664. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  665. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  666. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  667. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  668. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  669. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  670. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  671. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  672. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  673. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  674. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  675. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  676. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  677. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  678. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  679. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  680. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  681. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  682. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  683. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  684. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  685. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  686. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  687. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  688. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  689. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  690. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  691. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  692. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  693. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  694. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  695. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  696. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  697. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  698. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  699. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  700. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  701. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  702. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  703. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  704. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  705. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  706. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  707. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  708. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  709. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  710. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  711. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  712. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  713. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  714. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  715. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  716. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  717. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  718. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  719. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  720. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  721. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  722. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  723. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  724. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  725. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  726. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  727. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  728. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  729. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  730. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  731. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  732. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  733. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  734. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  735. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  736. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/package.json +0 -56
  737. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/LICENSE +0 -201
  738. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/README.md +0 -4
  739. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  740. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  741. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  742. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  743. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  744. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  745. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  746. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  747. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  748. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  749. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  750. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  751. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  752. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  753. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  754. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  755. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  756. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  757. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  758. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  759. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  760. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  761. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  762. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  763. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  764. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  765. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  766. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  767. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  768. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  769. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  770. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  771. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  772. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  773. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  774. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  775. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  776. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  777. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  778. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  779. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  780. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  781. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  782. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  783. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  784. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  785. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  786. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  787. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  788. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  789. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  790. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  791. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  792. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  793. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  794. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  795. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  796. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  797. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  798. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  799. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  800. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  801. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  802. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  803. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  804. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  805. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  806. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  807. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  808. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  809. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  810. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  811. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  812. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  813. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  814. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  815. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  816. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  817. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  818. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  819. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  820. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  821. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  822. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  823. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  824. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  825. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  826. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  827. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  828. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  829. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  830. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  831. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  832. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  833. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  834. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  835. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  836. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  837. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  838. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  839. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  840. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  841. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  842. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  843. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  844. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  845. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  846. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  847. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  848. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  849. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  850. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  851. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  852. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  853. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  854. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  855. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  856. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  857. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  858. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  859. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  860. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/package.json +0 -56
  861. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/LICENSE +0 -201
  862. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/README.md +0 -4
  863. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  864. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  865. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  866. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  867. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  868. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  869. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  870. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  871. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  872. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  873. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  874. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  875. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  876. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  877. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  878. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  879. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  880. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  881. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  882. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  883. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  884. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  885. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  886. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  887. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  888. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  889. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  890. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  891. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  892. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  893. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  894. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  895. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  896. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  897. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  898. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  899. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  900. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  901. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  902. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  903. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  904. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  905. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  906. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  907. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  908. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  909. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  910. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  911. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  912. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  913. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  914. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  915. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  916. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  917. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  918. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  919. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  920. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  921. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  922. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  923. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  924. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  925. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  926. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  927. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  928. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  929. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  930. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  931. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  932. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  933. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  934. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  935. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  936. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  937. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  938. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  939. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  940. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  941. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  942. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  943. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  944. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  945. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  946. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  947. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  948. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  949. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  950. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  951. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  952. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  953. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  954. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  955. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  956. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  957. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  958. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  959. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  960. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  961. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  962. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  963. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  964. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  965. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  966. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  967. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  968. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  969. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  970. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  971. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  972. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  973. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  974. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  975. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  976. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  977. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  978. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  979. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  980. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  981. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  982. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  983. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  984. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/package.json +0 -56
  985. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/LICENSE +0 -201
  986. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/README.md +0 -4
  987. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  988. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  989. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  990. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  991. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  992. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  993. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  994. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  995. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  996. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  997. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  998. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  999. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  1000. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  1001. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  1002. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  1003. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  1004. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  1005. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  1006. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  1007. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  1008. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  1009. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  1010. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  1011. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  1012. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  1013. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  1014. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  1015. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  1016. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  1017. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  1018. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  1019. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  1020. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  1021. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  1022. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  1023. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  1024. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  1025. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  1026. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  1027. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  1028. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  1029. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  1030. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  1031. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  1032. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  1033. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  1034. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  1035. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  1036. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  1037. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  1038. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  1039. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  1040. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  1041. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  1042. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  1043. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  1044. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  1045. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  1046. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  1047. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  1048. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  1049. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  1050. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  1051. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  1052. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  1053. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  1054. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  1055. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  1056. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  1057. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  1058. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  1059. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  1060. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  1061. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  1062. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  1063. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  1064. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  1065. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  1066. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  1067. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  1068. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  1069. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  1070. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  1071. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  1072. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  1073. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  1074. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  1075. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  1076. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  1077. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  1078. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  1079. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  1080. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  1081. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  1082. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  1083. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  1084. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  1085. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  1086. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  1087. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  1088. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  1089. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  1090. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  1091. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  1092. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  1093. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  1094. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  1095. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  1096. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  1097. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  1098. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  1099. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  1100. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  1101. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  1102. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  1103. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  1104. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  1105. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  1106. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  1107. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  1108. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/package.json +0 -56
  1109. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptPackageJsonPaths.js +0 -17
  1110. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getTypeScriptPackageJsonPaths.d.ts +0 -3
  1111. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/builder.cjs +0 -1
  1112. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/builder.min.js +0 -2
  1113. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/builder.min.js.map +0 -1
  1114. package/node_modules/bowser/CHANGELOG.md +0 -218
  1115. package/node_modules/deasync/build/Makefile +0 -354
  1116. package/node_modules/deasync/build/Release/.deps/Release/deasync.node.d +0 -1
  1117. package/node_modules/deasync/build/Release/.deps/Release/obj.target/deasync/src/deasync.o.d +0 -149
  1118. package/node_modules/deasync/build/Release/.deps/Release/obj.target/deasync.node.d +0 -1
  1119. package/node_modules/deasync/build/Release/obj.target/deasync/src/deasync.o +0 -0
  1120. package/node_modules/deasync/build/Release/obj.target/deasync.node +0 -0
  1121. package/node_modules/deasync/build/binding.Makefile +0 -6
  1122. package/node_modules/deasync/build/config.gypi +0 -534
  1123. package/node_modules/deasync/build/deasync.target.mk +0 -156
@@ -11,8 +11,9 @@ AWS SDK for JavaScript EC2 Client for Node.js, Browser and React Native.
11
11
  see the <a href="https://docs.aws.amazon.com/ec2/latest/devguide">Amazon EC2 Developer Guide</a>.</p>
12
12
 
13
13
  ## Installing
14
- To install this package, simply type add or install @aws-sdk/client-ec2
15
- using your favorite package manager:
14
+
15
+ To install this package, use the CLI of your favorite package manager:
16
+
16
17
  - `npm install @aws-sdk/client-ec2`
17
18
  - `yarn add @aws-sdk/client-ec2`
18
19
  - `pnpm add @aws-sdk/client-ec2`
@@ -37,15 +38,15 @@ import { EC2Client, ListImagesInRecycleBinCommand } from "@aws-sdk/client-ec2";
37
38
 
38
39
  ### Usage
39
40
 
40
- To send a request, you:
41
+ To send a request:
41
42
 
42
- - Initiate client with configuration (e.g. credentials, region).
43
- - Initiate command with input parameters.
44
- - Call `send` operation on client with command object as input.
45
- - If you are using a custom http handler, you may call `destroy()` to close open connections.
43
+ - Instantiate a client with configuration (e.g. credentials, region).
44
+ - See [docs/CLIENTS](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/CLIENTS.md) for configuration details.
45
+ - See [@aws-sdk/config](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/config/README.md) for additional options.
46
+ - Instantiate a command with input parameters.
47
+ - Call the `send` operation on the client, providing the command object as input.
46
48
 
47
49
  ```js
48
- // a client can be shared by different commands.
49
50
  const client = new EC2Client({ region: "REGION" });
50
51
 
51
52
  const params = { /** input parameters */ };
@@ -54,7 +55,7 @@ const command = new ListImagesInRecycleBinCommand(params);
54
55
 
55
56
  #### Async/await
56
57
 
57
- We recommend using [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
58
+ We recommend using the [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
58
59
  operator to wait for the promise returned by send operation as follows:
59
60
 
60
61
  ```js
@@ -69,26 +70,9 @@ try {
69
70
  }
70
71
  ```
71
72
 
72
- Async-await is clean, concise, intuitive, easy to debug and has better error handling
73
- as compared to using Promise chains or callbacks.
74
-
75
73
  #### Promises
76
74
 
77
- You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining)
78
- to execute send operation.
79
-
80
- ```js
81
- client.send(command).then(
82
- (data) => {
83
- // process data.
84
- },
85
- (error) => {
86
- // error handling.
87
- }
88
- );
89
- ```
90
-
91
- Promises can also be called using `.catch()` and `.finally()` as follows:
75
+ You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining).
92
76
 
93
77
  ```js
94
78
  client
@@ -104,27 +88,21 @@ client
104
88
  });
105
89
  ```
106
90
 
107
- #### Callbacks
108
-
109
- We do not recommend using callbacks because of [callback hell](http://callbackhell.com/),
110
- but they are supported by the send operation.
91
+ #### Aggregated client
111
92
 
112
- ```js
113
- // callbacks.
114
- client.send(command, (err, data) => {
115
- // process err and data.
116
- });
117
- ```
93
+ The aggregated client class is exported from the same package, but without the "Client" suffix.
118
94
 
119
- #### v2 compatible style
95
+ `EC2` extends `EC2Client` and additionally supports all operations, waiters, and paginators as methods.
96
+ This style may be familiar to you from the AWS SDK for JavaScript v2.
120
97
 
121
- The client can also send requests using v2 compatible style.
122
- However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post
123
- on [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/)
98
+ If you are bundling the AWS SDK, we recommend using only the bare-bones client (`EC2Client`).
99
+ More details are in the blog post on
100
+ [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/).
124
101
 
125
102
  ```ts
126
- import * as AWS from "@aws-sdk/client-ec2";
127
- const client = new AWS.EC2({ region: "REGION" });
103
+ import { EC2 } from "@aws-sdk/client-ec2";
104
+
105
+ const client = new EC2({ region: "REGION" });
128
106
 
129
107
  // async/await.
130
108
  try {
@@ -144,7 +122,7 @@ client
144
122
  // error handling.
145
123
  });
146
124
 
147
- // callbacks.
125
+ // callbacks (not recommended).
148
126
  client.listImagesInRecycleBin(params, (err, data) => {
149
127
  // process err and data.
150
128
  });
@@ -172,12 +150,14 @@ try {
172
150
  }
173
151
  ```
174
152
 
153
+ See also [docs/ERROR_HANDLING](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/ERROR_HANDLING.md).
154
+
175
155
  ## Getting Help
176
156
 
177
157
  Please use these community resources for getting help.
178
- We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
158
+ We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
179
159
 
180
- - Visit [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
160
+ - Visit the [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
181
161
  or [API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/index.html).
182
162
  - Check out the blog posts tagged with [`aws-sdk-js`](https://aws.amazon.com/blogs/developer/tag/aws-sdk-js/)
183
163
  on AWS Developer Blog.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ec2",
3
3
  "description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
4
- "version": "3.1003.0",
4
+ "version": "3.1009.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-ec2",
@@ -25,48 +25,48 @@
25
25
  "dependencies": {
26
26
  "@aws-crypto/sha256-browser": "5.2.0",
27
27
  "@aws-crypto/sha256-js": "5.2.0",
28
- "@aws-sdk/core": "^3.973.18",
29
- "@aws-sdk/credential-provider-node": "^3.972.17",
30
- "@aws-sdk/middleware-host-header": "^3.972.7",
31
- "@aws-sdk/middleware-logger": "^3.972.7",
32
- "@aws-sdk/middleware-recursion-detection": "^3.972.7",
33
- "@aws-sdk/middleware-sdk-ec2": "^3.972.13",
34
- "@aws-sdk/middleware-user-agent": "^3.972.18",
35
- "@aws-sdk/region-config-resolver": "^3.972.7",
36
- "@aws-sdk/types": "^3.973.5",
37
- "@aws-sdk/util-endpoints": "^3.996.4",
38
- "@aws-sdk/util-user-agent-browser": "^3.972.7",
39
- "@aws-sdk/util-user-agent-node": "^3.973.3",
40
- "@smithy/config-resolver": "^4.4.10",
41
- "@smithy/core": "^3.23.8",
42
- "@smithy/fetch-http-handler": "^5.3.13",
43
- "@smithy/hash-node": "^4.2.11",
44
- "@smithy/invalid-dependency": "^4.2.11",
45
- "@smithy/middleware-content-length": "^4.2.11",
46
- "@smithy/middleware-endpoint": "^4.4.22",
47
- "@smithy/middleware-retry": "^4.4.39",
48
- "@smithy/middleware-serde": "^4.2.12",
49
- "@smithy/middleware-stack": "^4.2.11",
50
- "@smithy/node-config-provider": "^4.3.11",
51
- "@smithy/node-http-handler": "^4.4.14",
52
- "@smithy/protocol-http": "^5.3.11",
53
- "@smithy/smithy-client": "^4.12.2",
54
- "@smithy/types": "^4.13.0",
55
- "@smithy/url-parser": "^4.2.11",
28
+ "@aws-sdk/core": "^3.973.20",
29
+ "@aws-sdk/credential-provider-node": "^3.972.21",
30
+ "@aws-sdk/middleware-host-header": "^3.972.8",
31
+ "@aws-sdk/middleware-logger": "^3.972.8",
32
+ "@aws-sdk/middleware-recursion-detection": "^3.972.8",
33
+ "@aws-sdk/middleware-sdk-ec2": "^3.972.15",
34
+ "@aws-sdk/middleware-user-agent": "^3.972.21",
35
+ "@aws-sdk/region-config-resolver": "^3.972.8",
36
+ "@aws-sdk/types": "^3.973.6",
37
+ "@aws-sdk/util-endpoints": "^3.996.5",
38
+ "@aws-sdk/util-user-agent-browser": "^3.972.8",
39
+ "@aws-sdk/util-user-agent-node": "^3.973.7",
40
+ "@smithy/config-resolver": "^4.4.11",
41
+ "@smithy/core": "^3.23.11",
42
+ "@smithy/fetch-http-handler": "^5.3.15",
43
+ "@smithy/hash-node": "^4.2.12",
44
+ "@smithy/invalid-dependency": "^4.2.12",
45
+ "@smithy/middleware-content-length": "^4.2.12",
46
+ "@smithy/middleware-endpoint": "^4.4.25",
47
+ "@smithy/middleware-retry": "^4.4.42",
48
+ "@smithy/middleware-serde": "^4.2.14",
49
+ "@smithy/middleware-stack": "^4.2.12",
50
+ "@smithy/node-config-provider": "^4.3.12",
51
+ "@smithy/node-http-handler": "^4.4.16",
52
+ "@smithy/protocol-http": "^5.3.12",
53
+ "@smithy/smithy-client": "^4.12.5",
54
+ "@smithy/types": "^4.13.1",
55
+ "@smithy/url-parser": "^4.2.12",
56
56
  "@smithy/util-base64": "^4.3.2",
57
57
  "@smithy/util-body-length-browser": "^4.2.2",
58
58
  "@smithy/util-body-length-node": "^4.2.3",
59
- "@smithy/util-defaults-mode-browser": "^4.3.38",
60
- "@smithy/util-defaults-mode-node": "^4.2.41",
61
- "@smithy/util-endpoints": "^3.3.2",
62
- "@smithy/util-middleware": "^4.2.11",
63
- "@smithy/util-retry": "^4.2.11",
59
+ "@smithy/util-defaults-mode-browser": "^4.3.41",
60
+ "@smithy/util-defaults-mode-node": "^4.2.44",
61
+ "@smithy/util-endpoints": "^3.3.3",
62
+ "@smithy/util-middleware": "^4.2.12",
63
+ "@smithy/util-retry": "^4.2.12",
64
64
  "@smithy/util-utf8": "^4.2.2",
65
- "@smithy/util-waiter": "^4.2.11",
65
+ "@smithy/util-waiter": "^4.2.13",
66
66
  "tslib": "^2.6.2"
67
67
  },
68
68
  "devDependencies": {
69
- "@smithy/snapshot-testing": "^1.0.9",
69
+ "@smithy/snapshot-testing": "^2.0.2",
70
70
  "@tsconfig/node20": "20.1.8",
71
71
  "@types/node": "^20.14.8",
72
72
  "concurrently": "7.0.0",
@@ -13,8 +13,9 @@ such as access keys, and permissions that control which Amazon Web Services reso
13
13
  applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>
14
14
 
15
15
  ## Installing
16
- To install this package, simply type add or install @aws-sdk/client-iam
17
- using your favorite package manager:
16
+
17
+ To install this package, use the CLI of your favorite package manager:
18
+
18
19
  - `npm install @aws-sdk/client-iam`
19
20
  - `yarn add @aws-sdk/client-iam`
20
21
  - `pnpm add @aws-sdk/client-iam`
@@ -39,15 +40,15 @@ import { IAMClient, ListGroupsCommand } from "@aws-sdk/client-iam";
39
40
 
40
41
  ### Usage
41
42
 
42
- To send a request, you:
43
+ To send a request:
43
44
 
44
- - Initiate client with configuration (e.g. credentials, region).
45
- - Initiate command with input parameters.
46
- - Call `send` operation on client with command object as input.
47
- - If you are using a custom http handler, you may call `destroy()` to close open connections.
45
+ - Instantiate a client with configuration (e.g. credentials, region).
46
+ - See [docs/CLIENTS](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/CLIENTS.md) for configuration details.
47
+ - See [@aws-sdk/config](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/config/README.md) for additional options.
48
+ - Instantiate a command with input parameters.
49
+ - Call the `send` operation on the client, providing the command object as input.
48
50
 
49
51
  ```js
50
- // a client can be shared by different commands.
51
52
  const client = new IAMClient({ region: "REGION" });
52
53
 
53
54
  const params = { /** input parameters */ };
@@ -56,7 +57,7 @@ const command = new ListGroupsCommand(params);
56
57
 
57
58
  #### Async/await
58
59
 
59
- We recommend using [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
60
+ We recommend using the [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
60
61
  operator to wait for the promise returned by send operation as follows:
61
62
 
62
63
  ```js
@@ -71,26 +72,9 @@ try {
71
72
  }
72
73
  ```
73
74
 
74
- Async-await is clean, concise, intuitive, easy to debug and has better error handling
75
- as compared to using Promise chains or callbacks.
76
-
77
75
  #### Promises
78
76
 
79
- You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining)
80
- to execute send operation.
81
-
82
- ```js
83
- client.send(command).then(
84
- (data) => {
85
- // process data.
86
- },
87
- (error) => {
88
- // error handling.
89
- }
90
- );
91
- ```
92
-
93
- Promises can also be called using `.catch()` and `.finally()` as follows:
77
+ You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining).
94
78
 
95
79
  ```js
96
80
  client
@@ -106,27 +90,21 @@ client
106
90
  });
107
91
  ```
108
92
 
109
- #### Callbacks
110
-
111
- We do not recommend using callbacks because of [callback hell](http://callbackhell.com/),
112
- but they are supported by the send operation.
93
+ #### Aggregated client
113
94
 
114
- ```js
115
- // callbacks.
116
- client.send(command, (err, data) => {
117
- // process err and data.
118
- });
119
- ```
95
+ The aggregated client class is exported from the same package, but without the "Client" suffix.
120
96
 
121
- #### v2 compatible style
97
+ `IAM` extends `IAMClient` and additionally supports all operations, waiters, and paginators as methods.
98
+ This style may be familiar to you from the AWS SDK for JavaScript v2.
122
99
 
123
- The client can also send requests using v2 compatible style.
124
- However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post
125
- on [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/)
100
+ If you are bundling the AWS SDK, we recommend using only the bare-bones client (`IAMClient`).
101
+ More details are in the blog post on
102
+ [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/).
126
103
 
127
104
  ```ts
128
- import * as AWS from "@aws-sdk/client-iam";
129
- const client = new AWS.IAM({ region: "REGION" });
105
+ import { IAM } from "@aws-sdk/client-iam";
106
+
107
+ const client = new IAM({ region: "REGION" });
130
108
 
131
109
  // async/await.
132
110
  try {
@@ -146,7 +124,7 @@ client
146
124
  // error handling.
147
125
  });
148
126
 
149
- // callbacks.
127
+ // callbacks (not recommended).
150
128
  client.listGroups(params, (err, data) => {
151
129
  // process err and data.
152
130
  });
@@ -174,12 +152,14 @@ try {
174
152
  }
175
153
  ```
176
154
 
155
+ See also [docs/ERROR_HANDLING](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/ERROR_HANDLING.md).
156
+
177
157
  ## Getting Help
178
158
 
179
159
  Please use these community resources for getting help.
180
- We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
160
+ We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
181
161
 
182
- - Visit [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
162
+ - Visit the [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
183
163
  or [API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/index.html).
184
164
  - Check out the blog posts tagged with [`aws-sdk-js`](https://aws.amazon.com/blogs/developer/tag/aws-sdk-js/)
185
165
  on AWS Developer Blog.
@@ -32,7 +32,7 @@ declare const CreateServiceSpecificCredentialCommand_base: {
32
32
  * IAM, and can be used only for the specified service. </p>
33
33
  * <p>You can have a maximum of two sets of service-specific credentials for each supported
34
34
  * service per user.</p>
35
- * <p>You can create service-specific credentials for Amazon Bedrock, CodeCommit and Amazon Keyspaces (for Apache Cassandra).</p>
35
+ * <p>You can create service-specific credentials for Amazon Bedrock, Amazon CloudWatch Logs, CodeCommit and Amazon Keyspaces (for Apache Cassandra).</p>
36
36
  * <p>You can reset the password to a new service-generated value by calling <a href="https://docs.aws.amazon.com/IAM/latest/APIReference/API_ResetServiceSpecificCredential.html">ResetServiceSpecificCredential</a>.</p>
37
37
  * <p>For more information about service-specific credentials, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_bedrock.html">Service-specific credentials for IAM users</a> in the
38
38
  * <i>IAM User Guide</i>.</p>
@@ -1559,7 +1559,7 @@ export interface CreateServiceSpecificCredentialRequest {
1559
1559
  ServiceName: string | undefined;
1560
1560
  /**
1561
1561
  * <p>The number of days until the service specific credential expires. This field is only
1562
- * valid for Bedrock API keys and must be a positive integer. When not specified, the
1562
+ * valid for Bedrock and CloudWatch Logs API keys and must be a positive integer. When not specified, the
1563
1563
  * credential will not expire.</p>
1564
1564
  * @public
1565
1565
  */
@@ -1578,7 +1578,7 @@ export interface ServiceSpecificCredential {
1578
1578
  CreateDate: Date | undefined;
1579
1579
  /**
1580
1580
  * <p>The date and time when the service specific credential expires. This field is only
1581
- * present for Bedrock API keys that were created with an expiration period.</p>
1581
+ * present for Bedrock API keys and CloudWatch Logs API keys that were created with an expiration period.</p>
1582
1582
  * @public
1583
1583
  */
1584
1584
  ExpirationDate?: Date | undefined;
@@ -1601,13 +1601,13 @@ export interface ServiceSpecificCredential {
1601
1601
  */
1602
1602
  ServicePassword?: string | undefined;
1603
1603
  /**
1604
- * <p>For Bedrock API keys, this is the public portion of the credential that includes the IAM
1604
+ * <p>For Bedrock API keys and CloudWatch Logs API keys, this is the public portion of the credential that includes the IAM
1605
1605
  * user name and a suffix containing version and creation information.</p>
1606
1606
  * @public
1607
1607
  */
1608
1608
  ServiceCredentialAlias?: string | undefined;
1609
1609
  /**
1610
- * <p>For Bedrock API keys, this is the secret portion of the credential that should be used
1610
+ * <p>For Bedrock API keys and CloudWatch Logs API keys, this is the secret portion of the credential that should be used
1611
1611
  * to authenticate API calls. This value is returned only when the credential is
1612
1612
  * created.</p>
1613
1613
  * @public
@@ -3200,7 +3200,7 @@ export interface DelegationRequest {
3200
3200
  /**
3201
3201
  * <p>If the <code>PermissionPolicy</code> includes role creation permissions, this element will
3202
3202
  * include the list of permissions boundary policies associated with the role creation.
3203
- * See <a href="IAM/latest/UserGuide/access_policies_boundaries.html">Permissions boundaries for IAM entities</a>
3203
+ * See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions boundaries for IAM entities</a>
3204
3204
  * for more details about IAM permission boundaries.
3205
3205
  * </p>
3206
3206
  * @public
@@ -3220,14 +3220,14 @@ export interface DelegationRequest {
3220
3220
  ApproverId?: string | undefined;
3221
3221
  /**
3222
3222
  * <p>The state of this delegation request.</p>
3223
- * <p>See the <a href="IAM/latest/UserGuide/temporary-delegation-building-integration.html#temporary-delegation-request-lifecycle">Understanding the Request Lifecycle</a> for an explanation of how these
3224
- * states are transitioned.</p>
3223
+ * <p>See the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/temporary-delegation-building-integration.html#temporary-delegation-request-lifecycle">Understanding the Request Lifecycle</a> for an explanation of how these
3224
+ * states are transitioned. </p>
3225
3225
  * @public
3226
3226
  */
3227
3227
  State?: StateType | undefined;
3228
3228
  /**
3229
3229
  * <p>The expiry time of this delegation request</p>
3230
- * <p>See the <a href="IAM/latest/UserGuide/temporary-delegation-building-integration.html#temporary-delegation-request-lifecycle">Understanding the Request Lifecycle</a> for
3230
+ * <p>See the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/temporary-delegation-building-integration.html#temporary-delegation-request-lifecycle">Understanding the Request Lifecycle</a> for
3231
3231
  * details on the life time of a delegation request at each state.</p>
3232
3232
  * @public
3233
3233
  */
@@ -6629,7 +6629,7 @@ export interface ServiceSpecificCredentialMetadata {
6629
6629
  */
6630
6630
  ServiceUserName?: string | undefined;
6631
6631
  /**
6632
- * <p>For Bedrock API keys, this is the public portion of the credential that includes the IAM
6632
+ * <p>For Bedrock API keys and CloudWatch Logs API keys, this is the public portion of the credential that includes the IAM
6633
6633
  * user name and a suffix containing version and creation information.</p>
6634
6634
  * @public
6635
6635
  */
@@ -6642,7 +6642,7 @@ export interface ServiceSpecificCredentialMetadata {
6642
6642
  CreateDate: Date | undefined;
6643
6643
  /**
6644
6644
  * <p>The date and time when the service specific credential expires. This field is only
6645
- * present for Bedrock API keys that were created with an expiration period.</p>
6645
+ * present for Bedrock API keys and CloudWatch Logs API keys that were created with an expiration period.</p>
6646
6646
  * @public
6647
6647
  */
6648
6648
  ExpirationDate?: Date | undefined;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iam",
3
3
  "description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
4
- "version": "3.1003.0",
4
+ "version": "3.1009.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-iam",
@@ -27,47 +27,47 @@
27
27
  "dependencies": {
28
28
  "@aws-crypto/sha256-browser": "5.2.0",
29
29
  "@aws-crypto/sha256-js": "5.2.0",
30
- "@aws-sdk/core": "^3.973.18",
31
- "@aws-sdk/credential-provider-node": "^3.972.17",
32
- "@aws-sdk/middleware-host-header": "^3.972.7",
33
- "@aws-sdk/middleware-logger": "^3.972.7",
34
- "@aws-sdk/middleware-recursion-detection": "^3.972.7",
35
- "@aws-sdk/middleware-user-agent": "^3.972.18",
36
- "@aws-sdk/region-config-resolver": "^3.972.7",
37
- "@aws-sdk/types": "^3.973.5",
38
- "@aws-sdk/util-endpoints": "^3.996.4",
39
- "@aws-sdk/util-user-agent-browser": "^3.972.7",
40
- "@aws-sdk/util-user-agent-node": "^3.973.3",
41
- "@smithy/config-resolver": "^4.4.10",
42
- "@smithy/core": "^3.23.8",
43
- "@smithy/fetch-http-handler": "^5.3.13",
44
- "@smithy/hash-node": "^4.2.11",
45
- "@smithy/invalid-dependency": "^4.2.11",
46
- "@smithy/middleware-content-length": "^4.2.11",
47
- "@smithy/middleware-endpoint": "^4.4.22",
48
- "@smithy/middleware-retry": "^4.4.39",
49
- "@smithy/middleware-serde": "^4.2.12",
50
- "@smithy/middleware-stack": "^4.2.11",
51
- "@smithy/node-config-provider": "^4.3.11",
52
- "@smithy/node-http-handler": "^4.4.14",
53
- "@smithy/protocol-http": "^5.3.11",
54
- "@smithy/smithy-client": "^4.12.2",
55
- "@smithy/types": "^4.13.0",
56
- "@smithy/url-parser": "^4.2.11",
30
+ "@aws-sdk/core": "^3.973.20",
31
+ "@aws-sdk/credential-provider-node": "^3.972.21",
32
+ "@aws-sdk/middleware-host-header": "^3.972.8",
33
+ "@aws-sdk/middleware-logger": "^3.972.8",
34
+ "@aws-sdk/middleware-recursion-detection": "^3.972.8",
35
+ "@aws-sdk/middleware-user-agent": "^3.972.21",
36
+ "@aws-sdk/region-config-resolver": "^3.972.8",
37
+ "@aws-sdk/types": "^3.973.6",
38
+ "@aws-sdk/util-endpoints": "^3.996.5",
39
+ "@aws-sdk/util-user-agent-browser": "^3.972.8",
40
+ "@aws-sdk/util-user-agent-node": "^3.973.7",
41
+ "@smithy/config-resolver": "^4.4.11",
42
+ "@smithy/core": "^3.23.11",
43
+ "@smithy/fetch-http-handler": "^5.3.15",
44
+ "@smithy/hash-node": "^4.2.12",
45
+ "@smithy/invalid-dependency": "^4.2.12",
46
+ "@smithy/middleware-content-length": "^4.2.12",
47
+ "@smithy/middleware-endpoint": "^4.4.25",
48
+ "@smithy/middleware-retry": "^4.4.42",
49
+ "@smithy/middleware-serde": "^4.2.14",
50
+ "@smithy/middleware-stack": "^4.2.12",
51
+ "@smithy/node-config-provider": "^4.3.12",
52
+ "@smithy/node-http-handler": "^4.4.16",
53
+ "@smithy/protocol-http": "^5.3.12",
54
+ "@smithy/smithy-client": "^4.12.5",
55
+ "@smithy/types": "^4.13.1",
56
+ "@smithy/url-parser": "^4.2.12",
57
57
  "@smithy/util-base64": "^4.3.2",
58
58
  "@smithy/util-body-length-browser": "^4.2.2",
59
59
  "@smithy/util-body-length-node": "^4.2.3",
60
- "@smithy/util-defaults-mode-browser": "^4.3.38",
61
- "@smithy/util-defaults-mode-node": "^4.2.41",
62
- "@smithy/util-endpoints": "^3.3.2",
63
- "@smithy/util-middleware": "^4.2.11",
64
- "@smithy/util-retry": "^4.2.11",
60
+ "@smithy/util-defaults-mode-browser": "^4.3.41",
61
+ "@smithy/util-defaults-mode-node": "^4.2.44",
62
+ "@smithy/util-endpoints": "^3.3.3",
63
+ "@smithy/util-middleware": "^4.2.12",
64
+ "@smithy/util-retry": "^4.2.12",
65
65
  "@smithy/util-utf8": "^4.2.2",
66
- "@smithy/util-waiter": "^4.2.11",
66
+ "@smithy/util-waiter": "^4.2.13",
67
67
  "tslib": "^2.6.2"
68
68
  },
69
69
  "devDependencies": {
70
- "@smithy/snapshot-testing": "^1.0.9",
70
+ "@smithy/snapshot-testing": "^2.0.2",
71
71
  "@tsconfig/node20": "20.1.8",
72
72
  "@types/node": "^20.14.8",
73
73
  "concurrently": "7.0.0",