@cdklabs/cdk-ssm-documents 0.0.51 → 0.0.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1123) hide show
  1. package/.jsii +11 -11
  2. package/lib/construct/synth-utils.js +1 -1
  3. package/lib/document/automation-document.js +1 -1
  4. package/lib/document/command-document.js +1 -1
  5. package/lib/document/document-builder.js +2 -2
  6. package/lib/document/ssm-document.js +1 -1
  7. package/lib/domain/aws-service.js +1 -1
  8. package/lib/domain/choice.js +1 -1
  9. package/lib/domain/data-type.js +1 -1
  10. package/lib/domain/enum/install-action.js +2 -2
  11. package/lib/domain/enum/install-uninstall-repair.js +2 -2
  12. package/lib/domain/enum/installation-type.js +2 -2
  13. package/lib/domain/enum/package-name.js +2 -2
  14. package/lib/domain/input.js +1 -1
  15. package/lib/domain/operation.js +1 -1
  16. package/lib/domain/platform.js +1 -1
  17. package/lib/domain/precondition.js +1 -1
  18. package/lib/incident-response/incident-response.js +3 -3
  19. package/lib/interface/approve-hook.js +2 -2
  20. package/lib/interface/auth-method.js +3 -3
  21. package/lib/interface/aws-invoker.js +2 -2
  22. package/lib/interface/downloadable-content.js +8 -8
  23. package/lib/interface/environment.js +3 -3
  24. package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
  25. package/lib/interface/observer.js +1 -1
  26. package/lib/interface/on-failure.js +6 -6
  27. package/lib/interface/pause-hook.js +2 -2
  28. package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
  29. package/lib/interface/run-document-location.js +2 -2
  30. package/lib/interface/sleep-hook.js +2 -2
  31. package/lib/interface/step-ref.js +1 -1
  32. package/lib/interface/variables/boolean-variable.js +2 -2
  33. package/lib/interface/variables/map-list-variable.js +2 -2
  34. package/lib/interface/variables/number-variable.js +2 -2
  35. package/lib/interface/variables/secure-string-variable.js +4 -4
  36. package/lib/interface/variables/string-list-variable.js +2 -2
  37. package/lib/interface/variables/string-map-variable.js +2 -2
  38. package/lib/interface/variables/string-variable.js +4 -4
  39. package/lib/interface/variables/variable.js +2 -2
  40. package/lib/interface/webhook.js +1 -1
  41. package/lib/parent-steps/automation/approve-step.js +1 -1
  42. package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
  43. package/lib/parent-steps/automation/aws-api-step.js +1 -1
  44. package/lib/parent-steps/automation/branch-step.js +1 -1
  45. package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
  46. package/lib/parent-steps/automation/copy-image-step.js +1 -1
  47. package/lib/parent-steps/automation/create-image-step.js +1 -1
  48. package/lib/parent-steps/automation/create-stack-step.js +3 -3
  49. package/lib/parent-steps/automation/create-tags-step.js +3 -3
  50. package/lib/parent-steps/automation/delete-image-step.js +1 -1
  51. package/lib/parent-steps/automation/delete-stack-step.js +1 -1
  52. package/lib/parent-steps/automation/execute-automation-step.js +1 -1
  53. package/lib/parent-steps/automation/execute-script-step.js +5 -5
  54. package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
  55. package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
  56. package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
  57. package/lib/parent-steps/automation/pause-step.js +1 -1
  58. package/lib/parent-steps/automation/run-command-step.js +3 -3
  59. package/lib/parent-steps/automation/run-instance-step.js +1 -1
  60. package/lib/parent-steps/automation/sleep-step.js +1 -1
  61. package/lib/parent-steps/automation/update-variable.js +1 -1
  62. package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
  63. package/lib/parent-steps/automation-step.js +1 -1
  64. package/lib/parent-steps/command/applications-step.js +1 -1
  65. package/lib/parent-steps/command/configure-docker-step.js +1 -1
  66. package/lib/parent-steps/command/configure-package-step.js +1 -1
  67. package/lib/parent-steps/command/domain-join-step.js +1 -1
  68. package/lib/parent-steps/command/download-content-step.js +1 -1
  69. package/lib/parent-steps/command/ps-module-step.js +1 -1
  70. package/lib/parent-steps/command/run-docker-action-step.js +1 -1
  71. package/lib/parent-steps/command/run-document-step.js +1 -1
  72. package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
  73. package/lib/parent-steps/command/run-shell-script-step.js +1 -1
  74. package/lib/parent-steps/command/software-inventory-step.js +1 -1
  75. package/lib/parent-steps/command/update-agent-step.js +1 -1
  76. package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
  77. package/lib/parent-steps/command-step.js +1 -1
  78. package/lib/parent-steps/step.js +1 -1
  79. package/lib/patterns/automation/composite-step.js +2 -2
  80. package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
  81. package/lib/patterns/automation/string-step.js +1 -1
  82. package/lib/patterns/document/string-document.js +1 -1
  83. package/lib/patterns/document/timed-document.js +1 -1
  84. package/lib/samples/hello-world.js +1 -1
  85. package/lib/simulation/automation/approve-simulation.js +1 -1
  86. package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
  87. package/lib/simulation/automation/automation-simulation-base.js +1 -1
  88. package/lib/simulation/automation/aws-api-simulation.js +1 -1
  89. package/lib/simulation/automation/branch-simulation.js +1 -1
  90. package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
  91. package/lib/simulation/automation/copy-image-simulation.js +1 -1
  92. package/lib/simulation/automation/create-image-simulation.js +1 -1
  93. package/lib/simulation/automation/create-stack-simulation.js +1 -1
  94. package/lib/simulation/automation/create-tags-simulation.js +1 -1
  95. package/lib/simulation/automation/delete-image-simulation.js +1 -1
  96. package/lib/simulation/automation/delete-stack-simulation.js +1 -1
  97. package/lib/simulation/automation/execute-script-simulation.js +1 -1
  98. package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
  99. package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
  100. package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
  101. package/lib/simulation/automation/pause-simulation.js +1 -1
  102. package/lib/simulation/automation/run-command-simulation.js +1 -1
  103. package/lib/simulation/automation/run-instance-simulation.js +1 -1
  104. package/lib/simulation/automation/sleep-simulation.js +1 -1
  105. package/lib/simulation/automation/update-variable-simulation.js +1 -1
  106. package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
  107. package/lib/simulation/automation-step-simulation.js +1 -1
  108. package/lib/simulation/command/command-simulation-base.js +1 -1
  109. package/lib/simulation/command/ps-module-simulation.js +1 -1
  110. package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
  111. package/lib/simulation/command/run-shell-script-simulation.js +1 -1
  112. package/lib/simulation/command-step-simulation.js +1 -1
  113. package/lib/simulation/document/automation-simulation.js +1 -1
  114. package/lib/simulation/document/command-simulation.js +1 -1
  115. package/lib/simulation/simulation.js +1 -1
  116. package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +2 -2
  117. package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +2 -2
  118. package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +1 -1
  119. package/node_modules/@aws/lambda-invoke-store/package.json +1 -1
  120. package/node_modules/@aws-sdk/client-cloudformation/README.md +26 -46
  121. package/node_modules/@aws-sdk/client-cloudformation/package.json +34 -34
  122. package/node_modules/@aws-sdk/client-cloudwatch/README.md +76 -46
  123. package/node_modules/@aws-sdk/client-cloudwatch/package.json +36 -36
  124. package/node_modules/@aws-sdk/client-ec2/README.md +26 -46
  125. package/node_modules/@aws-sdk/client-ec2/package.json +36 -36
  126. package/node_modules/@aws-sdk/client-iam/README.md +26 -46
  127. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +1 -1
  128. package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +10 -10
  129. package/node_modules/@aws-sdk/client-iam/package.json +35 -35
  130. package/node_modules/@aws-sdk/client-lambda/README.md +26 -46
  131. package/node_modules/@aws-sdk/client-lambda/package.json +38 -38
  132. package/node_modules/@aws-sdk/client-s3/README.md +26 -46
  133. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5 -0
  134. package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +6 -4
  135. package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +4 -0
  136. package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +6 -4
  137. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +5 -4
  138. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +9 -0
  139. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +0 -1
  140. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +0 -1
  141. package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +5 -4
  142. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +5 -4
  143. package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +12 -0
  144. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +24 -2
  145. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +6 -0
  146. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +2 -0
  147. package/node_modules/@aws-sdk/client-s3/package.json +50 -50
  148. package/node_modules/@aws-sdk/client-sns/README.md +26 -46
  149. package/node_modules/@aws-sdk/client-sns/package.json +33 -33
  150. package/node_modules/@aws-sdk/client-sqs/README.md +65 -46
  151. package/node_modules/@aws-sdk/client-sqs/package.json +36 -36
  152. package/node_modules/@aws-sdk/client-ssm/README.md +26 -46
  153. package/node_modules/@aws-sdk/client-ssm/package.json +34 -34
  154. package/node_modules/@aws-sdk/core/dist-cjs/index.js +4 -0
  155. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +4 -0
  156. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +2 -0
  157. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +3 -0
  158. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +2 -0
  159. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +4 -0
  160. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +3 -0
  161. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +2 -0
  162. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +1 -0
  163. package/node_modules/@aws-sdk/core/package.json +11 -11
  164. package/node_modules/@aws-sdk/crc64-nvme/package.json +2 -2
  165. package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
  166. package/node_modules/@aws-sdk/credential-provider-http/package.json +10 -10
  167. package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
  168. package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
  169. package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
  170. package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
  171. package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
  172. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
  173. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +5 -5
  174. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +4 -4
  175. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +10 -10
  176. package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
  177. package/node_modules/@aws-sdk/middleware-location-constraint/package.json +3 -3
  178. package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
  179. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
  180. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +8 -8
  181. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +11 -11
  182. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
  183. package/node_modules/@aws-sdk/middleware-ssec/package.json +3 -3
  184. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +9 -9
  185. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +9 -9
  186. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +4 -2
  187. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +3 -3
  188. package/node_modules/@aws-sdk/middleware-user-agent/package.json +8 -7
  189. package/node_modules/@aws-sdk/nested-clients/package.json +32 -32
  190. package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
  191. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +6 -6
  192. package/node_modules/@aws-sdk/token-providers/package.json +7 -7
  193. package/node_modules/@aws-sdk/types/package.json +2 -2
  194. package/node_modules/@aws-sdk/util-endpoints/package.json +5 -5
  195. package/node_modules/@aws-sdk/util-format-url/package.json +4 -4
  196. package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +10 -38
  197. package/node_modules/@aws-sdk/util-locate-window/package.json +11 -10
  198. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
  199. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +75 -19
  200. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getNodeModulesParentDirs.js +15 -0
  201. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedDevTypeScriptVersion.js +14 -0
  202. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +53 -7
  203. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/{getTypeScriptPackageJsonPaths.d.ts → getNodeModulesParentDirs.d.ts} +2 -2
  204. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedDevTypeScriptVersion.d.ts +8 -0
  205. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getNodeModulesParentDirs.d.ts +1 -0
  206. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedDevTypeScriptVersion.d.ts +3 -0
  207. package/node_modules/@aws-sdk/util-user-agent-node/package.json +6 -5
  208. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/CHANGELOG.md +16 -0
  209. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/README.md +1 -1
  210. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/fxb.cjs +1 -0
  211. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/fxb.d.cts +22 -9
  212. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/fxb.min.js +2 -0
  213. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -0
  214. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/package.json +7 -5
  215. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/src/fxb.d.ts +27 -3
  216. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/src/fxb.js +265 -21
  217. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/src/orderedJs2Xml.js +165 -18
  218. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/LICENSE +21 -0
  219. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/README.md +635 -0
  220. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.cjs +1 -0
  221. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.d.cts +335 -0
  222. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.min.js +2 -0
  223. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -0
  224. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/package.json +78 -0
  225. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/src/Expression.js +232 -0
  226. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/src/Matcher.js +414 -0
  227. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/src/index.d.ts +366 -0
  228. package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/src/index.js +28 -0
  229. package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
  230. package/node_modules/@smithy/abort-controller/package.json +2 -2
  231. package/node_modules/@smithy/config-resolver/package.json +5 -5
  232. package/node_modules/@smithy/core/dist-cjs/index.js +1 -2
  233. package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +7 -1
  234. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +22 -0
  235. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +11 -1
  236. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +41 -4
  237. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +1 -2
  238. package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +7 -1
  239. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +1 -0
  240. package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +17 -0
  241. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +10 -0
  242. package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +1 -1
  243. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +3 -2
  244. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +30 -1
  245. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +5 -1
  246. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +1 -0
  247. package/node_modules/@smithy/core/dist-types/submodules/endpoints/toEndpointV1.d.ts +6 -0
  248. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +11 -0
  249. package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +6 -0
  250. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.d.ts +1 -0
  251. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/toEndpointV1.d.ts +6 -0
  252. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +11 -0
  253. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +6 -0
  254. package/node_modules/@smithy/core/endpoints.d.ts +7 -0
  255. package/node_modules/@smithy/core/endpoints.js +6 -0
  256. package/node_modules/@smithy/core/package.json +16 -7
  257. package/node_modules/@smithy/credential-provider-imds/package.json +5 -5
  258. package/node_modules/@smithy/eventstream-codec/package.json +2 -2
  259. package/node_modules/@smithy/eventstream-serde-browser/package.json +3 -3
  260. package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +2 -2
  261. package/node_modules/@smithy/eventstream-serde-node/package.json +3 -3
  262. package/node_modules/@smithy/eventstream-serde-universal/package.json +3 -3
  263. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +4 -1
  264. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +4 -1
  265. package/node_modules/@smithy/fetch-http-handler/package.json +5 -5
  266. package/node_modules/@smithy/hash-blob-browser/package.json +2 -2
  267. package/node_modules/@smithy/hash-node/package.json +2 -2
  268. package/node_modules/@smithy/hash-stream-node/package.json +2 -2
  269. package/node_modules/@smithy/invalid-dependency/package.json +2 -2
  270. package/node_modules/@smithy/md5-js/package.json +2 -2
  271. package/node_modules/@smithy/middleware-compression/package.json +6 -6
  272. package/node_modules/@smithy/middleware-content-length/package.json +3 -3
  273. package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +17 -1
  274. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +9 -0
  275. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +8 -1
  276. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +1 -0
  277. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +1 -0
  278. package/node_modules/@smithy/middleware-endpoint/package.json +8 -8
  279. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +9 -12
  280. package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +9 -12
  281. package/node_modules/@smithy/middleware-retry/package.json +8 -8
  282. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +3 -2
  283. package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +3 -2
  284. package/node_modules/@smithy/middleware-serde/package.json +4 -3
  285. package/node_modules/@smithy/middleware-stack/package.json +2 -2
  286. package/node_modules/@smithy/node-config-provider/package.json +4 -4
  287. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +48 -38
  288. package/node_modules/@smithy/node-http-handler/dist-es/build-abort-error.js +4 -1
  289. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +38 -31
  290. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +1 -1
  291. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +1 -1
  292. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +1 -1
  293. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +6 -6
  294. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +1 -1
  295. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +1 -1
  296. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +1 -1
  297. package/node_modules/@smithy/node-http-handler/dist-types/build-abort-error.d.ts +4 -3
  298. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +1 -1
  299. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +4 -4
  300. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +1 -1
  301. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +1 -1
  302. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +2 -2
  303. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +3 -3
  304. package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +1 -1
  305. package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +1 -1
  306. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +1 -1
  307. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +1 -1
  308. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +1 -1
  309. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +2 -2
  310. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/build-abort-error.d.ts +4 -3
  311. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +1 -1
  312. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +4 -4
  313. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +1 -1
  314. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +1 -1
  315. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +2 -2
  316. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +3 -3
  317. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +1 -1
  318. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +1 -1
  319. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +1 -1
  320. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +1 -1
  321. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +1 -1
  322. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +2 -2
  323. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +2 -2
  324. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +2 -2
  325. package/node_modules/@smithy/node-http-handler/package.json +5 -5
  326. package/node_modules/@smithy/property-provider/package.json +2 -2
  327. package/node_modules/@smithy/protocol-http/package.json +2 -2
  328. package/node_modules/@smithy/querystring-builder/package.json +2 -2
  329. package/node_modules/@smithy/querystring-parser/package.json +2 -2
  330. package/node_modules/@smithy/service-error-classification/package.json +2 -2
  331. package/node_modules/@smithy/shared-ini-file-loader/package.json +2 -2
  332. package/node_modules/@smithy/signature-v4/package.json +4 -4
  333. package/node_modules/@smithy/smithy-client/package.json +7 -7
  334. package/node_modules/@smithy/types/dist-types/http.d.ts +1 -0
  335. package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +1 -0
  336. package/node_modules/@smithy/types/package.json +1 -1
  337. package/node_modules/@smithy/url-parser/package.json +3 -3
  338. package/node_modules/@smithy/util-defaults-mode-browser/package.json +4 -4
  339. package/node_modules/@smithy/util-defaults-mode-node/package.json +7 -7
  340. package/node_modules/@smithy/util-endpoints/package.json +3 -3
  341. package/node_modules/@smithy/util-middleware/package.json +2 -2
  342. package/node_modules/@smithy/util-retry/package.json +3 -3
  343. package/node_modules/@smithy/util-stream/package.json +4 -4
  344. package/node_modules/@smithy/util-waiter/dist-cjs/index.js +1 -1
  345. package/node_modules/@smithy/util-waiter/dist-es/poller.js +1 -1
  346. package/node_modules/@smithy/util-waiter/package.json +3 -3
  347. package/node_modules/bowser/README.md +74 -7
  348. package/node_modules/bowser/bundled.js +1 -1
  349. package/node_modules/bowser/es5.js +1 -1
  350. package/node_modules/bowser/index.d.ts +115 -12
  351. package/node_modules/bowser/package.json +17 -7
  352. package/node_modules/bowser/src/bowser.js +24 -8
  353. package/node_modules/bowser/src/constants.js +79 -18
  354. package/node_modules/bowser/src/parser-browsers.js +483 -0
  355. package/node_modules/bowser/src/parser-os.js +12 -0
  356. package/node_modules/bowser/src/parser-platforms.js +301 -1
  357. package/node_modules/bowser/src/parser.js +106 -10
  358. package/node_modules/bowser/src/utils.js +33 -15
  359. package/node_modules/deasync/.github/workflows/npm_test.yml +3 -3
  360. package/node_modules/deasync/bin/darwin-arm64-node-24/deasync.node +0 -0
  361. package/node_modules/deasync/bin/linux-x64-node-24/deasync.node +0 -0
  362. package/node_modules/deasync/bin/win32-x64-node-24/deasync.node +0 -0
  363. package/node_modules/deasync/package.json +1 -1
  364. package/package.json +10 -10
  365. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/LICENSE +0 -201
  366. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/README.md +0 -4
  367. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  368. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  369. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  370. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  371. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  372. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  373. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  374. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  375. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  376. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  377. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  378. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  379. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  380. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  381. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  382. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  383. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  384. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  385. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  386. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  387. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  388. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  389. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  390. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  391. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  392. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  393. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  394. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  395. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  396. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  397. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  398. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  399. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  400. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  401. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  402. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  403. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  404. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  405. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  406. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  407. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  408. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  409. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  410. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  411. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  412. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  413. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  414. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  415. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  416. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  417. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  418. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  419. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  420. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  421. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  422. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  423. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  424. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  425. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  426. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  427. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  428. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  429. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  430. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  431. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  432. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  433. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  434. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  435. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  436. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  437. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  438. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  439. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  440. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  441. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  442. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  443. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  444. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  445. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  446. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  447. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  448. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  449. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  450. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  451. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  452. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  453. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  454. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  455. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  456. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  457. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  458. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  459. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  460. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  461. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  462. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  463. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  464. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  465. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  466. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  467. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  468. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  469. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  470. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  471. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  472. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  473. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  474. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  475. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  476. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  477. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  478. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  479. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  480. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  481. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  482. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  483. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  484. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  485. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  486. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  487. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  488. package/node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types/package.json +0 -56
  489. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/LICENSE +0 -201
  490. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/README.md +0 -4
  491. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  492. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  493. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  494. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  495. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  496. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  497. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  498. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  499. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  500. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  501. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  502. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  503. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  504. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  505. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  506. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  507. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  508. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  509. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  510. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  511. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  512. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  513. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  514. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  515. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  516. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  517. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  518. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  519. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  520. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  521. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  522. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  523. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  524. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  525. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  526. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  527. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  528. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  529. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  530. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  531. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  532. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  533. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  534. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  535. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  536. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  537. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  538. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  539. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  540. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  541. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  542. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  543. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  544. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  545. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  546. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  547. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  548. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  549. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  550. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  551. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  552. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  553. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  554. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  555. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  556. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  557. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  558. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  559. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  560. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  561. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  562. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  563. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  564. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  565. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  566. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  567. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  568. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  569. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  570. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  571. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  572. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  573. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  574. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  575. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  576. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  577. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  578. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  579. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  580. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  581. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  582. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  583. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  584. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  585. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  586. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  587. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  588. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  589. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  590. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  591. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  592. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  593. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  594. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  595. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  596. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  597. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  598. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  599. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  600. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  601. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  602. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  603. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  604. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  605. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  606. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  607. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  608. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  609. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  610. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  611. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  612. package/node_modules/@aws-crypto/crc32c/node_modules/@aws-sdk/types/package.json +0 -56
  613. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/LICENSE +0 -201
  614. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/README.md +0 -4
  615. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  616. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  617. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  618. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  619. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  620. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  621. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  622. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  623. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  624. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  625. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  626. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  627. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  628. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  629. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  630. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  631. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  632. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  633. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  634. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  635. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  636. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  637. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  638. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  639. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  640. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  641. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  642. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  643. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  644. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  645. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  646. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  647. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  648. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  649. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  650. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  651. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  652. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  653. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  654. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  655. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  656. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  657. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  658. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  659. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  660. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  661. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  662. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  663. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  664. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  665. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  666. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  667. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  668. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  669. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  670. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  671. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  672. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  673. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  674. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  675. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  676. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  677. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  678. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  679. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  680. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  681. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  682. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  683. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  684. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  685. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  686. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  687. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  688. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  689. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  690. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  691. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  692. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  693. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  694. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  695. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  696. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  697. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  698. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  699. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  700. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  701. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  702. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  703. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  704. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  705. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  706. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  707. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  708. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  709. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  710. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  711. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  712. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  713. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  714. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  715. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  716. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  717. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  718. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  719. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  720. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  721. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  722. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  723. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  724. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  725. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  726. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  727. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  728. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  729. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  730. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  731. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  732. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  733. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  734. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  735. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  736. package/node_modules/@aws-crypto/sha1-browser/node_modules/@aws-sdk/types/package.json +0 -56
  737. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/LICENSE +0 -201
  738. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/README.md +0 -4
  739. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  740. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  741. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  742. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  743. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  744. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  745. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  746. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  747. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  748. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  749. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  750. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  751. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  752. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  753. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  754. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  755. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  756. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  757. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  758. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  759. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  760. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  761. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  762. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  763. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  764. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  765. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  766. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  767. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  768. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  769. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  770. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  771. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  772. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  773. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  774. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  775. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  776. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  777. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  778. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  779. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  780. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  781. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  782. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  783. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  784. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  785. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  786. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  787. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  788. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  789. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  790. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  791. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  792. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  793. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  794. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  795. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  796. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  797. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  798. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  799. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  800. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  801. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  802. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  803. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  804. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  805. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  806. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  807. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  808. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  809. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  810. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  811. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  812. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  813. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  814. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  815. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  816. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  817. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  818. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  819. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  820. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  821. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  822. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  823. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  824. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  825. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  826. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  827. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  828. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  829. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  830. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  831. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  832. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  833. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  834. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  835. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  836. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  837. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  838. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  839. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  840. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  841. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  842. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  843. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  844. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  845. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  846. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  847. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  848. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  849. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  850. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  851. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  852. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  853. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  854. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  855. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  856. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  857. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  858. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  859. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  860. package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/package.json +0 -56
  861. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/LICENSE +0 -201
  862. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/README.md +0 -4
  863. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  864. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  865. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  866. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  867. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  868. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  869. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  870. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  871. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  872. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  873. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  874. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  875. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  876. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  877. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  878. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  879. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  880. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  881. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  882. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  883. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  884. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  885. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  886. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  887. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  888. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  889. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  890. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  891. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  892. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  893. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  894. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  895. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  896. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  897. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  898. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  899. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  900. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  901. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  902. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  903. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  904. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  905. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  906. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  907. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  908. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  909. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  910. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  911. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  912. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  913. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  914. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  915. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  916. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  917. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  918. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  919. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  920. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  921. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  922. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  923. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  924. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  925. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  926. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  927. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  928. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  929. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  930. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  931. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  932. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  933. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  934. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  935. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  936. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  937. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  938. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  939. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  940. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  941. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  942. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  943. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  944. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  945. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  946. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  947. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  948. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  949. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  950. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  951. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  952. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  953. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  954. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  955. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  956. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  957. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  958. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  959. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  960. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  961. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  962. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  963. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  964. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  965. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  966. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  967. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  968. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  969. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  970. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  971. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  972. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  973. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  974. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  975. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  976. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  977. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  978. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  979. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  980. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  981. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  982. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  983. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  984. package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/package.json +0 -56
  985. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/LICENSE +0 -201
  986. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/README.md +0 -4
  987. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  988. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  989. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  990. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  991. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  992. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  993. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  994. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  995. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  996. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  997. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  998. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  999. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  1000. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  1001. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  1002. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  1003. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
  1004. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  1005. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  1006. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  1007. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  1008. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  1009. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  1010. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  1011. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
  1012. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  1013. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  1014. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  1015. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  1016. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  1017. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  1018. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  1019. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  1020. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  1021. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  1022. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  1023. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  1024. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  1025. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  1026. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  1027. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  1028. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  1029. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  1030. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  1031. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  1032. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  1033. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  1034. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  1035. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  1036. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  1037. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  1038. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  1039. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  1040. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  1041. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  1042. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  1043. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
  1044. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  1045. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  1046. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
  1047. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  1048. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  1049. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  1050. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  1051. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
  1052. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  1053. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  1054. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  1055. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  1056. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  1057. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  1058. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  1059. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  1060. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  1061. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  1062. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  1063. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  1064. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  1065. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  1066. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  1067. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  1068. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  1069. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  1070. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  1071. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  1072. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  1073. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  1074. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  1075. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  1076. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  1077. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  1078. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  1079. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  1080. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
  1081. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  1082. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  1083. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
  1084. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  1085. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  1086. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  1087. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  1088. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
  1089. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  1090. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  1091. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  1092. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  1093. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  1094. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  1095. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  1096. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  1097. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  1098. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  1099. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  1100. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  1101. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  1102. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  1103. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  1104. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  1105. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  1106. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  1107. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  1108. package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/package.json +0 -56
  1109. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptPackageJsonPaths.js +0 -17
  1110. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getTypeScriptPackageJsonPaths.d.ts +0 -3
  1111. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/builder.cjs +0 -1
  1112. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/builder.min.js +0 -2
  1113. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-builder/lib/builder.min.js.map +0 -1
  1114. package/node_modules/bowser/CHANGELOG.md +0 -218
  1115. package/node_modules/deasync/build/Makefile +0 -354
  1116. package/node_modules/deasync/build/Release/.deps/Release/deasync.node.d +0 -1
  1117. package/node_modules/deasync/build/Release/.deps/Release/obj.target/deasync/src/deasync.o.d +0 -149
  1118. package/node_modules/deasync/build/Release/.deps/Release/obj.target/deasync.node.d +0 -1
  1119. package/node_modules/deasync/build/Release/obj.target/deasync/src/deasync.o +0 -0
  1120. package/node_modules/deasync/build/Release/obj.target/deasync.node +0 -0
  1121. package/node_modules/deasync/build/binding.Makefile +0 -6
  1122. package/node_modules/deasync/build/config.gypi +0 -534
  1123. package/node_modules/deasync/build/deasync.target.mk +0 -156
