@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,5 +1,5 @@
1
1
  import { StreamingBlobTypes } from "@smithy/types";
2
- import { AnalyticsS3ExportFileFormat, ArchiveStatus, BucketAbacStatus, BucketAccelerateStatus, BucketCannedACL, BucketLocationConstraint, BucketLogsPermission, BucketType, BucketVersioningStatus, ChecksumAlgorithm, ChecksumMode, ChecksumType, DataRedundancy, DeleteMarkerReplicationStatus, EncodingType, EncryptionType, Event, ExistingObjectReplicationStatus, ExpirationState, ExpirationStatus, FileHeaderInfo, FilterRuleName, IntelligentTieringAccessTier, IntelligentTieringStatus, InventoryConfigurationState, InventoryFormat, InventoryFrequency, InventoryIncludedObjectVersions, InventoryOptionalField, JSONType, LocationType, MetadataDirective, MetricsStatus, MFADelete, MFADeleteStatus, ObjectAttributes, ObjectCannedACL, ObjectLockEnabled, ObjectLockLegalHoldStatus, ObjectLockMode, ObjectLockRetentionMode, ObjectOwnership, ObjectStorageClass, ObjectVersionStorageClass, OptionalObjectAttributes, OwnerOverride, PartitionDateSource, Payer, Permission, Protocol, ReplicaModificationsStatus, ReplicationRuleStatus, ReplicationStatus, ReplicationTimeStatus, RequestCharged, RequestPayer, S3TablesBucketType, ServerSideEncryption, SessionMode, SseKmsEncryptedObjectsStatus, StorageClass, StorageClassAnalysisSchemaVersion, TableSseAlgorithm, TaggingDirective, Tier, TransitionDefaultMinimumObjectSize, TransitionStorageClass, Type } from "./enums";
2
+ import { AnalyticsS3ExportFileFormat, ArchiveStatus, BucketAbacStatus, BucketAccelerateStatus, BucketCannedACL, BucketLocationConstraint, BucketLogsPermission, BucketNamespace, BucketType, BucketVersioningStatus, ChecksumAlgorithm, ChecksumMode, ChecksumType, DataRedundancy, DeleteMarkerReplicationStatus, EncodingType, EncryptionType, Event, ExistingObjectReplicationStatus, ExpirationState, ExpirationStatus, FileHeaderInfo, FilterRuleName, IntelligentTieringAccessTier, IntelligentTieringStatus, InventoryConfigurationState, InventoryFormat, InventoryFrequency, InventoryIncludedObjectVersions, InventoryOptionalField, JSONType, LocationType, MetadataDirective, MetricsStatus, MFADelete, MFADeleteStatus, ObjectAttributes, ObjectCannedACL, ObjectLockEnabled, ObjectLockLegalHoldStatus, ObjectLockMode, ObjectLockRetentionMode, ObjectOwnership, ObjectStorageClass, ObjectVersionStorageClass, OptionalObjectAttributes, OwnerOverride, PartitionDateSource, Payer, Permission, Protocol, ReplicaModificationsStatus, ReplicationRuleStatus, ReplicationStatus, ReplicationTimeStatus, RequestCharged, RequestPayer, S3TablesBucketType, ServerSideEncryption, SessionMode, SseKmsEncryptedObjectsStatus, StorageClass, StorageClassAnalysisSchemaVersion, TableSseAlgorithm, TaggingDirective, Tier, TransitionDefaultMinimumObjectSize, TransitionStorageClass, Type } from "./enums";
3
3
  /**
4
4
  * <p>The ABAC status of the general purpose bucket. When ABAC is enabled for the general purpose bucket, you can use tags to manage access to the general purpose buckets as well as for cost tracking purposes. When ABAC is disabled for the general purpose buckets, you can only use tags for cost tracking purposes. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging.html">Using tags with S3 general purpose buckets</a>. </p>
5
5
  * @public
@@ -1718,6 +1718,25 @@ export interface CreateBucketRequest {
1718
1718
  * @public
1719
1719
  */
