@cdklabs/cdk-ssm-documents 0.0.56 → 0.0.57

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 (274) hide show
  1. package/.jsii +12 -12
  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-sdk/client-cloudformation/package.json +34 -34
  117. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +2 -2
  118. package/node_modules/@aws-sdk/client-cloudwatch/package.json +36 -36
  119. package/node_modules/@aws-sdk/client-ec2/package.json +36 -36
  120. package/node_modules/@aws-sdk/client-iam/package.json +35 -35
  121. package/node_modules/@aws-sdk/client-lambda/package.json +38 -38
  122. package/node_modules/@aws-sdk/client-s3/package.json +50 -50
  123. package/node_modules/@aws-sdk/client-sns/package.json +33 -33
  124. package/node_modules/@aws-sdk/client-sqs/package.json +36 -36
  125. package/node_modules/@aws-sdk/client-ssm/package.json +34 -34
  126. package/node_modules/@aws-sdk/core/dist-cjs/index.js +52 -50
  127. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +52 -50
  128. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +11 -10
  129. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +4 -1
  130. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +4 -5
  131. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +2 -1
  132. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +9 -7
  133. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +17 -17
  134. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +3 -8
  135. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +2 -1
  136. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +2 -2
  137. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +1 -1
  138. package/node_modules/@aws-sdk/core/package.json +11 -11
  139. package/node_modules/@aws-sdk/crc64-nvme/package.json +2 -2
  140. package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
  141. package/node_modules/@aws-sdk/credential-provider-http/package.json +10 -10
  142. package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
  143. package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
  144. package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
  145. package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
  146. package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
  147. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
  148. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +5 -5
  149. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +4 -4
  150. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +10 -10
  151. package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
  152. package/node_modules/@aws-sdk/middleware-location-constraint/package.json +3 -3
  153. package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
  154. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
  155. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +8 -8
  156. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +11 -11
  157. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
  158. package/node_modules/@aws-sdk/middleware-ssec/package.json +3 -3
  159. package/node_modules/@aws-sdk/middleware-user-agent/package.json +8 -8
  160. package/node_modules/@aws-sdk/nested-clients/package.json +32 -32
  161. package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
  162. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +6 -6
  163. package/node_modules/@aws-sdk/token-providers/package.json +7 -7
  164. package/node_modules/@aws-sdk/types/package.json +2 -2
  165. package/node_modules/@aws-sdk/util-endpoints/package.json +5 -5
  166. package/node_modules/@aws-sdk/util-format-url/package.json +4 -4
  167. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
  168. package/node_modules/@aws-sdk/util-user-agent-node/package.json +5 -5
  169. package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
  170. package/node_modules/@smithy/config-resolver/package.json +5 -5
  171. package/node_modules/@smithy/core/dist-cjs/index.js +2 -1
  172. package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +32 -14
  173. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +2 -2
  174. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +16 -8
  175. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +17 -10
  176. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +6 -1
  177. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +6 -3
  178. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +2 -1
  179. package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +23 -11
  180. package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +9 -3
  181. package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +2 -2
  182. package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +16 -8
  183. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +9 -4
  184. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +8 -6
  185. package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +6 -1
  186. package/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +6 -3
  187. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +2 -1
  188. package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
  189. package/node_modules/@smithy/core/package.json +7 -7
  190. package/node_modules/@smithy/credential-provider-imds/package.json +5 -5
  191. package/node_modules/@smithy/eventstream-codec/package.json +2 -2
  192. package/node_modules/@smithy/eventstream-serde-browser/package.json +3 -3
  193. package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +2 -2
  194. package/node_modules/@smithy/eventstream-serde-node/package.json +3 -3
  195. package/node_modules/@smithy/eventstream-serde-universal/package.json +3 -3
  196. package/node_modules/@smithy/fetch-http-handler/package.json +5 -5
  197. package/node_modules/@smithy/hash-blob-browser/package.json +2 -2
  198. package/node_modules/@smithy/hash-node/package.json +2 -2
  199. package/node_modules/@smithy/hash-stream-node/package.json +2 -2
  200. package/node_modules/@smithy/invalid-dependency/package.json +2 -2
  201. package/node_modules/@smithy/md5-js/package.json +2 -2
  202. package/node_modules/@smithy/middleware-compression/package.json +6 -6
  203. package/node_modules/@smithy/middleware-content-length/package.json +3 -3
  204. package/node_modules/@smithy/middleware-endpoint/package.json +8 -8
  205. package/node_modules/@smithy/middleware-retry/package.json +9 -9
  206. package/node_modules/@smithy/middleware-serde/package.json +4 -4
  207. package/node_modules/@smithy/middleware-stack/package.json +2 -2
  208. package/node_modules/@smithy/node-config-provider/package.json +4 -4
  209. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +191 -96
  210. package/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +45 -0
  211. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +71 -35
  212. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -18
  213. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +44 -43
  214. package/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +42 -0
  215. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +34 -14
  216. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +32 -8
  217. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +14 -6
  218. package/node_modules/@smithy/node-http-handler/package.json +5 -5
  219. package/node_modules/@smithy/property-provider/package.json +2 -2
  220. package/node_modules/@smithy/protocol-http/package.json +2 -2
  221. package/node_modules/@smithy/querystring-builder/package.json +2 -2
  222. package/node_modules/@smithy/querystring-parser/package.json +2 -2
  223. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +5 -0
  224. package/node_modules/@smithy/service-error-classification/dist-es/index.js +4 -0
  225. package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +6 -0
  226. package/node_modules/@smithy/service-error-classification/package.json +2 -2
  227. package/node_modules/@smithy/shared-ini-file-loader/package.json +2 -2
  228. package/node_modules/@smithy/signature-v4/dist-cjs/index.js +11 -5
  229. package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +11 -5
  230. package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +3 -3
  231. package/node_modules/@smithy/signature-v4/package.json +4 -4
  232. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +8 -1
  233. package/node_modules/@smithy/smithy-client/dist-es/command.js +8 -1
  234. package/node_modules/@smithy/smithy-client/package.json +7 -7
  235. package/node_modules/@smithy/types/dist-types/connection/config.d.ts +5 -0
  236. package/node_modules/@smithy/types/dist-types/signature.d.ts +20 -3
  237. package/node_modules/@smithy/types/package.json +1 -1
  238. package/node_modules/@smithy/url-parser/package.json +3 -3
  239. package/node_modules/@smithy/util-defaults-mode-browser/package.json +4 -4
  240. package/node_modules/@smithy/util-defaults-mode-node/package.json +7 -7
  241. package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +79 -71
  242. package/node_modules/@smithy/util-endpoints/dist-es/decideEndpoint.js +4 -3
  243. package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +2 -1
  244. package/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +8 -13
  245. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +9 -7
  246. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +12 -8
  247. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +14 -13
  248. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +7 -4
  249. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +10 -8
  250. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +4 -4
  251. package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +5 -5
  252. package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +4 -4
  253. package/node_modules/@smithy/util-endpoints/dist-types/bdd/BinaryDecisionDiagram.d.ts +2 -2
  254. package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +3 -3
  255. package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +2 -15
  256. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +6 -3
  257. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +3 -3
  258. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +1 -1
  259. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +2 -2
  260. package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -2
  261. package/node_modules/@smithy/util-endpoints/package.json +3 -3
  262. package/node_modules/@smithy/util-middleware/package.json +2 -2
  263. package/node_modules/@smithy/util-retry/package.json +3 -3
  264. package/node_modules/@smithy/util-stream/package.json +4 -4
  265. package/node_modules/@smithy/util-waiter/package.json +3 -3
  266. package/node_modules/fast-xml-builder/package.json +1 -1
  267. package/node_modules/fast-xml-builder/src/fxb.js +6 -2
  268. package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +16 -2
  269. package/package.json +10 -10
  270. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/CHANGELOG.md +0 -0
  271. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/LICENSE +0 -0
  272. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/README.md +0 -0
  273. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/package.json +0 -0
  274. /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/strnum.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-node",
