Skip to content

Commit caefc34

Browse files
Add Serverless definitions for v3.23.0
1 parent ef31dff commit caefc34

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

index.d.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,7 @@ export interface AWS {
370370
bootstrapServers: string[];
371371
startingPosition?: "LATEST" | "TRIM_HORIZON";
372372
topic: string;
373+
consumerGroupId?: string;
373374
};
374375
}
375376
| {
@@ -402,6 +403,7 @@ export interface AWS {
402403
startingPosition?: "LATEST" | "TRIM_HORIZON";
403404
topic: string;
404405
saslScram512?: AwsArnString;
406+
consumerGroupId?: string;
405407
};
406408
}
407409
| {
@@ -561,6 +563,22 @@ export interface AWS {
561563
TrustedSigners?: string[];
562564
ViewerProtocolPolicy?: "allow-all" | "redirect-to-https" | "https-only";
563565
TrustedKeyGroups?: (string | AwsCfRef)[];
566+
MaxTTL?: number;
567+
MinTTL?: number;
568+
DefaultTTL?: number;
569+
ForwardedValues?: {
570+
Cookies?:
571+
| {
572+
Forward: "all" | "none";
573+
}
574+
| {
575+
Forward: "whitelist";
576+
WhitelistedNames: string[];
577+
};
578+
Headers?: string[];
579+
QueryString: boolean;
580+
QueryStringCacheKeys?: string[];
581+
};
564582
};
565583
cachePolicy?:
566584
| {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@serverless/typescript",
3-
"version": "3.22.0",
3+
"version": "3.23.0",
44
"description": "Serverless typescript definitions",
55
"main": "index.d.ts",
66
"scripts": {

0 commit comments

Comments
 (0)