From 3f7efe2df81026dc8c554eaaf22f45b265c29ebc Mon Sep 17 00:00:00 2001 From: Hideaki Matsunami Date: Thu, 6 Jul 2023 05:43:04 +0900 Subject: [PATCH] types: Add 'id' to AppExpandLevel (#23813) Added properties that were omitted from the implementation. ref: https://github.com/mattermost/mattermost/issues/23512 Co-authored-by: Mattermost Build --- webapp/platform/types/src/apps.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webapp/platform/types/src/apps.ts b/webapp/platform/types/src/apps.ts index 7ff3c8afd5..f273be012d 100644 --- a/webapp/platform/types/src/apps.ts +++ b/webapp/platform/types/src/apps.ts @@ -141,7 +141,8 @@ export type AppExpandLevel = '' | 'summary' | '+summary' | 'all' -| '+all'; +| '+all' +| 'id'; export type AppExpand = { app?: AppExpandLevel;