Skip to content

Commit 7aadc68

Browse files
authored
chore: fix relative import regression (#3287)
1 parent c1080fb commit 7aadc68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: packages/parser/src/envelopes/apigw.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 { APIGatewayProxyEventSchema } from '../schemas/apigw.js';
4-
import type { ParsedResult } from '../types';
4+
import type { ParsedResult } from '../types/parser.js';
55
import { Envelope } from './envelope.js';
66

77
/**

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { ZodSchema, z } from 'zod';
22
import { ParseError } from '../errors.js';
3-
import type { ParsedResult } from '../types';
3+
import type { ParsedResult } from '../types/parser.js';
44

55
export const Envelope = {
66
/**

0 commit comments

Comments
 (0)