From 9a18d599ab1ecd0938976148df8b76abc0c410da Mon Sep 17 00:00:00 2001 From: yamal Date: Tue, 14 Jul 2026 10:19:45 +0200 Subject: [PATCH] fix: update readme --- README.md | 1 + src/identity-verification.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 74a78e3..69ac3e7 100644 --- a/README.md +++ b/README.md @@ -2026,6 +2026,7 @@ verifyIdentity({orderId: '123456789AAA'}) and Mein O2) - `500`: Internal error (e.g., unexpected error thrown by identity verification SDK) +- `503`: Feature is disabled. - `505`: Identity verification flow is not supported on this device (Android < 9) diff --git a/src/identity-verification.ts b/src/identity-verification.ts index bed072e..3e0ecc8 100644 --- a/src/identity-verification.ts +++ b/src/identity-verification.ts @@ -9,6 +9,7 @@ import {postMessageToNativeApp} from './post-message'; * - 204: Flow was cancelled (e.g., closed manually by the user) * - 405: Feature not supported in current brand (only available in Mein Blau and Mein O2) * - 500: Internal error (e.g., unexpected error thrown by identity verification SDK) + * - 503: Feature is disabled. * - 505: Identity verification flow is not supported on this device (Android < 9) */ export const verifyIdentity = ({orderId}: {orderId: string}): Promise =>