3
- "version": "3.972.30",
3
+ "version": "3.972.32",
4
4
  "description": "AWS credential provider that sources credentials from a Node.JS environment. ",
5
5
  "engines": {
6
6
  "node": ">=20.0.0"
@@ -31,17 +31,17 @@
31
31
  },
32
32
  "license": "Apache-2.0",
33
33
  "dependencies": {
34
- "@aws-sdk/credential-provider-env": "^3.972.25",
35
- "@aws-sdk/credential-provider-http": "^3.972.27",
36
- "@aws-sdk/credential-provider-ini": "^3.972.29",
37
- "@aws-sdk/credential-provider-process": "^3.972.25",
38
- "@aws-sdk/credential-provider-sso": "^3.972.29",
39
- "@aws-sdk/credential-provider-web-identity": "^3.972.29",
40
- "@aws-sdk/types": "^3.973.7",
41
- "@smithy/credential-provider-imds": "^4.2.13",
42
- "@smithy/property-provider": "^4.2.13",
43
- "@smithy/shared-ini-file-loader": "^4.4.8",
44
- "@smithy/types": "^4.14.0",
34
+ "@aws-sdk/credential-provider-env": "^3.972.27",
35
+ "@aws-sdk/credential-provider-http": "^3.972.29",
36
+ "@aws-sdk/credential-provider-ini": "^3.972.31",
37
+ "@aws-sdk/credential-provider-process": "^3.972.27",
38
+ "@aws-sdk/credential-provider-sso": "^3.972.31",
39
+ "@aws-sdk/credential-provider-web-identity": "^3.972.31",
40
+ "@aws-sdk/types": "^3.973.8",
41
+ "@smithy/credential-provider-imds": "^4.2.14",
42
+ "@smithy/property-provider": "^4.2.14",
43
+ "@smithy/shared-ini-file-loader": "^4.4.9",
44
+ "@smithy/types": "^4.14.1",
45
45
  "tslib": "^2.6.2"
46
46
  },
