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({
8282} ) ;
8383
8484/**
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.
8686 *
8787 * This schema will be removed in a future major release.
8888 */
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ export type { Envelope } from './envelope.js';
99
1010export type {
1111 ALBEvent ,
12- ALBMultiValueHeadersEvent ,
1312 APIGatewayEventRequestContext ,
1413 APIGatewayProxyEvent ,
1514 APIGatewayProxyEventV2 ,
Original file line number Diff line number Diff line change 11import type { z } from 'zod' ;
22import type {
3- AlbMultiValueHeadersSchema ,
43 AlbSchema ,
54 APIGatewayEventRequestContextSchema ,
65 APIGatewayProxyEventSchema ,
@@ -53,8 +52,6 @@ import type {
5352
5453type ALBEvent = z . infer < typeof AlbSchema > ;
5554
56- type ALBMultiValueHeadersEvent = z . infer < typeof AlbMultiValueHeadersSchema > ;
57-
5855type APIGatewayProxyEvent = z . infer < typeof APIGatewayProxyEventSchema > ;
5956
6057type APIGatewayRequestAuthorizerEvent = z . infer <
@@ -173,7 +170,6 @@ type VpcLatticeEventV2 = z.infer<typeof VpcLatticeV2Schema>;
173170
174171export type {
175172 ALBEvent ,
176- ALBMultiValueHeadersEvent ,
177173 APIGatewayEventRequestContext ,
178174 APIGatewayProxyEvent ,
179175 APIGatewayProxyEventV2 ,
You can’t perform that action at this time.
0 commit comments