@cdklabs/cdk-ssm-documents 0.0.52 → 0.0.54

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 (551) 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/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  117. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +4 -3
  118. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +2 -2
  119. package/node_modules/@aws-sdk/client-cloudformation/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  120. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +2 -1
  121. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.shared.js +1 -1
  122. package/node_modules/@aws-sdk/client-cloudformation/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  123. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.browser.d.ts +1 -1
  124. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.d.ts +1 -1
  125. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.native.d.ts +1 -1
  126. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  127. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  128. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  129. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  130. package/node_modules/@aws-sdk/client-cloudformation/package.json +16 -16
  131. package/node_modules/@aws-sdk/client-cloudwatch/README.md +13 -2
  132. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  133. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +4 -3
  134. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +2 -2
  135. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  136. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.js +2 -1
  137. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.shared.js +1 -1
  138. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  139. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.browser.d.ts +1 -1
  140. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.d.ts +1 -1
  141. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.native.d.ts +1 -1
  142. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  143. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  144. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  145. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  146. package/node_modules/@aws-sdk/client-cloudwatch/package.json +18 -18
  147. package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  148. package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +6 -0
  149. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +4 -3
  150. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +2 -2
  151. package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +105 -62
  152. package/node_modules/@aws-sdk/client-ec2/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  153. package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +5 -0
  154. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.js +2 -1
  155. package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.shared.js +1 -1
  156. package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +51 -8
  157. package/node_modules/@aws-sdk/client-ec2/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  158. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +8 -3
  159. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondarySubnetCommand.d.ts +1 -2
  160. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorSessionCommand.d.ts +2 -1
  161. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetsCommand.d.ts +8 -3
  162. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -2
  163. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +5 -0
  164. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorSessionsCommand.d.ts +2 -1
  165. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorTargetsCommand.d.ts +1 -1
  166. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +2 -1
  167. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDefaultCreditSpecificationCommand.d.ts +1 -2
  168. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFleetCommand.d.ts +1 -1
  169. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorSessionCommand.d.ts +1 -1
  170. package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +13 -0
  171. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +31 -43
  172. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +40 -10
  173. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +31 -166
  174. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +196 -88
  175. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +87 -118
  176. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +119 -160
  177. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +160 -3
  178. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.browser.d.ts +1 -1
  179. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.d.ts +1 -1
  180. package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.native.d.ts +1 -1
  181. package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +3 -0
  182. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  183. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondarySubnetCommand.d.ts +4 -2
  184. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorSessionCommand.d.ts +2 -4
  185. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceImageMetadataCommand.d.ts +4 -2
  186. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorSessionsCommand.d.ts +2 -4
  187. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorTargetsCommand.d.ts +1 -1
  188. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +2 -4
  189. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +4 -2
  190. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorSessionCommand.d.ts +1 -1
  191. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +7 -0
  192. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +5 -9
  193. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +9 -3
  194. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +8 -18
  195. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +27 -18
  196. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +17 -23
  197. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +23 -40
  198. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +38 -5
  199. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  200. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  201. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  202. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
  203. package/node_modules/@aws-sdk/client-ec2/package.json +18 -18
  204. package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  205. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +4 -3
  206. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +2 -2
  207. package/node_modules/@aws-sdk/client-iam/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  208. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.js +2 -1
  209. package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.shared.js +1 -1
  210. package/node_modules/@aws-sdk/client-iam/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  211. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.browser.d.ts +1 -1
  212. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.d.ts +1 -1
  213. package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.native.d.ts +1 -1
  214. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  215. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  216. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  217. package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  218. package/node_modules/@aws-sdk/client-iam/package.json +17 -17
  219. package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  220. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +4 -3
  221. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +2 -2
  222. package/node_modules/@aws-sdk/client-lambda/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  223. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.js +2 -1
  224. package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.shared.js +1 -1
  225. package/node_modules/@aws-sdk/client-lambda/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  226. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +1 -1
  227. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +1 -1
  228. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +1 -1
  229. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  230. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  231. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  232. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  233. package/node_modules/@aws-sdk/client-lambda/package.json +17 -17
  234. package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +3 -3
  235. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +5 -4
  236. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +5 -5
  237. package/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  238. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +2 -1
  239. package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +3 -3
  240. package/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  241. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +1 -1
  242. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +1 -1
  243. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +1 -1
  244. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +2 -2
  245. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  246. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  247. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  248. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  249. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
  250. package/node_modules/@aws-sdk/client-s3/package.json +22 -22
  251. package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  252. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +4 -3
  253. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +2 -2
  254. package/node_modules/@aws-sdk/client-sns/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  255. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.js +2 -1
  256. package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.shared.js +1 -1
  257. package/node_modules/@aws-sdk/client-sns/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  258. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.browser.d.ts +1 -1
  259. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.d.ts +1 -1
  260. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.native.d.ts +1 -1
  261. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  262. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  263. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  264. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  265. package/node_modules/@aws-sdk/client-sns/package.json +16 -16
  266. package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  267. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +4 -3
  268. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +2 -2
  269. package/node_modules/@aws-sdk/client-sqs/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  270. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.js +2 -1
  271. package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.shared.js +1 -1
  272. package/node_modules/@aws-sdk/client-sqs/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  273. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.browser.d.ts +1 -1
  274. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.d.ts +1 -1
  275. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.native.d.ts +1 -1
  276. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  277. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  278. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  279. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  280. package/node_modules/@aws-sdk/client-sqs/package.json +18 -18
  281. package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  282. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +4 -3
  283. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +2 -2
  284. package/node_modules/@aws-sdk/client-ssm/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  285. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +2 -1
  286. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +1 -1
  287. package/node_modules/@aws-sdk/client-ssm/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  288. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +1 -1
  289. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +1 -1
  290. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +1 -1
  291. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  292. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  293. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  294. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  295. package/node_modules/@aws-sdk/client-ssm/package.json +16 -16
  296. package/node_modules/@aws-sdk/core/dist-cjs/index.js +54 -21
  297. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +54 -21
  298. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +24 -6
  299. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +6 -5
  300. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +2 -1
  301. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +2 -1
  302. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +6 -4
  303. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +6 -4
  304. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +4 -2
  305. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +9 -3
  306. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +13 -0
  307. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +3 -1
  308. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +3 -1
  309. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +3 -1
  310. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +3 -1
  311. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +3 -1
  312. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +3 -0
  313. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +3 -0
  314. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +2 -0
  315. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +6 -0
  316. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +3 -0
  317. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +3 -0
  318. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +3 -0
  319. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +3 -0
  320. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +8 -1
  321. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +3 -0
  322. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +3 -0
  323. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +6 -1
  324. package/node_modules/@aws-sdk/core/package.json +4 -4
  325. package/node_modules/@aws-sdk/credential-provider-env/README.md +12 -3
  326. package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
  327. package/node_modules/@aws-sdk/credential-provider-http/package.json +5 -5
  328. package/node_modules/@aws-sdk/credential-provider-ini/README.md +12 -3
  329. package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
  330. package/node_modules/@aws-sdk/credential-provider-login/README.md +12 -3
  331. package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
  332. package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
  333. package/node_modules/@aws-sdk/credential-provider-process/README.md +12 -3
  334. package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
  335. package/node_modules/@aws-sdk/credential-provider-sso/README.md +12 -3
  336. package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
  337. package/node_modules/@aws-sdk/credential-provider-web-identity/README.md +12 -3
  338. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
  339. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +19 -7
  340. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsResponseMiddleware.js +10 -2
  341. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getChecksumAlgorithmListForResponse.js +10 -6
  342. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +4 -4
  343. package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -3
  344. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +1 -1
  345. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +3 -3
  346. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +27 -0
  347. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -0
  348. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/protocol/S3RestXmlProtocol.js +25 -0
  349. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +1 -0
  350. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/protocol/S3RestXmlProtocol.d.ts +20 -0
  351. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +1 -0
  352. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/protocol/S3RestXmlProtocol.d.ts +15 -0
  353. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +5 -5
  354. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +2 -2
  355. package/node_modules/@aws-sdk/middleware-user-agent/package.json +3 -3
  356. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +2 -2
  357. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.js +4 -3
  358. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +4 -4
  359. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +2 -2
  360. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +4 -3
  361. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +4 -4
  362. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +2 -2
  363. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.js +4 -3
  364. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.shared.js +4 -4
  365. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +2 -2
  366. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +4 -3
  367. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +4 -4
  368. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +2 -2
  369. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +7 -6
  370. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +4 -4
  371. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +1 -1
  372. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +2 -1
  373. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +1 -1
  374. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +1 -1
  375. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +2 -1
  376. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +1 -1
  377. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +1 -1
  378. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +2 -1
  379. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +1 -1
  380. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +1 -1
  381. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +2 -1
  382. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +1 -1
  383. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +1 -1
  384. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +2 -1
  385. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +1 -1
  386. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +1 -1
  387. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +2 -2
  388. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +2 -2
  389. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +2 -2
  390. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -1
  391. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthSchemeProvider.d.ts +1 -1
  392. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +2 -2
  393. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +2 -2
  394. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +2 -2
  395. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +1 -1
  396. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/auth/httpAuthSchemeProvider.d.ts +1 -1
  397. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +2 -2
  398. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +2 -2
  399. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +2 -2
  400. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.shared.d.ts +1 -1
  401. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +1 -1
  402. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +2 -2
  403. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +2 -2
  404. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +2 -2
  405. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -1
  406. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +1 -1
  407. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +2 -2
  408. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +1 -1
  409. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +2 -2
  410. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +1 -1
  411. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +1 -1
  412. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +2 -2
  413. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +2 -2
  414. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +2 -2
  415. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -1
  416. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthSchemeProvider.d.ts +1 -1
  417. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +2 -2
  418. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +2 -2
  419. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +2 -2
  420. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +1 -1
  421. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/auth/httpAuthSchemeProvider.d.ts +1 -1
  422. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +2 -2
  423. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +2 -2
  424. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +2 -2
  425. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +1 -1
  426. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +1 -1
  427. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +2 -2
  428. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +2 -2
  429. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +2 -2
  430. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -1
  431. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +1 -1
  432. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +2 -2
  433. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +1 -1
  434. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +2 -2
  435. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +1 -1
  436. package/node_modules/@aws-sdk/nested-clients/package.json +15 -15
  437. package/node_modules/@aws-sdk/region-config-resolver/README.md +11 -4
  438. package/node_modules/@aws-sdk/region-config-resolver/package.json +2 -2
  439. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +2 -2
  440. package/node_modules/@aws-sdk/token-providers/package.json +3 -3
  441. package/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -3
  442. package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
  443. package/node_modules/@aws-sdk/xml-builder/README.md +10 -3
  444. package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +21 -11
  445. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +5 -1
  446. package/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +8 -1
  447. package/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +13 -10
  448. package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +5 -1
  449. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/CHANGELOG.md +40 -4
  450. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/README.md +8 -7
  451. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js +1 -1
  452. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -1
  453. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.cjs +1 -1
  454. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.d.cts +82 -20
  455. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js +1 -1
  456. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -1
  457. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js +1 -1
  458. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -1
  459. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +1 -1
  460. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/pem.d.cts +148 -0
  461. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/package.json +4 -3
  462. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/fxp.d.ts +75 -19
  463. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/pem.d.ts +135 -0
  464. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/util.js +18 -0
  465. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +37 -18
  466. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +76 -5
  467. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +298 -116
  468. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +2 -2
  469. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/node2json.js +65 -15
  470. package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
  471. package/node_modules/@smithy/config-resolver/dist-cjs/index.js +12 -0
  472. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +5 -0
  473. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +5 -0
  474. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +6 -0
  475. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +6 -0
  476. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +6 -0
  477. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +6 -0
  478. package/node_modules/@smithy/config-resolver/package.json +1 -1
  479. package/node_modules/@smithy/core/README.md +12 -1
  480. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +8 -17
  481. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +1 -8
  482. package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +7 -9
  483. package/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +1 -1
  484. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +1 -1
  485. package/node_modules/@smithy/core/package.json +2 -2
  486. package/node_modules/@smithy/middleware-compression/README.md +9 -4
  487. package/node_modules/@smithy/middleware-compression/package.json +2 -2
  488. package/node_modules/@smithy/middleware-endpoint/README.md +10 -3
  489. package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +2 -2
  490. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +2 -2
  491. package/node_modules/@smithy/middleware-endpoint/package.json +3 -3
  492. package/node_modules/@smithy/middleware-retry/README.md +13 -0
  493. package/node_modules/@smithy/middleware-retry/package.json +2 -2
  494. package/node_modules/@smithy/middleware-serde/README.md +13 -0
  495. package/node_modules/@smithy/middleware-serde/package.json +2 -2
  496. package/node_modules/@smithy/node-http-handler/package.json +2 -2
  497. package/node_modules/@smithy/smithy-client/README.md +10 -3
  498. package/node_modules/@smithy/smithy-client/package.json +4 -4
  499. package/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -3
  500. package/node_modules/@smithy/util-defaults-mode-browser/package.json +2 -2
  501. package/node_modules/@smithy/util-defaults-mode-node/README.md +10 -3
  502. package/node_modules/@smithy/util-defaults-mode-node/package.json +3 -3
  503. package/node_modules/@smithy/util-stream/package.json +2 -2
  504. package/node_modules/@smithy/util-waiter/README.md +10 -3
  505. package/node_modules/@smithy/util-waiter/package.json +2 -2
  506. package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/README.md +98 -13
  507. package/node_modules/path-expression-matcher/lib/pem.cjs +1 -0
  508. package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/lib/pem.d.cts +188 -0
  509. package/node_modules/path-expression-matcher/lib/pem.min.js +2 -0
  510. package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -0
  511. package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/package.json +2 -2
  512. package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/src/Matcher.js +84 -0
  513. package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/src/index.d.ts +152 -0
  514. package/node_modules/strnum/CHANGELOG.md +9 -2
  515. package/node_modules/strnum/package.json +1 -1
  516. package/node_modules/strnum/strnum.js +12 -6
  517. package/node_modules/strnum/tests/strnum_test.js +3 -0
  518. package/node_modules/strnum/tests/temp.js +8 -0
  519. package/package.json +10 -10
  520. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.cjs +0 -1
  521. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.min.js +0 -2
  522. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.min.js.map +0 -1
  523. package/node_modules/@smithy/abort-controller/LICENSE +0 -201
  524. package/node_modules/@smithy/abort-controller/README.md +0 -4
  525. package/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -32
  526. package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +0 -7
  527. package/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +0 -20
  528. package/node_modules/@smithy/abort-controller/dist-es/index.js +0 -2
  529. package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
  530. package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
  531. package/node_modules/@smithy/abort-controller/dist-types/index.d.ts +0 -9
  532. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
  533. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
  534. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +0 -9
  535. package/node_modules/@smithy/abort-controller/package.json +0 -63
  536. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/CHANGELOG.md +0 -0
  537. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/LICENSE +0 -0
  538. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/README.md +0 -0
  539. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/lib/fxb.cjs +0 -0
  540. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/lib/fxb.d.cts +0 -0
  541. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/lib/fxb.min.js +0 -0
  542. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/lib/fxb.min.js.map +0 -0
  543. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/package.json +0 -0
  544. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/fxb.d.ts +0 -0
  545. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/fxb.js +0 -0
  546. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/ignoreAttributes.js +0 -0
  547. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/orderedJs2Xml.js +0 -0
  548. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/prettifyJs2Xml.js +0 -0
  549. /package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/LICENSE +0 -0
  550. /package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/src/Expression.js +0 -0
  551. /package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/src/index.js +0 -0
@@ -3,6 +3,19 @@
3
3
  [![NPM version](https://img.shields.io/npm/v/@smithy/middleware-retry/latest.svg)](https://www.npmjs.com/package/@smithy/middleware-retry)
4
4
  [![NPM downloads](https://img.shields.io/npm/dm/@smithy/middleware-retry.svg)](https://www.npmjs.com/package/@smithy/middleware-retry)
5
5
 
6
+ ### :warning: Internal API :warning:
7
+
8
+ > This is an internal package.
9
+ > That means this is used as a dependency for other, public packages, but
10
+ > should not be taken directly as a dependency in your application's `package.json`.
11
+
12
+ > If you are updating the version of this package, for example to bring in a
13
+ > bug-fix, you should do so by updating your application lockfile with
14
+ > e.g. `npm up @scope/package` or equivalent command in another
15
+ > package manager, rather than taking a direct dependency.
16
+
17
+ ---
18
+
6
19
  ## Usage
7
20
 
8
21
  See [@smithy/util-retry](https://github.com/smithy-lang/smithy-typescript/tree/main/packages/util-retry)
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/middleware-retry",
3
- "version": "4.4.43",
3
+ "version": "4.4.45",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
6
6
  "build:cjs": "node ../../scripts/inline middleware-retry",
@@ -37,7 +37,7 @@
37
37
  "@smithy/node-config-provider": "^4.3.12",
38
38
  "@smithy/protocol-http": "^5.3.12",
39
39
  "@smithy/service-error-classification": "^4.2.12",
40
- "@smithy/smithy-client": "^4.12.6",
40
+ "@smithy/smithy-client": "^4.12.8",
41
41
  "@smithy/types": "^4.13.1",
42
42
  "@smithy/util-middleware": "^4.2.12",
43
43
  "@smithy/util-retry": "^4.2.12",
@@ -2,3 +2,16 @@
2
2
 
3
3
  [![NPM version](https://img.shields.io/npm/v/@smithy/middleware-serde/latest.svg)](https://www.npmjs.com/package/@smithy/middleware-serde)
4
4
  [![NPM downloads](https://img.shields.io/npm/dm/@smithy/middleware-serde.svg)](https://www.npmjs.com/package/@smithy/middleware-serde)
5
+
6
+ ### :warning: Internal API :warning:
7
+
8
+ > This is an internal package.
9
+ > That means this is used as a dependency for other, public packages, but
10
+ > should not be taken directly as a dependency in your application's `package.json`.
11
+
12
+ > If you are updating the version of this package, for example to bring in a
13
+ > bug-fix, you should do so by updating your application lockfile with
14
+ > e.g. `npm up @scope/package` or equivalent command in another
15
+ > package manager, rather than taking a direct dependency.
16
+
17
+ ---
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/middleware-serde",
3
- "version": "4.2.15",
3
+ "version": "4.2.16",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
6
6
  "build:cjs": "node ../../scripts/inline middleware-serde",
@@ -26,7 +26,7 @@
26
26
  "license": "Apache-2.0",
27
27
  "sideEffects": false,
28
28
  "dependencies": {
29
- "@smithy/core": "^3.23.12",
29
+ "@smithy/core": "^3.23.13",
30
30
  "@smithy/protocol-http": "^5.3.12",
31
31
  "@smithy/types": "^4.13.1",
32
32
  "tslib": "^2.6.2"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/node-http-handler",
3
- "version": "4.5.0",
3
+ "version": "4.5.1",
4
4
  "description": "Provides a way to make requests",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
@@ -27,13 +27,13 @@
27
27
  "module": "./dist-es/index.js",
28
28
  "types": "./dist-types/index.d.ts",
29
29
  "dependencies": {
30
- "@smithy/abort-controller": "^4.2.12",
31
30
  "@smithy/protocol-http": "^5.3.12",
32
31
  "@smithy/querystring-builder": "^4.2.12",
33
32
  "@smithy/types": "^4.13.1",
34
33
  "tslib": "^2.6.2"
35
34
  },
36
35
  "devDependencies": {
36
+ "@smithy/abort-controller": "^4.2.12",
37
37
  "@types/node": "^18.11.9",
38
38
  "concurrently": "7.0.0",
39
39
  "downlevel-dts": "0.10.1",
@@ -3,8 +3,15 @@
3
3
  [![NPM version](https://img.shields.io/npm/v/@smithy/smithy-client/latest.svg)](https://www.npmjs.com/package/@smithy/smithy-client)
4
4
  [![NPM downloads](https://img.shields.io/npm/dm/@smithy/smithy-client.svg)](https://www.npmjs.com/package/@smithy/smithy-client)
5
5
 
6
- > An internal package
6
+ ### :warning: Internal API :warning:
7
7
 
8
- ## Usage
8
+ > This is an internal package.
9
+ > That means this is used as a dependency for other, public packages, but
10
+ > should not be taken directly as a dependency in your application's `package.json`.
9
11
 
10
- You probably shouldn't, at least directly.
12
+ > If you are updating the version of this package, for example to bring in a
13
+ > bug-fix, you should do so by updating your application lockfile with
14
+ > e.g. `npm up @scope/package` or equivalent command in another
15
+ > package manager, rather than taking a direct dependency.
16
+
17
+ ---
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/smithy-client",
3
- "version": "4.12.6",
3
+ "version": "4.12.8",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
6
6
  "build:cjs": "node ../../scripts/inline smithy-client",
@@ -27,12 +27,12 @@
27
27
  "license": "Apache-2.0",
28
28
  "sideEffects": false,
29
29
  "dependencies": {
30
- "@smithy/core": "^3.23.12",
31
- "@smithy/middleware-endpoint": "^4.4.26",
30
+ "@smithy/core": "^3.23.13",
31
+ "@smithy/middleware-endpoint": "^4.4.28",
32
32
  "@smithy/middleware-stack": "^4.2.12",
33
33
  "@smithy/protocol-http": "^5.3.12",
34
34
  "@smithy/types": "^4.13.1",
35
- "@smithy/util-stream": "^4.5.20",
35
+ "@smithy/util-stream": "^4.5.21",
36
36
  "tslib": "^2.6.2"
37
37
  },
38
38
  "engines": {
@@ -3,8 +3,15 @@
3
3
  [![NPM version](https://img.shields.io/npm/v/@smithy/util-defaults-mode-browser/latest.svg)](https://www.npmjs.com/package/@smithy/util-defaults-mode-browser)
4
4
  [![NPM downloads](https://img.shields.io/npm/dm/@smithy/util-defaults-mode-browser.svg)](https://www.npmjs.com/package/@smithy/util-defaults-mode-browser)
5
5
 
6
- > An internal package
6
+ ### :warning: Internal API :warning:
7
7
 
8
- ## Usage
8
+ > This is an internal package.
9
+ > That means this is used as a dependency for other, public packages, but
10
+ > should not be taken directly as a dependency in your application's `package.json`.
9
11
 
10
- You probably shouldn't, at least directly.
12
+ > If you are updating the version of this package, for example to bring in a
13
+ > bug-fix, you should do so by updating your application lockfile with
14
+ > e.g. `npm up @scope/package` or equivalent command in another
15
+ > package manager, rather than taking a direct dependency.
16
+
17
+ ---
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-defaults-mode-browser",
3
- "version": "4.3.42",
3
+ "version": "4.3.44",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
6
6
  "build:cjs": "node ../../scripts/inline util-defaults-mode-browser",
@@ -25,7 +25,7 @@
25
25
  "sideEffects": false,
26
26
  "dependencies": {
27
27
  "@smithy/property-provider": "^4.2.12",
28
- "@smithy/smithy-client": "^4.12.6",
28
+ "@smithy/smithy-client": "^4.12.8",
29
29
  "@smithy/types": "^4.13.1",
30
30
  "tslib": "^2.6.2"
31
31
  },
@@ -3,8 +3,15 @@
3
3
  [![NPM version](https://img.shields.io/npm/v/@smithy/util-defaults-mode-node/latest.svg)](https://www.npmjs.com/package/@smithy/util-defaults-mode-node)
4
4
  [![NPM downloads](https://img.shields.io/npm/dm/@smithy/util-defaults-mode-node.svg)](https://www.npmjs.com/package/@smithy/util-defaults-mode-node)
5
5
 
6
- > An internal package
6
+ ### :warning: Internal API :warning:
7
7
 
8
- ## Usage
8
+ > This is an internal package.
9
+ > That means this is used as a dependency for other, public packages, but
10
+ > should not be taken directly as a dependency in your application's `package.json`.
9
11
 
10
- You probably shouldn't, at least directly.
12
+ > If you are updating the version of this package, for example to bring in a
13
+ > bug-fix, you should do so by updating your application lockfile with
14
+ > e.g. `npm up @scope/package` or equivalent command in another
15
+ > package manager, rather than taking a direct dependency.
16
+
17
+ ---
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-defaults-mode-node",
3
- "version": "4.2.45",
3
+ "version": "4.2.48",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
6
6
  "build:cjs": "node ../../scripts/inline util-defaults-mode-node",
@@ -24,11 +24,11 @@
24
24
  "license": "Apache-2.0",
25
25
  "sideEffects": false,
26
26
  "dependencies": {
27
- "@smithy/config-resolver": "^4.4.11",
27
+ "@smithy/config-resolver": "^4.4.13",
28
28
  "@smithy/credential-provider-imds": "^4.2.12",
29
29
  "@smithy/node-config-provider": "^4.3.12",
30
30
  "@smithy/property-provider": "^4.2.12",
31
- "@smithy/smithy-client": "^4.12.6",
31
+ "@smithy/smithy-client": "^4.12.8",
32
32
  "@smithy/types": "^4.13.1",
33
33
  "tslib": "^2.6.2"
34
34
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-stream",
3
- "version": "4.5.20",
3
+ "version": "4.5.21",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
6
6
  "build:cjs": "node ../../scripts/inline util-stream",
@@ -30,7 +30,7 @@
30
30
  "sideEffects": false,
31
31
  "dependencies": {
32
32
  "@smithy/fetch-http-handler": "^5.3.15",
33
- "@smithy/node-http-handler": "^4.5.0",
33
+ "@smithy/node-http-handler": "^4.5.1",
34
34
  "@smithy/types": "^4.13.1",
35
35
  "@smithy/util-base64": "^4.3.2",
36
36
  "@smithy/util-buffer-from": "^4.2.2",
@@ -3,8 +3,15 @@
3
3
  [![NPM version](https://img.shields.io/npm/v/@smithy/util-waiter/latest.svg)](https://www.npmjs.com/package/@smithy/util-waiter)
4
4
  [![NPM downloads](https://img.shields.io/npm/dm/@smithy/util-waiter.svg)](https://www.npmjs.com/package/@smithy/util-waiter)
5
5
 
6
- > An internal package
6
+ ### :warning: Internal API :warning:
7
7
 
8
- ## Usage
8
+ > This is an internal package.
9
+ > That means this is used as a dependency for other, public packages, but
10
+ > should not be taken directly as a dependency in your application's `package.json`.
9
11
 
10
- You probably shouldn't, at least directly.
12
+ > If you are updating the version of this package, for example to bring in a
13
+ > bug-fix, you should do so by updating your application lockfile with
14
+ > e.g. `npm up @scope/package` or equivalent command in another
15
+ > package manager, rather than taking a direct dependency.
16
+
17
+ ---
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "@smithy/util-waiter",
3
- "version": "4.2.13",
3
+ "version": "4.2.14",
4
4
  "description": "Shared utilities for client waiters for the AWS SDK",
5
5
  "dependencies": {
6
- "@smithy/abort-controller": "^4.2.12",
7
6
  "@smithy/types": "^4.13.1",
8
7
  "tslib": "^2.6.2"
9
8
  },
@@ -49,6 +48,7 @@
49
48
  "directory": "packages/util-waiter"
50
49
  },
51
50
  "devDependencies": {
51
+ "@smithy/abort-controller": "^4.2.12",
52
52
  "concurrently": "7.0.0",
53
53
  "downlevel-dts": "0.10.1",
54
54
  "premove": "4.0.0",
@@ -346,6 +346,57 @@ Restore from a snapshot.
346
346
  matcher.restore(snapshot);
347
347
  ```
348
348
 
349
+ #### Read-Only Access
350
+
351
+ ##### `readOnly()`
352
+
353
+ Returns a **live, read-only proxy** of the matcher. All query and inspection methods work normally, but any attempt to call a state-mutating method (`push`, `pop`, `reset`, `updateCurrent`, `restore`) or to write/delete a property throws a `TypeError`.
354
+
355
+ This is the recommended way to share the matcher with external consumers — plugins, callbacks, event handlers — that only need to inspect the current path without being able to corrupt parser state.
356
+
357
+ ```javascript
358
+ const ro = matcher.readOnly();
359
+ ```
360
+
361
+ **What works on the read-only view:**
362
+
363
+ ```javascript
364
+ ro.matches(expr) // ✓ pattern matching
365
+ ro.getCurrentTag() // ✓ current tag name
366
+ ro.getCurrentNamespace() // ✓ current namespace
367
+ ro.getAttrValue("id") // ✓ attribute value
368
+ ro.hasAttr("id") // ✓ attribute presence check
369
+ ro.getPosition() // ✓ sibling position
370
+ ro.getCounter() // ✓ occurrence counter
371
+ ro.getDepth() // ✓ path depth
372
+ ro.toString() // ✓ path as string
373
+ ro.toArray() // ✓ path as array
374
+ ro.snapshot() // ✓ snapshot (can be used to restore the real matcher)
375
+ ```
376
+
377
+ **What throws a `TypeError`:**
378
+
379
+ ```javascript
380
+ ro.push("child", {}) // ✗ TypeError: Cannot call 'push' on a read-only Matcher
381
+ ro.pop() // ✗ TypeError: Cannot call 'pop' on a read-only Matcher
382
+ ro.reset() // ✗ TypeError: Cannot call 'reset' on a read-only Matcher
383
+ ro.updateCurrent({}) // ✗ TypeError: Cannot call 'updateCurrent' on a read-only Matcher
384
+ ro.restore(snapshot) // ✗ TypeError: Cannot call 'restore' on a read-only Matcher
385
+ ro.separator = '/' // ✗ TypeError: Cannot set property on a read-only Matcher
386
+ ```
387
+
388
+ **Important:** The read-only view is **live** — it always reflects the current state of the underlying matcher. If you need a frozen-in-time copy instead, use `snapshot()`.
389
+
390
+ ```javascript
391
+ const matcher = new Matcher();
392
+ const ro = matcher.readOnly();
393
+
394
+ matcher.push("root");
395
+ ro.getDepth(); // 1 — immediately reflects the push
396
+ matcher.push("users");
397
+ ro.getDepth(); // 2 — still live
398
+ ```
399
+
349
400
  ## 💡 Usage Examples
350
401
 
351
402
  ### Example 1: XML Parser with stopNodes
@@ -481,7 +532,53 @@ const expr = new Expression("root.item:first");
481
532
  console.log(matcher.matches(expr)); // false (counter=1, not 0)
482
533
  ```
483
534
 
484
- ### Example 7: Namespace Support (XML/SOAP)
535
+ ### Example 8: Passing a Read-Only Matcher to External Consumers
536
+
537
+ When passing the matcher into callbacks, plugins, or other code you don't control, use `readOnly()` to prevent accidental state corruption.
538
+
539
+ ```javascript
540
+ import { Expression, Matcher } from 'path-expression-matcher';
541
+
542
+ const matcher = new Matcher();
543
+
544
+ const adminExpr = new Expression("..user[type=admin]");
545
+
546
+ function parseTag(tagName, attrs, onTag) {
547
+ matcher.push(tagName, attrs);
548
+
549
+ // Pass a read-only view — consumer can inspect but not mutate
550
+ onTag(matcher.readOnly());
551
+
552
+ matcher.pop();
553
+ }
554
+
555
+ // Safe consumer — can only read
556
+ function myPlugin(ro) {
557
+ if (ro.matches(adminExpr)) {
558
+ console.log("Admin at path:", ro.toString());
559
+ console.log("Depth:", ro.getDepth());
560
+ console.log("ID:", ro.getAttrValue("id"));
561
+ }
562
+ }
563
+
564
+ // ro.push(...) or ro.reset() here would throw TypeError,
565
+ // so the parser's state is always safe.
566
+ parseTag("user", { id: "1", type: "admin" }, myPlugin);
567
+ ```
568
+
569
+ **Combining with `snapshot()`:** A snapshot taken via the read-only view can still be used to restore the real matcher.
570
+
571
+ ```javascript
572
+ const matcher = new Matcher();
573
+ matcher.push("root");
574
+ matcher.push("users");
575
+
576
+ const ro = matcher.readOnly();
577
+ const snap = ro.snapshot(); // ✓ snapshot works on read-only view
578
+
579
+ matcher.push("user"); // continue parsing...
580
+ matcher.restore(snap); // restore to "root.users" using the snapshot
581
+ ```
485
582
 
486
583
  ```javascript
487
584
  const matcher = new Matcher();
@@ -614,18 +711,6 @@ const parser = new XMLParser({
614
711
  });
615
712
  ```
616
713
 
617
- ## 🧪 Testing
618
-
619
- ```bash
620
- npm test
621
- ```
622
-
623
- All 77 tests covering:
624
- - Pattern parsing (exact, wildcards, attributes, position)
625
- - Path tracking (push, pop, update)
626
- - Pattern matching (all combinations)
627
- - Edge cases and error conditions
628
-
629
714
  ## 📄 License
630
715
 
631
716
  MIT
@@ -0,0 +1 @@
1
+ (()=>{"use strict";var t={d:(e,s)=>{for(var n in s)t.o(s,n)&&!t.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:s[n]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r:t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})}},e={};t.r(e),t.d(e,{Expression:()=>s,Matcher:()=>i,default:()=>r});class s{constructor(t,e={}){this.pattern=t,this.separator=e.separator||".",this.segments=this._parse(t),this._hasDeepWildcard=this.segments.some(t=>"deep-wildcard"===t.type),this._hasAttributeCondition=this.segments.some(t=>void 0!==t.attrName),this._hasPositionSelector=this.segments.some(t=>void 0!==t.position)}_parse(t){const e=[];let s=0,n="";for(;s<t.length;)t[s]===this.separator?s+1<t.length&&t[s+1]===this.separator?(n.trim()&&(e.push(this._parseSegment(n.trim())),n=""),e.push({type:"deep-wildcard"}),s+=2):(n.trim()&&e.push(this._parseSegment(n.trim())),n="",s++):(n+=t[s],s++);return n.trim()&&e.push(this._parseSegment(n.trim())),e}_parseSegment(t){const e={type:"tag"};let s=null,n=t;const i=t.match(/^([^\[]+)(\[[^\]]*\])(.*)$/);if(i&&(n=i[1]+i[3],i[2])){const t=i[2].slice(1,-1);t&&(s=t)}let r,a,h=n;if(n.includes("::")){const e=n.indexOf("::");if(r=n.substring(0,e).trim(),h=n.substring(e+2).trim(),!r)throw new Error(`Invalid namespace in pattern: ${t}`)}let o=null;if(h.includes(":")){const t=h.lastIndexOf(":"),e=h.substring(0,t).trim(),s=h.substring(t+1).trim();["first","last","odd","even"].includes(s)||/^nth\(\d+\)$/.test(s)?(a=e,o=s):a=h}else a=h;if(!a)throw new Error(`Invalid segment pattern: ${t}`);if(e.tag=a,r&&(e.namespace=r),s)if(s.includes("=")){const t=s.indexOf("=");e.attrName=s.substring(0,t).trim(),e.attrValue=s.substring(t+1).trim()}else e.attrName=s.trim();if(o){const t=o.match(/^nth\((\d+)\)$/);t?(e.position="nth",e.positionValue=parseInt(t[1],10)):e.position=o}return e}get length(){return this.segments.length}hasDeepWildcard(){return this._hasDeepWildcard}hasAttributeCondition(){return this._hasAttributeCondition}hasPositionSelector(){return this._hasPositionSelector}toString(){return this.pattern}}const n=new Set(["push","pop","reset","updateCurrent","restore"]);class i{constructor(t={}){this.separator=t.separator||".",this.path=[],this.siblingStacks=[]}push(t,e=null,s=null){this.path.length>0&&(this.path[this.path.length-1].values=void 0);const n=this.path.length;this.siblingStacks[n]||(this.siblingStacks[n]=new Map);const i=this.siblingStacks[n],r=s?`${s}:${t}`:t,a=i.get(r)||0;let h=0;for(const t of i.values())h+=t;i.set(r,a+1);const o={tag:t,position:h,counter:a};null!=s&&(o.namespace=s),null!=e&&(o.values=e),this.path.push(o)}pop(){if(0===this.path.length)return;const t=this.path.pop();return this.siblingStacks.length>this.path.length+1&&(this.siblingStacks.length=this.path.length+1),t}updateCurrent(t){if(this.path.length>0){const e=this.path[this.path.length-1];null!=t&&(e.values=t)}}getCurrentTag(){return this.path.length>0?this.path[this.path.length-1].tag:void 0}getCurrentNamespace(){return this.path.length>0?this.path[this.path.length-1].namespace:void 0}getAttrValue(t){if(0===this.path.length)return;const e=this.path[this.path.length-1];return e.values?.[t]}hasAttr(t){if(0===this.path.length)return!1;const e=this.path[this.path.length-1];return void 0!==e.values&&t in e.values}getPosition(){return 0===this.path.length?-1:this.path[this.path.length-1].position??0}getCounter(){return 0===this.path.length?-1:this.path[this.path.length-1].counter??0}getIndex(){return this.getPosition()}getDepth(){return this.path.length}toString(t,e=!0){const s=t||this.separator;return this.path.map(t=>e&&t.namespace?`${t.namespace}:${t.tag}`:t.tag).join(s)}toArray(){return this.path.map(t=>t.tag)}reset(){this.path=[],this.siblingStacks=[]}matches(t){const e=t.segments;return 0!==e.length&&(t.hasDeepWildcard()?this._matchWithDeepWildcard(e):this._matchSimple(e))}_matchSimple(t){if(this.path.length!==t.length)return!1;for(let e=0;e<t.length;e++){const s=t[e],n=this.path[e],i=e===this.path.length-1;if(!this._matchSegment(s,n,i))return!1}return!0}_matchWithDeepWildcard(t){let e=this.path.length-1,s=t.length-1;for(;s>=0&&e>=0;){const n=t[s];if("deep-wildcard"===n.type){if(s--,s<0)return!0;const n=t[s];let i=!1;for(let t=e;t>=0;t--){const r=t===this.path.length-1;if(this._matchSegment(n,this.path[t],r)){e=t-1,s--,i=!0;break}}if(!i)return!1}else{const t=e===this.path.length-1;if(!this._matchSegment(n,this.path[e],t))return!1;e--,s--}}return s<0}_matchSegment(t,e,s){if("*"!==t.tag&&t.tag!==e.tag)return!1;if(void 0!==t.namespace&&"*"!==t.namespace&&t.namespace!==e.namespace)return!1;if(void 0!==t.attrName){if(!s)return!1;if(!e.values||!(t.attrName in e.values))return!1;if(void 0!==t.attrValue){const s=e.values[t.attrName];if(String(s)!==String(t.attrValue))return!1}}if(void 0!==t.position){if(!s)return!1;const n=e.counter??0;if("first"===t.position&&0!==n)return!1;if("odd"===t.position&&n%2!=1)return!1;if("even"===t.position&&n%2!=0)return!1;if("nth"===t.position&&n!==t.positionValue)return!1}return!0}snapshot(){return{path:this.path.map(t=>({...t})),siblingStacks:this.siblingStacks.map(t=>new Map(t))}}restore(t){this.path=t.path.map(t=>({...t})),this.siblingStacks=t.siblingStacks.map(t=>new Map(t))}readOnly(){return new Proxy(this,{get(t,e,s){if(n.has(e))return()=>{throw new TypeError(`Cannot call '${e}' on a read-only Matcher. Obtain a writable instance to mutate state.`)};const i=Reflect.get(t,e,s);return"path"===e||"siblingStacks"===e?Object.freeze(Array.isArray(i)?i.map(t=>t instanceof Map?Object.freeze(new Map(t)):Object.freeze({...t})):i):"function"==typeof i?i.bind(t):i},set(t,e){throw new TypeError(`Cannot set property '${String(e)}' on a read-only Matcher.`)},deleteProperty(t,e){throw new TypeError(`Cannot delete property '${String(e)}' from a read-only Matcher.`)}})}}const r={Expression:s,Matcher:i};module.exports=e})();
@@ -69,6 +69,17 @@ declare interface Segment {
69
69
  * const { Expression } = require('path-expression-matcher');
70
70
  * const expr = new Expression("root.users.user");
71
71
  * const expr2 = new Expression("..user[id]:first");
72
+ * const expr3 = new Expression("root/users/user", { separator: '/' });
73
+ * ```
74
+ *
75
+ * Pattern Syntax:
76
+ * - `root.users.user` - Match exact path
77
+ * - `..user` - Match "user" at any depth (deep wildcard)
78
+ * - `user[id]` - Match user tag with "id" attribute
79
+ * - `user[id=123]` - Match user tag where id="123"
80
+ * - `user:first` - Match first occurrence of user tag
81
+ * - `ns::user` - Match user tag with namespace "ns"
82
+ * - `ns::user[id]:first` - Combine namespace, attribute, and position
72
83
  * ```
73
84
  */
74
85
  declare class Expression {
@@ -177,6 +188,153 @@ declare interface MatcherSnapshot {
177
188
  siblingStacks: Map<string, number>[];
178
189
  }
179
190
 
191
+ /**
192
+ * ReadOnlyMatcher - A safe, read-only view over a {@link Matcher} instance.
193
+ *
194
+ * Returned by {@link Matcher.readOnly}. Exposes all query and inspection
195
+ * methods but **throws a `TypeError`** if any state-mutating method is called
196
+ * (`push`, `pop`, `reset`, `updateCurrent`, `restore`). Direct property
197
+ * writes are also blocked.
198
+ *
199
+ * Pass this to consumers that only need to inspect or match the current path
200
+ * so they cannot accidentally corrupt the parser state.
201
+ *
202
+ * @example
203
+ * ```javascript
204
+ * const matcher = new Matcher();
205
+ * matcher.push("root", {});
206
+ * matcher.push("users", {});
207
+ * matcher.push("user", { id: "123" });
208
+ *
209
+ * const ro: ReadOnlyMatcher = matcher.readOnly();
210
+ *
211
+ * ro.matches(expr); // ✓ works
212
+ * ro.getCurrentTag(); // ✓ "user"
213
+ * ro.getDepth(); // ✓ 3
214
+ * ro.push("child", {}); // ✗ TypeError: Cannot call 'push' on a read-only Matcher
215
+ * ro.reset(); // ✗ TypeError: Cannot call 'reset' on a read-only Matcher
216
+ * ```
217
+ */
218
+ declare interface ReadOnlyMatcher {
219
+ /**
220
+ * Default path separator (read-only)
221
+ */
222
+ readonly separator: string;
223
+
224
+ /**
225
+ * Current path stack (each node is a frozen copy)
226
+ */
227
+ readonly path: ReadonlyArray<Readonly<PathNode>>;
228
+
229
+ // ── Query methods ───────────────────────────────────────────────────────────
230
+
231
+ /**
232
+ * Get current tag name
233
+ * @returns Current tag name or undefined if path is empty
234
+ */
235
+ getCurrentTag(): string | undefined;
236
+
237
+ /**
238
+ * Get current namespace
239
+ * @returns Current namespace or undefined if not present or path is empty
240
+ */
241
+ getCurrentNamespace(): string | undefined;
242
+
243
+ /**
244
+ * Get current node's attribute value
245
+ * @param attrName - Attribute name
246
+ * @returns Attribute value or undefined
247
+ */
248
+ getAttrValue(attrName: string): any;
249
+
250
+ /**
251
+ * Check if current node has an attribute
252
+ * @param attrName - Attribute name
253
+ */
254
+ hasAttr(attrName: string): boolean;
255
+
256
+ /**
257
+ * Get current node's sibling position (child index in parent)
258
+ * @returns Position index or -1 if path is empty
259
+ */
260
+ getPosition(): number;
261
+
262
+ /**
263
+ * Get current node's repeat counter (occurrence count of this tag name)
264
+ * @returns Counter value or -1 if path is empty
265
+ */
266
+ getCounter(): number;
267
+
268
+ /**
269
+ * Get current node's sibling index (alias for getPosition for backward compatibility)
270
+ * @returns Index or -1 if path is empty
271
+ * @deprecated Use getPosition() or getCounter() instead
272
+ */
273
+ getIndex(): number;
274
+
275
+ /**
276
+ * Get current path depth
277
+ * @returns Number of nodes in the path
278
+ */
279
+ getDepth(): number;
280
+
281
+ /**
282
+ * Get path as string
283
+ * @param separator - Optional separator (uses default if not provided)
284
+ * @param includeNamespace - Whether to include namespace in output
285
+ * @returns Path string (e.g., "root.users.user" or "ns:root.ns:users.user")
286
+ */
287
+ toString(separator?: string, includeNamespace?: boolean): string;
288
+
289
+ /**
290
+ * Get path as array of tag names
291
+ * @returns Array of tag names
292
+ */
293
+ toArray(): string[];
294
+
295
+ /**
296
+ * Match current path against an Expression
297
+ * @param expression - The expression to match against
298
+ * @returns True if current path matches the expression
299
+ */
300
+ matches(expression: Expression): boolean;
301
+
302
+ /**
303
+ * Create a snapshot of current state
304
+ * @returns State snapshot that can be restored later
305
+ */
306
+ snapshot(): MatcherSnapshot;
307
+
308
+ // ── Blocked mutating methods ────────────────────────────────────────────────
309
+ // These are present in the type so callers get a compile-time error with a
310
+ // helpful message instead of a silent "property does not exist" error.
311
+
312
+ /**
313
+ * @throws {TypeError} Always – mutation is not allowed on a read-only view.
314
+ */
315
+ push(tagName: string, attrValues?: Record<string, any> | null, namespace?: string | null): never;
316
+
317
+ /**
318
+ * @throws {TypeError} Always – mutation is not allowed on a read-only view.
319
+ */
320
+ pop(): never;
321
+
322
+ /**
323
+ * @throws {TypeError} Always – mutation is not allowed on a read-only view.
324
+ */
325
+ updateCurrent(attrValues: Record<string, any>): never;
326
+
327
+ /**
328
+ * @throws {TypeError} Always – mutation is not allowed on a read-only view.
329
+ */
330
+ reset(): never;
331
+
332
+ /**
333
+ * @throws {TypeError} Always – mutation is not allowed on a read-only view.
334
+ */
335
+ restore(snapshot: MatcherSnapshot): never;
336
+ }
337
+
180
338
  /**
181
339
  * Matcher - Tracks current path in XML/JSON tree and matches against Expressions
182
340
  *
@@ -191,6 +349,12 @@ declare interface MatcherSnapshot {
191
349
  * matcher.push("root", {});
192
350
  * matcher.push("users", {});
193
351
  * matcher.push("user", { id: "123", type: "admin" });
352
+ *
353
+ * const expr = new Expression("root.users.user");
354
+ * matcher.matches(expr); // true
355
+ *
356
+ * matcher.pop();
357
+ * matcher.matches(expr); // false
194
358
  * ```
195
359
  */
196
360
  declare class Matcher {
@@ -215,6 +379,13 @@ declare class Matcher {
215
379
  * @param tagName - Name of the tag
216
380
  * @param attrValues - Attribute key-value pairs for current node (optional)
217
381
  * @param namespace - Namespace for the tag (optional)
382
+ *
383
+ * @example
384
+ * ```javascript
385
+ * matcher.push("user", { id: "123", type: "admin" });
386
+ * matcher.push("user", { id: "456" }, "ns");
387
+ * matcher.push("container", null);
388
+ * ```
218
389
  */
219
390
  push(tagName: string, attrValues?: Record<string, any> | null, namespace?: string | null): void;
220
391
 
@@ -304,6 +475,18 @@ declare class Matcher {
304
475
  * Match current path against an Expression
305
476
  * @param expression - The expression to match against
306
477
  * @returns True if current path matches the expression
478
+ *
479
+ * @example
480
+ * ```javascript
481
+ * const expr = new Expression("root.users.user[id]");
482
+ * const matcher = new Matcher();
483
+ *
484
+ * matcher.push("root");
485
+ * matcher.push("users");
486
+ * matcher.push("user", { id: "123" });
487
+ *
488
+ * matcher.matches(expr); // true
489
+ * ```
307
490
  */
308
491
  matches(expression: Expression): boolean;
309
492
 
@@ -318,6 +501,11 @@ declare class Matcher {
318
501
  * @param snapshot - State snapshot from previous snapshot() call
319
502
  */
320
503
  restore(snapshot: MatcherSnapshot): void;
504
+
505
+ /**
506
+ * Return a read-only view of this matcher.
507
+ */
508
+ readOnly(): ReadOnlyMatcher;
321
509
  }
322
510
 
323
511
  declare namespace pathExpressionMatcher {