47
47
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-process",
3
- "version": "3.972.25",
3
+ "version": "3.972.27",
4
4
  "description": "AWS credential provider that sources credential_process from ~/.aws/credentials and ~/.aws/config",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -26,11 +26,11 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/core": "^3.973.27",
30
- "@aws-sdk/types": "^3.973.7",
31
- "@smithy/property-provider": "^4.2.13",
32
- "@smithy/shared-ini-file-loader": "^4.4.8",
33
- "@smithy/types": "^4.14.0",
29
+ "@aws-sdk/core": "^3.974.1",
30
+ "@aws-sdk/types": "^3.973.8",
31
+ "@smithy/property-provider": "^4.2.14",
32
+ "@smithy/shared-ini-file-loader": "^4.4.9",
33
+ "@smithy/types": "^4.14.1",
34
34
  "tslib": "^2.6.2"
35
35
  },
36
36
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-sso",
3
- "version": "3.972.29",
3
+ "version": "3.972.31",
4
4
  "description": "AWS credential provider that exchanges a resolved SSO login token file for temporary AWS credentials",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -26,13 +26,13 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/core": "^3.973.27",
30
- "@aws-sdk/nested-clients": "^3.996.19",
31
- "@aws-sdk/token-providers": "3.1026.0",
32
- "@aws-sdk/types": "^3.973.7",
33
- "@smithy/property-provider": "^4.2.13",
34
- "@smithy/shared-ini-file-loader": "^4.4.8",
35
- "@smithy/types": "^4.14.0",
29
+ "@aws-sdk/core": "^3.974.1",
30
+ "@aws-sdk/nested-clients": "^3.996.21",
31
+ "@aws-sdk/token-providers": "3.1032.0",
32
+ "@aws-sdk/types": "^3.973.8",
33
+ "@smithy/property-provider": "^4.2.14",
34
+ "@smithy/shared-ini-file-loader": "^4.4.9",
35
+ "@smithy/types": "^4.14.1",
36
36
  "tslib": "^2.6.2"
37
37
  },
38
38
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-web-identity",
3
- "version": "3.972.29",
3
+ "version": "3.972.31",
4
4
  "description": "AWS credential provider that calls STS assumeRole for temporary AWS credentials",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -34,12 +34,12 @@
34
34
  },
35
35
  "license": "Apache-2.0",
36
36
  "dependencies": {
37
- "@aws-sdk/core": "^3.973.27",
38
- "@aws-sdk/nested-clients": "^3.996.19",
39
- "@aws-sdk/types": "^3.973.7",
40
- "@smithy/property-provider": "^4.2.13",
41
- "@smithy/shared-ini-file-loader": "^4.4.8",
42
- "@smithy/types": "^4.14.0",
37
+ "@aws-sdk/core": "^3.974.1",
38
+ "@aws-sdk/nested-clients": "^3.996.21",
39
+ "@aws-sdk/types": "^3.973.8",
40
+ "@smithy/property-provider": "^4.2.14",
41
+ "@smithy/shared-ini-file-loader": "^4.4.9",
42
+ "@smithy/types": "^4.14.1",
43
43
  "tslib": "^2.6.2"
44
44
  },
45
45
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-bucket-endpoint",
3
- "version": "3.972.9",
3
+ "version": "3.972.10",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-bucket-endpoint",
@@ -23,11 +23,11 @@
23
23
  },
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
- "@aws-sdk/types": "^3.973.7",
26
+ "@aws-sdk/types": "^3.973.8",
27
27
  "@aws-sdk/util-arn-parser": "^3.972.3",
28
- "@smithy/node-config-provider": "^4.3.13",
29
- "@smithy/protocol-http": "^5.3.13",
30
- "@smithy/types": "^4.14.0",
28
+ "@smithy/node-config-provider": "^4.3.14",
29
+ "@smithy/protocol-http": "^5.3.14",
30
+ "@smithy/types": "^4.14.1",
31
31
  "@smithy/util-config-provider": "^4.2.2",
32
32
  "tslib": "^2.6.2"
33
33
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-expect-continue",
3
- "version": "3.972.9",
3
+ "version": "3.972.10",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-expect-continue",
@@ -24,9 +24,9 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/types": "^3.973.7",
28
- "@smithy/protocol-http": "^5.3.13",
29
- "@smithy/types": "^4.14.0",
27
+ "@aws-sdk/types": "^3.973.8",
28
+ "@smithy/protocol-http": "^5.3.14",
29
+ "@smithy/types": "^4.14.1",
30
30
  "tslib": "^2.6.2"
31
31
  },
32
32
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-flexible-checksums",
3
- "version": "3.974.7",
3
+ "version": "3.974.9",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-flexible-checksums",
@@ -37,20 +37,20 @@
37
37
  "@aws-crypto/crc32": "5.2.0",
38
38
  "@aws-crypto/crc32c": "5.2.0",
39
39
  "@aws-crypto/util": "5.2.0",
40
- "@aws-sdk/core": "^3.973.27",
41
- "@aws-sdk/crc64-nvme": "^3.972.6",
42
- "@aws-sdk/types": "^3.973.7",
40
+ "@aws-sdk/core": "^3.974.1",
41
+ "@aws-sdk/crc64-nvme": "^3.972.7",
42
+ "@aws-sdk/types": "^3.973.8",
43
43
  "@smithy/is-array-buffer": "^4.2.2",
44
- "@smithy/node-config-provider": "^4.3.13",
45
- "@smithy/protocol-http": "^5.3.13",
46
- "@smithy/types": "^4.14.0",
47
- "@smithy/util-middleware": "^4.2.13",
48
- "@smithy/util-stream": "^4.5.22",
44
+ "@smithy/node-config-provider": "^4.3.14",
45
+ "@smithy/protocol-http": "^5.3.14",
46
+ "@smithy/types": "^4.14.1",
47
+ "@smithy/util-middleware": "^4.2.14",
48
+ "@smithy/util-stream": "^4.5.23",
49
49
  "@smithy/util-utf8": "^4.2.2",
