diff --git a/packages/parser/src/schemas/alb.ts b/packages/parser/src/schemas/alb.ts index f22e53fcb..732cabc31 100644 --- a/packages/parser/src/schemas/alb.ts +++ b/packages/parser/src/schemas/alb.ts @@ -82,7 +82,7 @@ const AlbSchema = z.object({ }); /** - * @deprecated Use `AlbSchema` instead, which handles both types of headers & querystring parameters. + * @deprecated Use {@link AlbSchema | `AlbSchema`} instead, which handles both types of headers & querystring parameters. * * This schema will be removed in a future major release. */ diff --git a/packages/parser/src/types/index.ts b/packages/parser/src/types/index.ts index e111d0d5b..213e89691 100644 --- a/packages/parser/src/types/index.ts +++ b/packages/parser/src/types/index.ts @@ -9,7 +9,6 @@ export type { Envelope } from './envelope.js'; export type { ALBEvent, - ALBMultiValueHeadersEvent, APIGatewayEventRequestContext, APIGatewayProxyEvent, APIGatewayProxyEventV2, diff --git a/packages/parser/src/types/schema.ts b/packages/parser/src/types/schema.ts index 62d4172da..eec4e4488 100644 --- a/packages/parser/src/types/schema.ts +++ b/packages/parser/src/types/schema.ts @@ -1,6 +1,5 @@ import type { z } from 'zod'; import type { - AlbMultiValueHeadersSchema, AlbSchema, APIGatewayEventRequestContextSchema, APIGatewayProxyEventSchema, @@ -53,8 +52,6 @@ import type { type ALBEvent = z.infer; -type ALBMultiValueHeadersEvent = z.infer; - type APIGatewayProxyEvent = z.infer; type APIGatewayRequestAuthorizerEvent = z.infer< @@ -173,7 +170,6 @@ type VpcLatticeEventV2 = z.infer; export type { ALBEvent, - ALBMultiValueHeadersEvent, APIGatewayEventRequestContext, APIGatewayProxyEvent, APIGatewayProxyEventV2,