Skip to content

Commit 28a6e5a

Browse files
committed
fix imports
1 parent 629b118 commit 28a6e5a

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

Diff for: packages/parser/src/envelopes/apigw.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import type { ZodSchema, z } from 'zod';
22
import { ParseError } from '../errors.js';
33
import { APIGatewayProxyEventSchema } from '../schemas/apigw.js';
4-
import type { ParsedResultSuccess } from '../types';
54
import { Envelope } from './envelope.js';
65

76
/**

Diff for: packages/parser/src/envelopes/apigwv2.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { ZodSchema, z } from 'zod';
22
import { ParseError } from '../errors.js';
33
import { APIGatewayProxyEventV2Schema } from '../schemas/apigwv2.js';
4-
import type { ParsedResult, ParsedResultSuccess } from '../types/index.js';
4+
import type { ParsedResult } from '../types/index.js';
55
import { Envelope } from './envelope.js';
66

77
/**

Diff for: packages/parser/src/envelopes/event-bridge.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { ZodSchema, z } from 'zod';
22
import { ParseError } from '../errors.js';
33
import { EventBridgeSchema } from '../schemas/index.js';
4-
import type { ParsedResult, ParsedResultSuccess } from '../types/index.js';
4+
import type { ParsedResult } from '../types/index.js';
55
import { Envelope } from './envelope.js';
66

77
/**

Diff for: packages/parser/src/envelopes/lambda.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { ZodSchema, z } from 'zod';
22
import { ParseError } from '../errors.js';
33
import { LambdaFunctionUrlSchema } from '../schemas/index.js';
4-
import type { ParsedResult, ParsedResultSuccess } from '../types/index.js';
4+
import type { ParsedResult } from '../types/index.js';
55
import { Envelope } from './envelope.js';
66

77
/**

Diff for: packages/parser/src/envelopes/vpc-lattice.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { ZodSchema, z } from 'zod';
22
import { ParseError } from '../errors.js';
33
import { VpcLatticeSchema } from '../schemas/index.js';
4-
import type { ParsedResult, ParsedResultSuccess } from '../types/index.js';
4+
import type { ParsedResult } from '../types/index.js';
55
import { Envelope } from './envelope.js';
66

77
/**

0 commit comments

Comments
 (0)