diff --git a/api/@ohos.account.distributedAccount.d.ts b/api/@ohos.account.distributedAccount.d.ts index 330a3bd34159176dbf6faf97860ab04df69bd235..e06facd1d0ce8461d1a36d4fe6959f8b66bfce1b 100644 --- a/api/@ohos.account.distributedAccount.d.ts +++ b/api/@ohos.account.distributedAccount.d.ts @@ -19,6 +19,9 @@ */ import type { AsyncCallback } from './@ohos.base'; +/*** if arkts 1.2 */ +import type { RecordData } from './@ohos.base'; +/*** endif */ /** * This module provides the capability to manage distributed accounts. @@ -380,10 +383,19 @@ declare namespace distributedAccount { * * @type { ?object } * @syscap SystemCapability.Account.OsAccount - * @since arkts {'1.1':'8', '1.2':'20'} - * @arkts 1.1&1.2 + * @since 8 */ scalableData?: object; + + /** + * The scalable data in the distributed information of the OS account. + * + * @type { ?RecordData } + * @syscap SystemCapability.Account.OsAccount + * @since 20 + * @arkts 1.2 + */ + scalableData?: RecordData; } }