Skip to content

Commit

Permalink
feat(SPV-1320): fix contacts model (#1123)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzolt-4chain authored Dec 19, 2024
1 parent 0044788 commit de2bc01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bsv/spv-wallet-js-client",
"version": "1.0.0-beta.27",
"version": "1.0.0-beta.28",
"description": "TypeScript library for connecting to a SPV Wallet server",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,9 +295,9 @@ export interface Contacts extends PageModel<Contact> {}
*/
export interface OldContact {
id: string;
full_name: string;
fullName: string;
paymail: string;
pub_key: string;
pubKey: string;
status: string;
created_at: Date;
updated_at?: Date;
Expand Down

0 comments on commit de2bc01

Please sign in to comment.