@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sqs",
3
3
  "description": "AWS SDK for JavaScript Sqs 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-sqs",
@@ -29,48 +29,48 @@
29
29
  "dependencies": {
30
30
  "@aws-crypto/sha256-browser": "5.2.0",
31
31
  "@aws-crypto/sha256-js": "5.2.0",
32
- "@aws-sdk/core": "^3.973.18",
33
- "@aws-sdk/credential-provider-node": "^3.972.17",
34
- "@aws-sdk/middleware-host-header": "^3.972.7",
35
- "@aws-sdk/middleware-logger": "^3.972.7",
36
- "@aws-sdk/middleware-recursion-detection": "^3.972.7",
37
- "@aws-sdk/middleware-sdk-sqs": "^3.972.13",
38
- "@aws-sdk/middleware-user-agent": "^3.972.18",
39
- "@aws-sdk/region-config-resolver": "^3.972.7",
40
- "@aws-sdk/types": "^3.973.5",
41
- "@aws-sdk/util-endpoints": "^3.996.4",
42
- "@aws-sdk/util-user-agent-browser": "^3.972.7",
43
- "@aws-sdk/util-user-agent-node": "^3.973.3",
44
- "@smithy/config-resolver": "^4.4.10",
45
- "@smithy/core": "^3.23.8",
46
- "@smithy/fetch-http-handler": "^5.3.13",
47
- "@smithy/hash-node": "^4.2.11",
48
- "@smithy/invalid-dependency": "^4.2.11",
49
- "@smithy/md5-js": "^4.2.11",
50
- "@smithy/middleware-content-length": "^4.2.11",
51
- "@smithy/middleware-endpoint": "^4.4.22",
52
- "@smithy/middleware-retry": "^4.4.39",
53
- "@smithy/middleware-serde": "^4.2.12",
54
- "@smithy/middleware-stack": "^4.2.11",
55
- "@smithy/node-config-provider": "^4.3.11",
56
- "@smithy/node-http-handler": "^4.4.14",
57
- "@smithy/protocol-http": "^5.3.11",
58
- "@smithy/smithy-client": "^4.12.2",
59
- "@smithy/types": "^4.13.0",
60
- "@smithy/url-parser": "^4.2.11",
32
+ "@aws-sdk/core": "^3.973.20",
33
+ "@aws-sdk/credential-provider-node": "^3.972.21",
34
+ "@aws-sdk/middleware-host-header": "^3.972.8",
35
+ "@aws-sdk/middleware-logger": "^3.972.8",
36
+ "@aws-sdk/middleware-recursion-detection": "^3.972.8",
37
+ "@aws-sdk/middleware-sdk-sqs": "^3.972.15",
38
+ "@aws-sdk/middleware-user-agent": "^3.972.21",
39
+ "@aws-sdk/region-config-resolver": "^3.972.8",
40
+ "@aws-sdk/types": "^3.973.6",
41
+ "@aws-sdk/util-endpoints": "^3.996.5",
42
+ "@aws-sdk/util-user-agent-browser": "^3.972.8",
43
+ "@aws-sdk/util-user-agent-node": "^3.973.7",
44
+ "@smithy/config-resolver": "^4.4.11",
45
+ "@smithy/core": "^3.23.11",
46
+ "@smithy/fetch-http-handler": "^5.3.15",
47
+ "@smithy/hash-node": "^4.2.12",
48
+ "@smithy/invalid-dependency": "^4.2.12",
49
+ "@smithy/md5-js": "^4.2.12",
50
+ "@smithy/middleware-content-length": "^4.2.12",
51
+ "@smithy/middleware-endpoint": "^4.4.25",
52
+ "@smithy/middleware-retry": "^4.4.42",
53
+ "@smithy/middleware-serde": "^4.2.14",
54
+ "@smithy/middleware-stack": "^4.2.12",
55
+ "@smithy/node-config-provider": "^4.3.12",
56
+ "@smithy/node-http-handler": "^4.4.16",
57
+ "@smithy/protocol-http": "^5.3.12",
58
+ "@smithy/smithy-client": "^4.12.5",
59
+ "@smithy/types": "^4.13.1",
60
+ "@smithy/url-parser": "^4.2.12",
61
61
  "@smithy/util-base64": "^4.3.2",
62
62
  "@smithy/util-body-length-browser": "^4.2.2",
63
63
  "@smithy/util-body-length-node": "^4.2.3",
64
- "@smithy/util-defaults-mode-browser": "^4.3.38",
65
- "@smithy/util-defaults-mode-node": "^4.2.41",
66
- "@smithy/util-endpoints": "^3.3.2",
67
- "@smithy/util-middleware": "^4.2.11",
68
- "@smithy/util-retry": "^4.2.11",
64
+ "@smithy/util-defaults-mode-browser": "^4.3.41",
65
+ "@smithy/util-defaults-mode-node": "^4.2.44",
66
+ "@smithy/util-endpoints": "^3.3.3",
67
+ "@smithy/util-middleware": "^4.2.12",
68
+ "@smithy/util-retry": "^4.2.12",
69
69
  "@smithy/util-utf8": "^4.2.2",
70
70
  "tslib": "^2.6.2"
71
71
  },
72
72
  "devDependencies": {
73
- "@smithy/snapshot-testing": "^1.0.9",
73
+ "@smithy/snapshot-testing": "^2.0.2",
74
74
  "@tsconfig/node20": "20.1.8",
75
75
  "@types/node": "^20.14.8",
76
76
  "concurrently": "7.0.0",
@@ -46,8 +46,9 @@ Reference</a>
46
46
  </ul>
47
47
 
48
48
  ## Installing
49
- To install this package, simply type add or install @aws-sdk/client-ssm
50
- using your favorite package manager:
49
+
50
+ To install this package, use the CLI of your favorite package manager:
51
+
51
52
  - `npm install @aws-sdk/client-ssm`
52
53
  - `yarn add @aws-sdk/client-ssm`
53
54
  - `pnpm add @aws-sdk/client-ssm`
@@ -72,15 +73,15 @@ import { SSMClient, ListNodesCommand } from "@aws-sdk/client-ssm";
72
73
 
73
74
  ### Usage
74
75
 
75
- To send a request, you:
76
+ To send a request:
76
77
 
77
- - Initiate client with configuration (e.g. credentials, region).
78
- - Initiate command with input parameters.
79
- - Call `send` operation on client with command object as input.
80
- - If you are using a custom http handler, you may call `destroy()` to close open connections.
78
+ - Instantiate a client with configuration (e.g. credentials, region).
79
+ - See [docs/CLIENTS](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/CLIENTS.md) for configuration details.
80
+ - See [@aws-sdk/config](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/config/README.md) for additional options.
81
+ - Instantiate a command with input parameters.
82
+ - Call the `send` operation on the client, providing the command object as input.
81
83
 
82
84
  ```js
83
- // a client can be shared by different commands.
84
85
  const client = new SSMClient({ region: "REGION" });
85
86
 
86
87
  const params = { /** input parameters */ };
@@ -89,7 +90,7 @@ const command = new ListNodesCommand(params);
89
90
 
90
91
  #### Async/await
91
92
 
92
- We recommend using [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
93
+ We recommend using the [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
93
94
  operator to wait for the promise returned by send operation as follows:
94
95
 
95
96
  ```js
@@ -104,26 +105,9 @@ try {
104
105
  }
105
106
  ```
106
107
 
107
- Async-await is clean, concise, intuitive, easy to debug and has better error handling
108
- as compared to using Promise chains or callbacks.
109
-
110
108
  #### Promises
111
109
 
112
- You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining)
113
- to execute send operation.
114
-
115
- ```js
116
- client.send(command).then(
117
- (data) => {
118
- // process data.
119
- },
120
- (error) => {
121
- // error handling.
122
- }
123
- );
124
- ```
125
-
126
- Promises can also be called using `.catch()` and `.finally()` as follows:
110
+ You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining).
127
111
 
128
112
  ```js
129
113
  client
@@ -139,27 +123,21 @@ client
139
123
  });
