@injistack/react-inji-verify-sdk 0.19.0-beta.7 → 0.19.0-beta.9
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.
|
@@ -103,7 +103,6 @@ export interface VPRequestBody {
|
|
|
103
103
|
clientId: string;
|
|
104
104
|
nonce: string;
|
|
105
105
|
transactionId?: string;
|
|
106
|
-
acceptVPWithoutHolderProof?: boolean;
|
|
107
106
|
dcqlQuery: DcqlQuery;
|
|
108
107
|
/**
|
|
109
108
|
* When true, the verifier backend will generate a short-lived single-use `response_code`
|
|
@@ -182,11 +181,6 @@ export type OpenID4VPVerificationProps = ExclusiveCallbacks & {
|
|
|
182
181
|
* This is a required field to ensure proper error handling.
|
|
183
182
|
*/
|
|
184
183
|
onError: (error: AppError) => void;
|
|
185
|
-
/**
|
|
186
|
-
Indicates whether to accept VP submissions without holder proof.
|
|
187
|
-
When true, allows unsigned VPs (VPs without proof).
|
|
188
|
-
*/
|
|
189
|
-
acceptVPWithoutHolderProof?: boolean;
|
|
190
184
|
/**
|
|
191
185
|
The base URL of the wallet.
|
|
192
186
|
*/
|
|
@@ -78,11 +78,6 @@ export type QRCodeVerificationProps = ExclusiveCallbacks & {
|
|
|
78
78
|
* Defaults to false.
|
|
79
79
|
*/
|
|
80
80
|
isVPSubmissionSupported?: boolean;
|
|
81
|
-
/**
|
|
82
|
-
Indicates whether to accept VP submissions without holder proof.
|
|
83
|
-
When true, allows unsigned VPs (VPs without proof).
|
|
84
|
-
*/
|
|
85
|
-
acceptVPWithoutHolderProof?: boolean;
|
|
86
81
|
/**
|
|
87
82
|
* Configuration object used to control VC verification behaviour.
|
|
88
83
|
*
|