diff --git a/src/types/onyx/ReportAction.ts b/src/types/onyx/ReportAction.ts index 5f0072959917..ec505a7e8d07 100644 --- a/src/types/onyx/ReportAction.ts +++ b/src/types/onyx/ReportAction.ts @@ -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 */ diff --git a/tsconfig.json b/tsconfig.json index d138ce81e36c..0c88512b9749 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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/**/*"] }