File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ const AlbSchema = z.object({
82
82
} ) ;
83
83
84
84
/**
85
- * @deprecated Use `AlbSchema` instead, which handles both types of headers & querystring parameters.
85
+ * @deprecated Use { @link AlbSchema | `AlbSchema`} instead, which handles both types of headers & querystring parameters.
86
86
*
87
87
* This schema will be removed in a future major release.
88
88
*/
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ export type { Envelope } from './envelope.js';
9
9
10
10
export type {
11
11
ALBEvent ,
12
- ALBMultiValueHeadersEvent ,
13
12
APIGatewayEventRequestContext ,
14
13
APIGatewayProxyEvent ,
15
14
APIGatewayProxyEventV2 ,
Original file line number Diff line number Diff line change 1
1
import type { z } from 'zod' ;
2
2
import type {
3
- AlbMultiValueHeadersSchema ,
4
3
AlbSchema ,
5
4
APIGatewayEventRequestContextSchema ,
6
5
APIGatewayProxyEventSchema ,
@@ -53,8 +52,6 @@ import type {
53
52
54
53
type ALBEvent = z . infer < typeof AlbSchema > ;
55
54
56
- type ALBMultiValueHeadersEvent = z . infer < typeof AlbMultiValueHeadersSchema > ;
57
-
58
55
type APIGatewayProxyEvent = z . infer < typeof APIGatewayProxyEventSchema > ;
59
56
60
57
type APIGatewayRequestAuthorizerEvent = z . infer <
@@ -173,7 +170,6 @@ type VpcLatticeEventV2 = z.infer<typeof VpcLatticeV2Schema>;
173
170
174
171
export type {
175
172
ALBEvent ,
176
- ALBMultiValueHeadersEvent ,
177
173
APIGatewayEventRequestContext ,
178
174
APIGatewayProxyEvent ,
179
175
APIGatewayProxyEventV2 ,
You can’t perform that action at this time.
0 commit comments