Skip to content

Commit 8fc8c80

Browse files
🎨 Auto format and update with pre-commit
1 parent c71de8e commit 8fc8c80

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

frontend/src/client/schemas.gen.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,13 @@ export const ValidationErrorSchema = {
544544
type: {
545545
type: 'string',
546546
title: 'Error Type'
547+
},
548+
input: {
549+
title: 'Input'
550+
},
551+
ctx: {
552+
type: 'object',
553+
title: 'Context'
547554
}
548555
},
549556
type: 'object',

frontend/src/client/types.gen.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ export type ValidationError = {
107107
loc: Array<(string | number)>;
108108
msg: string;
109109
type: string;
110+
input?: unknown;
111+
ctx?: {
112+
[key: string]: unknown;
113+
};
110114
};
111115

112116
export type ItemsReadItemsData = {

0 commit comments

Comments
 (0)