feat: add workflow to service

This commit is contained in:
Methapon Metanipat 2024-10-10 12:03:40 +07:00
parent a583e6a3ce
commit a06be541a8
3 changed files with 12 additions and 0 deletions

View file

@ -54,6 +54,7 @@ type ServiceCreate = {
[key: string]: any;
};
status?: Status;
workflowId?: string;
work?: {
name: string;
productId: string[];
@ -71,6 +72,7 @@ type ServiceUpdate = {
[key: string]: any;
};
status?: "ACTIVE" | "INACTIVE";
workflowId?: string;
work?: {
name: string;
productId: string[];