Skip to content

Commit

Permalink
chore: issuers is no longer require in CredentialRequest (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
leo1994 authored Nov 10, 2023
1 parent a5cf48f commit ba972e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export interface AuthenticationResult {
*/
export interface CredentialRequestDto {
type: string;
issuers: string[];
issuers?: string[];
// @deprecated - Use Instead *mandatory* field.
required?: boolean;
mandatory?: MandatoryEnum;
Expand Down Expand Up @@ -384,7 +384,7 @@ export interface OfferDto {
}

export interface UserIdentifierDto {
uuid: string
uuid: string;
createdAt: string;
updatedAt: string;
type: UserIdentifierTypeEnum;
Expand Down

0 comments on commit ba972e6

Please sign in to comment.