@mosip/react-inji-verify-sdk 0.15.0-beta.9 → 0.16.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Readme.md CHANGED
@@ -227,7 +227,7 @@ presentationDefinition={{
227
227
  | `onVpProcessed` | function | - | Get full results immediately |
228
228
  | `onVpReceived` | function | - | Get transaction ID only |
229
229
  | `onQrCodeExpired` | function | - | Handle QR code expiration |
230
- | `isEnableSameDeviceFlow` | boolean | true | Enable same-device flow (optional) |
230
+ | `isSameDeviceFlowEnabled` | boolean | true | Enable same-device flow (optional) |
231
231
  | `qrCodeStyles` | object | - | Customize QR code appearance |
232
232
 
233
233
  ## ⚠️ Important Limitations
@@ -23,6 +23,7 @@ export interface QrData {
23
23
  requestId: string;
24
24
  authorizationDetails?: {
25
25
  responseType: string;
26
+ responseMode: string;
26
27
  clientId: string;
27
28
  presentationDefinition: Record<string, unknown>;
28
29
  presentationDefinitionUri?: string;
@@ -125,7 +126,7 @@ export type OpenID4VPVerificationProps = ExclusivePresentationDefinition & Exclu
125
126
  Indicates whether the same device flow is enabled.
126
127
  Defaults to true, allowing verification on the same device.
127
128
  */
128
- isEnableSameDeviceFlow?: boolean;
129
+ isSameDeviceFlowEnabled?: boolean;
129
130
  /**
130
131
 
131
132
  Styling options for the QR code.