[INJIMOB-1078] use credentialConfigurationId instead of credentialDefinition's type

To identify matching issuer metadata details exposed by wellknown of the VC, previously credentialDefinition's type was used now it is getting replaced by credentialConfigurationId (this holds the keyValues of credential_configrations_supported object)

Signed-off-by: KiruthikaJeyashankar <81218987+KiruthikaJeyashankar@users.noreply.github.com>
This commit is contained in:
KiruthikaJeyashankar
2024-09-13 15:30:27 +05:30
parent 7b0e48a3a8
commit 7e0d180b05
20 changed files with 122 additions and 126 deletions

View File

@@ -0,0 +1,6 @@
export class UnsupportedVcFormat extends Error {
constructor(format: string) {
super(format);
this.name = 'UnsupportedVcFormat';
}
}