File tree Expand file tree Collapse file tree
packages/cma-client/src/generated Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7305,6 +7305,10 @@ export type ItemMeta = {
73057305 * Workflow stage in which the item is
73067306 */
73077307 stage : null | string ;
7308+ /**
7309+ * When the records can be organized in a tree, indicates whether the record has children
7310+ */
7311+ has_children : null | boolean ;
73087312} ;
73097313
73107314/**
@@ -7562,6 +7566,10 @@ export type ItemUpdateSchema = {
75627566 * The new stage to move the record to
75637567 */
75647568 stage ?: string | null ;
7569+ /**
7570+ * Whether the record has children or not
7571+ */
7572+ has_children ?: null | boolean ;
75657573 } ;
75667574 relationships ?: {
75677575 /**
Original file line number Diff line number Diff line change @@ -7464,6 +7464,10 @@ export type ItemMeta = {
74647464 * Workflow stage in which the item is
74657465 */
74667466 stage : null | string ;
7467+ /**
7468+ * When the records can be organized in a tree, indicates whether the record has children
7469+ */
7470+ has_children : null | boolean ;
74677471} ;
74687472
74697473/**
@@ -7653,6 +7657,10 @@ export type ItemUpdateSchema = {
76537657 * The new stage to move the record to
76547658 */
76557659 stage ?: string | null ;
7660+ /**
7661+ * Whether the record has children or not
7662+ */
7663+ has_children ?: null | boolean ;
76567664 } ;
76577665 [ k : string ] : unknown ;
76587666} ;
You can’t perform that action at this time.
0 commit comments