From 9ec5232ff32fb83820b5505d78ce8a9d434ff7bc Mon Sep 17 00:00:00 2001 From: tamarafinogina Date: Tue, 14 Jan 2025 12:27:57 +0100 Subject: [PATCH] fix names in UserSettings and up the version --- package.json | 2 +- src/shared/types/userSettings.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 892caf9..1f6f3bc 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@internxt/sdk", "author": "Internxt ", - "version": "1.9.2", + "version": "1.9.3", "description": "An sdk for interacting with Internxt's services", "repository": { "type": "git", diff --git a/src/shared/types/userSettings.ts b/src/shared/types/userSettings.ts index d2e3b11..ea5df64 100644 --- a/src/shared/types/userSettings.ts +++ b/src/shared/types/userSettings.ts @@ -24,11 +24,11 @@ export interface UserSettings { keys: { ecc: { publicKey: string; - privateKeyEncrypted: string; + privateKey: string; } kyber: { publicKey: string; - privateKeyEncrypted: string; + privateKey: string; } } teams?: boolean;