@sphereon/ssi-sdk.oid4vci-holder 0.36.1-feature.fides.fixes.117 → 0.36.1-feature.fides.fixes.129
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/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +23 -23
- package/src/mappers/OIDC4VCIBrandingMapper.ts +6 -6
package/dist/index.js
CHANGED
|
@@ -1360,8 +1360,8 @@ var oid4vciCredentialLocaleBrandingFrom = /* @__PURE__ */ __name(async (args) =>
|
|
|
1360
1360
|
},
|
|
1361
1361
|
...credentialDisplay.logo && {
|
|
1362
1362
|
logo: {
|
|
1363
|
-
...(credentialDisplay.logo.
|
|
1364
|
-
uri: credentialDisplay.logo?.
|
|
1363
|
+
...(credentialDisplay.logo.uri || credentialDisplay.logo.uri) && {
|
|
1364
|
+
uri: credentialDisplay.logo?.uri ?? credentialDisplay.logo.uri
|
|
1365
1365
|
},
|
|
1366
1366
|
...credentialDisplay.logo.alt_text && {
|
|
1367
1367
|
alt: credentialDisplay.logo?.alt_text
|
|
@@ -1380,8 +1380,8 @@ var oid4vciCredentialLocaleBrandingFrom = /* @__PURE__ */ __name(async (args) =>
|
|
|
1380
1380
|
background: {
|
|
1381
1381
|
...credentialDisplay.background_image && {
|
|
1382
1382
|
image: {
|
|
1383
|
-
...(credentialDisplay.background_image.
|
|
1384
|
-
uri: credentialDisplay.background_image?.
|
|
1383
|
+
...(credentialDisplay.background_image.uri || credentialDisplay.background_image.uri) && {
|
|
1384
|
+
uri: credentialDisplay.background_image?.uri ?? credentialDisplay.background_image.uri
|
|
1385
1385
|
},
|
|
1386
1386
|
...credentialDisplay.background_image.alt_text && {
|
|
1387
1387
|
alt: credentialDisplay.background_image?.alt_text
|
|
@@ -1527,8 +1527,8 @@ var issuerLocaleBrandingFrom = /* @__PURE__ */ __name(async (args) => {
|
|
|
1527
1527
|
...dynamicRegistrationClientMetadata?.logo_uri && {
|
|
1528
1528
|
uri: dynamicRegistrationClientMetadata?.logo_uri
|
|
1529
1529
|
},
|
|
1530
|
-
...(issuerDisplay.logo?.
|
|
1531
|
-
uri: issuerDisplay.logo?.
|
|
1530
|
+
...(issuerDisplay.logo?.uri || issuerDisplay.logo?.uri) && {
|
|
1531
|
+
uri: issuerDisplay.logo?.uri ?? issuerDisplay.logo?.uri
|
|
1532
1532
|
},
|
|
1533
1533
|
...issuerDisplay.logo?.alt_text && {
|
|
1534
1534
|
alt: issuerDisplay.logo?.alt_text
|