refactor: add type messnger by area

This commit is contained in:
Thanaphon Frappet 2024-12-26 11:09:25 +07:00
parent 532153ef34
commit ffee1b4b99

View file

@ -12,6 +12,7 @@ export type WorkflowStep = {
name: string;
detail?: string;
type: string | null;
messengerByArea?: boolean;
// NOTE: for list like type only
value: string[];
@ -73,4 +74,5 @@ export type WorkFlowPayloadStep = {
responsiblePersonId?: string[];
responsibleInstitution?: string[];
attributes: WorkFlowAttributes;
messengerByArea?: boolean;
};