140
124
  ```
141
125
 
142
- #### Callbacks
143
-
144
- We do not recommend using callbacks because of [callback hell](http://callbackhell.com/),
145
- but they are supported by the send operation.
126
+ #### Aggregated client
146
127
 
147
- ```js
148
- // callbacks.
149
- client.send(command, (err, data) => {
150
- // process err and data.
151
- });
152
- ```
128
+ The aggregated client class is exported from the same package, but without the "Client" suffix.
153
129
 
154
- #### v2 compatible style
130
+ `SSM` extends `SSMClient` and additionally supports all operations, waiters, and paginators as methods.
131
+ This style may be familiar to you from the AWS SDK for JavaScript v2.
155
132
 
156
- The client can also send requests using v2 compatible style.
157
- However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post
158
- on [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/)
133
+ If you are bundling the AWS SDK, we recommend using only the bare-bones client (`SSMClient`).
134
+ More details are in the blog post on
135
+ [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/).
159
136
 
160
137
  ```ts
161
- import * as AWS from "@aws-sdk/client-ssm";
162
- const client = new AWS.SSM({ region: "REGION" });
138
+ import { SSM } from "@aws-sdk/client-ssm";
139
+
140
+ const client = new SSM({ region: "REGION" });
163
141
 
164
142
  // async/await.
165
143
  try {
@@ -179,7 +157,7 @@ client
179
157
  // error handling.
180
158
  });
181
159
 
182
- // callbacks.
160
+ // callbacks (not recommended).
183
161
  client.listNodes(params, (err, data) => {
184
162
  // process err and data.
185
163
  });
@@ -207,12 +185,14 @@ try {
207
185
  }
