From 2c5ca498a6ff21593c29af2867f4d8c01b00ad26 Mon Sep 17 00:00:00 2001 From: jidong Date: Fri, 16 Dec 2022 09:38:25 +0800 Subject: [PATCH] fixed c488704 from https://gitee.com/JiDong-CS/interface_sdk-js/pulls/3818 add USER_INFO_CHANGED common event Signed-off-by: jidong Change-Id: Ibdbb12fece1c4bde16fef1f3d71939254c2e7da9 --- api/@ohos.commonEventManager.d.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/api/@ohos.commonEventManager.d.ts b/api/@ohos.commonEventManager.d.ts index 1cafa28a65..adc357435a 100644 --- a/api/@ohos.commonEventManager.d.ts +++ b/api/@ohos.commonEventManager.d.ts @@ -984,7 +984,13 @@ declare namespace commonEventManager { * Indicate the result of quick fix apply. * This common event can be triggered only by system. */ - COMMON_EVENT_QUICK_FIX_APPLY_RESULT = "usual.event.QUICK_FIX_APPLY_RESULT" + COMMON_EVENT_QUICK_FIX_APPLY_RESULT = "usual.event.QUICK_FIX_APPLY_RESULT", + + /** + * Indicate the action of a common event that the user information has been updated. + * This common event can be triggered only by system. + */ + COMMON_EVENT_USER_INFO_UPDATED = "usual.event.USER_INFO_UPDATED" } } -- Gitee