serverless-spy 0.0.36 → 0.0.38

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 (3939) hide show
  1. package/.jsii +61 -22
  2. package/API.md +15 -1
  3. package/cli/cli.ts +145 -75
  4. package/cli/icons/Arch_AWS-Lambda_16.svg +18 -0
  5. package/cli/icons/Arch_Amazon-DynamoDB_16.svg +18 -0
  6. package/cli/icons/Arch_Amazon-EventBridge_16.svg +18 -0
  7. package/cli/icons/Arch_Amazon-Simple-Notification-Service_16.svg +18 -0
  8. package/cli/icons/Arch_Amazon-Simple-Queue-Service_16.svg +18 -0
  9. package/cli/icons/Arch_Amazon-Simple-Storage-Service_16.svg +18 -0
  10. package/cli/index.html +84 -25
  11. package/cli/node_modules/commander/LICENSE +22 -0
  12. package/cli/node_modules/commander/Readme.md +1114 -0
  13. package/cli/node_modules/commander/esm.mjs +16 -0
  14. package/cli/node_modules/commander/index.js +27 -0
  15. package/cli/node_modules/commander/lib/argument.js +147 -0
  16. package/cli/node_modules/commander/lib/command.js +2161 -0
  17. package/cli/node_modules/commander/lib/error.js +45 -0
  18. package/cli/node_modules/commander/lib/help.js +406 -0
  19. package/cli/node_modules/commander/lib/option.js +324 -0
  20. package/cli/node_modules/commander/lib/suggestSimilar.js +100 -0
  21. package/cli/node_modules/commander/package-support.json +16 -0
  22. package/cli/node_modules/commander/package.json +80 -0
  23. package/cli/node_modules/commander/typings/index.d.ts +879 -0
  24. package/cli/package.json +23 -0
  25. package/cli/sampleData.ts +518 -0
  26. package/cli/style.css +66 -42
  27. package/cli/webServerlessSpy.ts +461 -0
  28. package/common/SpyEventSender.ts +291 -0
  29. package/common/getWebSocketUrl.ts +21 -4
  30. package/common/spyEvents/EventBridgeBaseSpyEvent.ts +13 -0
  31. package/common/spyEvents/EventBridgeRuleSpyEvent.ts +2 -7
  32. package/common/spyEvents/EventBridgeSpyEvent.ts +2 -7
  33. package/common/spyEvents/FunctionBaseSpyEvent.ts +7 -0
  34. package/common/spyEvents/FunctionConsole.ts +5 -0
  35. package/common/spyEvents/FunctionConsoleSpyEvent.ts +5 -8
  36. package/common/spyEvents/FunctionResponseSpyEvent.ts +2 -5
  37. package/common/spyEvents/SnsSpyEventBase.ts +11 -0
  38. package/common/spyEvents/SnsSubscriptionSpyEvent.ts +3 -9
  39. package/common/spyEvents/SnsTopicSpyEvent.ts +3 -9
  40. package/dist/releasetag.txt +1 -1
  41. package/extension/interceptor.ts +91 -14
  42. package/functions/sendMessage.ts +4 -2
  43. package/lib/cli/cli.js +124 -65
  44. package/lib/cli/cli.mjs +125 -66
  45. package/lib/cli/sampleData.d.ts +892 -0
  46. package/lib/cli/sampleData.js +481 -0
  47. package/lib/cli/sampleData.mjs +478 -0
  48. package/lib/cli/webServerlessSpy.js +5516 -0
  49. package/lib/cli/webServerlessSpy.js.map +7 -0
  50. package/lib/common/SpyEventSender.d.ts +17 -0
  51. package/lib/common/SpyEventSender.js +227 -0
  52. package/lib/common/SpyEventSender.mjs +223 -0
  53. package/lib/common/getWebSocketUrl.d.ts +1 -1
  54. package/lib/common/getWebSocketUrl.js +19 -7
  55. package/lib/common/getWebSocketUrl.mjs +17 -5
  56. package/lib/common/spyEvents/EventBridgeBaseSpyEvent.d.ts +9 -0
  57. package/lib/common/spyEvents/EventBridgeBaseSpyEvent.js +3 -0
  58. package/lib/common/spyEvents/EventBridgeBaseSpyEvent.mjs +2 -0
  59. package/lib/common/spyEvents/EventBridgeRuleSpyEvent.d.ts +2 -7
  60. package/lib/common/spyEvents/EventBridgeRuleSpyEvent.js +1 -1
  61. package/lib/common/spyEvents/EventBridgeRuleSpyEvent.mjs +1 -1
  62. package/lib/common/spyEvents/EventBridgeSpyEvent.d.ts +2 -7
  63. package/lib/common/spyEvents/EventBridgeSpyEvent.js +1 -1
  64. package/lib/common/spyEvents/EventBridgeSpyEvent.mjs +1 -1
  65. package/lib/common/spyEvents/FunctionBaseSpyEvent.d.ts +6 -0
  66. package/lib/common/spyEvents/FunctionBaseSpyEvent.js +3 -0
  67. package/lib/common/spyEvents/FunctionBaseSpyEvent.mjs +2 -0
  68. package/lib/common/spyEvents/FunctionConsole.d.ts +5 -0
  69. package/lib/common/spyEvents/FunctionConsole.js +3 -0
  70. package/lib/common/spyEvents/FunctionConsole.mjs +2 -0
  71. package/lib/common/spyEvents/FunctionConsoleSpyEvent.d.ts +4 -8
  72. package/lib/common/spyEvents/FunctionConsoleSpyEvent.js +1 -1
  73. package/lib/common/spyEvents/FunctionConsoleSpyEvent.mjs +1 -1
  74. package/lib/common/spyEvents/FunctionResponseSpyEvent.d.ts +2 -5
  75. package/lib/common/spyEvents/FunctionResponseSpyEvent.js +1 -1
  76. package/lib/common/spyEvents/FunctionResponseSpyEvent.mjs +1 -1
  77. package/lib/common/spyEvents/SnsSpyEventBase.d.ts +10 -0
  78. package/lib/common/spyEvents/SnsSpyEventBase.js +3 -0
  79. package/lib/common/spyEvents/SnsSpyEventBase.mjs +2 -0
  80. package/lib/common/spyEvents/SnsSubscriptionSpyEvent.d.ts +2 -9
  81. package/lib/common/spyEvents/SnsSubscriptionSpyEvent.js +1 -1
  82. package/lib/common/spyEvents/SnsSubscriptionSpyEvent.mjs +1 -1
  83. package/lib/common/spyEvents/SnsTopicSpyEvent.d.ts +2 -9
  84. package/lib/common/spyEvents/SnsTopicSpyEvent.js +1 -1
  85. package/lib/common/spyEvents/SnsTopicSpyEvent.mjs +1 -1
  86. package/lib/extension/dist/layer/nodejs/node_modules/interceptor.js +1272 -581
  87. package/lib/extension/dist/layer/nodejs/node_modules/interceptor.js.map +4 -4
  88. package/lib/listener/SpyHandlers.ts.d.ts +30 -2
  89. package/lib/listener/SpyHandlers.ts.js +1 -1
  90. package/lib/listener/SpyHandlers.ts.mjs +1 -1
  91. package/lib/listener/WsListener.js +11 -11
  92. package/lib/listener/WsListener.mjs +12 -12
  93. package/lib/src/ServerlessSpy.js +2 -3
  94. package/lib/src/ServerlessSpy.mjs +1 -2
  95. package/listener/SpyHandlers.ts.ts +70 -9
  96. package/listener/WsListener.ts +21 -18
  97. package/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +8 -0
  98. package/node_modules/@aws-crypto/ie11-detection/build/index.js +5 -5
  99. package/node_modules/@aws-crypto/ie11-detection/build/index.js.map +1 -1
  100. package/node_modules/@aws-crypto/ie11-detection/package.json +3 -2
  101. package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +8 -0
  102. package/node_modules/@aws-crypto/supports-web-crypto/build/index.js +2 -2
  103. package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js +2 -2
  104. package/node_modules/@aws-crypto/supports-web-crypto/package.json +3 -2
  105. package/node_modules/@aws-crypto/util/CHANGELOG.md +12 -0
  106. package/node_modules/@aws-crypto/util/README.md +5 -5
  107. package/node_modules/@aws-crypto/util/build/convertToBuffer.js +1 -1
  108. package/node_modules/@aws-crypto/util/build/convertToBuffer.js.map +1 -0
  109. package/node_modules/@aws-crypto/util/build/index.js +1 -1
  110. package/node_modules/@aws-crypto/util/build/index.js.map +1 -0
  111. package/node_modules/@aws-crypto/util/build/isEmptyData.js +1 -1
  112. package/node_modules/@aws-crypto/util/build/isEmptyData.js.map +1 -0
  113. package/node_modules/@aws-crypto/util/build/numToUint8.js +1 -1
  114. package/node_modules/@aws-crypto/util/build/numToUint8.js.map +1 -0
  115. package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js +1 -1
  116. package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map +1 -0
  117. package/node_modules/@aws-crypto/util/package.json +4 -3
  118. package/node_modules/@aws-sdk/abort-controller/CHANGELOG.md +48 -0
  119. package/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortController.d.ts +6 -6
  120. package/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +8 -10
  121. package/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/index.d.ts +2 -2
  122. package/node_modules/@aws-sdk/abort-controller/package.json +4 -3
  123. package/node_modules/@aws-sdk/chunked-blob-reader/CHANGELOG.md +16 -0
  124. package/node_modules/@aws-sdk/chunked-blob-reader/dist-types/ts3.4/index.d.ts +5 -1
  125. package/node_modules/@aws-sdk/chunked-blob-reader/package.json +3 -2
  126. package/node_modules/@aws-sdk/chunked-blob-reader-native/CHANGELOG.md +16 -0
  127. package/node_modules/@aws-sdk/chunked-blob-reader-native/dist-types/ts3.4/index.d.ts +5 -1
  128. package/node_modules/@aws-sdk/chunked-blob-reader-native/package.json +4 -3
  129. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/CHANGELOG.md +91 -0
  130. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-cjs/endpoints.js +1 -0
  131. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-cjs/protocols/Aws_restJson1.js +3 -0
  132. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-es/endpoints.js +1 -0
  133. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-es/protocols/Aws_restJson1.js +3 -0
  134. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/runtimeConfig.browser.d.ts +1 -1
  135. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/runtimeConfig.d.ts +1 -1
  136. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/runtimeConfig.native.d.ts +1 -1
  137. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/ApiGatewayManagementApi.d.ts +55 -20
  138. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/ApiGatewayManagementApiClient.d.ts +123 -76
  139. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +30 -17
  140. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +35 -17
  141. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/PostToConnectionCommand.d.ts +30 -17
  142. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/index.d.ts +3 -3
  143. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/endpoints.d.ts +2 -2
  144. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/index.d.ts +5 -5
  145. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/models/ApiGatewayManagementApiServiceException.d.ts +7 -6
  146. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/models/index.d.ts +1 -1
  147. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/models/models_0.d.ts +59 -66
  148. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +41 -11
  149. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.browser.d.ts +69 -38
  150. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.d.ts +69 -38
  151. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.native.d.ts +70 -37
  152. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  153. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/package.json +35 -34
  154. package/node_modules/@aws-sdk/client-cognito-identity/CHANGELOG.md +91 -0
  155. package/node_modules/@aws-sdk/client-cognito-identity/dist-cjs/endpoints.js +1 -0
  156. package/node_modules/@aws-sdk/client-cognito-identity/dist-cjs/protocols/Aws_json1_1.js +3 -0
  157. package/node_modules/@aws-sdk/client-cognito-identity/dist-es/endpoints.js +1 -0
  158. package/node_modules/@aws-sdk/client-cognito-identity/dist-es/protocols/Aws_json1_1.js +3 -0
  159. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.browser.d.ts +1 -1
  160. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.d.ts +1 -1
  161. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.native.d.ts +1 -1
  162. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/CognitoIdentity.d.ts +398 -120
  163. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/CognitoIdentityClient.d.ts +240 -96
  164. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/CreateIdentityPoolCommand.d.ts +33 -17
  165. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DeleteIdentitiesCommand.d.ts +35 -17
  166. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DeleteIdentityPoolCommand.d.ts +31 -17
  167. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DescribeIdentityCommand.d.ts +32 -17
  168. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DescribeIdentityPoolCommand.d.ts +36 -17
  169. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetCredentialsForIdentityCommand.d.ts +39 -17
  170. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetIdCommand.d.ts +30 -17
  171. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetIdentityPoolRolesCommand.d.ts +39 -17
  172. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetOpenIdTokenCommand.d.ts +35 -17
  173. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetOpenIdTokenForDeveloperIdentityCommand.d.ts +39 -17
  174. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetPrincipalTagAttributeMapCommand.d.ts +39 -17
  175. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListIdentitiesCommand.d.ts +35 -17
  176. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListIdentityPoolsCommand.d.ts +35 -17
  177. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  178. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/LookupDeveloperIdentityCommand.d.ts +39 -17
  179. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/MergeDeveloperIdentitiesCommand.d.ts +39 -17
  180. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/SetIdentityPoolRolesCommand.d.ts +34 -17
  181. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/SetPrincipalTagAttributeMapCommand.d.ts +39 -17
  182. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  183. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UnlinkDeveloperIdentityCommand.d.ts +35 -17
  184. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UnlinkIdentityCommand.d.ts +30 -17
  185. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  186. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UpdateIdentityPoolCommand.d.ts +32 -17
  187. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/index.d.ts +23 -23
  188. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/endpoints.d.ts +2 -2
  189. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/index.d.ts +6 -6
  190. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/CognitoIdentityServiceException.d.ts +7 -6
  191. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/index.d.ts +1 -1
  192. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/models_0.d.ts +449 -567
  193. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  194. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/ListIdentityPoolsPaginator.d.ts +11 -4
  195. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/index.d.ts +2 -2
  196. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -71
  197. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.browser.d.ts +69 -38
  198. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.d.ts +69 -38
  199. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.native.d.ts +70 -37
  200. package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  201. package/node_modules/@aws-sdk/client-cognito-identity/package.json +36 -35
  202. package/node_modules/@aws-sdk/client-dynamodb/CHANGELOG.md +102 -0
  203. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoints.js +1 -0
  204. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/protocols/Aws_json1_0.js +3 -0
  205. package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoints.js +1 -0
  206. package/node_modules/@aws-sdk/client-dynamodb/dist-es/protocols/Aws_json1_0.js +3 -0
  207. package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDB.d.ts +2 -2
  208. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactGetItemsCommand.d.ts +1 -1
  209. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactWriteItemsCommand.d.ts +1 -1
  210. package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/models_0.d.ts +3 -3
  211. package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.browser.d.ts +1 -1
  212. package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.d.ts +1 -1
  213. package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.native.d.ts +1 -1
  214. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDB.d.ts +917 -270
  215. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDBClient.d.ts +423 -129
  216. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +39 -17
  217. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +32 -17
  218. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +32 -17
  219. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +32 -17
  220. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +35 -17
  221. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateTableCommand.d.ts +32 -17
  222. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +32 -17
  223. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +32 -17
  224. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +32 -17
  225. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +32 -17
  226. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +39 -17
  227. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +39 -17
  228. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +36 -17
  229. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +32 -17
  230. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +36 -17
  231. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +39 -17
  232. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +32 -17
  233. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +39 -17
  234. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +32 -17
  235. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +32 -17
  236. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +39 -17
  237. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +36 -17
  238. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +39 -17
  239. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +39 -17
  240. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +35 -17
  241. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +36 -17
  242. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +39 -17
  243. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetItemCommand.d.ts +30 -17
  244. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ImportTableCommand.d.ts +32 -17
  245. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +32 -17
  246. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +39 -17
  247. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListExportsCommand.d.ts +32 -17
  248. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +35 -17
  249. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListImportsCommand.d.ts +32 -17
  250. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTablesCommand.d.ts +32 -17
  251. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +36 -17
  252. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutItemCommand.d.ts +30 -17
  253. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +30 -17
  254. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +39 -17
  255. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +39 -17
  256. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +30 -17
  257. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
  258. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +35 -17
  259. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +36 -17
  260. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
  261. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +39 -17
  262. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +39 -17
  263. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +35 -17
  264. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +39 -17
  265. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +32 -17
  266. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +32 -17
  267. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +39 -17
  268. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +35 -17
  269. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/index.d.ts +53 -53
  270. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoints.d.ts +2 -2
  271. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/index.d.ts +7 -7
  272. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +7 -6
  273. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/index.d.ts +1 -1
  274. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/models_0.d.ts +2256 -2833
  275. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  276. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListContributorInsightsPaginator.d.ts +11 -4
  277. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -4
  278. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -4
  279. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -4
  280. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -4
  281. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -4
  282. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/index.d.ts +7 -7
  283. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +638 -161
  284. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.browser.d.ts +72 -41
  285. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.d.ts +72 -41
  286. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.native.d.ts +73 -40
  287. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  288. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/index.d.ts +2 -2
  289. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableExists.d.ts +11 -7
  290. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -7
  291. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/CHANGELOG.md +0 -0
  292. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/CONTRIBUTING.md +0 -0
  293. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/LICENSE.md +0 -0
  294. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/README.md +0 -0
  295. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/bin/uuid +0 -0
  296. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/index.js +0 -0
  297. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/md5.js +0 -0
  298. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/nil.js +0 -0
  299. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/parse.js +0 -0
  300. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/regex.js +0 -0
  301. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/rng.js +0 -0
  302. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/sha1.js +0 -0
  303. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/stringify.js +0 -0
  304. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v1.js +0 -0
  305. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v3.js +0 -0
  306. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v35.js +0 -0
  307. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v4.js +0 -0
  308. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v5.js +0 -0
  309. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/validate.js +0 -0
  310. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/version.js +0 -0
  311. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/index.js +0 -0
  312. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/md5.js +0 -0
  313. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/nil.js +0 -0
  314. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/parse.js +0 -0
  315. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/regex.js +0 -0
  316. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/rng.js +0 -0
  317. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/sha1.js +0 -0
  318. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/stringify.js +0 -0
  319. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v1.js +0 -0
  320. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v3.js +0 -0
  321. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v35.js +0 -0
  322. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v4.js +0 -0
  323. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v5.js +0 -0
  324. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/validate.js +0 -0
  325. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/version.js +0 -0
  326. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/index.js +0 -0
  327. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/md5-browser.js +0 -0
  328. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/md5.js +0 -0
  329. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/nil.js +0 -0
  330. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/parse.js +0 -0
  331. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/regex.js +0 -0
  332. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/rng-browser.js +0 -0
  333. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/rng.js +0 -0
  334. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/sha1-browser.js +0 -0
  335. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/sha1.js +0 -0
  336. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/stringify.js +0 -0
  337. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuid.min.js +0 -0
  338. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidNIL.min.js +0 -0
  339. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidParse.min.js +0 -0
  340. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidStringify.min.js +0 -0
  341. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidValidate.min.js +0 -0
  342. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidVersion.min.js +0 -0
  343. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv1.min.js +0 -0
  344. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv3.min.js +0 -0
  345. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv4.min.js +0 -0
  346. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv5.min.js +0 -0
  347. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/uuid-bin.js +0 -0
  348. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v1.js +0 -0
  349. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v3.js +0 -0
  350. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v35.js +0 -0
  351. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v4.js +0 -0
  352. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v5.js +0 -0
  353. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/validate.js +0 -0
  354. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/version.js +0 -0
  355. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/package.json +0 -0
  356. package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/wrapper.mjs +0 -0
  357. package/node_modules/@aws-sdk/client-dynamodb/package.json +37 -36
  358. package/node_modules/@aws-sdk/client-eventbridge/CHANGELOG.md +91 -0
  359. package/node_modules/@aws-sdk/client-eventbridge/dist-cjs/endpoints.js +1 -0
  360. package/node_modules/@aws-sdk/client-eventbridge/dist-cjs/protocols/Aws_json1_1.js +3 -0
  361. package/node_modules/@aws-sdk/client-eventbridge/dist-es/endpoints.js +1 -0
  362. package/node_modules/@aws-sdk/client-eventbridge/dist-es/protocols/Aws_json1_1.js +3 -0
  363. package/node_modules/@aws-sdk/client-eventbridge/dist-types/runtimeConfig.browser.d.ts +1 -1
  364. package/node_modules/@aws-sdk/client-eventbridge/dist-types/runtimeConfig.d.ts +1 -1
  365. package/node_modules/@aws-sdk/client-eventbridge/dist-types/runtimeConfig.native.d.ts +1 -1
  366. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/EventBridge.d.ts +956 -285
  367. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/EventBridgeClient.d.ts +440 -129
  368. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ActivateEventSourceCommand.d.ts +31 -17
  369. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CancelReplayCommand.d.ts +32 -17
  370. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateApiDestinationCommand.d.ts +39 -17
  371. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateArchiveCommand.d.ts +35 -17
  372. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +35 -17
  373. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateEndpointCommand.d.ts +35 -17
  374. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateEventBusCommand.d.ts +35 -17
  375. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreatePartnerEventSourceCommand.d.ts +39 -17
  376. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeactivateEventSourceCommand.d.ts +34 -17
  377. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeauthorizeConnectionCommand.d.ts +39 -17
  378. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteApiDestinationCommand.d.ts +39 -17
  379. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteArchiveCommand.d.ts +35 -17
  380. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +35 -17
  381. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +35 -17
  382. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteEventBusCommand.d.ts +30 -17
  383. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeletePartnerEventSourceCommand.d.ts +35 -17
  384. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +30 -17
  385. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeApiDestinationCommand.d.ts +39 -17
  386. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeArchiveCommand.d.ts +35 -17
  387. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeConnectionCommand.d.ts +36 -17
  388. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeEndpointCommand.d.ts +35 -17
  389. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeEventBusCommand.d.ts +35 -17
  390. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeEventSourceCommand.d.ts +36 -17
  391. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribePartnerEventSourceCommand.d.ts +39 -17
  392. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeReplayCommand.d.ts +35 -17
  393. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeRuleCommand.d.ts +32 -17
  394. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DisableRuleCommand.d.ts +30 -17
  395. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/EnableRuleCommand.d.ts +30 -17
  396. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListApiDestinationsCommand.d.ts +36 -17
  397. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListArchivesCommand.d.ts +32 -17
  398. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +35 -17
  399. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListEndpointsCommand.d.ts +35 -17
  400. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListEventBusesCommand.d.ts +35 -17
  401. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListEventSourcesCommand.d.ts +35 -17
  402. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListPartnerEventSourceAccountsCommand.d.ts +39 -17
  403. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListPartnerEventSourcesCommand.d.ts +39 -17
  404. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListReplaysCommand.d.ts +32 -17
  405. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListRuleNamesByTargetCommand.d.ts +39 -17
  406. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListRulesCommand.d.ts +32 -17
  407. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  408. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListTargetsByRuleCommand.d.ts +36 -17
  409. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutEventsCommand.d.ts +32 -17
  410. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutPartnerEventsCommand.d.ts +35 -17
  411. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutPermissionCommand.d.ts +30 -17
  412. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutRuleCommand.d.ts +32 -17
  413. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutTargetsCommand.d.ts +32 -17
  414. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
  415. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/RemoveTargetsCommand.d.ts +35 -17
  416. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/StartReplayCommand.d.ts +32 -17
  417. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  418. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/TestEventPatternCommand.d.ts +35 -17
  419. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  420. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateApiDestinationCommand.d.ts +39 -17
  421. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateArchiveCommand.d.ts +35 -17
  422. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateConnectionCommand.d.ts +35 -17
  423. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateEndpointCommand.d.ts +35 -17
  424. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/index.d.ts +56 -56
  425. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/endpoints.d.ts +2 -2
  426. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/index.d.ts +5 -5
  427. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/models/EventBridgeServiceException.d.ts +7 -6
  428. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/models/index.d.ts +1 -1
  429. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/models/models_0.d.ts +1543 -2033
  430. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +677 -170
  431. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  432. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  433. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  434. package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.shared.d.ts +17 -13
  435. package/node_modules/@aws-sdk/client-eventbridge/package.json +37 -36
  436. package/node_modules/@aws-sdk/client-lambda/CHANGELOG.md +91 -0
  437. package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoints.js +1 -0
  438. package/node_modules/@aws-sdk/client-lambda/dist-cjs/protocols/Aws_restJson1.js +3 -0
  439. package/node_modules/@aws-sdk/client-lambda/dist-es/endpoints.js +1 -0
  440. package/node_modules/@aws-sdk/client-lambda/dist-es/protocols/Aws_restJson1.js +3 -0
  441. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +1 -1
  442. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +1 -1
  443. package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +1 -1
  444. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/Lambda.d.ts +1087 -320
  445. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/LambdaClient.d.ts +482 -136
  446. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +39 -17
  447. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +35 -17
  448. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +32 -17
  449. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +39 -17
  450. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +39 -17
  451. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +35 -17
  452. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionUrlConfigCommand.d.ts +39 -17
  453. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +30 -17
  454. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +39 -17
  455. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +39 -17
  456. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +35 -17
  457. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +30 -17
  458. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +35 -17
  459. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +35 -17
  460. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionUrlConfigCommand.d.ts +35 -17
  461. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +31 -17
  462. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +35 -17
  463. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +36 -17
  464. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAliasCommand.d.ts +32 -17
  465. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +39 -17
  466. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +39 -17
  467. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +39 -17
  468. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +32 -17
  469. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +39 -17
  470. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +39 -17
  471. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +39 -17
  472. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionUrlConfigCommand.d.ts +39 -17
  473. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +39 -17
  474. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +35 -17
  475. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +39 -17
  476. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +32 -17
  477. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +39 -17
  478. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +39 -24
  479. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeCommand.d.ts +32 -17
  480. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +32 -17
  481. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +39 -17
  482. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +39 -17
  483. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +39 -17
  484. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionUrlConfigsCommand.d.ts +39 -17
  485. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +39 -17
  486. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +35 -17
  487. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +36 -17
  488. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayersCommand.d.ts +32 -17
  489. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +39 -17
  490. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListTagsCommand.d.ts +32 -17
  491. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +39 -17
  492. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +36 -17
  493. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +35 -17
  494. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +39 -17
  495. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +36 -17
  496. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +39 -17
  497. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +39 -17
  498. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +35 -17
  499. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
  500. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
  501. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
  502. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +32 -17
  503. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +39 -17
  504. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +39 -17
  505. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +36 -17
  506. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +39 -17
  507. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +39 -17
  508. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionUrlConfigCommand.d.ts +39 -17
  509. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/index.d.ts +63 -63
  510. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/endpoints.d.ts +2 -2
  511. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/index.d.ts +7 -7
  512. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/LambdaServiceException.d.ts +7 -6
  513. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/index.d.ts +1 -1
  514. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +1639 -2086
  515. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  516. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +11 -4
  517. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListCodeSigningConfigsPaginator.d.ts +11 -4
  518. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListEventSourceMappingsPaginator.d.ts +11 -4
  519. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +11 -4
  520. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionUrlConfigsPaginator.d.ts +11 -4
  521. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +11 -4
  522. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsPaginator.d.ts +11 -4
  523. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayerVersionsPaginator.d.ts +11 -4
  524. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayersPaginator.d.ts +11 -4
  525. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +11 -4
  526. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListVersionsByFunctionPaginator.d.ts +11 -4
  527. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/index.d.ts +12 -12
  528. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +761 -191
  529. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  530. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  531. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  532. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  533. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/index.d.ts +5 -5
  534. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +11 -7
  535. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActiveV2.d.ts +11 -7
  536. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +11 -7
  537. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +11 -7
  538. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdatedV2.d.ts +11 -7
  539. package/node_modules/@aws-sdk/client-lambda/package.json +36 -35
  540. package/node_modules/@aws-sdk/client-s3/CHANGELOG.md +91 -0
  541. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoints.js +9 -0
  542. package/node_modules/@aws-sdk/client-s3/dist-es/endpoints.js +9 -0
  543. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +1 -1
  544. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +1 -1
  545. package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +1 -1
  546. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +1645 -470
  547. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +684 -184
  548. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +39 -17
  549. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +39 -17
  550. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +32 -17
  551. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +32 -17
  552. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +39 -17
  553. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +35 -17
  554. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +30 -17
  555. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +30 -17
  556. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +34 -17
  557. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +35 -17
  558. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +35 -17
  559. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +34 -17
  560. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +35 -17
  561. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +35 -17
  562. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +31 -17
  563. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +35 -17
  564. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +31 -17
  565. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +31 -17
  566. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +32 -17
  567. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +36 -17
  568. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +32 -17
  569. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +35 -17
  570. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +39 -17
  571. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +32 -17
  572. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +39 -17
  573. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +32 -17
  574. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +36 -17
  575. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +39 -17
  576. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +39 -17
  577. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +39 -17
  578. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +36 -17
  579. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +35 -17
  580. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +39 -17
  581. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +39 -17
  582. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +39 -17
  583. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +35 -17
  584. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +39 -17
  585. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +39 -17
  586. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +39 -17
  587. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +35 -17
  588. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +36 -17
  589. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +35 -17
  590. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +32 -17
  591. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +36 -17
  592. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +32 -17
  593. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +36 -17
  594. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +39 -17
  595. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +36 -17
  596. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +35 -17
  597. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +35 -17
  598. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +39 -17
  599. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +30 -17
  600. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +32 -17
  601. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +39 -17
  602. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +39 -17
  603. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +39 -17
  604. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +39 -17
  605. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +32 -17
  606. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +39 -17
  607. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +36 -17
  608. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +32 -17
  609. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +32 -17
  610. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +32 -17
  611. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +35 -17
  612. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +30 -17
  613. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +35 -17
  614. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +30 -17
  615. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +31 -17
  616. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +35 -17
  617. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +35 -17
  618. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +35 -17
  619. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +30 -17
  620. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +35 -17
  621. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +35 -17
  622. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +35 -17
  623. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +30 -17
  624. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +34 -17
  625. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +35 -17
  626. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +30 -17
  627. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +31 -17
  628. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +30 -17
  629. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +32 -17
  630. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +39 -24
  631. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +36 -17
  632. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +39 -17
  633. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +36 -17
  634. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +35 -17
  635. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +34 -17
  636. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +32 -17
  637. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +36 -17
  638. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +39 -24
  639. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +35 -17
  640. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +41 -24
  641. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +93 -93
  642. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoints.d.ts +2 -2
  643. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +7 -7
  644. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +7 -6
  645. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/index.d.ts +2 -2
  646. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +2578 -3419
  647. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +482 -689
  648. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  649. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectsV2Paginator.d.ts +11 -4
  650. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListPartsPaginator.d.ts +11 -4
  651. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +3 -3
  652. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/protocols/Aws_restXml.d.ts +1124 -281
  653. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +84 -49
  654. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +87 -50
  655. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +85 -48
  656. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -15
  657. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/index.d.ts +4 -4
  658. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +11 -7
  659. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +11 -7
  660. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +11 -7
  661. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +11 -7
  662. package/node_modules/@aws-sdk/client-s3/package.json +52 -51
  663. package/node_modules/@aws-sdk/client-sns/CHANGELOG.md +105 -0
  664. package/node_modules/@aws-sdk/client-sns/dist-cjs/SNS.js +30 -0
  665. package/node_modules/@aws-sdk/client-sns/dist-cjs/commands/GetDataProtectionPolicyCommand.js +36 -0
  666. package/node_modules/@aws-sdk/client-sns/dist-cjs/commands/PutDataProtectionPolicyCommand.js +36 -0
  667. package/node_modules/@aws-sdk/client-sns/dist-cjs/commands/index.js +2 -0
  668. package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoints.js +1 -0
  669. package/node_modules/@aws-sdk/client-sns/dist-cjs/models/models_0.js +14 -2
  670. package/node_modules/@aws-sdk/client-sns/dist-cjs/protocols/Aws_query.js +152 -2
  671. package/node_modules/@aws-sdk/client-sns/dist-es/SNS.js +30 -0
  672. package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetDataProtectionPolicyCommand.js +39 -0
  673. package/node_modules/@aws-sdk/client-sns/dist-es/commands/PutDataProtectionPolicyCommand.js +39 -0
  674. package/node_modules/@aws-sdk/client-sns/dist-es/commands/index.js +2 -0
  675. package/node_modules/@aws-sdk/client-sns/dist-es/endpoints.js +1 -0
  676. package/node_modules/@aws-sdk/client-sns/dist-es/models/models_0.js +3 -0
  677. package/node_modules/@aws-sdk/client-sns/dist-es/protocols/Aws_query.js +199 -8
  678. package/node_modules/@aws-sdk/client-sns/dist-types/SNS.d.ts +14 -0
  679. package/node_modules/@aws-sdk/client-sns/dist-types/SNSClient.d.ts +4 -2
  680. package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetDataProtectionPolicyCommand.d.ts +35 -0
  681. package/node_modules/@aws-sdk/client-sns/dist-types/commands/PutDataProtectionPolicyCommand.d.ts +35 -0
  682. package/node_modules/@aws-sdk/client-sns/dist-types/commands/index.d.ts +2 -0
  683. package/node_modules/@aws-sdk/client-sns/dist-types/models/models_0.d.ts +47 -0
  684. package/node_modules/@aws-sdk/client-sns/dist-types/protocols/Aws_query.d.ts +6 -0
  685. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.browser.d.ts +1 -1
  686. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.d.ts +1 -1
  687. package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.native.d.ts +1 -1
  688. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/SNS.d.ts +724 -205
  689. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/SNSClient.d.ts +355 -113
  690. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +30 -17
  691. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +39 -17
  692. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ConfirmSubscriptionCommand.d.ts +36 -17
  693. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformApplicationCommand.d.ts +39 -17
  694. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformEndpointCommand.d.ts +39 -17
  695. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +39 -17
  696. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateTopicCommand.d.ts +32 -17
  697. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +30 -17
  698. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeletePlatformApplicationCommand.d.ts +35 -17
  699. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +39 -17
  700. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +30 -17
  701. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetDataProtectionPolicyCommand.d.ts +39 -0
  702. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetEndpointAttributesCommand.d.ts +39 -17
  703. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetPlatformApplicationAttributesCommand.d.ts +39 -17
  704. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSAttributesCommand.d.ts +35 -17
  705. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSSandboxAccountStatusCommand.d.ts +39 -17
  706. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSubscriptionAttributesCommand.d.ts +39 -17
  707. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetTopicAttributesCommand.d.ts +36 -17
  708. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListEndpointsByPlatformApplicationCommand.d.ts +39 -17
  709. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListOriginationNumbersCommand.d.ts +39 -17
  710. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPhoneNumbersOptedOutCommand.d.ts +39 -17
  711. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPlatformApplicationsCommand.d.ts +39 -17
  712. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +39 -17
  713. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsByTopicCommand.d.ts +39 -17
  714. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +35 -17
  715. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  716. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTopicsCommand.d.ts +32 -17
  717. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/OptInPhoneNumberCommand.d.ts +35 -17
  718. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishBatchCommand.d.ts +32 -17
  719. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishCommand.d.ts +32 -17
  720. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PutDataProtectionPolicyCommand.d.ts +35 -0
  721. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
  722. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetEndpointAttributesCommand.d.ts +34 -17
  723. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetPlatformApplicationAttributesCommand.d.ts +35 -17
  724. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSMSAttributesCommand.d.ts +35 -17
  725. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSubscriptionAttributesCommand.d.ts +35 -17
  726. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetTopicAttributesCommand.d.ts +31 -17
  727. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SubscribeCommand.d.ts +32 -17
  728. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  729. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +30 -17
  730. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  731. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +39 -17
  732. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/index.d.ts +42 -40
  733. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/endpoints.d.ts +2 -2
  734. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/index.d.ts +6 -6
  735. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/models/SNSServiceException.d.ts +7 -6
  736. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/models/index.d.ts +1 -1
  737. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/models/models_0.d.ts +815 -940
  738. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  739. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListEndpointsByPlatformApplicationPaginator.d.ts +11 -4
  740. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListOriginationNumbersPaginator.d.ts +11 -4
  741. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListPhoneNumbersOptedOutPaginator.d.ts +11 -4
  742. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListPlatformApplicationsPaginator.d.ts +11 -4
  743. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListSMSSandboxPhoneNumbersPaginator.d.ts +11 -4
  744. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListSubscriptionsByTopicPaginator.d.ts +11 -4
  745. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListSubscriptionsPaginator.d.ts +11 -4
  746. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListTopicsPaginator.d.ts +11 -4
  747. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/index.d.ts +9 -9
  748. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/protocols/Aws_query.d.ts +509 -122
  749. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  750. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  751. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  752. package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  753. package/node_modules/@aws-sdk/client-sns/package.json +35 -34
  754. package/node_modules/@aws-sdk/client-sqs/CHANGELOG.md +91 -0
  755. package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoints.js +1 -0
  756. package/node_modules/@aws-sdk/client-sqs/dist-es/endpoints.js +1 -0
  757. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.browser.d.ts +1 -1
  758. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.d.ts +1 -1
  759. package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.native.d.ts +1 -1
  760. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/SQS.d.ts +344 -105
  761. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/SQSClient.d.ts +224 -95
  762. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +30 -17
  763. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +39 -17
  764. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +35 -17
  765. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +32 -17
  766. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +36 -17
  767. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +30 -17
  768. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +30 -17
  769. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +36 -17
  770. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +32 -17
  771. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +39 -17
  772. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +32 -17
  773. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +32 -17
  774. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +30 -17
  775. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +35 -17
  776. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
  777. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +35 -17
  778. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageCommand.d.ts +32 -17
  779. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +31 -17
  780. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/TagQueueCommand.d.ts +30 -17
  781. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +30 -17
  782. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/index.d.ts +20 -20
  783. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/endpoints.d.ts +2 -2
  784. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/index.d.ts +6 -6
  785. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/models/SQSServiceException.d.ts +7 -6
  786. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/models/index.d.ts +1 -1
  787. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/models/models_0.d.ts +452 -545
  788. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  789. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +11 -4
  790. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
  791. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/index.d.ts +3 -3
  792. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/protocols/Aws_query.d.ts +245 -62
  793. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -39
  794. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.d.ts +69 -40
  795. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -38
  796. package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  797. package/node_modules/@aws-sdk/client-sqs/package.json +37 -36
  798. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/CHANGELOG.md +229 -0
  799. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/CONTRIBUTING.md +18 -0
  800. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/LICENSE.md +9 -0
  801. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/README.md +505 -0
  802. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/bin/uuid +2 -0
  803. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/index.js +9 -0
  804. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  805. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  806. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  807. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  808. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/rng.js +19 -0
  809. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  810. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
  811. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  812. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  813. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v35.js +64 -0
  814. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v4.js +24 -0
  815. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  816. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  817. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/version.js +11 -0
  818. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/index.js +9 -0
  819. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/md5.js +13 -0
  820. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/nil.js +1 -0
  821. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/parse.js +35 -0
  822. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/regex.js +1 -0
  823. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/rng.js +12 -0
  824. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  825. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/stringify.js +29 -0
  826. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v1.js +95 -0
  827. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v3.js +4 -0
  828. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v35.js +64 -0
  829. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v4.js +24 -0
  830. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v5.js +4 -0
  831. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/validate.js +7 -0
  832. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/version.js +11 -0
  833. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/index.js +79 -0
  834. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/md5-browser.js +223 -0
  835. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/md5.js +23 -0
  836. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/nil.js +8 -0
  837. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/parse.js +45 -0
  838. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/regex.js +8 -0
  839. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/rng-browser.js +26 -0
  840. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/rng.js +24 -0
  841. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/sha1-browser.js +104 -0
  842. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/sha1.js +23 -0
  843. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/stringify.js +39 -0
  844. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuid.min.js +1 -0
  845. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
  846. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
  847. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
  848. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
  849. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
  850. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
  851. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
  852. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
  853. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
  854. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/uuid-bin.js +85 -0
  855. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v1.js +107 -0
  856. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v3.js +16 -0
  857. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v35.js +78 -0
  858. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v4.js +37 -0
  859. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v5.js +16 -0
  860. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/validate.js +17 -0
  861. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/version.js +21 -0
  862. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/package.json +135 -0
  863. package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/wrapper.mjs +10 -0
  864. package/node_modules/@aws-sdk/client-sso/CHANGELOG.md +80 -0
  865. package/node_modules/@aws-sdk/client-sso/README.md +8 -8
  866. package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoints.js +1 -0
  867. package/node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js +3 -0
  868. package/node_modules/@aws-sdk/client-sso/dist-es/endpoints.js +1 -0
  869. package/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +3 -0
  870. package/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +18 -18
  871. package/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +8 -8
  872. package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +1 -1
  873. package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +2 -2
  874. package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +7 -7
  875. package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +17 -17
  876. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +72 -25
  877. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +119 -74
  878. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +36 -17
  879. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +35 -17
  880. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +32 -17
  881. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +30 -17
  882. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -4
  883. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoints.d.ts +2 -2
  884. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +6 -6
  885. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +7 -6
  886. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -1
  887. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +101 -123
  888. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  889. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -4
  890. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -4
  891. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -3
  892. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -14
  893. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +45 -31
  894. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +45 -31
  895. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +46 -30
  896. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  897. package/node_modules/@aws-sdk/client-sso/package.json +32 -31
  898. package/node_modules/@aws-sdk/client-sts/CHANGELOG.md +96 -0
  899. package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js +15 -2
  900. package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoints.js +1 -0
  901. package/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +32 -5
  902. package/node_modules/@aws-sdk/client-sts/dist-es/endpoints.js +1 -0
  903. package/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +4 -3
  904. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +1 -1
  905. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +1 -1
  906. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +1 -1
  907. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +140 -45
  908. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +151 -81
  909. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +32 -17
  910. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +36 -17
  911. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +39 -17
  912. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +39 -17
  913. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +35 -17
  914. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +36 -17
  915. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +36 -17
  916. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +35 -17
  917. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -8
  918. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +22 -8
  919. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +25 -16
  920. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoints.d.ts +2 -2
  921. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +6 -6
  922. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +7 -6
  923. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -1
  924. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +238 -302
  925. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -26
  926. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  927. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  928. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  929. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  930. package/node_modules/@aws-sdk/client-sts/package.json +38 -35
  931. package/node_modules/@aws-sdk/config-resolver/CHANGELOG.md +59 -0
  932. package/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +1 -1
  933. package/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +1 -1
  934. package/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +2 -1
  935. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -5
  936. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -5
  937. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +4 -4
  938. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +18 -15
  939. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +27 -25
  940. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +13 -11
  941. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/index.d.ts +3 -3
  942. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +8 -5
  943. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -1
  944. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -2
  945. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -1
  946. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +14 -17
  947. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +5 -6
  948. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +1 -2
  949. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +10 -8
  950. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +9 -7
  951. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +9 -6
  952. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +20 -11
  953. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +8 -5
  954. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +8 -5
  955. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +13 -6
  956. package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +3 -3
  957. package/node_modules/@aws-sdk/config-resolver/package.json +8 -7
  958. package/node_modules/@aws-sdk/credential-provider-cognito-identity/CHANGELOG.md +88 -0
  959. package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/CognitoProviderParameters.d.ts +7 -10
  960. package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/InMemoryStorage.d.ts +8 -8
  961. package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/IndexedDbStorage.d.ts +10 -10
  962. package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/Logins.d.ts +3 -3
  963. package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/Storage.d.ts +5 -6
  964. package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/fromCognitoIdentity.d.ts +14 -13
  965. package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/fromCognitoIdentityPool.d.ts +19 -15
  966. package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/index.d.ts +5 -5
  967. package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/localStorage.d.ts +2 -2
  968. package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/resolveLogins.d.ts +2 -3
  969. package/node_modules/@aws-sdk/credential-provider-cognito-identity/package.json +6 -5
  970. package/node_modules/@aws-sdk/credential-provider-env/CHANGELOG.md +48 -0
  971. package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +6 -7
  972. package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -1
  973. package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -4
  974. package/node_modules/@aws-sdk/credential-provider-imds/CHANGELOG.md +48 -0
  975. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +4 -4
  976. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +6 -4
  977. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +4 -4
  978. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +8 -4
  979. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +9 -7
  980. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +6 -5
  981. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/index.d.ts +6 -6
  982. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +11 -9
  983. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +14 -13
  984. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +2 -4
  985. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +2 -2
  986. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +7 -5
  987. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/types.d.ts +4 -4
  988. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -3
  989. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +2 -3
  990. package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +8 -6
  991. package/node_modules/@aws-sdk/credential-provider-imds/package.json +7 -6
  992. package/node_modules/@aws-sdk/credential-provider-ini/CHANGELOG.md +80 -0
  993. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +15 -14
  994. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -1
  995. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +16 -17
  996. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +5 -3
  997. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +8 -3
  998. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +5 -3
  999. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +12 -8
  1000. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -9
  1001. package/node_modules/@aws-sdk/credential-provider-ini/package.json +10 -9
  1002. package/node_modules/@aws-sdk/credential-provider-node/CHANGELOG.md +80 -0
  1003. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +14 -9
  1004. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -1
  1005. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +6 -4
  1006. package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -11
  1007. package/node_modules/@aws-sdk/credential-provider-process/CHANGELOG.md +48 -0
  1008. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +7 -7
  1009. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +6 -6
  1010. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +6 -3
  1011. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -1
  1012. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +5 -2
  1013. package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -5
  1014. package/node_modules/@aws-sdk/credential-provider-sso/CHANGELOG.md +80 -0
  1015. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +15 -18
  1016. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -4
  1017. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -4
  1018. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +9 -3
  1019. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +13 -15
  1020. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +4 -3
  1021. package/node_modules/@aws-sdk/credential-provider-sso/package.json +7 -6
  1022. package/node_modules/@aws-sdk/credential-provider-web-identity/CHANGELOG.md +48 -0
  1023. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +11 -8
  1024. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +32 -30
  1025. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -2
  1026. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +5 -4
  1027. package/node_modules/@aws-sdk/credential-providers/CHANGELOG.md +91 -0
  1028. package/node_modules/@aws-sdk/credential-providers/README.md +29 -0
  1029. package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromIni.js +2 -2
  1030. package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromNodeProviderChain.js +2 -2
  1031. package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromTemporaryCredentials.js +5 -0
  1032. package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromTokenFile.js +1 -1
  1033. package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromWebToken.js +1 -1
  1034. package/node_modules/@aws-sdk/credential-providers/dist-es/fromIni.js +1 -1
  1035. package/node_modules/@aws-sdk/credential-providers/dist-es/fromNodeProviderChain.js +1 -1
  1036. package/node_modules/@aws-sdk/credential-providers/dist-es/fromTemporaryCredentials.js +25 -9
  1037. package/node_modules/@aws-sdk/credential-providers/dist-es/fromTokenFile.js +1 -1
  1038. package/node_modules/@aws-sdk/credential-providers/dist-es/fromWebToken.js +1 -1
  1039. package/node_modules/@aws-sdk/credential-providers/dist-types/fromIni.d.ts +5 -1
  1040. package/node_modules/@aws-sdk/credential-providers/dist-types/fromNodeProviderChain.d.ts +5 -1
  1041. package/node_modules/@aws-sdk/credential-providers/dist-types/fromTemporaryCredentials.d.ts +5 -1
  1042. package/node_modules/@aws-sdk/credential-providers/dist-types/fromTokenFile.d.ts +5 -1
  1043. package/node_modules/@aws-sdk/credential-providers/dist-types/fromWebToken.d.ts +5 -1
  1044. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromCognitoIdentity.d.ts +17 -9
  1045. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromCognitoIdentityPool.d.ts +15 -7
  1046. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromContainerMetadata.d.ts +6 -6
  1047. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromEnv.d.ts +2 -3
  1048. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromIni.d.ts +8 -8
  1049. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromInstanceMetadata.d.ts +5 -4
  1050. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromNodeProviderChain.d.ts +10 -8
  1051. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromProcess.d.ts +6 -6
  1052. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromSSO.d.ts +8 -8
  1053. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromTemporaryCredentials.d.ts +17 -12
  1054. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromTokenFile.d.ts +10 -8
  1055. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromWebToken.d.ts +10 -8
  1056. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/index.d.ts +12 -12
  1057. package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/index.web.d.ts +4 -4
  1058. package/node_modules/@aws-sdk/credential-providers/package.json +17 -16
  1059. package/node_modules/@aws-sdk/endpoint-cache/CHANGELOG.md +16 -0
  1060. package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/Endpoint.d.ts +5 -6
  1061. package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/EndpointCache.d.ts +20 -20
  1062. package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/index.d.ts +2 -2
  1063. package/node_modules/@aws-sdk/endpoint-cache/package.json +3 -2
  1064. package/node_modules/@aws-sdk/eventstream-codec/CHANGELOG.md +48 -0
  1065. package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/EventStreamCodec.d.ts +9 -13
  1066. package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/HeaderMarshaller.d.ts +9 -10
  1067. package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/Int64.d.ts +9 -12
  1068. package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/Message.d.ts +30 -22
  1069. package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/TestVectors.fixture.d.ts +2 -2
  1070. package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/index.d.ts +3 -3
  1071. package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/splitMessage.d.ts +9 -7
  1072. package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/vectorTypes.fixture.d.ts +12 -12
  1073. package/node_modules/@aws-sdk/eventstream-codec/package.json +7 -6
  1074. package/node_modules/@aws-sdk/eventstream-serde-browser/CHANGELOG.md +48 -0
  1075. package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/EventStreamMarshaller.d.ts +23 -15
  1076. package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/index.d.ts +3 -3
  1077. package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/provider.d.ts +2 -3
  1078. package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/utils.d.ts +6 -4
  1079. package/node_modules/@aws-sdk/eventstream-serde-browser/package.json +5 -4
  1080. package/node_modules/@aws-sdk/eventstream-serde-config-resolver/CHANGELOG.md +48 -0
  1081. package/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-types/ts3.4/EventStreamSerdeConfig.d.ts +15 -12
  1082. package/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-types/ts3.4/index.d.ts +1 -1
  1083. package/node_modules/@aws-sdk/eventstream-serde-config-resolver/package.json +4 -3
  1084. package/node_modules/@aws-sdk/eventstream-serde-node/CHANGELOG.md +48 -0
  1085. package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/EventStreamMarshaller.d.ts +24 -15
  1086. package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/index.d.ts +2 -2
  1087. package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/provider.d.ts +2 -3
  1088. package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/utils.d.ts +4 -4
  1089. package/node_modules/@aws-sdk/eventstream-serde-node/package.json +6 -5
  1090. package/node_modules/@aws-sdk/eventstream-serde-universal/CHANGELOG.md +48 -0
  1091. package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/EventStreamMarshaller.d.ts +24 -14
  1092. package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/fixtures/MockEventMessageSource.fixture.d.ts +14 -15
  1093. package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/fixtures/event.fixture.d.ts +4 -5
  1094. package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/getChunkedStream.d.ts +3 -1
  1095. package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/getUnmarshalledStream.d.ts +11 -8
  1096. package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/index.d.ts +2 -2
  1097. package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/provider.d.ts +2 -3
  1098. package/node_modules/@aws-sdk/eventstream-serde-universal/package.json +6 -5
  1099. package/node_modules/@aws-sdk/fetch-http-handler/CHANGELOG.md +48 -0
  1100. package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +21 -16
  1101. package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -2
  1102. package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -1
  1103. package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -2
  1104. package/node_modules/@aws-sdk/fetch-http-handler/package.json +8 -7
  1105. package/node_modules/@aws-sdk/hash-blob-browser/CHANGELOG.md +48 -0
  1106. package/node_modules/@aws-sdk/hash-blob-browser/dist-types/ts3.4/index.d.ts +2 -2
  1107. package/node_modules/@aws-sdk/hash-blob-browser/package.json +7 -6
  1108. package/node_modules/@aws-sdk/hash-node/CHANGELOG.md +48 -0
  1109. package/node_modules/@aws-sdk/hash-node/dist-types/ts3.4/index.d.ts +7 -7
  1110. package/node_modules/@aws-sdk/hash-node/package.json +5 -4
  1111. package/node_modules/@aws-sdk/hash-stream-node/CHANGELOG.md +48 -0
  1112. package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/HashCalculator.d.ts +11 -8
  1113. package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/fileStreamHasher.d.ts +3 -4
  1114. package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/index.d.ts +2 -2
  1115. package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/readableStreamHasher.d.ts +3 -4
  1116. package/node_modules/@aws-sdk/hash-stream-node/package.json +5 -4
  1117. package/node_modules/@aws-sdk/invalid-dependency/CHANGELOG.md +48 -0
  1118. package/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/index.d.ts +2 -2
  1119. package/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +1 -1
  1120. package/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +2 -2
  1121. package/node_modules/@aws-sdk/invalid-dependency/package.json +4 -3
  1122. package/node_modules/@aws-sdk/is-array-buffer/CHANGELOG.md +16 -0
  1123. package/node_modules/@aws-sdk/is-array-buffer/dist-types/ts3.4/index.d.ts +1 -1
  1124. package/node_modules/@aws-sdk/is-array-buffer/package.json +3 -2
  1125. package/node_modules/@aws-sdk/lib-dynamodb/CHANGELOG.md +96 -0
  1126. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/DynamoDBDocument.d.ts +221 -72
  1127. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/DynamoDBDocumentClient.d.ts +104 -33
  1128. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/baseCommand/DynamoDBDocumentClientCommand.d.ts +30 -12
  1129. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +78 -36
  1130. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchGetCommand.d.ts +87 -46
  1131. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +131 -66
  1132. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/DeleteCommand.d.ts +100 -48
  1133. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +56 -27
  1134. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +72 -36
  1135. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/GetCommand.d.ts +55 -26
  1136. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/PutCommand.d.ts +97 -48
  1137. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +87 -42
  1138. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +78 -39
  1139. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/TransactGetCommand.d.ts +77 -41
  1140. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/TransactWriteCommand.d.ts +117 -56
  1141. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/UpdateCommand.d.ts +107 -51
  1142. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/index.d.ts +13 -13
  1143. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/utils.d.ts +18 -10
  1144. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/index.d.ts +4 -4
  1145. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  1146. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -4
  1147. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -4
  1148. package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/index.d.ts +3 -3
  1149. package/node_modules/@aws-sdk/lib-dynamodb/package.json +7 -6
  1150. package/node_modules/@aws-sdk/md5-js/CHANGELOG.md +48 -0
  1151. package/node_modules/@aws-sdk/md5-js/dist-types/ts3.4/constants.d.ts +3 -6
  1152. package/node_modules/@aws-sdk/md5-js/dist-types/ts3.4/index.d.ts +11 -11
  1153. package/node_modules/@aws-sdk/md5-js/package.json +9 -8
  1154. package/node_modules/@aws-sdk/middleware-bucket-endpoint/CHANGELOG.md +48 -0
  1155. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeDisableMultiregionAccessPointConfigOptions.d.ts +6 -4
  1156. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeUseArnRegionConfigOptions.d.ts +4 -5
  1157. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketEndpointMiddleware.d.ts +13 -5
  1158. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketHostname.d.ts +10 -8
  1159. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketHostnameUtils.d.ts +84 -80
  1160. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/configurations.d.ts +31 -43
  1161. package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/index.d.ts +16 -6
  1162. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +9 -8
  1163. package/node_modules/@aws-sdk/middleware-content-length/CHANGELOG.md +48 -0
  1164. package/node_modules/@aws-sdk/middleware-content-length/dist-types/ts3.4/index.d.ts +13 -6
  1165. package/node_modules/@aws-sdk/middleware-content-length/package.json +5 -4
  1166. package/node_modules/@aws-sdk/middleware-endpoint-discovery/CHANGELOG.md +56 -0
  1167. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/configurations.d.ts +4 -2
  1168. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/endpointDiscoveryMiddleware.d.ts +17 -4
  1169. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getCacheKey.d.ts +10 -7
  1170. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getEndpointDiscoveryPlugin.d.ts +41 -14
  1171. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/index.d.ts +3 -3
  1172. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/resolveEndpointDiscoveryConfig.d.ts +25 -30
  1173. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/updateDiscoveredEndpointInCache.d.ts +15 -8
  1174. package/node_modules/@aws-sdk/middleware-endpoint-discovery/package.json +8 -7
  1175. package/node_modules/@aws-sdk/middleware-expect-continue/CHANGELOG.md +48 -0
  1176. package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/ts3.4/index.d.ts +16 -8
  1177. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +5 -4
  1178. package/node_modules/@aws-sdk/middleware-flexible-checksums/CHANGELOG.md +48 -0
  1179. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/configuration.d.ts +16 -17
  1180. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/constants.d.ts +11 -13
  1181. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/flexibleChecksumsMiddleware.d.ts +7 -4
  1182. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksum.d.ts +10 -7
  1183. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksumAlgorithmForRequest.d.ts +12 -9
  1184. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksumAlgorithmListForResponse.d.ts +4 -3
  1185. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksumLocationName.d.ts +4 -3
  1186. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getFlexibleChecksumsPlugin.d.ts +14 -16
  1187. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/hasHeader.d.ts +2 -3
  1188. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/index.d.ts +3 -3
  1189. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/isStreaming.d.ts +1 -2
  1190. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/selectChecksumAlgorithmFunction.d.ts +7 -5
  1191. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/stringHasher.d.ts +5 -3
  1192. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/types.d.ts +3 -5
  1193. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/validateChecksumFromResponse.d.ts +10 -8
  1194. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +6 -5
  1195. package/node_modules/@aws-sdk/middleware-host-header/CHANGELOG.md +48 -0
  1196. package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -15
  1197. package/node_modules/@aws-sdk/middleware-host-header/package.json +5 -4
  1198. package/node_modules/@aws-sdk/middleware-location-constraint/CHANGELOG.md +48 -0
  1199. package/node_modules/@aws-sdk/middleware-location-constraint/dist-types/ts3.4/configuration.d.ts +12 -12
  1200. package/node_modules/@aws-sdk/middleware-location-constraint/dist-types/ts3.4/index.d.ts +13 -6
  1201. package/node_modules/@aws-sdk/middleware-location-constraint/package.json +4 -3
  1202. package/node_modules/@aws-sdk/middleware-logger/CHANGELOG.md +48 -0
  1203. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -1
  1204. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -4
  1205. package/node_modules/@aws-sdk/middleware-logger/package.json +4 -3
  1206. package/node_modules/@aws-sdk/middleware-recursion-detection/CHANGELOG.md +48 -0
  1207. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -9
  1208. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +5 -4
  1209. package/node_modules/@aws-sdk/middleware-retry/CHANGELOG.md +59 -0
  1210. package/node_modules/@aws-sdk/middleware-retry/dist-cjs/StandardRetryStrategy.js +16 -1
  1211. package/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js +18 -3
  1212. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +29 -15
  1213. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +39 -39
  1214. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +37 -25
  1215. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/config.d.ts +6 -8
  1216. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/configurations.d.ts +23 -26
  1217. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/constants.d.ts +9 -18
  1218. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +10 -10
  1219. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -2
  1220. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/index.d.ts +10 -10
  1221. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +15 -4
  1222. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +2 -2
  1223. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +20 -5
  1224. package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/types.d.ts +16 -24
  1225. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/CHANGELOG.md +229 -0
  1226. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/CONTRIBUTING.md +18 -0
  1227. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/LICENSE.md +9 -0
  1228. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/README.md +505 -0
  1229. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/bin/uuid +2 -0
  1230. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/index.js +9 -0
  1231. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  1232. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  1233. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  1234. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  1235. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/rng.js +19 -0
  1236. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  1237. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
  1238. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  1239. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  1240. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v35.js +64 -0
  1241. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v4.js +24 -0
  1242. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  1243. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  1244. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/version.js +11 -0
  1245. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/index.js +9 -0
  1246. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/md5.js +13 -0
  1247. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/nil.js +1 -0
  1248. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/parse.js +35 -0
  1249. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/regex.js +1 -0
  1250. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/rng.js +12 -0
  1251. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  1252. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/stringify.js +29 -0
  1253. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v1.js +95 -0
  1254. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v3.js +4 -0
  1255. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v35.js +64 -0
  1256. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v4.js +24 -0
  1257. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v5.js +4 -0
  1258. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/validate.js +7 -0
  1259. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/version.js +11 -0
  1260. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/index.js +79 -0
  1261. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/md5-browser.js +223 -0
  1262. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/md5.js +23 -0
  1263. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/nil.js +8 -0
  1264. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/parse.js +45 -0
  1265. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/regex.js +8 -0
  1266. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/rng-browser.js +26 -0
  1267. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/rng.js +24 -0
  1268. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/sha1-browser.js +104 -0
  1269. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/sha1.js +23 -0
  1270. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/stringify.js +39 -0
  1271. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuid.min.js +1 -0
  1272. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
  1273. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
  1274. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
  1275. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
  1276. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
  1277. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
  1278. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
  1279. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
  1280. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
  1281. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/uuid-bin.js +85 -0
  1282. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v1.js +107 -0
  1283. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v3.js +16 -0
  1284. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v35.js +78 -0
  1285. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v4.js +37 -0
  1286. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v5.js +16 -0
  1287. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/validate.js +17 -0
  1288. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/version.js +21 -0
  1289. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/package.json +135 -0
  1290. package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/wrapper.mjs +10 -0
  1291. package/node_modules/@aws-sdk/middleware-retry/package.json +8 -7
  1292. package/node_modules/@aws-sdk/middleware-sdk-eventbridge/CHANGELOG.md +48 -0
  1293. package/node_modules/@aws-sdk/middleware-sdk-eventbridge/dist-types/ts3.4/index.d.ts +1 -1
  1294. package/node_modules/@aws-sdk/middleware-sdk-eventbridge/dist-types/ts3.4/inject-endpoint-id.d.ts +22 -14
  1295. package/node_modules/@aws-sdk/middleware-sdk-eventbridge/package.json +5 -4
  1296. package/node_modules/@aws-sdk/middleware-sdk-s3/CHANGELOG.md +62 -0
  1297. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/configuration.js +13 -0
  1298. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -0
  1299. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/throw-200-exceptions.js +1 -1
  1300. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/configuration.js +5 -0
  1301. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -0
  1302. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +1 -1
  1303. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/configuration.d.ts +24 -0
  1304. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +1 -0
  1305. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/check-content-length-header.d.ts +13 -7
  1306. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/configuration.d.ts +13 -0
  1307. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +5 -4
  1308. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +19 -12
  1309. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/validate-bucket-name.d.ts +13 -7
  1310. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/write-get-object-response-endpoint.d.ts +20 -14
  1311. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/write-get-object-response-endpoint.d.ts +1 -1
  1312. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +7 -6
  1313. package/node_modules/@aws-sdk/middleware-sdk-sqs/CHANGELOG.md +48 -0
  1314. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/configurations.d.ts +4 -4
  1315. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/index.d.ts +3 -3
  1316. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/receive-message.d.ts +13 -5
  1317. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/send-message-batch.d.ts +13 -5
  1318. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/send-message.d.ts +13 -5
  1319. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +5 -4
  1320. package/node_modules/@aws-sdk/middleware-sdk-sts/CHANGELOG.md +64 -0
  1321. package/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/ts3.4/index.d.ts +33 -25
  1322. package/node_modules/@aws-sdk/middleware-sdk-sts/package.json +8 -7
  1323. package/node_modules/@aws-sdk/middleware-serde/CHANGELOG.md +51 -0
  1324. package/node_modules/@aws-sdk/middleware-serde/dist-cjs/serializerMiddleware.js +8 -1
  1325. package/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js +15 -5
  1326. package/node_modules/@aws-sdk/middleware-serde/dist-types/serdePlugin.d.ts +5 -2
  1327. package/node_modules/@aws-sdk/middleware-serde/dist-types/serializerMiddleware.d.ts +2 -1
  1328. package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +9 -2
  1329. package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/index.d.ts +3 -3
  1330. package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +24 -4
  1331. package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +14 -2
  1332. package/node_modules/@aws-sdk/middleware-serde/package.json +4 -3
  1333. package/node_modules/@aws-sdk/middleware-signing/CHANGELOG.md +70 -0
  1334. package/node_modules/@aws-sdk/middleware-signing/dist-cjs/configurations.js +30 -15
  1335. package/node_modules/@aws-sdk/middleware-signing/dist-cjs/middleware.js +3 -1
  1336. package/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js +21 -10
  1337. package/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js +13 -11
  1338. package/node_modules/@aws-sdk/middleware-signing/dist-types/configurations.d.ts +5 -5
  1339. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/configurations.d.ts +62 -58
  1340. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts +2 -2
  1341. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/middleware.d.ts +19 -6
  1342. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts +1 -2
  1343. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts +4 -2
  1344. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts +4 -2
  1345. package/node_modules/@aws-sdk/middleware-signing/package.json +9 -7
  1346. package/node_modules/@aws-sdk/middleware-ssec/CHANGELOG.md +48 -0
  1347. package/node_modules/@aws-sdk/middleware-ssec/dist-types/ts3.4/index.d.ts +21 -10
  1348. package/node_modules/@aws-sdk/middleware-ssec/package.json +4 -3
  1349. package/node_modules/@aws-sdk/middleware-stack/CHANGELOG.md +51 -0
  1350. package/node_modules/@aws-sdk/middleware-stack/dist-cjs/MiddlewareStack.js +13 -3
  1351. package/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js +14 -3
  1352. package/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -2
  1353. package/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/index.d.ts +1 -1
  1354. package/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/types.d.ts +47 -22
  1355. package/node_modules/@aws-sdk/middleware-stack/package.json +4 -3
  1356. package/node_modules/@aws-sdk/middleware-user-agent/CHANGELOG.md +48 -0
  1357. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -19
  1358. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +4 -4
  1359. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -2
  1360. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -6
  1361. package/node_modules/@aws-sdk/middleware-user-agent/package.json +6 -5
  1362. package/node_modules/@aws-sdk/node-config-provider/CHANGELOG.md +48 -0
  1363. package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/configLoader.d.ts +18 -14
  1364. package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -5
  1365. package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +10 -9
  1366. package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +5 -3
  1367. package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/index.d.ts +1 -1
  1368. package/node_modules/@aws-sdk/node-config-provider/package.json +6 -5
  1369. package/node_modules/@aws-sdk/node-http-handler/CHANGELOG.md +48 -0
  1370. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/constants.d.ts +1 -2
  1371. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +6 -4
  1372. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/index.d.ts +3 -3
  1373. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +28 -27
  1374. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +28 -30
  1375. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +12 -13
  1376. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/server.mock.d.ts +17 -10
  1377. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +6 -2
  1378. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +6 -2
  1379. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +9 -6
  1380. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -2
  1381. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +12 -13
  1382. package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +7 -5
  1383. package/node_modules/@aws-sdk/node-http-handler/package.json +7 -6
  1384. package/node_modules/@aws-sdk/property-provider/CHANGELOG.md +48 -0
  1385. package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +6 -7
  1386. package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/ProviderError.d.ts +6 -7
  1387. package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +6 -7
  1388. package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/chain.d.ts +2 -3
  1389. package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/fromStatic.d.ts +2 -2
  1390. package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/index.d.ts +6 -6
  1391. package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/memoize.d.ts +11 -9
  1392. package/node_modules/@aws-sdk/property-provider/package.json +4 -3
  1393. package/node_modules/@aws-sdk/protocol-http/CHANGELOG.md +48 -0
  1394. package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpHandler.d.ts +8 -4
  1395. package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpRequest.d.ts +26 -20
  1396. package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpResponse.d.ts +17 -14
  1397. package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/index.d.ts +4 -4
  1398. package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -1
  1399. package/node_modules/@aws-sdk/protocol-http/package.json +4 -3
  1400. package/node_modules/@aws-sdk/querystring-builder/CHANGELOG.md +48 -0
  1401. package/node_modules/@aws-sdk/querystring-builder/dist-types/ts3.4/index.d.ts +2 -2
  1402. package/node_modules/@aws-sdk/querystring-builder/package.json +5 -4
  1403. package/node_modules/@aws-sdk/querystring-parser/CHANGELOG.md +48 -0
  1404. package/node_modules/@aws-sdk/querystring-parser/dist-types/ts3.4/index.d.ts +4 -2
  1405. package/node_modules/@aws-sdk/querystring-parser/package.json +4 -3
  1406. package/node_modules/@aws-sdk/service-error-classification/CHANGELOG.md +48 -0
  1407. package/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/constants.d.ts +4 -8
  1408. package/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/index.d.ts +5 -5
  1409. package/node_modules/@aws-sdk/service-error-classification/package.json +4 -3
  1410. package/node_modules/@aws-sdk/shared-ini-file-loader/CHANGELOG.md +48 -0
  1411. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -2
  1412. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -2
  1413. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +1 -2
  1414. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getProfileData.d.ts +2 -3
  1415. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +3 -5
  1416. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +1 -2
  1417. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +13 -21
  1418. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +2 -3
  1419. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +8 -8
  1420. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +8 -8
  1421. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +7 -6
  1422. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -2
  1423. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +8 -8
  1424. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +1 -1
  1425. package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +8 -7
  1426. package/node_modules/@aws-sdk/shared-ini-file-loader/package.json +4 -3
  1427. package/node_modules/@aws-sdk/signature-v4/CHANGELOG.md +59 -0
  1428. package/node_modules/@aws-sdk/signature-v4/dist-cjs/SignatureV4.js +10 -0
  1429. package/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js +10 -0
  1430. package/node_modules/@aws-sdk/signature-v4/dist-types/SignatureV4.d.ts +1 -0
  1431. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +63 -39
  1432. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +9 -4
  1433. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/constants.d.ts +43 -43
  1434. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +14 -7
  1435. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +6 -3
  1436. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +2 -3
  1437. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -3
  1438. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/headerUtil.d.ts +13 -4
  1439. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/index.d.ts +7 -7
  1440. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +9 -7
  1441. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +2 -3
  1442. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -14
  1443. package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -2
  1444. package/node_modules/@aws-sdk/signature-v4/package.json +10 -9
  1445. package/node_modules/@aws-sdk/signature-v4-multi-region/CHANGELOG.md +56 -0
  1446. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4MultiRegion.d.ts +29 -15
  1447. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +1 -1
  1448. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +8 -7
  1449. package/node_modules/@aws-sdk/smithy-client/CHANGELOG.md +59 -0
  1450. package/node_modules/@aws-sdk/smithy-client/dist-cjs/parse-utils.js +56 -9
  1451. package/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js +56 -9
  1452. package/node_modules/@aws-sdk/smithy-client/dist-types/parse-utils.d.ts +21 -0
  1453. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/client.d.ts +56 -16
  1454. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/command.d.ts +29 -6
  1455. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/constants.d.ts +1 -1
  1456. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/date-utils.d.ts +4 -8
  1457. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +6 -2
  1458. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +16 -12
  1459. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +1 -2
  1460. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/exceptions.d.ts +33 -16
  1461. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +1 -2
  1462. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +1 -2
  1463. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +1 -2
  1464. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/index.d.ts +18 -18
  1465. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/lazy-json.d.ts +10 -12
  1466. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/object-mapping.d.ts +39 -38
  1467. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/parse-utils.d.ts +62 -49
  1468. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/resolve-path.d.ts +8 -1
  1469. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/ser-utils.d.ts +1 -2
  1470. package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/split-every.d.ts +5 -2
  1471. package/node_modules/@aws-sdk/smithy-client/package.json +5 -4
  1472. package/node_modules/@aws-sdk/types/CHANGELOG.md +57 -0
  1473. package/node_modules/@aws-sdk/types/dist-cjs/auth.js +2 -0
  1474. package/node_modules/@aws-sdk/types/dist-cjs/index.js +1 -0
  1475. package/{lib/cli/ws.d.ts → node_modules/@aws-sdk/types/dist-es/auth.js} +0 -0
  1476. package/node_modules/@aws-sdk/types/dist-es/index.js +1 -0
  1477. package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +18 -0
  1478. package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +7 -5
  1479. package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +33 -0
  1480. package/node_modules/@aws-sdk/types/dist-types/index.d.ts +1 -0
  1481. package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +12 -0
  1482. package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +13 -0
  1483. package/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +11 -17
  1484. package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +6 -0
  1485. package/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +52 -17
  1486. package/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +17 -7
  1487. package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +10 -13
  1488. package/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +14 -20
  1489. package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +43 -14
  1490. package/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +99 -83
  1491. package/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +33 -40
  1492. package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +22 -21
  1493. package/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +17 -14
  1494. package/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +207 -155
  1495. package/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +8 -11
  1496. package/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +7 -9
  1497. package/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +11 -18
  1498. package/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +40 -37
  1499. package/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +24 -26
  1500. package/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +40 -47
  1501. package/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +15 -13
  1502. package/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +6 -9
  1503. package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +18 -12
  1504. package/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +50 -62
  1505. package/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +9 -15
  1506. package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -1
  1507. package/node_modules/@aws-sdk/types/package.json +3 -2
  1508. package/node_modules/@aws-sdk/url-parser/CHANGELOG.md +51 -0
  1509. package/node_modules/@aws-sdk/url-parser/dist-cjs/index.js +4 -1
  1510. package/node_modules/@aws-sdk/url-parser/dist-es/index.js +4 -1
  1511. package/node_modules/@aws-sdk/url-parser/dist-types/ts3.4/index.d.ts +2 -2
  1512. package/node_modules/@aws-sdk/url-parser/package.json +5 -4
  1513. package/node_modules/@aws-sdk/util-arn-parser/CHANGELOG.md +16 -0
  1514. package/node_modules/@aws-sdk/util-arn-parser/dist-types/ts3.4/index.d.ts +17 -17
  1515. package/node_modules/@aws-sdk/util-arn-parser/package.json +3 -2
  1516. package/node_modules/@aws-sdk/util-base64-browser/CHANGELOG.md +16 -0
  1517. package/node_modules/@aws-sdk/util-base64-browser/dist-types/ts3.4/index.d.ts +3 -4
  1518. package/node_modules/@aws-sdk/util-base64-browser/package.json +3 -2
  1519. package/node_modules/@aws-sdk/util-base64-node/CHANGELOG.md +16 -0
  1520. package/node_modules/@aws-sdk/util-base64-node/dist-types/ts3.4/index.d.ts +3 -4
  1521. package/node_modules/@aws-sdk/util-base64-node/package.json +4 -3
  1522. package/node_modules/@aws-sdk/util-body-length-browser/CHANGELOG.md +16 -0
  1523. package/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +1 -1
  1524. package/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/index.d.ts +1 -1
  1525. package/node_modules/@aws-sdk/util-body-length-browser/package.json +3 -2
  1526. package/node_modules/@aws-sdk/util-body-length-node/CHANGELOG.md +16 -0
  1527. package/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +1 -1
  1528. package/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/index.d.ts +1 -1
  1529. package/node_modules/@aws-sdk/util-body-length-node/package.json +3 -2
  1530. package/node_modules/@aws-sdk/util-buffer-from/CHANGELOG.md +16 -0
  1531. package/node_modules/@aws-sdk/util-buffer-from/dist-types/ts3.4/index.d.ts +19 -4
  1532. package/node_modules/@aws-sdk/util-buffer-from/package.json +4 -3
  1533. package/node_modules/@aws-sdk/util-config-provider/CHANGELOG.md +16 -0
  1534. package/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +10 -6
  1535. package/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/index.d.ts +1 -1
  1536. package/node_modules/@aws-sdk/util-config-provider/package.json +3 -2
  1537. package/node_modules/@aws-sdk/util-defaults-mode-browser/CHANGELOG.md +56 -0
  1538. package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +6 -7
  1539. package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +1 -1
  1540. package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +8 -8
  1541. package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +8 -8
  1542. package/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +6 -5
  1543. package/node_modules/@aws-sdk/util-defaults-mode-node/CHANGELOG.md +64 -0
  1544. package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +6 -6
  1545. package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +3 -3
  1546. package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +1 -1
  1547. package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +10 -9
  1548. package/node_modules/@aws-sdk/util-defaults-mode-node/package.json +9 -8
  1549. package/node_modules/@aws-sdk/util-dynamodb/CHANGELOG.md +99 -0
  1550. package/node_modules/@aws-sdk/util-dynamodb/dist-types/models.d.ts +9 -0
  1551. package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/convertToAttr.d.ts +7 -5
  1552. package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/convertToNative.d.ts +7 -5
  1553. package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/index.d.ts +5 -5
  1554. package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/marshall.d.ts +52 -25
  1555. package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/models.d.ts +44 -12
  1556. package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/unmarshall.d.ts +9 -9
  1557. package/node_modules/@aws-sdk/util-dynamodb/package.json +4 -3
  1558. package/node_modules/@aws-sdk/util-hex-encoding/CHANGELOG.md +16 -0
  1559. package/node_modules/@aws-sdk/util-hex-encoding/dist-types/ts3.4/index.d.ts +3 -4
  1560. package/node_modules/@aws-sdk/util-hex-encoding/package.json +3 -2
  1561. package/node_modules/@aws-sdk/util-locate-window/CHANGELOG.md +16 -0
  1562. package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +1 -2
  1563. package/node_modules/@aws-sdk/util-locate-window/package.json +3 -2
  1564. package/node_modules/@aws-sdk/util-middleware/CHANGELOG.md +51 -0
  1565. package/node_modules/@aws-sdk/util-middleware/dist-types/normalizeProvider.d.ts +3 -0
  1566. package/node_modules/@aws-sdk/util-middleware/dist-types/ts3.4/index.d.ts +1 -1
  1567. package/node_modules/@aws-sdk/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +4 -2
  1568. package/node_modules/@aws-sdk/util-middleware/package.json +4 -3
  1569. package/node_modules/@aws-sdk/util-stream-browser/CHANGELOG.md +48 -0
  1570. package/node_modules/@aws-sdk/util-stream-browser/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +2 -2
  1571. package/node_modules/@aws-sdk/util-stream-browser/dist-types/ts3.4/index.d.ts +2 -2
  1572. package/node_modules/@aws-sdk/util-stream-browser/dist-types/ts3.4/sdk-stream-mixin.d.ts +4 -3
  1573. package/node_modules/@aws-sdk/util-stream-browser/package.json +8 -7
  1574. package/node_modules/@aws-sdk/util-stream-node/CHANGELOG.md +48 -0
  1575. package/node_modules/@aws-sdk/util-stream-node/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +3 -4
  1576. package/node_modules/@aws-sdk/util-stream-node/dist-types/ts3.4/index.d.ts +2 -2
  1577. package/node_modules/@aws-sdk/util-stream-node/dist-types/ts3.4/sdk-stream-mixin.d.ts +3 -4
  1578. package/node_modules/@aws-sdk/util-stream-node/package.json +6 -5
  1579. package/node_modules/@aws-sdk/util-uri-escape/CHANGELOG.md +16 -0
  1580. package/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +1 -1
  1581. package/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +1 -1
  1582. package/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/index.d.ts +2 -2
  1583. package/node_modules/@aws-sdk/util-uri-escape/package.json +3 -2
  1584. package/node_modules/@aws-sdk/util-user-agent-browser/CHANGELOG.md +48 -0
  1585. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -4
  1586. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +6 -4
  1587. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -4
  1588. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +5 -4
  1589. package/node_modules/@aws-sdk/util-user-agent-node/CHANGELOG.md +48 -0
  1590. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -10
  1591. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -2
  1592. package/node_modules/@aws-sdk/util-user-agent-node/package.json +6 -5
  1593. package/node_modules/@aws-sdk/util-utf8-browser/CHANGELOG.md +16 -0
  1594. package/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/index.d.ts +2 -2
  1595. package/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/pureJs.d.ts +3 -4
  1596. package/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/whatwgEncodingApi.d.ts +2 -2
  1597. package/node_modules/@aws-sdk/util-utf8-browser/package.json +3 -2
  1598. package/node_modules/@aws-sdk/util-utf8-node/CHANGELOG.md +16 -0
  1599. package/node_modules/@aws-sdk/util-utf8-node/dist-types/ts3.4/index.d.ts +2 -2
  1600. package/node_modules/@aws-sdk/util-utf8-node/package.json +4 -3
  1601. package/node_modules/@aws-sdk/util-waiter/CHANGELOG.md +48 -0
  1602. package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/createWaiter.d.ts +6 -3
  1603. package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/index.d.ts +2 -2
  1604. package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/poller.d.ts +13 -3
  1605. package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/index.d.ts +2 -2
  1606. package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +1 -1
  1607. package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/validate.d.ts +4 -3
  1608. package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/waiter.d.ts +20 -24
  1609. package/node_modules/@aws-sdk/util-waiter/package.json +5 -4
  1610. package/node_modules/@aws-sdk/xml-builder/CHANGELOG.md +16 -0
  1611. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +14 -14
  1612. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +7 -7
  1613. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -2
  1614. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -2
  1615. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -2
  1616. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -3
  1617. package/node_modules/@aws-sdk/xml-builder/package.json +3 -2
  1618. package/node_modules/@serverless-stack/node/README.md +5 -0
  1619. package/node_modules/@serverless-stack/node/auth/adapter/adapter.d.ts +3 -0
  1620. package/node_modules/@serverless-stack/node/auth/adapter/adapter.js +3 -0
  1621. package/node_modules/@serverless-stack/node/auth/adapter/github.d.ts +2 -0
  1622. package/node_modules/@serverless-stack/node/auth/adapter/github.js +21 -0
  1623. package/node_modules/@serverless-stack/node/auth/adapter/google.d.ts +9 -0
  1624. package/node_modules/@serverless-stack/node/auth/adapter/google.js +18 -0
  1625. package/node_modules/@serverless-stack/node/auth/adapter/link.d.ts +8 -0
  1626. package/node_modules/@serverless-stack/node/auth/adapter/link.js +41 -0
  1627. package/node_modules/@serverless-stack/node/auth/adapter/oauth.d.ts +25 -0
  1628. package/node_modules/@serverless-stack/node/auth/adapter/oauth.js +52 -0
  1629. package/node_modules/@serverless-stack/node/auth/adapter/oidc.d.ts +17 -0
  1630. package/node_modules/@serverless-stack/node/auth/adapter/oidc.js +50 -0
  1631. package/node_modules/@serverless-stack/node/auth/adapter/twitch.d.ts +2 -0
  1632. package/node_modules/@serverless-stack/node/auth/adapter/twitch.js +11 -0
  1633. package/node_modules/@serverless-stack/node/auth/auth.d.ts +21 -0
  1634. package/node_modules/@serverless-stack/node/auth/auth.js +44 -0
  1635. package/node_modules/@serverless-stack/node/auth/index.d.ts +10 -7
  1636. package/node_modules/@serverless-stack/node/auth/index.js +10 -19
  1637. package/node_modules/@serverless-stack/node/auth/session.d.ts +76 -0
  1638. package/node_modules/@serverless-stack/node/auth/session.js +111 -0
  1639. package/node_modules/@serverless-stack/node/context/context.d.ts +12 -0
  1640. package/node_modules/@serverless-stack/node/context/context.js +66 -0
  1641. package/node_modules/@serverless-stack/node/context/handler.d.ts +16 -0
  1642. package/node_modules/@serverless-stack/node/context/handler.js +18 -0
  1643. package/node_modules/@serverless-stack/node/context/http.d.ts +14 -0
  1644. package/node_modules/@serverless-stack/node/context/http.js +65 -0
  1645. package/node_modules/@serverless-stack/node/context/index.d.ts +3 -0
  1646. package/node_modules/@serverless-stack/node/context/index.js +3 -0
  1647. package/node_modules/@serverless-stack/node/graphql/index.d.ts +28 -9
  1648. package/node_modules/@serverless-stack/node/graphql/index.js +15 -29
  1649. package/node_modules/@serverless-stack/node/job/index.d.ts +31 -0
  1650. package/node_modules/@serverless-stack/node/job/index.js +51 -0
  1651. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/CHANGELOG.md +1104 -0
  1652. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/LICENSE +201 -0
  1653. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/README.md +4 -0
  1654. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-cjs/AbortController.js +13 -0
  1655. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-cjs/AbortSignal.js +24 -0
  1656. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-cjs/index.js +5 -0
  1657. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-es/AbortController.js +11 -0
  1658. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-es/AbortSignal.js +26 -0
  1659. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-es/index.js +2 -0
  1660. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/AbortController.d.ts +6 -0
  1661. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/AbortSignal.d.ts +14 -0
  1662. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/index.d.ts +2 -0
  1663. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortController.d.ts +6 -0
  1664. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +10 -0
  1665. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/index.d.ts +2 -0
  1666. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/package.json +49 -0
  1667. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/CHANGELOG.md +3476 -0
  1668. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/LICENSE +201 -0
  1669. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/README.md +269 -0
  1670. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/Lambda.js +877 -0
  1671. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/LambdaClient.js +35 -0
  1672. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/AddLayerVersionPermissionCommand.js +36 -0
  1673. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/AddPermissionCommand.js +36 -0
  1674. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateAliasCommand.js +36 -0
  1675. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateCodeSigningConfigCommand.js +36 -0
  1676. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateEventSourceMappingCommand.js +36 -0
  1677. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateFunctionCommand.js +36 -0
  1678. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteAliasCommand.js +36 -0
  1679. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteCodeSigningConfigCommand.js +36 -0
  1680. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteEventSourceMappingCommand.js +36 -0
  1681. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionCodeSigningConfigCommand.js +36 -0
  1682. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionCommand.js +36 -0
  1683. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionConcurrencyCommand.js +36 -0
  1684. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionEventInvokeConfigCommand.js +36 -0
  1685. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteLayerVersionCommand.js +36 -0
  1686. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteProvisionedConcurrencyConfigCommand.js +36 -0
  1687. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetAccountSettingsCommand.js +36 -0
  1688. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetAliasCommand.js +36 -0
  1689. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetCodeSigningConfigCommand.js +36 -0
  1690. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetEventSourceMappingCommand.js +36 -0
  1691. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionCodeSigningConfigCommand.js +36 -0
  1692. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionCommand.js +36 -0
  1693. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionConcurrencyCommand.js +36 -0
  1694. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionConfigurationCommand.js +36 -0
  1695. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionEventInvokeConfigCommand.js +36 -0
  1696. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetLayerVersionByArnCommand.js +36 -0
  1697. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetLayerVersionCommand.js +36 -0
  1698. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetLayerVersionPolicyCommand.js +36 -0
  1699. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetPolicyCommand.js +36 -0
  1700. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetProvisionedConcurrencyConfigCommand.js +36 -0
  1701. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/InvokeAsyncCommand.js +36 -0
  1702. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/InvokeCommand.js +36 -0
  1703. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListAliasesCommand.js +36 -0
  1704. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListCodeSigningConfigsCommand.js +36 -0
  1705. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListEventSourceMappingsCommand.js +36 -0
  1706. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListFunctionEventInvokeConfigsCommand.js +36 -0
  1707. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListFunctionsByCodeSigningConfigCommand.js +36 -0
  1708. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListFunctionsCommand.js +36 -0
  1709. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListLayerVersionsCommand.js +36 -0
  1710. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListLayersCommand.js +36 -0
  1711. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListProvisionedConcurrencyConfigsCommand.js +36 -0
  1712. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListTagsCommand.js +36 -0
  1713. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListVersionsByFunctionCommand.js +36 -0
  1714. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PublishLayerVersionCommand.js +36 -0
  1715. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PublishVersionCommand.js +36 -0
  1716. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutFunctionCodeSigningConfigCommand.js +36 -0
  1717. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutFunctionConcurrencyCommand.js +36 -0
  1718. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutFunctionEventInvokeConfigCommand.js +36 -0
  1719. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutProvisionedConcurrencyConfigCommand.js +36 -0
  1720. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/RemoveLayerVersionPermissionCommand.js +36 -0
  1721. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/RemovePermissionCommand.js +36 -0
  1722. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/TagResourceCommand.js +36 -0
  1723. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UntagResourceCommand.js +36 -0
  1724. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateAliasCommand.js +36 -0
  1725. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateCodeSigningConfigCommand.js +36 -0
  1726. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateEventSourceMappingCommand.js +36 -0
  1727. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateFunctionCodeCommand.js +36 -0
  1728. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateFunctionConfigurationCommand.js +36 -0
  1729. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateFunctionEventInvokeConfigCommand.js +36 -0
  1730. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/index.js +61 -0
  1731. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoints.js +207 -0
  1732. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +9 -0
  1733. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/models/index.js +4 -0
  1734. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/models/models_0.js +1133 -0
  1735. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/Interfaces.js +2 -0
  1736. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListAliasesPaginator.js +35 -0
  1737. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListCodeSigningConfigsPaginator.js +35 -0
  1738. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListEventSourceMappingsPaginator.js +35 -0
  1739. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListFunctionEventInvokeConfigsPaginator.js +35 -0
  1740. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListFunctionsByCodeSigningConfigPaginator.js +35 -0
  1741. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListFunctionsPaginator.js +35 -0
  1742. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListLayerVersionsPaginator.js +35 -0
  1743. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListLayersPaginator.js +35 -0
  1744. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListProvisionedConcurrencyConfigsPaginator.js +35 -0
  1745. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListVersionsByFunctionPaginator.js +35 -0
  1746. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/index.js +14 -0
  1747. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/protocols/Aws_restJson1.js +9556 -0
  1748. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +40 -0
  1749. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +44 -0
  1750. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +16 -0
  1751. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +17 -0
  1752. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/index.js +6 -0
  1753. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/waitForFunctionActive.js +54 -0
  1754. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/waitForFunctionExists.js +31 -0
  1755. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/waitForFunctionUpdated.js +54 -0
  1756. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/Lambda.js +880 -0
  1757. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/LambdaClient.js +37 -0
  1758. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddLayerVersionPermissionCommand.js +39 -0
  1759. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddPermissionCommand.js +39 -0
  1760. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateAliasCommand.js +39 -0
  1761. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateCodeSigningConfigCommand.js +39 -0
  1762. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateEventSourceMappingCommand.js +39 -0
  1763. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateFunctionCommand.js +39 -0
  1764. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteAliasCommand.js +39 -0
  1765. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteCodeSigningConfigCommand.js +39 -0
  1766. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteEventSourceMappingCommand.js +39 -0
  1767. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCodeSigningConfigCommand.js +39 -0
  1768. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCommand.js +39 -0
  1769. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionConcurrencyCommand.js +39 -0
  1770. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionEventInvokeConfigCommand.js +39 -0
  1771. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteLayerVersionCommand.js +39 -0
  1772. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteProvisionedConcurrencyConfigCommand.js +39 -0
  1773. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAccountSettingsCommand.js +39 -0
  1774. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAliasCommand.js +39 -0
  1775. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetCodeSigningConfigCommand.js +39 -0
  1776. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetEventSourceMappingCommand.js +39 -0
  1777. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCodeSigningConfigCommand.js +39 -0
  1778. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCommand.js +39 -0
  1779. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConcurrencyCommand.js +39 -0
  1780. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConfigurationCommand.js +39 -0
  1781. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionEventInvokeConfigCommand.js +39 -0
  1782. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionByArnCommand.js +39 -0
  1783. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionCommand.js +39 -0
  1784. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionPolicyCommand.js +39 -0
  1785. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetPolicyCommand.js +39 -0
  1786. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetProvisionedConcurrencyConfigCommand.js +39 -0
  1787. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeAsyncCommand.js +39 -0
  1788. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeCommand.js +39 -0
  1789. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListAliasesCommand.js +39 -0
  1790. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListCodeSigningConfigsCommand.js +39 -0
  1791. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListEventSourceMappingsCommand.js +39 -0
  1792. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionEventInvokeConfigsCommand.js +39 -0
  1793. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsByCodeSigningConfigCommand.js +39 -0
  1794. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsCommand.js +39 -0
  1795. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayerVersionsCommand.js +39 -0
  1796. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayersCommand.js +39 -0
  1797. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListProvisionedConcurrencyConfigsCommand.js +39 -0
  1798. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListTagsCommand.js +39 -0
  1799. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListVersionsByFunctionCommand.js +39 -0
  1800. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishLayerVersionCommand.js +39 -0
  1801. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishVersionCommand.js +39 -0
  1802. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionCodeSigningConfigCommand.js +39 -0
  1803. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionConcurrencyCommand.js +39 -0
  1804. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionEventInvokeConfigCommand.js +39 -0
  1805. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutProvisionedConcurrencyConfigCommand.js +39 -0
  1806. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemoveLayerVersionPermissionCommand.js +39 -0
  1807. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemovePermissionCommand.js +39 -0
  1808. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/TagResourceCommand.js +39 -0
  1809. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UntagResourceCommand.js +39 -0
  1810. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateAliasCommand.js +39 -0
  1811. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateCodeSigningConfigCommand.js +39 -0
  1812. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateEventSourceMappingCommand.js +39 -0
  1813. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionCodeCommand.js +39 -0
  1814. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionConfigurationCommand.js +39 -0
  1815. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionEventInvokeConfigCommand.js +39 -0
  1816. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/index.js +58 -0
  1817. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/endpoints.js +203 -0
  1818. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/index.js +6 -0
  1819. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/models/index.js +1 -0
  1820. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/models/models_0.js +788 -0
  1821. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/Interfaces.js +1 -0
  1822. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListAliasesPaginator.js +74 -0
  1823. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListCodeSigningConfigsPaginator.js +74 -0
  1824. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListEventSourceMappingsPaginator.js +74 -0
  1825. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListFunctionEventInvokeConfigsPaginator.js +74 -0
  1826. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListFunctionsByCodeSigningConfigPaginator.js +74 -0
  1827. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListFunctionsPaginator.js +74 -0
  1828. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListLayerVersionsPaginator.js +74 -0
  1829. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListLayersPaginator.js +74 -0
  1830. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListProvisionedConcurrencyConfigsPaginator.js +74 -0
  1831. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListVersionsByFunctionPaginator.js +74 -0
  1832. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/index.js +11 -0
  1833. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/protocols/Aws_restJson1.js +10456 -0
  1834. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.browser.js +17 -0
  1835. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.js +21 -0
  1836. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.native.js +8 -0
  1837. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.shared.js +13 -0
  1838. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/index.js +3 -0
  1839. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionActive.js +69 -0
  1840. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionExists.js +45 -0
  1841. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionUpdated.js +69 -0
  1842. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/Lambda.d.ts +890 -0
  1843. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/LambdaClient.d.ts +263 -0
  1844. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +40 -0
  1845. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +47 -0
  1846. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +40 -0
  1847. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +37 -0
  1848. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +138 -0
  1849. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +81 -0
  1850. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +35 -0
  1851. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +36 -0
  1852. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +38 -0
  1853. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +35 -0
  1854. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCommand.d.ts +40 -0
  1855. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +35 -0
  1856. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +36 -0
  1857. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +37 -0
  1858. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +35 -0
  1859. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAccountSettingsCommand.d.ts +35 -0
  1860. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAliasCommand.d.ts +35 -0
  1861. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCodeSigningConfigCommand.d.ts +35 -0
  1862. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +36 -0
  1863. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +35 -0
  1864. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +37 -0
  1865. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +36 -0
  1866. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +37 -0
  1867. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +36 -0
  1868. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +37 -0
  1869. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +37 -0
  1870. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +36 -0
  1871. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetPolicyCommand.d.ts +35 -0
  1872. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +35 -0
  1873. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +51 -0
  1874. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +61 -0
  1875. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListAliasesCommand.d.ts +36 -0
  1876. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +37 -0
  1877. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +36 -0
  1878. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +36 -0
  1879. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +36 -0
  1880. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +43 -0
  1881. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +38 -0
  1882. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +40 -0
  1883. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +35 -0
  1884. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListTagsCommand.d.ts +36 -0
  1885. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +36 -0
  1886. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +38 -0
  1887. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +43 -0
  1888. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +36 -0
  1889. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +43 -0
  1890. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +45 -0
  1891. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +35 -0
  1892. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +37 -0
  1893. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +36 -0
  1894. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/TagResourceCommand.d.ts +35 -0
  1895. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UntagResourceCommand.d.ts +35 -0
  1896. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateAliasCommand.d.ts +35 -0
  1897. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +36 -0
  1898. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +138 -0
  1899. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +43 -0
  1900. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +49 -0
  1901. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +36 -0
  1902. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/index.d.ts +58 -0
  1903. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/endpoints.d.ts +2 -0
  1904. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/index.d.ts +6 -0
  1905. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/models/index.d.ts +1 -0
  1906. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +4789 -0
  1907. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/Interfaces.d.ts +6 -0
  1908. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListAliasesPaginator.d.ts +4 -0
  1909. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListCodeSigningConfigsPaginator.d.ts +4 -0
  1910. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListEventSourceMappingsPaginator.d.ts +4 -0
  1911. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +4 -0
  1912. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +4 -0
  1913. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionsPaginator.d.ts +4 -0
  1914. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListLayerVersionsPaginator.d.ts +4 -0
  1915. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListLayersPaginator.d.ts +4 -0
  1916. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +4 -0
  1917. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListVersionsByFunctionPaginator.d.ts +4 -0
  1918. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/index.d.ts +11 -0
  1919. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/protocols/Aws_restJson1.d.ts +176 -0
  1920. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +39 -0
  1921. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +39 -0
  1922. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +38 -0
  1923. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.shared.d.ts +13 -0
  1924. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/Lambda.d.ts +295 -0
  1925. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/LambdaClient.d.ts +129 -0
  1926. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +17 -0
  1927. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +17 -0
  1928. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +17 -0
  1929. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +17 -0
  1930. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +17 -0
  1931. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +17 -0
  1932. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +17 -0
  1933. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +17 -0
  1934. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +17 -0
  1935. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +17 -0
  1936. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +17 -0
  1937. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +17 -0
  1938. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +17 -0
  1939. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +17 -0
  1940. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +17 -0
  1941. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +17 -0
  1942. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAliasCommand.d.ts +17 -0
  1943. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +17 -0
  1944. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +17 -0
  1945. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +17 -0
  1946. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +17 -0
  1947. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +17 -0
  1948. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +17 -0
  1949. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +17 -0
  1950. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +17 -0
  1951. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +17 -0
  1952. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +17 -0
  1953. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +17 -0
  1954. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +17 -0
  1955. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +24 -0
  1956. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeCommand.d.ts +17 -0
  1957. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +17 -0
  1958. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +17 -0
  1959. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +17 -0
  1960. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +17 -0
  1961. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +17 -0
  1962. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +17 -0
  1963. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +17 -0
  1964. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayersCommand.d.ts +17 -0
  1965. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +17 -0
  1966. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListTagsCommand.d.ts +17 -0
  1967. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +17 -0
  1968. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +17 -0
  1969. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +17 -0
  1970. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +17 -0
  1971. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +17 -0
  1972. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +17 -0
  1973. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +17 -0
  1974. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +17 -0
  1975. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +17 -0
  1976. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  1977. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  1978. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +17 -0
  1979. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +17 -0
  1980. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +17 -0
  1981. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +17 -0
  1982. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +17 -0
  1983. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +17 -0
  1984. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/index.d.ts +58 -0
  1985. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/endpoints.d.ts +2 -0
  1986. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/index.d.ts +6 -0
  1987. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/index.d.ts +1 -0
  1988. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +2254 -0
  1989. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  1990. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +4 -0
  1991. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListCodeSigningConfigsPaginator.d.ts +4 -0
  1992. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListEventSourceMappingsPaginator.d.ts +4 -0
  1993. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +4 -0
  1994. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +4 -0
  1995. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsPaginator.d.ts +4 -0
  1996. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayerVersionsPaginator.d.ts +4 -0
  1997. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayersPaginator.d.ts +4 -0
  1998. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +4 -0
  1999. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListVersionsByFunctionPaginator.d.ts +4 -0
  2000. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/index.d.ts +11 -0
  2001. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +176 -0
  2002. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
  2003. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
  2004. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
  2005. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  2006. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/index.d.ts +3 -0
  2007. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +7 -0
  2008. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +7 -0
  2009. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +7 -0
  2010. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/index.d.ts +3 -0
  2011. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActive.d.ts +14 -0
  2012. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionExists.d.ts +14 -0
  2013. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdated.d.ts +14 -0
  2014. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/package.json +95 -0
  2015. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/CHANGELOG.md +3269 -0
  2016. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
  2017. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/README.md +218 -0
  2018. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/SSO.js +67 -0
  2019. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/SSOClient.js +32 -0
  2020. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/GetRoleCredentialsCommand.js +36 -0
  2021. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountRolesCommand.js +36 -0
  2022. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountsCommand.js +36 -0
  2023. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/LogoutCommand.js +36 -0
  2024. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/index.js +7 -0
  2025. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/endpoints.js +275 -0
  2026. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +8 -0
  2027. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/models/index.js +4 -0
  2028. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/models/models_0.js +95 -0
  2029. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/Interfaces.js +2 -0
  2030. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountRolesPaginator.js +35 -0
  2031. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountsPaginator.js +35 -0
  2032. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/index.js +6 -0
  2033. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js +521 -0
  2034. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +39 -0
  2035. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +41 -0
  2036. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +16 -0
  2037. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +17 -0
  2038. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +70 -0
  2039. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +34 -0
  2040. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +39 -0
  2041. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +39 -0
  2042. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +39 -0
  2043. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +39 -0
  2044. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
  2045. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/endpoints.js +271 -0
  2046. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/index.js +5 -0
  2047. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +1 -0
  2048. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +58 -0
  2049. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
  2050. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +74 -0
  2051. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +74 -0
  2052. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
  2053. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +594 -0
  2054. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +17 -0
  2055. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +19 -0
  2056. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +8 -0
  2057. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +13 -0
  2058. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
  2059. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +153 -0
  2060. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +36 -0
  2061. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +35 -0
  2062. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +37 -0
  2063. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +35 -0
  2064. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
  2065. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/endpoints.d.ts +2 -0
  2066. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +5 -0
  2067. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +1 -0
  2068. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +255 -0
  2069. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +6 -0
  2070. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +4 -0
  2071. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +4 -0
  2072. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
  2073. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +14 -0
  2074. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +32 -0
  2075. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +32 -0
  2076. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +31 -0
  2077. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +13 -0
  2078. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +25 -0
  2079. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +72 -0
  2080. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +17 -0
  2081. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +17 -0
  2082. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +17 -0
  2083. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +17 -0
  2084. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
  2085. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoints.d.ts +2 -0
  2086. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +5 -0
  2087. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -0
  2088. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +154 -0
  2089. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  2090. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +4 -0
  2091. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +4 -0
  2092. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
  2093. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +14 -0
  2094. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +30 -0
  2095. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +30 -0
  2096. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +29 -0
  2097. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  2098. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/package.json +91 -0
  2099. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/CHANGELOG.md +2418 -0
  2100. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
  2101. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/README.md +208 -0
  2102. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/STS.js +127 -0
  2103. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +34 -0
  2104. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +38 -0
  2105. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithSAMLCommand.js +36 -0
  2106. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +36 -0
  2107. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/DecodeAuthorizationMessageCommand.js +38 -0
  2108. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetAccessKeyInfoCommand.js +38 -0
  2109. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetCallerIdentityCommand.js +38 -0
  2110. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetFederationTokenCommand.js +38 -0
  2111. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetSessionTokenCommand.js +38 -0
  2112. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/index.js +11 -0
  2113. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js +15 -0
  2114. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +76 -0
  2115. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/endpoints.js +217 -0
  2116. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +8 -0
  2117. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/models/index.js +4 -0
  2118. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +177 -0
  2119. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1249 -0
  2120. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +40 -0
  2121. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +44 -0
  2122. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +16 -0
  2123. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +17 -0
  2124. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/STS.js +130 -0
  2125. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +36 -0
  2126. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +41 -0
  2127. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +39 -0
  2128. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +39 -0
  2129. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +41 -0
  2130. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +41 -0
  2131. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +41 -0
  2132. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +41 -0
  2133. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +41 -0
  2134. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
  2135. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +16 -0
  2136. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +87 -0
  2137. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/endpoints.js +213 -0
  2138. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/index.js +5 -0
  2139. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
  2140. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +117 -0
  2141. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +1330 -0
  2142. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +17 -0
  2143. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +21 -0
  2144. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +8 -0
  2145. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +13 -0
  2146. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +619 -0
  2147. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +152 -0
  2148. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +124 -0
  2149. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +166 -0
  2150. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +170 -0
  2151. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +70 -0
  2152. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +52 -0
  2153. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +44 -0
  2154. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +120 -0
  2155. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +86 -0
  2156. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
  2157. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +19 -0
  2158. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +35 -0
  2159. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/endpoints.d.ts +2 -0
  2160. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +5 -0
  2161. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
  2162. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1211 -0
  2163. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +26 -0
  2164. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +39 -0
  2165. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +39 -0
  2166. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +38 -0
  2167. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +13 -0
  2168. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +45 -0
  2169. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +79 -0
  2170. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +17 -0
  2171. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +17 -0
  2172. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +17 -0
  2173. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +17 -0
  2174. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +17 -0
  2175. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +17 -0
  2176. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +17 -0
  2177. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +17 -0
  2178. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
  2179. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +8 -0
  2180. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +16 -0
  2181. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoints.d.ts +2 -0
  2182. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +5 -0
  2183. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
  2184. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +367 -0
  2185. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +26 -0
  2186. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
  2187. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
  2188. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
  2189. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  2190. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/package.json +96 -0
  2191. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/CHANGELOG.md +2281 -0
  2192. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/LICENSE +201 -0
  2193. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/README.md +10 -0
  2194. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +12 -0
  2195. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +12 -0
  2196. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/index.js +7 -0
  2197. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +16 -0
  2198. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +21 -0
  2199. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +20 -0
  2200. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/utils/normalizeBoolean.js +11 -0
  2201. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/utils/normalizeEndpoint.js +15 -0
  2202. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/index.js +6 -0
  2203. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/config.js +15 -0
  2204. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/getRealRegion.js +10 -0
  2205. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/index.js +5 -0
  2206. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +5 -0
  2207. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +29 -0
  2208. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +2 -0
  2209. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +2 -0
  2210. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/PartitionHash.js +2 -0
  2211. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/RegionHash.js +2 -0
  2212. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +8 -0
  2213. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +34 -0
  2214. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +9 -0
  2215. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +5 -0
  2216. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +16 -0
  2217. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/index.js +6 -0
  2218. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +11 -0
  2219. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +11 -0
  2220. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js +4 -0
  2221. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +7 -0
  2222. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +12 -0
  2223. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +31 -0
  2224. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/normalizeBoolean.js +7 -0
  2225. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/normalizeEndpoint.js +12 -0
  2226. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/index.js +3 -0
  2227. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js +12 -0
  2228. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js +8 -0
  2229. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js +2 -0
  2230. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js +3 -0
  2231. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +44 -0
  2232. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
  2233. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
  2234. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
  2235. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
  2236. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +9 -0
  2237. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js +26 -0
  2238. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js +8 -0
  2239. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js +5 -0
  2240. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +13 -0
  2241. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js +3 -0
  2242. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -0
  2243. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -0
  2244. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/index.d.ts +4 -0
  2245. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +20 -0
  2246. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +38 -0
  2247. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  2248. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/utils/normalizeBoolean.d.ts +2 -0
  2249. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/utils/normalizeEndpoint.d.ts +7 -0
  2250. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/index.d.ts +3 -0
  2251. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/config.d.ts +5 -0
  2252. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +1 -0
  2253. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/index.d.ts +2 -0
  2254. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +1 -0
  2255. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +25 -0
  2256. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +8 -0
  2257. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +5 -0
  2258. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +14 -0
  2259. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/RegionHash.d.ts +12 -0
  2260. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +6 -0
  2261. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +11 -0
  2262. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +5 -0
  2263. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +5 -0
  2264. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +6 -0
  2265. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/index.d.ts +3 -0
  2266. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -0
  2267. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -0
  2268. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +4 -0
  2269. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +15 -0
  2270. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +25 -0
  2271. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  2272. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/normalizeBoolean.d.ts +2 -0
  2273. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/normalizeEndpoint.d.ts +7 -0
  2274. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/index.d.ts +3 -0
  2275. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +5 -0
  2276. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -0
  2277. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -0
  2278. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -0
  2279. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +17 -0
  2280. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +6 -0
  2281. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +2 -0
  2282. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +10 -0
  2283. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +9 -0
  2284. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +6 -0
  2285. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +11 -0
  2286. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +5 -0
  2287. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +5 -0
  2288. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +6 -0
  2289. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +3 -0
  2290. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/package.json +51 -0
  2291. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/CHANGELOG.md +1269 -0
  2292. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
  2293. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
  2294. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +25 -0
  2295. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +21 -0
  2296. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +11 -0
  2297. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +7 -0
  2298. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/package.json +55 -0
  2299. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/CHANGELOG.md +1263 -0
  2300. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/LICENSE +201 -0
  2301. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/README.md +11 -0
  2302. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/Endpoint.js +8 -0
  2303. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +10 -0
  2304. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointMode.js +8 -0
  2305. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +11 -0
  2306. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/fromContainerMetadata.js +70 -0
  2307. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +93 -0
  2308. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/index.js +6 -0
  2309. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +17 -0
  2310. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +7 -0
  2311. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +41 -0
  2312. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/index.js +5 -0
  2313. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/retry.js +11 -0
  2314. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +23 -0
  2315. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
  2316. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
  2317. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
  2318. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
  2319. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/fromContainerMetadata.js +82 -0
  2320. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/fromInstanceMetadata.js +127 -0
  2321. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/index.js +3 -0
  2322. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +14 -0
  2323. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +6 -0
  2324. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +34 -0
  2325. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
  2326. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
  2327. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +44 -0
  2328. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/Endpoint.d.ts +4 -0
  2329. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +4 -0
  2330. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointMode.d.ts +4 -0
  2331. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +4 -0
  2332. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +10 -0
  2333. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +7 -0
  2334. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/index.d.ts +3 -0
  2335. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +9 -0
  2336. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +14 -0
  2337. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
  2338. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/index.d.ts +2 -0
  2339. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +7 -0
  2340. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +4 -0
  2341. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +4 -0
  2342. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +4 -0
  2343. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +4 -0
  2344. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +7 -0
  2345. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +4 -0
  2346. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/index.d.ts +3 -0
  2347. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +9 -0
  2348. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +10 -0
  2349. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +4 -0
  2350. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +2 -0
  2351. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +5 -0
  2352. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +3 -0
  2353. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +19 -0
  2354. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/package.json +58 -0
  2355. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/CHANGELOG.md +1265 -0
  2356. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
  2357. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
  2358. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +105 -0
  2359. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +141 -0
  2360. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +63 -0
  2361. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +26 -0
  2362. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/package.json +61 -0
  2363. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/CHANGELOG.md +1569 -0
  2364. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
  2365. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/README.md +89 -0
  2366. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +42 -0
  2367. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +42 -0
  2368. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +42 -0
  2369. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +9 -0
  2370. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/package.json +63 -0
  2371. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/CHANGELOG.md +1121 -0
  2372. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
  2373. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
  2374. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +70 -0
  2375. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +82 -0
  2376. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +13 -0
  2377. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +8 -0
  2378. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/package.json +57 -0
  2379. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/CHANGELOG.md +323 -0
  2380. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
  2381. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
  2382. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +88 -0
  2383. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +110 -0
  2384. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +54 -0
  2385. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +32 -0
  2386. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/package.json +58 -0
  2387. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/CHANGELOG.md +217 -0
  2388. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
  2389. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
  2390. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +28 -0
  2391. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +21 -0
  2392. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +5 -0
  2393. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +25 -0
  2394. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +19 -0
  2395. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
  2396. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +12 -0
  2397. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +126 -0
  2398. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +2 -0
  2399. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +8 -0
  2400. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +30 -0
  2401. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
  2402. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/package.json +63 -0
  2403. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/CHANGELOG.md +1856 -0
  2404. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/LICENSE +201 -0
  2405. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/README.md +4 -0
  2406. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/fetch-http-handler.js +78 -0
  2407. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/index.js +5 -0
  2408. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/request-timeout.js +15 -0
  2409. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/stream-collector.js +50 -0
  2410. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js +90 -0
  2411. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js +2 -0
  2412. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js +12 -0
  2413. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js +68 -0
  2414. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/fetch-http-handler.d.ts +20 -0
  2415. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/index.d.ts +2 -0
  2416. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
  2417. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
  2418. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +15 -0
  2419. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
  2420. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
  2421. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
  2422. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/package.json +49 -0
  2423. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/CHANGELOG.md +1191 -0
  2424. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/LICENSE +201 -0
  2425. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/README.md +10 -0
  2426. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-cjs/index.js +30 -0
  2427. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-es/index.js +28 -0
  2428. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-types/index.d.ts +7 -0
  2429. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-types/ts3.4/index.d.ts +7 -0
  2430. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/package.json +51 -0
  2431. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/CHANGELOG.md +480 -0
  2432. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/LICENSE +201 -0
  2433. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/README.md +10 -0
  2434. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-cjs/index.js +5 -0
  2435. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-cjs/invalidFunction.js +7 -0
  2436. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-cjs/invalidProvider.js +5 -0
  2437. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js +2 -0
  2438. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js +3 -0
  2439. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js +1 -0
  2440. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/index.d.ts +2 -0
  2441. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/invalidFunction.d.ts +1 -0
  2442. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/invalidProvider.d.ts +2 -0
  2443. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/index.d.ts +2 -0
  2444. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +1 -0
  2445. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +2 -0
  2446. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/package.json +45 -0
  2447. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/CHANGELOG.md +561 -0
  2448. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/LICENSE +201 -0
  2449. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/README.md +10 -0
  2450. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-cjs/index.js +6 -0
  2451. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js +4 -0
  2452. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-types/index.d.ts +1 -0
  2453. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-types/ts3.4/index.d.ts +1 -0
  2454. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/package.json +48 -0
  2455. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/CHANGELOG.md +1472 -0
  2456. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/LICENSE +201 -0
  2457. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/README.md +4 -0
  2458. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-cjs/index.js +42 -0
  2459. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js +39 -0
  2460. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-types/index.d.ts +6 -0
  2461. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
  2462. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/package.json +49 -0
  2463. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/CHANGELOG.md +947 -0
  2464. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
  2465. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
  2466. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +36 -0
  2467. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +38 -0
  2468. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +17 -0
  2469. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +15 -0
  2470. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/package.json +49 -0
  2471. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/CHANGELOG.md +355 -0
  2472. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
  2473. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
  2474. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +4 -0
  2475. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js +34 -0
  2476. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
  2477. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
  2478. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
  2479. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
  2480. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
  2481. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +4 -0
  2482. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/package.json +51 -0
  2483. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/CHANGELOG.md +1178 -0
  2484. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/LICENSE +201 -0
  2485. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/README.md +4 -0
  2486. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +25 -0
  2487. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/DefaultRateLimiter.js +104 -0
  2488. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/StandardRetryStrategy.js +89 -0
  2489. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/config.js +10 -0
  2490. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/configurations.js +69 -0
  2491. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/constants.js +12 -0
  2492. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/defaultRetryQuota.js +32 -0
  2493. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/delayDecider.js +6 -0
  2494. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/index.js +13 -0
  2495. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +27 -0
  2496. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/retryDecider.js +11 -0
  2497. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/retryMiddleware.js +23 -0
  2498. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/types.js +2 -0
  2499. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js +34 -0
  2500. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js +119 -0
  2501. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js +130 -0
  2502. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/config.js +7 -0
  2503. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js +77 -0
  2504. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js +9 -0
  2505. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js +28 -0
  2506. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js +4 -0
  2507. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/index.js +10 -0
  2508. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +30 -0
  2509. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js +7 -0
  2510. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js +30 -0
  2511. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/types.js +1 -0
  2512. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +17 -0
  2513. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/DefaultRateLimiter.d.ts +39 -0
  2514. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/StandardRetryStrategy.d.ts +27 -0
  2515. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/config.d.ts +13 -0
  2516. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/configurations.d.ts +37 -0
  2517. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/constants.d.ts +41 -0
  2518. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
  2519. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/delayDecider.d.ts +4 -0
  2520. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/index.d.ts +10 -0
  2521. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +4 -0
  2522. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/retryDecider.d.ts +2 -0
  2523. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/retryMiddleware.d.ts +5 -0
  2524. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +15 -0
  2525. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +39 -0
  2526. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +25 -0
  2527. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/config.d.ts +8 -0
  2528. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/configurations.d.ts +26 -0
  2529. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/constants.d.ts +18 -0
  2530. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +10 -0
  2531. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +2 -0
  2532. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/index.d.ts +10 -0
  2533. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +4 -0
  2534. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +2 -0
  2535. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +5 -0
  2536. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/types.d.ts +24 -0
  2537. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/types.d.ts +53 -0
  2538. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/package.json +52 -0
  2539. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/CHANGELOG.md +202 -0
  2540. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/LICENSE +201 -0
  2541. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/README.md +4 -0
  2542. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-cjs/index.js +9 -0
  2543. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-es/index.js +6 -0
  2544. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/index.d.ts +34 -0
  2545. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/ts3.4/index.d.ts +25 -0
  2546. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/package.json +52 -0
  2547. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/CHANGELOG.md +896 -0
  2548. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/LICENSE +201 -0
  2549. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/README.md +4 -0
  2550. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/deserializerMiddleware.js +12 -0
  2551. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/index.js +6 -0
  2552. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/serdePlugin.js +26 -0
  2553. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/serializerMiddleware.js +11 -0
  2554. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js +22 -0
  2555. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/index.js +3 -0
  2556. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js +22 -0
  2557. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js +16 -0
  2558. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/deserializerMiddleware.d.ts +2 -0
  2559. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/index.d.ts +3 -0
  2560. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/serdePlugin.d.ts +4 -0
  2561. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/serializerMiddleware.d.ts +2 -0
  2562. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +2 -0
  2563. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
  2564. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +4 -0
  2565. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +2 -0
  2566. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/package.json +48 -0
  2567. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/CHANGELOG.md +1840 -0
  2568. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/LICENSE +201 -0
  2569. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/README.md +4 -0
  2570. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/configurations.js +90 -0
  2571. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +5 -0
  2572. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/middleware.js +45 -0
  2573. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getSkewCorrectedDate.js +5 -0
  2574. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getUpdatedSystemClockOffset.js +12 -0
  2575. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/isClockSkewed.js +6 -0
  2576. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js +87 -0
  2577. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/index.js +2 -0
  2578. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js +59 -0
  2579. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js +1 -0
  2580. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js +8 -0
  2581. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js +4 -0
  2582. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/configurations.d.ts +88 -0
  2583. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/index.d.ts +2 -0
  2584. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/middleware.d.ts +6 -0
  2585. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/configurations.d.ts +57 -0
  2586. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts +2 -0
  2587. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/middleware.d.ts +6 -0
  2588. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts +2 -0
  2589. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts +2 -0
  2590. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts +2 -0
  2591. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getSkewCorrectedDate.d.ts +6 -0
  2592. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getUpdatedSystemClockOffset.d.ts +8 -0
  2593. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/utils/isClockSkewed.d.ts +7 -0
  2594. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/package.json +51 -0
  2595. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/CHANGELOG.md +1330 -0
  2596. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/LICENSE +201 -0
  2597. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/README.md +78 -0
  2598. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-cjs/MiddlewareStack.js +215 -0
  2599. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-cjs/index.js +4 -0
  2600. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-cjs/types.js +2 -0
  2601. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js +212 -0
  2602. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-es/index.js +1 -0
  2603. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-es/types.js +1 -0
  2604. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/MiddlewareStack.d.ts +2 -0
  2605. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/index.d.ts +1 -0
  2606. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +2 -0
  2607. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
  2608. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/types.d.ts +24 -0
  2609. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/types.d.ts +24 -0
  2610. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/package.json +50 -0
  2611. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/CHANGELOG.md +1116 -0
  2612. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
  2613. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
  2614. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/configurations.js +10 -0
  2615. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/constants.js +7 -0
  2616. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +5 -0
  2617. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/user-agent-middleware.js +61 -0
  2618. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +4 -0
  2619. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +4 -0
  2620. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
  2621. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +64 -0
  2622. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +28 -0
  2623. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +4 -0
  2624. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
  2625. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +19 -0
  2626. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +4 -0
  2627. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
  2628. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +6 -0
  2629. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
  2630. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/package.json +50 -0
  2631. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/CHANGELOG.md +399 -0
  2632. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/LICENSE +201 -0
  2633. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/README.md +4 -0
  2634. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/configLoader.js +9 -0
  2635. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromEnv.js +17 -0
  2636. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromSharedConfigFiles.js +28 -0
  2637. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromStatic.js +7 -0
  2638. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/index.js +4 -0
  2639. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/configLoader.js +9 -0
  2640. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/fromEnv.js +20 -0
  2641. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/fromSharedConfigFiles.js +37 -0
  2642. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/fromStatic.js +8 -0
  2643. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/index.js +1 -0
  2644. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/configLoader.d.ts +22 -0
  2645. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/fromEnv.d.ts +8 -0
  2646. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +27 -0
  2647. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/fromStatic.d.ts +3 -0
  2648. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/index.d.ts +1 -0
  2649. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/configLoader.d.ts +14 -0
  2650. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +5 -0
  2651. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +14 -0
  2652. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +3 -0
  2653. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
  2654. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/package.json +53 -0
  2655. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/CHANGELOG.md +1614 -0
  2656. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/LICENSE +201 -0
  2657. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/README.md +4 -0
  2658. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/constants.js +4 -0
  2659. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/get-transformed-headers.js +12 -0
  2660. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/index.js +6 -0
  2661. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/node-http-handler.js +76 -0
  2662. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/node-http2-handler.js +131 -0
  2663. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/readable.mock.js +23 -0
  2664. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/server.mock.js +60 -0
  2665. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/set-connection-timeout.js +22 -0
  2666. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/set-socket-timeout.js +10 -0
  2667. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/collector.js +15 -0
  2668. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/index.js +18 -0
  2669. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/readable.mock.js +23 -0
  2670. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/write-request-body.js +27 -0
  2671. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/constants.js +1 -0
  2672. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/get-transformed-headers.js +21 -0
  2673. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/index.js +3 -0
  2674. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/node-http-handler.js +77 -0
  2675. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/node-http2-handler.js +143 -0
  2676. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/readable.mock.js +24 -0
  2677. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/server.mock.js +63 -0
  2678. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/set-connection-timeout.js +19 -0
  2679. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/set-socket-timeout.js +7 -0
  2680. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/collector.js +16 -0
  2681. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/index.js +16 -0
  2682. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/readable.mock.js +24 -0
  2683. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/write-request-body.js +23 -0
  2684. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/constants.d.ts +4 -0
  2685. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
  2686. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/index.d.ts +3 -0
  2687. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/node-http-handler.d.ts +36 -0
  2688. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/node-http2-handler.d.ts +58 -0
  2689. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/readable.mock.d.ts +13 -0
  2690. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/server.mock.d.ts +10 -0
  2691. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
  2692. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
  2693. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/collector.d.ts +6 -0
  2694. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
  2695. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
  2696. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/constants.d.ts +2 -0
  2697. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
  2698. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
  2699. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +28 -0
  2700. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +31 -0
  2701. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
  2702. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/server.mock.d.ts +10 -0
  2703. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
  2704. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
  2705. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
  2706. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
  2707. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
  2708. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +5 -0
  2709. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/write-request-body.d.ts +5 -0
  2710. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/package.json +60 -0
  2711. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/CHANGELOG.md +1156 -0
  2712. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/LICENSE +201 -0
  2713. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/README.md +10 -0
  2714. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/ProviderError.js +36 -0
  2715. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/chain.js +19 -0
  2716. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/fromStatic.js +5 -0
  2717. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/index.js +7 -0
  2718. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/memoize.js +48 -0
  2719. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js +44 -0
  2720. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/chain.js +34 -0
  2721. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js +5 -0
  2722. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/index.js +4 -0
  2723. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/memoize.js +70 -0
  2724. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ProviderError.d.ts +31 -0
  2725. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/chain.d.ts +11 -0
  2726. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/fromStatic.d.ts +2 -0
  2727. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/index.d.ts +4 -0
  2728. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/memoize.d.ts +37 -0
  2729. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/ProviderError.d.ts +13 -0
  2730. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/chain.d.ts +3 -0
  2731. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/fromStatic.d.ts +2 -0
  2732. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/index.d.ts +4 -0
  2733. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/memoize.d.ts +9 -0
  2734. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/package.json +48 -0
  2735. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/CHANGELOG.md +1178 -0
  2736. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/LICENSE +201 -0
  2737. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/README.md +4 -0
  2738. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/httpHandler.js +2 -0
  2739. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/httpRequest.js +49 -0
  2740. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/httpResponse.js +17 -0
  2741. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/index.js +7 -0
  2742. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/isValidHostname.js +8 -0
  2743. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js +1 -0
  2744. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js +43 -0
  2745. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js +15 -0
  2746. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/index.js +4 -0
  2747. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js +4 -0
  2748. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/httpHandler.d.ts +4 -0
  2749. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/httpRequest.d.ts +20 -0
  2750. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/httpResponse.d.ts +14 -0
  2751. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/index.d.ts +4 -0
  2752. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/isValidHostname.d.ts +1 -0
  2753. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpHandler.d.ts +4 -0
  2754. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpRequest.d.ts +20 -0
  2755. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpResponse.d.ts +14 -0
  2756. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/index.d.ts +4 -0
  2757. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
  2758. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/package.json +49 -0
  2759. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/CHANGELOG.md +1138 -0
  2760. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/LICENSE +201 -0
  2761. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/README.md +10 -0
  2762. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-cjs/index.js +25 -0
  2763. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-es/index.js +33 -0
  2764. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-types/index.d.ts +2 -0
  2765. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-types/ts3.4/index.d.ts +2 -0
  2766. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/package.json +49 -0
  2767. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/CHANGELOG.md +1101 -0
  2768. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/LICENSE +201 -0
  2769. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/README.md +10 -0
  2770. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-cjs/index.js +27 -0
  2771. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-es/index.js +35 -0
  2772. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-types/index.d.ts +2 -0
  2773. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-types/ts3.4/index.d.ts +2 -0
  2774. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/package.json +48 -0
  2775. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/CHANGELOG.md +667 -0
  2776. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/LICENSE +201 -0
  2777. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/README.md +4 -0
  2778. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-cjs/constants.js +29 -0
  2779. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-cjs/index.js +21 -0
  2780. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js +26 -0
  2781. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-es/index.js +14 -0
  2782. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/constants.d.ts +22 -0
  2783. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/index.d.ts +5 -0
  2784. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/constants.d.ts +8 -0
  2785. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/index.d.ts +5 -0
  2786. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/package.json +45 -0
  2787. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/CHANGELOG.md +704 -0
  2788. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/LICENSE +201 -0
  2789. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/README.md +102 -0
  2790. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/index.js +84 -0
  2791. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/index.js +105 -0
  2792. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/index.d.ts +33 -0
  2793. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +21 -0
  2794. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/package.json +48 -0
  2795. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/CHANGELOG.md +2827 -0
  2796. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/LICENSE +201 -0
  2797. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/README.md +4 -0
  2798. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/SignatureV4.js +150 -0
  2799. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/cloneRequest.js +17 -0
  2800. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/constants.js +46 -0
  2801. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/credentialDerivation.js +38 -0
  2802. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/getCanonicalHeaders.js +21 -0
  2803. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/getCanonicalQuery.js +31 -0
  2804. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/getPayloadHash.js +23 -0
  2805. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/headerUtil.js +32 -0
  2806. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/index.js +19 -0
  2807. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/moveHeadersToQuery.js +21 -0
  2808. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/normalizeProvider.js +23 -0
  2809. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/prepareRequest.js +15 -0
  2810. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/suite.fixture.js +402 -0
  2811. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/utilDate.js +20 -0
  2812. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js +269 -0
  2813. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js +12 -0
  2814. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/constants.js +43 -0
  2815. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js +66 -0
  2816. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js +30 -0
  2817. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js +43 -0
  2818. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js +41 -0
  2819. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js +60 -0
  2820. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/index.js +8 -0
  2821. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js +26 -0
  2822. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/normalizeProvider.js +18 -0
  2823. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js +23 -0
  2824. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/suite.fixture.js +399 -0
  2825. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js +17 -0
  2826. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/SignatureV4.d.ts +63 -0
  2827. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/cloneRequest.d.ts +6 -0
  2828. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/constants.d.ts +43 -0
  2829. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/credentialDerivation.d.ts +26 -0
  2830. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
  2831. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
  2832. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
  2833. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/headerUtil.d.ts +4 -0
  2834. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/index.d.ts +8 -0
  2835. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/moveHeadersToQuery.d.ts +9 -0
  2836. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/normalizeProvider.d.ts +9 -0
  2837. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/prepareRequest.d.ts +5 -0
  2838. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/suite.fixture.d.ts +14 -0
  2839. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +39 -0
  2840. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +4 -0
  2841. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
  2842. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +7 -0
  2843. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +3 -0
  2844. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +3 -0
  2845. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +3 -0
  2846. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
  2847. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/index.d.ts +8 -0
  2848. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +7 -0
  2849. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/normalizeProvider.d.ts +5 -0
  2850. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +3 -0
  2851. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
  2852. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
  2853. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/utilDate.d.ts +2 -0
  2854. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/package.json +56 -0
  2855. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/CHANGELOG.md +1387 -0
  2856. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/LICENSE +201 -0
  2857. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/README.md +10 -0
  2858. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/client.js +28 -0
  2859. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/command.js +10 -0
  2860. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/constants.js +4 -0
  2861. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/date-utils.js +156 -0
  2862. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +15 -0
  2863. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/extended-encode-uri-component.js +9 -0
  2864. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/get-array-if-single-item.js +5 -0
  2865. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/get-value-from-text-node.js +16 -0
  2866. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/index.js +15 -0
  2867. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/lazy-json.js +38 -0
  2868. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/parse-utils.js +206 -0
  2869. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/ser-utils.js +17 -0
  2870. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/split-every.js +31 -0
  2871. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/client.js +26 -0
  2872. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/command.js +8 -0
  2873. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/constants.js +1 -0
  2874. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js +150 -0
  2875. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +11 -0
  2876. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js +5 -0
  2877. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js +3 -0
  2878. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js +12 -0
  2879. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/index.js +12 -0
  2880. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js +40 -0
  2881. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js +190 -0
  2882. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js +13 -0
  2883. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js +27 -0
  2884. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/client.d.ts +20 -0
  2885. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/command.d.ts +6 -0
  2886. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/constants.d.ts +1 -0
  2887. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/date-utils.d.ts +49 -0
  2888. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +6 -0
  2889. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
  2890. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/get-array-if-single-item.d.ts +5 -0
  2891. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/get-value-from-text-node.d.ts +5 -0
  2892. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/index.d.ts +13 -0
  2893. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/lazy-json.d.ts +19 -0
  2894. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/parse-utils.d.ts +203 -0
  2895. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ser-utils.d.ts +7 -0
  2896. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/split-every.d.ts +9 -0
  2897. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/client.d.ts +16 -0
  2898. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/command.d.ts +6 -0
  2899. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/constants.d.ts +1 -0
  2900. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/date-utils.d.ts +8 -0
  2901. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +2 -0
  2902. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +2 -0
  2903. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +2 -0
  2904. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +2 -0
  2905. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/index.d.ts +13 -0
  2906. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/lazy-json.d.ts +12 -0
  2907. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/parse-utils.d.ts +53 -0
  2908. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/ser-utils.d.ts +2 -0
  2909. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/split-every.d.ts +2 -0
  2910. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/package.json +49 -0
  2911. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/CHANGELOG.md +1712 -0
  2912. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/LICENSE +201 -0
  2913. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/README.md +4 -0
  2914. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/abort.js +2 -0
  2915. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/client.js +2 -0
  2916. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/command.js +2 -0
  2917. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/credentials.js +2 -0
  2918. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/crypto.js +2 -0
  2919. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +2 -0
  2920. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/http.js +2 -0
  2921. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/index.js +20 -0
  2922. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/logger.js +2 -0
  2923. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/middleware.js +2 -0
  2924. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/pagination.js +2 -0
  2925. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/response.js +2 -0
  2926. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/serde.js +2 -0
  2927. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/shapes.js +2 -0
  2928. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/signature.js +2 -0
  2929. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/transfer.js +2 -0
  2930. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/util.js +2 -0
  2931. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/waiter.js +2 -0
  2932. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
  2933. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
  2934. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
  2935. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
  2936. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
  2937. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
  2938. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
  2939. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/index.js +17 -0
  2940. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
  2941. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
  2942. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
  2943. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
  2944. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
  2945. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
  2946. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
  2947. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
  2948. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
  2949. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
  2950. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/abort.d.ts +42 -0
  2951. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/client.d.ts +23 -0
  2952. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/command.d.ts +7 -0
  2953. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +24 -0
  2954. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +45 -0
  2955. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +84 -0
  2956. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/http.d.ts +92 -0
  2957. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/index.d.ts +17 -0
  2958. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/logger.d.ts +26 -0
  2959. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +338 -0
  2960. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +14 -0
  2961. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/response.d.ts +34 -0
  2962. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/serde.d.ts +49 -0
  2963. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +45 -0
  2964. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/signature.d.ts +100 -0
  2965. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +16 -0
  2966. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +17 -0
  2967. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +17 -0
  2968. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +7 -0
  2969. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +13 -0
  2970. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +20 -0
  2971. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +78 -0
  2972. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +44 -0
  2973. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +17 -0
  2974. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +14 -0
  2975. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +155 -0
  2976. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +9 -0
  2977. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +18 -0
  2978. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +29 -0
  2979. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +22 -0
  2980. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +47 -0
  2981. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +12 -0
  2982. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +56 -0
  2983. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +15 -0
  2984. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/util.d.ts +112 -0
  2985. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +32 -0
  2986. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/package.json +43 -0
  2987. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/CHANGELOG.md +201 -0
  2988. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/LICENSE +201 -0
  2989. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/README.md +10 -0
  2990. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-cjs/index.js +19 -0
  2991. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-es/index.js +15 -0
  2992. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-types/index.d.ts +2 -0
  2993. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-types/ts3.4/index.d.ts +2 -0
  2994. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/package.json +46 -0
  2995. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/CHANGELOG.md +561 -0
  2996. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/LICENSE +201 -0
  2997. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/README.md +4 -0
  2998. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-cjs/index.js +86 -0
  2999. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js +81 -0
  3000. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-types/index.d.ts +16 -0
  3001. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-types/ts3.4/index.d.ts +4 -0
  3002. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/package.json +46 -0
  3003. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/CHANGELOG.md +672 -0
  3004. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/LICENSE +201 -0
  3005. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/README.md +4 -0
  3006. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-cjs/index.js +20 -0
  3007. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-es/index.js +15 -0
  3008. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-types/index.d.ts +14 -0
  3009. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-types/ts3.4/index.d.ts +4 -0
  3010. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/package.json +50 -0
  3011. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/CHANGELOG.md +574 -0
  3012. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/LICENSE +201 -0
  3013. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/README.md +12 -0
  3014. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-cjs/index.js +23 -0
  3015. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js +19 -0
  3016. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-types/index.d.ts +1 -0
  3017. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/index.d.ts +1 -0
  3018. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/package.json +45 -0
  3019. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/CHANGELOG.md +611 -0
  3020. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/LICENSE +201 -0
  3021. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/README.md +12 -0
  3022. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-cjs/index.js +22 -0
  3023. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-es/index.js +18 -0
  3024. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-types/index.d.ts +1 -0
  3025. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/index.d.ts +1 -0
  3026. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/package.json +49 -0
  3027. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/CHANGELOG.md +617 -0
  3028. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/LICENSE +201 -0
  3029. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/README.md +10 -0
  3030. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-cjs/index.js +19 -0
  3031. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-es/index.js +16 -0
  3032. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-types/index.d.ts +4 -0
  3033. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-types/ts3.4/index.d.ts +4 -0
  3034. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/package.json +49 -0
  3035. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/CHANGELOG.md +11 -0
  3036. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/LICENSE +201 -0
  3037. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/README.md +4 -0
  3038. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-cjs/booleanSelector.js +18 -0
  3039. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-cjs/index.js +4 -0
  3040. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-es/booleanSelector.js +14 -0
  3041. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-es/index.js +1 -0
  3042. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/booleanSelector.d.ts +15 -0
  3043. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/index.d.ts +1 -0
  3044. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +8 -0
  3045. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/index.d.ts +1 -0
  3046. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/package.json +50 -0
  3047. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/CHANGELOG.md +558 -0
  3048. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/LICENSE +201 -0
  3049. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/README.md +4 -0
  3050. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-cjs/index.js +38 -0
  3051. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js +33 -0
  3052. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-types/index.d.ts +12 -0
  3053. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-types/ts3.4/index.d.ts +4 -0
  3054. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/package.json +48 -0
  3055. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/CHANGELOG.md +666 -0
  3056. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/LICENSE +201 -0
  3057. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/README.md +10 -0
  3058. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-cjs/escape-uri-path.js +6 -0
  3059. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-cjs/escape-uri.js +6 -0
  3060. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-cjs/index.js +5 -0
  3061. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js +2 -0
  3062. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js +4 -0
  3063. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js +2 -0
  3064. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/escape-uri-path.d.ts +1 -0
  3065. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/escape-uri.d.ts +1 -0
  3066. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/index.d.ts +2 -0
  3067. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +1 -0
  3068. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +1 -0
  3069. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/index.d.ts +2 -0
  3070. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/package.json +47 -0
  3071. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/CHANGELOG.md +1672 -0
  3072. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
  3073. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
  3074. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
  3075. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +22 -0
  3076. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +16 -0
  3077. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
  3078. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +24 -0
  3079. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +19 -0
  3080. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +4 -0
  3081. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +7 -0
  3082. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +7 -0
  3083. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
  3084. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +4 -0
  3085. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +4 -0
  3086. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/package.json +48 -0
  3087. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/CHANGELOG.md +1759 -0
  3088. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
  3089. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
  3090. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +41 -0
  3091. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/is-crt-available.js +15 -0
  3092. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +47 -0
  3093. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +11 -0
  3094. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +12 -0
  3095. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +2 -0
  3096. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +10 -0
  3097. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
  3098. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/package.json +51 -0
  3099. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/CHANGELOG.md +561 -0
  3100. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/LICENSE +201 -0
  3101. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/README.md +4 -0
  3102. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/index.js +9 -0
  3103. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/pureJs.js +47 -0
  3104. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/whatwgEncodingApi.js +11 -0
  3105. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js +8 -0
  3106. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js +42 -0
  3107. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js +6 -0
  3108. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/index.d.ts +2 -0
  3109. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/pureJs.d.ts +17 -0
  3110. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/index.d.ts +2 -0
  3111. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/pureJs.d.ts +4 -0
  3112. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/whatwgEncodingApi.d.ts +2 -0
  3113. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/whatwgEncodingApi.d.ts +2 -0
  3114. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/package.json +45 -0
  3115. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/CHANGELOG.md +669 -0
  3116. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/LICENSE +201 -0
  3117. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/README.md +4 -0
  3118. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-cjs/index.js +11 -0
  3119. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-es/index.js +8 -0
  3120. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-types/index.d.ts +2 -0
  3121. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-types/ts3.4/index.d.ts +2 -0
  3122. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/package.json +53 -0
  3123. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/CHANGELOG.md +260 -0
  3124. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/LICENSE +201 -0
  3125. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/README.md +10 -0
  3126. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/createWaiter.js +27 -0
  3127. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/index.js +5 -0
  3128. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/poller.js +38 -0
  3129. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/index.js +5 -0
  3130. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/sleep.js +7 -0
  3131. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/validate.js +21 -0
  3132. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/waiter.js +38 -0
  3133. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/createWaiter.js +26 -0
  3134. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/index.js +2 -0
  3135. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/poller.js +52 -0
  3136. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/utils/index.js +2 -0
  3137. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/utils/sleep.js +3 -0
  3138. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/utils/validate.js +17 -0
  3139. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/waiter.js +29 -0
  3140. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/createWaiter.d.ts +11 -0
  3141. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/index.d.ts +2 -0
  3142. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/poller.d.ts +10 -0
  3143. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/createWaiter.d.ts +3 -0
  3144. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/index.d.ts +2 -0
  3145. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/poller.d.ts +3 -0
  3146. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/index.d.ts +2 -0
  3147. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +1 -0
  3148. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/validate.d.ts +3 -0
  3149. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/waiter.d.ts +24 -0
  3150. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/utils/index.d.ts +2 -0
  3151. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/utils/sleep.d.ts +1 -0
  3152. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/utils/validate.d.ts +6 -0
  3153. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/waiter.d.ts +33 -0
  3154. package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/package.json +50 -0
  3155. package/node_modules/@serverless-stack/node/node_modules/uuid/CHANGELOG.md +229 -0
  3156. package/node_modules/@serverless-stack/node/node_modules/uuid/CONTRIBUTING.md +18 -0
  3157. package/node_modules/@serverless-stack/node/node_modules/uuid/LICENSE.md +9 -0
  3158. package/node_modules/@serverless-stack/node/node_modules/uuid/README.md +505 -0
  3159. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/bin/uuid +2 -0
  3160. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/index.js +9 -0
  3161. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  3162. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  3163. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  3164. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  3165. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/rng.js +19 -0
  3166. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  3167. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
  3168. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  3169. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  3170. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v35.js +64 -0
  3171. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v4.js +24 -0
  3172. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  3173. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  3174. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/version.js +11 -0
  3175. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/index.js +9 -0
  3176. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/md5.js +13 -0
  3177. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/nil.js +1 -0
  3178. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/parse.js +35 -0
  3179. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/regex.js +1 -0
  3180. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/rng.js +12 -0
  3181. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  3182. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/stringify.js +29 -0
  3183. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v1.js +95 -0
  3184. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v3.js +4 -0
  3185. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v35.js +64 -0
  3186. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v4.js +24 -0
  3187. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v5.js +4 -0
  3188. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/validate.js +7 -0
  3189. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/version.js +11 -0
  3190. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/index.js +79 -0
  3191. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/md5-browser.js +223 -0
  3192. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/md5.js +23 -0
  3193. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/nil.js +8 -0
  3194. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/parse.js +45 -0
  3195. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/regex.js +8 -0
  3196. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/rng-browser.js +26 -0
  3197. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/rng.js +24 -0
  3198. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/sha1-browser.js +104 -0
  3199. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/sha1.js +23 -0
  3200. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/stringify.js +39 -0
  3201. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuid.min.js +1 -0
  3202. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
  3203. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
  3204. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
  3205. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
  3206. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
  3207. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
  3208. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
  3209. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
  3210. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
  3211. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/uuid-bin.js +85 -0
  3212. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v1.js +107 -0
  3213. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v3.js +16 -0
  3214. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v35.js +78 -0
  3215. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v4.js +37 -0
  3216. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v5.js +16 -0
  3217. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/validate.js +17 -0
  3218. package/node_modules/@serverless-stack/node/node_modules/uuid/dist/version.js +21 -0
  3219. package/node_modules/@serverless-stack/node/node_modules/uuid/package.json +135 -0
  3220. package/node_modules/@serverless-stack/node/node_modules/uuid/wrapper.mjs +10 -0
  3221. package/node_modules/@serverless-stack/node/package.json +19 -8
  3222. package/node_modules/asn1.js/.eslintrc.js +27 -0
  3223. package/node_modules/asn1.js/LICENSE +21 -0
  3224. package/node_modules/asn1.js/README.md +100 -0
  3225. package/node_modules/asn1.js/lib/asn1/api.js +57 -0
  3226. package/node_modules/asn1.js/lib/asn1/base/buffer.js +153 -0
  3227. package/node_modules/asn1.js/lib/asn1/base/index.js +8 -0
  3228. package/node_modules/asn1.js/lib/asn1/base/node.js +638 -0
  3229. package/node_modules/asn1.js/lib/asn1/base/reporter.js +123 -0
  3230. package/node_modules/asn1.js/lib/asn1/constants/der.js +58 -0
  3231. package/node_modules/asn1.js/lib/asn1/constants/index.js +21 -0
  3232. package/node_modules/asn1.js/lib/asn1/decoders/der.js +335 -0
  3233. package/node_modules/asn1.js/lib/asn1/decoders/index.js +6 -0
  3234. package/node_modules/asn1.js/lib/asn1/decoders/pem.js +51 -0
  3235. package/node_modules/asn1.js/lib/asn1/encoders/der.js +295 -0
  3236. package/node_modules/asn1.js/lib/asn1/encoders/index.js +6 -0
  3237. package/node_modules/asn1.js/lib/asn1/encoders/pem.js +23 -0
  3238. package/node_modules/asn1.js/lib/asn1.js +11 -0
  3239. package/node_modules/asn1.js/package.json +36 -0
  3240. package/node_modules/aws-sdk/CHANGELOG.md +108 -1
  3241. package/node_modules/aws-sdk/README.md +1 -1
  3242. package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +651 -18
  3243. package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.paginators.json +11 -0
  3244. package/node_modules/aws-sdk/apis/backup-gateway-2021-01-01.min.json +59 -8
  3245. package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +325 -8
  3246. package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.paginators.json +17 -0
  3247. package/node_modules/aws-sdk/apis/codestar-notifications-2019-10-15.min.json +7 -2
  3248. package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +60 -51
  3249. package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +237 -126
  3250. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +275 -134
  3251. package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +18 -0
  3252. package/node_modules/aws-sdk/apis/controltower-2018-05-10.examples.json +5 -0
  3253. package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +148 -0
  3254. package/node_modules/aws-sdk/apis/controltower-2018-05-10.paginators.json +10 -0
  3255. package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +12 -3
  3256. package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.examples.json +5 -0
  3257. package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +337 -335
  3258. package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.paginators.json +1 -1
  3259. package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.waiters2.json +5 -0
  3260. package/node_modules/aws-sdk/apis/devicefarm-2015-06-23.min.json +166 -132
  3261. package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +45 -45
  3262. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1678 -1323
  3263. package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +90 -45
  3264. package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +34 -19
  3265. package/node_modules/aws-sdk/apis/evidently-2021-02-01.min.json +41 -15
  3266. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +3 -1
  3267. package/node_modules/aws-sdk/apis/greengrassv2-2020-11-30.min.json +26 -19
  3268. package/node_modules/aws-sdk/apis/identitystore-2020-06-15.min.json +732 -15
  3269. package/node_modules/aws-sdk/apis/identitystore-2020-06-15.paginators.json +16 -2
  3270. package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +10 -2
  3271. package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.examples.json +5 -0
  3272. package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.min.json +1961 -0
  3273. package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.paginators.json +82 -0
  3274. package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.waiters2.json +5 -0
  3275. package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +2 -1
  3276. package/node_modules/aws-sdk/apis/iotthingsgraph-2018-09-06.min.json +105 -35
  3277. package/node_modules/aws-sdk/apis/ivs-2020-07-14.min.json +25 -19
  3278. package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +59 -22
  3279. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +282 -31
  3280. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +10 -0
  3281. package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +39 -11
  3282. package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +390 -119
  3283. package/node_modules/aws-sdk/apis/mediaconnect-2018-11-14.min.json +21 -0
  3284. package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +249 -213
  3285. package/node_modules/aws-sdk/apis/mediapackage-2017-10-12.min.json +57 -54
  3286. package/node_modules/aws-sdk/apis/metadata.json +6 -0
  3287. package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +361 -180
  3288. package/node_modules/aws-sdk/apis/nimble-2020-08-01.waiters2.json +1 -1
  3289. package/node_modules/aws-sdk/apis/rds-data-2018-08-01.min.json +132 -132
  3290. package/node_modules/aws-sdk/apis/runtime.lex.v2-2020-08-07.min.json +64 -40
  3291. package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +102 -19
  3292. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +799 -690
  3293. package/node_modules/aws-sdk/apis/sns-2010-03-31.min.json +42 -10
  3294. package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +399 -287
  3295. package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +174 -20
  3296. package/node_modules/aws-sdk/apis/voice-id-2021-09-27.min.json +15 -2
  3297. package/node_modules/aws-sdk/clients/all.d.ts +2 -0
  3298. package/node_modules/aws-sdk/clients/all.js +3 -1
  3299. package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +632 -0
  3300. package/node_modules/aws-sdk/clients/apprunner.d.ts +1 -1
  3301. package/node_modules/aws-sdk/clients/backupgateway.d.ts +72 -0
  3302. package/node_modules/aws-sdk/clients/cloudfront.d.ts +7 -7
  3303. package/node_modules/aws-sdk/clients/cloudtrail.d.ts +443 -12
  3304. package/node_modules/aws-sdk/clients/codegurureviewer.d.ts +134 -134
  3305. package/node_modules/aws-sdk/clients/codestarnotifications.d.ts +29 -29
  3306. package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +24 -11
  3307. package/node_modules/aws-sdk/clients/comprehend.d.ts +148 -34
  3308. package/node_modules/aws-sdk/clients/connect.d.ts +144 -10
  3309. package/node_modules/aws-sdk/clients/controltower.d.ts +169 -0
  3310. package/node_modules/aws-sdk/clients/controltower.js +18 -0
  3311. package/node_modules/aws-sdk/clients/cur.d.ts +1 -1
  3312. package/node_modules/aws-sdk/clients/customerprofiles.d.ts +22 -10
  3313. package/node_modules/aws-sdk/clients/dataexchange.d.ts +13 -13
  3314. package/node_modules/aws-sdk/clients/dataexchange.js +1 -0
  3315. package/node_modules/aws-sdk/clients/devicefarm.d.ts +38 -0
  3316. package/node_modules/aws-sdk/clients/drs.d.ts +3 -2
  3317. package/node_modules/aws-sdk/clients/dynamodb.d.ts +7 -7
  3318. package/node_modules/aws-sdk/clients/ec2.d.ts +521 -150
  3319. package/node_modules/aws-sdk/clients/ecs.d.ts +11 -11
  3320. package/node_modules/aws-sdk/clients/eks.d.ts +74 -16
  3321. package/node_modules/aws-sdk/clients/emrcontainers.d.ts +16 -1
  3322. package/node_modules/aws-sdk/clients/evidently.d.ts +42 -5
  3323. package/node_modules/aws-sdk/clients/fsx.d.ts +2 -2
  3324. package/node_modules/aws-sdk/clients/glue.d.ts +8 -0
  3325. package/node_modules/aws-sdk/clients/greengrassv2.d.ts +22 -13
  3326. package/node_modules/aws-sdk/clients/identitystore.d.ts +806 -22
  3327. package/node_modules/aws-sdk/clients/inspector2.d.ts +16 -2
  3328. package/node_modules/aws-sdk/clients/iotfleetwise.d.ts +2549 -0
  3329. package/node_modules/aws-sdk/clients/iotfleetwise.js +19 -0
  3330. package/node_modules/aws-sdk/clients/iotsitewise.d.ts +12 -8
  3331. package/node_modules/aws-sdk/clients/iotthingsgraph.d.ts +2 -2
  3332. package/node_modules/aws-sdk/clients/ivs.d.ts +9 -0
  3333. package/node_modules/aws-sdk/clients/kendra.d.ts +8 -8
  3334. package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +175 -2
  3335. package/node_modules/aws-sdk/clients/lexruntimev2.d.ts +25 -3
  3336. package/node_modules/aws-sdk/clients/lightsail.d.ts +66 -3
  3337. package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +399 -10
  3338. package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +35 -0
  3339. package/node_modules/aws-sdk/clients/macie2.d.ts +289 -41
  3340. package/node_modules/aws-sdk/clients/mediaconnect.d.ts +25 -1
  3341. package/node_modules/aws-sdk/clients/medialive.d.ts +38 -0
  3342. package/node_modules/aws-sdk/clients/mediapackage.d.ts +2 -0
  3343. package/node_modules/aws-sdk/clients/nimble.d.ts +14 -14
  3344. package/node_modules/aws-sdk/clients/rds.d.ts +18 -18
  3345. package/node_modules/aws-sdk/clients/rdsdataservice.d.ts +130 -130
  3346. package/node_modules/aws-sdk/clients/redshift.d.ts +15 -15
  3347. package/node_modules/aws-sdk/clients/route53.d.ts +3 -3
  3348. package/node_modules/aws-sdk/clients/s3control.d.ts +109 -41
  3349. package/node_modules/aws-sdk/clients/sagemaker.d.ts +197 -30
  3350. package/node_modules/aws-sdk/clients/sns.d.ts +42 -0
  3351. package/node_modules/aws-sdk/clients/ssm.d.ts +122 -7
  3352. package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
  3353. package/node_modules/aws-sdk/clients/ssoadmin.d.ts +115 -115
  3354. package/node_modules/aws-sdk/clients/transfer.d.ts +206 -0
  3355. package/node_modules/aws-sdk/clients/voiceid.d.ts +26 -16
  3356. package/node_modules/aws-sdk/clients/wafv2.d.ts +7 -7
  3357. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +38 -11
  3358. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +938 -796
  3359. package/node_modules/aws-sdk/dist/aws-sdk.js +3290 -2114
  3360. package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -82
  3361. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
  3362. package/node_modules/aws-sdk/lib/core.js +1 -1
  3363. package/node_modules/aws-sdk/lib/credentials/sso_credentials.d.ts +2 -0
  3364. package/node_modules/aws-sdk/lib/credentials/sso_credentials.js +5 -1
  3365. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +3 -3
  3366. package/node_modules/aws-sdk/package.json +2 -1
  3367. package/node_modules/bn.js/LICENSE +19 -0
  3368. package/node_modules/bn.js/README.md +200 -0
  3369. package/node_modules/bn.js/lib/bn.js +3446 -0
  3370. package/node_modules/bn.js/package.json +36 -0
  3371. package/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
  3372. package/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  3373. package/node_modules/ecdsa-sig-formatter/README.md +65 -0
  3374. package/node_modules/ecdsa-sig-formatter/package.json +46 -0
  3375. package/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
  3376. package/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
  3377. package/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
  3378. package/node_modules/es-abstract/2015/GetSubstitution.js +1 -1
  3379. package/node_modules/es-abstract/2015/ToNumber.js +1 -1
  3380. package/node_modules/es-abstract/2016/GetSubstitution.js +1 -1
  3381. package/node_modules/es-abstract/2016/ToNumber.js +1 -1
  3382. package/node_modules/es-abstract/2017/GetSubstitution.js +1 -1
  3383. package/node_modules/es-abstract/2017/ToNumber.js +1 -1
  3384. package/node_modules/es-abstract/2018/GetSubstitution.js +1 -1
  3385. package/node_modules/es-abstract/2018/ToNumber.js +1 -1
  3386. package/node_modules/es-abstract/2019/GetSubstitution.js +1 -1
  3387. package/node_modules/es-abstract/2019/ToNumber.js +1 -1
  3388. package/node_modules/es-abstract/2020/GetSubstitution.js +1 -1
  3389. package/node_modules/es-abstract/2020/SameValueNonNumeric.js +1 -1
  3390. package/node_modules/es-abstract/2020/ToNumber.js +1 -1
  3391. package/node_modules/es-abstract/2021/GetSubstitution.js +1 -1
  3392. package/node_modules/es-abstract/2021/SameValueNonNumeric.js +1 -1
  3393. package/node_modules/es-abstract/2021/ToNumber.js +1 -1
  3394. package/node_modules/es-abstract/2022/GetSubstitution.js +1 -1
  3395. package/node_modules/es-abstract/2022/SameValueNonNumeric.js +1 -1
  3396. package/node_modules/es-abstract/2022/StringToNumber.js +1 -1
  3397. package/node_modules/es-abstract/CHANGELOG.md +14 -0
  3398. package/node_modules/es-abstract/helpers/regexTester.js +2 -6
  3399. package/node_modules/es-abstract/package.json +12 -10
  3400. package/node_modules/fast-jwt/LICENSE.md +13 -0
  3401. package/node_modules/fast-jwt/README.md +420 -0
  3402. package/node_modules/fast-jwt/node_modules/mnemonist/LICENSE.txt +21 -0
  3403. package/node_modules/fast-jwt/node_modules/mnemonist/README.md +112 -0
  3404. package/node_modules/fast-jwt/node_modules/mnemonist/bi-map.d.ts +46 -0
  3405. package/node_modules/fast-jwt/node_modules/mnemonist/bi-map.js +195 -0
  3406. package/node_modules/fast-jwt/node_modules/mnemonist/bit-set.d.ts +29 -0
  3407. package/node_modules/fast-jwt/node_modules/mnemonist/bit-set.js +379 -0
  3408. package/node_modules/fast-jwt/node_modules/mnemonist/bit-vector.d.ts +42 -0
  3409. package/node_modules/fast-jwt/node_modules/mnemonist/bit-vector.js +550 -0
  3410. package/node_modules/fast-jwt/node_modules/mnemonist/bk-tree.d.ts +24 -0
  3411. package/node_modules/fast-jwt/node_modules/mnemonist/bk-tree.js +180 -0
  3412. package/node_modules/fast-jwt/node_modules/mnemonist/bloom-filter.d.ts +29 -0
  3413. package/node_modules/fast-jwt/node_modules/mnemonist/bloom-filter.js +186 -0
  3414. package/node_modules/fast-jwt/node_modules/mnemonist/circular-buffer.d.ts +34 -0
  3415. package/node_modules/fast-jwt/node_modules/mnemonist/circular-buffer.js +131 -0
  3416. package/node_modules/fast-jwt/node_modules/mnemonist/critbit-tree-map.js +515 -0
  3417. package/node_modules/fast-jwt/node_modules/mnemonist/default-map.d.ts +29 -0
  3418. package/node_modules/fast-jwt/node_modules/mnemonist/default-map.js +162 -0
  3419. package/node_modules/fast-jwt/node_modules/mnemonist/default-weak-map.d.ts +18 -0
  3420. package/node_modules/fast-jwt/node_modules/mnemonist/default-weak-map.js +108 -0
  3421. package/node_modules/fast-jwt/node_modules/mnemonist/fibonacci-heap.d.ts +65 -0
  3422. package/node_modules/fast-jwt/node_modules/mnemonist/fibonacci-heap.js +320 -0
  3423. package/node_modules/fast-jwt/node_modules/mnemonist/fixed-critbit-tree-map.js +427 -0
  3424. package/node_modules/fast-jwt/node_modules/mnemonist/fixed-deque.d.ts +34 -0
  3425. package/node_modules/fast-jwt/node_modules/mnemonist/fixed-deque.js +351 -0
  3426. package/node_modules/fast-jwt/node_modules/mnemonist/fixed-reverse-heap.d.ts +25 -0
  3427. package/node_modules/fast-jwt/node_modules/mnemonist/fixed-reverse-heap.js +209 -0
  3428. package/node_modules/fast-jwt/node_modules/mnemonist/fixed-stack.d.ts +36 -0
  3429. package/node_modules/fast-jwt/node_modules/mnemonist/fixed-stack.js +242 -0
  3430. package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-map.d.ts +33 -0
  3431. package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-map.js +185 -0
  3432. package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-multi-map.d.ts +36 -0
  3433. package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-multi-map.js +196 -0
  3434. package/node_modules/fast-jwt/node_modules/mnemonist/hashed-array-tree.d.ts +32 -0
  3435. package/node_modules/fast-jwt/node_modules/mnemonist/hashed-array-tree.js +209 -0
  3436. package/node_modules/fast-jwt/node_modules/mnemonist/heap.d.ts +96 -0
  3437. package/node_modules/fast-jwt/node_modules/mnemonist/heap.js +576 -0
  3438. package/node_modules/fast-jwt/node_modules/mnemonist/index.d.ts +48 -0
  3439. package/node_modules/fast-jwt/node_modules/mnemonist/index.js +58 -0
  3440. package/node_modules/fast-jwt/node_modules/mnemonist/inverted-index.d.ts +33 -0
  3441. package/node_modules/fast-jwt/node_modules/mnemonist/inverted-index.js +249 -0
  3442. package/node_modules/fast-jwt/node_modules/mnemonist/kd-tree.d.ts +25 -0
  3443. package/node_modules/fast-jwt/node_modules/mnemonist/kd-tree.js +447 -0
  3444. package/node_modules/fast-jwt/node_modules/mnemonist/linked-list.d.ts +29 -0
  3445. package/node_modules/fast-jwt/node_modules/mnemonist/linked-list.js +261 -0
  3446. package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache-with-delete.d.ts +13 -0
  3447. package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache-with-delete.js +287 -0
  3448. package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache.d.ts +43 -0
  3449. package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache.js +436 -0
  3450. package/node_modules/fast-jwt/node_modules/mnemonist/lru-map-with-delete.d.ts +13 -0
  3451. package/node_modules/fast-jwt/node_modules/mnemonist/lru-map-with-delete.js +287 -0
  3452. package/node_modules/fast-jwt/node_modules/mnemonist/lru-map.d.ts +43 -0
  3453. package/node_modules/fast-jwt/node_modules/mnemonist/lru-map.js +261 -0
  3454. package/node_modules/fast-jwt/node_modules/mnemonist/multi-array.js +447 -0
  3455. package/node_modules/fast-jwt/node_modules/mnemonist/multi-map.d.ts +47 -0
  3456. package/node_modules/fast-jwt/node_modules/mnemonist/multi-map.js +408 -0
  3457. package/node_modules/fast-jwt/node_modules/mnemonist/multi-set.d.ts +37 -0
  3458. package/node_modules/fast-jwt/node_modules/mnemonist/multi-set.js +440 -0
  3459. package/node_modules/fast-jwt/node_modules/mnemonist/package.json +103 -0
  3460. package/node_modules/fast-jwt/node_modules/mnemonist/passjoin-index.d.ts +54 -0
  3461. package/node_modules/fast-jwt/node_modules/mnemonist/passjoin-index.js +518 -0
  3462. package/node_modules/fast-jwt/node_modules/mnemonist/queue.d.ts +27 -0
  3463. package/node_modules/fast-jwt/node_modules/mnemonist/queue.js +215 -0
  3464. package/node_modules/fast-jwt/node_modules/mnemonist/semi-dynamic-trie.js +251 -0
  3465. package/node_modules/fast-jwt/node_modules/mnemonist/set.d.ts +18 -0
  3466. package/node_modules/fast-jwt/node_modules/mnemonist/set.js +356 -0
  3467. package/node_modules/fast-jwt/node_modules/mnemonist/sort/insertion.d.ts +4 -0
  3468. package/node_modules/fast-jwt/node_modules/mnemonist/sort/insertion.js +50 -0
  3469. package/node_modules/fast-jwt/node_modules/mnemonist/sort/quick.d.ts +4 -0
  3470. package/node_modules/fast-jwt/node_modules/mnemonist/sort/quick.js +116 -0
  3471. package/node_modules/fast-jwt/node_modules/mnemonist/sparse-map.d.ts +26 -0
  3472. package/node_modules/fast-jwt/node_modules/mnemonist/sparse-map.js +243 -0
  3473. package/node_modules/fast-jwt/node_modules/mnemonist/sparse-queue-set.d.ts +24 -0
  3474. package/node_modules/fast-jwt/node_modules/mnemonist/sparse-queue-set.js +218 -0
  3475. package/node_modules/fast-jwt/node_modules/mnemonist/sparse-set.d.ts +23 -0
  3476. package/node_modules/fast-jwt/node_modules/mnemonist/sparse-set.js +168 -0
  3477. package/node_modules/fast-jwt/node_modules/mnemonist/stack.d.ts +27 -0
  3478. package/node_modules/fast-jwt/node_modules/mnemonist/stack.js +210 -0
  3479. package/node_modules/fast-jwt/node_modules/mnemonist/static-disjoint-set.d.ts +23 -0
  3480. package/node_modules/fast-jwt/node_modules/mnemonist/static-disjoint-set.js +195 -0
  3481. package/node_modules/fast-jwt/node_modules/mnemonist/static-interval-tree.d.ts +24 -0
  3482. package/node_modules/fast-jwt/node_modules/mnemonist/static-interval-tree.js +387 -0
  3483. package/node_modules/fast-jwt/node_modules/mnemonist/suffix-array.d.ts +37 -0
  3484. package/node_modules/fast-jwt/node_modules/mnemonist/suffix-array.js +352 -0
  3485. package/node_modules/fast-jwt/node_modules/mnemonist/symspell.d.ts +33 -0
  3486. package/node_modules/fast-jwt/node_modules/mnemonist/symspell.js +547 -0
  3487. package/node_modules/fast-jwt/node_modules/mnemonist/trie-map.d.ts +30 -0
  3488. package/node_modules/fast-jwt/node_modules/mnemonist/trie-map.js +477 -0
  3489. package/node_modules/fast-jwt/node_modules/mnemonist/trie.d.ts +26 -0
  3490. package/node_modules/fast-jwt/node_modules/mnemonist/trie.js +167 -0
  3491. package/node_modules/fast-jwt/node_modules/mnemonist/utils/binary-search.js +216 -0
  3492. package/node_modules/fast-jwt/node_modules/mnemonist/utils/bitwise.js +109 -0
  3493. package/node_modules/fast-jwt/node_modules/mnemonist/utils/comparators.js +79 -0
  3494. package/node_modules/fast-jwt/node_modules/mnemonist/utils/hash-tables.js +107 -0
  3495. package/node_modules/fast-jwt/node_modules/mnemonist/utils/iterables.js +93 -0
  3496. package/node_modules/fast-jwt/node_modules/mnemonist/utils/merge.js +563 -0
  3497. package/node_modules/fast-jwt/node_modules/mnemonist/utils/murmurhash3.js +87 -0
  3498. package/node_modules/fast-jwt/node_modules/mnemonist/utils/typed-arrays.js +187 -0
  3499. package/node_modules/fast-jwt/node_modules/mnemonist/utils/types.d.ts +18 -0
  3500. package/node_modules/fast-jwt/node_modules/mnemonist/vector.d.ts +81 -0
  3501. package/node_modules/fast-jwt/node_modules/mnemonist/vector.js +373 -0
  3502. package/node_modules/fast-jwt/node_modules/mnemonist/vp-tree.d.ts +27 -0
  3503. package/node_modules/fast-jwt/node_modules/mnemonist/vp-tree.js +367 -0
  3504. package/node_modules/fast-jwt/node_modules/obliterator/LICENSE.txt +21 -0
  3505. package/node_modules/fast-jwt/node_modules/obliterator/README.md +415 -0
  3506. package/node_modules/fast-jwt/node_modules/obliterator/chain.d.ts +5 -0
  3507. package/node_modules/fast-jwt/node_modules/obliterator/chain.js +46 -0
  3508. package/node_modules/fast-jwt/node_modules/obliterator/combinations.d.ts +4 -0
  3509. package/node_modules/fast-jwt/node_modules/obliterator/combinations.js +76 -0
  3510. package/node_modules/fast-jwt/node_modules/obliterator/consume.d.ts +1 -0
  3511. package/node_modules/fast-jwt/node_modules/obliterator/consume.js +29 -0
  3512. package/node_modules/fast-jwt/node_modules/obliterator/every.d.ts +8 -0
  3513. package/node_modules/fast-jwt/node_modules/obliterator/every.js +27 -0
  3514. package/node_modules/fast-jwt/node_modules/obliterator/filter.d.ts +8 -0
  3515. package/node_modules/fast-jwt/node_modules/obliterator/filter.js +28 -0
  3516. package/node_modules/fast-jwt/node_modules/obliterator/find.d.ts +8 -0
  3517. package/node_modules/fast-jwt/node_modules/obliterator/find.js +27 -0
  3518. package/node_modules/fast-jwt/node_modules/obliterator/foreach-with-null-keys.d.ts +29 -0
  3519. package/node_modules/fast-jwt/node_modules/obliterator/foreach-with-null-keys.js +83 -0
  3520. package/node_modules/fast-jwt/node_modules/obliterator/foreach.d.ts +24 -0
  3521. package/node_modules/fast-jwt/node_modules/obliterator/foreach.js +73 -0
  3522. package/node_modules/fast-jwt/node_modules/obliterator/includes.d.ts +6 -0
  3523. package/node_modules/fast-jwt/node_modules/obliterator/includes.js +27 -0
  3524. package/node_modules/fast-jwt/node_modules/obliterator/index.d.ts +20 -0
  3525. package/node_modules/fast-jwt/node_modules/obliterator/index.js +26 -0
  3526. package/node_modules/fast-jwt/node_modules/obliterator/iter.d.ts +1 -0
  3527. package/node_modules/fast-jwt/node_modules/obliterator/iter.js +46 -0
  3528. package/node_modules/fast-jwt/node_modules/obliterator/iterator.d.ts +18 -0
  3529. package/node_modules/fast-jwt/node_modules/obliterator/iterator.js +96 -0
  3530. package/node_modules/fast-jwt/node_modules/obliterator/map.d.ts +8 -0
  3531. package/node_modules/fast-jwt/node_modules/obliterator/map.js +29 -0
  3532. package/node_modules/fast-jwt/node_modules/obliterator/match.d.ts +4 -0
  3533. package/node_modules/fast-jwt/node_modules/obliterator/match.js +43 -0
  3534. package/node_modules/fast-jwt/node_modules/obliterator/package.json +46 -0
  3535. package/node_modules/fast-jwt/node_modules/obliterator/permutations.d.ts +4 -0
  3536. package/node_modules/fast-jwt/node_modules/obliterator/permutations.js +94 -0
  3537. package/node_modules/fast-jwt/node_modules/obliterator/power-set.d.ts +3 -0
  3538. package/node_modules/fast-jwt/node_modules/obliterator/power-set.js +27 -0
  3539. package/node_modules/fast-jwt/node_modules/obliterator/range.d.ts +10 -0
  3540. package/node_modules/fast-jwt/node_modules/obliterator/range.js +44 -0
  3541. package/node_modules/fast-jwt/node_modules/obliterator/some.d.ts +8 -0
  3542. package/node_modules/fast-jwt/node_modules/obliterator/some.js +27 -0
  3543. package/node_modules/fast-jwt/node_modules/obliterator/split.d.ts +4 -0
  3544. package/node_modules/fast-jwt/node_modules/obliterator/split.js +68 -0
  3545. package/node_modules/fast-jwt/node_modules/obliterator/support.js +2 -0
  3546. package/node_modules/fast-jwt/node_modules/obliterator/take-into.d.ts +9 -0
  3547. package/node_modules/fast-jwt/node_modules/obliterator/take-into.js +39 -0
  3548. package/node_modules/fast-jwt/node_modules/obliterator/take.d.ts +6 -0
  3549. package/node_modules/fast-jwt/node_modules/obliterator/take.js +39 -0
  3550. package/node_modules/fast-jwt/node_modules/obliterator/types.d.ts +18 -0
  3551. package/node_modules/fast-jwt/package.json +84 -0
  3552. package/node_modules/fast-jwt/src/crypto.js +362 -0
  3553. package/node_modules/fast-jwt/src/decoder.js +60 -0
  3554. package/node_modules/fast-jwt/src/error.js +45 -0
  3555. package/node_modules/fast-jwt/src/index.d.ts +122 -0
  3556. package/node_modules/fast-jwt/src/index.js +13 -0
  3557. package/node_modules/fast-jwt/src/signer.js +309 -0
  3558. package/node_modules/fast-jwt/src/utils.js +65 -0
  3559. package/node_modules/fast-jwt/src/verifier.js +470 -0
  3560. package/node_modules/get-intrinsic/CHANGELOG.md +7 -0
  3561. package/node_modules/get-intrinsic/index.js +1 -1
  3562. package/node_modules/get-intrinsic/package.json +7 -4
  3563. package/node_modules/is-callable/.editorconfig +5 -0
  3564. package/node_modules/is-callable/.eslintrc +0 -11
  3565. package/node_modules/is-callable/CHANGELOG.md +50 -0
  3566. package/node_modules/is-callable/README.md +16 -0
  3567. package/node_modules/is-callable/index.js +35 -8
  3568. package/node_modules/is-callable/package.json +27 -13
  3569. package/node_modules/is-callable/test/index.js +86 -12
  3570. package/node_modules/jose/LICENSE.md +21 -0
  3571. package/node_modules/jose/README.md +159 -0
  3572. package/node_modules/jose/dist/browser/index.js +31 -0
  3573. package/node_modules/jose/dist/browser/jwe/compact/decrypt.js +27 -0
  3574. package/node_modules/jose/dist/browser/jwe/compact/encrypt.js +26 -0
  3575. package/node_modules/jose/dist/browser/jwe/flattened/decrypt.js +137 -0
  3576. package/node_modules/jose/dist/browser/jwe/flattened/encrypt.js +175 -0
  3577. package/node_modules/jose/dist/browser/jwe/general/decrypt.js +31 -0
  3578. package/node_modules/jose/dist/browser/jwe/general/encrypt.js +178 -0
  3579. package/node_modules/jose/dist/browser/jwk/embedded.js +17 -0
  3580. package/node_modules/jose/dist/browser/jwk/thumbprint.js +53 -0
  3581. package/node_modules/jose/dist/browser/jwks/local.js +98 -0
  3582. package/node_modules/jose/dist/browser/jwks/remote.js +81 -0
  3583. package/node_modules/jose/dist/browser/jws/compact/sign.js +17 -0
  3584. package/node_modules/jose/dist/browser/jws/compact/verify.js +21 -0
  3585. package/node_modules/jose/dist/browser/jws/flattened/sign.js +81 -0
  3586. package/node_modules/jose/dist/browser/jws/flattened/verify.js +104 -0
  3587. package/node_modules/jose/dist/browser/jws/general/sign.js +67 -0
  3588. package/node_modules/jose/dist/browser/jws/general/verify.js +24 -0
  3589. package/node_modules/jose/dist/browser/jwt/decrypt.js +23 -0
  3590. package/node_modules/jose/dist/browser/jwt/encrypt.js +68 -0
  3591. package/node_modules/jose/dist/browser/jwt/produce.js +54 -0
  3592. package/node_modules/jose/dist/browser/jwt/sign.js +21 -0
  3593. package/node_modules/jose/dist/browser/jwt/unsecured.js +32 -0
  3594. package/node_modules/jose/dist/browser/jwt/verify.js +16 -0
  3595. package/node_modules/jose/dist/browser/key/export.js +12 -0
  3596. package/node_modules/jose/dist/browser/key/generate_key_pair.js +4 -0
  3597. package/node_modules/jose/dist/browser/key/generate_secret.js +4 -0
  3598. package/node_modules/jose/dist/browser/key/import.js +120 -0
  3599. package/node_modules/jose/dist/browser/lib/aesgcmkw.js +14 -0
  3600. package/node_modules/jose/dist/browser/lib/buffer_utils.js +51 -0
  3601. package/node_modules/jose/dist/browser/lib/cek.js +20 -0
  3602. package/node_modules/jose/dist/browser/lib/check_iv_length.js +8 -0
  3603. package/node_modules/jose/dist/browser/lib/check_key_type.js +45 -0
  3604. package/node_modules/jose/dist/browser/lib/check_p2s.js +6 -0
  3605. package/node_modules/jose/dist/browser/lib/crypto_key.js +145 -0
  3606. package/node_modules/jose/dist/browser/lib/decrypt_key_management.js +98 -0
  3607. package/node_modules/jose/dist/browser/lib/encrypt_key_management.js +87 -0
  3608. package/node_modules/jose/dist/browser/lib/epoch.js +1 -0
  3609. package/node_modules/jose/dist/browser/lib/format_pem.js +4 -0
  3610. package/node_modules/jose/dist/browser/lib/invalid_key_input.js +30 -0
  3611. package/node_modules/jose/dist/browser/lib/is_disjoint.js +22 -0
  3612. package/node_modules/jose/dist/browser/lib/is_object.js +16 -0
  3613. package/node_modules/jose/dist/browser/lib/iv.js +20 -0
  3614. package/node_modules/jose/dist/browser/lib/jwt_claims_set.js +91 -0
  3615. package/node_modules/jose/dist/browser/lib/secs.js +44 -0
  3616. package/node_modules/jose/dist/browser/lib/validate_algorithms.js +11 -0
  3617. package/node_modules/jose/dist/browser/lib/validate_crit.js +34 -0
  3618. package/node_modules/jose/dist/browser/package.json +1 -0
  3619. package/node_modules/jose/dist/browser/runtime/aeskw.js +32 -0
  3620. package/node_modules/jose/dist/browser/runtime/asn1.js +118 -0
  3621. package/node_modules/jose/dist/browser/runtime/base64url.js +37 -0
  3622. package/node_modules/jose/dist/browser/runtime/bogus.js +6 -0
  3623. package/node_modules/jose/dist/browser/runtime/check_cek_length.js +8 -0
  3624. package/node_modules/jose/dist/browser/runtime/check_key_length.js +8 -0
  3625. package/node_modules/jose/dist/browser/runtime/decrypt.js +85 -0
  3626. package/node_modules/jose/dist/browser/runtime/digest.js +6 -0
  3627. package/node_modules/jose/dist/browser/runtime/ecdhes.js +33 -0
  3628. package/node_modules/jose/dist/browser/runtime/encrypt.js +68 -0
  3629. package/node_modules/jose/dist/browser/runtime/env.js +3 -0
  3630. package/node_modules/jose/dist/browser/runtime/fetch_jwks.js +34 -0
  3631. package/node_modules/jose/dist/browser/runtime/generate.js +126 -0
  3632. package/node_modules/jose/dist/browser/runtime/get_sign_verify_key.js +17 -0
  3633. package/node_modules/jose/dist/browser/runtime/is_key_like.js +5 -0
  3634. package/node_modules/jose/dist/browser/runtime/jwk_to_key.js +135 -0
  3635. package/node_modules/jose/dist/browser/runtime/key_to_jwk.js +21 -0
  3636. package/node_modules/jose/dist/browser/runtime/pbes2kw.js +51 -0
  3637. package/node_modules/jose/dist/browser/runtime/random.js +2 -0
  3638. package/node_modules/jose/dist/browser/runtime/rsaes.js +37 -0
  3639. package/node_modules/jose/dist/browser/runtime/sign.js +11 -0
  3640. package/node_modules/jose/dist/browser/runtime/subtle_dsa.js +28 -0
  3641. package/node_modules/jose/dist/browser/runtime/subtle_rsaes.js +12 -0
  3642. package/node_modules/jose/dist/browser/runtime/timing_safe_equal.js +19 -0
  3643. package/node_modules/jose/dist/browser/runtime/verify.js +16 -0
  3644. package/node_modules/jose/dist/browser/runtime/webcrypto.js +2 -0
  3645. package/node_modules/jose/dist/browser/runtime/zlib.js +7 -0
  3646. package/node_modules/jose/dist/browser/util/base64url.js +3 -0
  3647. package/node_modules/jose/dist/browser/util/decode_jwt.js +32 -0
  3648. package/node_modules/jose/dist/browser/util/decode_protected_header.js +34 -0
  3649. package/node_modules/jose/dist/browser/util/errors.js +147 -0
  3650. package/node_modules/jose/dist/node/cjs/index.js +65 -0
  3651. package/node_modules/jose/dist/node/cjs/jwe/compact/decrypt.js +31 -0
  3652. package/node_modules/jose/dist/node/cjs/jwe/compact/encrypt.js +30 -0
  3653. package/node_modules/jose/dist/node/cjs/jwe/flattened/decrypt.js +141 -0
  3654. package/node_modules/jose/dist/node/cjs/jwe/flattened/encrypt.js +179 -0
  3655. package/node_modules/jose/dist/node/cjs/jwe/general/decrypt.js +35 -0
  3656. package/node_modules/jose/dist/node/cjs/jwe/general/encrypt.js +182 -0
  3657. package/node_modules/jose/dist/node/cjs/jwk/embedded.js +21 -0
  3658. package/node_modules/jose/dist/node/cjs/jwk/thumbprint.js +58 -0
  3659. package/node_modules/jose/dist/node/cjs/jwks/local.js +104 -0
  3660. package/node_modules/jose/dist/node/cjs/jwks/remote.js +85 -0
  3661. package/node_modules/jose/dist/node/cjs/jws/compact/sign.js +21 -0
  3662. package/node_modules/jose/dist/node/cjs/jws/compact/verify.js +25 -0
  3663. package/node_modules/jose/dist/node/cjs/jws/flattened/sign.js +85 -0
  3664. package/node_modules/jose/dist/node/cjs/jws/flattened/verify.js +108 -0
  3665. package/node_modules/jose/dist/node/cjs/jws/general/sign.js +71 -0
  3666. package/node_modules/jose/dist/node/cjs/jws/general/verify.js +28 -0
  3667. package/node_modules/jose/dist/node/cjs/jwt/decrypt.js +27 -0
  3668. package/node_modules/jose/dist/node/cjs/jwt/encrypt.js +72 -0
  3669. package/node_modules/jose/dist/node/cjs/jwt/produce.js +58 -0
  3670. package/node_modules/jose/dist/node/cjs/jwt/sign.js +25 -0
  3671. package/node_modules/jose/dist/node/cjs/jwt/unsecured.js +36 -0
  3672. package/node_modules/jose/dist/node/cjs/jwt/verify.js +20 -0
  3673. package/node_modules/jose/dist/node/cjs/key/export.js +18 -0
  3674. package/node_modules/jose/dist/node/cjs/key/generate_key_pair.js +8 -0
  3675. package/node_modules/jose/dist/node/cjs/key/generate_secret.js +8 -0
  3676. package/node_modules/jose/dist/node/cjs/key/import.js +127 -0
  3677. package/node_modules/jose/dist/node/cjs/lib/aesgcmkw.js +19 -0
  3678. package/node_modules/jose/dist/node/cjs/lib/buffer_utils.js +60 -0
  3679. package/node_modules/jose/dist/node/cjs/lib/cek.js +24 -0
  3680. package/node_modules/jose/dist/node/cjs/lib/check_iv_length.js +10 -0
  3681. package/node_modules/jose/dist/node/cjs/lib/check_key_type.js +47 -0
  3682. package/node_modules/jose/dist/node/cjs/lib/check_p2s.js +9 -0
  3683. package/node_modules/jose/dist/node/cjs/lib/crypto_key.js +150 -0
  3684. package/node_modules/jose/dist/node/cjs/lib/decrypt_key_management.js +100 -0
  3685. package/node_modules/jose/dist/node/cjs/lib/encrypt_key_management.js +89 -0
  3686. package/node_modules/jose/dist/node/cjs/lib/epoch.js +3 -0
  3687. package/node_modules/jose/dist/node/cjs/lib/format_pem.js +6 -0
  3688. package/node_modules/jose/dist/node/cjs/lib/invalid_key_input.js +34 -0
  3689. package/node_modules/jose/dist/node/cjs/lib/is_disjoint.js +24 -0
  3690. package/node_modules/jose/dist/node/cjs/lib/is_object.js +19 -0
  3691. package/node_modules/jose/dist/node/cjs/lib/iv.js +24 -0
  3692. package/node_modules/jose/dist/node/cjs/lib/jwt_claims_set.js +93 -0
  3693. package/node_modules/jose/dist/node/cjs/lib/secs.js +46 -0
  3694. package/node_modules/jose/dist/node/cjs/lib/validate_algorithms.js +13 -0
  3695. package/node_modules/jose/dist/node/cjs/lib/validate_crit.js +36 -0
  3696. package/node_modules/jose/dist/node/cjs/runtime/aeskw.js +55 -0
  3697. package/node_modules/jose/dist/node/cjs/runtime/asn1.js +48 -0
  3698. package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_decoder.js +47 -0
  3699. package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_encoder.js +91 -0
  3700. package/node_modules/jose/dist/node/cjs/runtime/base64url.js +26 -0
  3701. package/node_modules/jose/dist/node/cjs/runtime/cbc_tag.js +11 -0
  3702. package/node_modules/jose/dist/node/cjs/runtime/check_cek_length.js +37 -0
  3703. package/node_modules/jose/dist/node/cjs/runtime/check_modulus_length.js +52 -0
  3704. package/node_modules/jose/dist/node/cjs/runtime/ciphers.js +8 -0
  3705. package/node_modules/jose/dist/node/cjs/runtime/decrypt.js +97 -0
  3706. package/node_modules/jose/dist/node/cjs/runtime/digest.js +5 -0
  3707. package/node_modules/jose/dist/node/cjs/runtime/dsa_digest.js +25 -0
  3708. package/node_modules/jose/dist/node/cjs/runtime/ecdhes.js +70 -0
  3709. package/node_modules/jose/dist/node/cjs/runtime/encrypt.js +74 -0
  3710. package/node_modules/jose/dist/node/cjs/runtime/env.js +7 -0
  3711. package/node_modules/jose/dist/node/cjs/runtime/fetch_jwks.js +45 -0
  3712. package/node_modules/jose/dist/node/cjs/runtime/generate.js +105 -0
  3713. package/node_modules/jose/dist/node/cjs/runtime/get_named_curve.js +95 -0
  3714. package/node_modules/jose/dist/node/cjs/runtime/get_sign_verify_key.js +24 -0
  3715. package/node_modules/jose/dist/node/cjs/runtime/hmac_digest.js +16 -0
  3716. package/node_modules/jose/dist/node/cjs/runtime/is_key_like.js +11 -0
  3717. package/node_modules/jose/dist/node/cjs/runtime/is_key_object.js +7 -0
  3718. package/node_modules/jose/dist/node/cjs/runtime/jwk_to_key.js +122 -0
  3719. package/node_modules/jose/dist/node/cjs/runtime/key_to_jwk.js +164 -0
  3720. package/node_modules/jose/dist/node/cjs/runtime/node_key.js +83 -0
  3721. package/node_modules/jose/dist/node/cjs/runtime/pbes2kw.js +48 -0
  3722. package/node_modules/jose/dist/node/cjs/runtime/random.js +5 -0
  3723. package/node_modules/jose/dist/node/cjs/runtime/rsaes.js +69 -0
  3724. package/node_modules/jose/dist/node/cjs/runtime/sign.js +25 -0
  3725. package/node_modules/jose/dist/node/cjs/runtime/timing_safe_equal.js +5 -0
  3726. package/node_modules/jose/dist/node/cjs/runtime/verify.js +42 -0
  3727. package/node_modules/jose/dist/node/cjs/runtime/webcrypto.js +11 -0
  3728. package/node_modules/jose/dist/node/cjs/runtime/zlib.js +11 -0
  3729. package/node_modules/jose/dist/node/cjs/util/base64url.js +6 -0
  3730. package/node_modules/jose/dist/node/cjs/util/decode_jwt.js +36 -0
  3731. package/node_modules/jose/dist/node/cjs/util/decode_protected_header.js +38 -0
  3732. package/node_modules/jose/dist/node/cjs/util/errors.js +165 -0
  3733. package/node_modules/jose/dist/node/esm/index.js +29 -0
  3734. package/node_modules/jose/dist/node/esm/jwe/compact/decrypt.js +27 -0
  3735. package/node_modules/jose/dist/node/esm/jwe/compact/encrypt.js +26 -0
  3736. package/node_modules/jose/dist/node/esm/jwe/flattened/decrypt.js +137 -0
  3737. package/node_modules/jose/dist/node/esm/jwe/flattened/encrypt.js +175 -0
  3738. package/node_modules/jose/dist/node/esm/jwe/general/decrypt.js +31 -0
  3739. package/node_modules/jose/dist/node/esm/jwe/general/encrypt.js +178 -0
  3740. package/node_modules/jose/dist/node/esm/jwk/embedded.js +17 -0
  3741. package/node_modules/jose/dist/node/esm/jwk/thumbprint.js +53 -0
  3742. package/node_modules/jose/dist/node/esm/jwks/local.js +98 -0
  3743. package/node_modules/jose/dist/node/esm/jwks/remote.js +81 -0
  3744. package/node_modules/jose/dist/node/esm/jws/compact/sign.js +17 -0
  3745. package/node_modules/jose/dist/node/esm/jws/compact/verify.js +21 -0
  3746. package/node_modules/jose/dist/node/esm/jws/flattened/sign.js +81 -0
  3747. package/node_modules/jose/dist/node/esm/jws/flattened/verify.js +104 -0
  3748. package/node_modules/jose/dist/node/esm/jws/general/sign.js +67 -0
  3749. package/node_modules/jose/dist/node/esm/jws/general/verify.js +24 -0
  3750. package/node_modules/jose/dist/node/esm/jwt/decrypt.js +23 -0
  3751. package/node_modules/jose/dist/node/esm/jwt/encrypt.js +68 -0
  3752. package/node_modules/jose/dist/node/esm/jwt/produce.js +54 -0
  3753. package/node_modules/jose/dist/node/esm/jwt/sign.js +21 -0
  3754. package/node_modules/jose/dist/node/esm/jwt/unsecured.js +32 -0
  3755. package/node_modules/jose/dist/node/esm/jwt/verify.js +16 -0
  3756. package/node_modules/jose/dist/node/esm/key/export.js +12 -0
  3757. package/node_modules/jose/dist/node/esm/key/generate_key_pair.js +4 -0
  3758. package/node_modules/jose/dist/node/esm/key/generate_secret.js +4 -0
  3759. package/node_modules/jose/dist/node/esm/key/import.js +120 -0
  3760. package/node_modules/jose/dist/node/esm/lib/aesgcmkw.js +14 -0
  3761. package/node_modules/jose/dist/node/esm/lib/buffer_utils.js +51 -0
  3762. package/node_modules/jose/dist/node/esm/lib/cek.js +20 -0
  3763. package/node_modules/jose/dist/node/esm/lib/check_iv_length.js +8 -0
  3764. package/node_modules/jose/dist/node/esm/lib/check_key_type.js +45 -0
  3765. package/node_modules/jose/dist/node/esm/lib/check_p2s.js +6 -0
  3766. package/node_modules/jose/dist/node/esm/lib/crypto_key.js +145 -0
  3767. package/node_modules/jose/dist/node/esm/lib/decrypt_key_management.js +98 -0
  3768. package/node_modules/jose/dist/node/esm/lib/encrypt_key_management.js +87 -0
  3769. package/node_modules/jose/dist/node/esm/lib/epoch.js +1 -0
  3770. package/node_modules/jose/dist/node/esm/lib/format_pem.js +4 -0
  3771. package/node_modules/jose/dist/node/esm/lib/invalid_key_input.js +30 -0
  3772. package/node_modules/jose/dist/node/esm/lib/is_disjoint.js +22 -0
  3773. package/node_modules/jose/dist/node/esm/lib/is_object.js +16 -0
  3774. package/node_modules/jose/dist/node/esm/lib/iv.js +20 -0
  3775. package/node_modules/jose/dist/node/esm/lib/jwt_claims_set.js +91 -0
  3776. package/node_modules/jose/dist/node/esm/lib/secs.js +44 -0
  3777. package/node_modules/jose/dist/node/esm/lib/validate_algorithms.js +11 -0
  3778. package/node_modules/jose/dist/node/esm/lib/validate_crit.js +34 -0
  3779. package/node_modules/jose/dist/node/esm/package.json +1 -0
  3780. package/node_modules/jose/dist/node/esm/runtime/aeskw.js +50 -0
  3781. package/node_modules/jose/dist/node/esm/runtime/asn1.js +41 -0
  3782. package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_decoder.js +44 -0
  3783. package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_encoder.js +88 -0
  3784. package/node_modules/jose/dist/node/esm/runtime/base64url.js +20 -0
  3785. package/node_modules/jose/dist/node/esm/runtime/cbc_tag.js +8 -0
  3786. package/node_modules/jose/dist/node/esm/runtime/check_cek_length.js +35 -0
  3787. package/node_modules/jose/dist/node/esm/runtime/check_modulus_length.js +48 -0
  3788. package/node_modules/jose/dist/node/esm/runtime/ciphers.js +6 -0
  3789. package/node_modules/jose/dist/node/esm/runtime/decrypt.js +95 -0
  3790. package/node_modules/jose/dist/node/esm/runtime/digest.js +3 -0
  3791. package/node_modules/jose/dist/node/esm/runtime/dsa_digest.js +22 -0
  3792. package/node_modules/jose/dist/node/esm/runtime/ecdhes.js +64 -0
  3793. package/node_modules/jose/dist/node/esm/runtime/encrypt.js +72 -0
  3794. package/node_modules/jose/dist/node/esm/runtime/env.js +3 -0
  3795. package/node_modules/jose/dist/node/esm/runtime/fetch_jwks.js +43 -0
  3796. package/node_modules/jose/dist/node/esm/runtime/generate.js +100 -0
  3797. package/node_modules/jose/dist/node/esm/runtime/get_named_curve.js +91 -0
  3798. package/node_modules/jose/dist/node/esm/runtime/get_sign_verify_key.js +21 -0
  3799. package/node_modules/jose/dist/node/esm/runtime/hmac_digest.js +13 -0
  3800. package/node_modules/jose/dist/node/esm/runtime/is_key_like.js +8 -0
  3801. package/node_modules/jose/dist/node/esm/runtime/is_key_object.js +5 -0
  3802. package/node_modules/jose/dist/node/esm/runtime/jwk_to_key.js +120 -0
  3803. package/node_modules/jose/dist/node/esm/runtime/key_to_jwk.js +162 -0
  3804. package/node_modules/jose/dist/node/esm/runtime/node_key.js +80 -0
  3805. package/node_modules/jose/dist/node/esm/runtime/pbes2kw.js +43 -0
  3806. package/node_modules/jose/dist/node/esm/runtime/random.js +1 -0
  3807. package/node_modules/jose/dist/node/esm/runtime/rsaes.js +64 -0
  3808. package/node_modules/jose/dist/node/esm/runtime/sign.js +23 -0
  3809. package/node_modules/jose/dist/node/esm/runtime/timing_safe_equal.js +3 -0
  3810. package/node_modules/jose/dist/node/esm/runtime/verify.js +40 -0
  3811. package/node_modules/jose/dist/node/esm/runtime/webcrypto.js +8 -0
  3812. package/node_modules/jose/dist/node/esm/runtime/zlib.js +6 -0
  3813. package/node_modules/jose/dist/node/esm/util/base64url.js +3 -0
  3814. package/node_modules/jose/dist/node/esm/util/decode_jwt.js +32 -0
  3815. package/node_modules/jose/dist/node/esm/util/decode_protected_header.js +34 -0
  3816. package/node_modules/jose/dist/node/esm/util/errors.js +147 -0
  3817. package/node_modules/jose/dist/types/index.d.ts +47 -0
  3818. package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +33 -0
  3819. package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +60 -0
  3820. package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +43 -0
  3821. package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +89 -0
  3822. package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +47 -0
  3823. package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +74 -0
  3824. package/node_modules/jose/dist/types/jwk/embedded.d.ts +23 -0
  3825. package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +44 -0
  3826. package/node_modules/jose/dist/types/jwks/local.d.ts +48 -0
  3827. package/node_modules/jose/dist/types/jwks/remote.d.ts +54 -0
  3828. package/node_modules/jose/dist/types/jws/compact/sign.d.ts +34 -0
  3829. package/node_modules/jose/dist/types/jws/compact/verify.d.ts +37 -0
  3830. package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +42 -0
  3831. package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +42 -0
  3832. package/node_modules/jose/dist/types/jws/general/sign.d.ts +54 -0
  3833. package/node_modules/jose/dist/types/jws/general/verify.d.ts +45 -0
  3834. package/node_modules/jose/dist/types/jwt/decrypt.d.ts +40 -0
  3835. package/node_modules/jose/dist/types/jwt/encrypt.d.ts +84 -0
  3836. package/node_modules/jose/dist/types/jwt/produce.d.ts +53 -0
  3837. package/node_modules/jose/dist/types/jwt/sign.d.ts +35 -0
  3838. package/node_modules/jose/dist/types/jwt/unsecured.d.ts +44 -0
  3839. package/node_modules/jose/dist/types/jwt/verify.d.ts +44 -0
  3840. package/node_modules/jose/dist/types/key/export.d.ts +47 -0
  3841. package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +44 -0
  3842. package/node_modules/jose/dist/types/key/generate_secret.d.ts +26 -0
  3843. package/node_modules/jose/dist/types/key/import.d.ts +115 -0
  3844. package/node_modules/jose/dist/types/types.d.ts +602 -0
  3845. package/node_modules/jose/dist/types/util/base64url.d.ts +19 -0
  3846. package/node_modules/jose/dist/types/util/decode_jwt.d.ts +17 -0
  3847. package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +15 -0
  3848. package/node_modules/jose/dist/types/util/errors.d.ts +96 -0
  3849. package/node_modules/jose/package.json +82 -0
  3850. package/node_modules/minimalistic-assert/LICENSE +13 -0
  3851. package/node_modules/minimalistic-assert/index.js +11 -0
  3852. package/node_modules/minimalistic-assert/package.json +19 -0
  3853. package/node_modules/minimalistic-assert/readme.md +4 -0
  3854. package/node_modules/object-hash/LICENSE +22 -0
  3855. package/node_modules/object-hash/dist/object_hash.js +1 -0
  3856. package/node_modules/object-hash/index.js +453 -0
  3857. package/node_modules/object-hash/package.json +53 -0
  3858. package/node_modules/object-hash/readme.markdown +184 -0
  3859. package/node_modules/oidc-token-hash/LICENSE.md +21 -0
  3860. package/node_modules/oidc-token-hash/README.md +55 -0
  3861. package/node_modules/oidc-token-hash/lib/index.js +106 -0
  3862. package/node_modules/oidc-token-hash/lib/shake256.js +7 -0
  3863. package/node_modules/oidc-token-hash/package.json +36 -0
  3864. package/node_modules/openid-client/LICENSE.md +21 -0
  3865. package/node_modules/openid-client/README.md +299 -0
  3866. package/node_modules/openid-client/lib/client.js +1815 -0
  3867. package/node_modules/openid-client/lib/device_flow_handle.js +125 -0
  3868. package/node_modules/openid-client/lib/errors.js +55 -0
  3869. package/node_modules/openid-client/lib/helpers/assert.js +24 -0
  3870. package/node_modules/openid-client/lib/helpers/base64url.js +13 -0
  3871. package/node_modules/openid-client/lib/helpers/client.js +209 -0
  3872. package/node_modules/openid-client/lib/helpers/consts.js +7 -0
  3873. package/node_modules/openid-client/lib/helpers/decode_jwt.js +27 -0
  3874. package/node_modules/openid-client/lib/helpers/deep_clone.js +3 -0
  3875. package/node_modules/openid-client/lib/helpers/defaults.js +27 -0
  3876. package/node_modules/openid-client/lib/helpers/generators.js +14 -0
  3877. package/node_modules/openid-client/lib/helpers/is_key_object.js +4 -0
  3878. package/node_modules/openid-client/lib/helpers/is_plain_object.js +1 -0
  3879. package/node_modules/openid-client/lib/helpers/issuer.js +110 -0
  3880. package/node_modules/openid-client/lib/helpers/keystore.js +312 -0
  3881. package/node_modules/openid-client/lib/helpers/merge.js +24 -0
  3882. package/node_modules/openid-client/lib/helpers/pick.js +9 -0
  3883. package/node_modules/openid-client/lib/helpers/process_response.js +71 -0
  3884. package/node_modules/openid-client/lib/helpers/request.js +197 -0
  3885. package/node_modules/openid-client/lib/helpers/unix_timestamp.js +1 -0
  3886. package/node_modules/openid-client/lib/helpers/weak_cache.js +1 -0
  3887. package/node_modules/openid-client/lib/helpers/webfinger_normalize.js +71 -0
  3888. package/node_modules/openid-client/lib/helpers/www_authenticate_parser.js +14 -0
  3889. package/node_modules/openid-client/lib/index.js +23 -0
  3890. package/node_modules/openid-client/lib/index.mjs +9 -0
  3891. package/node_modules/openid-client/lib/issuer.js +204 -0
  3892. package/node_modules/openid-client/lib/issuer_registry.js +3 -0
  3893. package/node_modules/openid-client/lib/passport_strategy.js +194 -0
  3894. package/node_modules/openid-client/lib/token_set.js +35 -0
  3895. package/node_modules/openid-client/node_modules/lru-cache/LICENSE +15 -0
  3896. package/node_modules/openid-client/node_modules/lru-cache/README.md +166 -0
  3897. package/node_modules/openid-client/node_modules/lru-cache/index.js +334 -0
  3898. package/node_modules/openid-client/node_modules/lru-cache/package.json +34 -0
  3899. package/node_modules/openid-client/package.json +118 -0
  3900. package/node_modules/openid-client/types/index.d.ts +620 -0
  3901. package/node_modules/safe-regex-test/.eslintrc +9 -0
  3902. package/node_modules/safe-regex-test/.github/FUNDING.yml +12 -0
  3903. package/node_modules/safe-regex-test/CHANGELOG.md +15 -0
  3904. package/node_modules/safe-regex-test/LICENSE +21 -0
  3905. package/node_modules/safe-regex-test/README.md +42 -0
  3906. package/node_modules/safe-regex-test/index.js +17 -0
  3907. package/node_modules/safe-regex-test/package.json +75 -0
  3908. package/node_modules/safe-regex-test/test/index.js +37 -0
  3909. package/node_modules/safer-buffer/LICENSE +21 -0
  3910. package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  3911. package/node_modules/safer-buffer/Readme.md +156 -0
  3912. package/node_modules/safer-buffer/dangerous.js +58 -0
  3913. package/node_modules/safer-buffer/package.json +34 -0
  3914. package/node_modules/safer-buffer/safer.js +77 -0
  3915. package/node_modules/safer-buffer/tests.js +406 -0
  3916. package/node_modules/ws/lib/websocket.js +15 -15
  3917. package/node_modules/ws/package.json +1 -1
  3918. package/node_modules/yallist/LICENSE +15 -0
  3919. package/node_modules/yallist/README.md +204 -0
  3920. package/node_modules/yallist/iterator.js +8 -0
  3921. package/node_modules/yallist/package.json +29 -0
  3922. package/node_modules/yallist/yallist.js +426 -0
  3923. package/package.json +40 -38
  3924. package/cli/serverlessSpy.js +0 -73
  3925. package/cli/ws.ts +0 -79
  3926. package/common/publishSpyEvent.ts +0 -269
  3927. package/lib/cli/ws.js +0 -68
  3928. package/lib/cli/ws.mjs +0 -66
  3929. package/lib/common/publishSpyEvent.d.ts +0 -4
  3930. package/lib/common/publishSpyEvent.js +0 -211
  3931. package/lib/common/publishSpyEvent.mjs +0 -205
  3932. package/node_modules/@serverless-stack/node/.turbo/turbo-build.log +0 -2
  3933. package/node_modules/@serverless-stack/node/CHANGELOG.md +0 -157
  3934. package/node_modules/@serverless-stack/node/src/auth/index.ts +0 -24
  3935. package/node_modules/@serverless-stack/node/src/config/index.ts +0 -120
  3936. package/node_modules/@serverless-stack/node/src/graphql/index.ts +0 -96
  3937. package/node_modules/@serverless-stack/node/tsconfig.json +0 -11
  3938. package/node_modules/is-callable/.eslintignore +0 -1
  3939. package/node_modules/is-callable/.istanbul.yml +0 -47
@@ -0,0 +1,2161 @@
1
+ const EventEmitter = require('events').EventEmitter;
2
+ const childProcess = require('child_process');
3
+ const path = require('path');
4
+ const fs = require('fs');
5
+ const process = require('process');
6
+
7
+ const { Argument, humanReadableArgName } = require('./argument.js');
8
+ const { CommanderError } = require('./error.js');
9
+ const { Help } = require('./help.js');
10
+ const { Option, splitOptionFlags, DualOptions } = require('./option.js');
11
+ const { suggestSimilar } = require('./suggestSimilar');
12
+
13
+ // @ts-check
14
+
15
+ class Command extends EventEmitter {
16
+ /**
17
+ * Initialize a new `Command`.
18
+ *
19
+ * @param {string} [name]
20
+ */
21
+
22
+ constructor(name) {
23
+ super();
24
+ /** @type {Command[]} */
25
+ this.commands = [];
26
+ /** @type {Option[]} */
27
+ this.options = [];
28
+ this.parent = null;
29
+ this._allowUnknownOption = false;
30
+ this._allowExcessArguments = true;
31
+ /** @type {Argument[]} */
32
+ this._args = [];
33
+ /** @type {string[]} */
34
+ this.args = []; // cli args with options removed
35
+ this.rawArgs = [];
36
+ this.processedArgs = []; // like .args but after custom processing and collecting variadic
37
+ this._scriptPath = null;
38
+ this._name = name || '';
39
+ this._optionValues = {};
40
+ this._optionValueSources = {}; // default < config < env < cli
41
+ this._storeOptionsAsProperties = false;
42
+ this._actionHandler = null;
43
+ this._executableHandler = false;
44
+ this._executableFile = null; // custom name for executable
45
+ this._executableDir = null; // custom search directory for subcommands
46
+ this._defaultCommandName = null;
47
+ this._exitCallback = null;
48
+ this._aliases = [];
49
+ this._combineFlagAndOptionalValue = true;
50
+ this._description = '';
51
+ this._summary = '';
52
+ this._argsDescription = undefined; // legacy
53
+ this._enablePositionalOptions = false;
54
+ this._passThroughOptions = false;
55
+ this._lifeCycleHooks = {}; // a hash of arrays
56
+ /** @type {boolean | string} */
57
+ this._showHelpAfterError = false;
58
+ this._showSuggestionAfterError = true;
59
+
60
+ // see .configureOutput() for docs
61
+ this._outputConfiguration = {
62
+ writeOut: (str) => process.stdout.write(str),
63
+ writeErr: (str) => process.stderr.write(str),
64
+ getOutHelpWidth: () => process.stdout.isTTY ? process.stdout.columns : undefined,
65
+ getErrHelpWidth: () => process.stderr.isTTY ? process.stderr.columns : undefined,
66
+ outputError: (str, write) => write(str)
67
+ };
68
+
69
+ this._hidden = false;
70
+ this._hasHelpOption = true;
71
+ this._helpFlags = '-h, --help';
72
+ this._helpDescription = 'display help for command';
73
+ this._helpShortFlag = '-h';
74
+ this._helpLongFlag = '--help';
75
+ this._addImplicitHelpCommand = undefined; // Deliberately undefined, not decided whether true or false
76
+ this._helpCommandName = 'help';
77
+ this._helpCommandnameAndArgs = 'help [command]';
78
+ this._helpCommandDescription = 'display help for command';
79
+ this._helpConfiguration = {};
80
+ }
81
+
82
+ /**
83
+ * Copy settings that are useful to have in common across root command and subcommands.
84
+ *
85
+ * (Used internally when adding a command using `.command()` so subcommands inherit parent settings.)
86
+ *
87
+ * @param {Command} sourceCommand
88
+ * @return {Command} `this` command for chaining
89
+ */
90
+ copyInheritedSettings(sourceCommand) {
91
+ this._outputConfiguration = sourceCommand._outputConfiguration;
92
+ this._hasHelpOption = sourceCommand._hasHelpOption;
93
+ this._helpFlags = sourceCommand._helpFlags;
94
+ this._helpDescription = sourceCommand._helpDescription;
95
+ this._helpShortFlag = sourceCommand._helpShortFlag;
96
+ this._helpLongFlag = sourceCommand._helpLongFlag;
97
+ this._helpCommandName = sourceCommand._helpCommandName;
98
+ this._helpCommandnameAndArgs = sourceCommand._helpCommandnameAndArgs;
99
+ this._helpCommandDescription = sourceCommand._helpCommandDescription;
100
+ this._helpConfiguration = sourceCommand._helpConfiguration;
101
+ this._exitCallback = sourceCommand._exitCallback;
102
+ this._storeOptionsAsProperties = sourceCommand._storeOptionsAsProperties;
103
+ this._combineFlagAndOptionalValue = sourceCommand._combineFlagAndOptionalValue;
104
+ this._allowExcessArguments = sourceCommand._allowExcessArguments;
105
+ this._enablePositionalOptions = sourceCommand._enablePositionalOptions;
106
+ this._showHelpAfterError = sourceCommand._showHelpAfterError;
107
+ this._showSuggestionAfterError = sourceCommand._showSuggestionAfterError;
108
+
109
+ return this;
110
+ }
111
+
112
+ /**
113
+ * Define a command.
114
+ *
115
+ * There are two styles of command: pay attention to where to put the description.
116
+ *
117
+ * @example
118
+ * // Command implemented using action handler (description is supplied separately to `.command`)
119
+ * program
120
+ * .command('clone <source> [destination]')
121
+ * .description('clone a repository into a newly created directory')
122
+ * .action((source, destination) => {
123
+ * console.log('clone command called');
124
+ * });
125
+ *
126
+ * // Command implemented using separate executable file (description is second parameter to `.command`)
127
+ * program
128
+ * .command('start <service>', 'start named service')
129
+ * .command('stop [service]', 'stop named service, or all if no name supplied');
130
+ *
131
+ * @param {string} nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`
132
+ * @param {Object|string} [actionOptsOrExecDesc] - configuration options (for action), or description (for executable)
133
+ * @param {Object} [execOpts] - configuration options (for executable)
134
+ * @return {Command} returns new command for action handler, or `this` for executable command
135
+ */
136
+
137
+ command(nameAndArgs, actionOptsOrExecDesc, execOpts) {
138
+ let desc = actionOptsOrExecDesc;
139
+ let opts = execOpts;
140
+ if (typeof desc === 'object' && desc !== null) {
141
+ opts = desc;
142
+ desc = null;
143
+ }
144
+ opts = opts || {};
145
+ const [, name, args] = nameAndArgs.match(/([^ ]+) *(.*)/);
146
+
147
+ const cmd = this.createCommand(name);
148
+ if (desc) {
149
+ cmd.description(desc);
150
+ cmd._executableHandler = true;
151
+ }
152
+ if (opts.isDefault) this._defaultCommandName = cmd._name;
153
+ cmd._hidden = !!(opts.noHelp || opts.hidden); // noHelp is deprecated old name for hidden
154
+ cmd._executableFile = opts.executableFile || null; // Custom name for executable file, set missing to null to match constructor
155
+ if (args) cmd.arguments(args);
156
+ this.commands.push(cmd);
157
+ cmd.parent = this;
158
+ cmd.copyInheritedSettings(this);
159
+
160
+ if (desc) return this;
161
+ return cmd;
162
+ }
163
+
164
+ /**
165
+ * Factory routine to create a new unattached command.
166
+ *
167
+ * See .command() for creating an attached subcommand, which uses this routine to
168
+ * create the command. You can override createCommand to customise subcommands.
169
+ *
170
+ * @param {string} [name]
171
+ * @return {Command} new command
172
+ */
173
+
174
+ createCommand(name) {
175
+ return new Command(name);
176
+ }
177
+
178
+ /**
179
+ * You can customise the help with a subclass of Help by overriding createHelp,
180
+ * or by overriding Help properties using configureHelp().
181
+ *
182
+ * @return {Help}
183
+ */
184
+
185
+ createHelp() {
186
+ return Object.assign(new Help(), this.configureHelp());
187
+ }
188
+
189
+ /**
190
+ * You can customise the help by overriding Help properties using configureHelp(),
191
+ * or with a subclass of Help by overriding createHelp().
192
+ *
193
+ * @param {Object} [configuration] - configuration options
194
+ * @return {Command|Object} `this` command for chaining, or stored configuration
195
+ */
196
+
197
+ configureHelp(configuration) {
198
+ if (configuration === undefined) return this._helpConfiguration;
199
+
200
+ this._helpConfiguration = configuration;
201
+ return this;
202
+ }
203
+
204
+ /**
205
+ * The default output goes to stdout and stderr. You can customise this for special
206
+ * applications. You can also customise the display of errors by overriding outputError.
207
+ *
208
+ * The configuration properties are all functions:
209
+ *
210
+ * // functions to change where being written, stdout and stderr
211
+ * writeOut(str)
212
+ * writeErr(str)
213
+ * // matching functions to specify width for wrapping help
214
+ * getOutHelpWidth()
215
+ * getErrHelpWidth()
216
+ * // functions based on what is being written out
217
+ * outputError(str, write) // used for displaying errors, and not used for displaying help
218
+ *
219
+ * @param {Object} [configuration] - configuration options
220
+ * @return {Command|Object} `this` command for chaining, or stored configuration
221
+ */
222
+
223
+ configureOutput(configuration) {
224
+ if (configuration === undefined) return this._outputConfiguration;
225
+
226
+ Object.assign(this._outputConfiguration, configuration);
227
+ return this;
228
+ }
229
+
230
+ /**
231
+ * Display the help or a custom message after an error occurs.
232
+ *
233
+ * @param {boolean|string} [displayHelp]
234
+ * @return {Command} `this` command for chaining
235
+ */
236
+ showHelpAfterError(displayHelp = true) {
237
+ if (typeof displayHelp !== 'string') displayHelp = !!displayHelp;
238
+ this._showHelpAfterError = displayHelp;
239
+ return this;
240
+ }
241
+
242
+ /**
243
+ * Display suggestion of similar commands for unknown commands, or options for unknown options.
244
+ *
245
+ * @param {boolean} [displaySuggestion]
246
+ * @return {Command} `this` command for chaining
247
+ */
248
+ showSuggestionAfterError(displaySuggestion = true) {
249
+ this._showSuggestionAfterError = !!displaySuggestion;
250
+ return this;
251
+ }
252
+
253
+ /**
254
+ * Add a prepared subcommand.
255
+ *
256
+ * See .command() for creating an attached subcommand which inherits settings from its parent.
257
+ *
258
+ * @param {Command} cmd - new subcommand
259
+ * @param {Object} [opts] - configuration options
260
+ * @return {Command} `this` command for chaining
261
+ */
262
+
263
+ addCommand(cmd, opts) {
264
+ if (!cmd._name) {
265
+ throw new Error(`Command passed to .addCommand() must have a name
266
+ - specify the name in Command constructor or using .name()`);
267
+ }
268
+
269
+ opts = opts || {};
270
+ if (opts.isDefault) this._defaultCommandName = cmd._name;
271
+ if (opts.noHelp || opts.hidden) cmd._hidden = true; // modifying passed command due to existing implementation
272
+
273
+ this.commands.push(cmd);
274
+ cmd.parent = this;
275
+ return this;
276
+ }
277
+
278
+ /**
279
+ * Factory routine to create a new unattached argument.
280
+ *
281
+ * See .argument() for creating an attached argument, which uses this routine to
282
+ * create the argument. You can override createArgument to return a custom argument.
283
+ *
284
+ * @param {string} name
285
+ * @param {string} [description]
286
+ * @return {Argument} new argument
287
+ */
288
+
289
+ createArgument(name, description) {
290
+ return new Argument(name, description);
291
+ }
292
+
293
+ /**
294
+ * Define argument syntax for command.
295
+ *
296
+ * The default is that the argument is required, and you can explicitly
297
+ * indicate this with <> around the name. Put [] around the name for an optional argument.
298
+ *
299
+ * @example
300
+ * program.argument('<input-file>');
301
+ * program.argument('[output-file]');
302
+ *
303
+ * @param {string} name
304
+ * @param {string} [description]
305
+ * @param {Function|*} [fn] - custom argument processing function
306
+ * @param {*} [defaultValue]
307
+ * @return {Command} `this` command for chaining
308
+ */
309
+ argument(name, description, fn, defaultValue) {
310
+ const argument = this.createArgument(name, description);
311
+ if (typeof fn === 'function') {
312
+ argument.default(defaultValue).argParser(fn);
313
+ } else {
314
+ argument.default(fn);
315
+ }
316
+ this.addArgument(argument);
317
+ return this;
318
+ }
319
+
320
+ /**
321
+ * Define argument syntax for command, adding multiple at once (without descriptions).
322
+ *
323
+ * See also .argument().
324
+ *
325
+ * @example
326
+ * program.arguments('<cmd> [env]');
327
+ *
328
+ * @param {string} names
329
+ * @return {Command} `this` command for chaining
330
+ */
331
+
332
+ arguments(names) {
333
+ names.split(/ +/).forEach((detail) => {
334
+ this.argument(detail);
335
+ });
336
+ return this;
337
+ }
338
+
339
+ /**
340
+ * Define argument syntax for command, adding a prepared argument.
341
+ *
342
+ * @param {Argument} argument
343
+ * @return {Command} `this` command for chaining
344
+ */
345
+ addArgument(argument) {
346
+ const previousArgument = this._args.slice(-1)[0];
347
+ if (previousArgument && previousArgument.variadic) {
348
+ throw new Error(`only the last argument can be variadic '${previousArgument.name()}'`);
349
+ }
350
+ if (argument.required && argument.defaultValue !== undefined && argument.parseArg === undefined) {
351
+ throw new Error(`a default value for a required argument is never used: '${argument.name()}'`);
352
+ }
353
+ this._args.push(argument);
354
+ return this;
355
+ }
356
+
357
+ /**
358
+ * Override default decision whether to add implicit help command.
359
+ *
360
+ * addHelpCommand() // force on
361
+ * addHelpCommand(false); // force off
362
+ * addHelpCommand('help [cmd]', 'display help for [cmd]'); // force on with custom details
363
+ *
364
+ * @return {Command} `this` command for chaining
365
+ */
366
+
367
+ addHelpCommand(enableOrNameAndArgs, description) {
368
+ if (enableOrNameAndArgs === false) {
369
+ this._addImplicitHelpCommand = false;
370
+ } else {
371
+ this._addImplicitHelpCommand = true;
372
+ if (typeof enableOrNameAndArgs === 'string') {
373
+ this._helpCommandName = enableOrNameAndArgs.split(' ')[0];
374
+ this._helpCommandnameAndArgs = enableOrNameAndArgs;
375
+ }
376
+ this._helpCommandDescription = description || this._helpCommandDescription;
377
+ }
378
+ return this;
379
+ }
380
+
381
+ /**
382
+ * @return {boolean}
383
+ * @api private
384
+ */
385
+
386
+ _hasImplicitHelpCommand() {
387
+ if (this._addImplicitHelpCommand === undefined) {
388
+ return this.commands.length && !this._actionHandler && !this._findCommand('help');
389
+ }
390
+ return this._addImplicitHelpCommand;
391
+ }
392
+
393
+ /**
394
+ * Add hook for life cycle event.
395
+ *
396
+ * @param {string} event
397
+ * @param {Function} listener
398
+ * @return {Command} `this` command for chaining
399
+ */
400
+
401
+ hook(event, listener) {
402
+ const allowedValues = ['preSubcommand', 'preAction', 'postAction'];
403
+ if (!allowedValues.includes(event)) {
404
+ throw new Error(`Unexpected value for event passed to hook : '${event}'.
405
+ Expecting one of '${allowedValues.join("', '")}'`);
406
+ }
407
+ if (this._lifeCycleHooks[event]) {
408
+ this._lifeCycleHooks[event].push(listener);
409
+ } else {
410
+ this._lifeCycleHooks[event] = [listener];
411
+ }
412
+ return this;
413
+ }
414
+
415
+ /**
416
+ * Register callback to use as replacement for calling process.exit.
417
+ *
418
+ * @param {Function} [fn] optional callback which will be passed a CommanderError, defaults to throwing
419
+ * @return {Command} `this` command for chaining
420
+ */
421
+
422
+ exitOverride(fn) {
423
+ if (fn) {
424
+ this._exitCallback = fn;
425
+ } else {
426
+ this._exitCallback = (err) => {
427
+ if (err.code !== 'commander.executeSubCommandAsync') {
428
+ throw err;
429
+ } else {
430
+ // Async callback from spawn events, not useful to throw.
431
+ }
432
+ };
433
+ }
434
+ return this;
435
+ }
436
+
437
+ /**
438
+ * Call process.exit, and _exitCallback if defined.
439
+ *
440
+ * @param {number} exitCode exit code for using with process.exit
441
+ * @param {string} code an id string representing the error
442
+ * @param {string} message human-readable description of the error
443
+ * @return never
444
+ * @api private
445
+ */
446
+
447
+ _exit(exitCode, code, message) {
448
+ if (this._exitCallback) {
449
+ this._exitCallback(new CommanderError(exitCode, code, message));
450
+ // Expecting this line is not reached.
451
+ }
452
+ process.exit(exitCode);
453
+ }
454
+
455
+ /**
456
+ * Register callback `fn` for the command.
457
+ *
458
+ * @example
459
+ * program
460
+ * .command('serve')
461
+ * .description('start service')
462
+ * .action(function() {
463
+ * // do work here
464
+ * });
465
+ *
466
+ * @param {Function} fn
467
+ * @return {Command} `this` command for chaining
468
+ */
469
+
470
+ action(fn) {
471
+ const listener = (args) => {
472
+ // The .action callback takes an extra parameter which is the command or options.
473
+ const expectedArgsCount = this._args.length;
474
+ const actionArgs = args.slice(0, expectedArgsCount);
475
+ if (this._storeOptionsAsProperties) {
476
+ actionArgs[expectedArgsCount] = this; // backwards compatible "options"
477
+ } else {
478
+ actionArgs[expectedArgsCount] = this.opts();
479
+ }
480
+ actionArgs.push(this);
481
+
482
+ return fn.apply(this, actionArgs);
483
+ };
484
+ this._actionHandler = listener;
485
+ return this;
486
+ }
487
+
488
+ /**
489
+ * Factory routine to create a new unattached option.
490
+ *
491
+ * See .option() for creating an attached option, which uses this routine to
492
+ * create the option. You can override createOption to return a custom option.
493
+ *
494
+ * @param {string} flags
495
+ * @param {string} [description]
496
+ * @return {Option} new option
497
+ */
498
+
499
+ createOption(flags, description) {
500
+ return new Option(flags, description);
501
+ }
502
+
503
+ /**
504
+ * Add an option.
505
+ *
506
+ * @param {Option} option
507
+ * @return {Command} `this` command for chaining
508
+ */
509
+ addOption(option) {
510
+ const oname = option.name();
511
+ const name = option.attributeName();
512
+
513
+ // store default value
514
+ if (option.negate) {
515
+ // --no-foo is special and defaults foo to true, unless a --foo option is already defined
516
+ const positiveLongFlag = option.long.replace(/^--no-/, '--');
517
+ if (!this._findOption(positiveLongFlag)) {
518
+ this.setOptionValueWithSource(name, option.defaultValue === undefined ? true : option.defaultValue, 'default');
519
+ }
520
+ } else if (option.defaultValue !== undefined) {
521
+ this.setOptionValueWithSource(name, option.defaultValue, 'default');
522
+ }
523
+
524
+ // register the option
525
+ this.options.push(option);
526
+
527
+ // handler for cli and env supplied values
528
+ const handleOptionValue = (val, invalidValueMessage, valueSource) => {
529
+ // val is null for optional option used without an optional-argument.
530
+ // val is undefined for boolean and negated option.
531
+ if (val == null && option.presetArg !== undefined) {
532
+ val = option.presetArg;
533
+ }
534
+
535
+ // custom processing
536
+ const oldValue = this.getOptionValue(name);
537
+ if (val !== null && option.parseArg) {
538
+ try {
539
+ val = option.parseArg(val, oldValue);
540
+ } catch (err) {
541
+ if (err.code === 'commander.invalidArgument') {
542
+ const message = `${invalidValueMessage} ${err.message}`;
543
+ this.error(message, { exitCode: err.exitCode, code: err.code });
544
+ }
545
+ throw err;
546
+ }
547
+ } else if (val !== null && option.variadic) {
548
+ val = option._concatValue(val, oldValue);
549
+ }
550
+
551
+ // Fill-in appropriate missing values. Long winded but easy to follow.
552
+ if (val == null) {
553
+ if (option.negate) {
554
+ val = false;
555
+ } else if (option.isBoolean() || option.optional) {
556
+ val = true;
557
+ } else {
558
+ val = ''; // not normal, parseArg might have failed or be a mock function for testing
559
+ }
560
+ }
561
+ this.setOptionValueWithSource(name, val, valueSource);
562
+ };
563
+
564
+ this.on('option:' + oname, (val) => {
565
+ const invalidValueMessage = `error: option '${option.flags}' argument '${val}' is invalid.`;
566
+ handleOptionValue(val, invalidValueMessage, 'cli');
567
+ });
568
+
569
+ if (option.envVar) {
570
+ this.on('optionEnv:' + oname, (val) => {
571
+ const invalidValueMessage = `error: option '${option.flags}' value '${val}' from env '${option.envVar}' is invalid.`;
572
+ handleOptionValue(val, invalidValueMessage, 'env');
573
+ });
574
+ }
575
+
576
+ return this;
577
+ }
578
+
579
+ /**
580
+ * Internal implementation shared by .option() and .requiredOption()
581
+ *
582
+ * @api private
583
+ */
584
+ _optionEx(config, flags, description, fn, defaultValue) {
585
+ if (typeof flags === 'object' && flags instanceof Option) {
586
+ throw new Error('To add an Option object use addOption() instead of option() or requiredOption()');
587
+ }
588
+ const option = this.createOption(flags, description);
589
+ option.makeOptionMandatory(!!config.mandatory);
590
+ if (typeof fn === 'function') {
591
+ option.default(defaultValue).argParser(fn);
592
+ } else if (fn instanceof RegExp) {
593
+ // deprecated
594
+ const regex = fn;
595
+ fn = (val, def) => {
596
+ const m = regex.exec(val);
597
+ return m ? m[0] : def;
598
+ };
599
+ option.default(defaultValue).argParser(fn);
600
+ } else {
601
+ option.default(fn);
602
+ }
603
+
604
+ return this.addOption(option);
605
+ }
606
+
607
+ /**
608
+ * Define option with `flags`, `description` and optional
609
+ * coercion `fn`.
610
+ *
611
+ * The `flags` string contains the short and/or long flags,
612
+ * separated by comma, a pipe or space. The following are all valid
613
+ * all will output this way when `--help` is used.
614
+ *
615
+ * "-p, --pepper"
616
+ * "-p|--pepper"
617
+ * "-p --pepper"
618
+ *
619
+ * @example
620
+ * // simple boolean defaulting to undefined
621
+ * program.option('-p, --pepper', 'add pepper');
622
+ *
623
+ * program.pepper
624
+ * // => undefined
625
+ *
626
+ * --pepper
627
+ * program.pepper
628
+ * // => true
629
+ *
630
+ * // simple boolean defaulting to true (unless non-negated option is also defined)
631
+ * program.option('-C, --no-cheese', 'remove cheese');
632
+ *
633
+ * program.cheese
634
+ * // => true
635
+ *
636
+ * --no-cheese
637
+ * program.cheese
638
+ * // => false
639
+ *
640
+ * // required argument
641
+ * program.option('-C, --chdir <path>', 'change the working directory');
642
+ *
643
+ * --chdir /tmp
644
+ * program.chdir
645
+ * // => "/tmp"
646
+ *
647
+ * // optional argument
648
+ * program.option('-c, --cheese [type]', 'add cheese [marble]');
649
+ *
650
+ * @param {string} flags
651
+ * @param {string} [description]
652
+ * @param {Function|*} [fn] - custom option processing function or default value
653
+ * @param {*} [defaultValue]
654
+ * @return {Command} `this` command for chaining
655
+ */
656
+
657
+ option(flags, description, fn, defaultValue) {
658
+ return this._optionEx({}, flags, description, fn, defaultValue);
659
+ }
660
+
661
+ /**
662
+ * Add a required option which must have a value after parsing. This usually means
663
+ * the option must be specified on the command line. (Otherwise the same as .option().)
664
+ *
665
+ * The `flags` string contains the short and/or long flags, separated by comma, a pipe or space.
666
+ *
667
+ * @param {string} flags
668
+ * @param {string} [description]
669
+ * @param {Function|*} [fn] - custom option processing function or default value
670
+ * @param {*} [defaultValue]
671
+ * @return {Command} `this` command for chaining
672
+ */
673
+
674
+ requiredOption(flags, description, fn, defaultValue) {
675
+ return this._optionEx({ mandatory: true }, flags, description, fn, defaultValue);
676
+ }
677
+
678
+ /**
679
+ * Alter parsing of short flags with optional values.
680
+ *
681
+ * @example
682
+ * // for `.option('-f,--flag [value]'):
683
+ * program.combineFlagAndOptionalValue(true); // `-f80` is treated like `--flag=80`, this is the default behaviour
684
+ * program.combineFlagAndOptionalValue(false) // `-fb` is treated like `-f -b`
685
+ *
686
+ * @param {Boolean} [combine=true] - if `true` or omitted, an optional value can be specified directly after the flag.
687
+ */
688
+ combineFlagAndOptionalValue(combine = true) {
689
+ this._combineFlagAndOptionalValue = !!combine;
690
+ return this;
691
+ }
692
+
693
+ /**
694
+ * Allow unknown options on the command line.
695
+ *
696
+ * @param {Boolean} [allowUnknown=true] - if `true` or omitted, no error will be thrown
697
+ * for unknown options.
698
+ */
699
+ allowUnknownOption(allowUnknown = true) {
700
+ this._allowUnknownOption = !!allowUnknown;
701
+ return this;
702
+ }
703
+
704
+ /**
705
+ * Allow excess command-arguments on the command line. Pass false to make excess arguments an error.
706
+ *
707
+ * @param {Boolean} [allowExcess=true] - if `true` or omitted, no error will be thrown
708
+ * for excess arguments.
709
+ */
710
+ allowExcessArguments(allowExcess = true) {
711
+ this._allowExcessArguments = !!allowExcess;
712
+ return this;
713
+ }
714
+
715
+ /**
716
+ * Enable positional options. Positional means global options are specified before subcommands which lets
717
+ * subcommands reuse the same option names, and also enables subcommands to turn on passThroughOptions.
718
+ * The default behaviour is non-positional and global options may appear anywhere on the command line.
719
+ *
720
+ * @param {Boolean} [positional=true]
721
+ */
722
+ enablePositionalOptions(positional = true) {
723
+ this._enablePositionalOptions = !!positional;
724
+ return this;
725
+ }
726
+
727
+ /**
728
+ * Pass through options that come after command-arguments rather than treat them as command-options,
729
+ * so actual command-options come before command-arguments. Turning this on for a subcommand requires
730
+ * positional options to have been enabled on the program (parent commands).
731
+ * The default behaviour is non-positional and options may appear before or after command-arguments.
732
+ *
733
+ * @param {Boolean} [passThrough=true]
734
+ * for unknown options.
735
+ */
736
+ passThroughOptions(passThrough = true) {
737
+ this._passThroughOptions = !!passThrough;
738
+ if (!!this.parent && passThrough && !this.parent._enablePositionalOptions) {
739
+ throw new Error('passThroughOptions can not be used without turning on enablePositionalOptions for parent command(s)');
740
+ }
741
+ return this;
742
+ }
743
+
744
+ /**
745
+ * Whether to store option values as properties on command object,
746
+ * or store separately (specify false). In both cases the option values can be accessed using .opts().
747
+ *
748
+ * @param {boolean} [storeAsProperties=true]
749
+ * @return {Command} `this` command for chaining
750
+ */
751
+
752
+ storeOptionsAsProperties(storeAsProperties = true) {
753
+ this._storeOptionsAsProperties = !!storeAsProperties;
754
+ if (this.options.length) {
755
+ throw new Error('call .storeOptionsAsProperties() before adding options');
756
+ }
757
+ return this;
758
+ }
759
+
760
+ /**
761
+ * Retrieve option value.
762
+ *
763
+ * @param {string} key
764
+ * @return {Object} value
765
+ */
766
+
767
+ getOptionValue(key) {
768
+ if (this._storeOptionsAsProperties) {
769
+ return this[key];
770
+ }
771
+ return this._optionValues[key];
772
+ }
773
+
774
+ /**
775
+ * Store option value.
776
+ *
777
+ * @param {string} key
778
+ * @param {Object} value
779
+ * @return {Command} `this` command for chaining
780
+ */
781
+
782
+ setOptionValue(key, value) {
783
+ if (this._storeOptionsAsProperties) {
784
+ this[key] = value;
785
+ } else {
786
+ this._optionValues[key] = value;
787
+ }
788
+ return this;
789
+ }
790
+
791
+ /**
792
+ * Store option value and where the value came from.
793
+ *
794
+ * @param {string} key
795
+ * @param {Object} value
796
+ * @param {string} source - expected values are default/config/env/cli
797
+ * @return {Command} `this` command for chaining
798
+ */
799
+
800
+ setOptionValueWithSource(key, value, source) {
801
+ this.setOptionValue(key, value);
802
+ this._optionValueSources[key] = source;
803
+ return this;
804
+ }
805
+
806
+ /**
807
+ * Get source of option value.
808
+ * Expected values are default | config | env | cli
809
+ *
810
+ * @param {string} key
811
+ * @return {string}
812
+ */
813
+
814
+ getOptionValueSource(key) {
815
+ return this._optionValueSources[key];
816
+ }
817
+
818
+ /**
819
+ * Get user arguments from implied or explicit arguments.
820
+ * Side-effects: set _scriptPath if args included script. Used for default program name, and subcommand searches.
821
+ *
822
+ * @api private
823
+ */
824
+
825
+ _prepareUserArgs(argv, parseOptions) {
826
+ if (argv !== undefined && !Array.isArray(argv)) {
827
+ throw new Error('first parameter to parse must be array or undefined');
828
+ }
829
+ parseOptions = parseOptions || {};
830
+
831
+ // Default to using process.argv
832
+ if (argv === undefined) {
833
+ argv = process.argv;
834
+ // @ts-ignore: unknown property
835
+ if (process.versions && process.versions.electron) {
836
+ parseOptions.from = 'electron';
837
+ }
838
+ }
839
+ this.rawArgs = argv.slice();
840
+
841
+ // make it a little easier for callers by supporting various argv conventions
842
+ let userArgs;
843
+ switch (parseOptions.from) {
844
+ case undefined:
845
+ case 'node':
846
+ this._scriptPath = argv[1];
847
+ userArgs = argv.slice(2);
848
+ break;
849
+ case 'electron':
850
+ // @ts-ignore: unknown property
851
+ if (process.defaultApp) {
852
+ this._scriptPath = argv[1];
853
+ userArgs = argv.slice(2);
854
+ } else {
855
+ userArgs = argv.slice(1);
856
+ }
857
+ break;
858
+ case 'user':
859
+ userArgs = argv.slice(0);
860
+ break;
861
+ default:
862
+ throw new Error(`unexpected parse option { from: '${parseOptions.from}' }`);
863
+ }
864
+
865
+ // Find default name for program from arguments.
866
+ if (!this._name && this._scriptPath) this.nameFromFilename(this._scriptPath);
867
+ this._name = this._name || 'program';
868
+
869
+ return userArgs;
870
+ }
871
+
872
+ /**
873
+ * Parse `argv`, setting options and invoking commands when defined.
874
+ *
875
+ * The default expectation is that the arguments are from node and have the application as argv[0]
876
+ * and the script being run in argv[1], with user parameters after that.
877
+ *
878
+ * @example
879
+ * program.parse(process.argv);
880
+ * program.parse(); // implicitly use process.argv and auto-detect node vs electron conventions
881
+ * program.parse(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
882
+ *
883
+ * @param {string[]} [argv] - optional, defaults to process.argv
884
+ * @param {Object} [parseOptions] - optionally specify style of options with from: node/user/electron
885
+ * @param {string} [parseOptions.from] - where the args are from: 'node', 'user', 'electron'
886
+ * @return {Command} `this` command for chaining
887
+ */
888
+
889
+ parse(argv, parseOptions) {
890
+ const userArgs = this._prepareUserArgs(argv, parseOptions);
891
+ this._parseCommand([], userArgs);
892
+
893
+ return this;
894
+ }
895
+
896
+ /**
897
+ * Parse `argv`, setting options and invoking commands when defined.
898
+ *
899
+ * Use parseAsync instead of parse if any of your action handlers are async. Returns a Promise.
900
+ *
901
+ * The default expectation is that the arguments are from node and have the application as argv[0]
902
+ * and the script being run in argv[1], with user parameters after that.
903
+ *
904
+ * @example
905
+ * await program.parseAsync(process.argv);
906
+ * await program.parseAsync(); // implicitly use process.argv and auto-detect node vs electron conventions
907
+ * await program.parseAsync(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
908
+ *
909
+ * @param {string[]} [argv]
910
+ * @param {Object} [parseOptions]
911
+ * @param {string} parseOptions.from - where the args are from: 'node', 'user', 'electron'
912
+ * @return {Promise}
913
+ */
914
+
915
+ async parseAsync(argv, parseOptions) {
916
+ const userArgs = this._prepareUserArgs(argv, parseOptions);
917
+ await this._parseCommand([], userArgs);
918
+
919
+ return this;
920
+ }
921
+
922
+ /**
923
+ * Execute a sub-command executable.
924
+ *
925
+ * @api private
926
+ */
927
+
928
+ _executeSubCommand(subcommand, args) {
929
+ args = args.slice();
930
+ let launchWithNode = false; // Use node for source targets so do not need to get permissions correct, and on Windows.
931
+ const sourceExt = ['.js', '.ts', '.tsx', '.mjs', '.cjs'];
932
+
933
+ function findFile(baseDir, baseName) {
934
+ // Look for specified file
935
+ const localBin = path.resolve(baseDir, baseName);
936
+ if (fs.existsSync(localBin)) return localBin;
937
+
938
+ // Stop looking if candidate already has an expected extension.
939
+ if (sourceExt.includes(path.extname(baseName))) return undefined;
940
+
941
+ // Try all the extensions.
942
+ const foundExt = sourceExt.find(ext => fs.existsSync(`${localBin}${ext}`));
943
+ if (foundExt) return `${localBin}${foundExt}`;
944
+
945
+ return undefined;
946
+ }
947
+
948
+ // Not checking for help first. Unlikely to have mandatory and executable, and can't robustly test for help flags in external command.
949
+ this._checkForMissingMandatoryOptions();
950
+ this._checkForConflictingOptions();
951
+
952
+ // executableFile and executableDir might be full path, or just a name
953
+ let executableFile = subcommand._executableFile || `${this._name}-${subcommand._name}`;
954
+ let executableDir = this._executableDir || '';
955
+ if (this._scriptPath) {
956
+ let resolvedScriptPath; // resolve possible symlink for installed npm binary
957
+ try {
958
+ resolvedScriptPath = fs.realpathSync(this._scriptPath);
959
+ } catch (err) {
960
+ resolvedScriptPath = this._scriptPath;
961
+ }
962
+ executableDir = path.resolve(path.dirname(resolvedScriptPath), executableDir);
963
+ }
964
+
965
+ // Look for a local file in preference to a command in PATH.
966
+ if (executableDir) {
967
+ let localFile = findFile(executableDir, executableFile);
968
+
969
+ // Legacy search using prefix of script name instead of command name
970
+ if (!localFile && !subcommand._executableFile && this._scriptPath) {
971
+ const legacyName = path.basename(this._scriptPath, path.extname(this._scriptPath));
972
+ if (legacyName !== this._name) {
973
+ localFile = findFile(executableDir, `${legacyName}-${subcommand._name}`);
974
+ }
975
+ }
976
+ executableFile = localFile || executableFile;
977
+ }
978
+
979
+ launchWithNode = sourceExt.includes(path.extname(executableFile));
980
+
981
+ let proc;
982
+ if (process.platform !== 'win32') {
983
+ if (launchWithNode) {
984
+ args.unshift(executableFile);
985
+ // add executable arguments to spawn
986
+ args = incrementNodeInspectorPort(process.execArgv).concat(args);
987
+
988
+ proc = childProcess.spawn(process.argv[0], args, { stdio: 'inherit' });
989
+ } else {
990
+ proc = childProcess.spawn(executableFile, args, { stdio: 'inherit' });
991
+ }
992
+ } else {
993
+ args.unshift(executableFile);
994
+ // add executable arguments to spawn
995
+ args = incrementNodeInspectorPort(process.execArgv).concat(args);
996
+ proc = childProcess.spawn(process.execPath, args, { stdio: 'inherit' });
997
+ }
998
+
999
+ if (!proc.killed) { // testing mainly to avoid leak warnings during unit tests with mocked spawn
1000
+ const signals = ['SIGUSR1', 'SIGUSR2', 'SIGTERM', 'SIGINT', 'SIGHUP'];
1001
+ signals.forEach((signal) => {
1002
+ // @ts-ignore
1003
+ process.on(signal, () => {
1004
+ if (proc.killed === false && proc.exitCode === null) {
1005
+ proc.kill(signal);
1006
+ }
1007
+ });
1008
+ });
1009
+ }
1010
+
1011
+ // By default terminate process when spawned process terminates.
1012
+ // Suppressing the exit if exitCallback defined is a bit messy and of limited use, but does allow process to stay running!
1013
+ const exitCallback = this._exitCallback;
1014
+ if (!exitCallback) {
1015
+ proc.on('close', process.exit.bind(process));
1016
+ } else {
1017
+ proc.on('close', () => {
1018
+ exitCallback(new CommanderError(process.exitCode || 0, 'commander.executeSubCommandAsync', '(close)'));
1019
+ });
1020
+ }
1021
+ proc.on('error', (err) => {
1022
+ // @ts-ignore
1023
+ if (err.code === 'ENOENT') {
1024
+ const executableDirMessage = executableDir
1025
+ ? `searched for local subcommand relative to directory '${executableDir}'`
1026
+ : 'no directory for search for local subcommand, use .executableDir() to supply a custom directory';
1027
+ const executableMissing = `'${executableFile}' does not exist
1028
+ - if '${subcommand._name}' is not meant to be an executable command, remove description parameter from '.command()' and use '.description()' instead
1029
+ - if the default executable name is not suitable, use the executableFile option to supply a custom name or path
1030
+ - ${executableDirMessage}`;
1031
+ throw new Error(executableMissing);
1032
+ // @ts-ignore
1033
+ } else if (err.code === 'EACCES') {
1034
+ throw new Error(`'${executableFile}' not executable`);
1035
+ }
1036
+ if (!exitCallback) {
1037
+ process.exit(1);
1038
+ } else {
1039
+ const wrappedError = new CommanderError(1, 'commander.executeSubCommandAsync', '(error)');
1040
+ wrappedError.nestedError = err;
1041
+ exitCallback(wrappedError);
1042
+ }
1043
+ });
1044
+
1045
+ // Store the reference to the child process
1046
+ this.runningCommand = proc;
1047
+ }
1048
+
1049
+ /**
1050
+ * @api private
1051
+ */
1052
+
1053
+ _dispatchSubcommand(commandName, operands, unknown) {
1054
+ const subCommand = this._findCommand(commandName);
1055
+ if (!subCommand) this.help({ error: true });
1056
+
1057
+ let hookResult;
1058
+ hookResult = this._chainOrCallSubCommandHook(hookResult, subCommand, 'preSubcommand');
1059
+ hookResult = this._chainOrCall(hookResult, () => {
1060
+ if (subCommand._executableHandler) {
1061
+ this._executeSubCommand(subCommand, operands.concat(unknown));
1062
+ } else {
1063
+ return subCommand._parseCommand(operands, unknown);
1064
+ }
1065
+ });
1066
+ return hookResult;
1067
+ }
1068
+
1069
+ /**
1070
+ * Check this.args against expected this._args.
1071
+ *
1072
+ * @api private
1073
+ */
1074
+
1075
+ _checkNumberOfArguments() {
1076
+ // too few
1077
+ this._args.forEach((arg, i) => {
1078
+ if (arg.required && this.args[i] == null) {
1079
+ this.missingArgument(arg.name());
1080
+ }
1081
+ });
1082
+ // too many
1083
+ if (this._args.length > 0 && this._args[this._args.length - 1].variadic) {
1084
+ return;
1085
+ }
1086
+ if (this.args.length > this._args.length) {
1087
+ this._excessArguments(this.args);
1088
+ }
1089
+ }
1090
+
1091
+ /**
1092
+ * Process this.args using this._args and save as this.processedArgs!
1093
+ *
1094
+ * @api private
1095
+ */
1096
+
1097
+ _processArguments() {
1098
+ const myParseArg = (argument, value, previous) => {
1099
+ // Extra processing for nice error message on parsing failure.
1100
+ let parsedValue = value;
1101
+ if (value !== null && argument.parseArg) {
1102
+ try {
1103
+ parsedValue = argument.parseArg(value, previous);
1104
+ } catch (err) {
1105
+ if (err.code === 'commander.invalidArgument') {
1106
+ const message = `error: command-argument value '${value}' is invalid for argument '${argument.name()}'. ${err.message}`;
1107
+ this.error(message, { exitCode: err.exitCode, code: err.code });
1108
+ }
1109
+ throw err;
1110
+ }
1111
+ }
1112
+ return parsedValue;
1113
+ };
1114
+
1115
+ this._checkNumberOfArguments();
1116
+
1117
+ const processedArgs = [];
1118
+ this._args.forEach((declaredArg, index) => {
1119
+ let value = declaredArg.defaultValue;
1120
+ if (declaredArg.variadic) {
1121
+ // Collect together remaining arguments for passing together as an array.
1122
+ if (index < this.args.length) {
1123
+ value = this.args.slice(index);
1124
+ if (declaredArg.parseArg) {
1125
+ value = value.reduce((processed, v) => {
1126
+ return myParseArg(declaredArg, v, processed);
1127
+ }, declaredArg.defaultValue);
1128
+ }
1129
+ } else if (value === undefined) {
1130
+ value = [];
1131
+ }
1132
+ } else if (index < this.args.length) {
1133
+ value = this.args[index];
1134
+ if (declaredArg.parseArg) {
1135
+ value = myParseArg(declaredArg, value, declaredArg.defaultValue);
1136
+ }
1137
+ }
1138
+ processedArgs[index] = value;
1139
+ });
1140
+ this.processedArgs = processedArgs;
1141
+ }
1142
+
1143
+ /**
1144
+ * Once we have a promise we chain, but call synchronously until then.
1145
+ *
1146
+ * @param {Promise|undefined} promise
1147
+ * @param {Function} fn
1148
+ * @return {Promise|undefined}
1149
+ * @api private
1150
+ */
1151
+
1152
+ _chainOrCall(promise, fn) {
1153
+ // thenable
1154
+ if (promise && promise.then && typeof promise.then === 'function') {
1155
+ // already have a promise, chain callback
1156
+ return promise.then(() => fn());
1157
+ }
1158
+ // callback might return a promise
1159
+ return fn();
1160
+ }
1161
+
1162
+ /**
1163
+ *
1164
+ * @param {Promise|undefined} promise
1165
+ * @param {string} event
1166
+ * @return {Promise|undefined}
1167
+ * @api private
1168
+ */
1169
+
1170
+ _chainOrCallHooks(promise, event) {
1171
+ let result = promise;
1172
+ const hooks = [];
1173
+ getCommandAndParents(this)
1174
+ .reverse()
1175
+ .filter(cmd => cmd._lifeCycleHooks[event] !== undefined)
1176
+ .forEach(hookedCommand => {
1177
+ hookedCommand._lifeCycleHooks[event].forEach((callback) => {
1178
+ hooks.push({ hookedCommand, callback });
1179
+ });
1180
+ });
1181
+ if (event === 'postAction') {
1182
+ hooks.reverse();
1183
+ }
1184
+
1185
+ hooks.forEach((hookDetail) => {
1186
+ result = this._chainOrCall(result, () => {
1187
+ return hookDetail.callback(hookDetail.hookedCommand, this);
1188
+ });
1189
+ });
1190
+ return result;
1191
+ }
1192
+
1193
+ /**
1194
+ *
1195
+ * @param {Promise|undefined} promise
1196
+ * @param {Command} subCommand
1197
+ * @param {string} event
1198
+ * @return {Promise|undefined}
1199
+ * @api private
1200
+ */
1201
+
1202
+ _chainOrCallSubCommandHook(promise, subCommand, event) {
1203
+ let result = promise;
1204
+ if (this._lifeCycleHooks[event] !== undefined) {
1205
+ this._lifeCycleHooks[event].forEach((hook) => {
1206
+ result = this._chainOrCall(result, () => {
1207
+ return hook(this, subCommand);
1208
+ });
1209
+ });
1210
+ }
1211
+ return result;
1212
+ }
1213
+
1214
+ /**
1215
+ * Process arguments in context of this command.
1216
+ * Returns action result, in case it is a promise.
1217
+ *
1218
+ * @api private
1219
+ */
1220
+
1221
+ _parseCommand(operands, unknown) {
1222
+ const parsed = this.parseOptions(unknown);
1223
+ this._parseOptionsEnv(); // after cli, so parseArg not called on both cli and env
1224
+ this._parseOptionsImplied();
1225
+ operands = operands.concat(parsed.operands);
1226
+ unknown = parsed.unknown;
1227
+ this.args = operands.concat(unknown);
1228
+
1229
+ if (operands && this._findCommand(operands[0])) {
1230
+ return this._dispatchSubcommand(operands[0], operands.slice(1), unknown);
1231
+ }
1232
+ if (this._hasImplicitHelpCommand() && operands[0] === this._helpCommandName) {
1233
+ if (operands.length === 1) {
1234
+ this.help();
1235
+ }
1236
+ return this._dispatchSubcommand(operands[1], [], [this._helpLongFlag]);
1237
+ }
1238
+ if (this._defaultCommandName) {
1239
+ outputHelpIfRequested(this, unknown); // Run the help for default command from parent rather than passing to default command
1240
+ return this._dispatchSubcommand(this._defaultCommandName, operands, unknown);
1241
+ }
1242
+ if (this.commands.length && this.args.length === 0 && !this._actionHandler && !this._defaultCommandName) {
1243
+ // probably missing subcommand and no handler, user needs help (and exit)
1244
+ this.help({ error: true });
1245
+ }
1246
+
1247
+ outputHelpIfRequested(this, parsed.unknown);
1248
+ this._checkForMissingMandatoryOptions();
1249
+ this._checkForConflictingOptions();
1250
+
1251
+ // We do not always call this check to avoid masking a "better" error, like unknown command.
1252
+ const checkForUnknownOptions = () => {
1253
+ if (parsed.unknown.length > 0) {
1254
+ this.unknownOption(parsed.unknown[0]);
1255
+ }
1256
+ };
1257
+
1258
+ const commandEvent = `command:${this.name()}`;
1259
+ if (this._actionHandler) {
1260
+ checkForUnknownOptions();
1261
+ this._processArguments();
1262
+
1263
+ let actionResult;
1264
+ actionResult = this._chainOrCallHooks(actionResult, 'preAction');
1265
+ actionResult = this._chainOrCall(actionResult, () => this._actionHandler(this.processedArgs));
1266
+ if (this.parent) {
1267
+ actionResult = this._chainOrCall(actionResult, () => {
1268
+ this.parent.emit(commandEvent, operands, unknown); // legacy
1269
+ });
1270
+ }
1271
+ actionResult = this._chainOrCallHooks(actionResult, 'postAction');
1272
+ return actionResult;
1273
+ }
1274
+ if (this.parent && this.parent.listenerCount(commandEvent)) {
1275
+ checkForUnknownOptions();
1276
+ this._processArguments();
1277
+ this.parent.emit(commandEvent, operands, unknown); // legacy
1278
+ } else if (operands.length) {
1279
+ if (this._findCommand('*')) { // legacy default command
1280
+ return this._dispatchSubcommand('*', operands, unknown);
1281
+ }
1282
+ if (this.listenerCount('command:*')) {
1283
+ // skip option check, emit event for possible misspelling suggestion
1284
+ this.emit('command:*', operands, unknown);
1285
+ } else if (this.commands.length) {
1286
+ this.unknownCommand();
1287
+ } else {
1288
+ checkForUnknownOptions();
1289
+ this._processArguments();
1290
+ }
1291
+ } else if (this.commands.length) {
1292
+ checkForUnknownOptions();
1293
+ // This command has subcommands and nothing hooked up at this level, so display help (and exit).
1294
+ this.help({ error: true });
1295
+ } else {
1296
+ checkForUnknownOptions();
1297
+ this._processArguments();
1298
+ // fall through for caller to handle after calling .parse()
1299
+ }
1300
+ }
1301
+
1302
+ /**
1303
+ * Find matching command.
1304
+ *
1305
+ * @api private
1306
+ */
1307
+ _findCommand(name) {
1308
+ if (!name) return undefined;
1309
+ return this.commands.find(cmd => cmd._name === name || cmd._aliases.includes(name));
1310
+ }
1311
+
1312
+ /**
1313
+ * Return an option matching `arg` if any.
1314
+ *
1315
+ * @param {string} arg
1316
+ * @return {Option}
1317
+ * @api private
1318
+ */
1319
+
1320
+ _findOption(arg) {
1321
+ return this.options.find(option => option.is(arg));
1322
+ }
1323
+
1324
+ /**
1325
+ * Display an error message if a mandatory option does not have a value.
1326
+ * Called after checking for help flags in leaf subcommand.
1327
+ *
1328
+ * @api private
1329
+ */
1330
+
1331
+ _checkForMissingMandatoryOptions() {
1332
+ // Walk up hierarchy so can call in subcommand after checking for displaying help.
1333
+ for (let cmd = this; cmd; cmd = cmd.parent) {
1334
+ cmd.options.forEach((anOption) => {
1335
+ if (anOption.mandatory && (cmd.getOptionValue(anOption.attributeName()) === undefined)) {
1336
+ cmd.missingMandatoryOptionValue(anOption);
1337
+ }
1338
+ });
1339
+ }
1340
+ }
1341
+
1342
+ /**
1343
+ * Display an error message if conflicting options are used together in this.
1344
+ *
1345
+ * @api private
1346
+ */
1347
+ _checkForConflictingLocalOptions() {
1348
+ const definedNonDefaultOptions = this.options.filter(
1349
+ (option) => {
1350
+ const optionKey = option.attributeName();
1351
+ if (this.getOptionValue(optionKey) === undefined) {
1352
+ return false;
1353
+ }
1354
+ return this.getOptionValueSource(optionKey) !== 'default';
1355
+ }
1356
+ );
1357
+
1358
+ const optionsWithConflicting = definedNonDefaultOptions.filter(
1359
+ (option) => option.conflictsWith.length > 0
1360
+ );
1361
+
1362
+ optionsWithConflicting.forEach((option) => {
1363
+ const conflictingAndDefined = definedNonDefaultOptions.find((defined) =>
1364
+ option.conflictsWith.includes(defined.attributeName())
1365
+ );
1366
+ if (conflictingAndDefined) {
1367
+ this._conflictingOption(option, conflictingAndDefined);
1368
+ }
1369
+ });
1370
+ }
1371
+
1372
+ /**
1373
+ * Display an error message if conflicting options are used together.
1374
+ * Called after checking for help flags in leaf subcommand.
1375
+ *
1376
+ * @api private
1377
+ */
1378
+ _checkForConflictingOptions() {
1379
+ // Walk up hierarchy so can call in subcommand after checking for displaying help.
1380
+ for (let cmd = this; cmd; cmd = cmd.parent) {
1381
+ cmd._checkForConflictingLocalOptions();
1382
+ }
1383
+ }
1384
+
1385
+ /**
1386
+ * Parse options from `argv` removing known options,
1387
+ * and return argv split into operands and unknown arguments.
1388
+ *
1389
+ * Examples:
1390
+ *
1391
+ * argv => operands, unknown
1392
+ * --known kkk op => [op], []
1393
+ * op --known kkk => [op], []
1394
+ * sub --unknown uuu op => [sub], [--unknown uuu op]
1395
+ * sub -- --unknown uuu op => [sub --unknown uuu op], []
1396
+ *
1397
+ * @param {String[]} argv
1398
+ * @return {{operands: String[], unknown: String[]}}
1399
+ */
1400
+
1401
+ parseOptions(argv) {
1402
+ const operands = []; // operands, not options or values
1403
+ const unknown = []; // first unknown option and remaining unknown args
1404
+ let dest = operands;
1405
+ const args = argv.slice();
1406
+
1407
+ function maybeOption(arg) {
1408
+ return arg.length > 1 && arg[0] === '-';
1409
+ }
1410
+
1411
+ // parse options
1412
+ let activeVariadicOption = null;
1413
+ while (args.length) {
1414
+ const arg = args.shift();
1415
+
1416
+ // literal
1417
+ if (arg === '--') {
1418
+ if (dest === unknown) dest.push(arg);
1419
+ dest.push(...args);
1420
+ break;
1421
+ }
1422
+
1423
+ if (activeVariadicOption && !maybeOption(arg)) {
1424
+ this.emit(`option:${activeVariadicOption.name()}`, arg);
1425
+ continue;
1426
+ }
1427
+ activeVariadicOption = null;
1428
+
1429
+ if (maybeOption(arg)) {
1430
+ const option = this._findOption(arg);
1431
+ // recognised option, call listener to assign value with possible custom processing
1432
+ if (option) {
1433
+ if (option.required) {
1434
+ const value = args.shift();
1435
+ if (value === undefined) this.optionMissingArgument(option);
1436
+ this.emit(`option:${option.name()}`, value);
1437
+ } else if (option.optional) {
1438
+ let value = null;
1439
+ // historical behaviour is optional value is following arg unless an option
1440
+ if (args.length > 0 && !maybeOption(args[0])) {
1441
+ value = args.shift();
1442
+ }
1443
+ this.emit(`option:${option.name()}`, value);
1444
+ } else { // boolean flag
1445
+ this.emit(`option:${option.name()}`);
1446
+ }
1447
+ activeVariadicOption = option.variadic ? option : null;
1448
+ continue;
1449
+ }
1450
+ }
1451
+
1452
+ // Look for combo options following single dash, eat first one if known.
1453
+ if (arg.length > 2 && arg[0] === '-' && arg[1] !== '-') {
1454
+ const option = this._findOption(`-${arg[1]}`);
1455
+ if (option) {
1456
+ if (option.required || (option.optional && this._combineFlagAndOptionalValue)) {
1457
+ // option with value following in same argument
1458
+ this.emit(`option:${option.name()}`, arg.slice(2));
1459
+ } else {
1460
+ // boolean option, emit and put back remainder of arg for further processing
1461
+ this.emit(`option:${option.name()}`);
1462
+ args.unshift(`-${arg.slice(2)}`);
1463
+ }
1464
+ continue;
1465
+ }
1466
+ }
1467
+
1468
+ // Look for known long flag with value, like --foo=bar
1469
+ if (/^--[^=]+=/.test(arg)) {
1470
+ const index = arg.indexOf('=');
1471
+ const option = this._findOption(arg.slice(0, index));
1472
+ if (option && (option.required || option.optional)) {
1473
+ this.emit(`option:${option.name()}`, arg.slice(index + 1));
1474
+ continue;
1475
+ }
1476
+ }
1477
+
1478
+ // Not a recognised option by this command.
1479
+ // Might be a command-argument, or subcommand option, or unknown option, or help command or option.
1480
+
1481
+ // An unknown option means further arguments also classified as unknown so can be reprocessed by subcommands.
1482
+ if (maybeOption(arg)) {
1483
+ dest = unknown;
1484
+ }
1485
+
1486
+ // If using positionalOptions, stop processing our options at subcommand.
1487
+ if ((this._enablePositionalOptions || this._passThroughOptions) && operands.length === 0 && unknown.length === 0) {
1488
+ if (this._findCommand(arg)) {
1489
+ operands.push(arg);
1490
+ if (args.length > 0) unknown.push(...args);
1491
+ break;
1492
+ } else if (arg === this._helpCommandName && this._hasImplicitHelpCommand()) {
1493
+ operands.push(arg);
1494
+ if (args.length > 0) operands.push(...args);
1495
+ break;
1496
+ } else if (this._defaultCommandName) {
1497
+ unknown.push(arg);
1498
+ if (args.length > 0) unknown.push(...args);
1499
+ break;
1500
+ }
1501
+ }
1502
+
1503
+ // If using passThroughOptions, stop processing options at first command-argument.
1504
+ if (this._passThroughOptions) {
1505
+ dest.push(arg);
1506
+ if (args.length > 0) dest.push(...args);
1507
+ break;
1508
+ }
1509
+
1510
+ // add arg
1511
+ dest.push(arg);
1512
+ }
1513
+
1514
+ return { operands, unknown };
1515
+ }
1516
+
1517
+ /**
1518
+ * Return an object containing local option values as key-value pairs.
1519
+ *
1520
+ * @return {Object}
1521
+ */
1522
+ opts() {
1523
+ if (this._storeOptionsAsProperties) {
1524
+ // Preserve original behaviour so backwards compatible when still using properties
1525
+ const result = {};
1526
+ const len = this.options.length;
1527
+
1528
+ for (let i = 0; i < len; i++) {
1529
+ const key = this.options[i].attributeName();
1530
+ result[key] = key === this._versionOptionName ? this._version : this[key];
1531
+ }
1532
+ return result;
1533
+ }
1534
+
1535
+ return this._optionValues;
1536
+ }
1537
+
1538
+ /**
1539
+ * Return an object containing merged local and global option values as key-value pairs.
1540
+ *
1541
+ * @return {Object}
1542
+ */
1543
+ optsWithGlobals() {
1544
+ // globals overwrite locals
1545
+ return getCommandAndParents(this).reduce(
1546
+ (combinedOptions, cmd) => Object.assign(combinedOptions, cmd.opts()),
1547
+ {}
1548
+ );
1549
+ }
1550
+
1551
+ /**
1552
+ * Display error message and exit (or call exitOverride).
1553
+ *
1554
+ * @param {string} message
1555
+ * @param {Object} [errorOptions]
1556
+ * @param {string} [errorOptions.code] - an id string representing the error
1557
+ * @param {number} [errorOptions.exitCode] - used with process.exit
1558
+ */
1559
+ error(message, errorOptions) {
1560
+ // output handling
1561
+ this._outputConfiguration.outputError(`${message}\n`, this._outputConfiguration.writeErr);
1562
+ if (typeof this._showHelpAfterError === 'string') {
1563
+ this._outputConfiguration.writeErr(`${this._showHelpAfterError}\n`);
1564
+ } else if (this._showHelpAfterError) {
1565
+ this._outputConfiguration.writeErr('\n');
1566
+ this.outputHelp({ error: true });
1567
+ }
1568
+
1569
+ // exit handling
1570
+ const config = errorOptions || {};
1571
+ const exitCode = config.exitCode || 1;
1572
+ const code = config.code || 'commander.error';
1573
+ this._exit(exitCode, code, message);
1574
+ }
1575
+
1576
+ /**
1577
+ * Apply any option related environment variables, if option does
1578
+ * not have a value from cli or client code.
1579
+ *
1580
+ * @api private
1581
+ */
1582
+ _parseOptionsEnv() {
1583
+ this.options.forEach((option) => {
1584
+ if (option.envVar && option.envVar in process.env) {
1585
+ const optionKey = option.attributeName();
1586
+ // Priority check. Do not overwrite cli or options from unknown source (client-code).
1587
+ if (this.getOptionValue(optionKey) === undefined || ['default', 'config', 'env'].includes(this.getOptionValueSource(optionKey))) {
1588
+ if (option.required || option.optional) { // option can take a value
1589
+ // keep very simple, optional always takes value
1590
+ this.emit(`optionEnv:${option.name()}`, process.env[option.envVar]);
1591
+ } else { // boolean
1592
+ // keep very simple, only care that envVar defined and not the value
1593
+ this.emit(`optionEnv:${option.name()}`);
1594
+ }
1595
+ }
1596
+ }
1597
+ });
1598
+ }
1599
+
1600
+ /**
1601
+ * Apply any implied option values, if option is undefined or default value.
1602
+ *
1603
+ * @api private
1604
+ */
1605
+ _parseOptionsImplied() {
1606
+ const dualHelper = new DualOptions(this.options);
1607
+ const hasCustomOptionValue = (optionKey) => {
1608
+ return this.getOptionValue(optionKey) !== undefined && !['default', 'implied'].includes(this.getOptionValueSource(optionKey));
1609
+ };
1610
+ this.options
1611
+ .filter(option => (option.implied !== undefined) &&
1612
+ hasCustomOptionValue(option.attributeName()) &&
1613
+ dualHelper.valueFromOption(this.getOptionValue(option.attributeName()), option))
1614
+ .forEach((option) => {
1615
+ Object.keys(option.implied)
1616
+ .filter(impliedKey => !hasCustomOptionValue(impliedKey))
1617
+ .forEach(impliedKey => {
1618
+ this.setOptionValueWithSource(impliedKey, option.implied[impliedKey], 'implied');
1619
+ });
1620
+ });
1621
+ }
1622
+
1623
+ /**
1624
+ * Argument `name` is missing.
1625
+ *
1626
+ * @param {string} name
1627
+ * @api private
1628
+ */
1629
+
1630
+ missingArgument(name) {
1631
+ const message = `error: missing required argument '${name}'`;
1632
+ this.error(message, { code: 'commander.missingArgument' });
1633
+ }
1634
+
1635
+ /**
1636
+ * `Option` is missing an argument.
1637
+ *
1638
+ * @param {Option} option
1639
+ * @api private
1640
+ */
1641
+
1642
+ optionMissingArgument(option) {
1643
+ const message = `error: option '${option.flags}' argument missing`;
1644
+ this.error(message, { code: 'commander.optionMissingArgument' });
1645
+ }
1646
+
1647
+ /**
1648
+ * `Option` does not have a value, and is a mandatory option.
1649
+ *
1650
+ * @param {Option} option
1651
+ * @api private
1652
+ */
1653
+
1654
+ missingMandatoryOptionValue(option) {
1655
+ const message = `error: required option '${option.flags}' not specified`;
1656
+ this.error(message, { code: 'commander.missingMandatoryOptionValue' });
1657
+ }
1658
+
1659
+ /**
1660
+ * `Option` conflicts with another option.
1661
+ *
1662
+ * @param {Option} option
1663
+ * @param {Option} conflictingOption
1664
+ * @api private
1665
+ */
1666
+ _conflictingOption(option, conflictingOption) {
1667
+ // The calling code does not know whether a negated option is the source of the
1668
+ // value, so do some work to take an educated guess.
1669
+ const findBestOptionFromValue = (option) => {
1670
+ const optionKey = option.attributeName();
1671
+ const optionValue = this.getOptionValue(optionKey);
1672
+ const negativeOption = this.options.find(target => target.negate && optionKey === target.attributeName());
1673
+ const positiveOption = this.options.find(target => !target.negate && optionKey === target.attributeName());
1674
+ if (negativeOption && (
1675
+ (negativeOption.presetArg === undefined && optionValue === false) ||
1676
+ (negativeOption.presetArg !== undefined && optionValue === negativeOption.presetArg)
1677
+ )) {
1678
+ return negativeOption;
1679
+ }
1680
+ return positiveOption || option;
1681
+ };
1682
+
1683
+ const getErrorMessage = (option) => {
1684
+ const bestOption = findBestOptionFromValue(option);
1685
+ const optionKey = bestOption.attributeName();
1686
+ const source = this.getOptionValueSource(optionKey);
1687
+ if (source === 'env') {
1688
+ return `environment variable '${bestOption.envVar}'`;
1689
+ }
1690
+ return `option '${bestOption.flags}'`;
1691
+ };
1692
+
1693
+ const message = `error: ${getErrorMessage(option)} cannot be used with ${getErrorMessage(conflictingOption)}`;
1694
+ this.error(message, { code: 'commander.conflictingOption' });
1695
+ }
1696
+
1697
+ /**
1698
+ * Unknown option `flag`.
1699
+ *
1700
+ * @param {string} flag
1701
+ * @api private
1702
+ */
1703
+
1704
+ unknownOption(flag) {
1705
+ if (this._allowUnknownOption) return;
1706
+ let suggestion = '';
1707
+
1708
+ if (flag.startsWith('--') && this._showSuggestionAfterError) {
1709
+ // Looping to pick up the global options too
1710
+ let candidateFlags = [];
1711
+ let command = this;
1712
+ do {
1713
+ const moreFlags = command.createHelp().visibleOptions(command)
1714
+ .filter(option => option.long)
1715
+ .map(option => option.long);
1716
+ candidateFlags = candidateFlags.concat(moreFlags);
1717
+ command = command.parent;
1718
+ } while (command && !command._enablePositionalOptions);
1719
+ suggestion = suggestSimilar(flag, candidateFlags);
1720
+ }
1721
+
1722
+ const message = `error: unknown option '${flag}'${suggestion}`;
1723
+ this.error(message, { code: 'commander.unknownOption' });
1724
+ }
1725
+
1726
+ /**
1727
+ * Excess arguments, more than expected.
1728
+ *
1729
+ * @param {string[]} receivedArgs
1730
+ * @api private
1731
+ */
1732
+
1733
+ _excessArguments(receivedArgs) {
1734
+ if (this._allowExcessArguments) return;
1735
+
1736
+ const expected = this._args.length;
1737
+ const s = (expected === 1) ? '' : 's';
1738
+ const forSubcommand = this.parent ? ` for '${this.name()}'` : '';
1739
+ const message = `error: too many arguments${forSubcommand}. Expected ${expected} argument${s} but got ${receivedArgs.length}.`;
1740
+ this.error(message, { code: 'commander.excessArguments' });
1741
+ }
1742
+
1743
+ /**
1744
+ * Unknown command.
1745
+ *
1746
+ * @api private
1747
+ */
1748
+
1749
+ unknownCommand() {
1750
+ const unknownName = this.args[0];
1751
+ let suggestion = '';
1752
+
1753
+ if (this._showSuggestionAfterError) {
1754
+ const candidateNames = [];
1755
+ this.createHelp().visibleCommands(this).forEach((command) => {
1756
+ candidateNames.push(command.name());
1757
+ // just visible alias
1758
+ if (command.alias()) candidateNames.push(command.alias());
1759
+ });
1760
+ suggestion = suggestSimilar(unknownName, candidateNames);
1761
+ }
1762
+
1763
+ const message = `error: unknown command '${unknownName}'${suggestion}`;
1764
+ this.error(message, { code: 'commander.unknownCommand' });
1765
+ }
1766
+
1767
+ /**
1768
+ * Set the program version to `str`.
1769
+ *
1770
+ * This method auto-registers the "-V, --version" flag
1771
+ * which will print the version number when passed.
1772
+ *
1773
+ * You can optionally supply the flags and description to override the defaults.
1774
+ *
1775
+ * @param {string} str
1776
+ * @param {string} [flags]
1777
+ * @param {string} [description]
1778
+ * @return {this | string} `this` command for chaining, or version string if no arguments
1779
+ */
1780
+
1781
+ version(str, flags, description) {
1782
+ if (str === undefined) return this._version;
1783
+ this._version = str;
1784
+ flags = flags || '-V, --version';
1785
+ description = description || 'output the version number';
1786
+ const versionOption = this.createOption(flags, description);
1787
+ this._versionOptionName = versionOption.attributeName();
1788
+ this.options.push(versionOption);
1789
+ this.on('option:' + versionOption.name(), () => {
1790
+ this._outputConfiguration.writeOut(`${str}\n`);
1791
+ this._exit(0, 'commander.version', str);
1792
+ });
1793
+ return this;
1794
+ }
1795
+
1796
+ /**
1797
+ * Set the description.
1798
+ *
1799
+ * @param {string} [str]
1800
+ * @param {Object} [argsDescription]
1801
+ * @return {string|Command}
1802
+ */
1803
+ description(str, argsDescription) {
1804
+ if (str === undefined && argsDescription === undefined) return this._description;
1805
+ this._description = str;
1806
+ if (argsDescription) {
1807
+ this._argsDescription = argsDescription;
1808
+ }
1809
+ return this;
1810
+ }
1811
+
1812
+ /**
1813
+ * Set the summary. Used when listed as subcommand of parent.
1814
+ *
1815
+ * @param {string} [str]
1816
+ * @return {string|Command}
1817
+ */
1818
+ summary(str) {
1819
+ if (str === undefined) return this._summary;
1820
+ this._summary = str;
1821
+ return this;
1822
+ }
1823
+
1824
+ /**
1825
+ * Set an alias for the command.
1826
+ *
1827
+ * You may call more than once to add multiple aliases. Only the first alias is shown in the auto-generated help.
1828
+ *
1829
+ * @param {string} [alias]
1830
+ * @return {string|Command}
1831
+ */
1832
+
1833
+ alias(alias) {
1834
+ if (alias === undefined) return this._aliases[0]; // just return first, for backwards compatibility
1835
+
1836
+ /** @type {Command} */
1837
+ let command = this;
1838
+ if (this.commands.length !== 0 && this.commands[this.commands.length - 1]._executableHandler) {
1839
+ // assume adding alias for last added executable subcommand, rather than this
1840
+ command = this.commands[this.commands.length - 1];
1841
+ }
1842
+
1843
+ if (alias === command._name) throw new Error('Command alias can\'t be the same as its name');
1844
+
1845
+ command._aliases.push(alias);
1846
+ return this;
1847
+ }
1848
+
1849
+ /**
1850
+ * Set aliases for the command.
1851
+ *
1852
+ * Only the first alias is shown in the auto-generated help.
1853
+ *
1854
+ * @param {string[]} [aliases]
1855
+ * @return {string[]|Command}
1856
+ */
1857
+
1858
+ aliases(aliases) {
1859
+ // Getter for the array of aliases is the main reason for having aliases() in addition to alias().
1860
+ if (aliases === undefined) return this._aliases;
1861
+
1862
+ aliases.forEach((alias) => this.alias(alias));
1863
+ return this;
1864
+ }
1865
+
1866
+ /**
1867
+ * Set / get the command usage `str`.
1868
+ *
1869
+ * @param {string} [str]
1870
+ * @return {String|Command}
1871
+ */
1872
+
1873
+ usage(str) {
1874
+ if (str === undefined) {
1875
+ if (this._usage) return this._usage;
1876
+
1877
+ const args = this._args.map((arg) => {
1878
+ return humanReadableArgName(arg);
1879
+ });
1880
+ return [].concat(
1881
+ (this.options.length || this._hasHelpOption ? '[options]' : []),
1882
+ (this.commands.length ? '[command]' : []),
1883
+ (this._args.length ? args : [])
1884
+ ).join(' ');
1885
+ }
1886
+
1887
+ this._usage = str;
1888
+ return this;
1889
+ }
1890
+
1891
+ /**
1892
+ * Get or set the name of the command.
1893
+ *
1894
+ * @param {string} [str]
1895
+ * @return {string|Command}
1896
+ */
1897
+
1898
+ name(str) {
1899
+ if (str === undefined) return this._name;
1900
+ this._name = str;
1901
+ return this;
1902
+ }
1903
+
1904
+ /**
1905
+ * Set the name of the command from script filename, such as process.argv[1],
1906
+ * or require.main.filename, or __filename.
1907
+ *
1908
+ * (Used internally and public although not documented in README.)
1909
+ *
1910
+ * @example
1911
+ * program.nameFromFilename(require.main.filename);
1912
+ *
1913
+ * @param {string} filename
1914
+ * @return {Command}
1915
+ */
1916
+
1917
+ nameFromFilename(filename) {
1918
+ this._name = path.basename(filename, path.extname(filename));
1919
+
1920
+ return this;
1921
+ }
1922
+
1923
+ /**
1924
+ * Get or set the directory for searching for executable subcommands of this command.
1925
+ *
1926
+ * @example
1927
+ * program.executableDir(__dirname);
1928
+ * // or
1929
+ * program.executableDir('subcommands');
1930
+ *
1931
+ * @param {string} [path]
1932
+ * @return {string|Command}
1933
+ */
1934
+
1935
+ executableDir(path) {
1936
+ if (path === undefined) return this._executableDir;
1937
+ this._executableDir = path;
1938
+ return this;
1939
+ }
1940
+
1941
+ /**
1942
+ * Return program help documentation.
1943
+ *
1944
+ * @param {{ error: boolean }} [contextOptions] - pass {error:true} to wrap for stderr instead of stdout
1945
+ * @return {string}
1946
+ */
1947
+
1948
+ helpInformation(contextOptions) {
1949
+ const helper = this.createHelp();
1950
+ if (helper.helpWidth === undefined) {
1951
+ helper.helpWidth = (contextOptions && contextOptions.error) ? this._outputConfiguration.getErrHelpWidth() : this._outputConfiguration.getOutHelpWidth();
1952
+ }
1953
+ return helper.formatHelp(this, helper);
1954
+ }
1955
+
1956
+ /**
1957
+ * @api private
1958
+ */
1959
+
1960
+ _getHelpContext(contextOptions) {
1961
+ contextOptions = contextOptions || {};
1962
+ const context = { error: !!contextOptions.error };
1963
+ let write;
1964
+ if (context.error) {
1965
+ write = (arg) => this._outputConfiguration.writeErr(arg);
1966
+ } else {
1967
+ write = (arg) => this._outputConfiguration.writeOut(arg);
1968
+ }
1969
+ context.write = contextOptions.write || write;
1970
+ context.command = this;
1971
+ return context;
1972
+ }
1973
+
1974
+ /**
1975
+ * Output help information for this command.
1976
+ *
1977
+ * Outputs built-in help, and custom text added using `.addHelpText()`.
1978
+ *
1979
+ * @param {{ error: boolean } | Function} [contextOptions] - pass {error:true} to write to stderr instead of stdout
1980
+ */
1981
+
1982
+ outputHelp(contextOptions) {
1983
+ let deprecatedCallback;
1984
+ if (typeof contextOptions === 'function') {
1985
+ deprecatedCallback = contextOptions;
1986
+ contextOptions = undefined;
1987
+ }
1988
+ const context = this._getHelpContext(contextOptions);
1989
+
1990
+ getCommandAndParents(this).reverse().forEach(command => command.emit('beforeAllHelp', context));
1991
+ this.emit('beforeHelp', context);
1992
+
1993
+ let helpInformation = this.helpInformation(context);
1994
+ if (deprecatedCallback) {
1995
+ helpInformation = deprecatedCallback(helpInformation);
1996
+ if (typeof helpInformation !== 'string' && !Buffer.isBuffer(helpInformation)) {
1997
+ throw new Error('outputHelp callback must return a string or a Buffer');
1998
+ }
1999
+ }
2000
+ context.write(helpInformation);
2001
+
2002
+ this.emit(this._helpLongFlag); // deprecated
2003
+ this.emit('afterHelp', context);
2004
+ getCommandAndParents(this).forEach(command => command.emit('afterAllHelp', context));
2005
+ }
2006
+
2007
+ /**
2008
+ * You can pass in flags and a description to override the help
2009
+ * flags and help description for your command. Pass in false to
2010
+ * disable the built-in help option.
2011
+ *
2012
+ * @param {string | boolean} [flags]
2013
+ * @param {string} [description]
2014
+ * @return {Command} `this` command for chaining
2015
+ */
2016
+
2017
+ helpOption(flags, description) {
2018
+ if (typeof flags === 'boolean') {
2019
+ this._hasHelpOption = flags;
2020
+ return this;
2021
+ }
2022
+ this._helpFlags = flags || this._helpFlags;
2023
+ this._helpDescription = description || this._helpDescription;
2024
+
2025
+ const helpFlags = splitOptionFlags(this._helpFlags);
2026
+ this._helpShortFlag = helpFlags.shortFlag;
2027
+ this._helpLongFlag = helpFlags.longFlag;
2028
+
2029
+ return this;
2030
+ }
2031
+
2032
+ /**
2033
+ * Output help information and exit.
2034
+ *
2035
+ * Outputs built-in help, and custom text added using `.addHelpText()`.
2036
+ *
2037
+ * @param {{ error: boolean }} [contextOptions] - pass {error:true} to write to stderr instead of stdout
2038
+ */
2039
+
2040
+ help(contextOptions) {
2041
+ this.outputHelp(contextOptions);
2042
+ let exitCode = process.exitCode || 0;
2043
+ if (exitCode === 0 && contextOptions && typeof contextOptions !== 'function' && contextOptions.error) {
2044
+ exitCode = 1;
2045
+ }
2046
+ // message: do not have all displayed text available so only passing placeholder.
2047
+ this._exit(exitCode, 'commander.help', '(outputHelp)');
2048
+ }
2049
+
2050
+ /**
2051
+ * Add additional text to be displayed with the built-in help.
2052
+ *
2053
+ * Position is 'before' or 'after' to affect just this command,
2054
+ * and 'beforeAll' or 'afterAll' to affect this command and all its subcommands.
2055
+ *
2056
+ * @param {string} position - before or after built-in help
2057
+ * @param {string | Function} text - string to add, or a function returning a string
2058
+ * @return {Command} `this` command for chaining
2059
+ */
2060
+ addHelpText(position, text) {
2061
+ const allowedValues = ['beforeAll', 'before', 'after', 'afterAll'];
2062
+ if (!allowedValues.includes(position)) {
2063
+ throw new Error(`Unexpected value for position to addHelpText.
2064
+ Expecting one of '${allowedValues.join("', '")}'`);
2065
+ }
2066
+ const helpEvent = `${position}Help`;
2067
+ this.on(helpEvent, (context) => {
2068
+ let helpStr;
2069
+ if (typeof text === 'function') {
2070
+ helpStr = text({ error: context.error, command: context.command });
2071
+ } else {
2072
+ helpStr = text;
2073
+ }
2074
+ // Ignore falsy value when nothing to output.
2075
+ if (helpStr) {
2076
+ context.write(`${helpStr}\n`);
2077
+ }
2078
+ });
2079
+ return this;
2080
+ }
2081
+ }
2082
+
2083
+ /**
2084
+ * Output help information if help flags specified
2085
+ *
2086
+ * @param {Command} cmd - command to output help for
2087
+ * @param {Array} args - array of options to search for help flags
2088
+ * @api private
2089
+ */
2090
+
2091
+ function outputHelpIfRequested(cmd, args) {
2092
+ const helpOption = cmd._hasHelpOption && args.find(arg => arg === cmd._helpLongFlag || arg === cmd._helpShortFlag);
2093
+ if (helpOption) {
2094
+ cmd.outputHelp();
2095
+ // (Do not have all displayed text available so only passing placeholder.)
2096
+ cmd._exit(0, 'commander.helpDisplayed', '(outputHelp)');
2097
+ }
2098
+ }
2099
+
2100
+ /**
2101
+ * Scan arguments and increment port number for inspect calls (to avoid conflicts when spawning new command).
2102
+ *
2103
+ * @param {string[]} args - array of arguments from node.execArgv
2104
+ * @returns {string[]}
2105
+ * @api private
2106
+ */
2107
+
2108
+ function incrementNodeInspectorPort(args) {
2109
+ // Testing for these options:
2110
+ // --inspect[=[host:]port]
2111
+ // --inspect-brk[=[host:]port]
2112
+ // --inspect-port=[host:]port
2113
+ return args.map((arg) => {
2114
+ if (!arg.startsWith('--inspect')) {
2115
+ return arg;
2116
+ }
2117
+ let debugOption;
2118
+ let debugHost = '127.0.0.1';
2119
+ let debugPort = '9229';
2120
+ let match;
2121
+ if ((match = arg.match(/^(--inspect(-brk)?)$/)) !== null) {
2122
+ // e.g. --inspect
2123
+ debugOption = match[1];
2124
+ } else if ((match = arg.match(/^(--inspect(-brk|-port)?)=([^:]+)$/)) !== null) {
2125
+ debugOption = match[1];
2126
+ if (/^\d+$/.test(match[3])) {
2127
+ // e.g. --inspect=1234
2128
+ debugPort = match[3];
2129
+ } else {
2130
+ // e.g. --inspect=localhost
2131
+ debugHost = match[3];
2132
+ }
2133
+ } else if ((match = arg.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/)) !== null) {
2134
+ // e.g. --inspect=localhost:1234
2135
+ debugOption = match[1];
2136
+ debugHost = match[3];
2137
+ debugPort = match[4];
2138
+ }
2139
+
2140
+ if (debugOption && debugPort !== '0') {
2141
+ return `${debugOption}=${debugHost}:${parseInt(debugPort) + 1}`;
2142
+ }
2143
+ return arg;
2144
+ });
2145
+ }
2146
+
2147
+ /**
2148
+ * @param {Command} startCommand
2149
+ * @returns {Command[]}
2150
+ * @api private
2151
+ */
2152
+
2153
+ function getCommandAndParents(startCommand) {
2154
+ const result = [];
2155
+ for (let command = startCommand; command; command = command.parent) {
2156
+ result.push(command);
2157
+ }
2158
+ return result;
2159
+ }
2160
+
2161
+ exports.Command = Command;