1720
1720
  ObjectOwnership?: ObjectOwnership | undefined;
1721
+ /**
1722
+ * <p>Specifies the namespace where you want to create your general purpose bucket. When you create a
1723
+ * general purpose bucket, you can choose to create a bucket in the shared global namespace or you can choose to
1724
+ * create a bucket in your account regional namespace. Your account regional namespace is a subdivision of
1725
+ * the global namespace that only your account can create buckets in. For more information on bucket
1726
+ * namespaces, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/gpbucketnamespaces.html">Namespaces for general purpose buckets</a>.</p>
1727
+ * <p>General purpose buckets in your account regional namespace must follow a specific naming convention. These
1728
+ * buckets consist of a bucket name prefix that you create, and a suffix that contains your 12-digit Amazon Web Services
1729
+ * Account ID, the Amazon Web Services Region code, and ends with <code>-an</code>. Bucket names must follow the format
1730
+ * <code>bucket-name-prefix-accountId-region-an</code> (for example,
1731
+ * <code>amzn-s3-demo-bucket-111122223333-us-west-2-an</code>). For information about bucket naming
1732
+ * restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html#account-regional-naming-rules">Account regional namespace naming rules</a>
1733
+ * in the <i>Amazon S3 User Guide</i>.</p>
1734
+ * <note>
1735
+ * <p>This functionality is not supported for directory buckets.</p>
1736
+ * </note>
1737
+ * @public
1738
+ */
1739
+ BucketNamespace?: BucketNamespace | undefined;
1721
1740
  }
