Skip to content

Commit

Permalink
[Release 0.34.0] chore: add UserIdentifierDto 49
Browse files Browse the repository at this point in the history
  • Loading branch information
UnumID Admin committed Nov 6, 2023
1 parent b3f4025 commit a5cf48f
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 6 deletions.
4 changes: 4 additions & 0 deletions build/enums.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,8 @@ export declare enum CredentialVerificationMethodEnum {
SELF_ATTESTED = "self_attested",
PROVE_PREFILL = "prove_prefill"
}
export declare enum UserIdentifierTypeEnum {
EMAIL = "EMAIL",
PHONE = "PHONE"
}
//# 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.

7 changes: 6 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.

12 changes: 11 additions & 1 deletion build/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { InputFormatEnum, MandatoryEnum } from './enums';
import { InputFormatEnum, MandatoryEnum, UserIdentifierTypeEnum } from './enums';
/****************************************
* DATA RESOLVER TYPES *
* TYPES FROM THE DATA RESOLVER SERVICE *
Expand Down Expand Up @@ -327,6 +327,16 @@ export interface OfferDto {
receiverBrand: BrandDto;
presentationRequest: PresentationRequestDto;
}
export interface UserIdentifierDto {
uuid: string;
createdAt: string;
updatedAt: string;
type: UserIdentifierTypeEnum;
value: string;
userUuid: string;
isIssued: boolean;
isVerified: boolean;
}
/******************************************
* SCHEMA RESOLVER TYPES *
* TYPES FROM THE SCHEMA RESOLVER SERVICE *
Expand Down
2 changes: 1 addition & 1 deletion build/types.d.ts.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@verifiedinc/core-types",
"version": "0.33.3",
"version": "0.34.0",
"description": "UnumID shared core service types",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
Expand Down

0 comments on commit a5cf48f

Please sign in to comment.