We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03598ef commit 735e56dCopy full SHA for 735e56d
1 file changed
packages/client/lib/OpenID4VCIClient.ts
@@ -24,6 +24,13 @@ import {
24
toAuthorizationResponsePayload,
25
} from '@sphereon/oid4vci-common';
26
import { CredentialFormat } from '@sphereon/ssi-types';
27
+import { jwk } from '@transmute/did-key.js'
28
+import * as console from 'console'
29
30
31
32
33
+import debug from 'debug'
34
import Debug from 'debug';
35
36
import { AccessTokenClient } from './AccessTokenClient';
@@ -487,6 +494,11 @@ export class OpenID4VCIClient {
487
494
return this._alg;
488
495
}
489
496
497
+
498
+ set clientId(value: string | undefined) {
499
+ this._clientId = value
500
+ }
501
490
502
get clientId(): string | undefined {
491
503
return this._clientId;
492
504
0 commit comments