50
50
  "tslib": "^2.6.2"
51
51
  },
52
52
  "devDependencies": {
53
- "@smithy/node-http-handler": "^4.5.2",
53
+ "@smithy/node-http-handler": "^4.5.3",
54
54
  "concurrently": "7.0.0",
55
55
  "downlevel-dts": "0.10.1",
56
56
  "premove": "4.0.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-host-header",
3
- "version": "3.972.9",
3
+ "version": "3.972.10",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-host-header",
@@ -25,9 +25,9 @@
25
25
  },
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
- "@aws-sdk/types": "^3.973.7",
29
- "@smithy/protocol-http": "^5.3.13",
30
- "@smithy/types": "^4.14.0",
28
+ "@aws-sdk/types": "^3.973.8",
29
+ "@smithy/protocol-http": "^5.3.14",
30
+ "@smithy/types": "^4.14.1",
31
31
  "tslib": "^2.6.2"
32
32
  },
33
33
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-location-constraint",
3
- "version": "3.972.9",
3
+ "version": "3.972.10",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-location-constraint",
@@ -24,8 +24,8 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/types": "^3.973.7",
28
- "@smithy/types": "^4.14.0",
27
+ "@aws-sdk/types": "^3.973.8",
28
+ "@smithy/types": "^4.14.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-logger",
3
- "version": "3.972.9",
3
+ "version": "3.972.10",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-logger",
@@ -25,8 +25,8 @@
25
25
  "module": "./dist-es/index.js",
26
26
  "types": "./dist-types/index.d.ts",
27
27
  "dependencies": {
28
- "@aws-sdk/types": "^3.973.7",
29
- "@smithy/types": "^4.14.0",
28
+ "@aws-sdk/types": "^3.973.8",
29
+ "@smithy/types": "^4.14.1",
30
30
  "tslib": "^2.6.2"
31
31
  },
32
32
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-recursion-detection",
3
- "version": "3.972.10",
3
+ "version": "3.972.11",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-recursion-detection",
@@ -24,10 +24,10 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/types": "^3.973.7",
27
+ "@aws-sdk/types": "^3.973.8",
28
28
  "@aws/lambda-invoke-store": "^0.2.2",
29
- "@smithy/protocol-http": "^5.3.13",
30
- "@smithy/types": "^4.14.0",
29
+ "@smithy/protocol-http": "^5.3.14",
30
+ "@smithy/types": "^4.14.1",
31
31
  "tslib": "^2.6.2"
32
32
  },
33
33
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-ec2",
3
- "version": "3.972.19",
3
+ "version": "3.972.20",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-sdk-ec2",
@@ -26,13 +26,13 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/types": "^3.973.7",
30
- "@aws-sdk/util-format-url": "^3.972.9",
31
- "@smithy/middleware-endpoint": "^4.4.29",
32
- "@smithy/protocol-http": "^5.3.13",
33
- "@smithy/signature-v4": "^5.3.13",
34
- "@smithy/smithy-client": "^4.12.9",
35
- "@smithy/types": "^4.14.0",
29
+ "@aws-sdk/types": "^3.973.8",
30
+ "@aws-sdk/util-format-url": "^3.972.10",
31
+ "@smithy/middleware-endpoint": "^4.4.30",
32
+ "@smithy/protocol-http": "^5.3.14",
33
+ "@smithy/signature-v4": "^5.3.14",
34
+ "@smithy/smithy-client": "^4.12.11",
35
+ "@smithy/types": "^4.14.1",
36
36
  "tslib": "^2.6.2"
37
37
  },
38
38
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-s3",
3
- "version": "3.972.28",
3
+ "version": "3.972.30",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-sdk-s3",
@@ -28,18 +28,18 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/core": "^3.973.27",
32
- "@aws-sdk/types": "^3.973.7",
31
+ "@aws-sdk/core": "^3.974.1",
32
+ "@aws-sdk/types": "^3.973.8",
33
33
  "@aws-sdk/util-arn-parser": "^3.972.3",
