Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions src/types/onyx/Policy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1873,12 +1873,16 @@ 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;
/** Units configuration */
units?: {
/** Time tracking configuration */
time?: {
/** Whether time tracking is enabled */
enabled?: boolean;

/** Default hourly rate */
rate?: number;
};
};

/** A set of rules related to the workspace */
Expand Down
Loading