fix: missing type
This commit is contained in:
parent
bf5d72a43d
commit
8918c8f2d6
1 changed files with 2 additions and 0 deletions
|
|
@ -33,6 +33,7 @@ type ServiceCreate = {
|
|||
attributes?: {
|
||||
[key: string]: any;
|
||||
};
|
||||
status?: Status;
|
||||
work?: {
|
||||
name: string;
|
||||
productId: string[];
|
||||
|
|
@ -46,6 +47,7 @@ type ServiceUpdate = {
|
|||
attributes?: {
|
||||
[key: string]: any;
|
||||
};
|
||||
status: "ACTIVE" | "INACTIVE";
|
||||
work?: {
|
||||
name: string;
|
||||
productId: string[];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue