@mosip/react-inji-verify-sdk 0.16.0-beta.1 → 0.16.0-beta.3
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { OpenID4VPVerificationProps } from "./OpenID4VPVerification.types";
|
|
3
3
|
import "./OpenID4VPVerification.css";
|
|
4
|
+
export declare const isMobileDevice: () => boolean;
|
|
4
5
|
declare const OpenID4VPVerification: React.FC<OpenID4VPVerificationProps>;
|
|
5
6
|
export default OpenID4VPVerification;
|
|
@@ -144,6 +144,10 @@ export type OpenID4VPVerificationProps = ExclusivePresentationDefinition & Exclu
|
|
|
144
144
|
*/
|
|
145
145
|
onError: (error: AppError) => void;
|
|
146
146
|
};
|
|
147
|
+
export interface SessionState {
|
|
148
|
+
requestId: string;
|
|
149
|
+
transactionId: string;
|
|
150
|
+
}
|
|
147
151
|
export type AppError = {
|
|
148
152
|
errorMessage: string;
|
|
149
153
|
errorCode?: string;
|