We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 193cdeb commit 39fab8bCopy full SHA for 39fab8b
2 files changed
packages/issuer/lib/builder/DisplayBuilder.ts
@@ -21,7 +21,7 @@ export class DisplayBuilder {
21
22
withLogo(logo: ImageInfo) {
23
if (logo) {
24
- if (!logo.url) {
+ if (!logo.uri) {
25
throw Error(`logo without url will not work`)
26
}
27
packages/oid4vci-common/lib/types/Generic.types.ts
@@ -23,7 +23,7 @@ export type CredentialOfferMode = 'VALUE' | 'REFERENCE'
* Important Note: please be aware that these Common interfaces are based on versions v1_0.11 and v1_0.09
*/
export interface ImageInfo {
- url?: string
+ uri?: string
alt_text?: string
28
29
[key: string]: unknown
0 commit comments