Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ReportNameValuePairs key to Report Type #40661

Merged
merged 16 commits into from
May 14, 2024
Merged
5 changes: 5 additions & 0 deletions src/types/onyx/Report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,11 @@ type Report = OnyxCommon.OnyxValueWithOfflineFeedback<

fieldList?: Record<string, PolicyReportField>;

/** The reports name value pairs */
reportNameValuePairs?: {
isArchived: boolean;
};

permissions?: Array<ValueOf<typeof CONST.REPORT.PERMISSIONS>>;
},
PolicyReportField['fieldID']
Expand Down
Loading