1722
1741
  /**
1723
1742
  * <p>
@@ -2742,7 +2761,10 @@ export interface CreateSessionOutput {
2742
2761
  export interface CreateSessionRequest {
2743
2762
  /**
2744
2763
  * <p>Specifies the mode of the session that will be created, either <code>ReadWrite</code> or
2745
- * <code>ReadOnly</code>. By default, a <code>ReadWrite</code> session is created. A
2764
+ * <code>ReadOnly</code>. If no session mode is specified, the default behavior attempts to create
2765
+ * a session with the maximum allowable privilege. It will first attempt to create a
2766
+ * <code>ReadWrite</code> session, and if that is not allowed by permissions, it will attempt to create a
2767
+ * <code>ReadOnly</code> session. If neither session type is allowed, the request will return an Access Denied error. A
2746
2768
  * <code>ReadWrite</code> session is capable of executing all the Zonal endpoint API operations on a directory bucket. A
2747
2769
  * <code>ReadOnly</code> session is constrained to execute the following Zonal endpoint API operations:
2748
2770
  * <code>GetObject</code>, <code>HeadObject</code>, <code>ListObjectsV2</code>,
@@ -118,6 +118,12 @@ export declare const BucketCannedACL: {
118
118
  };
119
119
  export type BucketCannedACL =
120
120
  (typeof BucketCannedACL)[keyof typeof BucketCannedACL];
121
+ export declare const BucketNamespace: {
122
+ readonly ACCOUNT_REGIONAL: "account-regional";
123
+ readonly GLOBAL: "global";
124
+ };
125
+ export type BucketNamespace =
126
+ (typeof BucketNamespace)[keyof typeof BucketNamespace];
121
127
  export declare const DataRedundancy: {
122
128
  readonly SingleAvailabilityZone: "SingleAvailabilityZone";
123
129
  readonly SingleLocalZone: "SingleLocalZone";
@@ -7,6 +7,7 @@ import {
7
7
  BucketCannedACL,
8
8
  BucketLocationConstraint,
9
9
  BucketLogsPermission,
10
+ BucketNamespace,
10
11
  BucketType,
11
12
  BucketVersioningStatus,
12
13
  ChecksumAlgorithm,
@@ -262,6 +263,7 @@ export interface CreateBucketRequest {
262
263
  GrantWriteACP?: string | undefined;
263
264
  ObjectLockEnabledForBucket?: boolean | undefined;
264
265
  ObjectOwnership?: ObjectOwnership | undefined;
266
+ BucketNamespace?: BucketNamespace | undefined;
265
267
  }
266
268
  export interface MetadataTableEncryptionConfiguration {
267
269
  SseAlgorithm: TableSseAlgorithm | undefined;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3",
3
3
  "description": "AWS SDK for JavaScript S3 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-s3",
@@ -30,62 +30,62 @@
30
30
  "@aws-crypto/sha1-browser": "5.2.0",
31
31
  "@aws-crypto/sha256-browser": "5.2.0",
32
32
  "@aws-crypto/sha256-js": "5.2.0",
33
- "@aws-sdk/core": "^3.973.18",
34
- "@aws-sdk/credential-provider-node": "^3.972.17",
35
- "@aws-sdk/middleware-bucket-endpoint": "^3.972.7",
36
- "@aws-sdk/middleware-expect-continue": "^3.972.7",
37
- "@aws-sdk/middleware-flexible-checksums": "^3.973.4",
38
- "@aws-sdk/middleware-host-header": "^3.972.7",
39
- "@aws-sdk/middleware-location-constraint": "^3.972.7",
40
- "@aws-sdk/middleware-logger": "^3.972.7",
41
- "@aws-sdk/middleware-recursion-detection": "^3.972.7",
42
- "@aws-sdk/middleware-sdk-s3": "^3.972.18",
43
- "@aws-sdk/middleware-ssec": "^3.972.7",
44
- "@aws-sdk/middleware-user-agent": "^3.972.18",
45
- "@aws-sdk/region-config-resolver": "^3.972.7",
46
- "@aws-sdk/signature-v4-multi-region": "^3.996.6",
47
- "@aws-sdk/types": "^3.973.5",
48
- "@aws-sdk/util-endpoints": "^3.996.4",
49
- "@aws-sdk/util-user-agent-browser": "^3.972.7",
50
- "@aws-sdk/util-user-agent-node": "^3.973.3",
51
- "@smithy/config-resolver": "^4.4.10",
52
- "@smithy/core": "^3.23.8",
53
- "@smithy/eventstream-serde-browser": "^4.2.11",
54
- "@smithy/eventstream-serde-config-resolver": "^4.3.11",
55
- "@smithy/eventstream-serde-node": "^4.2.11",
56
- "@smithy/fetch-http-handler": "^5.3.13",
57
- "@smithy/hash-blob-browser": "^4.2.12",
58
- "@smithy/hash-node": "^4.2.11",
59
- "@smithy/hash-stream-node": "^4.2.11",
60
- "@smithy/invalid-dependency": "^4.2.11",
61
- "@smithy/md5-js": "^4.2.11",
62
- "@smithy/middleware-content-length": "^4.2.11",
63
- "@smithy/middleware-endpoint": "^4.4.22",
64
- "@smithy/middleware-retry": "^4.4.39",
65
- "@smithy/middleware-serde": "^4.2.12",
66
- "@smithy/middleware-stack": "^4.2.11",
67
- "@smithy/node-config-provider": "^4.3.11",
68
- "@smithy/node-http-handler": "^4.4.14",
69
- "@smithy/protocol-http": "^5.3.11",
70
- "@smithy/smithy-client": "^4.12.2",
71
- "@smithy/types": "^4.13.0",
72
- "@smithy/url-parser": "^4.2.11",
33
+ "@aws-sdk/core": "^3.973.20",
34
+ "@aws-sdk/credential-provider-node": "^3.972.21",
35
+ "@aws-sdk/middleware-bucket-endpoint": "^3.972.8",
36
+ "@aws-sdk/middleware-expect-continue": "^3.972.8",
37
+ "@aws-sdk/middleware-flexible-checksums": "^3.973.6",
38
+ "@aws-sdk/middleware-host-header": "^3.972.8",
39
+ "@aws-sdk/middleware-location-constraint": "^3.972.8",
40
+ "@aws-sdk/middleware-logger": "^3.972.8",
41
+ "@aws-sdk/middleware-recursion-detection": "^3.972.8",
42
+ "@aws-sdk/middleware-sdk-s3": "^3.972.20",
43
+ "@aws-sdk/middleware-ssec": "^3.972.8",
44
+ "@aws-sdk/middleware-user-agent": "^3.972.21",
45
+ "@aws-sdk/region-config-resolver": "^3.972.8",
46
+ "@aws-sdk/signature-v4-multi-region": "^3.996.8",
47
+ "@aws-sdk/types": "^3.973.6",
48
+ "@aws-sdk/util-endpoints": "^3.996.5",
49
+ "@aws-sdk/util-user-agent-browser": "^3.972.8",
50
+ "@aws-sdk/util-user-agent-node": "^3.973.7",
51
+ "@smithy/config-resolver": "^4.4.11",
52
+ "@smithy/core": "^3.23.11",
53
+ "@smithy/eventstream-serde-browser": "^4.2.12",
54
+ "@smithy/eventstream-serde-config-resolver": "^4.3.12",
55
+ "@smithy/eventstream-serde-node": "^4.2.12",
56
+ "@smithy/fetch-http-handler": "^5.3.15",
57
+ "@smithy/hash-blob-browser": "^4.2.13",
58
+ "@smithy/hash-node": "^4.2.12",
59
+ "@smithy/hash-stream-node": "^4.2.12",
60
+ "@smithy/invalid-dependency": "^4.2.12",
61
+ "@smithy/md5-js": "^4.2.12",
62
+ "@smithy/middleware-content-length": "^4.2.12",
63
+ "@smithy/middleware-endpoint": "^4.4.25",
64
+ "@smithy/middleware-retry": "^4.4.42",
65
+ "@smithy/middleware-serde": "^4.2.14",
66
+ "@smithy/middleware-stack": "^4.2.12",
67
+ "@smithy/node-config-provider": "^4.3.12",
68
+ "@smithy/node-http-handler": "^4.4.16",
69
+ "@smithy/protocol-http": "^5.3.12",
70
+ "@smithy/smithy-client": "^4.12.5",
71
+ "@smithy/types": "^4.13.1",
72
+ "@smithy/url-parser": "^4.2.12",
73
73
  "@smithy/util-base64": "^4.3.2",
74
74
  "@smithy/util-body-length-browser": "^4.2.2",
75
75
  "@smithy/util-body-length-node": "^4.2.3",
76
- "@smithy/util-defaults-mode-browser": "^4.3.38",
77
- "@smithy/util-defaults-mode-node": "^4.2.41",
78
- "@smithy/util-endpoints": "^3.3.2",
79
- "@smithy/util-middleware": "^4.2.11",
80
- "@smithy/util-retry": "^4.2.11",
81
- "@smithy/util-stream": "^4.5.17",
76
+ "@smithy/util-defaults-mode-browser": "^4.3.41",
77
+ "@smithy/util-defaults-mode-node": "^4.2.44",
78
+ "@smithy/util-endpoints": "^3.3.3",
79
+ "@smithy/util-middleware": "^4.2.12",
80
+ "@smithy/util-retry": "^4.2.12",
81
+ "@smithy/util-stream": "^4.5.19",
82
82
  "@smithy/util-utf8": "^4.2.2",
83
- "@smithy/util-waiter": "^4.2.11",
83
+ "@smithy/util-waiter": "^4.2.13",
84
84
  "tslib": "^2.6.2"
85
85
  },
86
86
  "devDependencies": {
87
- "@aws-sdk/signature-v4-crt": "3.1003.0",
88
- "@smithy/snapshot-testing": "^1.0.9",
87
+ "@aws-sdk/signature-v4-crt": "3.1009.0",
88
+ "@smithy/snapshot-testing": "^2.0.2",
89
89
  "@tsconfig/node20": "20.1.8",
90
90
  "@types/node": "^20.14.8",
91
91
  "concurrently": "7.0.0",
@@ -21,8 +21,9 @@ cryptographically signing your service requests, retrying requests, and handling
21
21
  responses. For a list of available SDKs, go to <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>. </p>
22
22
 
23
23
  ## Installing
24
- To install this package, simply type add or install @aws-sdk/client-sns
25
- using your favorite package manager:
24
+
25
+ To install this package, use the CLI of your favorite package manager:
26
+
26
27
  - `npm install @aws-sdk/client-sns`
27
28
  - `yarn add @aws-sdk/client-sns`
28
29
  - `pnpm add @aws-sdk/client-sns`
@@ -47,15 +48,15 @@ import { SNSClient, ListTopicsCommand } from "@aws-sdk/client-sns";
47
48
 
48
49
  ### Usage
49
50
 
50
- To send a request, you:
51
+ To send a request:
51
52
 
52
- - Initiate client with configuration (e.g. credentials, region).
53
- - Initiate command with input parameters.
54
- - Call `send` operation on client with command object as input.
55
- - If you are using a custom http handler, you may call `destroy()` to close open connections.
53
+ - Instantiate a client with configuration (e.g. credentials, region).
54
+ - See [docs/CLIENTS](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/CLIENTS.md) for configuration details.
55
+ - See [@aws-sdk/config](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/config/README.md) for additional options.
56
+ - Instantiate a command with input parameters.
57
+ - Call the `send` operation on the client, providing the command object as input.
56
58
 
57
59
  ```js
58
- // a client can be shared by different commands.
59
60
  const client = new SNSClient({ region: "REGION" });
60
61
 
61
62
  const params = { /** input parameters */ };
