@injistack/react-inji-verify-sdk 0.18.0-beta.28 → 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.
package/dist/utils/api.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PresentationDefinition,
|
|
1
|
+
import { PresentationDefinition, VPVerificationRequest } from "../components/openid4vp-verification/OpenID4VPVerification.types";
|
|
2
2
|
import { VCVerificationV2Request, VCVerificationV2Response } from "../components/qrcode-verification/QRCodeVerification.types";
|
|
3
3
|
import { QrData } from "../types/OVPSchemeQrData";
|
|
4
4
|
export declare const vcVerificationV2: (credential: unknown, url: string, config?: VCVerificationV2Request) => Promise<VCVerificationV2Response>;
|
|
@@ -12,4 +12,4 @@ export declare const vpSessionRequest: (url: string, clientId: string, txnId?: s
|
|
|
12
12
|
* This is the primary endpoint used by UI/SDK to fetch VP (and VC submission)
|
|
13
13
|
* verification results for a session bound via the `transaction_id` HttpOnly cookie.
|
|
14
14
|
*/
|
|
15
|
-
export declare const vpSessionResults: (url: string, responseCode?: string | null, config?:
|
|
15
|
+
export declare const vpSessionResults: (url: string, responseCode?: string | null, config?: VPVerificationRequest) => Promise<any>;
|
package/package.json
CHANGED