208
186
  ```
209
187
 
188
+ See also [docs/ERROR_HANDLING](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/ERROR_HANDLING.md).
189
+
210
190
  ## Getting Help
211
191
 
212
192
  Please use these community resources for getting help.
213
- We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
193
+ We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
214
194
 
215
- - Visit [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
195
+ - Visit the [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
216
196
  or [API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/index.html).
217
197
  - Check out the blog posts tagged with [`aws-sdk-js`](https://aws.amazon.com/blogs/developer/tag/aws-sdk-js/)
218
198
  on AWS Developer Blog.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ssm",
3
3
  "description": "AWS SDK for JavaScript Ssm 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-ssm",
@@ -23,43 +23,43 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "^3.973.18",
27
- "@aws-sdk/credential-provider-node": "^3.972.17",
28
- "@aws-sdk/middleware-host-header": "^3.972.7",
29
- "@aws-sdk/middleware-logger": "^3.972.7",
30
- "@aws-sdk/middleware-recursion-detection": "^3.972.7",
31
- "@aws-sdk/middleware-user-agent": "^3.972.18",
32
- "@aws-sdk/region-config-resolver": "^3.972.7",
33
- "@aws-sdk/types": "^3.973.5",
34
- "@aws-sdk/util-endpoints": "^3.996.4",
35
- "@aws-sdk/util-user-agent-browser": "^3.972.7",
36
- "@aws-sdk/util-user-agent-node": "^3.973.3",
37
- "@smithy/config-resolver": "^4.4.10",
38
- "@smithy/core": "^3.23.8",
39
- "@smithy/fetch-http-handler": "^5.3.13",
40
- "@smithy/hash-node": "^4.2.11",
41
- "@smithy/invalid-dependency": "^4.2.11",
42
- "@smithy/middleware-content-length": "^4.2.11",
43
- "@smithy/middleware-endpoint": "^4.4.22",
44
- "@smithy/middleware-retry": "^4.4.39",
45
- "@smithy/middleware-serde": "^4.2.12",
46
- "@smithy/middleware-stack": "^4.2.11",
47
- "@smithy/node-config-provider": "^4.3.11",
48
- "@smithy/node-http-handler": "^4.4.14",
49
- "@smithy/protocol-http": "^5.3.11",
50
- "@smithy/smithy-client": "^4.12.2",
51
- "@smithy/types": "^4.13.0",
52
- "@smithy/url-parser": "^4.2.11",
26
+ "@aws-sdk/core": "^3.973.20",
27
+ "@aws-sdk/credential-provider-node": "^3.972.21",
28
+ "@aws-sdk/middleware-host-header": "^3.972.8",
29
+ "@aws-sdk/middleware-logger": "^3.972.8",
30
+ "@aws-sdk/middleware-recursion-detection": "^3.972.8",
31
+ "@aws-sdk/middleware-user-agent": "^3.972.21",
32
+ "@aws-sdk/region-config-resolver": "^3.972.8",
33
+ "@aws-sdk/types": "^3.973.6",
34
+ "@aws-sdk/util-endpoints": "^3.996.5",
35
+ "@aws-sdk/util-user-agent-browser": "^3.972.8",
36
+ "@aws-sdk/util-user-agent-node": "^3.973.7",
37
+ "@smithy/config-resolver": "^4.4.11",
38
+ "@smithy/core": "^3.23.11",
39
+ "@smithy/fetch-http-handler": "^5.3.15",
40
+ "@smithy/hash-node": "^4.2.12",
41
+ "@smithy/invalid-dependency": "^4.2.12",
42
+ "@smithy/middleware-content-length": "^4.2.12",
43
+ "@smithy/middleware-endpoint": "^4.4.25",
44
+ "@smithy/middleware-retry": "^4.4.42",
45
+ "@smithy/middleware-serde": "^4.2.14",
46
+ "@smithy/middleware-stack": "^4.2.12",
47
+ "@smithy/node-config-provider": "^4.3.12",
48
+ "@smithy/node-http-handler": "^4.4.16",
49
+ "@smithy/protocol-http": "^5.3.12",
50
+ "@smithy/smithy-client": "^4.12.5",
51
+ "@smithy/types": "^4.13.1",
52
+ "@smithy/url-parser": "^4.2.12",
53
53
  "@smithy/util-base64": "^4.3.2",
54
54
  "@smithy/util-body-length-browser": "^4.2.2",
55
55
  "@smithy/util-body-length-node": "^4.2.3",
56
- "@smithy/util-defaults-mode-browser": "^4.3.38",
57
- "@smithy/util-defaults-mode-node": "^4.2.41",
58
- "@smithy/util-endpoints": "^3.3.2",
59
- "@smithy/util-middleware": "^4.2.11",
60
- "@smithy/util-retry": "^4.2.11",
56
+ "@smithy/util-defaults-mode-browser": "^4.3.41",
57
+ "@smithy/util-defaults-mode-node": "^4.2.44",
58
+ "@smithy/util-endpoints": "^3.3.3",
59
+ "@smithy/util-middleware": "^4.2.12",
60
+ "@smithy/util-retry": "^4.2.12",
61
61
  "@smithy/util-utf8": "^4.2.2",
62
- "@smithy/util-waiter": "^4.2.11",
62
+ "@smithy/util-waiter": "^4.2.13",
63
63
  "tslib": "^2.6.2"
64
64
  },
65
65
  "devDependencies": {
@@ -1722,6 +1722,9 @@ class AwsEc2QueryProtocol extends AwsQueryProtocol {
1722
1722
  };
1723
1723
  Object.assign(this.serializer.settings, ec2Settings);
1724
1724
  }
1725
+ getShapeId() {
1726
+ return "aws.protocols#ec2Query";
1727
+ }
1725
1728
  useNestedResult() {
1726
1729
  return false;
1727
1730
  }
@@ -2183,6 +2186,7 @@ exports.JsonShapeDeserializer = JsonShapeDeserializer;
2183
2186
  exports.JsonShapeSerializer = JsonShapeSerializer;
2184
2187
  exports.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS = NODE_AUTH_SCHEME_PREFERENCE_OPTIONS;
2185
2188
  exports.NODE_SIGV4A_CONFIG_OPTIONS = NODE_SIGV4A_CONFIG_OPTIONS;
2189
+ exports.QueryShapeSerializer = QueryShapeSerializer;
2186
2190
  exports.XmlCodec = XmlCodec;
2187
2191
  exports.XmlShapeDeserializer = XmlShapeDeserializer;
2188
2192
  exports.XmlShapeSerializer = XmlShapeSerializer;
@@ -1384,6 +1384,9 @@ class AwsEc2QueryProtocol extends AwsQueryProtocol {
1384
1384
  };
1385
1385
  Object.assign(this.serializer.settings, ec2Settings);
1386
1386
  }
1387
+ getShapeId() {
1388
+ return "aws.protocols#ec2Query";
1389
+ }
1387
1390
  useNestedResult() {
1388
1391
  return false;
1389
1392
  }
@@ -1840,6 +1843,7 @@ exports.AwsSmithyRpcV2CborProtocol = AwsSmithyRpcV2CborProtocol;
1840
1843
  exports.JsonCodec = JsonCodec;
1841
1844
  exports.JsonShapeDeserializer = JsonShapeDeserializer;
1842
1845
  exports.JsonShapeSerializer = JsonShapeSerializer;
1846
+ exports.QueryShapeSerializer = QueryShapeSerializer;
1843
1847
  exports.XmlCodec = XmlCodec;
1844
1848
  exports.XmlShapeDeserializer = XmlShapeDeserializer;
1845
1849
  exports.XmlShapeSerializer = XmlShapeSerializer;
@@ -11,6 +11,8 @@ export * from "./json/awsExpectUnion";
11
11
  export * from "./json/parseJsonBody";
12
12
  export * from "./query/AwsEc2QueryProtocol";
13
13
  export * from "./query/AwsQueryProtocol";
14
+ export * from "./query/QuerySerializerSettings";
15
+ export * from "./query/QueryShapeSerializer";
14
16
  export * from "./xml/AwsRestXmlProtocol";
15
17
  export * from "./xml/XmlCodec";
16
18
  export * from "./xml/XmlShapeDeserializer";
@@ -12,6 +12,9 @@ export class AwsEc2QueryProtocol extends AwsQueryProtocol {
12
12
  };
13
13
  Object.assign(this.serializer.settings, ec2Settings);
14
14
  }
15
+ getShapeId() {
16
+ return "aws.protocols#ec2Query";
17
+ }
15
18
  useNestedResult() {
16
19
  return false;
17
20
  }
@@ -11,6 +11,8 @@ export * from "./json/awsExpectUnion";
11
11
  export * from "./json/parseJsonBody";
12
12
  export * from "./query/AwsEc2QueryProtocol";
13
13
  export * from "./query/AwsQueryProtocol";
14
+ export * from "./query/QuerySerializerSettings";
15
+ export * from "./query/QueryShapeSerializer";
14
16
  export * from "./xml/AwsRestXmlProtocol";
15
17
  export * from "./xml/XmlCodec";
16
18
  export * from "./xml/XmlShapeDeserializer";
@@ -13,6 +13,10 @@ export declare class AwsEc2QueryProtocol extends AwsQueryProtocol {
13
13
  xmlNamespace: string;
14
14
  version: string;
15
15
  });
16
+ /**
17
+ * @override
18
+ */
19
+ getShapeId(): string;
16
20
  /**
17
21
  * EC2 Query reads XResponse.XResult instead of XResponse directly.
18
22
  */
@@ -1,4 +1,7 @@
1
1
  import type { CodecSettings } from "@smithy/types";
2
+ /**
3
+ * @internal
4
+ */
2
5
  export type QuerySerializerSettings = CodecSettings & {
3
6
  capitalizeKeys?: boolean;
4
7
  flattenLists?: boolean;
@@ -11,6 +11,8 @@ export * from "./json/awsExpectUnion";
11
11
  export * from "./json/parseJsonBody";
12
12
  export * from "./query/AwsEc2QueryProtocol";
13
13
  export * from "./query/AwsQueryProtocol";
14
+ export * from "./query/QuerySerializerSettings";
15
+ export * from "./query/QueryShapeSerializer";
14
16
  export * from "./xml/AwsRestXmlProtocol";
15
17
  export * from "./xml/XmlCodec";
16
18
  export * from "./xml/XmlShapeDeserializer";
@@ -10,5 +10,6 @@ export declare class AwsEc2QueryProtocol extends AwsQueryProtocol {
10
10
  xmlNamespace: string;
11
11
  version: string;
12
12
  });
13
+ getShapeId(): string;
13
14
  protected useNestedResult(): boolean;
14
15
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/core",
3
- "version": "3.973.18",
3
+ "version": "3.973.20",
4
4
  "description": "Core functions & classes shared by multiple AWS SDK clients.",
5
5
  "scripts": {
6
6
  "build": "yarn lint && concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
@@ -81,17 +81,17 @@
81
81
  },
82
82
  "license": "Apache-2.0",
83
83
  "dependencies": {
84
- "@aws-sdk/types": "^3.973.5",
85
- "@aws-sdk/xml-builder": "^3.972.10",
86
- "@smithy/core": "^3.23.8",
87
- "@smithy/node-config-provider": "^4.3.11",
88
- "@smithy/property-provider": "^4.2.11",
89
- "@smithy/protocol-http": "^5.3.11",
90
- "@smithy/signature-v4": "^5.3.11",
91
- "@smithy/smithy-client": "^4.12.2",
92
- "@smithy/types": "^4.13.0",
84
+ "@aws-sdk/types": "^3.973.6",
85
+ "@aws-sdk/xml-builder": "^3.972.11",
86
+ "@smithy/core": "^3.23.11",
87
+ "@smithy/node-config-provider": "^4.3.12",
88
+ "@smithy/property-provider": "^4.2.12",
89
+ "@smithy/protocol-http": "^5.3.12",
90
+ "@smithy/signature-v4": "^5.3.12",
91
+ "@smithy/smithy-client": "^4.12.5",
92
+ "@smithy/types": "^4.13.1",
93
93
  "@smithy/util-base64": "^4.3.2",
94
- "@smithy/util-middleware": "^4.2.11",
94
+ "@smithy/util-middleware": "^4.2.12",
95
95
  "@smithy/util-utf8": "^4.2.2",
96
96
  "tslib": "^2.6.2"
97
97
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/crc64-nvme",
3
- "version": "3.972.4",
3
+ "version": "3.972.5",
4
4
  "description": "A pure JS implementation of CRC64-NVME checksum",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@smithy/types": "^4.13.0",
27
+ "@smithy/types": "^4.13.1",
28
28
  "tslib": "^2.6.2"
29
29
  },
30
30
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-env",
3
- "version": "3.972.16",
3
+ "version": "3.972.18",
4
4
  "description": "AWS credential provider that sources credentials from known environment variables",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -26,10 +26,10 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/core": "^3.973.18",
30
- "@aws-sdk/types": "^3.973.5",
31
- "@smithy/property-provider": "^4.2.11",
32
- "@smithy/types": "^4.13.0",
29
+ "@aws-sdk/core": "^3.973.20",
30
+ "@aws-sdk/types": "^3.973.6",
31
+ "@smithy/property-provider": "^4.2.12",
32
+ "@smithy/types": "^4.13.1",
33
33
  "tslib": "^2.6.2"
34
34
  },
35
35
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-http",
3
- "version": "3.972.18",
3
+ "version": "3.972.20",
4
4
  "description": "AWS credential provider for containers and HTTP sources",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -28,15 +28,15 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/core": "^3.973.18",
32
- "@aws-sdk/types": "^3.973.5",
33
- "@smithy/fetch-http-handler": "^5.3.13",
34
- "@smithy/node-http-handler": "^4.4.14",
35
- "@smithy/property-provider": "^4.2.11",
36
- "@smithy/protocol-http": "^5.3.11",
37
- "@smithy/smithy-client": "^4.12.2",
38
- "@smithy/types": "^4.13.0",
39
- "@smithy/util-stream": "^4.5.17",
31
+ "@aws-sdk/core": "^3.973.20",
32
+ "@aws-sdk/types": "^3.973.6",
33
+ "@smithy/fetch-http-handler": "^5.3.15",
34
+ "@smithy/node-http-handler": "^4.4.16",
35
+ "@smithy/property-provider": "^4.2.12",
36
+ "@smithy/protocol-http": "^5.3.12",
37
+ "@smithy/smithy-client": "^4.12.5",
38
+ "@smithy/types": "^4.13.1",
39
+ "@smithy/util-stream": "^4.5.19",
40
40
  "tslib": "^2.6.2"
41
41
  },
42
42
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-ini",
3
- "version": "3.972.16",
3
+ "version": "3.972.20",
4
4
  "description": "AWS credential provider that sources credentials from ~/.aws/credentials and ~/.aws/config",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -28,19 +28,19 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/core": "^3.973.18",
32
- "@aws-sdk/credential-provider-env": "^3.972.16",
33
- "@aws-sdk/credential-provider-http": "^3.972.18",
34
- "@aws-sdk/credential-provider-login": "^3.972.16",
35
- "@aws-sdk/credential-provider-process": "^3.972.16",
36
- "@aws-sdk/credential-provider-sso": "^3.972.16",
37
- "@aws-sdk/credential-provider-web-identity": "^3.972.16",
38
- "@aws-sdk/nested-clients": "^3.996.6",
39
- "@aws-sdk/types": "^3.973.5",
40
- "@smithy/credential-provider-imds": "^4.2.11",
41
- "@smithy/property-provider": "^4.2.11",
42
- "@smithy/shared-ini-file-loader": "^4.4.6",
43
- "@smithy/types": "^4.13.0",
31
+ "@aws-sdk/core": "^3.973.20",
32
+ "@aws-sdk/credential-provider-env": "^3.972.18",
33
+ "@aws-sdk/credential-provider-http": "^3.972.20",
34
+ "@aws-sdk/credential-provider-login": "^3.972.20",
35
+ "@aws-sdk/credential-provider-process": "^3.972.18",
36
+ "@aws-sdk/credential-provider-sso": "^3.972.20",
37
+ "@aws-sdk/credential-provider-web-identity": "^3.972.20",
38
+ "@aws-sdk/nested-clients": "^3.996.10",
39
+ "@aws-sdk/types": "^3.973.6",
40
+ "@smithy/credential-provider-imds": "^4.2.12",
41
+ "@smithy/property-provider": "^4.2.12",
42
+ "@smithy/shared-ini-file-loader": "^4.4.7",
43
+ "@smithy/types": "^4.13.1",
44
44
  "tslib": "^2.6.2"
45
45
  },
46
46
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-login",
3
- "version": "3.972.16",
3
+ "version": "3.972.20",
4
4
  "description": "AWS credential provider that sources credentials from aws login cached tokens",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -28,13 +28,13 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/core": "^3.973.18",
32
- "@aws-sdk/nested-clients": "^3.996.6",
33
- "@aws-sdk/types": "^3.973.5",
34
- "@smithy/property-provider": "^4.2.11",
35
- "@smithy/protocol-http": "^5.3.11",
36
- "@smithy/shared-ini-file-loader": "^4.4.6",
37
- "@smithy/types": "^4.13.0",
31
+ "@aws-sdk/core": "^3.973.20",
32
+ "@aws-sdk/nested-clients": "^3.996.10",
33
+ "@aws-sdk/types": "^3.973.6",
34
+ "@smithy/property-provider": "^4.2.12",
35
+ "@smithy/protocol-http": "^5.3.12",
36
+ "@smithy/shared-ini-file-loader": "^4.4.7",
37
+ "@smithy/types": "^4.13.1",
38
38
  "tslib": "^2.6.2"
39
39
  },
40
40
  "devDependencies": {