From 1ae9296b082bf8e5bff85d79db7bd2205e8573e0 Mon Sep 17 00:00:00 2001 From: Georgia Monahan Date: Mon, 8 Dec 2025 18:23:21 +0000 Subject: [PATCH] Add time to Policy Object --- src/types/onyx/Policy.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/types/onyx/Policy.ts b/src/types/onyx/Policy.ts index 8abd836c2147..9c228ec0ac68 100644 --- a/src/types/onyx/Policy.ts +++ b/src/types/onyx/Policy.ts @@ -1870,6 +1870,14 @@ type Policy = OnyxCommon.OnyxValueWithOfflineFeedback< /** Collection of tax rates attached to a policy */ taxRates?: TaxRatesWithDefault; + /** Time tracking configuration */ + time?: { + /** Whether time tracking is enabled */ + enabled?: boolean; + /** Default hourly rate */ + rate?: number; + }; + /** A set of rules related to the workspace */ rules?: { /** A set of rules related to the workspace approvals */