diff --git a/src/stores/institution/types.ts b/src/stores/institution/types.ts index 2282aade..7bd6287f 100644 --- a/src/stores/institution/types.ts +++ b/src/stores/institution/types.ts @@ -1,4 +1,5 @@ import { District, Province, SubDistrict } from '../address'; +import { Status } from '../types'; export type Institution = { id: string; @@ -23,6 +24,7 @@ export type Institution = { subDistrictId: string; districtId: string; provinceId: string; + status: Status; }; export type InstitutionPayload = { @@ -44,4 +46,5 @@ export type InstitutionPayload = { subDistrictId: string; districtId: string; provinceId: string; + status?: Status; };