@@ -1,218 +0,0 @@
1
- # Bowser Changelog
2
-
3
- ### 2.11.0 (Sep 12, 2020)
4
- - [ADD] Added support for aliases in `Parser#is` method (#437)
5
- - [ADD] Added more typings (#438, #427)
6
- - [ADD] Added support for MIUI Browserr (#436)
7
-
8
- ### 2.10.0 (Jul 9, 2020)
9
- - [FIX] Fix for Firefox detection on iOS 13 [#415]
10
- - [FIX] Fixes for typings.d.ts [#409]
11
- - [FIX] Updated development dependencies
12
-
13
- ### 2.9.0 (Jan 28, 2020)
14
- - [ADD] Export more methods and constants via .d.ts [#388], [#390]
15
-
16
- ### 2.8.1 (Dec 26, 2019)
17
- - [FIX] Reverted [#382] as it broke build
18
-
19
- ### 2.8.0 (Dec 26, 2019)
20
- - [ADD] Add polyfills for Array.find & Object.assign [#383]
21
- - [ADD] Export constants with types.d.ts [#382]
22
- - [FIX] Add support for WeChat on Windows [#381]
23
- - [FIX] Fix detection of Firefox on iPad [#379]
24
- - [FIX] Add detection of Electron [#375]
25
- - [FIX] Updated dev-dependencies
26
-
27
- ### 2.7.0 (Oct 2, 2019)
28
- - [FIX] Add support for QQ Browser [#362]
29
- - [FIX] Add support for GSA [#364]
30
- - [FIX] Updated dependencies
31
-
32
- ### 2.6.0 (Sep 6, 2019)
33
- - [ADD] Define "module" export in package.json [#354]
34
- - [FIX] Fix Tablet PC detection [#334]
35
-
36
- ### 2.5.4 (Sep 2, 2019)
37
- - [FIX] Exclude docs from the npm package [#349]
38
-
39
- ### 2.5.3 (Aug 4, 2019)
40
- - [FIX] Add MacOS names support [#338]
41
- - [FIX] Point typings.d.ts from package.json [#341]
42
- - [FIX] Upgrade dependencies
43
-
44
- ### 2.5.2 (July 17, 2019)
45
- - [FIX] Fixes the bug undefined method because of failed build (#335)
46
-
47
- ### 2.5.1 (July 17, 2019)
48
- - [FIX] Fixes the bug with a custom Error class (#335)
49
- - [FIX] Fixes the settings for Babel to reduce the bundle size (#259)
50
-
51
- ### 2.5.0 (July 16, 2019)
52
- - [ADD] Add constant output so that users can quickly get all types (#325)
53
- - [FIX] Add support for Roku OS (#332)
54
- - [FIX] Update devDependencies
55
- - [FIX] Fix docs, README and added funding information
56
-
57
- ### 2.4.0 (May 3, 2019)
58
- - [FIX] Update regexp for generic browsers (#310)
59
- - [FIX] Fix issues with module.exports (#318)
60
- - [FIX] Update devDependencies (#316, #321, #322)
61
- - [FIX] Fix docs (#320)
62
-
63
- ### 2.3.0 (April 14, 2019)
64
- - [ADD] Add support for Blink-based MS Edge (#311)
65
- - [ADD] Add more types for TS (#289)
66
- - [FIX] Update dev-dependencies
67
- - [FIX] Update docs
68
-
69
- ### 2.2.1 (April 12, 2019)
70
- - [ADD] Add an alias for Samsung Internet
71
- - [FIX] Fix browser name detection for browsers without an alias (#313)
72
-
73
- ### 2.2.0 (April 7, 2019)
74
- - [ADD] Add short aliases for browser names (#295)
75
- - [FIX] Fix Yandex Browser version detection (#308)
76
-
77
- ### 2.1.2 (March 6, 2019)
78
- - [FIX] Fix buggy `getFirstMatch` reference
79
-
80
- ### 2.1.1 (March 6, 2019)
81
- - [ADD] Add detection of PlayStation 4 (#291)
82
- - [ADD] Deploy docs on GH Pages (#293)
83
- - [FIX] Fix files extensions for importing (#294)
84
- - [FIX] Fix docs (#295)
85
-
86
- ### 2.1.0 (January 24, 2019)
87
- - [ADD] Add new `Parser.getEngineName()` method (#288)
88
- - [ADD] Add detection of ChromeOS (#287)
89
- - [FIX] Fix README
90
-
91
- ### 2.0.0 (January 19, 2019)
92
- - [ADD] Support a non strict equality in `Parser.satisfies()` (#275)
93
- - [ADD] Add Android versions names (#276)
94
- - [ADD] Add a typings file (#277)
95
- - [ADD] Added support for Googlebot recognition (#278)
96
- - [FIX] Update building tools, avoid security issues
97
-
98
- ### 2.0.0-beta.3 (September 15, 2018)
99
- - [FIX] Fix Chrome Mobile detection (#253)
100
- - [FIX] Use built bowser for CI (#252)
101
- - [FIX] Update babel-plugin-add-module-exports (#251)
102
-
103
- ### 2.0.0-beta.2 (September 9, 2018)
104
- - [FIX] Fix failing comparing version through `Parser.satisfies` (#243)
105
- - [FIX] Fix travis testing, include eslint into CI testing
106
- - [FIX] Add support for Maxthon desktop browser (#246)
107
- - [FIX] Add support for Swing browser (#248)
108
- - [DOCS] Regenerate docs
109
-
110
- ### 2.0.0-beta.1 (August 18, 2018)
111
- - [ADD] Add loose version comparison to `Parser.compareVersion()` and `Parser.satisfies()`
112
- - [CHORE] Add CONTRIBUTING.md
113
- - [DOCS] Regenerate docs
114
-
115
- ### 2.0.0-alpha.4 (August 2, 2018)
116
- - [DOCS] Fix usage docs (#238)
117
- - [CHANGE] Make `./es5.js` the main file of the package (#239)
118
-
119
- ### 2.0.0-alpha.3 (July 22, 2018)
120
- - [CHANGE] Rename split and rename `compiled.js` to `es5.js` and `bundled.js` (#231, #236, #237)
121
- - [ADD] Add `Parser.some` (#235)
122
-
123
- ### 2.0.0-alpha.2 (July 17, 2018)
124
- - [CHANGE] Make `src/bowser` main file instead of the bundled one
125
- - [CHANGE] Move the bundled file to the root of the package to make it possible to `require('bowser/compiled')` (#231)
126
- - [REMOVE] Remove `typings.d.ts` before stable release (#232)
127
- - [FIX] Improve Nexus devices detection (#233)
128
-
129
- ### 2.0.0-alpha.1 (July 9, 2018)
130
- - [ADD] `Bowser.getParser()`
131
- - [ADD] `Bowser.parse`
132
- - [ADD] `Parser` class which describes parsing process
133
- - [CHANGE] Change bowser's returning object
134
- - [REMOVE] Remove bower support
135
-
136
- ### 1.9.4 (June 28, 2018)
137
- - [FIX] Fix NAVER Whale browser detection (#220)
138
- - [FIX] Fix MZ Browser browser detection (#219)
139
- - [FIX] Fix Firefox Focus browser detection (#191)
140
- - [FIX] Fix webOS browser detection (#186)
141
-
142
- ### 1.9.3 (March 12, 2018)
143
- - [FIX] Fix `typings.d.ts` — add `ipad`, `iphone`, `ipod` flags to the interface
144
-
145
- ### 1.9.2 (February 5, 2018)
146
- - [FIX] Fix `typings.d.ts` — add `osname` flag to the interface
147
-
148
- ### 1.9.1 (December 22, 2017)
149
- - [FIX] Fix `typings.d.ts` — add `chromium` flag to the interface
150
-
151
- ### 1.9.0 (December 20, 2017)
152
- - [ADD] Add a public method `.detect()` (#205)
153
- - [DOCS] Fix description of `chromium` flag in docs (#206)
154
-
155
- ### 1.8.1 (October 7, 2017)
156
- - [FIX] Fix detection of MS Edge on Android and iOS (#201)
157
-
158
- ### 1.8.0 (October 7, 2017)
159
- - [ADD] Add `osname` into result object (#200)
160
-
161
- ### 1.7.3 (August 30, 2017)
162
- - [FIX] Fix detection of Chrome on Android 8 OPR6 (#193)
163
-
164
- ### 1.7.2 (August 17, 2017)
165
- - [FIX] Fix typings.d.ts according to #185
166
-
167
- ### 1.7.1 (July 13, 2017)
168
- - [ADD] Fix detecting of Tablet PC as tablet (#183)
169
-
170
- ### 1.7.0 (May 18, 2017)
171
- - [ADD] Add OS version support for Windows and macOS (#178)
172
-
173
- ### 1.6.0 (December 5, 2016)
174
- - [ADD] Add some tests for Windows devices (#89)
175
- - [ADD] Add `root` to initialization process (#170)
176
- - [FIX] Upgrade .travis.yml config
177
-
178
- ### 1.5.0 (October 31, 2016)
179
- - [ADD] Throw an error when `minVersion` map has not a string as a version and fix readme (#165)
180
- - [FIX] Fix truly detection of Windows Phones (#167)
181
-
182
- ### 1.4.6 (September 19, 2016)
183
- - [FIX] Fix mobile Opera's version detection on Android
184
- - [FIX] Fix typescript typings — add `mobile` and `tablet` flags
185
- - [DOC] Fix description of `bowser.check`
186
-
187
- ### 1.4.5 (August 30, 2016)
188
-
189
- - [FIX] Add support of Samsung Internet for Android
190
- - [FIX] Fix case when `navigator.userAgent` is `undefined`
191
- - [DOC] Add information about `strictMode` in `check` function
192
- - [DOC] Consistent use of `bowser` variable in the README
193
-
194
- ### 1.4.4 (August 10, 2016)
195
-
196
- - [FIX] Fix AMD `define` call — pass name to the function
197
-
198
- ### 1.4.3 (July 27, 2016)
199
-
200
- - [FIX] Fix error `Object doesn't support this property or method` on IE8
201
-
202
- ### 1.4.2 (July 26, 2016)
203
-
204
- - [FIX] Fix missing `isUnsupportedBrowser` in typings description
205
- - [DOC] Fix `check`'s declaration in README
206
-
207
- ### 1.4.1 (July 7, 2016)
208
-
209
- - [FIX] Fix `strictMode` logic for `isUnsupportedBrowser`
210
-
211
- ### 1.4.0 (June 28, 2016)
212
-
213
- - [FEATURE] Add `bowser.compareVersions` method
214
- - [FEATURE] Add `bowser.isUnsupportedBrowser` method
215
- - [FEATURE] Add `bowser.check` method
216
- - [DOC] Changelog started
217
- - [DOC] Add API section to README
218
- - [FIX] Fix detection of browser type (A/C/X) for Chromium
@@ -1,354 +0,0 @@
1
- # We borrow heavily from the kernel build setup, though we are simpler since
2
- # we don't have Kconfig tweaking settings on us.
3
-
4
- # The implicit make rules have it looking for RCS files, among other things.
5
- # We instead explicitly write all the rules we care about.
6
- # It's even quicker (saves ~200ms) to pass -r on the command line.
7
- MAKEFLAGS=-r
8
-
9
- # The source directory tree.
10
- srcdir := ..
11
- abs_srcdir := $(abspath $(srcdir))
12
-
13
- # The name of the builddir.
14
- builddir_name ?= .
15
-
16
- # The V=1 flag on command line makes us verbosely print command lines.
17
- ifdef V
18
- quiet=
19
- else
20
- quiet=quiet_
21
- endif
22
-
23
- # Specify BUILDTYPE=Release on the command line for a release build.
24
- BUILDTYPE ?= Release
25
-
26
- # Directory all our build output goes into.
27
- # Note that this must be two directories beneath src/ for unit tests to pass,
28
- # as they reach into the src/ directory for data with relative paths.
29
- builddir ?= $(builddir_name)/$(BUILDTYPE)
30
- abs_builddir := $(abspath $(builddir))
31
- depsdir := $(builddir)/.deps
32
-
33
- # Object output directory.
34
- obj := $(builddir)/obj
35
- abs_obj := $(abspath $(obj))
36
-
37
- # We build up a list of every single one of the targets so we can slurp in the
38
- # generated dependency rule Makefiles in one pass.
39
- all_deps :=
40
-
41
-
42
-
43
- CC.target ?= $(CC)
44
- CFLAGS.target ?= $(CPPFLAGS) $(CFLAGS)
45
- CXX.target ?= $(CXX)
46
- CXXFLAGS.target ?= $(CPPFLAGS) $(CXXFLAGS)
47
- LINK.target ?= $(LINK)
48
- LDFLAGS.target ?= $(LDFLAGS)
49
- AR.target ?= $(AR)
50
- PLI.target ?= pli
51
-
52
- # C++ apps need to be linked with g++.
53
- LINK ?= $(CXX.target)
54
-
55
- # TODO(evan): move all cross-compilation logic to gyp-time so we don't need
56
- # to replicate this environment fallback in make as well.
57
- CC.host ?= gcc
58
- CFLAGS.host ?= $(CPPFLAGS_host) $(CFLAGS_host)
59
- CXX.host ?= g++
60
- CXXFLAGS.host ?= $(CPPFLAGS_host) $(CXXFLAGS_host)
61
- LINK.host ?= $(CXX.host)
62
- LDFLAGS.host ?= $(LDFLAGS_host)
63
- AR.host ?= ar
64
- PLI.host ?= pli
65
-
66
- # Define a dir function that can handle spaces.
67
- # http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions
68
- # "leading spaces cannot appear in the text of the first argument as written.
69
- # These characters can be put into the argument value by variable substitution."
70
- empty :=
71
- space := $(empty) $(empty)
72
-
73
- # http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces
74
- replace_spaces = $(subst $(space),?,$1)
75
- unreplace_spaces = $(subst ?,$(space),$1)
76
- dirx = $(call unreplace_spaces,$(dir $(call replace_spaces,$1)))
77
-
78
- # Flags to make gcc output dependency info. Note that you need to be
79
- # careful here to use the flags that ccache and distcc can understand.
80
- # We write to a dep file on the side first and then rename at the end
81
- # so we can't end up with a broken dep file.
82
- depfile = $(depsdir)/$(call replace_spaces,$@).d
83
- DEPFLAGS = -MMD -MF $(depfile).raw
84
-
85
- # We have to fixup the deps output in a few ways.
86
- # (1) the file output should mention the proper .o file.
87
- # ccache or distcc lose the path to the target, so we convert a rule of
88
- # the form:
89
- # foobar.o: DEP1 DEP2
90
- # into
91
- # path/to/foobar.o: DEP1 DEP2
92
- # (2) we want missing files not to cause us to fail to build.
93
- # We want to rewrite
94
- # foobar.o: DEP1 DEP2 \
95
- # DEP3
96
- # to
97
- # DEP1:
98
- # DEP2:
99
- # DEP3:
100
- # so if the files are missing, they're just considered phony rules.
101
- # We have to do some pretty insane escaping to get those backslashes
102
- # and dollar signs past make, the shell, and sed at the same time.
103
- # Doesn't work with spaces, but that's fine: .d files have spaces in
104
- # their names replaced with other characters.
105
- define fixup_dep
106
- # The depfile may not exist if the input file didn't have any #includes.
107
- touch $(depfile).raw
108
- # Fixup path as in (1).
109
- sed -e "s|^$(notdir $@)|$@|" $(depfile).raw >> $(depfile)
110
- # Add extra rules as in (2).
111
- # We remove slashes and replace spaces with new lines;
112
- # remove blank lines;
113
- # delete the first line and append a colon to the remaining lines.
114
- sed -e 's|\\||' -e 'y| |\n|' $(depfile).raw |\
115
- grep -v '^$$' |\
116
- sed -e 1d -e 's|$$|:|' \
117
- >> $(depfile)
118
- rm $(depfile).raw
119
- endef
120
-
121
- # Command definitions:
122
- # - cmd_foo is the actual command to run;
123
- # - quiet_cmd_foo is the brief-output summary of the command.
124
-
125
- quiet_cmd_cc = CC($(TOOLSET)) $@
126
- cmd_cc = $(CC.$(TOOLSET)) -o $@ $< $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c
127
-
128
- quiet_cmd_cxx = CXX($(TOOLSET)) $@
129
- cmd_cxx = $(CXX.$(TOOLSET)) -o $@ $< $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c
130
-
131
- quiet_cmd_touch = TOUCH $@
132
- cmd_touch = touch $@
133
-
134
- quiet_cmd_copy = COPY $@
135
- # send stderr to /dev/null to ignore messages when linking directories.
136
- cmd_copy = ln -f "$<" "$@" 2>/dev/null || (rm -rf "$@" && cp -af "$<" "$@")
137
-
138
- quiet_cmd_symlink = SYMLINK $@
139
- cmd_symlink = ln -sf "$<" "$@"
140
-
141
- quiet_cmd_alink = AR($(TOOLSET)) $@
142
- cmd_alink = rm -f $@ && $(AR.$(TOOLSET)) crs $@ $(filter %.o,$^)
143
-
144
- quiet_cmd_alink_thin = AR($(TOOLSET)) $@
145
- cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) crsT $@ $(filter %.o,$^)
146
-
147
- # Due to circular dependencies between libraries :(, we wrap the
148
- # special "figure out circular dependencies" flags around the entire
149
- # input list during linking.
150
- quiet_cmd_link = LINK($(TOOLSET)) $@
151
- cmd_link = $(LINK.$(TOOLSET)) -o $@ $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,--start-group $(LD_INPUTS) $(LIBS) -Wl,--end-group
152
-
153
- # Note: this does not handle spaces in paths
154
- define xargs
155
- $(1) $(word 1,$(2))
156
- $(if $(word 2,$(2)),$(call xargs,$(1),$(wordlist 2,$(words $(2)),$(2))))
157
- endef
158
-
159
- define write-to-file
160
- @: >$(1)
161
- $(call xargs,@printf "%s\n" >>$(1),$(2))
162
- endef
163
-
164
- OBJ_FILE_LIST := ar-file-list
165
-
166
- define create_archive
167
- rm -f $(1) $(1).$(OBJ_FILE_LIST); mkdir -p `dirname $(1)`
168
- $(call write-to-file,$(1).$(OBJ_FILE_LIST),$(filter %.o,$(2)))
169
- $(AR.$(TOOLSET)) crs $(1) @$(1).$(OBJ_FILE_LIST)
170
- endef
171
-
172
- define create_thin_archive
173
- rm -f $(1) $(OBJ_FILE_LIST); mkdir -p `dirname $(1)`
174
- $(call write-to-file,$(1).$(OBJ_FILE_LIST),$(filter %.o,$(2)))
175
- $(AR.$(TOOLSET)) crsT $(1) @$(1).$(OBJ_FILE_LIST)
176
- endef
177
-
178
- # We support two kinds of shared objects (.so):
179
- # 1) shared_library, which is just bundling together many dependent libraries
180
- # into a link line.
181
- # 2) loadable_module, which is generating a module intended for dlopen().
182
- #
183
- # They differ only slightly:
184
- # In the former case, we want to package all dependent code into the .so.
185
- # In the latter case, we want to package just the API exposed by the
186
- # outermost module.
187
- # This means shared_library uses --whole-archive, while loadable_module doesn't.
188
- # (Note that --whole-archive is incompatible with the --start-group used in
189
- # normal linking.)
190
-
191
- # Other shared-object link notes:
192
- # - Set SONAME to the library filename so our binaries don't reference
193
- # the local, absolute paths used on the link command-line.
194
- quiet_cmd_solink = SOLINK($(TOOLSET)) $@
195
- cmd_solink = $(LINK.$(TOOLSET)) -o $@ -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -Wl,--whole-archive $(LD_INPUTS) -Wl,--no-whole-archive $(LIBS)
196
-
197
- quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
198
- cmd_solink_module = $(LINK.$(TOOLSET)) -o $@ -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -Wl,--start-group $(filter-out FORCE_DO_CMD, $^) -Wl,--end-group $(LIBS)
199
-
200
-
201
- # Define an escape_quotes function to escape single quotes.
202
- # This allows us to handle quotes properly as long as we always use
203
- # use single quotes and escape_quotes.
204
- escape_quotes = $(subst ','\'',$(1))
205
- # This comment is here just to include a ' to unconfuse syntax highlighting.
206
- # Define an escape_vars function to escape '$' variable syntax.
207
- # This allows us to read/write command lines with shell variables (e.g.
208
- # $LD_LIBRARY_PATH), without triggering make substitution.
209
- escape_vars = $(subst $$,$$$$,$(1))
210
- # Helper that expands to a shell command to echo a string exactly as it is in
211
- # make. This uses printf instead of echo because printf's behaviour with respect
212
- # to escape sequences is more portable than echo's across different shells
213
- # (e.g., dash, bash).
214
- exact_echo = printf '%s\n' '$(call escape_quotes,$(1))'
215
-
216
- # Helper to compare the command we're about to run against the command
217
- # we logged the last time we ran the command. Produces an empty
218
- # string (false) when the commands match.
219
- # Tricky point: Make has no string-equality test function.
220
- # The kernel uses the following, but it seems like it would have false
221
- # positives, where one string reordered its arguments.
222
- # arg_check = $(strip $(filter-out $(cmd_$(1)), $(cmd_$@)) \
223
- # $(filter-out $(cmd_$@), $(cmd_$(1))))
224
- # We instead substitute each for the empty string into the other, and
225
- # say they're equal if both substitutions produce the empty string.
226
- # .d files contain ? instead of spaces, take that into account.
227
- command_changed = $(or $(subst $(cmd_$(1)),,$(cmd_$(call replace_spaces,$@))),\
228
- $(subst $(cmd_$(call replace_spaces,$@)),,$(cmd_$(1))))
229
-
230
- # Helper that is non-empty when a prerequisite changes.
231
- # Normally make does this implicitly, but we force rules to always run
232
- # so we can check their command lines.
233
- # $? -- new prerequisites
234
- # $| -- order-only dependencies
235
- prereq_changed = $(filter-out FORCE_DO_CMD,$(filter-out $|,$?))
236
-
237
- # Helper that executes all postbuilds until one fails.
238
- define do_postbuilds
239
- @E=0;\
240
- for p in $(POSTBUILDS); do\
241
- eval $$p;\
242
- E=$$?;\
243
- if [ $$E -ne 0 ]; then\
244
- break;\
245
- fi;\
246
- done;\
247
- if [ $$E -ne 0 ]; then\
248
- rm -rf "$@";\
249
- exit $$E;\
250
- fi
251
- endef
252
-
253
- # do_cmd: run a command via the above cmd_foo names, if necessary.
254
- # Should always run for a given target to handle command-line changes.
255
- # Second argument, if non-zero, makes it do asm/C/C++ dependency munging.
256
- # Third argument, if non-zero, makes it do POSTBUILDS processing.
257
- # Note: We intentionally do NOT call dirx for depfile, since it contains ? for
258
- # spaces already and dirx strips the ? characters.
259
- define do_cmd
260
- $(if $(or $(command_changed),$(prereq_changed)),
261
- @$(call exact_echo, $($(quiet)cmd_$(1)))
262
- @mkdir -p "$(call dirx,$@)" "$(dir $(depfile))"
263
- $(if $(findstring flock,$(word 1,$(cmd_$1))),
264
- @$(cmd_$(1))
265
- @echo " $(quiet_cmd_$(1)): Finished",
266
- @$(cmd_$(1))
267
- )
268
- @$(call exact_echo,$(call escape_vars,cmd_$(call replace_spaces,$@) := $(cmd_$(1)))) > $(depfile)
269
- @$(if $(2),$(fixup_dep))
270
- $(if $(and $(3), $(POSTBUILDS)),
271
- $(call do_postbuilds)
272
- )
273
- )
274
- endef
275
-
276
- # Declare the "all" target first so it is the default,
277
- # even though we don't have the deps yet.
278
- .PHONY: all
279
- all:
280
-
281
- # make looks for ways to re-generate included makefiles, but in our case, we
282
- # don't have a direct way. Explicitly telling make that it has nothing to do
283
- # for them makes it go faster.
284
- %.d: ;
285
-
286
- # Use FORCE_DO_CMD to force a target to run. Should be coupled with
287
- # do_cmd.
288
- .PHONY: FORCE_DO_CMD
289
- FORCE_DO_CMD:
290
-
291
- TOOLSET := target
292
- # Suffix rules, putting all outputs into $(obj).
293
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.c FORCE_DO_CMD
294
- @$(call do_cmd,cc,1)
295
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD
296
- @$(call do_cmd,cxx,1)
297
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cpp FORCE_DO_CMD
298
- @$(call do_cmd,cxx,1)
299
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cxx FORCE_DO_CMD
300
- @$(call do_cmd,cxx,1)
301
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD
302
- @$(call do_cmd,cc,1)
303
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.S FORCE_DO_CMD
304
- @$(call do_cmd,cc,1)
305
-
306
- # Try building from generated source, too.
307
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD
308
- @$(call do_cmd,cc,1)
309
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD
310
- @$(call do_cmd,cxx,1)
311
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cpp FORCE_DO_CMD
312
- @$(call do_cmd,cxx,1)
313
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cxx FORCE_DO_CMD
314
- @$(call do_cmd,cxx,1)
315
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD
316
- @$(call do_cmd,cc,1)
317
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.S FORCE_DO_CMD
318
- @$(call do_cmd,cc,1)
319
-
320
- $(obj).$(TOOLSET)/%.o: $(obj)/%.c FORCE_DO_CMD
321
- @$(call do_cmd,cc,1)
322
- $(obj).$(TOOLSET)/%.o: $(obj)/%.cc FORCE_DO_CMD
323
- @$(call do_cmd,cxx,1)
324
- $(obj).$(TOOLSET)/%.o: $(obj)/%.cpp FORCE_DO_CMD
325
- @$(call do_cmd,cxx,1)
326
- $(obj).$(TOOLSET)/%.o: $(obj)/%.cxx FORCE_DO_CMD
327
- @$(call do_cmd,cxx,1)
328
- $(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD
329
- @$(call do_cmd,cc,1)
330
- $(obj).$(TOOLSET)/%.o: $(obj)/%.S FORCE_DO_CMD
331
- @$(call do_cmd,cc,1)
332
-
333
-
334
- ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
335
- $(findstring $(join ^,$(prefix)),\
336
- $(join ^,deasync.target.mk)))),)
337
- include deasync.target.mk
338
- endif
339
-
340
- quiet_cmd_regen_makefile = ACTION Regenerating $@
341
- cmd_regen_makefile = cd $(srcdir); /opt/hostedtoolcache/node/24.14.0/x64/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/home/runner/.cache/node-gyp/24.14.0" "-Dnode_gyp_dir=/opt/hostedtoolcache/node/24.14.0/x64/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/home/runner/.cache/node-gyp/24.14.0/<(target_arch)/node.lib" "-Dmodule_root_dir=/home/runner/work/cdk-ssm-documents/cdk-ssm-documents/node_modules/deasync" "-Dnode_engine=v8" "--depth=." "-Goutput_dir=." "--generator-output=build" -I/home/runner/work/cdk-ssm-documents/cdk-ssm-documents/node_modules/deasync/build/config.gypi -I/opt/hostedtoolcache/node/24.14.0/x64/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/home/runner/.cache/node-gyp/24.14.0/include/node/common.gypi "--toplevel-dir=." binding.gyp
342
- Makefile: $(srcdir)/../../../../../../../opt/hostedtoolcache/node/24.14.0/x64/lib/node_modules/npm/node_modules/node-gyp/addon.gypi $(srcdir)/../../../../../.cache/node-gyp/24.14.0/include/node/common.gypi $(srcdir)/binding.gyp $(srcdir)/build/config.gypi
343
- $(call do_cmd,regen_makefile)
344
-
345
- # "all" is a concatenation of the "all" targets from all the included
346
- # sub-makefiles. This is just here to clarify.
347
- all:
348
-
349
- # Add in dependency-tracking rules. $(all_deps) is the list of every single
350
- # target in our tree. Only consider the ones with .d (dependency) info:
351
- d_files := $(wildcard $(foreach f,$(all_deps),$(depsdir)/$(f).d))
352
- ifneq ($(d_files),)
353
- include $(d_files)
354
- endif
@@ -1 +0,0 @@
1
- cmd_Release/deasync.node := ln -f "Release/obj.target/deasync.node" "Release/deasync.node" 2>/dev/null || (rm -rf "Release/deasync.node" && cp -af "Release/obj.target/deasync.node" "Release/deasync.node")