@mosip/react-inji-verify-sdk 0.15.0-beta.2 → 0.15.0-beta.21

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.
@@ -17,3 +17,4 @@ export declare const ScanSessionExpiryTime = 60000;
17
17
  export declare const OvpQrHeader = "INJI_OVP://";
18
18
  export declare const BASE64_PADDING = "==";
19
19
  export declare const acceptedFileTypes: string;
20
+ export declare const VALID_SD_JWT_TYPES: Set<string>;
@@ -1,4 +1,2 @@
1
1
  export declare const decodeQrData: (qrData: any) => Promise<any>;
2
2
  export declare const extractRedirectUrlFromQrData: (qrData: string) => string | null;
3
- export declare const initiateOvpFlow: (redirectUri: string) => void;
4
- export declare const handleOvpFlow: (qrData: string) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const isSdJwt: (vpToken: string) => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mosip/react-inji-verify-sdk",
3
- "version": "0.15.0-beta.2",
3
+ "version": "0.15.0-beta.21",
4
4
  "description": "A react component library to perform Inji verify tasks, such as OpenId4VP sharing, Reading VC QR codes",
5
5
  "sideEffects": ["*.css"],
6
6
  "main": "dist/index.js",
@@ -1,13 +0,0 @@
1
- import "./WalletSelectionModal.css";
2
- import React from "react";
3
- import { Wallet } from "../openid4vp-verification/OpenID4VPVerification.types";
4
- interface WalletSelectionModalProps {
5
- isOpen: boolean;
6
- wallets: Wallet[];
7
- selectedWallet: Wallet | null;
8
- onSelect: (wallet: Wallet | null) => void;
9
- onCancel: () => void;
10
- onProceed: () => void;
11
- }
12
- declare const WalletSelectionModal: React.FC<WalletSelectionModalProps>;
13
- export default WalletSelectionModal;