Skip to content

Commit

Permalink
feat: add CredentialVerificationMethodEnum (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobleesinger authored Oct 25, 2023
1 parent ce5ab18 commit 71cd471
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 6 deletions.
7 changes: 7 additions & 0 deletions build/enums.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,11 @@ export declare enum InputFormatEnum {
SSN = "SSN",
Image = "Image"
}
/**
* Possible values for credential verification method
*/
export declare enum CredentialVerificationMethodEnum {
SELF_ATTESTED = "self_attested",
PROVE_PREFILL = "prove_prefill"
}
//# sourceMappingURL=enums.d.ts.map
2 changes: 1 addition & 1 deletion build/enums.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion build/enums.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/enums.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions build/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,17 @@ export interface CardDetailsDto {
credentials: CredentialDto[];
offers: PartnerOfferDto[];
}
export interface OfferDto {
uuid: string;
id: string;
createdAt: string;
updatedAt: string;
reward: string | null;
description: string | null;
isActiveOffer: boolean;
receiverBrand: BrandDto;
presentationRequest: PresentationRequestDto;
}
/******************************************
* SCHEMA RESOLVER TYPES *
* TYPES FROM THE SCHEMA RESOLVER SERVICE *
Expand Down
Loading

0 comments on commit 71cd471

Please sign in to comment.