@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
@@ -8,6 +8,7 @@ const languageDetection_1 = require("./languageDetection");
8
8
  const securityScanDiagnosticsProvider_1 = require("./securityScan/securityScanDiagnosticsProvider");
9
9
  const securityScanHandler_1 = require("./securityScan/securityScanHandler");
10
10
  const utils_1 = require("./utils");
11
+ const telemetryUtils_1 = require("./utilities/telemetryUtils");
11
12
  const RunSecurityScanCommand = 'aws/codewhisperer/runSecurityScan';
12
13
  const CancelSecurityScanCommand = 'aws/codewhisperer/cancelSecurityScan';
13
14
  const SecurityScanServerToken = (service) => ({ credentialsProvider, workspace, logging, lsp, telemetry, runtime }) => {
@@ -175,7 +176,7 @@ const SecurityScanServerToken = (service) => ({ credentialsProvider, workspace,
175
176
  };
176
177
  const onInitializeHandler = (params) => {
177
178
  codewhispererclient.updateClientConfig({
178
- customUserAgent: (0, utils_1.getUserAgent)(params, runtime.serverInfo),
179
+ customUserAgent: (0, telemetryUtils_1.getUserAgent)(params, runtime.serverInfo),
179
180
  });
180
181
  return {
181
182
  capabilities: {
@@ -1 +1 @@
1
- {"version":3,"file":"codeWhispererSecurityScanServer.js","sourceRoot":"","sources":["../../src/language-server/codeWhispererSecurityScanServer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"codeWhispererSecurityScanServer.js","sourceRoot":"","sources":["../../src/language-server/codeWhispererSecurityScanServer.ts"],"names":[],"mappings":"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"}
@@ -9,9 +9,12 @@ const mergeRightUtils_1 = require("./mergeRightUtils");
9
9
  const sessionManager_1 = require("./session/sessionManager");
10
10
  const codePercentage_1 = require("./telemetry/codePercentage");
11
11
  const utils_1 = require("./utils");
12
+ const telemetryUtils_1 = require("./utilities/telemetryUtils");
12
13
  const qConfigurationServer_1 = require("./configuration/qConfigurationServer");
13
14
  const supplementalContextUtil_1 = require("./utilities/supplementalContextUtil/supplementalContextUtil");
14
15
  const textUtils_1 = require("./utilities/textUtils");
16
+ const telemetryService_1 = require("./telemetryService");
17
+ const codeDiffTracker_1 = require("./telemetry/codeDiffTracker");
15
18
  const EMPTY_RESULT = { sessionId: '', items: [] };
16
19
  exports.CONTEXT_CHARACTERS_LIMIT = 10240;
17
20
  // Both clients (token, sigv4) define their own types, this return value needs to match both of them.
@@ -51,6 +54,7 @@ const emitServiceInvocationTelemetry = (telemetry, session) => {
51
54
  codewhispererSupplementalContextIsUtg: session.supplementalMetadata?.isUtg,
52
55
  codewhispererSupplementalContextLatency: session.supplementalMetadata?.latency,
53
56
  codewhispererSupplementalContextLength: session.supplementalMetadata?.contentsLength,
57
+ codewhispererCustomizationArn: session.customizationArn,
54
58
  };
55
59
  telemetry.emitMetric({
56
60
  name: 'codewhisperer_serviceInvocation',
@@ -77,6 +81,7 @@ const emitServiceInvocationFailure = (telemetry, session, error) => {
77
81
  codewhispererSupplementalContextIsUtg: session.supplementalMetadata?.isUtg,
78
82
  codewhispererSupplementalContextLatency: session.supplementalMetadata?.latency,
79
83
  codewhispererSupplementalContextLength: session.supplementalMetadata?.contentsLength,
84
+ codewhispererCustomizationArn: session.customizationArn,
80
85
  };
81
86
  telemetry.emitMetric({
82
87
  name: 'codewhisperer_serviceInvocation',
@@ -104,7 +109,7 @@ const emitPerceivedLatencyTelemetry = (telemetry, session) => {
104
109
  data,
105
110
  });
106
111
  };
107
- const emitUserTriggerDecisionTelemetry = (telemetry, session, timeSinceLastUserModification) => {
112
+ const emitUserTriggerDecisionTelemetry = (telemetry, telemetryService, session, timeSinceLastUserModification) => {
108
113
  // Prevent reporting user decision if it was already sent
109
114
  if (session.reportedUserDecision) {
110
115
  return;
@@ -113,43 +118,12 @@ const emitUserTriggerDecisionTelemetry = (telemetry, session, timeSinceLastUserM
113
118
  if (!session.getAggregatedUserTriggerDecision()) {
114
119
  return;
115
120
  }
116
- emitAggregatedUserTriggerDecisionTelemetry(telemetry, session, timeSinceLastUserModification);
121
+ emitAggregatedUserTriggerDecisionTelemetry(telemetryService, session, timeSinceLastUserModification);
117
122
  emitUserDecisionTelemetry(telemetry, session);
118
123
  session.reportedUserDecision = true;
119
124
  };
120
- const emitAggregatedUserTriggerDecisionTelemetry = (telemetry, session, timeSinceLastUserModification) => {
121
- const data = {
122
- codewhispererSessionId: session.codewhispererSessionId || '',
123
- codewhispererFirstRequestId: session.responseContext?.requestId || '',
124
- credentialStartUrl: session.credentialStartUrl,
125
- codewhispererSuggestionState: session.getAggregatedUserTriggerDecision(),
126
- codewhispererCompletionType: session.suggestions.length > 0 ? (0, utils_1.getCompletionType)(session.suggestions[0]) : undefined,
127
- codewhispererLanguage: session.language,
128
- codewhispererTriggerType: session.triggerType,
129
- codewhispererAutomatedTriggerType: session.autoTriggerType,
130
- codewhispererTriggerCharacter: session.autoTriggerType === 'SpecialCharacters' ? session.triggerCharacter : undefined,
131
- codewhispererLineNumber: session.startPosition.line,
132
- codewhispererCursorOffset: session.startPosition.character,
133
- codewhispererSuggestionCount: session.suggestions.length,
134
- codewhispererClassifierResult: session.classifierResult,
135
- codewhispererClassifierThreshold: session.classifierThreshold,
136
- codewhispererTotalShownTime: session.totalSessionDisplayTime || 0,
137
- codewhispererTypeaheadLength: session.typeaheadLength || 0,
138
- // Global time between any 2 document changes
139
- codewhispererTimeSinceLastDocumentChange: timeSinceLastUserModification,
140
- codewhispererTimeSinceLastUserDecision: session.previousTriggerDecisionTime
141
- ? session.startTime - session.previousTriggerDecisionTime
142
- : undefined,
143
- codewhispererTimeToFirstRecommendation: session.timeToFirstRecommendation,
144
- codewhispererPreviousSuggestionState: session.previousTriggerDecision,
145
- codewhispererSupplementalContextTimeout: session.supplementalMetadata?.isProcessTimeout,
146
- codewhispererSupplementalContextIsUtg: session.supplementalMetadata?.isUtg,
147
- codewhispererSupplementalContextLength: session.supplementalMetadata?.contentsLength,
148
- };
149
- telemetry.emitMetric({
150
- name: 'codewhisperer_userTriggerDecision',
151
- data,
152
- });
125
+ const emitAggregatedUserTriggerDecisionTelemetry = (telemetryService, session, timeSinceLastUserModification) => {
126
+ telemetryService.emitUserTriggerDecision(session, timeSinceLastUserModification);
153
127
  };
154
128
  const emitUserDecisionTelemetry = (telemetry, session) => {
155
129
  session.suggestions.forEach((suggestion, i) => {
@@ -206,10 +180,15 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
206
180
  let timeSinceLastUserModification = 0;
207
181
  const sessionManager = sessionManager_1.SessionManager.getInstance();
208
182
  const codeWhispererService = service(credentialsProvider);
183
+ const telemetryService = new telemetryService_1.TelemetryService(credentialsProvider, codeWhispererService.getCredentialsType(), telemetry, logging);
209
184
  lsp.addInitializer((params) => {
210
185
  codeWhispererService.updateClientConfig({
211
- customUserAgent: (0, utils_1.getUserAgent)(params, runtime.serverInfo),
186
+ customUserAgent: (0, telemetryUtils_1.getUserAgent)(params, runtime.serverInfo),
187
+ });
188
+ telemetryService.updateClientConfig({
189
+ customUserAgent: (0, telemetryUtils_1.getUserAgent)(params, runtime.serverInfo),
212
190
  });
191
+ telemetryService.updateUserContext((0, telemetryUtils_1.makeUserContextObject)(params, runtime.platform, 'INLINE'));
213
192
  return {
214
193
  capabilities: {},
215
194
  };
@@ -219,7 +198,19 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
219
198
  // right before returning and is only guaranteed to be consistent within
220
199
  // the context of a single response.
221
200
  let includeSuggestionsWithCodeReferences = false;
222
- const codePercentageTracker = new codePercentage_1.CodePercentageTracker(telemetry);
201
+ const codePercentageTracker = new codePercentage_1.CodePercentageTracker(telemetryService);
202
+ const codeDiffTracker = new codeDiffTracker_1.CodeDiffTracker(workspace, logging, (entry, percentage, unmodifiedAcceptedCharacterCount) => {
203
+ telemetryService.emitUserModificationEvent({
204
+ sessionId: entry.sessionId,
205
+ requestId: entry.requestId,
206
+ languageId: entry.languageId,
207
+ customizationArn: entry.customizationArn,
208
+ timestamp: new Date(),
209
+ acceptedCharacterCount: entry.originalString.length,
210
+ modificationPercentage: percentage,
211
+ unmodifiedAcceptedCharacterCount: unmodifiedAcceptedCharacterCount,
212
+ });
213
+ });
223
214
  const onInlineCompletionHandler = async (params, token) => {
224
215
  // On every new completion request close current inflight session.
225
216
  const currentSession = sessionManager.getCurrentSession();
@@ -277,9 +268,10 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
277
268
  if (currentSession && currentSession.state === 'ACTIVE') {
278
269
  // Emit user trigger decision at session close time for active session
279
270
  sessionManager.discardSession(currentSession);
280
- emitUserTriggerDecisionTelemetry(telemetry, currentSession, timeSinceLastUserModification);
271
+ emitUserTriggerDecisionTelemetry(telemetry, telemetryService, currentSession, timeSinceLastUserModification);
281
272
  }
282
273
  const newSession = sessionManager.createSession({
274
+ document: textDocument,
283
275
  startPosition: params.position,
284
276
  triggerType: isAutomaticLspTriggerKind ? 'AutoTrigger' : 'OnDemand',
285
277
  language: fileContext.programmingLanguage.languageName,
@@ -290,8 +282,8 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
290
282
  classifierThreshold: autoTriggerResult?.classifierThreshold,
291
283
  credentialStartUrl: credentialsProvider.getConnectionMetadata?.()?.sso?.startUrl ?? undefined,
292
284
  supplementalMetadata: supplementalContext,
285
+ customizationArn: (0, textUtils_1.undefinedIfEmpty)(codeWhispererService.customizationArn),
293
286
  });
294
- codePercentageTracker.countInvocation(inferredLanguageId);
295
287
  return codeWhispererService
296
288
  .generateSuggestions({
297
289
  ...requestContext,
@@ -306,6 +298,7 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
306
298
  },
307
299
  })
308
300
  .then(suggestionResponse => {
301
+ codePercentageTracker.countInvocation(inferredLanguageId);
309
302
  // Populate the session with information from codewhisperer response
310
303
  newSession.suggestions = suggestionResponse.suggestions;
311
304
  newSession.responseContext = suggestionResponse.responseContext;
@@ -320,7 +313,7 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
320
313
  if (newSession.state === 'CLOSED' || newSession.state === 'DISCARD') {
321
314
  // Force Discard user decision on every received suggestion
322
315
  newSession.suggestions.forEach(s => newSession.setSuggestionState(s.itemId, 'Discard'));
323
- emitUserTriggerDecisionTelemetry(telemetry, newSession, timeSinceLastUserModification);
316
+ emitUserTriggerDecisionTelemetry(telemetry, telemetryService, newSession, timeSinceLastUserModification);
324
317
  return EMPTY_RESULT;
325
318
  }
326
319
  // API response was recieved, we can activate session now
@@ -355,10 +348,15 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
355
348
  }
356
349
  return true;
357
350
  });
351
+ suggestionsWithRightContext.forEach(suggestion => {
352
+ const cachedSuggestion = newSession.suggestions.find(s => s.itemId === suggestion.itemId);
353
+ if (cachedSuggestion)
354
+ cachedSuggestion.insertText = suggestion.insertText.toString();
355
+ });
358
356
  // If after all server-side filtering no suggestions can be displayed, close session and return empty results
359
357
  if (suggestionsWithRightContext.length === 0) {
360
358
  sessionManager.closeSession(newSession);
361
- emitUserTriggerDecisionTelemetry(telemetry, newSession, timeSinceLastUserModification);
359
+ emitUserTriggerDecisionTelemetry(telemetry, telemetryService, newSession, timeSinceLastUserModification);
362
360
  return EMPTY_RESULT;
363
361
  }
364
362
  return { items: suggestionsWithRightContext, sessionId: newSession.id };
@@ -373,6 +371,21 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
373
371
  });
374
372
  });
375
373
  };
374
+ // Schedule tracker for UserModification Telemetry event
375
+ const enqueueCodeDiffEntry = (session, acceptedSuggestion) => {
376
+ const endPosition = (0, utils_1.getEndPositionForAcceptedSuggestion)(acceptedSuggestion.content, session.startPosition);
377
+ codeDiffTracker.enqueue({
378
+ sessionId: session.codewhispererSessionId || '',
379
+ requestId: session.responseContext?.requestId || '',
380
+ fileUrl: session.document.uri,
381
+ languageId: session.language,
382
+ time: Date.now(),
383
+ originalString: acceptedSuggestion.content,
384
+ startPosition: session.startPosition,
385
+ endPosition: endPosition,
386
+ customizationArn: session.customizationArn,
387
+ });
388
+ };
376
389
  const onLogInlineCompletionSessionResultsHandler = async (params) => {
377
390
  const { sessionId, completionSessionResult, firstCompletionDisplayLatency, totalSessionDisplayTime, typeaheadLength, } = params;
378
391
  const session = sessionManager.getSessionById(sessionId);
@@ -386,10 +399,12 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
386
399
  }
387
400
  const acceptedItemId = Object.keys(params.completionSessionResult).find(k => params.completionSessionResult[k].accepted);
388
401
  const acceptedSuggestion = session.suggestions.find(s => s.itemId === acceptedItemId);
389
- if (acceptedSuggestion !== undefined) {
402
+ if (acceptedSuggestion !== undefined && acceptedSuggestion.insertText) {
390
403
  if (acceptedSuggestion) {
391
404
  codePercentageTracker.countSuccess(session.language);
392
- codePercentageTracker.countAcceptedTokens(session.language, acceptedSuggestion.content);
405
+ codePercentageTracker.countAcceptedTokens(session.language, acceptedSuggestion.insertText);
406
+ codePercentageTracker.countTotalTokens(session.language, acceptedSuggestion.insertText, true);
407
+ enqueueCodeDiffEntry(session, acceptedSuggestion);
393
408
  }
394
409
  }
395
410
  session.setClientResultData(completionSessionResult, firstCompletionDisplayLatency, totalSessionDisplayTime, typeaheadLength);
@@ -397,14 +412,23 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
397
412
  emitPerceivedLatencyTelemetry(telemetry, session);
398
413
  // Always emit user trigger decision at session close
399
414
  sessionManager.closeSession(session);
400
- emitUserTriggerDecisionTelemetry(telemetry, session, timeSinceLastUserModification);
415
+ emitUserTriggerDecisionTelemetry(telemetry, telemetryService, session, timeSinceLastUserModification);
401
416
  };
402
417
  const updateConfiguration = async () => {
403
418
  try {
404
419
  const qConfig = await lsp.workspace.getConfiguration(qConfigurationServer_1.Q_CONFIGURATION_SECTION);
405
420
  if (qConfig) {
406
421
  codeWhispererService.customizationArn = (0, textUtils_1.undefinedIfEmpty)(qConfig.customization);
422
+ codePercentageTracker.customizationArn = (0, textUtils_1.undefinedIfEmpty)(qConfig.customization);
407
423
  logging.log(`Inline completion configuration updated to use ${codeWhispererService.customizationArn}`);
424
+ /*
425
+ The flag enableTelemetryEventsToDestination is set to true temporarily. It's value will be determined through destination
426
+ configuration post all events migration to STE. It'll be replaced by qConfig['enableTelemetryEventsToDestination'] === true
427
+ */
428
+ // const enableTelemetryEventsToDestination = true
429
+ // telemetryService.updateEnableTelemetryEventsToDestination(enableTelemetryEventsToDestination)
430
+ const optOutTelemetryPreference = qConfig['optOutTelemetry'] === true ? 'OPTOUT' : 'OPTIN';
431
+ telemetryService.updateOptOutPreference(optOutTelemetryPreference);
408
432
  }
409
433
  const config = await lsp.workspace.getConfiguration('aws.codeWhisperer');
410
434
  if (!config)
@@ -430,7 +454,7 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
430
454
  return;
431
455
  }
432
456
  p.contentChanges.forEach(change => {
433
- codePercentageTracker.countTokens(languageId, change.text);
457
+ codePercentageTracker.countTotalTokens(languageId, change.text, false);
434
458
  });
435
459
  // Record last user modification time for any document
436
460
  if (lastUserModificationTime) {
@@ -441,6 +465,7 @@ const CodewhispererServerFactory = (service) => ({ credentialsProvider, lsp, wor
441
465
  logging.log('Amazon Q Inline Suggestion server has been initialised');
442
466
  return () => {
443
467
  codePercentageTracker.dispose();
468
+ codeDiffTracker.shutdown();
444
469
  };
445
470
  };
446
471
  exports.CodewhispererServerFactory = CodewhispererServerFactory;
@@ -1 +1 @@
1
- {"version":3,"file":"codeWhispererServer.js","sourceRoot":"","sources":["../../src/language-server/codeWhispererServer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"codeWhispererServer.js","sourceRoot":"","sources":["../../src/language-server/codeWhispererServer.ts"],"names":[],"mappings":";;;AAAA,qFAcuD;AAEvD,4DAAqE;AACrE,iEAM+B;AAC/B,2DAAmF;AACnF,uDAAmE;AACnE,6DAA+E;AAC/E,+DAAkE;AAMlE,mCAA4F;AAC5F,+DAAgF;AAChF,+EAA8E;AAC9E,yGAAsG;AACtG,qDAAwD;AACxD,yDAAqD;AACrD,iEAAsF;AAEtF,MAAM,YAAY,GAAG,EAAE,SAAS,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,CAAA;AACpC,QAAA,wBAAwB,GAAG,KAAK,CAAA;AAE7C,qGAAqG;AACrG,MAAM,cAAc,GAAG,CAAC,MAIvB,EAOC,EAAE;IACA,MAAM,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,OAAO,CAAC;QACrC,KAAK,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,SAAS,EAAE,CAAC,EAAE;QAChC,GAAG,EAAE,MAAM,CAAC,QAAQ;KACvB,CAAC,CAAA;IACF,MAAM,KAAK,GAAG,MAAM,CAAC,YAAY,CAAC,OAAO,CAAC;QACtC,KAAK,EAAE,MAAM,CAAC,QAAQ;QACtB,GAAG,EAAE,MAAM,CAAC,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC;KAC5E,CAAC,CAAA;IAEF,OAAO;QACH,QAAQ,EAAE,MAAM,CAAC,YAAY,CAAC,GAAG;QACjC,mBAAmB,EAAE;YACjB,YAAY,EAAE,MAAM,CAAC,kBAAkB;SAC1C;QACD,eAAe,EAAE,IAAI;QACrB,gBAAgB,EAAE,KAAK;KAC1B,CAAA;AACL,CAAC,CAAA;AAED,MAAM,8BAA8B,GAAG,CAAC,SAAoB,EAAE,OAA6B,EAAE,EAAE;IAC3F,MAAM,QAAQ,GAAG,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,GAAG,OAAO,CAAC,SAAS,CAAA;IACzD,MAAM,IAAI,GAAwC;QAC9C,sBAAsB,EAAE,OAAO,CAAC,eAAe,EAAE,SAAS;QAC1D,sBAAsB,EAAE,OAAO,CAAC,eAAe,EAAE,sBAAsB;QACvE,gCAAgC,EAAE,OAAO,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC;QAChE,2BAA2B,EACvB,OAAO,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,IAAA,yBAAiB,EAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS;QAC1F,wBAAwB,EAAE,OAAO,CAAC,WAAW;QAC7C,iCAAiC,EAAE,OAAO,CAAC,eAAe;QAC1D,QAAQ;QACR,uBAAuB,EAAE,OAAO,CAAC,aAAa,CAAC,IAAI;QACnD,yBAAyB,EAAE,OAAO,CAAC,aAAa,CAAC,SAAS;QAC1D,qBAAqB,EAAE,OAAO,CAAC,QAAQ;QACvC,kBAAkB,EAAE,OAAO,CAAC,kBAAkB;QAC9C,uCAAuC,EAAE,OAAO,CAAC,oBAAoB,EAAE,gBAAgB;QACvF,qCAAqC,EAAE,OAAO,CAAC,oBAAoB,EAAE,KAAK;QAC1E,uCAAuC,EAAE,OAAO,CAAC,oBAAoB,EAAE,OAAO;QAC9E,sCAAsC,EAAE,OAAO,CAAC,oBAAoB,EAAE,cAAc;QACpF,6BAA6B,EAAE,OAAO,CAAC,gBAAgB;KAC1D,CAAA;IACD,SAAS,CAAC,UAAU,CAAC;QACjB,IAAI,EAAE,iCAAiC;QACvC,MAAM,EAAE,WAAW;QACnB,IAAI;KACP,CAAC,CAAA;AACN,CAAC,CAAA;AAED,MAAM,4BAA4B,GAAG,CAAC,SAAoB,EAAE,OAA6B,EAAE,KAAuB,EAAE,EAAE;IAClH,MAAM,QAAQ,GAAG,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,GAAG,OAAO,CAAC,SAAS,CAAA;IACzD,MAAM,sBAAsB,GAAG,IAAA,kBAAU,EAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAA;IAE9E,MAAM,IAAI,GAAwC;QAC9C,sBAAsB,EAAE,sBAAsB;QAC9C,sBAAsB,EAAE,SAAS;QACjC,gCAAgC,EAAE,CAAC,CAAC;QACpC,wBAAwB,EAAE,OAAO,CAAC,WAAW;QAC7C,iCAAiC,EAAE,OAAO,CAAC,eAAe;QAC1D,MAAM,EAAE,uCAAuC,KAAK,CAAC,IAAI,IAAI,cAAc,EAAE;QAC7E,QAAQ;QACR,uBAAuB,EAAE,OAAO,CAAC,aAAa,CAAC,IAAI;QACnD,yBAAyB,EAAE,OAAO,CAAC,aAAa,CAAC,SAAS;QAC1D,qBAAqB,EAAE,OAAO,CAAC,QAAQ;QACvC,kBAAkB,EAAE,OAAO,CAAC,kBAAkB;QAC9C,uCAAuC,EAAE,OAAO,CAAC,oBAAoB,EAAE,gBAAgB;QACvF,qCAAqC,EAAE,OAAO,CAAC,oBAAoB,EAAE,KAAK;QAC1E,uCAAuC,EAAE,OAAO,CAAC,oBAAoB,EAAE,OAAO;QAC9E,sCAAsC,EAAE,OAAO,CAAC,oBAAoB,EAAE,cAAc;QACpF,6BAA6B,EAAE,OAAO,CAAC,gBAAgB;KAC1D,CAAA;IAED,SAAS,CAAC,UAAU,CAAC;QACjB,IAAI,EAAE,iCAAiC;QACvC,MAAM,EAAE,QAAQ;QAChB,IAAI;QACJ,SAAS,EAAE;YACP,MAAM,EAAE,KAAK,CAAC,IAAI,IAAI,cAAc;YACpC,SAAS,EAAE,IAAA,kBAAU,EAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS;YACrD,cAAc,EAAE,IAAA,kBAAU,EAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS;SACnE;KACJ,CAAC,CAAA;AACN,CAAC,CAAA;AAED,MAAM,6BAA6B,GAAG,CAAC,SAAoB,EAAE,OAA6B,EAAE,EAAE;IAC1F,MAAM,IAAI,GAAuC;QAC7C,sBAAsB,EAAE,OAAO,CAAC,eAAe,EAAE,SAAS;QAC1D,sBAAsB,EAAE,OAAO,CAAC,eAAe,EAAE,sBAAsB;QACvE,2BAA2B,EACvB,OAAO,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,IAAA,yBAAiB,EAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS;QAC1F,wBAAwB,EAAE,OAAO,CAAC,WAAW;QAC7C,QAAQ,EAAE,OAAO,CAAC,6BAA6B;QAC/C,qBAAqB,EAAE,OAAO,CAAC,QAAQ;QACvC,kBAAkB,EAAE,OAAO,CAAC,kBAAkB;KACjD,CAAA;IAED,SAAS,CAAC,UAAU,CAAC;QACjB,IAAI,EAAE,gCAAgC;QACtC,IAAI;KACP,CAAC,CAAA;AACN,CAAC,CAAA;AAED,MAAM,gCAAgC,GAAG,CACrC,SAAoB,EACpB,gBAAkC,EAClC,OAA6B,EAC7B,6BAAsC,EACxC,EAAE;IACA,yDAAyD;IACzD,IAAI,OAAO,CAAC,oBAAoB,EAAE,CAAC;QAC/B,OAAM;IACV,CAAC;IAED,8EAA8E;IAC9E,IAAI,CAAC,OAAO,CAAC,gCAAgC,EAAE,EAAE,CAAC;QAC9C,OAAM;IACV,CAAC;IAED,0CAA0C,CAAC,gBAAgB,EAAE,OAAO,EAAE,6BAA6B,CAAC,CAAA;IACpG,yBAAyB,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;IAE7C,OAAO,CAAC,oBAAoB,GAAG,IAAI,CAAA;AACvC,CAAC,CAAA;AAED,MAAM,0CAA0C,GAAG,CAC/C,gBAAkC,EAClC,OAA6B,EAC7B,6BAAsC,EACxC,EAAE;IACA,gBAAgB,CAAC,uBAAuB,CAAC,OAAO,EAAE,6BAA6B,CAAC,CAAA;AACpF,CAAC,CAAA;AAED,MAAM,yBAAyB,GAAG,CAAC,SAAoB,EAAE,OAA6B,EAAE,EAAE;IACtF,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,UAAU,EAAE,CAAC,EAAE,EAAE;QAC1C,MAAM,QAAQ,GAAG,UAAU,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAe,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QAE/F,MAAM,IAAI,GAAmC;YACzC,sBAAsB,EAAE,OAAO,CAAC,eAAe,EAAE,SAAS;YAC1D,sBAAsB,EAAE,OAAO,CAAC,eAAe,EAAE,sBAAsB;YACvE,2BAA2B,EAAE,IAAA,yBAAiB,EAAC,UAAU,CAAC;YAC1D,wBAAwB,EAAE,OAAO,CAAC,WAAW;YAC7C,qBAAqB,EAAE,OAAO,CAAC,QAAQ;YACvC,kBAAkB,EAAE,OAAO,CAAC,kBAAkB;YAC9C,4BAA4B,EAAE,CAAC;YAC/B,4BAA4B,EAAE,OAAO,CAAC,kBAAkB,CAAC,UAAU,CAAC,MAAM,CAAC;YAC3E,iCAAiC,EAAE,CAAC,GAAG,IAAI,GAAG,CAAC,QAAQ,CAAC,CAAC;YACzD,qCAAqC,EAAE,UAAU,CAAC,UAAU,EAAE,MAAM,IAAI,CAAC;YACzE,uCAAuC,EAAE,OAAO,CAAC,oBAAoB,EAAE,gBAAgB;YACvF,qCAAqC,EAAE,OAAO,CAAC,oBAAoB,EAAE,KAAK;YAC1E,sCAAsC,EAAE,OAAO,CAAC,oBAAoB,EAAE,cAAc;SACvF,CAAA;QAED,SAAS,CAAC,UAAU,CAAC;YACjB,IAAI,EAAE,4BAA4B;YAClC,IAAI;SACP,CAAC,CAAA;IACN,CAAC,CAAC,CAAA;AACN,CAAC,CAAA;AAED,MAAM,gCAAgC,GAAG,CACrC,gBAAwB,EACxB,WAAyB,EACzB,KAAa,EACuB,EAAE;IACtC,OAAO,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE;QAChC,MAAM,UAAU,GAAW,IAAA,iDAA+B,EAAC,gBAAgB,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;QAChG,IAAI,UAAU,GAAG,UAAU,CAAC,UAAU;YAClC,EAAE,MAAM,CACJ,GAAG,CAAC,EAAE,CACF,CAAC,CACG,GAAG,CAAC,yBAAyB,EAAE,KAAK,IAAI,UAAU,CAAC,MAAM,IAAI,GAAG,CAAC,yBAAyB,CAAC,KAAK,CACnG,IAAI,UAAU,CAAC,MAAM,CAC7B;aACA,GAAG,CAAC,CAAC,CAAC,EAAE;YACL,OAAO;gBACH,WAAW,EAAE,CAAC,CAAC,WAAW;gBAC1B,YAAY,EAAE,CAAC,CAAC,GAAG;gBACnB,aAAa,EAAE,CAAC,CAAC,UAAU;gBAC3B,QAAQ,EAAE,CAAC,CAAC,yBAAyB,IAAI;oBACrC,cAAc,EAAE,CAAC,CAAC,yBAAyB,CAAC,KAAK;oBACjD,YAAY,EAAE,CAAC,CAAC,yBAAyB,CAAC,GAAG;wBACzC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,yBAAyB,CAAC,GAAG,EAAE,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC;wBAClE,CAAC,CAAC,CAAC,CAAC,yBAAyB,CAAC,GAAG;iBACxC;aACJ,CAAA;QACL,CAAC,CAAC,CAAA;QAEN,OAAO;YACH,MAAM,EAAE,UAAU,CAAC,MAAM;YACzB,UAAU,EAAE,UAAU;YACtB,KAAK;YACL,UAAU,EAAE,UAAU,EAAE,MAAM,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS;SAC1D,CAAA;IACL,CAAC,CAAC,CAAA;AACN,CAAC,CAAA;AASM,MAAM,0BAA0B,GACnC,CAAC,OAAuE,EAAU,EAAE,CACpF,CAAC,EAAE,mBAAmB,EAAE,GAAG,EAAE,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,EAAE,EAAE,EAAE;IACrE,IAAI,wBAAgC,CAAA;IACpC,IAAI,6BAA6B,GAAW,CAAC,CAAA;IAE7C,MAAM,cAAc,GAAG,+BAAc,CAAC,WAAW,EAAE,CAAA;IACnD,MAAM,oBAAoB,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAAA;IACzD,MAAM,gBAAgB,GAAG,IAAI,mCAAgB,CACzC,mBAAmB,EACnB,oBAAoB,CAAC,kBAAkB,EAAE,EACzC,SAAS,EACT,OAAO,CACV,CAAA;IAED,GAAG,CAAC,cAAc,CAAC,CAAC,MAAwB,EAAE,EAAE;QAC5C,oBAAoB,CAAC,kBAAkB,CAAC;YACpC,eAAe,EAAE,IAAA,6BAAY,EAAC,MAAM,EAAE,OAAO,CAAC,UAAU,CAAC;SAC5D,CAAC,CAAA;QACF,gBAAgB,CAAC,kBAAkB,CAAC;YAChC,eAAe,EAAE,IAAA,6BAAY,EAAC,MAAM,EAAE,OAAO,CAAC,UAAU,CAAC;SAC5D,CAAC,CAAA;QACF,gBAAgB,CAAC,iBAAiB,CAAC,IAAA,sCAAqB,EAAC,MAAM,EAAE,OAAO,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAA;QAC7F,OAAO;YACH,YAAY,EAAE,EAAE;SACnB,CAAA;IACL,CAAC,CAAC,CAAA;IAEF,4EAA4E;IAC5E,sEAAsE;IACtE,wEAAwE;IACxE,oCAAoC;IACpC,IAAI,oCAAoC,GAAG,KAAK,CAAA;IAEhD,MAAM,qBAAqB,GAAG,IAAI,sCAAqB,CAAC,gBAAgB,CAAC,CAAA;IAEzE,MAAM,eAAe,GAAmD,IAAI,iCAAe,CACvF,SAAS,EACT,OAAO,EACP,CAAC,KAAoC,EAAE,UAAU,EAAE,gCAAgC,EAAE,EAAE;QACnF,gBAAgB,CAAC,yBAAyB,CAAC;YACvC,SAAS,EAAE,KAAK,CAAC,SAAS;YAC1B,SAAS,EAAE,KAAK,CAAC,SAAS;YAC1B,UAAU,EAAE,KAAK,CAAC,UAAU;YAC5B,gBAAgB,EAAE,KAAK,CAAC,gBAAgB;YACxC,SAAS,EAAE,IAAI,IAAI,EAAE;YACrB,sBAAsB,EAAE,KAAK,CAAC,cAAc,CAAC,MAAM;YACnD,sBAAsB,EAAE,UAAU;YAClC,gCAAgC,EAAE,gCAAgC;SACrE,CAAC,CAAA;IACN,CAAC,CACJ,CAAA;IAED,MAAM,yBAAyB,GAAG,KAAK,EACnC,MAA4C,EAC5C,KAAwB,EACmB,EAAE;QAC7C,kEAAkE;QAClE,MAAM,cAAc,GAAG,cAAc,CAAC,iBAAiB,EAAE,CAAA;QACzD,IAAI,cAAc,IAAI,cAAc,CAAC,KAAK,IAAI,YAAY,EAAE,CAAC;YACzD,2DAA2D;YAC3D,uGAAuG;YACvG,cAAc,CAAC,cAAc,CAAC,cAAc,CAAC,CAAA;QACjD,CAAC;QAED,OAAO,SAAS,CAAC,eAAe,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,EAAC,YAAY,EAAC,EAAE;YAChF,IAAI,CAAC,YAAY,EAAE,CAAC;gBAChB,OAAO,CAAC,GAAG,CAAC,iBAAiB,MAAM,CAAC,YAAY,CAAC,GAAG,aAAa,CAAC,CAAA;gBAClE,OAAO,YAAY,CAAA;YACvB,CAAC;YAED,MAAM,kBAAkB,GAAG,IAAA,0CAAsB,EAAC,YAAY,CAAC,CAAA;YAC/D,IAAI,CAAC,kBAAkB,EAAE,CAAC;gBACtB,OAAO,CAAC,GAAG,CACP,iBAAiB,MAAM,CAAC,YAAY,CAAC,GAAG,sBAAsB,YAAY,CAAC,UAAU,iBAAiB,CACzG,CAAA;gBACD,OAAO,YAAY,CAAA;YACvB,CAAC;YAED,wBAAwB;YACxB,MAAM,yBAAyB,GAAG,MAAM,CAAC,OAAO,CAAC,WAAW,IAAI,8CAA2B,CAAC,SAAS,CAAA;YACrG,MAAM,UAAU,GAAG,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;YACpD,MAAM,cAAc,GAAG,MAAM,CAAC,OAAO,CAAC,sBAAsB,EAAE,KAAK,CAAA;YACnE,MAAM,WAAW,GAAG,cAAc,CAAC,EAAE,YAAY,EAAE,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAA;YAEnG,qEAAqE;YACrE,0EAA0E;YAC1E,MAAM,gBAAgB,GAAG,WAAW,CAAC,eAAe,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAA;YACxE,MAAM,4BAA4B,GAAG,IAAA,yBAAW,EAAC,WAAW,CAAC,CAAA;YAC7D,MAAM,gBAAgB,GAAG,cAAc,CAAC,kBAAkB,EAAE,EAAE,gCAAgC,EAAE,IAAI,EAAE,CAAA;YACtG,MAAM,iBAAiB,GAAG,IAAA,yBAAW,EAAC;gBAClC,WAAW,EAAE,uDAAuD;gBACpE,OAAO,EAAE,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAE,oEAAoE;gBACnG,IAAI,EAAE,gBAAgB,EAAE,0EAA0E;gBAClG,GAAG,EAAE,EAAE,EAAE,gFAAgF;gBACzF,EAAE,EAAE,EAAE,EAAE,0FAA0F;gBAClG,gBAAgB,EAAE,2DAA2D;gBAC7E,WAAW,EAAE,4BAA4B,EAAE,4FAA4F;aAC1I,CAAC,CAAA;YAEF,IACI,yBAAyB;gBACzB,4BAA4B,KAAK,YAAY;gBAC7C,CAAC,iBAAiB,CAAC,aAAa,EAClC,CAAC;gBACC,OAAO,YAAY,CAAA;YACvB,CAAC;YACD,MAAM,mBAAmB,GAAG,MAAM,IAAA,kDAAwB,EACtD,YAAY,EACZ,MAAM,CAAC,QAAQ,EACf,SAAS,EACT,OAAO,EACP,KAAK,CACR,CAAA;YAED,MAAM,cAAc,GAA+B;gBAC/C,WAAW;gBACX,UAAU;gBACV,oBAAoB,EAAE,mBAAmB,EAAE,wBAAwB;oBAC/D,CAAC,CAAC,mBAAmB,CAAC,wBAAwB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;wBACnD,OAAO,EAAE,CAAC,CAAC,OAAO;wBAClB,QAAQ,EAAE,CAAC,CAAC,QAAQ;qBACvB,CAAC,CAAC;oBACL,CAAC,CAAC,EAAE;aACX,CAAA;YAED,uEAAuE;YACvE,IAAI,cAAc,IAAI,cAAc,CAAC,KAAK,KAAK,QAAQ,EAAE,CAAC;gBACtD,sEAAsE;gBACtE,cAAc,CAAC,cAAc,CAAC,cAAc,CAAC,CAAA;gBAC7C,gCAAgC,CAC5B,SAAS,EACT,gBAAgB,EAChB,cAAc,EACd,6BAA6B,CAChC,CAAA;YACL,CAAC;YACD,MAAM,UAAU,GAAG,cAAc,CAAC,aAAa,CAAC;gBAC5C,QAAQ,EAAE,YAAY;gBACtB,aAAa,EAAE,MAAM,CAAC,QAAQ;gBAC9B,WAAW,EAAE,yBAAyB,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,UAAU;gBACnE,QAAQ,EAAE,WAAW,CAAC,mBAAmB,CAAC,YAAY;gBACtD,cAAc,EAAE,cAAc;gBAC9B,eAAe,EAAE,yBAAyB,CAAC,CAAC,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS;gBACrF,gBAAgB,EAAE,gBAAgB;gBAClC,gBAAgB,EAAE,iBAAiB,EAAE,gBAAgB;gBACrD,mBAAmB,EAAE,iBAAiB,EAAE,mBAAmB;gBAC3D,kBAAkB,EAAE,mBAAmB,CAAC,qBAAqB,EAAE,EAAE,EAAE,GAAG,EAAE,QAAQ,IAAI,SAAS;gBAC7F,oBAAoB,EAAE,mBAAmB;gBACzC,gBAAgB,EAAE,IAAA,4BAAgB,EAAC,oBAAoB,CAAC,gBAAgB,CAAC;aAC5E,CAAC,CAAA;YAEF,OAAO,oBAAoB;iBACtB,mBAAmB,CAAC;gBACjB,GAAG,cAAc;gBACjB,WAAW,EAAE;oBACT,GAAG,cAAc,CAAC,WAAW;oBAC7B,eAAe,EAAE,cAAc,CAAC,WAAW,CAAC,eAAe;yBACtD,KAAK,CAAC,CAAC,gCAAwB,CAAC;yBAChC,UAAU,CAAC,MAAM,EAAE,IAAI,CAAC;oBAC7B,gBAAgB,EAAE,cAAc,CAAC,WAAW,CAAC,gBAAgB;yBACxD,KAAK,CAAC,CAAC,EAAE,gCAAwB,CAAC;yBAClC,UAAU,CAAC,MAAM,EAAE,IAAI,CAAC;iBAChC;aACJ,CAAC;iBACD,IAAI,CAAC,kBAAkB,CAAC,EAAE;gBACvB,qBAAqB,CAAC,eAAe,CAAC,kBAAkB,CAAC,CAAA;gBAEzD,oEAAoE;gBACpE,UAAU,CAAC,WAAW,GAAG,kBAAkB,CAAC,WAAW,CAAA;gBACvD,UAAU,CAAC,eAAe,GAAG,kBAAkB,CAAC,eAAe,CAAA;gBAC/D,UAAU,CAAC,sBAAsB,GAAG,kBAAkB,CAAC,eAAe,CAAC,sBAAsB,CAAA;gBAC7F,UAAU,CAAC,yBAAyB,GAAG,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,GAAG,UAAU,CAAC,SAAS,CAAA;gBAElF,sEAAsE;gBACtE,8BAA8B,CAAC,SAAS,EAAE,UAAU,CAAC,CAAA;gBAErD,sCAAsC;gBACtC,uFAAuF;gBACvF,mCAAmC;gBACnC,uGAAuG;gBACvG,IAAI,UAAU,CAAC,KAAK,KAAK,QAAQ,IAAI,UAAU,CAAC,KAAK,KAAK,SAAS,EAAE,CAAC;oBAClE,2DAA2D;oBAC3D,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,CAAA;oBACvF,gCAAgC,CAC5B,SAAS,EACT,gBAAgB,EAChB,UAAU,EACV,6BAA6B,CAChC,CAAA;oBACD,OAAO,YAAY,CAAA;gBACvB,CAAC;gBAED,yDAAyD;gBACzD,cAAc,CAAC,eAAe,CAAC,UAAU,CAAC,CAAA;gBAE1C,uDAAuD;gBACvD,MAAM,mBAAmB,GAAG,UAAU,CAAC,WAAW;oBAC9C,0BAA0B;qBACzB,MAAM,CAAC,UAAU,CAAC,EAAE;oBACjB,IAAI,UAAU,CAAC,OAAO,KAAK,EAAE,EAAE,CAAC;wBAC5B,UAAU,CAAC,kBAAkB,CAAC,UAAU,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;wBACzD,OAAO,KAAK,CAAA;oBAChB,CAAC;oBAED,OAAO,IAAI,CAAA;gBACf,CAAC,CAAC;oBACF,4BAA4B;qBAC3B,MAAM,CAAC,UAAU,CAAC,EAAE;oBACjB,IAAI,oCAAoC,EAAE,CAAC;wBACvC,OAAO,IAAI,CAAA;oBACf,CAAC;oBAED,IAAI,UAAU,CAAC,UAAU,IAAI,IAAI,IAAI,UAAU,CAAC,UAAU,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;wBACtE,OAAO,IAAI,CAAA;oBACf,CAAC;oBAED,wGAAwG;oBACxG,UAAU,CAAC,kBAAkB,CAAC,UAAU,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;oBAC1D,OAAO,KAAK,CAAA;gBAChB,CAAC,CAAC,CAAA;gBAEN,MAAM,2BAA2B,GAAG,gCAAgC,CAChE,WAAW,CAAC,gBAAgB,EAC5B,mBAAmB,EACnB,cAAc,CACjB,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE;oBAClB,iHAAiH;oBACjH,IAAI,UAAU,CAAC,UAAU,KAAK,EAAE,EAAE,CAAC;wBAC/B,UAAU,CAAC,kBAAkB,CAAC,UAAU,CAAC,MAAM,EAAE,SAAS,CAAC,CAAA;wBAC3D,OAAO,KAAK,CAAA;oBAChB,CAAC;oBAED,OAAO,IAAI,CAAA;gBACf,CAAC,CAAC,CAAA;gBAEF,2BAA2B,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE;oBAC7C,MAAM,gBAAgB,GAAG,UAAU,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,UAAU,CAAC,MAAM,CAAC,CAAA;oBACzF,IAAI,gBAAgB;wBAAE,gBAAgB,CAAC,UAAU,GAAG,UAAU,CAAC,UAAU,CAAC,QAAQ,EAAE,CAAA;gBACxF,CAAC,CAAC,CAAA;gBAEF,6GAA6G;gBAC7G,IAAI,2BAA2B,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;oBAC3C,cAAc,CAAC,YAAY,CAAC,UAAU,CAAC,CAAA;oBACvC,gCAAgC,CAC5B,SAAS,EACT,gBAAgB,EAChB,UAAU,EACV,6BAA6B,CAChC,CAAA;oBAED,OAAO,YAAY,CAAA;gBACvB,CAAC;gBAED,OAAO,EAAE,KAAK,EAAE,2BAA2B,EAAE,SAAS,EAAE,UAAU,CAAC,EAAE,EAAE,CAAA;YAC3E,CAAC,CAAC;iBACD,KAAK,CAAC,GAAG,CAAC,EAAE;gBACT,+BAA+B;gBAC/B,OAAO,CAAC,GAAG,CAAC,0BAA0B,GAAG,GAAG,CAAC,CAAA;gBAC7C,4BAA4B,CAAC,SAAS,EAAE,UAAU,EAAE,GAAG,CAAC,CAAA;gBAExD,wDAAwD;gBACxD,cAAc,CAAC,YAAY,CAAC,UAAU,CAAC,CAAA;gBAEvC,OAAO,YAAY,CAAA;YACvB,CAAC,CAAC,CAAA;QACV,CAAC,CAAC,CAAA;IACN,CAAC,CAAA;IAED,wDAAwD;IACxD,MAAM,oBAAoB,GAAG,CAAC,OAA6B,EAAE,kBAA8B,EAAE,EAAE;QAC3F,MAAM,WAAW,GAAG,IAAA,2CAAmC,EAAC,kBAAkB,CAAC,OAAO,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;QAE1G,eAAe,CAAC,OAAO,CAAC;YACpB,SAAS,EAAE,OAAO,CAAC,sBAAsB,IAAI,EAAE;YAC/C,SAAS,EAAE,OAAO,CAAC,eAAe,EAAE,SAAS,IAAI,EAAE;YACnD,OAAO,EAAE,OAAO,CAAC,QAAQ,CAAC,GAAG;YAC7B,UAAU,EAAE,OAAO,CAAC,QAAQ;YAC5B,IAAI,EAAE,IAAI,CAAC,GAAG,EAAE;YAChB,cAAc,EAAE,kBAAkB,CAAC,OAAO;YAC1C,aAAa,EAAE,OAAO,CAAC,aAAa;YACpC,WAAW,EAAE,WAAW;YACxB,gBAAgB,EAAE,OAAO,CAAC,gBAAgB;SAC7C,CAAC,CAAA;IACN,CAAC,CAAA;IAED,MAAM,0CAA0C,GAAG,KAAK,EAAE,MAA+C,EAAE,EAAE;QACzG,MAAM,EACF,SAAS,EACT,uBAAuB,EACvB,6BAA6B,EAC7B,uBAAuB,EACvB,eAAe,GAClB,GAAG,MAAM,CAAA;QAEV,MAAM,OAAO,GAAG,cAAc,CAAC,cAAc,CAAC,SAAS,CAAC,CAAA;QAExD,IAAI,CAAC,OAAO,EAAE,CAAC;YACX,OAAO,CAAC,GAAG,CAAC,qBAAqB,SAAS,gBAAgB,CAAC,CAAA;YAC3D,OAAM;QACV,CAAC;QAED,IAAI,OAAO,CAAC,KAAK,KAAK,QAAQ,EAAE,CAAC;YAC7B,OAAO,CAAC,GAAG,CAAC,mEAAmE,SAAS,EAAE,CAAC,CAAA;YAC3F,OAAM;QACV,CAAC;QAED,MAAM,cAAc,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAAC,IAAI,CACnE,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAAC,CAAC,CAAC,QAAQ,CAClD,CAAA;QACD,MAAM,kBAAkB,GAAG,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,cAAc,CAAC,CAAA;QACrF,IAAI,kBAAkB,KAAK,SAAS,IAAI,kBAAkB,CAAC,UAAU,EAAE,CAAC;YACpE,IAAI,kBAAkB,EAAE,CAAC;gBACrB,qBAAqB,CAAC,YAAY,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAA;gBACpD,qBAAqB,CAAC,mBAAmB,CAAC,OAAO,CAAC,QAAQ,EAAE,kBAAkB,CAAC,UAAU,CAAC,CAAA;gBAC1F,qBAAqB,CAAC,gBAAgB,CAAC,OAAO,CAAC,QAAQ,EAAE,kBAAkB,CAAC,UAAU,EAAE,IAAI,CAAC,CAAA;gBAE7F,oBAAoB,CAAC,OAAO,EAAE,kBAAkB,CAAC,CAAA;YACrD,CAAC;QACL,CAAC;QAED,OAAO,CAAC,mBAAmB,CACvB,uBAAuB,EACvB,6BAA6B,EAC7B,uBAAuB,EACvB,eAAe,CAClB,CAAA;QAED,IAAI,6BAA6B;YAAE,6BAA6B,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;QAEpF,qDAAqD;QACrD,cAAc,CAAC,YAAY,CAAC,OAAO,CAAC,CAAA;QACpC,gCAAgC,CAAC,SAAS,EAAE,gBAAgB,EAAE,OAAO,EAAE,6BAA6B,CAAC,CAAA;IACzG,CAAC,CAAA;IAED,MAAM,mBAAmB,GAAG,KAAK,IAAI,EAAE;QACnC,IAAI,CAAC;YACD,MAAM,OAAO,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,gBAAgB,CAAC,8CAAuB,CAAC,CAAA;YAC7E,IAAI,OAAO,EAAE,CAAC;gBACV,oBAAoB,CAAC,gBAAgB,GAAG,IAAA,4BAAgB,EAAC,OAAO,CAAC,aAAa,CAAC,CAAA;gBAC/E,qBAAqB,CAAC,gBAAgB,GAAG,IAAA,4BAAgB,EAAC,OAAO,CAAC,aAAa,CAAC,CAAA;gBAChF,OAAO,CAAC,GAAG,CACP,kDAAkD,oBAAoB,CAAC,gBAAgB,EAAE,CAC5F,CAAA;gBACD;;;mBAGG;gBACH,kDAAkD;gBAClD,gGAAgG;gBAChG,MAAM,yBAAyB,GAAG,OAAO,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAA;gBAC1F,gBAAgB,CAAC,sBAAsB,CAAC,yBAAyB,CAAC,CAAA;YACtE,CAAC;YAED,MAAM,MAAM,GAAG,MAAM,GAAG,CAAC,SAAS,CAAC,gBAAgB,CAAC,mBAAmB,CAAC,CAAA;YACxE,IAAI,CAAC,MAAM;gBAAE,OAAM;YAEnB,oCAAoC,GAAG,MAAM,CAAC,sCAAsC,CAAC,KAAK,IAAI,CAAA;YAC9F,OAAO,CAAC,GAAG,CACP,4BAA4B,oCAAoC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAC9H,CAAA;YAED,oBAAoB,CAAC,gCAAgC;gBACjD,MAAM,CAAC,kCAAkC,CAAC,KAAK,IAAI,CAAA;YACvD,OAAO,CAAC,GAAG,CACP,4BAA4B,oBAAoB,CAAC,gCAAgC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,4BAA4B,CACxI,CAAA;QACL,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACb,OAAO,CAAC,GAAG,CAAC,8BAA8B,KAAK,EAAE,CAAC,CAAA;QACtD,CAAC;IACL,CAAC,CAAA;IAED,GAAG,CAAC,UAAU,CAAC,gCAAgC,CAAC,yBAAyB,CAAC,CAAA;IAC1E,GAAG,CAAC,UAAU,CAAC,mCAAmC,CAAC,0CAA0C,CAAC,CAAA;IAC9F,GAAG,CAAC,aAAa,CAAC,mBAAmB,CAAC,CAAA;IACtC,GAAG,CAAC,sBAAsB,CAAC,mBAAmB,CAAC,CAAA;IAE/C,GAAG,CAAC,uBAAuB,CAAC,KAAK,EAAC,CAAC,EAAC,EAAE;QAClC,MAAM,YAAY,GAAG,MAAM,SAAS,CAAC,eAAe,CAAC,CAAC,CAAC,YAAY,CAAC,GAAG,CAAC,CAAA;QACxE,MAAM,UAAU,GAAG,IAAA,0CAAsB,EAAC,YAAY,CAAC,CAAA;QAEvD,IAAI,CAAC,YAAY,IAAI,CAAC,UAAU,EAAE,CAAC;YAC/B,OAAM;QACV,CAAC;QAED,CAAC,CAAC,cAAc,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;YAC9B,qBAAqB,CAAC,gBAAgB,CAAC,UAAU,EAAE,MAAM,CAAC,IAAI,EAAE,KAAK,CAAC,CAAA;QAC1E,CAAC,CAAC,CAAA;QAEF,sDAAsD;QACtD,IAAI,wBAAwB,EAAE,CAAC;YAC3B,6BAA6B,GAAG,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,GAAG,wBAAwB,CAAA;QACnF,CAAC;QACD,wBAAwB,GAAG,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,CAAA;IACnD,CAAC,CAAC,CAAA;IAEF,OAAO,CAAC,GAAG,CAAC,wDAAwD,CAAC,CAAA;IAErE,OAAO,GAAG,EAAE;QACR,qBAAqB,CAAC,OAAO,EAAE,CAAA;QAC/B,eAAe,CAAC,QAAQ,EAAE,CAAA;IAC9B,CAAC,CAAA;AACL,CAAC,CAAA;AAlZQ,QAAA,0BAA0B,8BAkZlC;AAEQ,QAAA,sBAAsB,GAAG,IAAA,kCAA0B,EAC5D,mBAAmB,CAAC,EAAE,CAAC,IAAI,8CAAuB,CAAC,mBAAmB,CAAC,CAC1E,CAAA;AACY,QAAA,wBAAwB,GAAG,IAAA,kCAA0B,EAC9D,mBAAmB,CAAC,EAAE,CAAC,IAAI,gDAAyB,CAAC,mBAAmB,CAAC,CAC5E,CAAA"}
@@ -7,6 +7,8 @@ const ts_sinon_1 = require("ts-sinon");
7
7
  const codeWhispererServer_1 = require("./codeWhispererServer");
8
8
  const sessionManager_1 = require("./session/sessionManager");
9
9
  const testUtils_1 = require("./testUtils");
10
+ const codeDiffTracker_1 = require("./telemetry/codeDiffTracker");
11
+ const telemetryService_1 = require("./telemetryService");
10
12
  describe('CodeWhisperer Server', () => {
11
13
  const sandbox = ts_sinon_1.default.createSandbox();
12
14
  let SESSION_IDS_LOG = [];
@@ -393,6 +395,7 @@ describe('CodeWhisperer Server', () => {
393
395
  beforeEach(() => {
394
396
  // Set up the server with a mock service, returning predefined recommendations
395
397
  service = (0, ts_sinon_1.stubInterface)();
398
+ service.customizationArn = undefined;
396
399
  service.generateSuggestions.returns(Promise.resolve({
397
400
  suggestions: testUtils_1.EXPECTED_SUGGESTION_LIST,
398
401
  responseContext: testUtils_1.EXPECTED_RESPONSE_CONTEXT,
@@ -689,6 +692,7 @@ describe('CodeWhisperer Server', () => {
689
692
  },
690
693
  };
691
694
  const sessionData = {
695
+ document: server_interface_1.TextDocument.create('file:///rightContext.cs', 'csharp', 1, testUtils_1.HELLO_WORLD_IN_CSHARP),
692
696
  startPosition: { line: 0, character: 0 },
693
697
  triggerType: 'OnDemand',
694
698
  language: 'csharp',
@@ -845,6 +849,7 @@ describe('CodeWhisperer Server', () => {
845
849
  codewhispererSupplementalContextIsUtg: undefined,
846
850
  codewhispererSupplementalContextLatency: undefined,
847
851
  codewhispererSupplementalContextLength: undefined,
852
+ codewhispererCustomizationArn: undefined,
848
853
  },
849
854
  };
850
855
  ts_sinon_1.default.assert.calledOnceWithExactly(features.telemetry.emitMetric, expectedServiceInvocationMetric);
@@ -884,6 +889,7 @@ describe('CodeWhisperer Server', () => {
884
889
  codewhispererSupplementalContextIsUtg: undefined,
885
890
  codewhispererSupplementalContextLatency: undefined,
886
891
  codewhispererSupplementalContextLength: undefined,
892
+ codewhispererCustomizationArn: undefined,
887
893
  },
888
894
  };
889
895
  ts_sinon_1.default.assert.calledOnceWithExactly(features.telemetry.emitMetric, expectedServiceInvocationMetric);
@@ -916,6 +922,7 @@ describe('CodeWhisperer Server', () => {
916
922
  codewhispererSupplementalContextIsUtg: undefined,
917
923
  codewhispererSupplementalContextLatency: undefined,
918
924
  codewhispererSupplementalContextLength: undefined,
925
+ codewhispererCustomizationArn: undefined,
919
926
  },
920
927
  errorData: {
921
928
  reason: 'TestError',
@@ -951,6 +958,7 @@ describe('CodeWhisperer Server', () => {
951
958
  codewhispererSupplementalContextIsUtg: undefined,
952
959
  codewhispererSupplementalContextLatency: undefined,
953
960
  codewhispererSupplementalContextLength: undefined,
961
+ codewhispererCustomizationArn: undefined,
954
962
  },
955
963
  errorData: {
956
964
  reason: 'UnknownError',
@@ -996,6 +1004,7 @@ describe('CodeWhisperer Server', () => {
996
1004
  codewhispererSupplementalContextIsUtg: undefined,
997
1005
  codewhispererSupplementalContextLatency: undefined,
998
1006
  codewhispererSupplementalContextLength: undefined,
1007
+ codewhispererCustomizationArn: undefined,
999
1008
  },
1000
1009
  errorData: {
1001
1010
  reason: 'TestAWSError',
@@ -1063,6 +1072,74 @@ describe('CodeWhisperer Server', () => {
1063
1072
  assert.equal(features.telemetry.emitMetric.getCall(0).args[0].data.credentialStartUrl, undefined);
1064
1073
  });
1065
1074
  });
1075
+ describe('Emit UserModification event with CodeDiffTracker', () => {
1076
+ let codeDiffTrackerSpy;
1077
+ let telemetryServiceSpy;
1078
+ afterEach(() => {
1079
+ ts_sinon_1.default.restore();
1080
+ });
1081
+ it('should enqueue a code diff entry when session results are returned with accepted completion', async () => {
1082
+ const sessionResultData = {
1083
+ sessionId: 'some-random-session-uuid-0',
1084
+ completionSessionResult: {
1085
+ 'cwspr-item-id': {
1086
+ seen: true,
1087
+ accepted: true,
1088
+ discarded: false,
1089
+ },
1090
+ },
1091
+ };
1092
+ codeDiffTrackerSpy = ts_sinon_1.default.spy(codeDiffTracker_1.CodeDiffTracker.prototype, 'enqueue');
1093
+ await features.doInlineCompletionWithReferences({
1094
+ textDocument: { uri: testUtils_1.SOME_FILE.uri },
1095
+ position: { line: 0, character: 0 },
1096
+ context: { triggerKind: server_interface_1.InlineCompletionTriggerKind.Invoked },
1097
+ }, server_interface_1.CancellationToken.None);
1098
+ await features.doLogInlineCompletionSessionResults(sessionResultData);
1099
+ ts_sinon_1.default.assert.calledOnceWithExactly(codeDiffTrackerSpy, {
1100
+ sessionId: 'cwspr-session-id',
1101
+ requestId: 'cwspr-request-id',
1102
+ fileUrl: 'file:///test.cs',
1103
+ languageId: 'csharp',
1104
+ time: 1483228800000,
1105
+ originalString: 'recommendation',
1106
+ startPosition: { line: 0, character: 0 },
1107
+ endPosition: { line: 0, character: 14 },
1108
+ customizationArn: undefined,
1109
+ });
1110
+ });
1111
+ it('should emit telemetryService.emitUserModificationEvent on schedule by CodeDiffTracker', async () => {
1112
+ const startTime = new Date();
1113
+ const sessionResultData = {
1114
+ sessionId: 'some-random-session-uuid-0',
1115
+ completionSessionResult: {
1116
+ 'cwspr-item-id': {
1117
+ seen: true,
1118
+ accepted: true,
1119
+ discarded: false,
1120
+ },
1121
+ },
1122
+ };
1123
+ telemetryServiceSpy = ts_sinon_1.default.spy(telemetryService_1.TelemetryService.prototype, 'emitUserModificationEvent');
1124
+ await features.doInlineCompletionWithReferences({
1125
+ textDocument: { uri: testUtils_1.SOME_FILE.uri },
1126
+ position: { line: 0, character: 0 },
1127
+ context: { triggerKind: server_interface_1.InlineCompletionTriggerKind.Invoked },
1128
+ }, server_interface_1.CancellationToken.None);
1129
+ await features.doLogInlineCompletionSessionResults(sessionResultData);
1130
+ await clock.tickAsync(5 * 60 * 1000 + 30);
1131
+ ts_sinon_1.default.assert.calledOnceWithExactly(telemetryServiceSpy, {
1132
+ sessionId: 'cwspr-session-id',
1133
+ requestId: 'cwspr-request-id',
1134
+ languageId: 'csharp',
1135
+ customizationArn: undefined,
1136
+ timestamp: new Date(startTime.getTime() + 5 * 60 * 1000),
1137
+ acceptedCharacterCount: 14,
1138
+ modificationPercentage: 0.9285714285714286,
1139
+ unmodifiedAcceptedCharacterCount: 1,
1140
+ });
1141
+ });
1142
+ });
1066
1143
  });
1067
1144
  describe('Recommendations session management', () => {
1068
1145
  const AUTO_TRIGGER_POSITION = { line: 2, character: 21 };
@@ -1109,7 +1186,7 @@ describe('CodeWhisperer Server', () => {
1109
1186
  const expectedSessionData = {
1110
1187
  id: SESSION_IDS_LOG[0],
1111
1188
  state: 'ACTIVE',
1112
- suggestions: [{ itemId: 'cwspr-item-id', content: 'recommendation' }],
1189
+ suggestions: [{ itemId: 'cwspr-item-id', content: 'recommendation', insertText: 'recommendation' }],
1113
1190
  responseContext: testUtils_1.EXPECTED_RESPONSE_CONTEXT,
1114
1191
  codewhispererSessionId: testUtils_1.EXPECTED_RESPONSE_CONTEXT.codewhispererSessionId,
1115
1192
  timeToFirstRecommendation: 0,
@@ -1159,7 +1236,7 @@ describe('CodeWhisperer Server', () => {
1159
1236
  const expectedSessionData = {
1160
1237
  id: SESSION_IDS_LOG[2],
1161
1238
  state: 'ACTIVE',
1162
- suggestions: [{ itemId: 'cwspr-item-id', content: 'recommendation' }],
1239
+ suggestions: [{ itemId: 'cwspr-item-id', content: 'recommendation', insertText: 'recommendation' }],
1163
1240
  };
1164
1241
  assert(activeSession);
1165
1242
  ts_sinon_1.default.assert.match({