From b64c1213303525b86ee6179e1ff59416118e73c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E8=9C=9C?= Date: Wed, 2 Jul 2025 14:32:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=94=99=E8=AF=AF=E7=A0=81?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=EF=BC=8C=E5=A2=9E=E5=8A=A0=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E7=A0=81=E6=9E=9A=E4=B8=BE=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 李蜜 --- api/@ohos.userIAM.userAuth.d.ts | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/api/@ohos.userIAM.userAuth.d.ts b/api/@ohos.userIAM.userAuth.d.ts index 7002e6fc3e..373e6ed001 100644 --- a/api/@ohos.userIAM.userAuth.d.ts +++ b/api/@ohos.userIAM.userAuth.d.ts @@ -1929,6 +1929,15 @@ declare namespace userAuth { */ BUSY = 12500007, + /** + * Indicates that the paramter is out of range. + * + * @syscap SystemCapability.UserIAM.UserAuth.Core + * @atomicservice + * @since 20 + */ + INVALID_PARAMETERS = 12500008, + /** * Indicates that the authenticator is locked. * @@ -2001,7 +2010,16 @@ declare namespace userAuth { * @systemapi Hide this for inner system use. * @since 18 */ - AUTH_TOKEN_EXPIRED = 12500016 + AUTH_TOKEN_EXPIRED = 12500016, + + /** + * Indicates that reuse of last authentication result is failed. + * + * @syscap SystemCapability.UserIAM.UserAuth.Core + * @systemapi Hide this for inner system use. + * @since 20 + */ + REUSE_AUTH_RESULT_FAILED = 12500017 } /** @@ -2103,7 +2121,7 @@ declare namespace userAuth { * @throws { BusinessError } 201 - Permission verification failed. * @throws { BusinessError } 202 - The caller is not a system application. * @throws { BusinessError } 12500002 - General operation error. - * @throws { BusinessError } 12500008 - Parameter verification failed. + * @throws { BusinessError } 12500008 - The parameter is out of range. * @throws { BusinessError } 12500017 - Failed to reuse authentication result. * @syscap SystemCapability.UserIAM.UserAuth.Core * @systemapi Hide this for inner system use. -- Gitee