Skip to content

Commit 17fe3b0

Browse files
🎨 Auto format and update with pre-commit
1 parent 51a5772 commit 17fe3b0

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

frontend/src/client/schemas.gen.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,18 @@ export const ItemPublicSchema = {
126126
type: 'string',
127127
format: 'uuid',
128128
title: 'Owner Id'
129+
},
130+
created_at: {
131+
anyOf: [
132+
{
133+
type: 'string',
134+
format: 'date-time'
135+
},
136+
{
137+
type: 'null'
138+
}
139+
],
140+
title: 'Created At'
129141
}
130142
},
131143
type: 'object',
@@ -352,6 +364,18 @@ export const UserPublicSchema = {
352364
type: 'string',
353365
format: 'uuid',
354366
title: 'Id'
367+
},
368+
created_at: {
369+
anyOf: [
370+
{
371+
type: 'string',
372+
format: 'date-time'
373+
},
374+
{
375+
type: 'null'
376+
}
377+
],
378+
title: 'Created At'
355379
}
356380
},
357381
type: 'object',

frontend/src/client/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export type ItemPublic = {
2323
description?: (string | null);
2424
id: string;
2525
owner_id: string;
26+
created_at?: (string | null);
2627
};
2728

2829
export type ItemsPublic = {
@@ -75,6 +76,7 @@ export type UserPublic = {
7576
is_superuser?: boolean;
7677
full_name?: (string | null);
7778
id: string;
79+
created_at?: (string | null);
7880
};
7981

8082
export type UserRegister = {

0 commit comments

Comments
 (0)