34
- "@smithy/core": "^3.23.14",
35
- "@smithy/node-config-provider": "^4.3.13",
36
- "@smithy/protocol-http": "^5.3.13",
37
- "@smithy/signature-v4": "^5.3.13",
38
- "@smithy/smithy-client": "^4.12.9",
39
- "@smithy/types": "^4.14.0",
34
+ "@smithy/core": "^3.23.15",
35
+ "@smithy/node-config-provider": "^4.3.14",
36
+ "@smithy/protocol-http": "^5.3.14",
37
+ "@smithy/signature-v4": "^5.3.14",
38
+ "@smithy/smithy-client": "^4.12.11",
39
+ "@smithy/types": "^4.14.1",
40
40
  "@smithy/util-config-provider": "^4.2.2",
41
- "@smithy/util-middleware": "^4.2.13",
42
- "@smithy/util-stream": "^4.5.22",
41
+ "@smithy/util-middleware": "^4.2.14",
42
+ "@smithy/util-stream": "^4.5.23",
43
43
  "@smithy/util-utf8": "^4.2.2",
44
44
  "tslib": "^2.6.2"
45
45
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-sqs",
3
- "version": "3.972.19",
3
+ "version": "3.972.20",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-sdk-sqs",
@@ -24,9 +24,9 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/types": "^3.973.7",
28
- "@smithy/smithy-client": "^4.12.9",
29
- "@smithy/types": "^4.14.0",
27
+ "@aws-sdk/types": "^3.973.8",
28
+ "@smithy/smithy-client": "^4.12.11",
29
+ "@smithy/types": "^4.14.1",
30
30
  "@smithy/util-hex-encoding": "^4.2.2",
31
31
  "@smithy/util-utf8": "^4.2.2",
32
32
  "tslib": "^2.6.2"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-ssec",
3
- "version": "3.972.9",
3
+ "version": "3.972.10",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-ssec",
@@ -24,8 +24,8 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/types": "^3.973.7",
28
- "@smithy/types": "^4.14.0",
27
+ "@aws-sdk/types": "^3.973.8",
28
+ "@smithy/types": "^4.14.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-user-agent",
3
- "version": "3.972.29",
3
+ "version": "3.972.31",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-user-agent",
@@ -25,13 +25,13 @@
25
25
  },
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
- "@aws-sdk/core": "^3.973.27",
29
- "@aws-sdk/types": "^3.973.7",
30
- "@aws-sdk/util-endpoints": "^3.996.6",
31
- "@smithy/core": "^3.23.14",
32
- "@smithy/protocol-http": "^5.3.13",
33
- "@smithy/types": "^4.14.0",
34
- "@smithy/util-retry": "^4.3.0",
28
+ "@aws-sdk/core": "^3.974.1",
29
+ "@aws-sdk/types": "^3.973.8",
30
+ "@aws-sdk/util-endpoints": "^3.996.7",
31
+ "@smithy/core": "^3.23.15",
32
+ "@smithy/protocol-http": "^5.3.14",
33
+ "@smithy/types": "^4.14.1",
34
+ "@smithy/util-retry": "^4.3.2",
35
35
  "tslib": "^2.6.2"
36
36
  },
37
37
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/nested-clients",
3
- "version": "3.996.19",
3
+ "version": "3.996.21",
4
4
  "description": "Nested clients for AWS SDK packages.",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -29,40 +29,40 @@
