From 42197e5d291737341258a7b00a314a5632720d83 Mon Sep 17 00:00:00 2001 From: Ankita Kinger Date: Mon, 6 Nov 2023 16:32:56 +0530 Subject: [PATCH] chore: Update BaseAction type to include 2 more optional keys (#28660) ## Description Update BaseAction type to include 2 more optional keys #### PR fixes following issue(s) Fixes # (issue number) #### Type of change - Chore (housekeeping or task changes that don't impact user perception) ## Testing #### How Has This Been Tested? - [x] Manual - [ ] JUnit - [ ] Jest - [ ] Cypress ## Checklist: #### Dev activity - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] PR is being merged under a feature flag #### QA activity: - [ ] [Speedbreak features](https://github.com/appsmithorg/TestSmith/wiki/Guidelines-for-test-plans#speedbreakers-) have been covered - [ ] Test plan covers all impacted features and [areas of interest](https://github.com/appsmithorg/TestSmith/wiki/Guidelines-for-test-plans#areas-of-interest-) - [ ] Test plan has been peer reviewed by project stakeholders and other QA members - [ ] Manually tested functionality on DP - [ ] We had an implementation alignment call with stakeholders post QA Round 2 - [ ] Cypress test cases have been added and approved by SDET/manual QA - [ ] Added `Test Plan Approved` label after Cypress tests were reviewed - [ ] Added `Test Plan Approved` label after JUnit tests were reviewed --- app/client/src/entities/Action/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/client/src/entities/Action/index.ts b/app/client/src/entities/Action/index.ts index 127e6563b5..adbb2b09e6 100644 --- a/app/client/src/entities/Action/index.ts +++ b/app/client/src/entities/Action/index.ts @@ -157,6 +157,8 @@ export interface BaseAction { messages: string[]; userPermissions?: string[]; errorReports?: Array; + isPublic?: boolean; + moduleId?: string; } interface BaseApiAction extends BaseAction {