Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
1 change: 1 addition & 0 deletions src/identity-verification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<void> =>
Expand Down
Loading