@mattrglobal/verifier-sdk-web 2.0.3-unstable.47 → 2.0.3-unstable.48

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.
@@ -1713,13 +1713,16 @@
1713
1713
  return urlParams.get(param);
1714
1714
  };
1715
1715
  const createSession = async ({credentialQuery: credentialQuery, challenge: challenge, redirectUri: redirectUri, apiBaseUrl: apiBaseUrl, walletProviderId: walletProviderId, dcApiSupported: dcApiSupported, applicationId: applicationId}) => {
1716
+ const openid4VpConfiguration = !!walletProviderId || !!redirectUri ? {
1717
+ redirectUri: redirectUri,
1718
+ walletProviderId: walletProviderId
1719
+ } : undefined;
1716
1720
  const postData = {
1717
1721
  credentialQuery: credentialQuery,
1718
1722
  challenge: challenge,
1719
1723
  applicationId: applicationId,
1720
- redirectUri: redirectUri,
1721
- walletProviderId: walletProviderId,
1722
- dcApiSupported: dcApiSupported
1724
+ dcApiSupported: dcApiSupported,
1725
+ openid4VpConfiguration: openid4VpConfiguration
1723
1726
  };
1724
1727
  const responseResult = await safeFetch(`${apiBaseUrl}/v2/presentations/web/sessions`, {
1725
1728
  method: "POST",