refactor: also allow null as payload value
This commit is contained in:
parent
4fc88b9872
commit
1a255b6046
1 changed files with 3 additions and 3 deletions
|
|
@ -31,9 +31,9 @@ type WorkflowPayload = {
|
||||||
step: {
|
step: {
|
||||||
id?: string;
|
id?: string;
|
||||||
name: string;
|
name: string;
|
||||||
detail?: string;
|
detail?: string | null;
|
||||||
type?: string;
|
type?: string | null;
|
||||||
value?: string[];
|
value?: string[] | null;
|
||||||
responsiblePersonId?: string[];
|
responsiblePersonId?: string[];
|
||||||
}[];
|
}[];
|
||||||
registeredBranchId?: string;
|
registeredBranchId?: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue