From 49c4fa022887335cba7aba21f37cbac705d93354 Mon Sep 17 00:00:00 2001 From: yangliu Date: Wed, 16 Mar 2022 09:50:46 +0800 Subject: [PATCH] modify schema and fieldNode api to api8 Signed-off-by: yangliu --- api/@ohos.data.distributedData.d.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/api/@ohos.data.distributedData.d.ts b/api/@ohos.data.distributedData.d.ts index 806d1c6f64..63e30013e2 100644 --- a/api/@ohos.data.distributedData.d.ts +++ b/api/@ohos.data.distributedData.d.ts @@ -579,7 +579,7 @@ declare namespace distributedData { securityLevel?: SecurityLevel; /** * Indicates schema object - * @since 9 + * @since 8 * @syscap SystemCapability.DistributedDataManager.KVStore.DistributedKVStore * @import N/A * @permission N/A @@ -610,7 +610,7 @@ declare namespace distributedData { * Indicates the root json object. * * @note N/A - * @since 9 + * @since 8 * @syscap SystemCapability.DistributedDataManager.KVStore.DistributedKVStore */ root: FieldNode; @@ -618,7 +618,7 @@ declare namespace distributedData { * Indicates the string array of json. * * @note N/A - * @since 9 + * @since 8 * @syscap SystemCapability.DistributedDataManager.KVStore.DistributedKVStore */ indexes: Array; @@ -626,7 +626,7 @@ declare namespace distributedData { * Indicates the mode of schema. * * @note N/A - * @since 9 + * @since 8 * @syscap SystemCapability.DistributedDataManager.KVStore.DistributedKVStore */ mode: number; @@ -634,7 +634,7 @@ declare namespace distributedData { * Indicates the skipsize of schema. * * @note N/A - * @since 9 + * @since 8 * @syscap SystemCapability.DistributedDataManager.KVStore.DistributedKVStore */ skip: number; @@ -680,7 +680,7 @@ declare namespace distributedData { * Indicates the default value of fieldnode. * * @note N/A - * @since 9 + * @since 8 * @syscap SystemCapability.DistributedDataManager.KVStore.DistributedKVStore */ default: string; @@ -688,7 +688,7 @@ declare namespace distributedData { * Indicates the nullable of database field. * * @note N/A - * @since 9 + * @since 8 * @syscap SystemCapability.DistributedDataManager.KVStore.DistributedKVStore */ nullable: boolean; @@ -696,7 +696,7 @@ declare namespace distributedData { * Indicates the type of value. * * @note N/A - * @since 9 + * @since 8 * @syscap SystemCapability.DistributedDataManager.KVStore.DistributedKVStore */ type: number; -- Gitee