File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff 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' ,
Original file line number Diff line number Diff 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
2829export 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
8082export type UserRegister = {
You can’t perform that action at this time.
0 commit comments