Skip to content

Commit

Permalink
Merge pull request #26236 from Expensify/Rory-AddPreviousReportAction…
Browse files Browse the repository at this point in the history
…IDToOnyx

[No QA] Add previousReportActionID to reportAction type
  • Loading branch information
roryabraham authored Sep 21, 2023
2 parents bb84ee1 + f713993 commit f04a569
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/types/onyx/ReportAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ type ReportActionBase = {
/** The ID of the reportAction. It is the string representation of the a 64-bit integer. */
reportActionID?: string;

/** The ID of the previous reportAction on the report. It is a string represenation of a 64-bit integer (or null for CREATED actions). */
previousReportActionID?: string;

actorAccountID?: number;

/** Person who created the action */
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"skipLibCheck": true,
"incremental": true
},
"exclude": ["**/node_modules/*", "**/dist/*", ".github/actions/**/index.js"],
"exclude": ["**/node_modules/*", "**/dist/*", ".github/actions/**/index.js", "**/docs/*"],
"include": ["src", "desktop", "web", "docs", "assets", "config", "tests", "jest", "__mocks__", ".github/**/*", ".storybook/**/*"]
}

0 comments on commit f04a569

Please sign in to comment.