@@ -64,7 +65,7 @@ const command = new ListTopicsCommand(params);
64
65
 
65
66
  #### Async/await
66
67
 
67
- We recommend using [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
68
+ We recommend using the [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
68
69
  operator to wait for the promise returned by send operation as follows:
69
70
 
70
71
  ```js
@@ -79,26 +80,9 @@ try {
79
80
  }
80
81
  ```
81
82
 
82
- Async-await is clean, concise, intuitive, easy to debug and has better error handling
83
- as compared to using Promise chains or callbacks.
84
-
85
83
  #### Promises
86
84
 
87
- You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining)
88
- to execute send operation.
89
-
90
- ```js
91
- client.send(command).then(
92
- (data) => {
93
- // process data.
94
- },
95
- (error) => {
96
- // error handling.
97
- }
98
- );
99
- ```
100
-
101
- Promises can also be called using `.catch()` and `.finally()` as follows:
85
+ You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining).
102
86
 
103
87
  ```js
104
88
  client
@@ -114,27 +98,21 @@ client
114
98
  });
115
99
  ```
116
100
 
117
- #### Callbacks
118
-
119
- We do not recommend using callbacks because of [callback hell](http://callbackhell.com/),
120
- but they are supported by the send operation.
101
+ #### Aggregated client
121
102
 
122
- ```js
123
- // callbacks.
124
- client.send(command, (err, data) => {
125
- // process err and data.
126
- });
127
- ```
103
+ The aggregated client class is exported from the same package, but without the "Client" suffix.
128
104
 
129
- #### v2 compatible style
105
+ `SNS` extends `SNSClient` and additionally supports all operations, waiters, and paginators as methods.
106
+ This style may be familiar to you from the AWS SDK for JavaScript v2.
130
107
 
131
- The client can also send requests using v2 compatible style.
132
- However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post
133
- on [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/)
108
+ If you are bundling the AWS SDK, we recommend using only the bare-bones client (`SNSClient`).
109
+ More details are in the blog post on
110
+ [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/).
134
111
 
135
112
  ```ts
136
- import * as AWS from "@aws-sdk/client-sns";
137
- const client = new AWS.SNS({ region: "REGION" });
113
+ import { SNS } from "@aws-sdk/client-sns";
114
+
115
+ const client = new SNS({ region: "REGION" });
138
116
 
139
117
  // async/await.
140
118
  try {
@@ -154,7 +132,7 @@ client
154
132
  // error handling.
155
133
  });
156
134
 
157
- // callbacks.
135
+ // callbacks (not recommended).
158
136
  client.listTopics(params, (err, data) => {
159
137
  // process err and data.
160
138
  });
@@ -182,12 +160,14 @@ try {
182
160
  }
183
161
  ```
184
162
 
163
+ See also [docs/ERROR_HANDLING](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/ERROR_HANDLING.md).
164
+
185
165
  ## Getting Help
186
166
 
187
167
  Please use these community resources for getting help.
188
- We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
168
+ We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
189
169
 
190
- - Visit [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
170
+ - Visit the [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
191
171
  or [API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/index.html).
192
172
  - Check out the blog posts tagged with [`aws-sdk-js`](https://aws.amazon.com/blogs/developer/tag/aws-sdk-js/)
193
173
  on AWS Developer Blog.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sns",
3
3
  "description": "AWS SDK for JavaScript Sns 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-sns",
@@ -23,41 +23,41 @@
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
62
  "tslib": "^2.6.2"
63
63
  },
@@ -79,8 +79,9 @@ Endpoints</a>
79
79
  </ul>
80
80
 
81
81
  ## Installing
82
- To install this package, simply type add or install @aws-sdk/client-sqs
83
- using your favorite package manager:
82
+
83
+ To install this package, use the CLI of your favorite package manager:
84
+
84
85
  - `npm install @aws-sdk/client-sqs`
85
86
  - `yarn add @aws-sdk/client-sqs`
86
87
  - `pnpm add @aws-sdk/client-sqs`
@@ -105,24 +106,63 @@ import { SQSClient, ListQueuesCommand } from "@aws-sdk/client-sqs";
105
106
 
106
107
  ### Usage
107
108
 
108
- To send a request, you:
109
+ To send a request:
109
110
 
110
- - Initiate client with configuration (e.g. credentials, region).
111
- - Initiate command with input parameters.
112
- - Call `send` operation on client with command object as input.
113
- - If you are using a custom http handler, you may call `destroy()` to close open connections.
111
+ - Instantiate a client with configuration (e.g. credentials, region).
112
+ - See [docs/CLIENTS](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/CLIENTS.md) for configuration details.
113
+ - See [@aws-sdk/config](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/config/README.md) for additional options.
114
+ - Instantiate a command with input parameters.
115
+ - Call the `send` operation on the client, providing the command object as input.
114
116
 
115
117
  ```js
116
- // a client can be shared by different commands.
117
118
  const client = new SQSClient({ region: "REGION" });
118
119
 
119
120
  const params = { /** input parameters */ };
120
121
  const command = new ListQueuesCommand(params);
121
122
  ```
122
123
 
124
+ #### Supported Message Protocols
125
+
126
+ This client supports multiple protocols.
127
+
128
+ The default for this client is **AWS JSON (RPC) 1.0**.
129
+
130
+ We have selected this default based on our evaluation of the
131
+ performance characteristics of this protocol format in JavaScript. You don't need to change it,
132
+ but you have the option to do so, for example to support existing integrations or tests.
133
+ Selecting a non-default protocol changes the format
134
+ of the data sent over the network, but does not affect how you interact with the
135
+ client using JavaScript objects.
136
+
137
+ Install the `@aws-sdk/config` package to access alternate protocols.
138
+
139
+ See [AWS Protocols](https://smithy.io/2.0/aws/protocols/index.html) for more information.
140
+
141
+ ##### AWS JSON (RPC) 1.0
142
+
143
+ This protocol uses JSON payloads.
144
+ ```js
145
+ import { AwsJson1_0Protocol } from "@aws-sdk/config/protocol";
146
+
147
+ const client = new SQSClient({
148
+ protocol: AwsJson1_0Protocol
149
+ });
150
+ ```
151
+
152
+ ##### AWS Query
153
+
154
+ This protocol uses query format requests and XML responses.
155
+ ```js
156
+ import { AwsQueryProtocol } from "@aws-sdk/config/protocol";
157
+
158
+ const client = new SQSClient({
159
+ protocol: AwsQueryProtocol
160
+ });
161
+ ```
162
+
123
163
  #### Async/await
124
164
 
125
- We recommend using [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
165
+ We recommend using the [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
126
166
  operator to wait for the promise returned by send operation as follows:
127
167
 
128
168
  ```js
@@ -137,26 +177,9 @@ try {
137
177
  }
138
178
  ```
139
179
 
140
- Async-await is clean, concise, intuitive, easy to debug and has better error handling
141
- as compared to using Promise chains or callbacks.
142
-
143
180
  #### Promises
144
181
 
145
- You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining)
146
- to execute send operation.
147
-
148
- ```js
149
- client.send(command).then(
150
- (data) => {
151
- // process data.
152
- },
153
- (error) => {
154
- // error handling.
155
- }
156
- );
157
- ```
158
-
159
- Promises can also be called using `.catch()` and `.finally()` as follows:
182
+ You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining).
160
183
 
161
184
  ```js
162
185
  client
@@ -172,27 +195,21 @@ client
172
195
  });
173
196
  ```
174
197
 
175
- #### Callbacks
176
-
177
- We do not recommend using callbacks because of [callback hell](http://callbackhell.com/),
178
- but they are supported by the send operation.
198
+ #### Aggregated client
179
199
 
180
- ```js
181
- // callbacks.
182
- client.send(command, (err, data) => {
183
- // process err and data.
184
- });
185
- ```
200
+ The aggregated client class is exported from the same package, but without the "Client" suffix.
186
201
 
187
- #### v2 compatible style
202
+ `SQS` extends `SQSClient` and additionally supports all operations, waiters, and paginators as methods.
203
+ This style may be familiar to you from the AWS SDK for JavaScript v2.
188
204
 
189
- The client can also send requests using v2 compatible style.
190
- However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post
191
- on [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/)
205
+ If you are bundling the AWS SDK, we recommend using only the bare-bones client (`SQSClient`).
206
+ More details are in the blog post on
207
+ [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/).
192
208
 
193
209
  ```ts
194
- import * as AWS from "@aws-sdk/client-sqs";
195
- const client = new AWS.SQS({ region: "REGION" });
210
+ import { SQS } from "@aws-sdk/client-sqs";
211
+
212
+ const client = new SQS({ region: "REGION" });
196
213
 
197
214
  // async/await.
198
215
  try {
@@ -212,7 +229,7 @@ client
212
229
  // error handling.
213
230
  });
214
231
 
215
- // callbacks.
232
+ // callbacks (not recommended).
216
233
  client.listQueues(params, (err, data) => {
217
234
  // process err and data.
218
235
  });
@@ -240,12 +257,14 @@ try {
240
257
  }
241
258
  ```
242
259
 
260
+ See also [docs/ERROR_HANDLING](https://github.com/aws/aws-sdk-js-v3/blob/main/supplemental-docs/ERROR_HANDLING.md).
261
+
243
262
  ## Getting Help
244
263
 
245
264
  Please use these community resources for getting help.
246
- We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
265
+ We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
247
266
 
248
- - Visit [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
267
+ - Visit the [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
249
268
  or [API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/index.html).
250
269
  - Check out the blog posts tagged with [`aws-sdk-js`](https://aws.amazon.com/blogs/developer/tag/aws-sdk-js/)
251
270
  on AWS Developer Blog.