From 17778562f494a5245779ecb8fd051b4d0766c75e Mon Sep 17 00:00:00 2001 From: Stuart Long Chay Boon Date: Thu, 3 Nov 2022 00:55:44 +0800 Subject: [PATCH] [offers][feat] add jobtype to dashboard response --- apps/portal/src/types/offers.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/portal/src/types/offers.d.ts b/apps/portal/src/types/offers.d.ts index 7997452a..425d654d 100644 --- a/apps/portal/src/types/offers.d.ts +++ b/apps/portal/src/types/offers.d.ts @@ -126,6 +126,7 @@ export type User = { export type GetOffersResponse = { data: Array; + jobType: JobType; paging: Paging; };