@types/serverless
Advanced tools
Comparing version 3.12.9 to 3.12.10
{ | ||
"name": "@types/serverless", | ||
"version": "3.12.9", | ||
"version": "3.12.10", | ||
"description": "TypeScript definitions for serverless", | ||
@@ -68,4 +68,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serverless", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "2d0db24d286c67affdd806a6bc3f476bff9826630673496a1d76e24f6fa08e54", | ||
"typeScriptVersion": "4.1" | ||
"typesPublisherContentHash": "390aedd55951d87bac550812408fef6136f5d639448ed9694dfe1716b75aac4b", | ||
"typeScriptVersion": "4.2" | ||
} |
@@ -68,3 +68,3 @@ import Serverless = require('../../../index'); | ||
endpointType?: 'regional' | 'edge' | 'private' | undefined; | ||
apiKeys?: string[] | undefined; | ||
apiKeys?: Array<ApiKey | string> | undefined; | ||
apiGateway?: ApiGateway | undefined; | ||
@@ -140,3 +140,3 @@ alb?: Alb | undefined; | ||
shouldStartNameWithService?: boolean | undefined; | ||
apiKeys?: string[] | undefined; | ||
apiKeys?: Array<ApiKey | string> | undefined; | ||
resourcePolicy?: ResourcePolicy[] | undefined; | ||
@@ -146,2 +146,10 @@ usagePlan?: UsagePlan | undefined; | ||
interface ApiKey { | ||
name: string; | ||
value: string; | ||
description?: string | undefined; | ||
customerId?: string | undefined; | ||
enabled?: boolean | undefined; | ||
} | ||
interface CognitoAuthorizer { | ||
@@ -148,0 +156,0 @@ type: 'cognito'; |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 15 Nov 2022 06:32:44 GMT | ||
* Last updated: Tue, 07 Feb 2023 14:32:35 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
39662
1000