Skip to content

Commit

Permalink
Fix PhoneNumber value of 1pux LoginFieldTypeEnum (#7113)
Browse files Browse the repository at this point in the history
According to https://support.1password.com/1pux-format/#item-details it needs to be `TEL` instead of `T`

As far as I know, this has not been an issue, as I haven't been able to create a loginfield of type PhoneNumber within 1Password.

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
  • Loading branch information
djsmith85 and djsmith85 authored Dec 6, 2023
1 parent 5582d76 commit 6846026
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export enum LoginFieldTypeEnum {
Number = "N",
Password = "P",
TextArea = "A",
PhoneNumber = "T",
PhoneNumber = "TEL",
CheckBox = "C",
}
export interface LoginFieldsEntity {
Expand Down

0 comments on commit 6846026

Please sign in to comment.