Skip to content

Commit

Permalink
Add features properties to policy
Browse files Browse the repository at this point in the history
  • Loading branch information
mountiny committed Feb 28, 2024
1 parent d9fea65 commit 0e3844d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/types/onyx/Policy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,24 @@ type Policy = OnyxCommon.OnyxValueWithOfflineFeedback<

/** All the integration connections attached to the policy */
connections?: Record<string, Connection>;

/** Whether the Categories feature is enabled */
areCategoriesEnabled?: boolean;

/** Whether the Tags feature is enabled */
areTagsEnabled?: boolean;

/** Whether the Distance Rates feature is enabled */
areDistanceRatessEnabled?: boolean;

/** Whether the workflows feature is enabled */
areWorkflowsEnabled?: boolean;

/** Whether the Report Fields feature is enabled */
areReportFieldsEnabled?: boolean;

/** Whether the Connections feature is enabled */
areConnectionsEnabled?: boolean;
},
'generalSettings' | 'addWorkspaceRoom'
>;
Expand Down

0 comments on commit 0e3844d

Please sign in to comment.