From 606f7c894186036fe8792cbc91e31a8a4b79b4ce Mon Sep 17 00:00:00 2001 From: wangtiantian Date: Wed, 19 Jan 2022 10:12:22 +0800 Subject: [PATCH] bms add IntsallErrCode Signed-off-by: wangtiantian --- api/@ohos.bundle.d.ts | 6 +++++- api/bundle/bundleInfo.d.ts | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/api/@ohos.bundle.d.ts b/api/@ohos.bundle.d.ts index f279a2e915..687712b656 100644 --- a/api/@ohos.bundle.d.ts +++ b/api/@ohos.bundle.d.ts @@ -362,7 +362,11 @@ declare namespace bundle { /** * @since 8 */ - STATUS_FAILED_NO_SPACE_LEFT = 0x42 + STATUS_FAILED_NO_SPACE_LEFT = 0x42, + /** + * @since 8 + */ + STATUS_GRANT_REQUEST_PERMISSIONS_FAILED = 0x43 } /** diff --git a/api/bundle/bundleInfo.d.ts b/api/bundle/bundleInfo.d.ts index 09072dff6a..151d23f018 100644 --- a/api/bundle/bundleInfo.d.ts +++ b/api/bundle/bundleInfo.d.ts @@ -237,7 +237,7 @@ export interface BundleInfo { readonly entryInstallationFree: boolean; /** - * @default Indicates whether free installation of the entry is supported + * @default Indicates the grant status of required permissions * @since 8 * @SysCap SystemCapability.Appexecfwk */ -- Gitee