Skip to content

Commit f105b8f

Browse files
committed
Fix for wrong type
1 parent c6b662b commit f105b8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/v3/schemas/query.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const QueryExecuteJSONResponseBody = z.object({
2525
results: z.array(z.record(z.any())),
2626
});
2727

28-
export type QueryExecuteJSONResponseBody = z.infer<typeof QueryExecuteResponseBody>;
28+
export type QueryExecuteJSONResponseBody = z.infer<typeof QueryExecuteJSONResponseBody>;
2929

3030
/**
3131
* Response body type for CSV format queries

0 commit comments

Comments
 (0)