@mosip/react-inji-verify-sdk 0.17.0-beta.4 → 0.17.0-beta.7

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.
@@ -13,22 +13,6 @@ export interface VerificationResult {
13
13
  vcStatus: VerificationStatus;
14
14
  }
15
15
  export type VerificationResults = VerificationResult[];
16
- export interface QrData {
17
- transactionId: string;
18
- requestId: string;
19
- authorizationDetails?: {
20
- responseType: string;
21
- responseMode: string;
22
- clientId: string;
23
- presentationDefinition: Record<string, unknown>;
24
- presentationDefinitionUri?: string;
25
- responseUri: string;
26
- nonce: string;
27
- iat: number;
28
- };
29
- expiresAt: number;
30
- requestUri?: string;
31
- }
32
16
  export interface VPRequestBody {
33
17
  clientId: string;
34
18
  nonce: string;
@@ -97,20 +97,4 @@ export interface vcSubmissionBody {
97
97
  vc: any;
98
98
  transactionId?: string;
99
99
  }
100
- export interface QrData {
101
- transactionId: string;
102
- requestId: string;
103
- authorizationDetails?: {
104
- responseType: string;
105
- responseMode: string;
106
- clientId: string;
107
- presentationDefinition: Record<string, unknown>;
108
- presentationDefinitionUri?: string;
109
- responseUri: string;
110
- nonce: string;
111
- iat: number;
112
- };
113
- expiresAt: number;
114
- requestUri?: string;
115
- }
116
100
  export {};