File tree Expand file tree Collapse file tree
apps/web-app/shared/services Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export type Resolution = typeof resolutionSchema.infer
55
66export const createTaskSchema = type ( {
77 name : type ( '2 <= string <= 150' ) . describe ( 'error.length.invalid' ) ,
8- description : type ( 'string <= 500 | undefined' ) . describe ( 'error.length.invalid' ) . optional ( ) ,
8+ description : type ( 'string <= 2000 | undefined' ) . describe ( 'error.length.invalid' ) . optional ( ) ,
99 performerId : type ( 'string | undefined | null' ) . describe ( 'error.length.invalid' ) . optional ( ) ,
1010 date : type ( 'string | undefined | null' ) . describe ( 'error.length.invalid' ) . optional ( ) ,
1111 listId : type ( 'string' ) . describe ( 'error.length.invalid' ) ,
@@ -14,7 +14,7 @@ export type CreateTask = typeof createTaskSchema.infer
1414
1515export const updateTaskSchema = type ( {
1616 name : type ( '2 <= string <= 150' ) . describe ( 'error.length.invalid' ) . optional ( ) ,
17- description : type ( 'string <= 500 | undefined' ) . describe ( 'error.length.invalid' ) . optional ( ) ,
17+ description : type ( 'string <= 2000 | undefined' ) . describe ( 'error.length.invalid' ) . optional ( ) ,
1818 performerId : type ( 'string | undefined | null' ) . describe ( 'error.length.invalid' ) . optional ( ) ,
1919 date : type ( 'string | undefined | null' ) . describe ( 'error.length.invalid' ) . optional ( ) ,
2020 listId : type ( 'string | undefined' ) . describe ( 'error.length.invalid' ) . optional ( ) ,
You can’t perform that action at this time.
0 commit comments