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.
- package/.jsii +61 -22
- package/API.md +15 -1
- package/cli/cli.ts +145 -75
- package/cli/icons/Arch_AWS-Lambda_16.svg +18 -0
- package/cli/icons/Arch_Amazon-DynamoDB_16.svg +18 -0
- package/cli/icons/Arch_Amazon-EventBridge_16.svg +18 -0
- package/cli/icons/Arch_Amazon-Simple-Notification-Service_16.svg +18 -0
- package/cli/icons/Arch_Amazon-Simple-Queue-Service_16.svg +18 -0
- package/cli/icons/Arch_Amazon-Simple-Storage-Service_16.svg +18 -0
- package/cli/index.html +84 -25
- package/cli/node_modules/commander/LICENSE +22 -0
- package/cli/node_modules/commander/Readme.md +1114 -0
- package/cli/node_modules/commander/esm.mjs +16 -0
- package/cli/node_modules/commander/index.js +27 -0
- package/cli/node_modules/commander/lib/argument.js +147 -0
- package/cli/node_modules/commander/lib/command.js +2161 -0
- package/cli/node_modules/commander/lib/error.js +45 -0
- package/cli/node_modules/commander/lib/help.js +406 -0
- package/cli/node_modules/commander/lib/option.js +324 -0
- package/cli/node_modules/commander/lib/suggestSimilar.js +100 -0
- package/cli/node_modules/commander/package-support.json +16 -0
- package/cli/node_modules/commander/package.json +80 -0
- package/cli/node_modules/commander/typings/index.d.ts +879 -0
- package/cli/package.json +23 -0
- package/cli/sampleData.ts +518 -0
- package/cli/style.css +66 -42
- package/cli/webServerlessSpy.ts +461 -0
- package/common/SpyEventSender.ts +291 -0
- package/common/getWebSocketUrl.ts +21 -4
- package/common/spyEvents/EventBridgeBaseSpyEvent.ts +13 -0
- package/common/spyEvents/EventBridgeRuleSpyEvent.ts +2 -7
- package/common/spyEvents/EventBridgeSpyEvent.ts +2 -7
- package/common/spyEvents/FunctionBaseSpyEvent.ts +7 -0
- package/common/spyEvents/FunctionConsole.ts +5 -0
- package/common/spyEvents/FunctionConsoleSpyEvent.ts +5 -8
- package/common/spyEvents/FunctionResponseSpyEvent.ts +2 -5
- package/common/spyEvents/SnsSpyEventBase.ts +11 -0
- package/common/spyEvents/SnsSubscriptionSpyEvent.ts +3 -9
- package/common/spyEvents/SnsTopicSpyEvent.ts +3 -9
- package/dist/releasetag.txt +1 -1
- package/extension/interceptor.ts +91 -14
- package/functions/sendMessage.ts +4 -2
- package/lib/cli/cli.js +124 -65
- package/lib/cli/cli.mjs +125 -66
- package/lib/cli/sampleData.d.ts +892 -0
- package/lib/cli/sampleData.js +481 -0
- package/lib/cli/sampleData.mjs +478 -0
- package/lib/cli/webServerlessSpy.js +5516 -0
- package/lib/cli/webServerlessSpy.js.map +7 -0
- package/lib/common/SpyEventSender.d.ts +17 -0
- package/lib/common/SpyEventSender.js +227 -0
- package/lib/common/SpyEventSender.mjs +223 -0
- package/lib/common/getWebSocketUrl.d.ts +1 -1
- package/lib/common/getWebSocketUrl.js +19 -7
- package/lib/common/getWebSocketUrl.mjs +17 -5
- package/lib/common/spyEvents/EventBridgeBaseSpyEvent.d.ts +9 -0
- package/lib/common/spyEvents/EventBridgeBaseSpyEvent.js +3 -0
- package/lib/common/spyEvents/EventBridgeBaseSpyEvent.mjs +2 -0
- package/lib/common/spyEvents/EventBridgeRuleSpyEvent.d.ts +2 -7
- package/lib/common/spyEvents/EventBridgeRuleSpyEvent.js +1 -1
- package/lib/common/spyEvents/EventBridgeRuleSpyEvent.mjs +1 -1
- package/lib/common/spyEvents/EventBridgeSpyEvent.d.ts +2 -7
- package/lib/common/spyEvents/EventBridgeSpyEvent.js +1 -1
- package/lib/common/spyEvents/EventBridgeSpyEvent.mjs +1 -1
- package/lib/common/spyEvents/FunctionBaseSpyEvent.d.ts +6 -0
- package/lib/common/spyEvents/FunctionBaseSpyEvent.js +3 -0
- package/lib/common/spyEvents/FunctionBaseSpyEvent.mjs +2 -0
- package/lib/common/spyEvents/FunctionConsole.d.ts +5 -0
- package/lib/common/spyEvents/FunctionConsole.js +3 -0
- package/lib/common/spyEvents/FunctionConsole.mjs +2 -0
- package/lib/common/spyEvents/FunctionConsoleSpyEvent.d.ts +4 -8
- package/lib/common/spyEvents/FunctionConsoleSpyEvent.js +1 -1
- package/lib/common/spyEvents/FunctionConsoleSpyEvent.mjs +1 -1
- package/lib/common/spyEvents/FunctionResponseSpyEvent.d.ts +2 -5
- package/lib/common/spyEvents/FunctionResponseSpyEvent.js +1 -1
- package/lib/common/spyEvents/FunctionResponseSpyEvent.mjs +1 -1
- package/lib/common/spyEvents/SnsSpyEventBase.d.ts +10 -0
- package/lib/common/spyEvents/SnsSpyEventBase.js +3 -0
- package/lib/common/spyEvents/SnsSpyEventBase.mjs +2 -0
- package/lib/common/spyEvents/SnsSubscriptionSpyEvent.d.ts +2 -9
- package/lib/common/spyEvents/SnsSubscriptionSpyEvent.js +1 -1
- package/lib/common/spyEvents/SnsSubscriptionSpyEvent.mjs +1 -1
- package/lib/common/spyEvents/SnsTopicSpyEvent.d.ts +2 -9
- package/lib/common/spyEvents/SnsTopicSpyEvent.js +1 -1
- package/lib/common/spyEvents/SnsTopicSpyEvent.mjs +1 -1
- package/lib/extension/dist/layer/nodejs/node_modules/interceptor.js +1272 -581
- package/lib/extension/dist/layer/nodejs/node_modules/interceptor.js.map +4 -4
- package/lib/listener/SpyHandlers.ts.d.ts +30 -2
- package/lib/listener/SpyHandlers.ts.js +1 -1
- package/lib/listener/SpyHandlers.ts.mjs +1 -1
- package/lib/listener/WsListener.js +11 -11
- package/lib/listener/WsListener.mjs +12 -12
- package/lib/src/ServerlessSpy.js +2 -3
- package/lib/src/ServerlessSpy.mjs +1 -2
- package/listener/SpyHandlers.ts.ts +70 -9
- package/listener/WsListener.ts +21 -18
- package/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +8 -0
- package/node_modules/@aws-crypto/ie11-detection/build/index.js +5 -5
- package/node_modules/@aws-crypto/ie11-detection/build/index.js.map +1 -1
- package/node_modules/@aws-crypto/ie11-detection/package.json +3 -2
- package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +8 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/index.js +2 -2
- package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js +2 -2
- package/node_modules/@aws-crypto/supports-web-crypto/package.json +3 -2
- package/node_modules/@aws-crypto/util/CHANGELOG.md +12 -0
- package/node_modules/@aws-crypto/util/README.md +5 -5
- package/node_modules/@aws-crypto/util/build/convertToBuffer.js +1 -1
- package/node_modules/@aws-crypto/util/build/convertToBuffer.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/index.js +1 -1
- package/node_modules/@aws-crypto/util/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/isEmptyData.js +1 -1
- package/node_modules/@aws-crypto/util/build/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/numToUint8.js +1 -1
- package/node_modules/@aws-crypto/util/build/numToUint8.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js +1 -1
- package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map +1 -0
- package/node_modules/@aws-crypto/util/package.json +4 -3
- package/node_modules/@aws-sdk/abort-controller/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortController.d.ts +6 -6
- package/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +8 -10
- package/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/abort-controller/package.json +4 -3
- package/node_modules/@aws-sdk/chunked-blob-reader/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/chunked-blob-reader/dist-types/ts3.4/index.d.ts +5 -1
- package/node_modules/@aws-sdk/chunked-blob-reader/package.json +3 -2
- package/node_modules/@aws-sdk/chunked-blob-reader-native/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/chunked-blob-reader-native/dist-types/ts3.4/index.d.ts +5 -1
- package/node_modules/@aws-sdk/chunked-blob-reader-native/package.json +4 -3
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-es/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/ApiGatewayManagementApi.d.ts +55 -20
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/ApiGatewayManagementApiClient.d.ts +123 -76
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/PostToConnectionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/index.d.ts +3 -3
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/models/ApiGatewayManagementApiServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/models/models_0.d.ts +59 -66
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +41 -11
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.browser.d.ts +69 -38
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.d.ts +69 -38
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.native.d.ts +70 -37
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/package.json +35 -34
- package/node_modules/@aws-sdk/client-cognito-identity/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-cognito-identity/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity/dist-cjs/protocols/Aws_json1_1.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity/dist-es/protocols/Aws_json1_1.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/CognitoIdentity.d.ts +398 -120
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/CognitoIdentityClient.d.ts +240 -96
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/CreateIdentityPoolCommand.d.ts +33 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DeleteIdentitiesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DeleteIdentityPoolCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DescribeIdentityCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DescribeIdentityPoolCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetCredentialsForIdentityCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetIdCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetIdentityPoolRolesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetOpenIdTokenCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetOpenIdTokenForDeveloperIdentityCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetPrincipalTagAttributeMapCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListIdentitiesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListIdentityPoolsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/LookupDeveloperIdentityCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/MergeDeveloperIdentitiesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/SetIdentityPoolRolesCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/SetPrincipalTagAttributeMapCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UnlinkDeveloperIdentityCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UnlinkIdentityCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UpdateIdentityPoolCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/index.d.ts +23 -23
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/CognitoIdentityServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/models_0.d.ts +449 -567
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/ListIdentityPoolsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -71
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.browser.d.ts +69 -38
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.d.ts +69 -38
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.native.d.ts +70 -37
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/node_modules/@aws-sdk/client-cognito-identity/package.json +36 -35
- package/node_modules/@aws-sdk/client-dynamodb/CHANGELOG.md +102 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/protocols/Aws_json1_0.js +3 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/protocols/Aws_json1_0.js +3 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDB.d.ts +2 -2
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactGetItemsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactWriteItemsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/models_0.d.ts +3 -3
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDB.d.ts +917 -270
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDBClient.d.ts +423 -129
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateTableCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetItemCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ImportTableCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListExportsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListImportsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTablesCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutItemCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/index.d.ts +53 -53
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/index.d.ts +7 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/models_0.d.ts +2256 -2833
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListContributorInsightsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +638 -161
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.browser.d.ts +72 -41
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.d.ts +72 -41
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.native.d.ts +73 -40
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -7
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/CHANGELOG.md +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/CONTRIBUTING.md +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/LICENSE.md +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/README.md +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/bin/uuid +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/index.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/md5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/nil.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/parse.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/regex.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/rng.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/sha1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/stringify.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v3.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v35.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v4.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/validate.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/version.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/index.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/md5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/nil.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/parse.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/regex.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/rng.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/sha1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/stringify.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v3.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v35.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v4.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/validate.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/version.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/index.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/md5-browser.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/md5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/nil.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/parse.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/regex.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/rng-browser.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/rng.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/sha1-browser.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/sha1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/stringify.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuid.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidNIL.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidParse.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidStringify.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidValidate.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidVersion.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv1.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv3.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv4.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv5.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/uuid-bin.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v3.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v35.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v4.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/validate.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/version.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/package.json +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/wrapper.mjs +0 -0
- package/node_modules/@aws-sdk/client-dynamodb/package.json +37 -36
- package/node_modules/@aws-sdk/client-eventbridge/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-eventbridge/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-eventbridge/dist-cjs/protocols/Aws_json1_1.js +3 -0
- package/node_modules/@aws-sdk/client-eventbridge/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-eventbridge/dist-es/protocols/Aws_json1_1.js +3 -0
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/EventBridge.d.ts +956 -285
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/EventBridgeClient.d.ts +440 -129
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ActivateEventSourceCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CancelReplayCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateApiDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateArchiveCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateEndpointCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateEventBusCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreatePartnerEventSourceCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeactivateEventSourceCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeauthorizeConnectionCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteApiDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteArchiveCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteEventBusCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeletePartnerEventSourceCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeApiDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeArchiveCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeConnectionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeEndpointCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeEventBusCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeEventSourceCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribePartnerEventSourceCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeReplayCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeRuleCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DisableRuleCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/EnableRuleCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListApiDestinationsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListArchivesCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListEndpointsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListEventBusesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListEventSourcesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListPartnerEventSourceAccountsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListPartnerEventSourcesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListReplaysCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListRuleNamesByTargetCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListRulesCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListTargetsByRuleCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutEventsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutPartnerEventsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutPermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutRuleCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutTargetsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/RemoveTargetsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/StartReplayCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/TestEventPatternCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateApiDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateArchiveCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateConnectionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateEndpointCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/index.d.ts +56 -56
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/models/EventBridgeServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/models/models_0.d.ts +1543 -2033
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +677 -170
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.shared.d.ts +17 -13
- package/node_modules/@aws-sdk/client-eventbridge/package.json +37 -36
- package/node_modules/@aws-sdk/client-lambda/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/Lambda.d.ts +1087 -320
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/LambdaClient.d.ts +482 -136
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionUrlConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionUrlConfigCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAliasCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionUrlConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +39 -24
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionUrlConfigsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayersCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListTagsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionUrlConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/index.d.ts +63 -63
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/index.d.ts +7 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/LambdaServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +1639 -2086
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListCodeSigningConfigsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListEventSourceMappingsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionUrlConfigsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayerVersionsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayersPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListVersionsByFunctionPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/index.d.ts +12 -12
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +761 -191
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/index.d.ts +5 -5
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +11 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActiveV2.d.ts +11 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +11 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdatedV2.d.ts +11 -7
- package/node_modules/@aws-sdk/client-lambda/package.json +36 -35
- package/node_modules/@aws-sdk/client-s3/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoints.js +9 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoints.js +9 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +1645 -470
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +684 -184
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +39 -24
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +39 -24
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +41 -24
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +93 -93
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +7 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/index.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +2578 -3419
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +482 -689
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectsV2Paginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListPartsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/protocols/Aws_restXml.d.ts +1124 -281
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +84 -49
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +87 -50
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +85 -48
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/index.d.ts +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-s3/package.json +52 -51
- package/node_modules/@aws-sdk/client-sns/CHANGELOG.md +105 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/SNS.js +30 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/commands/GetDataProtectionPolicyCommand.js +36 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/commands/PutDataProtectionPolicyCommand.js +36 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/models_0.js +14 -2
- package/node_modules/@aws-sdk/client-sns/dist-cjs/protocols/Aws_query.js +152 -2
- package/node_modules/@aws-sdk/client-sns/dist-es/SNS.js +30 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetDataProtectionPolicyCommand.js +39 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/PutDataProtectionPolicyCommand.js +39 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/models/models_0.js +3 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/protocols/Aws_query.js +199 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/SNS.d.ts +14 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/SNSClient.d.ts +4 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetDataProtectionPolicyCommand.d.ts +35 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/PutDataProtectionPolicyCommand.d.ts +35 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/models/models_0.d.ts +47 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/protocols/Aws_query.d.ts +6 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/SNS.d.ts +724 -205
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/SNSClient.d.ts +355 -113
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ConfirmSubscriptionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformApplicationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformEndpointCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateTopicCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeletePlatformApplicationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetDataProtectionPolicyCommand.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetEndpointAttributesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetPlatformApplicationAttributesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSAttributesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSSandboxAccountStatusCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSubscriptionAttributesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetTopicAttributesCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListEndpointsByPlatformApplicationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListOriginationNumbersCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPhoneNumbersOptedOutCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPlatformApplicationsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsByTopicCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTopicsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/OptInPhoneNumberCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishBatchCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PutDataProtectionPolicyCommand.d.ts +35 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetEndpointAttributesCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetPlatformApplicationAttributesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSMSAttributesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSubscriptionAttributesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetTopicAttributesCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SubscribeCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/index.d.ts +42 -40
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/models/SNSServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/models/models_0.d.ts +815 -940
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListEndpointsByPlatformApplicationPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListOriginationNumbersPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListPhoneNumbersOptedOutPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListPlatformApplicationsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListSMSSandboxPhoneNumbersPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListSubscriptionsByTopicPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListSubscriptionsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListTopicsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/protocols/Aws_query.d.ts +509 -122
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-sns/package.json +35 -34
- package/node_modules/@aws-sdk/client-sqs/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sqs/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/SQS.d.ts +344 -105
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/SQSClient.d.ts +224 -95
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/TagQueueCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/index.d.ts +20 -20
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/models/SQSServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/models/models_0.d.ts +452 -545
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/protocols/Aws_query.d.ts +245 -62
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -39
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.d.ts +69 -40
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -38
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-sqs/package.json +37 -36
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/CHANGELOG.md +229 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/README.md +505 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/rng-browser.js +26 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/stringify.js +39 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v35.js +78 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v4.js +37 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/package.json +135 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/@aws-sdk/client-sso/CHANGELOG.md +80 -0
- package/node_modules/@aws-sdk/client-sso/README.md +8 -8
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +18 -18
- package/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +8 -8
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +7 -7
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +17 -17
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +72 -25
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +119 -74
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -4
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +101 -123
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -14
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +45 -31
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +45 -31
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +46 -30
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-sso/package.json +32 -31
- package/node_modules/@aws-sdk/client-sts/CHANGELOG.md +96 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js +15 -2
- package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +32 -5
- package/node_modules/@aws-sdk/client-sts/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +4 -3
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +140 -45
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +151 -81
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -8
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +22 -8
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +25 -16
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +238 -302
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -26
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-sts/package.json +38 -35
- package/node_modules/@aws-sdk/config-resolver/CHANGELOG.md +59 -0
- package/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +1 -1
- package/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +1 -1
- package/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +2 -1
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -5
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -5
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +4 -4
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +18 -15
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +27 -25
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +13 -11
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +8 -5
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -1
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -2
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -1
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +14 -17
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +5 -6
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +1 -2
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +10 -8
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +9 -7
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +9 -6
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +20 -11
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +8 -5
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +8 -5
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +13 -6
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +3 -3
- package/node_modules/@aws-sdk/config-resolver/package.json +8 -7
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/CHANGELOG.md +88 -0
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/CognitoProviderParameters.d.ts +7 -10
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/InMemoryStorage.d.ts +8 -8
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/IndexedDbStorage.d.ts +10 -10
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/Logins.d.ts +3 -3
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/Storage.d.ts +5 -6
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/fromCognitoIdentity.d.ts +14 -13
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/fromCognitoIdentityPool.d.ts +19 -15
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/localStorage.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/resolveLogins.d.ts +2 -3
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/package.json +6 -5
- package/node_modules/@aws-sdk/credential-provider-env/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +6 -7
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -4
- package/node_modules/@aws-sdk/credential-provider-imds/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +6 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +8 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +9 -7
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +6 -5
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +11 -9
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +14 -13
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +7 -5
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/types.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -3
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +2 -3
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +8 -6
- package/node_modules/@aws-sdk/credential-provider-imds/package.json +7 -6
- package/node_modules/@aws-sdk/credential-provider-ini/CHANGELOG.md +80 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +15 -14
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +16 -17
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +5 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +8 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +5 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +12 -8
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -9
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +10 -9
- package/node_modules/@aws-sdk/credential-provider-node/CHANGELOG.md +80 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +14 -9
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +6 -4
- package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -11
- package/node_modules/@aws-sdk/credential-provider-process/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +7 -7
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +6 -6
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +6 -3
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +5 -2
- package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -5
- package/node_modules/@aws-sdk/credential-provider-sso/CHANGELOG.md +80 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +15 -18
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +9 -3
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +13 -15
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +4 -3
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +7 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +11 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +32 -30
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +5 -4
- package/node_modules/@aws-sdk/credential-providers/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/credential-providers/README.md +29 -0
- package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromIni.js +2 -2
- package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromNodeProviderChain.js +2 -2
- package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromTemporaryCredentials.js +5 -0
- package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromTokenFile.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromWebToken.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-es/fromIni.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-es/fromNodeProviderChain.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-es/fromTemporaryCredentials.js +25 -9
- package/node_modules/@aws-sdk/credential-providers/dist-es/fromTokenFile.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-es/fromWebToken.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/fromIni.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/fromNodeProviderChain.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/fromTemporaryCredentials.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/fromTokenFile.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/fromWebToken.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromCognitoIdentity.d.ts +17 -9
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromCognitoIdentityPool.d.ts +15 -7
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromContainerMetadata.d.ts +6 -6
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromEnv.d.ts +2 -3
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromIni.d.ts +8 -8
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromInstanceMetadata.d.ts +5 -4
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromNodeProviderChain.d.ts +10 -8
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromProcess.d.ts +6 -6
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromSSO.d.ts +8 -8
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromTemporaryCredentials.d.ts +17 -12
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromTokenFile.d.ts +10 -8
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromWebToken.d.ts +10 -8
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/index.d.ts +12 -12
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/index.web.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-providers/package.json +17 -16
- package/node_modules/@aws-sdk/endpoint-cache/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/Endpoint.d.ts +5 -6
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/EndpointCache.d.ts +20 -20
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/endpoint-cache/package.json +3 -2
- package/node_modules/@aws-sdk/eventstream-codec/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/EventStreamCodec.d.ts +9 -13
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/HeaderMarshaller.d.ts +9 -10
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/Int64.d.ts +9 -12
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/Message.d.ts +30 -22
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/TestVectors.fixture.d.ts +2 -2
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/splitMessage.d.ts +9 -7
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/vectorTypes.fixture.d.ts +12 -12
- package/node_modules/@aws-sdk/eventstream-codec/package.json +7 -6
- package/node_modules/@aws-sdk/eventstream-serde-browser/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/EventStreamMarshaller.d.ts +23 -15
- package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/provider.d.ts +2 -3
- package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/utils.d.ts +6 -4
- package/node_modules/@aws-sdk/eventstream-serde-browser/package.json +5 -4
- package/node_modules/@aws-sdk/eventstream-serde-config-resolver/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-types/ts3.4/EventStreamSerdeConfig.d.ts +15 -12
- package/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/eventstream-serde-config-resolver/package.json +4 -3
- package/node_modules/@aws-sdk/eventstream-serde-node/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/EventStreamMarshaller.d.ts +24 -15
- package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/provider.d.ts +2 -3
- package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/utils.d.ts +4 -4
- package/node_modules/@aws-sdk/eventstream-serde-node/package.json +6 -5
- package/node_modules/@aws-sdk/eventstream-serde-universal/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/EventStreamMarshaller.d.ts +24 -14
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/fixtures/MockEventMessageSource.fixture.d.ts +14 -15
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/fixtures/event.fixture.d.ts +4 -5
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/getChunkedStream.d.ts +3 -1
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/getUnmarshalledStream.d.ts +11 -8
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/provider.d.ts +2 -3
- package/node_modules/@aws-sdk/eventstream-serde-universal/package.json +6 -5
- package/node_modules/@aws-sdk/fetch-http-handler/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +21 -16
- package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -1
- package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -2
- package/node_modules/@aws-sdk/fetch-http-handler/package.json +8 -7
- package/node_modules/@aws-sdk/hash-blob-browser/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/hash-blob-browser/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/hash-blob-browser/package.json +7 -6
- package/node_modules/@aws-sdk/hash-node/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/hash-node/dist-types/ts3.4/index.d.ts +7 -7
- package/node_modules/@aws-sdk/hash-node/package.json +5 -4
- package/node_modules/@aws-sdk/hash-stream-node/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/HashCalculator.d.ts +11 -8
- package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/fileStreamHasher.d.ts +3 -4
- package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/readableStreamHasher.d.ts +3 -4
- package/node_modules/@aws-sdk/hash-stream-node/package.json +5 -4
- package/node_modules/@aws-sdk/invalid-dependency/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +1 -1
- package/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +2 -2
- package/node_modules/@aws-sdk/invalid-dependency/package.json +4 -3
- package/node_modules/@aws-sdk/is-array-buffer/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/is-array-buffer/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/is-array-buffer/package.json +3 -2
- package/node_modules/@aws-sdk/lib-dynamodb/CHANGELOG.md +96 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/DynamoDBDocument.d.ts +221 -72
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/DynamoDBDocumentClient.d.ts +104 -33
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/baseCommand/DynamoDBDocumentClientCommand.d.ts +30 -12
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +78 -36
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchGetCommand.d.ts +87 -46
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +131 -66
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/DeleteCommand.d.ts +100 -48
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +56 -27
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +72 -36
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/GetCommand.d.ts +55 -26
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/PutCommand.d.ts +97 -48
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +87 -42
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +78 -39
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/TransactGetCommand.d.ts +77 -41
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/TransactWriteCommand.d.ts +117 -56
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/UpdateCommand.d.ts +107 -51
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/index.d.ts +13 -13
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/utils.d.ts +18 -10
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/index.d.ts +4 -4
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -4
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/node_modules/@aws-sdk/lib-dynamodb/package.json +7 -6
- package/node_modules/@aws-sdk/md5-js/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/md5-js/dist-types/ts3.4/constants.d.ts +3 -6
- package/node_modules/@aws-sdk/md5-js/dist-types/ts3.4/index.d.ts +11 -11
- package/node_modules/@aws-sdk/md5-js/package.json +9 -8
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeDisableMultiregionAccessPointConfigOptions.d.ts +6 -4
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeUseArnRegionConfigOptions.d.ts +4 -5
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketEndpointMiddleware.d.ts +13 -5
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketHostname.d.ts +10 -8
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketHostnameUtils.d.ts +84 -80
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/configurations.d.ts +31 -43
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/index.d.ts +16 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +9 -8
- package/node_modules/@aws-sdk/middleware-content-length/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-content-length/dist-types/ts3.4/index.d.ts +13 -6
- package/node_modules/@aws-sdk/middleware-content-length/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/CHANGELOG.md +56 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/configurations.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/endpointDiscoveryMiddleware.d.ts +17 -4
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getCacheKey.d.ts +10 -7
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getEndpointDiscoveryPlugin.d.ts +41 -14
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/resolveEndpointDiscoveryConfig.d.ts +25 -30
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/updateDiscoveredEndpointInCache.d.ts +15 -8
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/package.json +8 -7
- package/node_modules/@aws-sdk/middleware-expect-continue/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/ts3.4/index.d.ts +16 -8
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-flexible-checksums/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/configuration.d.ts +16 -17
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/constants.d.ts +11 -13
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/flexibleChecksumsMiddleware.d.ts +7 -4
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksum.d.ts +10 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksumAlgorithmForRequest.d.ts +12 -9
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksumAlgorithmListForResponse.d.ts +4 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksumLocationName.d.ts +4 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getFlexibleChecksumsPlugin.d.ts +14 -16
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/hasHeader.d.ts +2 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/isStreaming.d.ts +1 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/selectChecksumAlgorithmFunction.d.ts +7 -5
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/stringHasher.d.ts +5 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/types.d.ts +3 -5
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/validateChecksumFromResponse.d.ts +10 -8
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +6 -5
- package/node_modules/@aws-sdk/middleware-host-header/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -15
- package/node_modules/@aws-sdk/middleware-host-header/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-location-constraint/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-types/ts3.4/configuration.d.ts +12 -12
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-types/ts3.4/index.d.ts +13 -6
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +4 -3
- package/node_modules/@aws-sdk/middleware-logger/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -4
- package/node_modules/@aws-sdk/middleware-logger/package.json +4 -3
- package/node_modules/@aws-sdk/middleware-recursion-detection/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -9
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-retry/CHANGELOG.md +59 -0
- package/node_modules/@aws-sdk/middleware-retry/dist-cjs/StandardRetryStrategy.js +16 -1
- package/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js +18 -3
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +29 -15
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +39 -39
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +37 -25
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/config.d.ts +6 -8
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/configurations.d.ts +23 -26
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/constants.d.ts +9 -18
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +10 -10
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/index.d.ts +10 -10
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +15 -4
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +20 -5
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/types.d.ts +16 -24
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/CHANGELOG.md +229 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/README.md +505 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/rng-browser.js +26 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/stringify.js +39 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v35.js +78 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v4.js +37 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/package.json +135 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/@aws-sdk/middleware-retry/package.json +8 -7
- package/node_modules/@aws-sdk/middleware-sdk-eventbridge/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-sdk-eventbridge/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-eventbridge/dist-types/ts3.4/inject-endpoint-id.d.ts +22 -14
- package/node_modules/@aws-sdk/middleware-sdk-eventbridge/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/CHANGELOG.md +62 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/configuration.js +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/throw-200-exceptions.js +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/configuration.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/configuration.d.ts +24 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/check-content-length-header.d.ts +13 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/configuration.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +5 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +19 -12
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/validate-bucket-name.d.ts +13 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/write-get-object-response-endpoint.d.ts +20 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/write-get-object-response-endpoint.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +7 -6
- package/node_modules/@aws-sdk/middleware-sdk-sqs/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/configurations.d.ts +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/receive-message.d.ts +13 -5
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/send-message-batch.d.ts +13 -5
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/send-message.d.ts +13 -5
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-sdk-sts/CHANGELOG.md +64 -0
- package/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/ts3.4/index.d.ts +33 -25
- package/node_modules/@aws-sdk/middleware-sdk-sts/package.json +8 -7
- package/node_modules/@aws-sdk/middleware-serde/CHANGELOG.md +51 -0
- package/node_modules/@aws-sdk/middleware-serde/dist-cjs/serializerMiddleware.js +8 -1
- package/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js +15 -5
- package/node_modules/@aws-sdk/middleware-serde/dist-types/serdePlugin.d.ts +5 -2
- package/node_modules/@aws-sdk/middleware-serde/dist-types/serializerMiddleware.d.ts +2 -1
- package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +9 -2
- package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +24 -4
- package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +14 -2
- package/node_modules/@aws-sdk/middleware-serde/package.json +4 -3
- package/node_modules/@aws-sdk/middleware-signing/CHANGELOG.md +70 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/configurations.js +30 -15
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/middleware.js +3 -1
- package/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js +21 -10
- package/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js +13 -11
- package/node_modules/@aws-sdk/middleware-signing/dist-types/configurations.d.ts +5 -5
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/configurations.d.ts +62 -58
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/middleware.d.ts +19 -6
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts +1 -2
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-signing/package.json +9 -7
- package/node_modules/@aws-sdk/middleware-ssec/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-ssec/dist-types/ts3.4/index.d.ts +21 -10
- package/node_modules/@aws-sdk/middleware-ssec/package.json +4 -3
- package/node_modules/@aws-sdk/middleware-stack/CHANGELOG.md +51 -0
- package/node_modules/@aws-sdk/middleware-stack/dist-cjs/MiddlewareStack.js +13 -3
- package/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js +14 -3
- package/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -2
- package/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/types.d.ts +47 -22
- package/node_modules/@aws-sdk/middleware-stack/package.json +4 -3
- package/node_modules/@aws-sdk/middleware-user-agent/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -19
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +4 -4
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -6
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +6 -5
- package/node_modules/@aws-sdk/node-config-provider/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/configLoader.d.ts +18 -14
- package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -5
- package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +10 -9
- package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +5 -3
- package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/node-config-provider/package.json +6 -5
- package/node_modules/@aws-sdk/node-http-handler/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/constants.d.ts +1 -2
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +6 -4
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +28 -27
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +28 -30
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +12 -13
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/server.mock.d.ts +17 -10
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +6 -2
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +6 -2
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +9 -6
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -2
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +12 -13
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +7 -5
- package/node_modules/@aws-sdk/node-http-handler/package.json +7 -6
- package/node_modules/@aws-sdk/property-provider/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +6 -7
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/ProviderError.d.ts +6 -7
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +6 -7
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/chain.d.ts +2 -3
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/fromStatic.d.ts +2 -2
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/memoize.d.ts +11 -9
- package/node_modules/@aws-sdk/property-provider/package.json +4 -3
- package/node_modules/@aws-sdk/protocol-http/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpHandler.d.ts +8 -4
- package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpRequest.d.ts +26 -20
- package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpResponse.d.ts +17 -14
- package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/index.d.ts +4 -4
- package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -1
- package/node_modules/@aws-sdk/protocol-http/package.json +4 -3
- package/node_modules/@aws-sdk/querystring-builder/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/querystring-builder/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/querystring-builder/package.json +5 -4
- package/node_modules/@aws-sdk/querystring-parser/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/querystring-parser/dist-types/ts3.4/index.d.ts +4 -2
- package/node_modules/@aws-sdk/querystring-parser/package.json +4 -3
- package/node_modules/@aws-sdk/service-error-classification/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/constants.d.ts +4 -8
- package/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/service-error-classification/package.json +4 -3
- package/node_modules/@aws-sdk/shared-ini-file-loader/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -2
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -2
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +1 -2
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getProfileData.d.ts +2 -3
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +3 -5
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +1 -2
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +13 -21
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +2 -3
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +8 -8
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +8 -8
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +7 -6
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -2
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +8 -8
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +1 -1
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +8 -7
- package/node_modules/@aws-sdk/shared-ini-file-loader/package.json +4 -3
- package/node_modules/@aws-sdk/signature-v4/CHANGELOG.md +59 -0
- package/node_modules/@aws-sdk/signature-v4/dist-cjs/SignatureV4.js +10 -0
- package/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js +10 -0
- package/node_modules/@aws-sdk/signature-v4/dist-types/SignatureV4.d.ts +1 -0
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +63 -39
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +9 -4
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/constants.d.ts +43 -43
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +14 -7
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +6 -3
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +2 -3
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -3
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/headerUtil.d.ts +13 -4
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/index.d.ts +7 -7
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +9 -7
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +2 -3
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -14
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -2
- package/node_modules/@aws-sdk/signature-v4/package.json +10 -9
- package/node_modules/@aws-sdk/signature-v4-multi-region/CHANGELOG.md +56 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4MultiRegion.d.ts +29 -15
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +8 -7
- package/node_modules/@aws-sdk/smithy-client/CHANGELOG.md +59 -0
- package/node_modules/@aws-sdk/smithy-client/dist-cjs/parse-utils.js +56 -9
- package/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js +56 -9
- package/node_modules/@aws-sdk/smithy-client/dist-types/parse-utils.d.ts +21 -0
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/client.d.ts +56 -16
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/command.d.ts +29 -6
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/constants.d.ts +1 -1
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/date-utils.d.ts +4 -8
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +6 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +16 -12
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +1 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/exceptions.d.ts +33 -16
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +1 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +1 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +1 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/index.d.ts +18 -18
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/lazy-json.d.ts +10 -12
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/object-mapping.d.ts +39 -38
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/parse-utils.d.ts +62 -49
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/resolve-path.d.ts +8 -1
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/ser-utils.d.ts +1 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/split-every.d.ts +5 -2
- package/node_modules/@aws-sdk/smithy-client/package.json +5 -4
- package/node_modules/@aws-sdk/types/CHANGELOG.md +57 -0
- package/node_modules/@aws-sdk/types/dist-cjs/auth.js +2 -0
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +1 -0
- package/{lib/cli/ws.d.ts → node_modules/@aws-sdk/types/dist-es/auth.js} +0 -0
- package/node_modules/@aws-sdk/types/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +18 -0
- package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +7 -5
- package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +33 -0
- package/node_modules/@aws-sdk/types/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +12 -0
- package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +13 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +11 -17
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +52 -17
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +17 -7
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +10 -13
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +14 -20
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +43 -14
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +99 -83
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +33 -40
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +22 -21
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +17 -14
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +207 -155
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +8 -11
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +7 -9
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +11 -18
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +40 -37
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +24 -26
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +40 -47
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +15 -13
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +6 -9
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +18 -12
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +50 -62
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +9 -15
- package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -1
- package/node_modules/@aws-sdk/types/package.json +3 -2
- package/node_modules/@aws-sdk/url-parser/CHANGELOG.md +51 -0
- package/node_modules/@aws-sdk/url-parser/dist-cjs/index.js +4 -1
- package/node_modules/@aws-sdk/url-parser/dist-es/index.js +4 -1
- package/node_modules/@aws-sdk/url-parser/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/url-parser/package.json +5 -4
- package/node_modules/@aws-sdk/util-arn-parser/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-arn-parser/dist-types/ts3.4/index.d.ts +17 -17
- package/node_modules/@aws-sdk/util-arn-parser/package.json +3 -2
- package/node_modules/@aws-sdk/util-base64-browser/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-base64-browser/dist-types/ts3.4/index.d.ts +3 -4
- package/node_modules/@aws-sdk/util-base64-browser/package.json +3 -2
- package/node_modules/@aws-sdk/util-base64-node/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-base64-node/dist-types/ts3.4/index.d.ts +3 -4
- package/node_modules/@aws-sdk/util-base64-node/package.json +4 -3
- package/node_modules/@aws-sdk/util-body-length-browser/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +1 -1
- package/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-body-length-browser/package.json +3 -2
- package/node_modules/@aws-sdk/util-body-length-node/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +1 -1
- package/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-body-length-node/package.json +3 -2
- package/node_modules/@aws-sdk/util-buffer-from/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-buffer-from/dist-types/ts3.4/index.d.ts +19 -4
- package/node_modules/@aws-sdk/util-buffer-from/package.json +4 -3
- package/node_modules/@aws-sdk/util-config-provider/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +10 -6
- package/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-config-provider/package.json +3 -2
- package/node_modules/@aws-sdk/util-defaults-mode-browser/CHANGELOG.md +56 -0
- package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +6 -7
- package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +8 -8
- package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +8 -8
- package/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +6 -5
- package/node_modules/@aws-sdk/util-defaults-mode-node/CHANGELOG.md +64 -0
- package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +6 -6
- package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +10 -9
- package/node_modules/@aws-sdk/util-defaults-mode-node/package.json +9 -8
- package/node_modules/@aws-sdk/util-dynamodb/CHANGELOG.md +99 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/models.d.ts +9 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/convertToAttr.d.ts +7 -5
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/convertToNative.d.ts +7 -5
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/marshall.d.ts +52 -25
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/models.d.ts +44 -12
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/unmarshall.d.ts +9 -9
- package/node_modules/@aws-sdk/util-dynamodb/package.json +4 -3
- package/node_modules/@aws-sdk/util-hex-encoding/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-hex-encoding/dist-types/ts3.4/index.d.ts +3 -4
- package/node_modules/@aws-sdk/util-hex-encoding/package.json +3 -2
- package/node_modules/@aws-sdk/util-locate-window/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +1 -2
- package/node_modules/@aws-sdk/util-locate-window/package.json +3 -2
- package/node_modules/@aws-sdk/util-middleware/CHANGELOG.md +51 -0
- package/node_modules/@aws-sdk/util-middleware/dist-types/normalizeProvider.d.ts +3 -0
- package/node_modules/@aws-sdk/util-middleware/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +4 -2
- package/node_modules/@aws-sdk/util-middleware/package.json +4 -3
- package/node_modules/@aws-sdk/util-stream-browser/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/util-stream-browser/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +2 -2
- package/node_modules/@aws-sdk/util-stream-browser/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-stream-browser/dist-types/ts3.4/sdk-stream-mixin.d.ts +4 -3
- package/node_modules/@aws-sdk/util-stream-browser/package.json +8 -7
- package/node_modules/@aws-sdk/util-stream-node/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/util-stream-node/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +3 -4
- package/node_modules/@aws-sdk/util-stream-node/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-stream-node/dist-types/ts3.4/sdk-stream-mixin.d.ts +3 -4
- package/node_modules/@aws-sdk/util-stream-node/package.json +6 -5
- package/node_modules/@aws-sdk/util-uri-escape/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +1 -1
- package/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +1 -1
- package/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-uri-escape/package.json +3 -2
- package/node_modules/@aws-sdk/util-user-agent-browser/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +6 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +5 -4
- package/node_modules/@aws-sdk/util-user-agent-node/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -10
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -2
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +6 -5
- package/node_modules/@aws-sdk/util-utf8-browser/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/pureJs.d.ts +3 -4
- package/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/whatwgEncodingApi.d.ts +2 -2
- package/node_modules/@aws-sdk/util-utf8-browser/package.json +3 -2
- package/node_modules/@aws-sdk/util-utf8-node/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-utf8-node/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-utf8-node/package.json +4 -3
- package/node_modules/@aws-sdk/util-waiter/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/createWaiter.d.ts +6 -3
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/poller.d.ts +13 -3
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +1 -1
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/validate.d.ts +4 -3
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/waiter.d.ts +20 -24
- package/node_modules/@aws-sdk/util-waiter/package.json +5 -4
- package/node_modules/@aws-sdk/xml-builder/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +14 -14
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +7 -7
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -3
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -2
- package/node_modules/@serverless-stack/node/README.md +5 -0
- package/node_modules/@serverless-stack/node/auth/adapter/adapter.d.ts +3 -0
- package/node_modules/@serverless-stack/node/auth/adapter/adapter.js +3 -0
- package/node_modules/@serverless-stack/node/auth/adapter/github.d.ts +2 -0
- package/node_modules/@serverless-stack/node/auth/adapter/github.js +21 -0
- package/node_modules/@serverless-stack/node/auth/adapter/google.d.ts +9 -0
- package/node_modules/@serverless-stack/node/auth/adapter/google.js +18 -0
- package/node_modules/@serverless-stack/node/auth/adapter/link.d.ts +8 -0
- package/node_modules/@serverless-stack/node/auth/adapter/link.js +41 -0
- package/node_modules/@serverless-stack/node/auth/adapter/oauth.d.ts +25 -0
- package/node_modules/@serverless-stack/node/auth/adapter/oauth.js +52 -0
- package/node_modules/@serverless-stack/node/auth/adapter/oidc.d.ts +17 -0
- package/node_modules/@serverless-stack/node/auth/adapter/oidc.js +50 -0
- package/node_modules/@serverless-stack/node/auth/adapter/twitch.d.ts +2 -0
- package/node_modules/@serverless-stack/node/auth/adapter/twitch.js +11 -0
- package/node_modules/@serverless-stack/node/auth/auth.d.ts +21 -0
- package/node_modules/@serverless-stack/node/auth/auth.js +44 -0
- package/node_modules/@serverless-stack/node/auth/index.d.ts +10 -7
- package/node_modules/@serverless-stack/node/auth/index.js +10 -19
- package/node_modules/@serverless-stack/node/auth/session.d.ts +76 -0
- package/node_modules/@serverless-stack/node/auth/session.js +111 -0
- package/node_modules/@serverless-stack/node/context/context.d.ts +12 -0
- package/node_modules/@serverless-stack/node/context/context.js +66 -0
- package/node_modules/@serverless-stack/node/context/handler.d.ts +16 -0
- package/node_modules/@serverless-stack/node/context/handler.js +18 -0
- package/node_modules/@serverless-stack/node/context/http.d.ts +14 -0
- package/node_modules/@serverless-stack/node/context/http.js +65 -0
- package/node_modules/@serverless-stack/node/context/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/context/index.js +3 -0
- package/node_modules/@serverless-stack/node/graphql/index.d.ts +28 -9
- package/node_modules/@serverless-stack/node/graphql/index.js +15 -29
- package/node_modules/@serverless-stack/node/job/index.d.ts +31 -0
- package/node_modules/@serverless-stack/node/job/index.js +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/CHANGELOG.md +1104 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-cjs/AbortController.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-cjs/AbortSignal.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-es/AbortController.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-es/AbortSignal.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/AbortController.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/AbortSignal.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortController.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/CHANGELOG.md +3476 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/README.md +269 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/Lambda.js +877 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/LambdaClient.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/AddLayerVersionPermissionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/AddPermissionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateAliasCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateEventSourceMappingCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateFunctionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteAliasCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteEventSourceMappingCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionConcurrencyCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionEventInvokeConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteLayerVersionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteProvisionedConcurrencyConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetAccountSettingsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetAliasCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetEventSourceMappingCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionConcurrencyCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionConfigurationCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionEventInvokeConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetLayerVersionByArnCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetLayerVersionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetLayerVersionPolicyCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetPolicyCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetProvisionedConcurrencyConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/InvokeAsyncCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/InvokeCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListAliasesCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListCodeSigningConfigsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListEventSourceMappingsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListFunctionEventInvokeConfigsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListFunctionsByCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListFunctionsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListLayerVersionsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListLayersCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListProvisionedConcurrencyConfigsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListTagsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListVersionsByFunctionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PublishLayerVersionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PublishVersionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutFunctionCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutFunctionConcurrencyCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutFunctionEventInvokeConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutProvisionedConcurrencyConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/RemoveLayerVersionPermissionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/RemovePermissionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/TagResourceCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UntagResourceCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateAliasCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateEventSourceMappingCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateFunctionCodeCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateFunctionConfigurationCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateFunctionEventInvokeConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/index.js +61 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoints.js +207 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/models/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/models/models_0.js +1133 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/Interfaces.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListAliasesPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListCodeSigningConfigsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListEventSourceMappingsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListFunctionEventInvokeConfigsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListFunctionsByCodeSigningConfigPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListFunctionsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListLayerVersionsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListLayersPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListProvisionedConcurrencyConfigsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListVersionsByFunctionPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/index.js +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/protocols/Aws_restJson1.js +9556 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/waitForFunctionActive.js +54 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/waitForFunctionExists.js +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/waitForFunctionUpdated.js +54 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/Lambda.js +880 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/LambdaClient.js +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddLayerVersionPermissionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddPermissionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateAliasCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateEventSourceMappingCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateFunctionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteAliasCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteEventSourceMappingCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionConcurrencyCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionEventInvokeConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteLayerVersionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteProvisionedConcurrencyConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAccountSettingsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAliasCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetEventSourceMappingCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConcurrencyCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConfigurationCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionEventInvokeConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionByArnCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionPolicyCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetPolicyCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetProvisionedConcurrencyConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeAsyncCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListAliasesCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListCodeSigningConfigsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListEventSourceMappingsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionEventInvokeConfigsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsByCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayerVersionsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayersCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListProvisionedConcurrencyConfigsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListTagsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListVersionsByFunctionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishLayerVersionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishVersionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionConcurrencyCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionEventInvokeConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutProvisionedConcurrencyConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemoveLayerVersionPermissionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemovePermissionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/TagResourceCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UntagResourceCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateAliasCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateEventSourceMappingCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionCodeCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionConfigurationCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionEventInvokeConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/index.js +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/endpoints.js +203 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/models/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/models/models_0.js +788 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListAliasesPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListCodeSigningConfigsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListEventSourceMappingsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListFunctionEventInvokeConfigsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListFunctionsByCodeSigningConfigPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListFunctionsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListLayerVersionsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListLayersPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListProvisionedConcurrencyConfigsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListVersionsByFunctionPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/index.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/protocols/Aws_restJson1.js +10456 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.browser.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.native.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.shared.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionActive.js +69 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionExists.js +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionUpdated.js +69 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/Lambda.d.ts +890 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/LambdaClient.d.ts +263 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +47 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +138 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +81 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCommand.d.ts +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAccountSettingsCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAliasCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCodeSigningConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetPolicyCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +61 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListAliasesCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListTagsCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/TagResourceCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UntagResourceCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateAliasCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +138 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/index.d.ts +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/index.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +4789 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListAliasesPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListCodeSigningConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListEventSourceMappingsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListLayerVersionsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListLayersPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListVersionsByFunctionPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/index.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/protocols/Aws_restJson1.d.ts +176 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.shared.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/Lambda.d.ts +295 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/LambdaClient.d.ts +129 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAliasCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayersCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListTagsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/index.d.ts +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +2254 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListCodeSigningConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListEventSourceMappingsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayerVersionsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayersPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListVersionsByFunctionPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/index.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +176 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActive.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionExists.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdated.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/package.json +95 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/CHANGELOG.md +3269 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/README.md +218 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/SSO.js +67 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/SSOClient.js +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/GetRoleCredentialsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountRolesCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/LogoutCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/index.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/endpoints.js +275 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/models/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/models/models_0.js +95 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/Interfaces.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountRolesPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js +521 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +70 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/endpoints.js +271 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +594 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +153 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +255 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +72 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +154 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +29 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/package.json +91 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/CHANGELOG.md +2418 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/README.md +208 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/STS.js +127 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithSAMLCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/DecodeAuthorizationMessageCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetAccessKeyInfoCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetCallerIdentityCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetFederationTokenCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetSessionTokenCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/index.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +76 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/endpoints.js +217 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/models/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +177 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1249 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/STS.js +130 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +87 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/endpoints.js +213 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +117 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +1330 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +619 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +152 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +124 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +166 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +170 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +70 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +52 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +120 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +86 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1211 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +79 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +367 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/package.json +96 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/CHANGELOG.md +2281 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/index.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/utils/normalizeBoolean.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/utils/normalizeEndpoint.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/config.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/getRealRegion.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +29 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/PartitionHash.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/RegionHash.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/normalizeBoolean.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/normalizeEndpoint.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/utils/normalizeBoolean.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/utils/normalizeEndpoint.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/config.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/RegionHash.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/normalizeBoolean.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/normalizeEndpoint.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/package.json +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/CHANGELOG.md +1269 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/package.json +55 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/CHANGELOG.md +1263 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/Endpoint.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointMode.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/fromContainerMetadata.js +70 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +93 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/retry.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/fromContainerMetadata.js +82 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/fromInstanceMetadata.js +127 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/Endpoint.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointMode.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/package.json +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/CHANGELOG.md +1265 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +105 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +141 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +63 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/package.json +61 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/CHANGELOG.md +1569 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/README.md +89 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/package.json +63 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/CHANGELOG.md +1121 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +70 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +82 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/package.json +57 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/CHANGELOG.md +323 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +88 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +110 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +54 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/package.json +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/CHANGELOG.md +217 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +126 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/package.json +63 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/CHANGELOG.md +1856 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/fetch-http-handler.js +78 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/request-timeout.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/stream-collector.js +50 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js +90 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js +68 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/fetch-http-handler.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/CHANGELOG.md +1191 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-cjs/index.js +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-es/index.js +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-types/index.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/package.json +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/CHANGELOG.md +480 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-cjs/invalidFunction.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-cjs/invalidProvider.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/invalidFunction.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/invalidProvider.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/package.json +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/CHANGELOG.md +561 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-cjs/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/CHANGELOG.md +1472 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-cjs/index.js +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-types/index.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/CHANGELOG.md +947 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/CHANGELOG.md +355 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/package.json +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/CHANGELOG.md +1178 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/DefaultRateLimiter.js +104 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/StandardRetryStrategy.js +89 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/config.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/configurations.js +69 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/constants.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/defaultRetryQuota.js +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/delayDecider.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/index.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/retryDecider.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/retryMiddleware.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/types.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js +119 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js +130 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/config.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js +77 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/index.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/types.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/DefaultRateLimiter.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/StandardRetryStrategy.d.ts +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/config.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/configurations.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/constants.d.ts +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/delayDecider.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/index.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/retryDecider.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/retryMiddleware.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/config.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/configurations.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/constants.d.ts +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/types.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/types.d.ts +53 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/package.json +52 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/CHANGELOG.md +202 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-cjs/index.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-es/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/index.d.ts +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/ts3.4/index.d.ts +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/package.json +52 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/CHANGELOG.md +896 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/deserializerMiddleware.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/serdePlugin.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/serializerMiddleware.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/deserializerMiddleware.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/serdePlugin.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/serializerMiddleware.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/CHANGELOG.md +1840 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/configurations.js +90 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/middleware.js +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getSkewCorrectedDate.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getUpdatedSystemClockOffset.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/isClockSkewed.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js +87 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js +59 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/configurations.d.ts +88 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/middleware.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/configurations.d.ts +57 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/middleware.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getSkewCorrectedDate.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getUpdatedSystemClockOffset.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/utils/isClockSkewed.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/package.json +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/CHANGELOG.md +1330 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/README.md +78 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-cjs/MiddlewareStack.js +215 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-cjs/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-cjs/types.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js +212 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-es/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-es/types.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/MiddlewareStack.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/types.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/types.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/package.json +50 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/CHANGELOG.md +1116 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/configurations.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/constants.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/user-agent-middleware.js +61 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +64 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/package.json +50 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/CHANGELOG.md +399 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/configLoader.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromEnv.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromSharedConfigFiles.js +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromStatic.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/configLoader.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/fromEnv.js +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/fromSharedConfigFiles.js +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/fromStatic.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/configLoader.d.ts +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/fromEnv.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/fromStatic.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/configLoader.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/package.json +53 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/CHANGELOG.md +1614 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/constants.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/get-transformed-headers.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/node-http-handler.js +76 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/node-http2-handler.js +131 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/readable.mock.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/server.mock.js +60 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/set-connection-timeout.js +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/set-socket-timeout.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/collector.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/index.js +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/readable.mock.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/write-request-body.js +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/get-transformed-headers.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/node-http-handler.js +77 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/node-http2-handler.js +143 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/readable.mock.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/server.mock.js +63 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/set-connection-timeout.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/set-socket-timeout.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/collector.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/index.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/readable.mock.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/write-request-body.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/constants.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/node-http-handler.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/node-http2-handler.d.ts +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/server.mock.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/collector.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/constants.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/server.mock.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
- 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
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/write-request-body.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/package.json +60 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/CHANGELOG.md +1156 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/ProviderError.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/chain.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/fromStatic.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/index.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/memoize.js +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/chain.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/memoize.js +70 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ProviderError.d.ts +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/chain.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/fromStatic.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/memoize.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/ProviderError.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/chain.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/fromStatic.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/memoize.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/CHANGELOG.md +1178 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/httpHandler.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/httpRequest.js +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/httpResponse.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/index.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/isValidHostname.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/httpHandler.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/httpRequest.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/httpResponse.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpHandler.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpRequest.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpResponse.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/CHANGELOG.md +1138 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-cjs/index.js +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-es/index.js +33 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/CHANGELOG.md +1101 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-cjs/index.js +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-es/index.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/CHANGELOG.md +667 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-cjs/constants.js +29 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-cjs/index.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-es/index.js +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/constants.d.ts +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/constants.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/package.json +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/CHANGELOG.md +704 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/README.md +102 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/index.js +84 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/index.js +105 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/index.d.ts +33 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/CHANGELOG.md +2827 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/SignatureV4.js +150 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/cloneRequest.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/constants.js +46 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/credentialDerivation.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/getCanonicalHeaders.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/getCanonicalQuery.js +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/getPayloadHash.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/headerUtil.js +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/index.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/moveHeadersToQuery.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/normalizeProvider.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/prepareRequest.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/suite.fixture.js +402 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/utilDate.js +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js +269 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/constants.js +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js +66 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js +60 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/normalizeProvider.js +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/suite.fixture.js +399 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/SignatureV4.d.ts +63 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/cloneRequest.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/constants.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/credentialDerivation.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/index.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/moveHeadersToQuery.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/normalizeProvider.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/normalizeProvider.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/package.json +56 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/CHANGELOG.md +1387 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/client.js +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/command.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/constants.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/date-utils.js +156 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/extended-encode-uri-component.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/get-array-if-single-item.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/get-value-from-text-node.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/index.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/lazy-json.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/parse-utils.js +206 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/ser-utils.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/split-every.js +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/client.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/command.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/constants.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js +150 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/index.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js +190 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/client.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/command.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/constants.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/date-utils.d.ts +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/get-array-if-single-item.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/get-value-from-text-node.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/index.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/lazy-json.d.ts +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/parse-utils.d.ts +203 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ser-utils.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/split-every.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/client.d.ts +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/command.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/constants.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/date-utils.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +2 -0
- 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
- 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
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/lazy-json.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/parse-utils.d.ts +53 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/ser-utils.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/split-every.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/CHANGELOG.md +1712 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/abort.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/client.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/command.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/credentials.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/crypto.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/http.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/index.js +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/logger.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/middleware.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/pagination.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/response.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/serde.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/shapes.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/signature.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/transfer.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/util.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/waiter.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/index.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/abort.d.ts +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/client.d.ts +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/command.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +84 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/http.d.ts +92 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/index.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/logger.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +338 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/response.d.ts +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/serde.d.ts +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/signature.d.ts +100 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +78 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +155 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +29 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +47 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +56 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/util.d.ts +112 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/package.json +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/CHANGELOG.md +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-cjs/index.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-es/index.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/package.json +46 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/CHANGELOG.md +561 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-cjs/index.js +86 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js +81 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-types/index.d.ts +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/package.json +46 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/CHANGELOG.md +672 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-cjs/index.js +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-es/index.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-types/index.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/package.json +50 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/CHANGELOG.md +574 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/README.md +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-cjs/index.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/package.json +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/CHANGELOG.md +611 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/README.md +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-cjs/index.js +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-es/index.js +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/CHANGELOG.md +617 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-cjs/index.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-es/index.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-types/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/CHANGELOG.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-cjs/booleanSelector.js +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-cjs/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-es/booleanSelector.js +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-es/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/booleanSelector.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/package.json +50 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/CHANGELOG.md +558 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-cjs/index.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js +33 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-types/index.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/CHANGELOG.md +666 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-cjs/escape-uri-path.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-cjs/escape-uri.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/escape-uri-path.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/escape-uri.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/package.json +47 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/CHANGELOG.md +1672 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/CHANGELOG.md +1759 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/is-crt-available.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +47 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +10 -0
- 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
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/package.json +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/CHANGELOG.md +561 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/index.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/pureJs.js +47 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/whatwgEncodingApi.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/pureJs.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/pureJs.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/whatwgEncodingApi.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/whatwgEncodingApi.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/package.json +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/CHANGELOG.md +669 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-cjs/index.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-es/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/package.json +53 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/CHANGELOG.md +260 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/createWaiter.js +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/poller.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/sleep.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/validate.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/waiter.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/createWaiter.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/poller.js +52 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/utils/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/utils/sleep.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/utils/validate.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/waiter.js +29 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/createWaiter.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/poller.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/createWaiter.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/poller.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/validate.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/waiter.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/utils/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/utils/sleep.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/utils/validate.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/waiter.d.ts +33 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/package.json +50 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/CHANGELOG.md +229 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/README.md +505 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/rng-browser.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/stringify.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v35.js +78 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v4.js +37 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/package.json +135 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/@serverless-stack/node/package.json +19 -8
- package/node_modules/asn1.js/.eslintrc.js +27 -0
- package/node_modules/asn1.js/LICENSE +21 -0
- package/node_modules/asn1.js/README.md +100 -0
- package/node_modules/asn1.js/lib/asn1/api.js +57 -0
- package/node_modules/asn1.js/lib/asn1/base/buffer.js +153 -0
- package/node_modules/asn1.js/lib/asn1/base/index.js +8 -0
- package/node_modules/asn1.js/lib/asn1/base/node.js +638 -0
- package/node_modules/asn1.js/lib/asn1/base/reporter.js +123 -0
- package/node_modules/asn1.js/lib/asn1/constants/der.js +58 -0
- package/node_modules/asn1.js/lib/asn1/constants/index.js +21 -0
- package/node_modules/asn1.js/lib/asn1/decoders/der.js +335 -0
- package/node_modules/asn1.js/lib/asn1/decoders/index.js +6 -0
- package/node_modules/asn1.js/lib/asn1/decoders/pem.js +51 -0
- package/node_modules/asn1.js/lib/asn1/encoders/der.js +295 -0
- package/node_modules/asn1.js/lib/asn1/encoders/index.js +6 -0
- package/node_modules/asn1.js/lib/asn1/encoders/pem.js +23 -0
- package/node_modules/asn1.js/lib/asn1.js +11 -0
- package/node_modules/asn1.js/package.json +36 -0
- package/node_modules/aws-sdk/CHANGELOG.md +108 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +651 -18
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.paginators.json +11 -0
- package/node_modules/aws-sdk/apis/backup-gateway-2021-01-01.min.json +59 -8
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +325 -8
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.paginators.json +17 -0
- package/node_modules/aws-sdk/apis/codestar-notifications-2019-10-15.min.json +7 -2
- package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +60 -51
- package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +237 -126
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +275 -134
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +18 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +148 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +12 -3
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.examples.json +5 -0
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +337 -335
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.paginators.json +1 -1
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/devicefarm-2015-06-23.min.json +166 -132
- package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +45 -45
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1678 -1323
- package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +90 -45
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +34 -19
- package/node_modules/aws-sdk/apis/evidently-2021-02-01.min.json +41 -15
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +3 -1
- package/node_modules/aws-sdk/apis/greengrassv2-2020-11-30.min.json +26 -19
- package/node_modules/aws-sdk/apis/identitystore-2020-06-15.min.json +732 -15
- package/node_modules/aws-sdk/apis/identitystore-2020-06-15.paginators.json +16 -2
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +10 -2
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.examples.json +5 -0
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.min.json +1961 -0
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.paginators.json +82 -0
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +2 -1
- package/node_modules/aws-sdk/apis/iotthingsgraph-2018-09-06.min.json +105 -35
- package/node_modules/aws-sdk/apis/ivs-2020-07-14.min.json +25 -19
- package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +59 -22
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +282 -31
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +39 -11
- package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +390 -119
- package/node_modules/aws-sdk/apis/mediaconnect-2018-11-14.min.json +21 -0
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +249 -213
- package/node_modules/aws-sdk/apis/mediapackage-2017-10-12.min.json +57 -54
- package/node_modules/aws-sdk/apis/metadata.json +6 -0
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +361 -180
- package/node_modules/aws-sdk/apis/nimble-2020-08-01.waiters2.json +1 -1
- package/node_modules/aws-sdk/apis/rds-data-2018-08-01.min.json +132 -132
- package/node_modules/aws-sdk/apis/runtime.lex.v2-2020-08-07.min.json +64 -40
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +102 -19
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +799 -690
- package/node_modules/aws-sdk/apis/sns-2010-03-31.min.json +42 -10
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +399 -287
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +174 -20
- package/node_modules/aws-sdk/apis/voice-id-2021-09-27.min.json +15 -2
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +3 -1
- package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +632 -0
- package/node_modules/aws-sdk/clients/apprunner.d.ts +1 -1
- package/node_modules/aws-sdk/clients/backupgateway.d.ts +72 -0
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +7 -7
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +443 -12
- package/node_modules/aws-sdk/clients/codegurureviewer.d.ts +134 -134
- package/node_modules/aws-sdk/clients/codestarnotifications.d.ts +29 -29
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +24 -11
- package/node_modules/aws-sdk/clients/comprehend.d.ts +148 -34
- package/node_modules/aws-sdk/clients/connect.d.ts +144 -10
- package/node_modules/aws-sdk/clients/controltower.d.ts +169 -0
- package/node_modules/aws-sdk/clients/controltower.js +18 -0
- package/node_modules/aws-sdk/clients/cur.d.ts +1 -1
- package/node_modules/aws-sdk/clients/customerprofiles.d.ts +22 -10
- package/node_modules/aws-sdk/clients/dataexchange.d.ts +13 -13
- package/node_modules/aws-sdk/clients/dataexchange.js +1 -0
- package/node_modules/aws-sdk/clients/devicefarm.d.ts +38 -0
- package/node_modules/aws-sdk/clients/drs.d.ts +3 -2
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +7 -7
- package/node_modules/aws-sdk/clients/ec2.d.ts +521 -150
- package/node_modules/aws-sdk/clients/ecs.d.ts +11 -11
- package/node_modules/aws-sdk/clients/eks.d.ts +74 -16
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +16 -1
- package/node_modules/aws-sdk/clients/evidently.d.ts +42 -5
- package/node_modules/aws-sdk/clients/fsx.d.ts +2 -2
- package/node_modules/aws-sdk/clients/glue.d.ts +8 -0
- package/node_modules/aws-sdk/clients/greengrassv2.d.ts +22 -13
- package/node_modules/aws-sdk/clients/identitystore.d.ts +806 -22
- package/node_modules/aws-sdk/clients/inspector2.d.ts +16 -2
- package/node_modules/aws-sdk/clients/iotfleetwise.d.ts +2549 -0
- package/node_modules/aws-sdk/clients/iotfleetwise.js +19 -0
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +12 -8
- package/node_modules/aws-sdk/clients/iotthingsgraph.d.ts +2 -2
- package/node_modules/aws-sdk/clients/ivs.d.ts +9 -0
- package/node_modules/aws-sdk/clients/kendra.d.ts +8 -8
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +175 -2
- package/node_modules/aws-sdk/clients/lexruntimev2.d.ts +25 -3
- package/node_modules/aws-sdk/clients/lightsail.d.ts +66 -3
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +399 -10
- package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +35 -0
- package/node_modules/aws-sdk/clients/macie2.d.ts +289 -41
- package/node_modules/aws-sdk/clients/mediaconnect.d.ts +25 -1
- package/node_modules/aws-sdk/clients/medialive.d.ts +38 -0
- package/node_modules/aws-sdk/clients/mediapackage.d.ts +2 -0
- package/node_modules/aws-sdk/clients/nimble.d.ts +14 -14
- package/node_modules/aws-sdk/clients/rds.d.ts +18 -18
- package/node_modules/aws-sdk/clients/rdsdataservice.d.ts +130 -130
- package/node_modules/aws-sdk/clients/redshift.d.ts +15 -15
- package/node_modules/aws-sdk/clients/route53.d.ts +3 -3
- package/node_modules/aws-sdk/clients/s3control.d.ts +109 -41
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +197 -30
- package/node_modules/aws-sdk/clients/sns.d.ts +42 -0
- package/node_modules/aws-sdk/clients/ssm.d.ts +122 -7
- package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
- package/node_modules/aws-sdk/clients/ssoadmin.d.ts +115 -115
- package/node_modules/aws-sdk/clients/transfer.d.ts +206 -0
- package/node_modules/aws-sdk/clients/voiceid.d.ts +26 -16
- package/node_modules/aws-sdk/clients/wafv2.d.ts +7 -7
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +38 -11
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +938 -796
- package/node_modules/aws-sdk/dist/aws-sdk.js +3290 -2114
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -82
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.d.ts +2 -0
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.js +5 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +3 -3
- package/node_modules/aws-sdk/package.json +2 -1
- package/node_modules/bn.js/LICENSE +19 -0
- package/node_modules/bn.js/README.md +200 -0
- package/node_modules/bn.js/lib/bn.js +3446 -0
- package/node_modules/bn.js/package.json +36 -0
- package/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
- package/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
- package/node_modules/ecdsa-sig-formatter/README.md +65 -0
- package/node_modules/ecdsa-sig-formatter/package.json +46 -0
- package/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
- package/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
- package/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
- package/node_modules/es-abstract/2015/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2015/ToNumber.js +1 -1
- package/node_modules/es-abstract/2016/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2016/ToNumber.js +1 -1
- package/node_modules/es-abstract/2017/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2017/ToNumber.js +1 -1
- package/node_modules/es-abstract/2018/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2018/ToNumber.js +1 -1
- package/node_modules/es-abstract/2019/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2019/ToNumber.js +1 -1
- package/node_modules/es-abstract/2020/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2020/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/2020/ToNumber.js +1 -1
- package/node_modules/es-abstract/2021/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2021/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/2021/ToNumber.js +1 -1
- package/node_modules/es-abstract/2022/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2022/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/2022/StringToNumber.js +1 -1
- package/node_modules/es-abstract/CHANGELOG.md +14 -0
- package/node_modules/es-abstract/helpers/regexTester.js +2 -6
- package/node_modules/es-abstract/package.json +12 -10
- package/node_modules/fast-jwt/LICENSE.md +13 -0
- package/node_modules/fast-jwt/README.md +420 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/LICENSE.txt +21 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/README.md +112 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bi-map.d.ts +46 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bi-map.js +195 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bit-set.d.ts +29 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bit-set.js +379 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bit-vector.d.ts +42 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bit-vector.js +550 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bk-tree.d.ts +24 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bk-tree.js +180 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bloom-filter.d.ts +29 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bloom-filter.js +186 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/circular-buffer.d.ts +34 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/circular-buffer.js +131 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/critbit-tree-map.js +515 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/default-map.d.ts +29 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/default-map.js +162 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/default-weak-map.d.ts +18 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/default-weak-map.js +108 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fibonacci-heap.d.ts +65 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fibonacci-heap.js +320 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-critbit-tree-map.js +427 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-deque.d.ts +34 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-deque.js +351 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-reverse-heap.d.ts +25 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-reverse-heap.js +209 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-stack.d.ts +36 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-stack.js +242 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-map.d.ts +33 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-map.js +185 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-multi-map.d.ts +36 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-multi-map.js +196 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/hashed-array-tree.d.ts +32 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/hashed-array-tree.js +209 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/heap.d.ts +96 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/heap.js +576 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/index.d.ts +48 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/index.js +58 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/inverted-index.d.ts +33 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/inverted-index.js +249 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/kd-tree.d.ts +25 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/kd-tree.js +447 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/linked-list.d.ts +29 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/linked-list.js +261 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache-with-delete.d.ts +13 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache-with-delete.js +287 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache.d.ts +43 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache.js +436 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-map-with-delete.d.ts +13 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-map-with-delete.js +287 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-map.d.ts +43 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-map.js +261 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/multi-array.js +447 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/multi-map.d.ts +47 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/multi-map.js +408 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/multi-set.d.ts +37 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/multi-set.js +440 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/package.json +103 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/passjoin-index.d.ts +54 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/passjoin-index.js +518 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/queue.d.ts +27 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/queue.js +215 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/semi-dynamic-trie.js +251 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/set.d.ts +18 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/set.js +356 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sort/insertion.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sort/insertion.js +50 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sort/quick.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sort/quick.js +116 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-map.d.ts +26 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-map.js +243 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-queue-set.d.ts +24 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-queue-set.js +218 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-set.d.ts +23 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-set.js +168 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/stack.d.ts +27 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/stack.js +210 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/static-disjoint-set.d.ts +23 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/static-disjoint-set.js +195 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/static-interval-tree.d.ts +24 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/static-interval-tree.js +387 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/suffix-array.d.ts +37 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/suffix-array.js +352 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/symspell.d.ts +33 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/symspell.js +547 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/trie-map.d.ts +30 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/trie-map.js +477 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/trie.d.ts +26 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/trie.js +167 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/binary-search.js +216 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/bitwise.js +109 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/comparators.js +79 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/hash-tables.js +107 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/iterables.js +93 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/merge.js +563 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/murmurhash3.js +87 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/typed-arrays.js +187 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/types.d.ts +18 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/vector.d.ts +81 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/vector.js +373 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/vp-tree.d.ts +27 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/vp-tree.js +367 -0
- package/node_modules/fast-jwt/node_modules/obliterator/LICENSE.txt +21 -0
- package/node_modules/fast-jwt/node_modules/obliterator/README.md +415 -0
- package/node_modules/fast-jwt/node_modules/obliterator/chain.d.ts +5 -0
- package/node_modules/fast-jwt/node_modules/obliterator/chain.js +46 -0
- package/node_modules/fast-jwt/node_modules/obliterator/combinations.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/obliterator/combinations.js +76 -0
- package/node_modules/fast-jwt/node_modules/obliterator/consume.d.ts +1 -0
- package/node_modules/fast-jwt/node_modules/obliterator/consume.js +29 -0
- package/node_modules/fast-jwt/node_modules/obliterator/every.d.ts +8 -0
- package/node_modules/fast-jwt/node_modules/obliterator/every.js +27 -0
- package/node_modules/fast-jwt/node_modules/obliterator/filter.d.ts +8 -0
- package/node_modules/fast-jwt/node_modules/obliterator/filter.js +28 -0
- package/node_modules/fast-jwt/node_modules/obliterator/find.d.ts +8 -0
- package/node_modules/fast-jwt/node_modules/obliterator/find.js +27 -0
- package/node_modules/fast-jwt/node_modules/obliterator/foreach-with-null-keys.d.ts +29 -0
- package/node_modules/fast-jwt/node_modules/obliterator/foreach-with-null-keys.js +83 -0
- package/node_modules/fast-jwt/node_modules/obliterator/foreach.d.ts +24 -0
- package/node_modules/fast-jwt/node_modules/obliterator/foreach.js +73 -0
- package/node_modules/fast-jwt/node_modules/obliterator/includes.d.ts +6 -0
- package/node_modules/fast-jwt/node_modules/obliterator/includes.js +27 -0
- package/node_modules/fast-jwt/node_modules/obliterator/index.d.ts +20 -0
- package/node_modules/fast-jwt/node_modules/obliterator/index.js +26 -0
- package/node_modules/fast-jwt/node_modules/obliterator/iter.d.ts +1 -0
- package/node_modules/fast-jwt/node_modules/obliterator/iter.js +46 -0
- package/node_modules/fast-jwt/node_modules/obliterator/iterator.d.ts +18 -0
- package/node_modules/fast-jwt/node_modules/obliterator/iterator.js +96 -0
- package/node_modules/fast-jwt/node_modules/obliterator/map.d.ts +8 -0
- package/node_modules/fast-jwt/node_modules/obliterator/map.js +29 -0
- package/node_modules/fast-jwt/node_modules/obliterator/match.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/obliterator/match.js +43 -0
- package/node_modules/fast-jwt/node_modules/obliterator/package.json +46 -0
- package/node_modules/fast-jwt/node_modules/obliterator/permutations.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/obliterator/permutations.js +94 -0
- package/node_modules/fast-jwt/node_modules/obliterator/power-set.d.ts +3 -0
- package/node_modules/fast-jwt/node_modules/obliterator/power-set.js +27 -0
- package/node_modules/fast-jwt/node_modules/obliterator/range.d.ts +10 -0
- package/node_modules/fast-jwt/node_modules/obliterator/range.js +44 -0
- package/node_modules/fast-jwt/node_modules/obliterator/some.d.ts +8 -0
- package/node_modules/fast-jwt/node_modules/obliterator/some.js +27 -0
- package/node_modules/fast-jwt/node_modules/obliterator/split.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/obliterator/split.js +68 -0
- package/node_modules/fast-jwt/node_modules/obliterator/support.js +2 -0
- package/node_modules/fast-jwt/node_modules/obliterator/take-into.d.ts +9 -0
- package/node_modules/fast-jwt/node_modules/obliterator/take-into.js +39 -0
- package/node_modules/fast-jwt/node_modules/obliterator/take.d.ts +6 -0
- package/node_modules/fast-jwt/node_modules/obliterator/take.js +39 -0
- package/node_modules/fast-jwt/node_modules/obliterator/types.d.ts +18 -0
- package/node_modules/fast-jwt/package.json +84 -0
- package/node_modules/fast-jwt/src/crypto.js +362 -0
- package/node_modules/fast-jwt/src/decoder.js +60 -0
- package/node_modules/fast-jwt/src/error.js +45 -0
- package/node_modules/fast-jwt/src/index.d.ts +122 -0
- package/node_modules/fast-jwt/src/index.js +13 -0
- package/node_modules/fast-jwt/src/signer.js +309 -0
- package/node_modules/fast-jwt/src/utils.js +65 -0
- package/node_modules/fast-jwt/src/verifier.js +470 -0
- package/node_modules/get-intrinsic/CHANGELOG.md +7 -0
- package/node_modules/get-intrinsic/index.js +1 -1
- package/node_modules/get-intrinsic/package.json +7 -4
- package/node_modules/is-callable/.editorconfig +5 -0
- package/node_modules/is-callable/.eslintrc +0 -11
- package/node_modules/is-callable/CHANGELOG.md +50 -0
- package/node_modules/is-callable/README.md +16 -0
- package/node_modules/is-callable/index.js +35 -8
- package/node_modules/is-callable/package.json +27 -13
- package/node_modules/is-callable/test/index.js +86 -12
- package/node_modules/jose/LICENSE.md +21 -0
- package/node_modules/jose/README.md +159 -0
- package/node_modules/jose/dist/browser/index.js +31 -0
- package/node_modules/jose/dist/browser/jwe/compact/decrypt.js +27 -0
- package/node_modules/jose/dist/browser/jwe/compact/encrypt.js +26 -0
- package/node_modules/jose/dist/browser/jwe/flattened/decrypt.js +137 -0
- package/node_modules/jose/dist/browser/jwe/flattened/encrypt.js +175 -0
- package/node_modules/jose/dist/browser/jwe/general/decrypt.js +31 -0
- package/node_modules/jose/dist/browser/jwe/general/encrypt.js +178 -0
- package/node_modules/jose/dist/browser/jwk/embedded.js +17 -0
- package/node_modules/jose/dist/browser/jwk/thumbprint.js +53 -0
- package/node_modules/jose/dist/browser/jwks/local.js +98 -0
- package/node_modules/jose/dist/browser/jwks/remote.js +81 -0
- package/node_modules/jose/dist/browser/jws/compact/sign.js +17 -0
- package/node_modules/jose/dist/browser/jws/compact/verify.js +21 -0
- package/node_modules/jose/dist/browser/jws/flattened/sign.js +81 -0
- package/node_modules/jose/dist/browser/jws/flattened/verify.js +104 -0
- package/node_modules/jose/dist/browser/jws/general/sign.js +67 -0
- package/node_modules/jose/dist/browser/jws/general/verify.js +24 -0
- package/node_modules/jose/dist/browser/jwt/decrypt.js +23 -0
- package/node_modules/jose/dist/browser/jwt/encrypt.js +68 -0
- package/node_modules/jose/dist/browser/jwt/produce.js +54 -0
- package/node_modules/jose/dist/browser/jwt/sign.js +21 -0
- package/node_modules/jose/dist/browser/jwt/unsecured.js +32 -0
- package/node_modules/jose/dist/browser/jwt/verify.js +16 -0
- package/node_modules/jose/dist/browser/key/export.js +12 -0
- package/node_modules/jose/dist/browser/key/generate_key_pair.js +4 -0
- package/node_modules/jose/dist/browser/key/generate_secret.js +4 -0
- package/node_modules/jose/dist/browser/key/import.js +120 -0
- package/node_modules/jose/dist/browser/lib/aesgcmkw.js +14 -0
- package/node_modules/jose/dist/browser/lib/buffer_utils.js +51 -0
- package/node_modules/jose/dist/browser/lib/cek.js +20 -0
- package/node_modules/jose/dist/browser/lib/check_iv_length.js +8 -0
- package/node_modules/jose/dist/browser/lib/check_key_type.js +45 -0
- package/node_modules/jose/dist/browser/lib/check_p2s.js +6 -0
- package/node_modules/jose/dist/browser/lib/crypto_key.js +145 -0
- package/node_modules/jose/dist/browser/lib/decrypt_key_management.js +98 -0
- package/node_modules/jose/dist/browser/lib/encrypt_key_management.js +87 -0
- package/node_modules/jose/dist/browser/lib/epoch.js +1 -0
- package/node_modules/jose/dist/browser/lib/format_pem.js +4 -0
- package/node_modules/jose/dist/browser/lib/invalid_key_input.js +30 -0
- package/node_modules/jose/dist/browser/lib/is_disjoint.js +22 -0
- package/node_modules/jose/dist/browser/lib/is_object.js +16 -0
- package/node_modules/jose/dist/browser/lib/iv.js +20 -0
- package/node_modules/jose/dist/browser/lib/jwt_claims_set.js +91 -0
- package/node_modules/jose/dist/browser/lib/secs.js +44 -0
- package/node_modules/jose/dist/browser/lib/validate_algorithms.js +11 -0
- package/node_modules/jose/dist/browser/lib/validate_crit.js +34 -0
- package/node_modules/jose/dist/browser/package.json +1 -0
- package/node_modules/jose/dist/browser/runtime/aeskw.js +32 -0
- package/node_modules/jose/dist/browser/runtime/asn1.js +118 -0
- package/node_modules/jose/dist/browser/runtime/base64url.js +37 -0
- package/node_modules/jose/dist/browser/runtime/bogus.js +6 -0
- package/node_modules/jose/dist/browser/runtime/check_cek_length.js +8 -0
- package/node_modules/jose/dist/browser/runtime/check_key_length.js +8 -0
- package/node_modules/jose/dist/browser/runtime/decrypt.js +85 -0
- package/node_modules/jose/dist/browser/runtime/digest.js +6 -0
- package/node_modules/jose/dist/browser/runtime/ecdhes.js +33 -0
- package/node_modules/jose/dist/browser/runtime/encrypt.js +68 -0
- package/node_modules/jose/dist/browser/runtime/env.js +3 -0
- package/node_modules/jose/dist/browser/runtime/fetch_jwks.js +34 -0
- package/node_modules/jose/dist/browser/runtime/generate.js +126 -0
- package/node_modules/jose/dist/browser/runtime/get_sign_verify_key.js +17 -0
- package/node_modules/jose/dist/browser/runtime/is_key_like.js +5 -0
- package/node_modules/jose/dist/browser/runtime/jwk_to_key.js +135 -0
- package/node_modules/jose/dist/browser/runtime/key_to_jwk.js +21 -0
- package/node_modules/jose/dist/browser/runtime/pbes2kw.js +51 -0
- package/node_modules/jose/dist/browser/runtime/random.js +2 -0
- package/node_modules/jose/dist/browser/runtime/rsaes.js +37 -0
- package/node_modules/jose/dist/browser/runtime/sign.js +11 -0
- package/node_modules/jose/dist/browser/runtime/subtle_dsa.js +28 -0
- package/node_modules/jose/dist/browser/runtime/subtle_rsaes.js +12 -0
- package/node_modules/jose/dist/browser/runtime/timing_safe_equal.js +19 -0
- package/node_modules/jose/dist/browser/runtime/verify.js +16 -0
- package/node_modules/jose/dist/browser/runtime/webcrypto.js +2 -0
- package/node_modules/jose/dist/browser/runtime/zlib.js +7 -0
- package/node_modules/jose/dist/browser/util/base64url.js +3 -0
- package/node_modules/jose/dist/browser/util/decode_jwt.js +32 -0
- package/node_modules/jose/dist/browser/util/decode_protected_header.js +34 -0
- package/node_modules/jose/dist/browser/util/errors.js +147 -0
- package/node_modules/jose/dist/node/cjs/index.js +65 -0
- package/node_modules/jose/dist/node/cjs/jwe/compact/decrypt.js +31 -0
- package/node_modules/jose/dist/node/cjs/jwe/compact/encrypt.js +30 -0
- package/node_modules/jose/dist/node/cjs/jwe/flattened/decrypt.js +141 -0
- package/node_modules/jose/dist/node/cjs/jwe/flattened/encrypt.js +179 -0
- package/node_modules/jose/dist/node/cjs/jwe/general/decrypt.js +35 -0
- package/node_modules/jose/dist/node/cjs/jwe/general/encrypt.js +182 -0
- package/node_modules/jose/dist/node/cjs/jwk/embedded.js +21 -0
- package/node_modules/jose/dist/node/cjs/jwk/thumbprint.js +58 -0
- package/node_modules/jose/dist/node/cjs/jwks/local.js +104 -0
- package/node_modules/jose/dist/node/cjs/jwks/remote.js +85 -0
- package/node_modules/jose/dist/node/cjs/jws/compact/sign.js +21 -0
- package/node_modules/jose/dist/node/cjs/jws/compact/verify.js +25 -0
- package/node_modules/jose/dist/node/cjs/jws/flattened/sign.js +85 -0
- package/node_modules/jose/dist/node/cjs/jws/flattened/verify.js +108 -0
- package/node_modules/jose/dist/node/cjs/jws/general/sign.js +71 -0
- package/node_modules/jose/dist/node/cjs/jws/general/verify.js +28 -0
- package/node_modules/jose/dist/node/cjs/jwt/decrypt.js +27 -0
- package/node_modules/jose/dist/node/cjs/jwt/encrypt.js +72 -0
- package/node_modules/jose/dist/node/cjs/jwt/produce.js +58 -0
- package/node_modules/jose/dist/node/cjs/jwt/sign.js +25 -0
- package/node_modules/jose/dist/node/cjs/jwt/unsecured.js +36 -0
- package/node_modules/jose/dist/node/cjs/jwt/verify.js +20 -0
- package/node_modules/jose/dist/node/cjs/key/export.js +18 -0
- package/node_modules/jose/dist/node/cjs/key/generate_key_pair.js +8 -0
- package/node_modules/jose/dist/node/cjs/key/generate_secret.js +8 -0
- package/node_modules/jose/dist/node/cjs/key/import.js +127 -0
- package/node_modules/jose/dist/node/cjs/lib/aesgcmkw.js +19 -0
- package/node_modules/jose/dist/node/cjs/lib/buffer_utils.js +60 -0
- package/node_modules/jose/dist/node/cjs/lib/cek.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/check_iv_length.js +10 -0
- package/node_modules/jose/dist/node/cjs/lib/check_key_type.js +47 -0
- package/node_modules/jose/dist/node/cjs/lib/check_p2s.js +9 -0
- package/node_modules/jose/dist/node/cjs/lib/crypto_key.js +150 -0
- package/node_modules/jose/dist/node/cjs/lib/decrypt_key_management.js +100 -0
- package/node_modules/jose/dist/node/cjs/lib/encrypt_key_management.js +89 -0
- package/node_modules/jose/dist/node/cjs/lib/epoch.js +3 -0
- package/node_modules/jose/dist/node/cjs/lib/format_pem.js +6 -0
- package/node_modules/jose/dist/node/cjs/lib/invalid_key_input.js +34 -0
- package/node_modules/jose/dist/node/cjs/lib/is_disjoint.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/is_object.js +19 -0
- package/node_modules/jose/dist/node/cjs/lib/iv.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/jwt_claims_set.js +93 -0
- package/node_modules/jose/dist/node/cjs/lib/secs.js +46 -0
- package/node_modules/jose/dist/node/cjs/lib/validate_algorithms.js +13 -0
- package/node_modules/jose/dist/node/cjs/lib/validate_crit.js +36 -0
- package/node_modules/jose/dist/node/cjs/runtime/aeskw.js +55 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1.js +48 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_decoder.js +47 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_encoder.js +91 -0
- package/node_modules/jose/dist/node/cjs/runtime/base64url.js +26 -0
- package/node_modules/jose/dist/node/cjs/runtime/cbc_tag.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/check_cek_length.js +37 -0
- package/node_modules/jose/dist/node/cjs/runtime/check_modulus_length.js +52 -0
- package/node_modules/jose/dist/node/cjs/runtime/ciphers.js +8 -0
- package/node_modules/jose/dist/node/cjs/runtime/decrypt.js +97 -0
- package/node_modules/jose/dist/node/cjs/runtime/digest.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/dsa_digest.js +25 -0
- package/node_modules/jose/dist/node/cjs/runtime/ecdhes.js +70 -0
- package/node_modules/jose/dist/node/cjs/runtime/encrypt.js +74 -0
- package/node_modules/jose/dist/node/cjs/runtime/env.js +7 -0
- package/node_modules/jose/dist/node/cjs/runtime/fetch_jwks.js +45 -0
- package/node_modules/jose/dist/node/cjs/runtime/generate.js +105 -0
- package/node_modules/jose/dist/node/cjs/runtime/get_named_curve.js +95 -0
- package/node_modules/jose/dist/node/cjs/runtime/get_sign_verify_key.js +24 -0
- package/node_modules/jose/dist/node/cjs/runtime/hmac_digest.js +16 -0
- package/node_modules/jose/dist/node/cjs/runtime/is_key_like.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/is_key_object.js +7 -0
- package/node_modules/jose/dist/node/cjs/runtime/jwk_to_key.js +122 -0
- package/node_modules/jose/dist/node/cjs/runtime/key_to_jwk.js +164 -0
- package/node_modules/jose/dist/node/cjs/runtime/node_key.js +83 -0
- package/node_modules/jose/dist/node/cjs/runtime/pbes2kw.js +48 -0
- package/node_modules/jose/dist/node/cjs/runtime/random.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/rsaes.js +69 -0
- package/node_modules/jose/dist/node/cjs/runtime/sign.js +25 -0
- package/node_modules/jose/dist/node/cjs/runtime/timing_safe_equal.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/verify.js +42 -0
- package/node_modules/jose/dist/node/cjs/runtime/webcrypto.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/zlib.js +11 -0
- package/node_modules/jose/dist/node/cjs/util/base64url.js +6 -0
- package/node_modules/jose/dist/node/cjs/util/decode_jwt.js +36 -0
- package/node_modules/jose/dist/node/cjs/util/decode_protected_header.js +38 -0
- package/node_modules/jose/dist/node/cjs/util/errors.js +165 -0
- package/node_modules/jose/dist/node/esm/index.js +29 -0
- package/node_modules/jose/dist/node/esm/jwe/compact/decrypt.js +27 -0
- package/node_modules/jose/dist/node/esm/jwe/compact/encrypt.js +26 -0
- package/node_modules/jose/dist/node/esm/jwe/flattened/decrypt.js +137 -0
- package/node_modules/jose/dist/node/esm/jwe/flattened/encrypt.js +175 -0
- package/node_modules/jose/dist/node/esm/jwe/general/decrypt.js +31 -0
- package/node_modules/jose/dist/node/esm/jwe/general/encrypt.js +178 -0
- package/node_modules/jose/dist/node/esm/jwk/embedded.js +17 -0
- package/node_modules/jose/dist/node/esm/jwk/thumbprint.js +53 -0
- package/node_modules/jose/dist/node/esm/jwks/local.js +98 -0
- package/node_modules/jose/dist/node/esm/jwks/remote.js +81 -0
- package/node_modules/jose/dist/node/esm/jws/compact/sign.js +17 -0
- package/node_modules/jose/dist/node/esm/jws/compact/verify.js +21 -0
- package/node_modules/jose/dist/node/esm/jws/flattened/sign.js +81 -0
- package/node_modules/jose/dist/node/esm/jws/flattened/verify.js +104 -0
- package/node_modules/jose/dist/node/esm/jws/general/sign.js +67 -0
- package/node_modules/jose/dist/node/esm/jws/general/verify.js +24 -0
- package/node_modules/jose/dist/node/esm/jwt/decrypt.js +23 -0
- package/node_modules/jose/dist/node/esm/jwt/encrypt.js +68 -0
- package/node_modules/jose/dist/node/esm/jwt/produce.js +54 -0
- package/node_modules/jose/dist/node/esm/jwt/sign.js +21 -0
- package/node_modules/jose/dist/node/esm/jwt/unsecured.js +32 -0
- package/node_modules/jose/dist/node/esm/jwt/verify.js +16 -0
- package/node_modules/jose/dist/node/esm/key/export.js +12 -0
- package/node_modules/jose/dist/node/esm/key/generate_key_pair.js +4 -0
- package/node_modules/jose/dist/node/esm/key/generate_secret.js +4 -0
- package/node_modules/jose/dist/node/esm/key/import.js +120 -0
- package/node_modules/jose/dist/node/esm/lib/aesgcmkw.js +14 -0
- package/node_modules/jose/dist/node/esm/lib/buffer_utils.js +51 -0
- package/node_modules/jose/dist/node/esm/lib/cek.js +20 -0
- package/node_modules/jose/dist/node/esm/lib/check_iv_length.js +8 -0
- package/node_modules/jose/dist/node/esm/lib/check_key_type.js +45 -0
- package/node_modules/jose/dist/node/esm/lib/check_p2s.js +6 -0
- package/node_modules/jose/dist/node/esm/lib/crypto_key.js +145 -0
- package/node_modules/jose/dist/node/esm/lib/decrypt_key_management.js +98 -0
- package/node_modules/jose/dist/node/esm/lib/encrypt_key_management.js +87 -0
- package/node_modules/jose/dist/node/esm/lib/epoch.js +1 -0
- package/node_modules/jose/dist/node/esm/lib/format_pem.js +4 -0
- package/node_modules/jose/dist/node/esm/lib/invalid_key_input.js +30 -0
- package/node_modules/jose/dist/node/esm/lib/is_disjoint.js +22 -0
- package/node_modules/jose/dist/node/esm/lib/is_object.js +16 -0
- package/node_modules/jose/dist/node/esm/lib/iv.js +20 -0
- package/node_modules/jose/dist/node/esm/lib/jwt_claims_set.js +91 -0
- package/node_modules/jose/dist/node/esm/lib/secs.js +44 -0
- package/node_modules/jose/dist/node/esm/lib/validate_algorithms.js +11 -0
- package/node_modules/jose/dist/node/esm/lib/validate_crit.js +34 -0
- package/node_modules/jose/dist/node/esm/package.json +1 -0
- package/node_modules/jose/dist/node/esm/runtime/aeskw.js +50 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1.js +41 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_decoder.js +44 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_encoder.js +88 -0
- package/node_modules/jose/dist/node/esm/runtime/base64url.js +20 -0
- package/node_modules/jose/dist/node/esm/runtime/cbc_tag.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/check_cek_length.js +35 -0
- package/node_modules/jose/dist/node/esm/runtime/check_modulus_length.js +48 -0
- package/node_modules/jose/dist/node/esm/runtime/ciphers.js +6 -0
- package/node_modules/jose/dist/node/esm/runtime/decrypt.js +95 -0
- package/node_modules/jose/dist/node/esm/runtime/digest.js +3 -0
- package/node_modules/jose/dist/node/esm/runtime/dsa_digest.js +22 -0
- package/node_modules/jose/dist/node/esm/runtime/ecdhes.js +64 -0
- package/node_modules/jose/dist/node/esm/runtime/encrypt.js +72 -0
- package/node_modules/jose/dist/node/esm/runtime/env.js +3 -0
- package/node_modules/jose/dist/node/esm/runtime/fetch_jwks.js +43 -0
- package/node_modules/jose/dist/node/esm/runtime/generate.js +100 -0
- package/node_modules/jose/dist/node/esm/runtime/get_named_curve.js +91 -0
- package/node_modules/jose/dist/node/esm/runtime/get_sign_verify_key.js +21 -0
- package/node_modules/jose/dist/node/esm/runtime/hmac_digest.js +13 -0
- package/node_modules/jose/dist/node/esm/runtime/is_key_like.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/is_key_object.js +5 -0
- package/node_modules/jose/dist/node/esm/runtime/jwk_to_key.js +120 -0
- package/node_modules/jose/dist/node/esm/runtime/key_to_jwk.js +162 -0
- package/node_modules/jose/dist/node/esm/runtime/node_key.js +80 -0
- package/node_modules/jose/dist/node/esm/runtime/pbes2kw.js +43 -0
- package/node_modules/jose/dist/node/esm/runtime/random.js +1 -0
- package/node_modules/jose/dist/node/esm/runtime/rsaes.js +64 -0
- package/node_modules/jose/dist/node/esm/runtime/sign.js +23 -0
- package/node_modules/jose/dist/node/esm/runtime/timing_safe_equal.js +3 -0
- package/node_modules/jose/dist/node/esm/runtime/verify.js +40 -0
- package/node_modules/jose/dist/node/esm/runtime/webcrypto.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/zlib.js +6 -0
- package/node_modules/jose/dist/node/esm/util/base64url.js +3 -0
- package/node_modules/jose/dist/node/esm/util/decode_jwt.js +32 -0
- package/node_modules/jose/dist/node/esm/util/decode_protected_header.js +34 -0
- package/node_modules/jose/dist/node/esm/util/errors.js +147 -0
- package/node_modules/jose/dist/types/index.d.ts +47 -0
- package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +33 -0
- package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +60 -0
- package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +43 -0
- package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +89 -0
- package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +47 -0
- package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +74 -0
- package/node_modules/jose/dist/types/jwk/embedded.d.ts +23 -0
- package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +44 -0
- package/node_modules/jose/dist/types/jwks/local.d.ts +48 -0
- package/node_modules/jose/dist/types/jwks/remote.d.ts +54 -0
- package/node_modules/jose/dist/types/jws/compact/sign.d.ts +34 -0
- package/node_modules/jose/dist/types/jws/compact/verify.d.ts +37 -0
- package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +42 -0
- package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +42 -0
- package/node_modules/jose/dist/types/jws/general/sign.d.ts +54 -0
- package/node_modules/jose/dist/types/jws/general/verify.d.ts +45 -0
- package/node_modules/jose/dist/types/jwt/decrypt.d.ts +40 -0
- package/node_modules/jose/dist/types/jwt/encrypt.d.ts +84 -0
- package/node_modules/jose/dist/types/jwt/produce.d.ts +53 -0
- package/node_modules/jose/dist/types/jwt/sign.d.ts +35 -0
- package/node_modules/jose/dist/types/jwt/unsecured.d.ts +44 -0
- package/node_modules/jose/dist/types/jwt/verify.d.ts +44 -0
- package/node_modules/jose/dist/types/key/export.d.ts +47 -0
- package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +44 -0
- package/node_modules/jose/dist/types/key/generate_secret.d.ts +26 -0
- package/node_modules/jose/dist/types/key/import.d.ts +115 -0
- package/node_modules/jose/dist/types/types.d.ts +602 -0
- package/node_modules/jose/dist/types/util/base64url.d.ts +19 -0
- package/node_modules/jose/dist/types/util/decode_jwt.d.ts +17 -0
- package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +15 -0
- package/node_modules/jose/dist/types/util/errors.d.ts +96 -0
- package/node_modules/jose/package.json +82 -0
- package/node_modules/minimalistic-assert/LICENSE +13 -0
- package/node_modules/minimalistic-assert/index.js +11 -0
- package/node_modules/minimalistic-assert/package.json +19 -0
- package/node_modules/minimalistic-assert/readme.md +4 -0
- package/node_modules/object-hash/LICENSE +22 -0
- package/node_modules/object-hash/dist/object_hash.js +1 -0
- package/node_modules/object-hash/index.js +453 -0
- package/node_modules/object-hash/package.json +53 -0
- package/node_modules/object-hash/readme.markdown +184 -0
- package/node_modules/oidc-token-hash/LICENSE.md +21 -0
- package/node_modules/oidc-token-hash/README.md +55 -0
- package/node_modules/oidc-token-hash/lib/index.js +106 -0
- package/node_modules/oidc-token-hash/lib/shake256.js +7 -0
- package/node_modules/oidc-token-hash/package.json +36 -0
- package/node_modules/openid-client/LICENSE.md +21 -0
- package/node_modules/openid-client/README.md +299 -0
- package/node_modules/openid-client/lib/client.js +1815 -0
- package/node_modules/openid-client/lib/device_flow_handle.js +125 -0
- package/node_modules/openid-client/lib/errors.js +55 -0
- package/node_modules/openid-client/lib/helpers/assert.js +24 -0
- package/node_modules/openid-client/lib/helpers/base64url.js +13 -0
- package/node_modules/openid-client/lib/helpers/client.js +209 -0
- package/node_modules/openid-client/lib/helpers/consts.js +7 -0
- package/node_modules/openid-client/lib/helpers/decode_jwt.js +27 -0
- package/node_modules/openid-client/lib/helpers/deep_clone.js +3 -0
- package/node_modules/openid-client/lib/helpers/defaults.js +27 -0
- package/node_modules/openid-client/lib/helpers/generators.js +14 -0
- package/node_modules/openid-client/lib/helpers/is_key_object.js +4 -0
- package/node_modules/openid-client/lib/helpers/is_plain_object.js +1 -0
- package/node_modules/openid-client/lib/helpers/issuer.js +110 -0
- package/node_modules/openid-client/lib/helpers/keystore.js +312 -0
- package/node_modules/openid-client/lib/helpers/merge.js +24 -0
- package/node_modules/openid-client/lib/helpers/pick.js +9 -0
- package/node_modules/openid-client/lib/helpers/process_response.js +71 -0
- package/node_modules/openid-client/lib/helpers/request.js +197 -0
- package/node_modules/openid-client/lib/helpers/unix_timestamp.js +1 -0
- package/node_modules/openid-client/lib/helpers/weak_cache.js +1 -0
- package/node_modules/openid-client/lib/helpers/webfinger_normalize.js +71 -0
- package/node_modules/openid-client/lib/helpers/www_authenticate_parser.js +14 -0
- package/node_modules/openid-client/lib/index.js +23 -0
- package/node_modules/openid-client/lib/index.mjs +9 -0
- package/node_modules/openid-client/lib/issuer.js +204 -0
- package/node_modules/openid-client/lib/issuer_registry.js +3 -0
- package/node_modules/openid-client/lib/passport_strategy.js +194 -0
- package/node_modules/openid-client/lib/token_set.js +35 -0
- package/node_modules/openid-client/node_modules/lru-cache/LICENSE +15 -0
- package/node_modules/openid-client/node_modules/lru-cache/README.md +166 -0
- package/node_modules/openid-client/node_modules/lru-cache/index.js +334 -0
- package/node_modules/openid-client/node_modules/lru-cache/package.json +34 -0
- package/node_modules/openid-client/package.json +118 -0
- package/node_modules/openid-client/types/index.d.ts +620 -0
- package/node_modules/safe-regex-test/.eslintrc +9 -0
- package/node_modules/safe-regex-test/.github/FUNDING.yml +12 -0
- package/node_modules/safe-regex-test/CHANGELOG.md +15 -0
- package/node_modules/safe-regex-test/LICENSE +21 -0
- package/node_modules/safe-regex-test/README.md +42 -0
- package/node_modules/safe-regex-test/index.js +17 -0
- package/node_modules/safe-regex-test/package.json +75 -0
- package/node_modules/safe-regex-test/test/index.js +37 -0
- package/node_modules/safer-buffer/LICENSE +21 -0
- package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/node_modules/safer-buffer/Readme.md +156 -0
- package/node_modules/safer-buffer/dangerous.js +58 -0
- package/node_modules/safer-buffer/package.json +34 -0
- package/node_modules/safer-buffer/safer.js +77 -0
- package/node_modules/safer-buffer/tests.js +406 -0
- package/node_modules/ws/lib/websocket.js +15 -15
- package/node_modules/ws/package.json +1 -1
- package/node_modules/yallist/LICENSE +15 -0
- package/node_modules/yallist/README.md +204 -0
- package/node_modules/yallist/iterator.js +8 -0
- package/node_modules/yallist/package.json +29 -0
- package/node_modules/yallist/yallist.js +426 -0
- package/package.json +40 -38
- package/cli/serverlessSpy.js +0 -73
- package/cli/ws.ts +0 -79
- package/common/publishSpyEvent.ts +0 -269
- package/lib/cli/ws.js +0 -68
- package/lib/cli/ws.mjs +0 -66
- package/lib/common/publishSpyEvent.d.ts +0 -4
- package/lib/common/publishSpyEvent.js +0 -211
- package/lib/common/publishSpyEvent.mjs +0 -205
- package/node_modules/@serverless-stack/node/.turbo/turbo-build.log +0 -2
- package/node_modules/@serverless-stack/node/CHANGELOG.md +0 -157
- package/node_modules/@serverless-stack/node/src/auth/index.ts +0 -24
- package/node_modules/@serverless-stack/node/src/config/index.ts +0 -120
- package/node_modules/@serverless-stack/node/src/graphql/index.ts +0 -96
- package/node_modules/@serverless-stack/node/tsconfig.json +0 -11
- package/node_modules/is-callable/.eslintignore +0 -1
- 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;
|