Skip to content

Commit

Permalink
[Enums] CredentialVerificationMethodEnum updated with new otp value. (#…
Browse files Browse the repository at this point in the history
…51)

* [Enums] CredentialVerificationMethodEnum updated with new verified_inc_verified value.

* build

* otp
  • Loading branch information
rsmets authored Dec 1, 2023
1 parent dfc6199 commit 908cdc9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion build/enums.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ export declare enum InputFormatEnum {
*/
export declare enum CredentialVerificationMethodEnum {
SELF_ATTESTED = "self_attested",
PROVE_PREFILL = "prove_prefill"
PROVE_PREFILL = "prove_prefill",
OTP = "otp"
}
export declare enum UserIdentifierTypeEnum {
EMAIL = "EMAIL",
Expand Down
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.

1 change: 1 addition & 0 deletions 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.

3 changes: 2 additions & 1 deletion enums.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ export enum InputFormatEnum {
*/
export enum CredentialVerificationMethodEnum {
SELF_ATTESTED = 'self_attested',
PROVE_PREFILL = 'prove_prefill'
PROVE_PREFILL = 'prove_prefill',
OTP = 'otp'
}

export enum UserIdentifierTypeEnum {
Expand Down

0 comments on commit 908cdc9

Please sign in to comment.