29
29
  "dependencies": {
30
30
  "@aws-crypto/sha256-browser": "5.2.0",
31
31
  "@aws-crypto/sha256-js": "5.2.0",
32
- "@aws-sdk/core": "^3.973.27",
33
- "@aws-sdk/middleware-host-header": "^3.972.9",
34
- "@aws-sdk/middleware-logger": "^3.972.9",
35
- "@aws-sdk/middleware-recursion-detection": "^3.972.10",
36
- "@aws-sdk/middleware-user-agent": "^3.972.29",
37
- "@aws-sdk/region-config-resolver": "^3.972.11",
38
- "@aws-sdk/types": "^3.973.7",
39
- "@aws-sdk/util-endpoints": "^3.996.6",
40
- "@aws-sdk/util-user-agent-browser": "^3.972.9",
41
- "@aws-sdk/util-user-agent-node": "^3.973.15",
42
- "@smithy/config-resolver": "^4.4.14",
43
- "@smithy/core": "^3.23.14",
44
- "@smithy/fetch-http-handler": "^5.3.16",
45
- "@smithy/hash-node": "^4.2.13",
46
- "@smithy/invalid-dependency": "^4.2.13",
47
- "@smithy/middleware-content-length": "^4.2.13",
48
- "@smithy/middleware-endpoint": "^4.4.29",
49
- "@smithy/middleware-retry": "^4.5.0",
50
- "@smithy/middleware-serde": "^4.2.17",
51
- "@smithy/middleware-stack": "^4.2.13",
52
- "@smithy/node-config-provider": "^4.3.13",
53
- "@smithy/node-http-handler": "^4.5.2",
54
- "@smithy/protocol-http": "^5.3.13",
55
- "@smithy/smithy-client": "^4.12.9",
56
- "@smithy/types": "^4.14.0",
57
- "@smithy/url-parser": "^4.2.13",
32
+ "@aws-sdk/core": "^3.974.1",
33
+ "@aws-sdk/middleware-host-header": "^3.972.10",
34
+ "@aws-sdk/middleware-logger": "^3.972.10",
35
+ "@aws-sdk/middleware-recursion-detection": "^3.972.11",
36
+ "@aws-sdk/middleware-user-agent": "^3.972.31",
37
+ "@aws-sdk/region-config-resolver": "^3.972.12",
38
+ "@aws-sdk/types": "^3.973.8",
39
+ "@aws-sdk/util-endpoints": "^3.996.7",
40
+ "@aws-sdk/util-user-agent-browser": "^3.972.10",
41
+ "@aws-sdk/util-user-agent-node": "^3.973.17",
42
+ "@smithy/config-resolver": "^4.4.16",
43
+ "@smithy/core": "^3.23.15",
44
+ "@smithy/fetch-http-handler": "^5.3.17",
45
+ "@smithy/hash-node": "^4.2.14",
46
+ "@smithy/invalid-dependency": "^4.2.14",
47
+ "@smithy/middleware-content-length": "^4.2.14",
48
+ "@smithy/middleware-endpoint": "^4.4.30",
49
+ "@smithy/middleware-retry": "^4.5.3",
50
+ "@smithy/middleware-serde": "^4.2.18",
51
+ "@smithy/middleware-stack": "^4.2.14",
52
+ "@smithy/node-config-provider": "^4.3.14",
53
+ "@smithy/node-http-handler": "^4.5.3",
54
+ "@smithy/protocol-http": "^5.3.14",
55
+ "@smithy/smithy-client": "^4.12.11",
56
+ "@smithy/types": "^4.14.1",
57
+ "@smithy/url-parser": "^4.2.14",
58
58
  "@smithy/util-base64": "^4.3.2",
59
59
  "@smithy/util-body-length-browser": "^4.2.2",
60
60
  "@smithy/util-body-length-node": "^4.2.3",
61
- "@smithy/util-defaults-mode-browser": "^4.3.45",
62
- "@smithy/util-defaults-mode-node": "^4.2.49",
63
- "@smithy/util-endpoints": "^3.3.4",
64
- "@smithy/util-middleware": "^4.2.13",
65
- "@smithy/util-retry": "^4.3.0",
61
+ "@smithy/util-defaults-mode-browser": "^4.3.47",
62
+ "@smithy/util-defaults-mode-node": "^4.2.52",
63
+ "@smithy/util-endpoints": "^3.4.1",
64
+ "@smithy/util-middleware": "^4.2.14",
65
+ "@smithy/util-retry": "^4.3.2",
66
66
  "@smithy/util-utf8": "^4.2.2",
67
67
  "tslib": "^2.6.2"
68
68
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/region-config-resolver",
3
- "version": "3.972.11",
3
+ "version": "3.972.12",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline region-config-resolver",
@@ -23,10 +23,10 @@
23
23
  },
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
- "@aws-sdk/types": "^3.973.7",
27
- "@smithy/config-resolver": "^4.4.14",
28
- "@smithy/node-config-provider": "^4.3.13",
29
- "@smithy/types": "^4.14.0",
26
+ "@aws-sdk/types": "^3.973.8",
27
+ "@smithy/config-resolver": "^4.4.16",
28
+ "@smithy/node-config-provider": "^4.3.14",
29
+ "@smithy/types": "^4.14.1",
30
30
  "tslib": "^2.6.2"
