@aws/lsp-codewhisperer 0.0.15 → 0.0.17

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 (1518) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/node_modules/@amzn/codewhisperer-streaming/README.md +235 -60
  3. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js +2 -0
  4. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js +15 -9
  5. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  7. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js +16 -32
  8. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js +16 -32
  9. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js +16 -32
  10. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/SendMessageCommand.js +26 -0
  11. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js +1 -0
  12. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js +139 -95
  13. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js +541 -135
  14. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js +227 -221
  15. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js +5 -4
  16. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js +15 -10
  17. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js +1 -1
  18. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js +23 -13
  19. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js +3 -0
  20. package/node_modules/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js +7 -5
  21. package/node_modules/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js +26 -20
  22. package/node_modules/@amzn/codewhisperer-streaming/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  23. package/node_modules/@amzn/codewhisperer-streaming/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  24. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js +20 -36
  25. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js +20 -36
  26. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js +20 -36
  27. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/SendMessageCommand.js +22 -0
  28. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/index.js +4 -3
  29. package/node_modules/@amzn/codewhisperer-streaming/dist-es/endpoints.js +140 -96
  30. package/node_modules/@amzn/codewhisperer-streaming/dist-es/index.js +5 -5
  31. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js +1 -1
  32. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/index.js +1 -1
  33. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/models_0.js +509 -135
  34. package/node_modules/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js +218 -214
  35. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js +16 -15
  36. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js +29 -24
  37. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js +3 -3
  38. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js +28 -18
  39. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js +6 -3
  40. package/node_modules/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts +12 -5
  41. package/node_modules/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts +25 -20
  42. package/node_modules/@amzn/codewhisperer-streaming/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  43. package/node_modules/@amzn/codewhisperer-streaming/dist-types/auth/httpAuthSchemeProvider.d.ts +67 -0
  44. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts +31 -27
  45. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts +263 -30
  46. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts +263 -30
  47. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/SendMessageCommand.d.ts +636 -0
  48. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts +4 -3
  49. package/node_modules/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts +1 -1
  50. package/node_modules/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts +5 -4
  51. package/node_modules/@amzn/codewhisperer-streaming/dist-types/index.d.ts +7 -5
  52. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts +3 -2
  53. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts +1 -1
  54. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts +1313 -229
  55. package/node_modules/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts +14 -5
  56. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts +14 -10
  57. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts +1 -36
  58. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts +13 -9
  59. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts +9 -1
  60. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts +1 -1
  61. package/node_modules/@amzn/codewhisperer-streaming/package.json +47 -47
  62. package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +118 -0
  63. package/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
  64. package/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
  65. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +10 -0
  66. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +43 -0
  67. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +1 -0
  68. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +8 -0
  69. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +30 -0
  70. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +1 -0
  71. package/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +2 -0
  72. package/node_modules/@aws-crypto/sha256-browser/build/main/index.js +8 -0
  73. package/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +1 -0
  74. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +2 -0
  75. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +11 -0
  76. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +1 -0
  77. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +10 -0
  78. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +56 -0
  79. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +1 -0
  80. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +10 -0
  81. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +40 -0
  82. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +1 -0
  83. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +8 -0
  84. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +27 -0
  85. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +1 -0
  86. package/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +2 -0
  87. package/node_modules/@aws-crypto/sha256-browser/build/module/index.js +3 -0
  88. package/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +1 -0
  89. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +2 -0
  90. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +7 -0
  91. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +1 -0
  92. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +10 -0
  93. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +53 -0
  94. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +1 -0
  95. package/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
  96. package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
  97. package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +30 -0
  98. package/node_modules/@aws-crypto/sha256-browser/src/index.ts +2 -0
  99. package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
  100. package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
  101. package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +10 -0
  102. package/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +7 -0
  103. package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +106 -0
  104. package/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
  105. package/node_modules/@aws-crypto/sha256-js/README.md +29 -0
  106. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +17 -0
  107. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +124 -0
  108. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +1 -0
  109. package/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +20 -0
  110. package/node_modules/@aws-crypto/sha256-js/build/main/constants.js +98 -0
  111. package/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +1 -0
  112. package/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +1 -0
  113. package/node_modules/@aws-crypto/sha256-js/build/main/index.js +5 -0
  114. package/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +1 -0
  115. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +12 -0
  116. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +85 -0
  117. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +1 -0
  118. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +5 -0
  119. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +322 -0
  120. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +1 -0
  121. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +17 -0
  122. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +121 -0
  123. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +1 -0
  124. package/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +20 -0
  125. package/node_modules/@aws-crypto/sha256-js/build/module/constants.js +95 -0
  126. package/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +1 -0
  127. package/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +1 -0
  128. package/node_modules/@aws-crypto/sha256-js/build/module/index.js +2 -0
  129. package/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +1 -0
  130. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +12 -0
  131. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +82 -0
  132. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +1 -0
  133. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +5 -0
  134. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +319 -0
  135. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +1 -0
  136. package/node_modules/@aws-crypto/sha256-js/package.json +32 -0
  137. package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
  138. package/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
  139. package/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
  140. package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
  141. package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
  142. package/node_modules/@aws-crypto/sha256-js/tsconfig.json +10 -0
  143. package/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +7 -0
  144. package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +66 -0
  145. package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
  146. package/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
  147. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +1 -0
  148. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +5 -0
  149. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +1 -0
  150. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +4 -0
  151. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +69 -0
  152. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +1 -0
  153. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +1 -0
  154. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +2 -0
  155. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +1 -0
  156. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +4 -0
  157. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +62 -0
  158. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +1 -0
  159. package/node_modules/@aws-crypto/supports-web-crypto/package.json +28 -0
  160. package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
  161. package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
  162. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +10 -0
  163. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +7 -0
  164. package/node_modules/@aws-crypto/util/CHANGELOG.md +71 -0
  165. package/node_modules/@aws-crypto/util/LICENSE +201 -0
  166. package/node_modules/@aws-crypto/util/README.md +16 -0
  167. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +2 -0
  168. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +24 -0
  169. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +1 -0
  170. package/node_modules/@aws-crypto/util/build/main/index.d.ts +4 -0
  171. package/node_modules/@aws-crypto/util/build/main/index.js +14 -0
  172. package/node_modules/@aws-crypto/util/build/main/index.js.map +1 -0
  173. package/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +2 -0
  174. package/node_modules/@aws-crypto/util/build/main/isEmptyData.js +13 -0
  175. package/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +1 -0
  176. package/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +1 -0
  177. package/node_modules/@aws-crypto/util/build/main/numToUint8.js +15 -0
  178. package/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +1 -0
  179. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +1 -0
  180. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +20 -0
  181. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +1 -0
  182. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +2 -0
  183. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +20 -0
  184. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +1 -0
  185. package/node_modules/@aws-crypto/util/build/module/index.d.ts +4 -0
  186. package/node_modules/@aws-crypto/util/build/module/index.js +7 -0
  187. package/node_modules/@aws-crypto/util/build/module/index.js.map +1 -0
  188. package/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +2 -0
  189. package/node_modules/@aws-crypto/util/build/module/isEmptyData.js +9 -0
  190. package/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +1 -0
  191. package/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +1 -0
  192. package/node_modules/@aws-crypto/util/build/module/numToUint8.js +11 -0
  193. package/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +1 -0
  194. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +1 -0
  195. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +16 -0
  196. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +1 -0
  197. package/node_modules/@aws-crypto/util/package.json +32 -0
  198. package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
  199. package/node_modules/@aws-crypto/util/src/index.ts +7 -0
  200. package/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
  201. package/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
  202. package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
  203. package/node_modules/@aws-crypto/util/tsconfig.json +9 -0
  204. package/node_modules/@aws-crypto/util/tsconfig.module.json +7 -0
  205. package/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
  206. package/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
  207. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +71 -0
  208. package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
  209. package/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +20 -0
  210. package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
  211. package/node_modules/@aws-sdk/middleware-host-header/package.json +55 -0
  212. package/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
  213. package/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
  214. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +80 -0
  215. package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
  216. package/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
  217. package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
  218. package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
  219. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
  220. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
  221. package/node_modules/@aws-sdk/middleware-logger/package.json +56 -0
  222. package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
  223. package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
  224. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +68 -0
  225. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +34 -0
  226. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +18 -0
  227. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -0
  228. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +55 -0
  229. package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
  230. package/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
  231. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +123 -0
  232. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +6 -0
  233. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
  234. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
  235. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +72 -0
  236. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +31 -0
  237. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
  238. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
  239. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -0
  240. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
  241. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
  242. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -0
  243. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
  244. package/node_modules/@aws-sdk/middleware-user-agent/package.json +57 -0
  245. package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
  246. package/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
  247. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +22 -0
  248. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +17 -0
  249. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +17 -0
  250. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +13 -0
  251. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
  252. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +9 -0
  253. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +9 -0
  254. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
  255. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +6 -0
  256. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -0
  257. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +53 -0
  258. package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
  259. package/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
  260. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +95 -0
  261. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
  262. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +39 -0
  263. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
  264. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +9 -0
  265. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +20 -0
  266. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
  267. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
  268. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -0
  269. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
  270. package/node_modules/@aws-sdk/util-user-agent-node/package.json +63 -0
  271. package/node_modules/@smithy/config-resolver/README.md +10 -0
  272. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +1 -0
  273. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +1 -0
  274. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +1 -0
  275. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +1 -0
  276. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +1 -0
  277. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +1 -0
  278. package/node_modules/@smithy/config-resolver/dist-cjs/index.js +235 -0
  279. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +1 -0
  280. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +1 -0
  281. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +1 -0
  282. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +1 -0
  283. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +1 -0
  284. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +1 -0
  285. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +1 -0
  286. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +1 -0
  287. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +1 -0
  288. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +1 -0
  289. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +1 -0
  290. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +1 -0
  291. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +1 -0
  292. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +1 -0
  293. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +1 -0
  294. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
  295. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
  296. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
  297. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +11 -0
  298. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +15 -0
  299. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
  300. package/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
  301. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
  302. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
  303. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
  304. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
  305. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
  306. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
  307. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
  308. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
  309. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
  310. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
  311. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
  312. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
  313. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
  314. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
  315. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
  316. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
  317. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  318. package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
  319. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
  320. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
  321. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
  322. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
  323. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
  324. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +10 -0
  325. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +7 -0
  326. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +14 -0
  327. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +12 -0
  328. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +12 -0
  329. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +17 -0
  330. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +11 -0
  331. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +11 -0
  332. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +12 -0
  333. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
  334. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
  335. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
  336. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
  337. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
  338. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
  339. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  340. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
  341. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
  342. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
  343. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
  344. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
  345. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
  346. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +10 -0
  347. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +7 -0
  348. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +14 -0
  349. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +12 -0
  350. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +12 -0
  351. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +17 -0
  352. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +11 -0
  353. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +11 -0
  354. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +12 -0
  355. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
  356. package/node_modules/@smithy/config-resolver/package.json +63 -0
  357. package/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
  358. package/node_modules/@smithy/fetch-http-handler/README.md +11 -0
  359. package/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +1 -0
  360. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +255 -0
  361. package/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +1 -0
  362. package/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +1 -0
  363. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +138 -0
  364. package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
  365. package/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
  366. package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +50 -0
  367. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +33 -0
  368. package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
  369. package/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
  370. package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
  371. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +33 -0
  372. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
  373. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
  374. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
  375. package/node_modules/@smithy/fetch-http-handler/package.json +62 -0
  376. package/node_modules/@smithy/hash-node/LICENSE +201 -0
  377. package/node_modules/@smithy/hash-node/README.md +10 -0
  378. package/node_modules/@smithy/hash-node/dist-cjs/index.js +66 -0
  379. package/node_modules/@smithy/hash-node/dist-es/index.js +34 -0
  380. package/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
  381. package/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
  382. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/LICENSE +201 -0
  383. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/README.md +4 -0
  384. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
  385. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
  386. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
  387. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
  388. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
  389. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
  390. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
  391. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
  392. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
  393. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
  394. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
  395. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
  396. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
  397. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
  398. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
  399. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
  400. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
  401. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
  402. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
  403. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
  404. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
  405. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
  406. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
  407. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
  408. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/package.json +65 -0
  409. package/node_modules/@smithy/hash-node/package.json +63 -0
  410. package/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
  411. package/node_modules/@smithy/middleware-content-length/README.md +4 -0
  412. package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +71 -0
  413. package/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
  414. package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
  415. package/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
  416. package/node_modules/@smithy/middleware-content-length/package.json +62 -0
  417. package/node_modules/@smithy/middleware-retry/LICENSE +201 -0
  418. package/node_modules/@smithy/middleware-retry/README.md +11 -0
  419. package/node_modules/@smithy/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
  420. package/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +1 -0
  421. package/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +1 -0
  422. package/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +1 -0
  423. package/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +1 -0
  424. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +425 -0
  425. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
  426. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
  427. package/node_modules/@smithy/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +1 -0
  428. package/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +1 -0
  429. package/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +1 -0
  430. package/node_modules/@smithy/middleware-retry/dist-cjs/types.js +1 -0
  431. package/node_modules/@smithy/middleware-retry/dist-cjs/util.js +1 -0
  432. package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +20 -0
  433. package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +90 -0
  434. package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +52 -0
  435. package/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
  436. package/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
  437. package/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
  438. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
  439. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
  440. package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
  441. package/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
  442. package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +112 -0
  443. package/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
  444. package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +20 -0
  445. package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +30 -0
  446. package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +45 -0
  447. package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
  448. package/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +4 -0
  449. package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
  450. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  451. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  452. package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +4 -0
  453. package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +5 -0
  454. package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +6 -0
  455. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +20 -0
  456. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +30 -0
  457. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +45 -0
  458. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +18 -0
  459. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -0
  460. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
  461. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  462. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  463. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +4 -0
  464. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +5 -0
  465. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +6 -0
  466. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +53 -0
  467. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
  468. package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +53 -0
  469. package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
  470. package/node_modules/@smithy/middleware-retry/package.json +77 -0
  471. package/node_modules/@smithy/middleware-serde/LICENSE +201 -0
  472. package/node_modules/@smithy/middleware-serde/README.md +4 -0
  473. package/node_modules/@smithy/middleware-serde/dist-cjs/deserializerMiddleware.js +1 -0
  474. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +102 -0
  475. package/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +1 -0
  476. package/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +1 -0
  477. package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +25 -0
  478. package/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
  479. package/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
  480. package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +13 -0
  481. package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +5 -0
  482. package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
  483. package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +12 -0
  484. package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +6 -0
  485. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +5 -0
  486. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
  487. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +12 -0
  488. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +6 -0
  489. package/node_modules/@smithy/middleware-serde/package.json +61 -0
  490. package/node_modules/@smithy/node-config-provider/LICENSE +201 -0
  491. package/node_modules/@smithy/node-config-provider/README.md +4 -0
  492. package/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +1 -0
  493. package/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +1 -0
  494. package/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +1 -0
  495. package/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +1 -0
  496. package/node_modules/@smithy/node-config-provider/dist-cjs/getSelectorName.js +1 -0
  497. package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +105 -0
  498. package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +5 -0
  499. package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +14 -0
  500. package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +23 -0
  501. package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
  502. package/node_modules/@smithy/node-config-provider/dist-es/getSelectorName.js +12 -0
  503. package/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
  504. package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +22 -0
  505. package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +7 -0
  506. package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +15 -0
  507. package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +3 -0
  508. package/node_modules/@smithy/node-config-provider/dist-types/getSelectorName.d.ts +9 -0
  509. package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +1 -0
  510. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +22 -0
  511. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -0
  512. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +15 -0
  513. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +3 -0
  514. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +9 -0
  515. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
  516. package/node_modules/@smithy/node-config-provider/package.json +64 -0
  517. package/node_modules/@smithy/node-http-handler/LICENSE +201 -0
  518. package/node_modules/@smithy/node-http-handler/README.md +4 -0
  519. package/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +1 -0
  520. package/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +1 -0
  521. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +687 -0
  522. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +1 -0
  523. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +1 -0
  524. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +1 -0
  525. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +1 -0
  526. package/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +1 -0
  527. package/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +1 -0
  528. package/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +1 -0
  529. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +1 -0
  530. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +1 -0
  531. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +1 -0
  532. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +1 -0
  533. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +1 -0
  534. package/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +1 -0
  535. package/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
  536. package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
  537. package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
  538. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +184 -0
  539. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +86 -0
  540. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
  541. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +159 -0
  542. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +19 -0
  543. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +81 -0
  544. package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +21 -0
  545. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +8 -0
  546. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +6 -0
  547. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +11 -0
  548. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +14 -0
  549. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +19 -0
  550. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +52 -0
  551. package/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
  552. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
  553. package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
  554. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +37 -0
  555. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +22 -0
  556. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +13 -0
  557. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
  558. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +14 -0
  559. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
  560. package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
  561. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
  562. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
  563. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +7 -0
  564. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
  565. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +14 -0
  566. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
  567. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
  568. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
  569. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +36 -0
  570. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +22 -0
  571. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +13 -0
  572. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +57 -0
  573. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
  574. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
  575. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
  576. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
  577. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
  578. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
  579. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
  580. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
  581. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
  582. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +13 -0
  583. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/LICENSE +201 -0
  584. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/README.md +4 -0
  585. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +1 -0
  586. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +1 -0
  587. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-cjs/index.js +82 -0
  588. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-es/AbortController.js +9 -0
  589. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
  590. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
  591. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +13 -0
  592. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +18 -0
  593. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
  594. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +13 -0
  595. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +18 -0
  596. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
  597. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/package.json +62 -0
  598. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/LICENSE +201 -0
  599. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/README.md +4 -0
  600. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/Field.js +1 -0
  601. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +1 -0
  602. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +1 -0
  603. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +1 -0
  604. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +1 -0
  605. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +1 -0
  606. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +1 -0
  607. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/index.js +237 -0
  608. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +1 -0
  609. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/types.js +1 -0
  610. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/Field.js +23 -0
  611. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/Fields.js +19 -0
  612. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +22 -0
  613. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
  614. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +48 -0
  615. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +14 -0
  616. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
  617. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
  618. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +49 -0
  619. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
  620. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +37 -0
  621. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
  622. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +37 -0
  623. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +23 -0
  624. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +16 -0
  625. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
  626. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
  627. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +49 -0
  628. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
  629. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +37 -0
  630. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
  631. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +37 -0
  632. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +23 -0
  633. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +16 -0
  634. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
  635. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
  636. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
  637. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
  638. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/package.json +61 -0
  639. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/LICENSE +201 -0
  640. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/README.md +10 -0
  641. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-cjs/index.js +52 -0
  642. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
  643. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
  644. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
  645. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/package.json +61 -0
  646. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/LICENSE +201 -0
  647. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/README.md +80 -0
  648. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/abort.js +1 -0
  649. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +1 -0
  650. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +1 -0
  651. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +1 -0
  652. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +1 -0
  653. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +1 -0
  654. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/auth.js +1 -0
  655. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/index.js +1 -0
  656. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +1 -0
  657. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/checksum.js +1 -0
  658. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/client.js +1 -0
  659. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/command.js +1 -0
  660. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/config.js +1 -0
  661. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/index.js +1 -0
  662. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/manager.js +1 -0
  663. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/pool.js +1 -0
  664. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/crypto.js +1 -0
  665. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +1 -0
  666. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/encode.js +1 -0
  667. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoint.js +1 -0
  668. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +1 -0
  669. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +1 -0
  670. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +1 -0
  671. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +1 -0
  672. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/index.js +1 -0
  673. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +1 -0
  674. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/eventStream.js +1 -0
  675. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +1 -0
  676. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +1 -0
  677. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
  678. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/index.js +1 -0
  679. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/retry.js +1 -0
  680. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +1 -0
  681. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +1 -0
  682. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/http.js +1 -0
  683. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +1 -0
  684. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +1 -0
  685. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/identity.js +1 -0
  686. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/index.js +1 -0
  687. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +1 -0
  688. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/index.js +149 -0
  689. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/logger.js +1 -0
  690. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/middleware.js +1 -0
  691. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/pagination.js +1 -0
  692. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/profile.js +1 -0
  693. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/response.js +1 -0
  694. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/retry.js +1 -0
  695. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/serde.js +1 -0
  696. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/shapes.js +1 -0
  697. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/signature.js +1 -0
  698. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/stream.js +1 -0
  699. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +1 -0
  700. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +1 -0
  701. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +1 -0
  702. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transfer.js +1 -0
  703. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +1 -0
  704. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +1 -0
  705. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/exact.js +1 -0
  706. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +1 -0
  707. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +1 -0
  708. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/uri.js +1 -0
  709. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/util.js +1 -0
  710. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/waiter.js +1 -0
  711. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
  712. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
  713. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
  714. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
  715. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
  716. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
  717. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/checksum.js +39 -0
  718. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +11 -0
  719. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
  720. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/http.js +5 -0
  721. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
  722. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/index.js +36 -0
  723. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/logger.js +1 -0
  724. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/middleware.js +1 -0
  725. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/pagination.js +1 -0
  726. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/profile.js +6 -0
  727. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/response.js +1 -0
  728. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/retry.js +1 -0
  729. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/serde.js +1 -0
  730. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/shapes.js +1 -0
  731. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/signature.js +1 -0
  732. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/stream.js +1 -0
  733. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
  734. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
  735. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
  736. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transfer.js +6 -0
  737. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
  738. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
  739. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
  740. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
  741. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
  742. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/uri.js +1 -0
  743. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/util.js +1 -0
  744. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/waiter.js +1 -0
  745. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/abort.d.ts +49 -0
  746. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
  747. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
  748. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
  749. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
  750. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
  751. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
  752. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
  753. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +41 -0
  754. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
  755. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/client.d.ts +44 -0
  756. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/command.d.ts +10 -0
  757. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/config.d.ts +7 -0
  758. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
  759. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/manager.d.ts +28 -0
  760. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/pool.d.ts +24 -0
  761. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
  762. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
  763. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/encode.d.ts +19 -0
  764. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
  765. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +15 -0
  766. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +7 -0
  767. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +19 -0
  768. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +10 -0
  769. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
  770. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +25 -0
  771. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/eventStream.d.ts +108 -0
  772. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +55 -0
  773. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
  774. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
  775. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
  776. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
  777. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
  778. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +79 -0
  779. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/http.d.ts +105 -0
  780. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
  781. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +27 -0
  782. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
  783. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
  784. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
  785. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/index.d.ts +36 -0
  786. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
  787. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/middleware.d.ts +510 -0
  788. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/pagination.d.ts +26 -0
  789. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
  790. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
  791. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
  792. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/serde.d.ts +111 -0
  793. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/shapes.d.ts +81 -0
  794. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/signature.d.ts +150 -0
  795. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
  796. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +33 -0
  797. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +62 -0
  798. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +53 -0
  799. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transfer.d.ts +33 -0
  800. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
  801. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +73 -0
  802. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
  803. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +62 -0
  804. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
  805. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +49 -0
  806. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
  807. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
  808. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
  809. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
  810. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
  811. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
  812. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
  813. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
  814. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
  815. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +44 -0
  816. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +10 -0
  817. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +7 -0
  818. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
  819. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +28 -0
  820. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +24 -0
  821. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
  822. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
  823. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +19 -0
  824. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
  825. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +15 -0
  826. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +7 -0
  827. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +19 -0
  828. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +10 -0
  829. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
  830. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +25 -0
  831. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +108 -0
  832. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +55 -0
  833. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
  834. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
  835. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
  836. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
  837. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
  838. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +78 -0
  839. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +105 -0
  840. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
  841. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +27 -0
  842. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
  843. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
  844. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
  845. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +36 -0
  846. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
  847. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +510 -0
  848. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +26 -0
  849. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
  850. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
  851. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
  852. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +111 -0
  853. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +81 -0
  854. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +150 -0
  855. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
  856. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +33 -0
  857. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +61 -0
  858. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +52 -0
  859. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +33 -0
  860. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
  861. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +84 -0
  862. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
  863. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +82 -0
  864. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
  865. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
  866. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
  867. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
  868. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
  869. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
  870. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
  871. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/package.json +61 -0
  872. package/node_modules/@smithy/node-http-handler/package.json +67 -0
  873. package/node_modules/@smithy/service-error-classification/LICENSE +201 -0
  874. package/node_modules/@smithy/service-error-classification/README.md +4 -0
  875. package/node_modules/@smithy/service-error-classification/dist-cjs/constants.js +1 -0
  876. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +98 -0
  877. package/node_modules/@smithy/service-error-classification/dist-es/constants.js +27 -0
  878. package/node_modules/@smithy/service-error-classification/dist-es/index.js +21 -0
  879. package/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +26 -0
  880. package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +19 -0
  881. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +26 -0
  882. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +19 -0
  883. package/node_modules/@smithy/service-error-classification/package.json +58 -0
  884. package/node_modules/@smithy/smithy-client/LICENSE +201 -0
  885. package/node_modules/@smithy/smithy-client/README.md +10 -0
  886. package/node_modules/@smithy/smithy-client/dist-cjs/NoOpLogger.js +1 -0
  887. package/node_modules/@smithy/smithy-client/dist-cjs/client.js +1 -0
  888. package/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +1 -0
  889. package/node_modules/@smithy/smithy-client/dist-cjs/command.js +1 -0
  890. package/node_modules/@smithy/smithy-client/dist-cjs/constants.js +1 -0
  891. package/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +1 -0
  892. package/node_modules/@smithy/smithy-client/dist-cjs/date-utils.js +1 -0
  893. package/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +1 -0
  894. package/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +1 -0
  895. package/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +1 -0
  896. package/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +1 -0
  897. package/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +1 -0
  898. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +1 -0
  899. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
  900. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +1 -0
  901. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +1 -0
  902. package/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +1 -0
  903. package/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +1 -0
  904. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +1309 -0
  905. package/node_modules/@smithy/smithy-client/dist-cjs/is-serializable-header-value.js +1 -0
  906. package/node_modules/@smithy/smithy-client/dist-cjs/lazy-json.js +1 -0
  907. package/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +1 -0
  908. package/node_modules/@smithy/smithy-client/dist-cjs/parse-utils.js +1 -0
  909. package/node_modules/@smithy/smithy-client/dist-cjs/quote-header.js +1 -0
  910. package/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +1 -0
  911. package/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +1 -0
  912. package/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +1 -0
  913. package/node_modules/@smithy/smithy-client/dist-cjs/split-every.js +1 -0
  914. package/node_modules/@smithy/smithy-client/dist-cjs/split-header.js +1 -0
  915. package/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
  916. package/node_modules/@smithy/smithy-client/dist-es/client.js +42 -0
  917. package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +1 -0
  918. package/node_modules/@smithy/smithy-client/dist-es/command.js +115 -0
  919. package/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
  920. package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
  921. package/node_modules/@smithy/smithy-client/dist-es/date-utils.js +190 -0
  922. package/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
  923. package/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
  924. package/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
  925. package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +22 -0
  926. package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +1 -0
  927. package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +31 -0
  928. package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +15 -0
  929. package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
  930. package/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +16 -0
  931. package/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
  932. package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
  933. package/node_modules/@smithy/smithy-client/dist-es/index.js +25 -0
  934. package/node_modules/@smithy/smithy-client/dist-es/is-serializable-header-value.js +3 -0
  935. package/node_modules/@smithy/smithy-client/dist-es/lazy-json.js +33 -0
  936. package/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
  937. package/node_modules/@smithy/smithy-client/dist-es/parse-utils.js +230 -0
  938. package/node_modules/@smithy/smithy-client/dist-es/quote-header.js +6 -0
  939. package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +1 -0
  940. package/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +14 -0
  941. package/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
  942. package/node_modules/@smithy/smithy-client/dist-es/split-every.js +27 -0
  943. package/node_modules/@smithy/smithy-client/dist-es/split-header.js +37 -0
  944. package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
  945. package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +53 -0
  946. package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +5 -0
  947. package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +113 -0
  948. package/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
  949. package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +9 -0
  950. package/node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts +73 -0
  951. package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +13 -0
  952. package/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
  953. package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
  954. package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +34 -0
  955. package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
  956. package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +25 -0
  957. package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
  958. package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
  959. package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +15 -0
  960. package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
  961. package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
  962. package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +26 -0
  963. package/node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts +5 -0
  964. package/node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts +24 -0
  965. package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
  966. package/node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts +270 -0
  967. package/node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts +6 -0
  968. package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +5 -0
  969. package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +14 -0
  970. package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +12 -0
  971. package/node_modules/@smithy/smithy-client/dist-types/split-every.d.ts +11 -0
  972. package/node_modules/@smithy/smithy-client/dist-types/split-header.d.ts +5 -0
  973. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
  974. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +53 -0
  975. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +5 -0
  976. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +113 -0
  977. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
  978. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +9 -0
  979. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/date-utils.d.ts +73 -0
  980. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +13 -0
  981. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
  982. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
  983. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +34 -0
  984. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +5 -0
  985. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +25 -0
  986. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
  987. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
  988. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +15 -0
  989. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
  990. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
  991. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +26 -0
  992. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +5 -0
  993. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/lazy-json.d.ts +24 -0
  994. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
  995. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/parse-utils.d.ts +270 -0
  996. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/quote-header.d.ts +6 -0
  997. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +5 -0
  998. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +14 -0
  999. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +12 -0
  1000. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-every.d.ts +11 -0
  1001. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-header.d.ts +5 -0
  1002. package/node_modules/@smithy/smithy-client/package.json +66 -0
  1003. package/node_modules/@smithy/util-base64/LICENSE +201 -0
  1004. package/node_modules/@smithy/util-base64/README.md +4 -0
  1005. package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +35 -0
  1006. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +40 -0
  1007. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +16 -0
  1008. package/node_modules/@smithy/util-base64/dist-cjs/index.js +27 -0
  1009. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +39 -0
  1010. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +19 -0
  1011. package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +28 -0
  1012. package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +36 -0
  1013. package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +12 -0
  1014. package/node_modules/@smithy/util-base64/dist-es/index.js +2 -0
  1015. package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +35 -0
  1016. package/node_modules/@smithy/util-base64/dist-es/toBase64.js +15 -0
  1017. package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +6 -0
  1018. package/node_modules/@smithy/util-base64/dist-types/fromBase64.browser.d.ts +8 -0
  1019. package/node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts +7 -0
  1020. package/node_modules/@smithy/util-base64/dist-types/index.d.ts +2 -0
  1021. package/node_modules/@smithy/util-base64/dist-types/toBase64.browser.d.ts +9 -0
  1022. package/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +8 -0
  1023. package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +6 -0
  1024. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +8 -0
  1025. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +7 -0
  1026. package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +2 -0
  1027. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +9 -0
  1028. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +8 -0
  1029. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/LICENSE +201 -0
  1030. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/README.md +4 -0
  1031. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
  1032. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
  1033. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
  1034. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
  1035. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
  1036. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
  1037. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
  1038. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
  1039. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
  1040. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
  1041. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
  1042. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
  1043. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
  1044. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
  1045. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
  1046. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
  1047. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
  1048. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
  1049. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
  1050. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
  1051. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
  1052. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
  1053. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
  1054. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
  1055. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/package.json +65 -0
  1056. package/node_modules/@smithy/util-base64/package.json +72 -0
  1057. package/node_modules/@smithy/util-body-length-browser/LICENSE +201 -0
  1058. package/node_modules/@smithy/util-body-length-browser/README.md +12 -0
  1059. package/node_modules/@smithy/util-body-length-browser/dist-cjs/calculateBodyLength.js +1 -0
  1060. package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +57 -0
  1061. package/node_modules/@smithy/util-body-length-browser/dist-es/calculateBodyLength.js +26 -0
  1062. package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +1 -0
  1063. package/node_modules/@smithy/util-body-length-browser/dist-types/calculateBodyLength.d.ts +4 -0
  1064. package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +4 -0
  1065. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
  1066. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +4 -0
  1067. package/node_modules/@smithy/util-body-length-browser/package.json +56 -0
  1068. package/node_modules/@smithy/util-body-length-node/LICENSE +201 -0
  1069. package/node_modules/@smithy/util-body-length-node/README.md +12 -0
  1070. package/node_modules/@smithy/util-body-length-node/dist-cjs/calculateBodyLength.js +1 -0
  1071. package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +53 -0
  1072. package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +25 -0
  1073. package/node_modules/@smithy/util-body-length-node/dist-es/index.js +1 -0
  1074. package/node_modules/@smithy/util-body-length-node/dist-types/calculateBodyLength.d.ts +4 -0
  1075. package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +4 -0
  1076. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
  1077. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +4 -0
  1078. package/node_modules/@smithy/util-body-length-node/package.json +60 -0
  1079. package/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
  1080. package/node_modules/@smithy/util-buffer-from/README.md +10 -0
  1081. package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
  1082. package/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
  1083. package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
  1084. package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
  1085. package/node_modules/@smithy/util-buffer-from/package.json +60 -0
  1086. package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
  1087. package/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
  1088. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
  1089. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +25 -0
  1090. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +33 -0
  1091. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
  1092. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
  1093. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
  1094. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +27 -0
  1095. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
  1096. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
  1097. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
  1098. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
  1099. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
  1100. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
  1101. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
  1102. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
  1103. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
  1104. package/node_modules/@smithy/util-defaults-mode-browser/package.json +65 -0
  1105. package/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
  1106. package/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
  1107. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/constants.js +1 -0
  1108. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +1 -0
  1109. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +119 -0
  1110. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +1 -0
  1111. package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
  1112. package/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
  1113. package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
  1114. package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
  1115. package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
  1116. package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
  1117. package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
  1118. package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
  1119. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
  1120. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
  1121. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
  1122. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
  1123. package/node_modules/@smithy/util-defaults-mode-node/package.json +65 -0
  1124. package/node_modules/@smithy/util-retry/LICENSE +201 -0
  1125. package/node_modules/@smithy/util-retry/README.md +78 -0
  1126. package/node_modules/@smithy/util-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
  1127. package/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +1 -0
  1128. package/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +1 -0
  1129. package/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +1 -0
  1130. package/node_modules/@smithy/util-retry/dist-cjs/config.js +1 -0
  1131. package/node_modules/@smithy/util-retry/dist-cjs/constants.js +1 -0
  1132. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +1 -0
  1133. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +1 -0
  1134. package/node_modules/@smithy/util-retry/dist-cjs/index.js +348 -0
  1135. package/node_modules/@smithy/util-retry/dist-cjs/types.js +1 -0
  1136. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +24 -0
  1137. package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +18 -0
  1138. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +99 -0
  1139. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +65 -0
  1140. package/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
  1141. package/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
  1142. package/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
  1143. package/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
  1144. package/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
  1145. package/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
  1146. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
  1147. package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
  1148. package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +45 -0
  1149. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
  1150. package/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
  1151. package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
  1152. package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
  1153. package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
  1154. package/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
  1155. package/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
  1156. package/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
  1157. package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +45 -0
  1158. package/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
  1159. package/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
  1160. package/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
  1161. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
  1162. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
  1163. package/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
  1164. package/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
  1165. package/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
  1166. package/node_modules/@smithy/util-retry/package.json +67 -0
  1167. package/node_modules/@smithy/util-uri-escape/LICENSE +201 -0
  1168. package/node_modules/@smithy/util-uri-escape/README.md +10 -0
  1169. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri-path.js +1 -0
  1170. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +1 -0
  1171. package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +43 -0
  1172. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri-path.js +2 -0
  1173. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js +2 -0
  1174. package/node_modules/@smithy/util-uri-escape/dist-es/index.js +2 -0
  1175. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri-path.d.ts +4 -0
  1176. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri.d.ts +4 -0
  1177. package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +8 -0
  1178. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +4 -0
  1179. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +4 -0
  1180. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +8 -0
  1181. package/node_modules/@smithy/util-uri-escape/package.json +59 -0
  1182. package/out/client/streamingClient/codewhispererStreamingClient.js +7 -8
  1183. package/out/client/streamingClient/codewhispererStreamingClient.js.map +1 -1
  1184. package/out/client/token/bearer-token-service.json +2472 -470
  1185. package/out/constants.d.ts +2 -0
  1186. package/out/constants.js +6 -0
  1187. package/out/constants.js.map +1 -0
  1188. package/out/language-server/auto-trigger/coefficients.json +11 -1
  1189. package/out/language-server/chat/chatController.d.ts +4 -4
  1190. package/out/language-server/chat/chatController.js +96 -41
  1191. package/out/language-server/chat/chatController.js.map +1 -1
  1192. package/out/language-server/chat/chatController.test.js +51 -28
  1193. package/out/language-server/chat/chatController.test.js.map +1 -1
  1194. package/out/language-server/chat/chatEventParser.d.ts +7 -2
  1195. package/out/language-server/chat/chatEventParser.js +13 -5
  1196. package/out/language-server/chat/chatEventParser.js.map +1 -1
  1197. package/out/language-server/chat/chatEventParser.test.js +88 -42
  1198. package/out/language-server/chat/chatEventParser.test.js.map +1 -1
  1199. package/out/language-server/chat/chatSessionService.d.ts +4 -4
  1200. package/out/language-server/chat/chatSessionService.js +13 -13
  1201. package/out/language-server/chat/chatSessionService.js.map +1 -1
  1202. package/out/language-server/chat/chatSessionService.test.js +19 -25
  1203. package/out/language-server/chat/chatSessionService.test.js.map +1 -1
  1204. package/out/language-server/chat/contexts/documentContext.d.ts +1 -4
  1205. package/out/language-server/chat/contexts/documentContext.js +1 -17
  1206. package/out/language-server/chat/contexts/documentContext.js.map +1 -1
  1207. package/out/language-server/chat/contexts/documentContext.test.js +0 -7
  1208. package/out/language-server/chat/contexts/documentContext.test.js.map +1 -1
  1209. package/out/language-server/chat/contexts/triggerContext.d.ts +3 -4
  1210. package/out/language-server/chat/contexts/triggerContext.js +2 -5
  1211. package/out/language-server/chat/contexts/triggerContext.js.map +1 -1
  1212. package/out/language-server/chat/contexts/triggerContexts.test.js +0 -1
  1213. package/out/language-server/chat/contexts/triggerContexts.test.js.map +1 -1
  1214. package/out/language-server/chat/telemetry/chatTelemetryController.d.ts +8 -2
  1215. package/out/language-server/chat/telemetry/chatTelemetryController.js +108 -59
  1216. package/out/language-server/chat/telemetry/chatTelemetryController.js.map +1 -1
  1217. package/out/language-server/chat/telemetry/chatTelemetryController.test.js +112 -1
  1218. package/out/language-server/chat/telemetry/chatTelemetryController.test.js.map +1 -1
  1219. package/out/language-server/chat/telemetry/clientTelemetry.d.ts +0 -1
  1220. package/out/language-server/chat/telemetry/clientTelemetry.js.map +1 -1
  1221. package/out/language-server/codeWhispererSecurityScanServer.js +2 -1
  1222. package/out/language-server/codeWhispererSecurityScanServer.js.map +1 -1
  1223. package/out/language-server/codeWhispererServer.js +70 -45
  1224. package/out/language-server/codeWhispererServer.js.map +1 -1
  1225. package/out/language-server/codeWhispererServer.test.js +79 -2
  1226. package/out/language-server/codeWhispererServer.test.js.map +1 -1
  1227. package/out/language-server/codeWhispererService.d.ts +14 -11
  1228. package/out/language-server/codeWhispererService.js +25 -12
  1229. package/out/language-server/codeWhispererService.js.map +1 -1
  1230. package/out/language-server/configuration/qConfigurationServer.js +2 -2
  1231. package/out/language-server/configuration/qConfigurationServer.js.map +1 -1
  1232. package/out/language-server/constants.d.ts +1 -0
  1233. package/out/language-server/constants.js +2 -1
  1234. package/out/language-server/constants.js.map +1 -1
  1235. package/out/language-server/dependencyGraph/csharpDependencyGraph.test.js +2 -3
  1236. package/out/language-server/dependencyGraph/csharpDependencyGraph.test.js.map +1 -1
  1237. package/out/language-server/dependencyGraph/dependencyGraph.js +2 -2
  1238. package/out/language-server/dependencyGraph/dependencyGraph.js.map +1 -1
  1239. package/out/language-server/languageDetection.d.ts +9 -1
  1240. package/out/language-server/languageDetection.js +81 -5
  1241. package/out/language-server/languageDetection.js.map +1 -1
  1242. package/out/language-server/netTransform/artifactManager.js +12 -10
  1243. package/out/language-server/netTransform/artifactManager.js.map +1 -1
  1244. package/out/language-server/netTransform/converter.d.ts +1 -2
  1245. package/out/language-server/netTransform/converter.js +3 -48
  1246. package/out/language-server/netTransform/converter.js.map +1 -1
  1247. package/out/language-server/netTransform/models.d.ts +4 -0
  1248. package/out/language-server/netTransform/models.js.map +1 -1
  1249. package/out/language-server/netTransform/resources/SupportedProjects.js +0 -1
  1250. package/out/language-server/netTransform/resources/SupportedProjects.js.map +1 -1
  1251. package/out/language-server/netTransform/tests/converter.test.js +2 -159
  1252. package/out/language-server/netTransform/tests/converter.test.js.map +1 -1
  1253. package/out/language-server/netTransform/tests/validation.test.js +2 -0
  1254. package/out/language-server/netTransform/tests/validation.test.js.map +1 -1
  1255. package/out/language-server/netTransform/transformHandler.js +27 -36
  1256. package/out/language-server/netTransform/transformHandler.js.map +1 -1
  1257. package/out/language-server/netTransformServer.js +2 -21
  1258. package/out/language-server/netTransformServer.js.map +1 -1
  1259. package/out/language-server/proxy-server.js +9 -83
  1260. package/out/language-server/proxy-server.js.map +1 -1
  1261. package/out/language-server/qChatServer.js +13 -4
  1262. package/out/language-server/qChatServer.js.map +1 -1
  1263. package/out/language-server/session/sessionManager.d.ts +9 -2
  1264. package/out/language-server/session/sessionManager.js +4 -0
  1265. package/out/language-server/session/sessionManager.js.map +1 -1
  1266. package/out/language-server/session/sessionManager.test.js +4 -0
  1267. package/out/language-server/session/sessionManager.test.js.map +1 -1
  1268. package/out/language-server/telemetry/codeDiffTracker.d.ts +3 -1
  1269. package/out/language-server/telemetry/codeDiffTracker.js +6 -1
  1270. package/out/language-server/telemetry/codeDiffTracker.js.map +1 -1
  1271. package/out/language-server/telemetry/codePercentage.d.ts +6 -4
  1272. package/out/language-server/telemetry/codePercentage.js +49 -12
  1273. package/out/language-server/telemetry/codePercentage.js.map +1 -1
  1274. package/out/language-server/telemetry/codePercentage.test.js +169 -41
  1275. package/out/language-server/telemetry/codePercentage.test.js.map +1 -1
  1276. package/out/language-server/telemetry/types.d.ts +7 -1
  1277. package/out/language-server/telemetry/types.js.map +1 -1
  1278. package/out/language-server/telemetry/userTriggerDecision.test.js +560 -156
  1279. package/out/language-server/telemetry/userTriggerDecision.test.js.map +1 -1
  1280. package/out/language-server/telemetry.test.js +11 -9
  1281. package/out/language-server/telemetry.test.js.map +1 -1
  1282. package/out/language-server/telemetryService.d.ts +79 -0
  1283. package/out/language-server/telemetryService.js +321 -0
  1284. package/out/language-server/telemetryService.js.map +1 -0
  1285. package/out/language-server/telemetryService.test.d.ts +1 -0
  1286. package/out/language-server/telemetryService.test.js +761 -0
  1287. package/out/language-server/telemetryService.test.js.map +1 -0
  1288. package/out/language-server/utilities/telemetryUtils.d.ts +4 -0
  1289. package/out/language-server/utilities/telemetryUtils.js +89 -0
  1290. package/out/language-server/utilities/telemetryUtils.js.map +1 -0
  1291. package/out/language-server/utilities/telemetryUtils.test.d.ts +1 -0
  1292. package/out/language-server/utilities/telemetryUtils.test.js +207 -0
  1293. package/out/language-server/utilities/telemetryUtils.test.js.map +1 -0
  1294. package/out/language-server/utils.d.ts +7 -4
  1295. package/out/language-server/utils.js +57 -34
  1296. package/out/language-server/utils.js.map +1 -1
  1297. package/out/language-server/utils.test.js +104 -73
  1298. package/out/language-server/utils.test.js.map +1 -1
  1299. package/package.json +4 -7
  1300. package/node_modules/@aws/lsp-fqn/out/browser/fqnWorkerPool.d.ts +0 -5
  1301. package/node_modules/@aws/lsp-fqn/out/browser/fqnWorkerPool.js +0 -28
  1302. package/node_modules/@aws/lsp-fqn/out/browser/fqnWorkerPool.js.map +0 -1
  1303. package/node_modules/@aws/lsp-fqn/out/browser/index.d.ts +0 -2
  1304. package/node_modules/@aws/lsp-fqn/out/browser/index.js +0 -19
  1305. package/node_modules/@aws/lsp-fqn/out/browser/index.js.map +0 -1
  1306. package/node_modules/@aws/lsp-fqn/out/common/commonFqnWorkerPool.d.ts +0 -7
  1307. package/node_modules/@aws/lsp-fqn/out/common/commonFqnWorkerPool.js +0 -39
  1308. package/node_modules/@aws/lsp-fqn/out/common/commonFqnWorkerPool.js.map +0 -1
  1309. package/node_modules/@aws/lsp-fqn/out/common/defaults.d.ts +0 -4
  1310. package/node_modules/@aws/lsp-fqn/out/common/defaults.js +0 -8
  1311. package/node_modules/@aws/lsp-fqn/out/common/defaults.js.map +0 -1
  1312. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.d.ts +0 -3
  1313. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.js +0 -28
  1314. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.js.map +0 -1
  1315. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.test.js +0 -57
  1316. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.test.js.map +0 -1
  1317. package/node_modules/@aws/lsp-fqn/out/common/types.d.ts +0 -58
  1318. package/node_modules/@aws/lsp-fqn/out/common/types.js +0 -3
  1319. package/node_modules/@aws/lsp-fqn/out/common/types.js.map +0 -1
  1320. package/node_modules/@aws/lsp-fqn/out/index.d.ts +0 -7
  1321. package/node_modules/@aws/lsp-fqn/out/index.js +0 -18
  1322. package/node_modules/@aws/lsp-fqn/out/index.js.map +0 -1
  1323. package/node_modules/@aws/lsp-fqn/out/node/aws-lsp-fqn-worker.js +0 -19
  1324. package/node_modules/@aws/lsp-fqn/out/node/aws-lsp-fqn-worker.js.map +0 -1
  1325. package/node_modules/@aws/lsp-fqn/out/node/fqnWorkerPool.d.ts +0 -5
  1326. package/node_modules/@aws/lsp-fqn/out/node/fqnWorkerPool.js +0 -12
  1327. package/node_modules/@aws/lsp-fqn/out/node/fqnWorkerPool.js.map +0 -1
  1328. package/node_modules/@aws/lsp-fqn/out/node/index.d.ts +0 -2
  1329. package/node_modules/@aws/lsp-fqn/out/node/index.js +0 -19
  1330. package/node_modules/@aws/lsp-fqn/out/node/index.js.map +0 -1
  1331. package/node_modules/@aws/lsp-fqn/package.json +0 -42
  1332. package/node_modules/@aws/lsp-fqn/src/browser/fqnWorkerPool.ts +0 -26
  1333. package/node_modules/@aws/lsp-fqn/src/browser/index.ts +0 -2
  1334. package/node_modules/@aws/lsp-fqn/src/common/commonFqnWorkerPool.ts +0 -44
  1335. package/node_modules/@aws/lsp-fqn/src/common/defaults.ts +0 -4
  1336. package/node_modules/@aws/lsp-fqn/src/common/fqnExtractor.test.ts +0 -66
  1337. package/node_modules/@aws/lsp-fqn/src/common/fqnExtractor.ts +0 -35
  1338. package/node_modules/@aws/lsp-fqn/src/common/types.ts +0 -77
  1339. package/node_modules/@aws/lsp-fqn/src/index.ts +0 -8
  1340. package/node_modules/@aws/lsp-fqn/src/node/aws-lsp-fqn-worker.ts +0 -19
  1341. package/node_modules/@aws/lsp-fqn/src/node/fqnWorkerPool.ts +0 -9
  1342. package/node_modules/@aws/lsp-fqn/src/node/index.ts +0 -2
  1343. package/node_modules/@aws/lsp-fqn/tsconfig.json +0 -8
  1344. package/node_modules/@aws/lsp-fqn/tsconfig.tsbuildinfo +0 -1
  1345. package/node_modules/@aws-sdk/types/README.md +0 -4
  1346. package/node_modules/@aws-sdk/types/dist-cjs/auth.js +0 -5
  1347. package/node_modules/@aws-sdk/types/dist-cjs/blob/blob-types.js +0 -2
  1348. package/node_modules/@aws-sdk/types/dist-cjs/blob/runtime-blob-types.browser.js +0 -2
  1349. package/node_modules/@aws-sdk/types/dist-cjs/blob/runtime-blob-types.node.js +0 -2
  1350. package/node_modules/@aws-sdk/types/dist-cjs/checksum.js +0 -2
  1351. package/node_modules/@aws-sdk/types/dist-cjs/client.js +0 -2
  1352. package/node_modules/@aws-sdk/types/dist-cjs/command.js +0 -2
  1353. package/node_modules/@aws-sdk/types/dist-cjs/connection.js +0 -2
  1354. package/node_modules/@aws-sdk/types/dist-cjs/credentials.js +0 -2
  1355. package/node_modules/@aws-sdk/types/dist-cjs/crypto.js +0 -2
  1356. package/node_modules/@aws-sdk/types/dist-cjs/dns.js +0 -8
  1357. package/node_modules/@aws-sdk/types/dist-cjs/encode.js +0 -2
  1358. package/node_modules/@aws-sdk/types/dist-cjs/endpoint.js +0 -5
  1359. package/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +0 -2
  1360. package/node_modules/@aws-sdk/types/dist-cjs/extensions/index.js +0 -2
  1361. package/node_modules/@aws-sdk/types/dist-cjs/http.js +0 -2
  1362. package/node_modules/@aws-sdk/types/dist-cjs/identity/AnonymousIdentity.js +0 -2
  1363. package/node_modules/@aws-sdk/types/dist-cjs/identity/AwsCredentialIdentity.js +0 -2
  1364. package/node_modules/@aws-sdk/types/dist-cjs/identity/Identity.js +0 -2
  1365. package/node_modules/@aws-sdk/types/dist-cjs/identity/LoginIdentity.js +0 -2
  1366. package/node_modules/@aws-sdk/types/dist-cjs/identity/TokenIdentity.js +0 -2
  1367. package/node_modules/@aws-sdk/types/dist-cjs/identity/index.js +0 -8
  1368. package/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -35
  1369. package/node_modules/@aws-sdk/types/dist-cjs/logger.js +0 -2
  1370. package/node_modules/@aws-sdk/types/dist-cjs/middleware.js +0 -2
  1371. package/node_modules/@aws-sdk/types/dist-cjs/pagination.js +0 -2
  1372. package/node_modules/@aws-sdk/types/dist-cjs/profile.js +0 -2
  1373. package/node_modules/@aws-sdk/types/dist-cjs/request.js +0 -2
  1374. package/node_modules/@aws-sdk/types/dist-cjs/response.js +0 -2
  1375. package/node_modules/@aws-sdk/types/dist-cjs/retry.js +0 -2
  1376. package/node_modules/@aws-sdk/types/dist-cjs/serde.js +0 -2
  1377. package/node_modules/@aws-sdk/types/dist-cjs/shapes.js +0 -2
  1378. package/node_modules/@aws-sdk/types/dist-cjs/signature.js +0 -2
  1379. package/node_modules/@aws-sdk/types/dist-cjs/stream.js +0 -2
  1380. package/node_modules/@aws-sdk/types/dist-cjs/token.js +0 -2
  1381. package/node_modules/@aws-sdk/types/dist-cjs/transfer.js +0 -5
  1382. package/node_modules/@aws-sdk/types/dist-cjs/uri.js +0 -2
  1383. package/node_modules/@aws-sdk/types/dist-cjs/util.js +0 -2
  1384. package/node_modules/@aws-sdk/types/dist-cjs/waiter.js +0 -2
  1385. package/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  1386. package/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  1387. package/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  1388. package/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  1389. package/node_modules/@aws-sdk/types/dist-es/index.js +0 -32
  1390. package/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  1391. package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  1392. package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  1393. package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  1394. package/node_modules/@aws-sdk/types/dist-types/blob/runtime-blob-types.browser.d.ts +0 -6
  1395. package/node_modules/@aws-sdk/types/dist-types/blob/runtime-blob-types.node.d.ts +0 -9
  1396. package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  1397. package/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  1398. package/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  1399. package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  1400. package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -17
  1401. package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  1402. package/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  1403. package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  1404. package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  1405. package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  1406. package/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  1407. package/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  1408. package/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  1409. package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -1
  1410. package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  1411. package/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  1412. package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -14
  1413. package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  1414. package/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -32
  1415. package/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  1416. package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -1
  1417. package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  1418. package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  1419. package/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  1420. package/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  1421. package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  1422. package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  1423. package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  1424. package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  1425. package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  1426. package/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  1427. package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  1428. package/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  1429. package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  1430. package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  1431. package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/runtime-blob-types.browser.d.ts +0 -1
  1432. package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/runtime-blob-types.node.d.ts +0 -2
  1433. package/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  1434. package/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  1435. package/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  1436. package/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  1437. package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -4
  1438. package/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  1439. package/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  1440. package/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  1441. package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  1442. package/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  1443. package/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  1444. package/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  1445. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  1446. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -4
  1447. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  1448. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  1449. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -5
  1450. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  1451. package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -32
  1452. package/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  1453. package/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -40
  1454. package/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  1455. package/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  1456. package/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  1457. package/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  1458. package/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  1459. package/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  1460. package/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  1461. package/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  1462. package/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  1463. package/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  1464. package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  1465. package/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  1466. package/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  1467. package/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  1468. package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  1469. package/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  1470. package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  1471. package/node_modules/@aws-sdk/types/package.json +0 -64
  1472. package/out/language-server/chat/contexts/documentFqnExtractor.d.ts +0 -22
  1473. package/out/language-server/chat/contexts/documentFqnExtractor.js +0 -95
  1474. package/out/language-server/chat/contexts/documentFqnExtractor.js.map +0 -1
  1475. package/out/language-server/chat/contexts/documentFqnExtractor.test.js +0 -94
  1476. package/out/language-server/chat/contexts/documentFqnExtractor.test.js.map +0 -1
  1477. package/out/language-server/chat/contexts/mockData.d.ts +0 -37
  1478. package/out/language-server/chat/contexts/mockData.js +0 -98
  1479. package/out/language-server/chat/contexts/mockData.js.map +0 -1
  1480. /package/node_modules/@aws-sdk/{types/dist-cjs/abort.js → util-user-agent-browser/dist-cjs/configurations.js} +0 -0
  1481. /package/node_modules/@aws-sdk/{types/dist-es/abort.js → util-user-agent-browser/dist-es/configurations.js} +0 -0
  1482. /package/node_modules/{@aws-sdk/types → @smithy/config-resolver}/LICENSE +0 -0
  1483. /package/node_modules/{@aws-sdk/types/dist-es/blob/blob-types.js → @smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js} +0 -0
  1484. /package/node_modules/{@aws-sdk/types/dist-es/blob/runtime-blob-types.browser.js → @smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js} +0 -0
  1485. /package/node_modules/{@aws-sdk/types/dist-es/blob/runtime-blob-types.node.js → @smithy/config-resolver/dist-es/regionInfo/PartitionHash.js} +0 -0
  1486. /package/node_modules/{@aws-sdk/types/dist-es/checksum.js → @smithy/config-resolver/dist-es/regionInfo/RegionHash.js} +0 -0
  1487. /package/node_modules/{@aws-sdk/types/dist-es/client.js → @smithy/middleware-retry/dist-es/types.js} +0 -0
  1488. /package/node_modules/{@aws-sdk/types/dist-es/command.js → @smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/httpHandler.js} +0 -0
  1489. /package/node_modules/{@aws-sdk/types/dist-es/connection.js → @smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/types.js} +0 -0
  1490. /package/node_modules/{@aws-sdk/types/dist-es/credentials.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/abort.js} +0 -0
  1491. /package/node_modules/{@aws-sdk/types/dist-es/crypto.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js} +0 -0
  1492. /package/node_modules/{@aws-sdk/types/dist-es/encode.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js} +0 -0
  1493. /package/node_modules/{@aws-sdk/types/dist-es/eventStream.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpSigner.js} +0 -0
  1494. /package/node_modules/{@aws-sdk/types/dist-es/extensions/index.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js} +0 -0
  1495. /package/node_modules/{@aws-sdk/types/dist-es/http.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js} +0 -0
  1496. /package/node_modules/{@aws-sdk/types/dist-es/identity/AnonymousIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/checksum.js} +0 -0
  1497. /package/node_modules/{@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/client.js} +0 -0
  1498. /package/node_modules/{@aws-sdk/types/dist-es/identity/Identity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/command.js} +0 -0
  1499. /package/node_modules/{@aws-sdk/types/dist-es/identity/LoginIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/config.js} +0 -0
  1500. /package/node_modules/{@aws-sdk/types/dist-es/identity/TokenIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/manager.js} +0 -0
  1501. /package/node_modules/{@aws-sdk/types/dist-es/logger.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/pool.js} +0 -0
  1502. /package/node_modules/{@aws-sdk/types/dist-es/middleware.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/crypto.js} +0 -0
  1503. /package/node_modules/{@aws-sdk/types/dist-es/pagination.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js} +0 -0
  1504. /package/node_modules/{@aws-sdk/types/dist-es/profile.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/encode.js} +0 -0
  1505. /package/node_modules/{@aws-sdk/types/dist-es/request.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js} +0 -0
  1506. /package/node_modules/{@aws-sdk/types/dist-es/response.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js} +0 -0
  1507. /package/node_modules/{@aws-sdk/types/dist-es/retry.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js} +0 -0
  1508. /package/node_modules/{@aws-sdk/types/dist-es/serde.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js} +0 -0
  1509. /package/node_modules/{@aws-sdk/types/dist-es/shapes.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/shared.js} +0 -0
  1510. /package/node_modules/{@aws-sdk/types/dist-es/signature.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/eventStream.js} +0 -0
  1511. /package/node_modules/{@aws-sdk/types/dist-es/stream.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js} +0 -0
  1512. /package/node_modules/{@aws-sdk/types/dist-es/token.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/retry.js} +0 -0
  1513. /package/node_modules/{@aws-sdk/types/dist-es/uri.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js} +0 -0
  1514. /package/node_modules/{@aws-sdk/types/dist-es/util.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js} +0 -0
  1515. /package/node_modules/{@aws-sdk/types/dist-es/waiter.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js} +0 -0
  1516. /package/node_modules/{@aws/lsp-fqn/out/common/fqnExtractor.test.d.ts → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js} +0 -0
  1517. /package/node_modules/{@aws/lsp-fqn/out/node/aws-lsp-fqn-worker.d.ts → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/identity.js} +0 -0
  1518. /package/{out/language-server/chat/contexts/documentFqnExtractor.test.d.ts → node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js} +0 -0
