Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@internxt/sdk",
"author": "Internxt <hello@internxt.com>",
"version": "1.20.2",
"version": "1.21.0",
"description": "An sdk for interacting with Internxt's services",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/drive/users/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ export class Users {

/**
* Get public key of given email, if not exists it pre-create user with this email
* and returns public key
* and returns public keys (kyber and ecc) of this user
* @param email
* @returns {Promise<UserPublicKeyWithCreationResponse>} A promise that returns the public keys of given user
*/
Expand Down
2 changes: 1 addition & 1 deletion src/drive/users/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export type FriendInvite = { guestEmail: string; host: number; accepted: boolean

export type UserPublicKeyResponse = { publicKey: string; keys?: { ecc: string; kyber: string } };

export type UserPublicKeyWithCreationResponse = { publicKey: string; publicKyberKey: string | undefined };
export type UserPublicKeyWithCreationResponse = { publicKey: string; publicKyberKey: string };

export type VerifyEmailChangeResponse = {
oldEmail: string;
Expand Down
Loading