31
31
  },
32
32
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/signature-v4-multi-region",
3
- "version": "3.996.16",
3
+ "version": "3.996.18",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline signature-v4-multi-region",
@@ -25,11 +25,11 @@
25
25
  },
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
- "@aws-sdk/middleware-sdk-s3": "^3.972.28",
29
- "@aws-sdk/types": "^3.973.7",
30
- "@smithy/protocol-http": "^5.3.13",
31
- "@smithy/signature-v4": "^5.3.13",
32
- "@smithy/types": "^4.14.0",
28
+ "@aws-sdk/middleware-sdk-s3": "^3.972.30",
29
+ "@aws-sdk/types": "^3.973.8",
30
+ "@smithy/protocol-http": "^5.3.14",
31
+ "@smithy/signature-v4": "^5.3.14",
32
+ "@smithy/types": "^4.14.1",
33
33
  "tslib": "^2.6.2"
34
34
  },
35
35
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/token-providers",
3
- "version": "3.1026.0",
3
+ "version": "3.1032.0",
4
4
  "description": "A collection of token providers",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -29,12 +29,12 @@
29
29
  },
30
30
  "license": "Apache-2.0",
31
31
  "dependencies": {
32
- "@aws-sdk/core": "^3.973.27",
33
- "@aws-sdk/nested-clients": "^3.996.19",
34
- "@aws-sdk/types": "^3.973.7",
35
- "@smithy/property-provider": "^4.2.13",
36
- "@smithy/shared-ini-file-loader": "^4.4.8",
37
- "@smithy/types": "^4.14.0",
32
+ "@aws-sdk/core": "^3.974.1",
33
+ "@aws-sdk/nested-clients": "^3.996.21",
34
+ "@aws-sdk/types": "^3.973.8",
35
+ "@smithy/property-provider": "^4.2.14",
36
+ "@smithy/shared-ini-file-loader": "^4.4.9",
37
+ "@smithy/types": "^4.14.1",
38
38
  "tslib": "^2.6.2"
39
39
  },
40
40
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/types",
3
- "version": "3.973.7",
3
+ "version": "3.973.8",
4
4
  "main": "./dist-cjs/index.js",
5
5
  "module": "./dist-es/index.js",
6
6
  "types": "./dist-types/index.d.ts",
@@ -42,7 +42,7 @@
42
42
  "directory": "packages-internal/types"
43
43
  },
44
44
  "dependencies": {
45
- "@smithy/types": "^4.14.0",
45
+ "@smithy/types": "^4.14.1",
46
46
  "tslib": "^2.6.2"
47
47
  },
48
48
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/util-endpoints",
3
- "version": "3.996.6",
3
+ "version": "3.996.7",
4
4
  "description": "Utilities to help with endpoint resolution",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -25,10 +25,10 @@
25
25
  },
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
- "@aws-sdk/types": "^3.973.7",
29
- "@smithy/types": "^4.14.0",
30
- "@smithy/url-parser": "^4.2.13",
31
- "@smithy/util-endpoints": "^3.3.4",
28
+ "@aws-sdk/types": "^3.973.8",
29
+ "@smithy/types": "^4.14.1",
30
+ "@smithy/url-parser": "^4.2.14",
31
+ "@smithy/util-endpoints": "^3.4.1",
32
32
  "tslib": "^2.6.2"
33
33
  },
34
34
  "engines": {