@sphereon/ssi-sdk.oid4vci-holder 0.36.1-feature.fides.fixes.119 → 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.cjs
CHANGED
|
@@ -1440,8 +1440,8 @@ var oid4vciCredentialLocaleBrandingFrom = /* @__PURE__ */ __name(async (args) =>
|
|
|
1440
1440
|
},
|
|
1441
1441
|
...credentialDisplay.logo && {
|
|
1442
1442
|
logo: {
|
|
1443
|
-
...(credentialDisplay.logo.
|
|
1444
|
-
uri: credentialDisplay.logo?.
|
|
1443
|
+
...(credentialDisplay.logo.uri || credentialDisplay.logo.uri) && {
|
|
1444
|
+
uri: credentialDisplay.logo?.uri ?? credentialDisplay.logo.uri
|
|
1445
1445
|
},
|
|
1446
1446
|
...credentialDisplay.logo.alt_text && {
|
|
1447
1447
|
alt: credentialDisplay.logo?.alt_text
|
|
@@ -1460,8 +1460,8 @@ var oid4vciCredentialLocaleBrandingFrom = /* @__PURE__ */ __name(async (args) =>
|
|
|
1460
1460
|
background: {
|
|
1461
1461
|
...credentialDisplay.background_image && {
|
|
1462
1462
|
image: {
|
|
1463
|
-
...(credentialDisplay.background_image.
|
|
1464
|
-
uri: credentialDisplay.background_image?.
|
|
1463
|
+
...(credentialDisplay.background_image.uri || credentialDisplay.background_image.uri) && {
|
|
1464
|
+
uri: credentialDisplay.background_image?.uri ?? credentialDisplay.background_image.uri
|
|
1465
1465
|
},
|
|
1466
1466
|
...credentialDisplay.background_image.alt_text && {
|
|
1467
1467
|
alt: credentialDisplay.background_image?.alt_text
|
|
@@ -1607,8 +1607,8 @@ var issuerLocaleBrandingFrom = /* @__PURE__ */ __name(async (args) => {
|
|
|
1607
1607
|
...dynamicRegistrationClientMetadata?.logo_uri && {
|
|
1608
1608
|
uri: dynamicRegistrationClientMetadata?.logo_uri
|
|
1609
1609
|
},
|
|
1610
|
-
...(issuerDisplay.logo?.
|
|
1611
|
-
uri: issuerDisplay.logo?.
|
|
1610
|
+
...(issuerDisplay.logo?.uri || issuerDisplay.logo?.uri) && {
|
|
1611
|
+
uri: issuerDisplay.logo?.uri ?? issuerDisplay.logo?.uri
|
|
1612
1612
|
},
|
|
1613
1613
|
...issuerDisplay.logo?.alt_text && {
|
|
1614
1614
|
alt: issuerDisplay.logo?.alt_text
|