Skip to content

Commit

Permalink
chore: allow to set clientId
Browse files Browse the repository at this point in the history
  • Loading branch information
nklomp committed Feb 8, 2024
1 parent 03598ef commit 735e56d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/client/lib/OpenID4VCIClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ import {
toAuthorizationResponsePayload,
} from '@sphereon/oid4vci-common';
import { CredentialFormat } from '@sphereon/ssi-types';
import { jwk } from '@transmute/did-key.js'
import * as console from 'console'
import * as console from 'console'
import * as console from 'console'
import * as console from 'console'
import * as console from 'console'
import debug from 'debug'
import Debug from 'debug';

import { AccessTokenClient } from './AccessTokenClient';
Expand Down Expand Up @@ -487,6 +494,11 @@ export class OpenID4VCIClient {
return this._alg;
}


set clientId(value: string | undefined) {
this._clientId = value
}

get clientId(): string | undefined {
return this._clientId;
}
Expand Down

0 comments on commit 735e56d

Please sign in to comment.