@@ -1,19 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const fqn = require("@aws/fully-qualified-names");
4
- const workerpool_1 = require("workerpool");
5
- const defaults_1 = require("../common/defaults");
6
- const fqnExtractor_1 = require("../common/fqnExtractor");
7
- async function fqnWorker(input) {
8
- try {
9
- const data = await (0, fqnExtractor_1.extract)(fqn, input);
10
- return { data, success: true };
11
- }
12
- catch (e) {
13
- return { success: false, error: e instanceof Error ? e.message : 'unknown' };
14
- }
15
- }
16
- (0, workerpool_1.worker)({
17
- [defaults_1.FQN_WORKER_ID]: fqnWorker,
18
- });
19
- //# sourceMappingURL=aws-lsp-fqn-worker.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"aws-lsp-fqn-worker.js","sourceRoot":"","sources":["../../src/node/aws-lsp-fqn-worker.ts"],"names":[],"mappings":";;AAAA,kDAAiD;AACjD,2CAAmC;AACnC,iDAAkD;AAClD,yDAAgD;AAGhD,KAAK,UAAU,SAAS,CAAC,KAAwB;IAC7C,IAAI,CAAC;QACD,MAAM,IAAI,GAAG,MAAM,IAAA,sBAAO,EAAC,GAAG,EAAE,KAAK,CAAC,CAAA;QAEtC,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,CAAA;IAClC,CAAC;IAAC,OAAO,CAAC,EAAE,CAAC;QACT,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,YAAY,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,EAAE,CAAA;IAChF,CAAC;AACL,CAAC;AAED,IAAA,mBAAM,EAAC;IACH,CAAC,wBAAa,CAAC,EAAE,SAAS;CAC7B,CAAC,CAAA"}
@@ -1,5 +0,0 @@
1
- import { CommonFqnWorkerPool } from '../common/commonFqnWorkerPool';
2
- import { WorkerPoolConfig } from '../common/types';
3
- export declare class FqnWorkerPool extends CommonFqnWorkerPool {
4
- constructor(options?: WorkerPoolConfig);
5
- }
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FqnWorkerPool = void 0;
4
- const path = require("path");
5
- const commonFqnWorkerPool_1 = require("../common/commonFqnWorkerPool");
6
- class FqnWorkerPool extends commonFqnWorkerPool_1.CommonFqnWorkerPool {
7
- constructor(options) {
8
- super(path.resolve(__dirname, './aws-lsp-fqn-worker.js'), options);
9
- }
10
- }
11
- exports.FqnWorkerPool = FqnWorkerPool;
12
- //# sourceMappingURL=fqnWorkerPool.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"fqnWorkerPool.js","sourceRoot":"","sources":["../../src/node/fqnWorkerPool.ts"],"names":[],"mappings":";;;AAAA,6BAA6B;AAC7B,uEAAmE;AAGnE,MAAa,aAAc,SAAQ,yCAAmB;IAClD,YAAY,OAA0B;QAClC,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,yBAAyB,CAAC,EAAE,OAAO,CAAC,CAAA;IACtE,CAAC;CACJ;AAJD,sCAIC"}
@@ -1,2 +0,0 @@
1
- export * from '../common/types';
2
- export * from './fqnWorkerPool';
@@ -1,19 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("../common/types"), exports);
18
- __exportStar(require("./fqnWorkerPool"), exports);
19
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/node/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAA+B;AAC/B,kDAA+B"}
@@ -1,42 +0,0 @@
1
- {
2
- "name": "@aws/lsp-fqn",
3
- "version": "0.0.1",
4
- "description": "Provides environment dependent fully qualified names utils",
5
- "main": "out/node/index.js",
6
- "types": "out/index.d.ts",
7
- "browser": "out/browser/index.js",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/aws/language-servers"
11
- },
12
- "author": "Amazon Web Services",
13
- "license": "Apache-2.0",
14
- "engines": {
15
- "node": ">=18.0.0"
16
- },
17
- "scripts": {
18
- "compile": "tsc --build",
19
- "test:unit": "ts-mocha -b 'src/**/*.test.ts'",
20
- "test": "npm run test:unit"
21
- },
22
- "dependencies": {
23
- "@aws/fully-qualified-names": "^2.1.4",
24
- "web-tree-sitter": "^0.22.6",
25
- "workerpool": "^9.1.1"
26
- },
27
- "devDependencies": {
28
- "assert": "^2.1.0",
29
- "ts-mocha": "^10.0.0",
30
- "ts-sinon": "^2.0.2"
31
- },
32
- "prettier": {
33
- "printWidth": 120,
34
- "trailingComma": "es5",
35
- "tabWidth": 4,
36
- "singleQuote": true,
37
- "semi": false,
38
- "bracketSpacing": true,
39
- "arrowParens": "avoid",
40
- "endOfLine": "lf"
41
- }
42
- }
@@ -1,26 +0,0 @@
1
- import { ExtractorResult, FqnExtractorInput, IFqnWorkerPool } from '../common/types'
2
-
3
- // TODO: implement logic for browser/webworker environment
4
- export class FqnWorkerPool implements IFqnWorkerPool {
5
- public async exec(_input: FqnExtractorInput): Promise<ExtractorResult> {
6
- return Promise.resolve({
7
- success: true,
8
- data: {
9
- fullyQualified: {
10
- declaredSymbols: [],
11
- usedSymbols: [],
12
- },
13
- simple: {
14
- declaredSymbols: [],
15
- usedSymbols: [],
16
- },
17
- externalSimple: {
18
- declaredSymbols: [],
19
- usedSymbols: [],
20
- },
21
- },
22
- })
23
- }
24
-
25
- public dispose() {}
26
- }
@@ -1,2 +0,0 @@
1
- export * from '../common/types'
2
- export * from './fqnWorkerPool'
@@ -1,44 +0,0 @@
1
- import { pool, Pool } from 'workerpool'
2
- import { DEFAULT_MAX_QUEUE_SIZE, DEFAULT_MAX_WORKERS, DEFAULT_TIMEOUT, FQN_WORKER_ID } from './defaults'
3
- import { ExtractorResult, FqnExtractorInput, IFqnWorkerPool, Logger, WorkerPoolConfig } from './types'
4
-
5
- export class CommonFqnWorkerPool implements IFqnWorkerPool {
6
- #workerPool: Pool
7
- #logger?: Logger
8
- #timeout: number
9
-
10
- constructor(filePath: string, { timeout = DEFAULT_TIMEOUT, logger, workerPoolOptions }: WorkerPoolConfig = {}) {
11
- this.#timeout = timeout
12
- this.#logger = logger
13
- this.#workerPool = pool(filePath, {
14
- maxWorkers: DEFAULT_MAX_WORKERS,
15
- maxQueueSize: DEFAULT_MAX_QUEUE_SIZE,
16
- ...workerPoolOptions,
17
- })
18
- }
19
-
20
- public async exec(input: FqnExtractorInput): Promise<ExtractorResult> {
21
- this.#logger?.log(`Extracting fully qualified names for ${input.languageId}`)
22
-
23
- return this.#workerPool
24
- .exec(FQN_WORKER_ID, [input])
25
- .timeout(this.#timeout)
26
- .then(data => data as ExtractorResult)
27
- .catch(error => {
28
- const errorMessage = `Encountered error while extracting fully qualified names: ${
29
- error instanceof Error ? error.message : 'Unknown'
30
- }`
31
-
32
- this.#logger?.error(errorMessage)
33
-
34
- return {
35
- success: false,
36
- error: errorMessage,
37
- }
38
- })
39
- }
40
-
41
- public dispose() {
42
- this.#workerPool.terminate(true)
43
- }
44
- }
@@ -1,4 +0,0 @@
1
- export const DEFAULT_TIMEOUT = 5000
2
- export const DEFAULT_MAX_WORKERS = 2
3
- export const DEFAULT_MAX_QUEUE_SIZE = 10
4
- export const FQN_WORKER_ID = 'fqn'
@@ -1,66 +0,0 @@
1
- import * as fqn from '@aws/fully-qualified-names'
2
- import * as assert from 'assert'
3
- import sinon from 'ts-sinon'
4
- import { extract } from './fqnExtractor'
5
-
6
- describe('fqnExtractor.extract', () => {
7
- let typescriptStub: sinon.SinonStub
8
- let javaStub: sinon.SinonStub
9
- const tsResult = {}
10
- const javaResult = {}
11
- const mockRange = {
12
- start: {
13
- line: 0,
14
- character: 0,
15
- },
16
- end: {
17
- line: 1,
18
- character: 1,
19
- },
20
- }
21
- const mockFileText = `console.log('abc')`
22
-
23
- beforeEach(() => {
24
- typescriptStub = sinon.stub(fqn.TypeScript, 'findNamesWithInExtent').callsFake(() => Promise.resolve(tsResult))
25
- javaStub = sinon.stub(fqn.Java, 'findNamesWithInExtent').callsFake(() => Promise.resolve(javaResult))
26
- })
27
-
28
- afterEach(() => {
29
- typescriptStub.restore()
30
- javaStub.restore()
31
- })
32
-
33
- it('throws error with unsupported languageId', async () => {
34
- await assert.rejects(() =>
35
- extract(fqn, {
36
- languageId: 'lolcode' as any,
37
- fileText: mockFileText,
38
- selection: mockRange,
39
- })
40
- )
41
- })
42
-
43
- it('calls the corresponding fqn function', async () => {
44
- let result = await extract(fqn, {
45
- languageId: 'typescript',
46
- fileText: mockFileText,
47
- selection: mockRange,
48
- })
49
-
50
- sinon.assert.calledOnceWithMatch(typescriptStub, mockFileText, sinon.match.instanceOf(fqn.Extent))
51
-
52
- // reference check
53
- assert.strictEqual(result, tsResult)
54
-
55
- result = await extract(fqn, {
56
- languageId: 'java',
57
- fileText: mockFileText,
58
- selection: mockRange,
59
- })
60
-
61
- sinon.assert.calledOnceWithMatch(javaStub, mockFileText, sinon.match.instanceOf(fqn.Extent))
62
-
63
- // reference check
64
- assert.strictEqual(result, javaResult)
65
- })
66
- })
@@ -1,35 +0,0 @@
1
- import type * as Fqn from '@aws/fully-qualified-names'
2
- import { FqnExtractorInput, FqnExtractorOutput } from './types'
3
-
4
- function extractNames(
5
- fqn: typeof Fqn,
6
- languageId: FqnExtractorInput['languageId'],
7
- fileText: string,
8
- extent: Fqn.Extent
9
- ): Promise<FqnExtractorOutput> {
10
- switch (languageId) {
11
- case 'java':
12
- return fqn.Java.findNamesWithInExtent(fileText, extent)
13
- case 'javascript':
14
- case 'javascriptreact':
15
- case 'typescriptreact':
16
- return fqn.Tsx.findNamesWithInExtent(fileText, extent)
17
- case 'typescript':
18
- return fqn.TypeScript.findNamesWithInExtent(fileText, extent)
19
- case 'python':
20
- return fqn.Python.findNamesWithInExtent(fileText, extent)
21
- default:
22
- // ideally unreachable
23
- throw new Error(`Unsupported language: ${languageId}`)
24
- }
25
- }
26
-
27
- export async function extract(fqn: typeof Fqn, input: FqnExtractorInput): Promise<FqnExtractorOutput> {
28
- const { fileText, languageId, selection } = input
29
-
30
- const startLocation = new fqn.Location(selection.start.line, selection.start.character)
31
- const endLocation = new fqn.Location(selection.end.line, selection.end.character)
32
- const extent = new fqn.Extent(startLocation, endLocation)
33
-
34
- return extractNames(fqn, languageId, fileText, extent)
35
- }
@@ -1,77 +0,0 @@
1
- import type { Location } from '@aws/fully-qualified-names'
2
- import type { WorkerPoolOptions } from 'workerpool'
3
-
4
- export type FqnSupportedLanguages =
5
- | 'python'
6
- | 'java'
7
- | 'javascript'
8
- | 'javascriptreact'
9
- | 'typescript'
10
- | 'typescriptreact'
11
-
12
- export type Result<TData, TError> =
13
- | {
14
- success: true
15
- data: TData
16
- }
17
- | {
18
- success: false
19
- data?: TData
20
- error: TError
21
- }
22
-
23
- export type ExtractorResult = Result<FqnExtractorOutput, string>
24
-
25
- export interface FullyQualifiedName {
26
- source: string[]
27
- symbol: string[]
28
- }
29
-
30
- export interface Logger {
31
- log: (message: string) => void
32
- error: (error: string) => void
33
- }
34
-
35
- export interface WorkerPoolConfig {
36
- logger?: Logger
37
- /**
38
- * time a task is allowed to run before terminated
39
- *
40
- * @default 5000ms
41
- */
42
- timeout?: number
43
- workerPoolOptions?: WorkerPoolOptions
44
- }
45
-
46
- export interface FqnExtractorOutput {
47
- fullyQualified: {
48
- declaredSymbols: FullyQualifiedName[]
49
- usedSymbols: FullyQualifiedName[]
50
- }
51
- simple: {
52
- declaredSymbols: FullyQualifiedName[]
53
- usedSymbols: FullyQualifiedName[]
54
- }
55
- externalSimple: {
56
- declaredSymbols: FullyQualifiedName[]
57
- usedSymbols: FullyQualifiedName[]
58
- }
59
- }
60
-
61
- export type Position = Pick<Location, 'character' | 'line'>
62
-
63
- export type Range = {
64
- start: Position
65
- end: Position
66
- }
67
-
68
- export interface FqnExtractorInput {
69
- languageId: FqnSupportedLanguages
70
- fileText: string
71
- selection: Range
72
- }
73
-
74
- export interface IFqnWorkerPool {
75
- exec(input: FqnExtractorInput): Promise<ExtractorResult>
76
- dispose(): void
77
- }
@@ -1,8 +0,0 @@
1
- import { ExtractorResult, FqnExtractorInput, IFqnWorkerPool, WorkerPoolConfig } from './common/types'
2
-
3
- export * from './common/types'
4
- export declare class FqnWorkerPool implements IFqnWorkerPool {
5
- constructor(workerPoolConfig?: WorkerPoolConfig)
6
- exec(input: FqnExtractorInput): Promise<ExtractorResult>
7
- dispose(): void
8
- }
@@ -1,19 +0,0 @@
1
- import * as fqn from '@aws/fully-qualified-names'
2
- import { worker } from 'workerpool'
3
- import { FQN_WORKER_ID } from '../common/defaults'
4
- import { extract } from '../common/fqnExtractor'
5
- import { FqnExtractorInput } from '../common/types'
6
-
7
- async function fqnWorker(input: FqnExtractorInput) {
8
- try {
9
- const data = await extract(fqn, input)
10
-
11
- return { data, success: true }
12
- } catch (e) {
13
- return { success: false, error: e instanceof Error ? e.message : 'unknown' }
14
- }
15
- }
16
-
17
- worker({
18
- [FQN_WORKER_ID]: fqnWorker,
19
- })
@@ -1,9 +0,0 @@
1
- import path = require('path')
2
- import { CommonFqnWorkerPool } from '../common/commonFqnWorkerPool'
3
- import { WorkerPoolConfig } from '../common/types'
4
-
5
- export class FqnWorkerPool extends CommonFqnWorkerPool {
6
- constructor(options?: WorkerPoolConfig) {
7
- super(path.resolve(__dirname, './aws-lsp-fqn-worker.js'), options)
8
- }
9
- }
@@ -1,2 +0,0 @@
1
- export * from '../common/types'
2
- export * from './fqnWorkerPool'
@@ -1,8 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.packages.json",
3
- "compilerOptions": {
4
- "rootDir": "./src",
5
- "outDir": "./out"
6
- },
7
- "include": ["src"]
8
- }
@@ -1 +0,0 @@
1
- {"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@aws/fully-qualified-names/node/aws_fully_qualified_names.d.ts","../../node_modules/workerpool/types/Promise.d.ts","../../node_modules/workerpool/types/environment.d.ts","../../node_modules/workerpool/types/transfer.d.ts","../../node_modules/workerpool/types/types.d.ts","../../node_modules/workerpool/types/Pool.d.ts","../../node_modules/workerpool/types/index.d.ts","./src/common/types.ts","./src/index.ts","./src/browser/fqnWorkerPool.ts","./src/browser/index.ts","./src/common/defaults.ts","./src/common/commonFqnWorkerPool.ts","../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../node_modules/@types/sinon/index.d.ts","../../node_modules/ts-sinon/dist/index.d.ts","./src/common/fqnExtractor.ts","./src/common/fqnExtractor.test.ts","./src/node/aws-lsp-fqn-worker.ts","./src/node/fqnWorkerPool.ts","./src/node/index.ts","../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/ts5.6/index.d.ts","../../node_modules/@types/adm-zip/util.d.ts","../../node_modules/@types/adm-zip/index.d.ts","../../node_modules/@types/readdir-glob/index.d.ts","../../node_modules/@types/archiver/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/bonjour/index.d.ts","../../node_modules/keyv/src/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/jsonfile/index.d.ts","../../node_modules/@types/jsonfile/utils.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/http-proxy/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/parse5/dist/common/html.d.ts","../../node_modules/parse5/dist/common/token.d.ts","../../node_modules/parse5/dist/common/error-codes.d.ts","../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../node_modules/parse5/dist/tokenizer/index.d.ts","../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../node_modules/parse5/dist/parser/index.d.ts","../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../node_modules/parse5/dist/serializer/index.d.ts","../../node_modules/parse5/dist/common/foreign-content.d.ts","../../node_modules/parse5/dist/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/mock-fs/lib/item.d.ts","../../node_modules/@types/mock-fs/lib/file.d.ts","../../node_modules/@types/mock-fs/lib/directory.d.ts","../../node_modules/@types/mock-fs/lib/symlink.d.ts","../../node_modules/@types/mock-fs/lib/filesystem.d.ts","../../node_modules/@types/mock-fs/index.d.ts","../../node_modules/@types/node-forge/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/serve-index/index.d.ts","../../node_modules/@types/sinon-chai/index.d.ts","../../node_modules/@types/sockjs/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/tunnel/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/vscode/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[68,83,125],[68,70,83,125],[67,68,72,83,125],[83,125],[61,76,77,83,84,125],[61,68,83,125],[61,67,83,125],[61,67,68,72,77,83,125],[68,73,83,125,147],[68,80,83,125],[83,125,180],[83,125,216],[83,125,138,175,176],[83,125,138,156,173,178],[83,125,180,181,182,183,184],[83,125,180,182],[83,125,140,175,186],[83,125,131,175],[83,125,137,140,167,175,189,190,191],[83,125,193],[83,125,167,175,199],[83,125,140,175],[83,125,137,140,175,196,197,198],[83,125,187,197,199,203,204],[83,125,138,175,206,207],[83,125,138,175],[83,125,137,140,142,145,156,167,175],[83,125,211],[83,125,212],[83,125,218,221],[83,125,137,170,175,235,236,238],[83,125,237],[83,125,138,167,175],[83,125,137,175],[83,125,244,245,246,247],[83,125,243],[83,125,175,243],[83,125,243,244,245,246],[83,125,175],[83,84,125],[83,124,125],[83,125,130,159],[83,125,126,131,137,138,145,156,167],[83,125,126,127,137,145],[83,125,128,168],[83,125,129,130,138,146],[83,125,130,156,164],[83,125,131,133,137,145],[83,124,125,132],[83,125,133,134],[83,125,137],[83,125,135,137],[83,124,125,137],[83,125,137,138,139,156,167],[83,125,137,138,139,152,156,159],[83,122,125,172],[83,125,133,137,140,145,156,167],[83,125,137,138,140,141,145,156,164,167],[83,125,140,142,156,164,167],[83,125,137,143],[83,125,144,167,172],[83,125,133,137,145,156],[83,125,146],[83,125,147],[83,124,125,148],[83,84,85,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[83,125,150],[83,125,151],[83,125,137,152,153],[83,125,152,154,168,170],[83,125,137,156,157,158,159],[83,125,156,158],[83,125,156,157],[83,125,159],[83,125,160],[83,84,125,156],[83,125,137,162,163],[83,125,162,163],[83,125,130,145,156,164],[83,125,165],[125],[82,83,84,85,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174],[83,125,145,166],[83,125,140,151,167],[83,125,130,168],[83,125,156,169],[83,125,144,170],[83,125,171],[83,125,130,137,139,148,156,167,170,172],[83,125,156,173],[83,125,137,138,175],[83,125,140,156,175],[83,125,138,156,175,195],[83,125,138,205],[83,125,140,175,196,202],[75,83,125,193],[74,83,125],[83,125,137,140,142,156,164,167,173,175],[83,125,259],[83,125,214,220],[83,125,218],[83,125,215,219],[83,125,224],[83,125,223,224],[83,125,223],[83,125,223,224,225,227,228,231,232,233,234],[83,125,224,228],[83,125,223,224,225,227,228,229,230],[83,125,223,228],[83,125,228,232],[83,125,224,225,226],[83,125,225],[83,125,223,224,228],[83,125,217],[75,83,125],[83,94,98,125,167],[83,94,125,156,167],[83,89,125],[83,91,94,125,164,167],[83,125,145,164],[83,89,125,175],[83,91,94,125,145,167],[83,86,87,90,93,125,137,156,167],[83,94,101,125],[83,86,92,125],[83,94,115,116,125],[83,90,94,125,159,167,175],[83,115,125,175],[83,88,89,125,175],[83,94,125],[83,88,89,90,91,92,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,125],[83,94,109,125],[83,94,101,102,125],[83,92,94,102,103,125],[83,93,125],[83,86,89,94,125],[83,94,98,102,103,125],[83,98,125],[83,92,94,97,125,167],[83,86,91,94,101,125],[83,125,156],[83,89,94,115,125,172,175],[62,65,83,125,126,172],[62,63,64,65,66,83,125],[62,83,125,126,172]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"830b0f8b3669c6bd5d031ff597ee294a3b1ebe92be863531fd8988223a78505c","impliedFormat":1},{"version":"1194124caff4feccedc66460cd4165550d8614fb270063f5261843f252d8e8e7","impliedFormat":1},{"version":"8472aeefc1d5f4da0f933b5821e084e48c6adbc232c8f02ade672c7d6591de06","impliedFormat":1},{"version":"f88bd1eddc83a4f6439102066bff87ca5045b24f8c9a13753f369e9c2dfc637c","impliedFormat":1},{"version":"1c77c700925b1dca9e8bf103b0266de3c0ea7619f89c391fd588f38001868230","impliedFormat":1},{"version":"02136ad9d79a433152706e126914c119356bdb679c2e1c475d62397aa60a13af","impliedFormat":1},{"version":"8f6f749ae25eb7938a9c43afd447e911b92aaf4a7e519b05353c517f361d59cd","impliedFormat":1},{"version":"2fc73e4783a706a7878298a3fdbd8bc22cf92a56027cf0da9f68c1448e43ccc6","signature":"9f3dc0038f24671b013f6ffb85ff49b950127a612124083134a936fab0c36dae"},{"version":"a10ee3325d4144210b9f92271bcfcc9a8968fe7922aaebfc904007e2bd000e54","signature":"b894d93ffad370753a0b143c7a6cbc3890bec8a4919f5cadfcaf78d3fdb5e05e"},{"version":"319d599fc1e71259278285e1104703529a631bdd284e0d25544e782eca48a183","signature":"64482bda35e063a5ca50726d5114b196c3cbf42197b8e026654df68cb630d4d0"},{"version":"b7948acdc920f3bf12159b11f4cf4a1f521b4ce60be307b8ca28ffb4978dd86a","signature":"e0618897c88f6789e2c75d574feab9af365ab01aad6c55da195f69d4b4db307e"},{"version":"4eaf063f3efb4a7510b231ba83d355443777b14229e33e6ea16e35c7058e6518","signature":"5bd62bf44b9fd1b5d34937ead00a167cc8ba4a51802e7f2cac263b5e862f733d"},{"version":"295628f96719e48ac1cfb1adbaf2405ad457d507a64b72cdaa6a89928d962f5d","signature":"92ee1babdff061dd825eb77b6ee5f4f840f9f6aa0550814c42b8ba059ae9ae17"},{"version":"7d2a0ba1297be385a89b5515b88cd31b4a1eeef5236f710166dc1b36b1741e1b","impliedFormat":1},{"version":"9d92b037978bb9525bc4b673ebddd443277542e010c0aef019c03a170ccdaa73","impliedFormat":1},{"version":"54384a11c0f6ca8d5d8bab90d4bdab2c722aa8676a716340eb08082a02ca9ad6","impliedFormat":1},{"version":"5d5567f24e0011c2efc869f0537c0ff99438d4d0cc9e50a991c30434877c8b69","signature":"ac1e0be3244fa9b6e3da921d9033f1b7b2d4c6f61f8c372ea44a0cbc574a112c"},{"version":"c14ca01d1f82ec22423354cadd8458eff2c6b05b14ec7174f3d8c741ace4ab3e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"638b9cb06ffe026a66ddd72a3fb66bddd268f0e369254028a8892778833ec9c8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"58294957ce6858967096fea38ae8bd53808c787ecc2a211d0f70611661aa285c","signature":"f0b439b2426c0e3e59067def206a3c6293848ea219a9fdc40a7ca71686a9bbb1"},{"version":"b7948acdc920f3bf12159b11f4cf4a1f521b4ce60be307b8ca28ffb4978dd86a","signature":"e0618897c88f6789e2c75d574feab9af365ab01aad6c55da195f69d4b4db307e"},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"4eedea23b8a843ec0fd51a384fb6b9fe1bc89198f713d0465c2c8392a9d51271","affectsGlobalScope":true,"impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"d674383111e06b6741c4ad2db962131b5b0fa4d0294b998566c635e86195a453","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"a3e8bafb2af8e850c644f4be7f5156cf7d23b7bfdc3b786bd4d10ed40329649c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"c521f961c1606c94dc831992e659f426b6def6e2e6e327ee25d3c642eb393f95","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","impliedFormat":1},{"version":"e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true,"impliedFormat":1},{"version":"596572d40c1f13d8b57920d6d1a77c5ec6fe4952dc157f416f04a801cd3e2678","impliedFormat":1},{"version":"ad23fd126ff06e72728dd7bfc84326a8ca8cec2b9d2dac0193d42a777df0e7d8","impliedFormat":1},{"version":"a55fd4d49da86d2cc19de575beb1515184e55f5f3165e1482ff02fd99f900b5c","impliedFormat":1},{"version":"93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"7edec695cdb707c7146ac34c44ca364469c7ea504344b3206c686e79f61b61a2","affectsGlobalScope":true,"impliedFormat":1},{"version":"aba8aefa29914f531f49ba6b34212f7861022ad0b67a28c63a1d78264a8b1910","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"d1b1295af3667779be43eb6d4fbaa342e656aa2c4b77a4ad3cf42ec55baeea00","impliedFormat":1},{"version":"70731d10d5311bd4cf710ef7f6539b62660f4b0bfdbb3f9fbe1d25fe6366a7fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"a20f1e119615bf7632729fd89b6c0b5ffdc2df3b512d6304146294528e3ebe19","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"137c2894e8f3e9672d401cc0a305dc7b1db7c69511cf6d3970fb53302f9eae09","impliedFormat":1},{"version":"dd9492e12a57068f08d70cb5eb5ceb39fa5bcf23be01af574270aeee95b982af","impliedFormat":1},{"version":"e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"78955c9259da94920609be3e589fc9253268b3fffa822e1e31d28ee2ce0b8a74","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"73aa178e8fb1449ef3666093d8dca25f96302a80ee45f8ff027df8e4792bf9fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"fdedf82878e4c744bc2a1c1e802ae407d63474da51f14a54babe039018e53d8f","affectsGlobalScope":true,"impliedFormat":1},{"version":"08353b04a3501d84fc8d7b49de99f6c1cc26026e6d9d697a18315f3bfe92ed03","affectsGlobalScope":true,"impliedFormat":1},{"version":"578d8bb6dcb2a1c03c4c3f8eb71abc9677e1a5c788b7f24848e3138ce17f3400","impliedFormat":1},{"version":"4f029899f9bae07e225c43aef893590541b2b43267383bf5e32e3a884d219ed5","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"710ad93f8de29dc15e5892aa735e72348b62f40a6d1220f2849837d332f92885","affectsGlobalScope":true,"impliedFormat":1},{"version":"1f1da5d682cdb628890e4a8578fb9e8ab332e6a1a4b3a13fce08b7b4d45d192a","affectsGlobalScope":true,"impliedFormat":1},{"version":"efeedd8bbc5c0d53e760d8b120a010470722982e6ae14de8d1bcff66ebc2ae71","impliedFormat":1},{"version":"b718a94332858862943630649a310d6f8e9a09f86ae7215d8554e75bbbfd7817","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"616075a6ac578cf5a013ee12964188b4412823796ce0b202c6f1d2e4ca8480d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"483bb10b755f3572526fd76d9481221e8dc30568edcc1a9cc73479d8874bd16d","impliedFormat":1},{"version":"9063bd95bf4fe06fe71b4f1abd4dce7d41b684d9036ff4afae6e079eb252b19e","impliedFormat":1},{"version":"27b903e14e6ff25eb33591314e5da1951a66c21fd16e03ea00ed711542c24d73","impliedFormat":1},{"version":"7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","impliedFormat":1},{"version":"7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","impliedFormat":1},{"version":"e74998d5cefc2f29d583c10b99c1478fb810f1e46fbb06535bfb0bbba3c84aa5","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"43d058146b002d075f5d0033a6870321048297f1658eb0db559ba028383803a6","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"f9e22729fa06ed20f8b1fe60670b7c74933fdfd44d869ddfb1919c15a5cf12fb","impliedFormat":1},{"version":"42baf4ca38c38deaf411ea73f37bc39ff56c6e5c761a968b64ac1b25c92b5cd8","impliedFormat":1},{"version":"d7dbe0ad36bdca8a6ecf143422a48e72cc8927bab7b23a1a2485c2f78a7022c6","impliedFormat":1},{"version":"8718fa41d7cf4aa91de4e8f164c90f88e0bf343aa92a1b9b725a9c675c64e16b","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"eef204f061321360559bd19235ea32a9d55b3ec22a362cc78d14ef50d4db4490","affectsGlobalScope":true,"impliedFormat":1},{"version":"86e56d97b13ef0a58bc9c59aee782ae7d47d63802b5b32129ec5e5d62c20dbfa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"630ff11de47d75175f2d1d43cc447068818cb9377324752e01fe0e5fc3f77757","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"7d52b8f399f646725a8dd363f17c8db6ef987efe7c5a4af1e26146ca07973d6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"689be50b735f145624c6f391042155ae2ff6b90a93bac11ca5712bc866f6010c","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"a45c25e77c911c1f2a04cade78f6f42b4d7d896a3882d4e226efd3a3fcd5f2c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","impliedFormat":1},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","impliedFormat":1},{"version":"f9649058dc6542f821894390c2358cd71c9350bae97478eff06d9a39c8b082a4","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true,"impliedFormat":1},{"version":"3411c785dbe8fd42f7d644d1e05a7e72b624774a08a9356479754999419c3c5a","impliedFormat":99},{"version":"8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","impliedFormat":99},{"version":"66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","impliedFormat":99},{"version":"33f3795a4617f98b1bb8dac36312119d02f31897ae75436a1e109ce042b48ee8","impliedFormat":99},{"version":"2850c9c5dc28d34ad5f354117d0419f325fc8932d2a62eadc4dc52c018cd569b","impliedFormat":99},{"version":"c753948f7e0febe7aa1a5b71a714001a127a68861309b2c4127775aa9b6d4f24","impliedFormat":99},{"version":"3e7a40e023e1d4a9eef1a6f08a3ded8edacb67ae5fce072014205d730f717ba5","impliedFormat":99},{"version":"a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","impliedFormat":99},{"version":"382100b010774614310d994bbf16cc9cd291c14f0d417126c7a7cfad1dc1d3f8","impliedFormat":99},{"version":"91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","impliedFormat":99},{"version":"4fdf56315340bd1770eb52e1601c3a98e45b1d207202831357e99ce29c35b55c","impliedFormat":99},{"version":"927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","impliedFormat":99},{"version":"be6fd74528b32986fbf0cd2cfa9192a5ed7f369060b32a7adcb0c8d055708e61","impliedFormat":99},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"6f5a9b68ce8608014210f5a777f8dd82e6382285f6278c811b7b0214bbcac5bd","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","impliedFormat":1},{"version":"c67a7b7eec0175ea53343429d32897fcad406c663ba4b775eab8be8164bff91c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b95f2a78de34a873c6dd76dc538b7a5fec77da6a0e0e7efc7aa58f58ddfce270","impliedFormat":1},{"version":"4b50f58fcf29daaeab0c583da58ee9731a4d5c003f99fd833d91ad99f19a82c3","impliedFormat":1},{"version":"6692416887d66b903aea54b32163d34318300772cd2b8c7c36f972937a62de74","impliedFormat":1},{"version":"3e640a0056177a4ccfb819d81b21c9ed0ac0e77d8b7bf580894a3392298a890b","impliedFormat":1},{"version":"b75cb207f8dfade4120ba3554c5781005c9de85723c76588befd47693342ca50","impliedFormat":1},{"version":"693c4c9acf5e1c56e30130a90e07bd05122e6194d69018b0b20c6581c1324e0a","impliedFormat":1},{"version":"8b5402ae709d042c3530ed3506c135a967159f42aed3221267e70c5b7240b577","impliedFormat":1},{"version":"510616459e6edd01acbce333fb256e06bdffdad43ca233a9090164bf8bb83912","impliedFormat":1},{"version":"ddef25f825320de051dcb0e62ffce621b41c67712b5b4105740c32fd83f4c449","impliedFormat":1},{"version":"525b52b38b44420fb1758c0917e7b67cf379f7f9477d2ba7343f3d5f50a44258","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b3dffaa4ca8e38ac434856843505af767a614d187fb3a5ef4fcebb023c355aa","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"166bfd32f444e0505b9dfcccce99a2c99f04fba1f1e232e93a8ff72660973a87","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"83263f5a7144a771d68446703e2fcf82073d6980c466dbd8aacc8e8aa4499603","affectsGlobalScope":true,"impliedFormat":1},{"version":"9a2eaab4e54953c6b2ba21f7ac4c2593859da03917011c10a2acd8864e38e7b2","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[[68,73],[77,81]],"options":{"composite":true,"declaration":true,"module":1,"outDir":"./out","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[70,1],[71,2],[73,3],[72,4],[78,5],[77,6],[68,7],[69,1],[79,8],[80,9],[81,10],[61,4],[182,11],[180,4],[214,4],[217,12],[216,4],[177,13],[176,4],[179,14],[185,15],[181,11],[183,16],[184,11],[187,17],[188,18],[192,19],[194,20],[193,4],[200,21],[186,22],[201,4],[199,23],[205,24],[204,23],[208,25],[209,26],[190,4],[202,4],[210,27],[211,4],[212,28],[213,29],[222,30],[237,31],[238,32],[239,4],[240,4],[206,33],[207,4],[241,34],[195,4],[242,4],[248,35],[245,36],[244,37],[247,38],[243,4],[246,36],[249,39],[84,40],[85,40],[124,41],[125,42],[126,43],[127,44],[128,45],[129,46],[130,47],[131,48],[132,49],[133,50],[134,50],[136,51],[135,52],[137,53],[138,54],[139,55],[123,56],[174,4],[140,57],[141,58],[142,59],[143,60],[144,61],[145,62],[146,63],[147,64],[148,65],[149,66],[150,67],[151,68],[152,69],[153,69],[154,70],[155,4],[156,71],[158,72],[157,73],[159,74],[160,75],[161,76],[162,77],[163,78],[164,79],[165,80],[83,81],[82,4],[175,82],[166,83],[167,84],[168,85],[169,86],[170,87],[171,88],[172,89],[173,90],[197,4],[198,4],[178,91],[191,92],[250,4],[196,93],[251,94],[203,95],[252,96],[75,97],[74,4],[253,22],[254,4],[236,4],[255,22],[256,4],[257,4],[258,98],[259,4],[260,99],[221,100],[219,101],[220,102],[215,4],[189,51],[225,103],[234,104],[223,4],[224,105],[235,106],[230,107],[231,108],[229,109],[233,110],[227,111],[226,112],[232,113],[228,104],[218,114],[76,115],[59,4],[60,4],[10,4],[11,4],[13,4],[12,4],[2,4],[14,4],[15,4],[16,4],[17,4],[18,4],[19,4],[20,4],[21,4],[3,4],[22,4],[4,4],[23,4],[27,4],[24,4],[25,4],[26,4],[28,4],[29,4],[30,4],[5,4],[31,4],[32,4],[33,4],[34,4],[6,4],[38,4],[35,4],[36,4],[37,4],[39,4],[7,4],[40,4],[45,4],[46,4],[41,4],[42,4],[43,4],[44,4],[8,4],[50,4],[47,4],[48,4],[49,4],[51,4],[9,4],[52,4],[53,4],[54,4],[57,4],[55,4],[56,4],[1,4],[58,4],[101,116],[111,117],[100,116],[121,118],[92,119],[91,120],[120,39],[114,121],[119,122],[94,123],[108,124],[93,125],[117,126],[89,127],[88,39],[118,128],[90,129],[95,130],[96,4],[99,130],[86,4],[122,131],[112,132],[103,133],[104,134],[106,135],[102,136],[105,137],[115,39],[97,138],[98,139],[107,140],[87,141],[110,132],[109,130],[113,4],[116,142],[66,143],[62,4],[63,4],[67,144],[64,4],[65,145]],"latestChangedDtsFile":"./out/node/index.d.ts","version":"5.6.2"}
@@ -1,4 +0,0 @@
1
- # @aws-sdk/types
2
-
3
- [![NPM version](https://img.shields.io/npm/v/@aws-sdk/types/latest.svg)](https://www.npmjs.com/package/@aws-sdk/types)
4
- [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/types.svg)](https://www.npmjs.com/package/@aws-sdk/types)
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.HttpAuthLocation = void 0;
4
- var types_1 = require("@smithy/types");
5
- Object.defineProperty(exports, "HttpAuthLocation", { enumerable: true, get: function () { return types_1.HttpAuthLocation; } });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });