From 0b4002a73a5a8bbb192c2602f903309c364c27e8 Mon Sep 17 00:00:00 2001 From: Stuart Long Chay Boon Date: Thu, 3 Nov 2022 00:40:07 +0800 Subject: [PATCH] [offers][feat] add bbs to DashboardOffer type --- apps/portal/src/types/offers.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/portal/src/types/offers.d.ts b/apps/portal/src/types/offers.d.ts index 3dcba938..cd459016 100644 --- a/apps/portal/src/types/offers.d.ts +++ b/apps/portal/src/types/offers.d.ts @@ -65,11 +65,14 @@ export type SpecificYoe = { }; export type DashboardOffer = { + baseSalary?: Valuation?; + bonus?: Valuation?; company: OffersCompany; id: string; income: Valuation; monthYearReceived: Date; profileId: string; + stocks?: Valuation?; title: string; totalYoe: number; };