Skip to content

Commit a59db36

Browse files
authored
chore(parser): remove deprecated parser type (#4154)
1 parent 6dd18a0 commit a59db36

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

packages/parser/src/schemas/alb.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
*/

packages/parser/src/types/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export type { Envelope } from './envelope.js';
99

1010
export type {
1111
ALBEvent,
12-
ALBMultiValueHeadersEvent,
1312
APIGatewayEventRequestContext,
1413
APIGatewayProxyEvent,
1514
APIGatewayProxyEventV2,

packages/parser/src/types/schema.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import type { z } from 'zod';
22
import type {
3-
AlbMultiValueHeadersSchema,
43
AlbSchema,
54
APIGatewayEventRequestContextSchema,
65
APIGatewayProxyEventSchema,
@@ -53,8 +52,6 @@ import type {
5352

5453
type ALBEvent = z.infer<typeof AlbSchema>;
5554

56-
type ALBMultiValueHeadersEvent = z.infer<typeof AlbMultiValueHeadersSchema>;
57-
5855
type APIGatewayProxyEvent = z.infer<typeof APIGatewayProxyEventSchema>;
5956

6057
type APIGatewayRequestAuthorizerEvent = z.infer<
@@ -173,7 +170,6 @@ type VpcLatticeEventV2 = z.infer<typeof VpcLatticeV2Schema>;
173170

174171
export type {
175172
ALBEvent,
176-
ALBMultiValueHeadersEvent,
177173
APIGatewayEventRequestContext,
178174
APIGatewayProxyEvent,
179175
APIGatewayProxyEventV2,

0 commit comments

Comments
 (0)