@injistack/react-inji-verify-sdk 0.18.0-beta.27 → 0.18.0-beta.29

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.
@@ -153,7 +153,7 @@ export type OpenID4VPVerificationProps = ExclusivePresentationDefinition & Exclu
153
153
  * - Expiry validation
154
154
  * - Status checks (e.g., revocation)
155
155
  */
156
- vpVerificationV2Request?: VPVerificationV2Request;
156
+ vpVerificationRequest?: VPVerificationRequest;
157
157
  summariseResults?: boolean;
158
158
  };
159
159
  export interface SessionState {
@@ -164,7 +164,7 @@ export type AppError = {
164
164
  errorCode?: string;
165
165
  transactionId?: string | null;
166
166
  };
167
- export interface VPVerificationV2Request {
167
+ export interface VPVerificationRequest {
168
168
  skipStatusChecks?: boolean;
169
169
  statusCheckFilters?: string[];
170
170
  includeClaims?: boolean;
@@ -20,7 +20,8 @@ type ExclusiveCallbacks =
20
20
  export type QRCodeVerificationProps = ExclusiveCallbacks & {
21
21
  /**
22
22
  * React element that triggers the verification process (e.g., a button).
23
- * If not provided, the component may automatically start the process.
23
+ * When set, the default file upload control is not shown; upload runs via this trigger.
24
+ * If omitted, the visible file input is shown (when upload is enabled).
24
25
  */
25
26
  triggerElement?: React.ReactNode;
26
27
  /**