Skip to content

Commit 872db3a

Browse files
committed
Update schema
1 parent ae77f3d commit 872db3a

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

packages/cma-client/src/generated/SchemaTypes.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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
/**

packages/cma-client/src/generated/SimpleSchemaTypes.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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
};

0 commit comments

Comments
 (0)