File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @vesselapi/integrations" ,
3- "version" : " 1.0.16 " ,
3+ "version" : " 1.0.17 " ,
44 "description" : " Vessel integrations" ,
55 "main" : " dist/index.js" ,
66 "module" : " dist/index.mjs" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export default action(
1010 mutation : true ,
1111 schema : z . object ( {
1212 boardId : z . number ( ) ,
13- groupId : z . number ( ) . optional ( ) ,
13+ groupId : z . string ( ) . optional ( ) ,
1414 itemName : z . string ( ) ,
1515 columnValues : z . record ( z . union ( [ z . string ( ) , z . number ( ) ] ) ) ,
1616 } ) ,
Original file line number Diff line number Diff line change @@ -33,6 +33,10 @@ export const mondayBoardsRelationalFieldsSchema = {
3333 title : z . string ( ) ,
3434 type : z . string ( ) ,
3535 } ) ,
36+ groups : z . object ( {
37+ id : z . string ( ) ,
38+ title : z . string ( ) ,
39+ } ) ,
3640} ;
3741export const mondayBoardsRelationalFields = mapValues (
3842 mondayBoardsRelationalFieldsSchema ,
@@ -55,7 +59,7 @@ export const mondayBoardsListResponseSchema = z.object({
5559// -
5660export const mondayItemsCreateSchema = z . object ( {
5761 board_id : z . number ( ) ,
58- group_id : z . number ( ) . optional ( ) ,
62+ group_id : z . string ( ) . optional ( ) ,
5963 item_name : z . string ( ) ,
6064 column_values : z . record ( z . union ( [ z . string ( ) , z . number ( ) ] ) ) ,
6165} ) ;
You can’t perform that action at this time.
0 commit comments