@internxt/sdk 1.10.7 → 1.10.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -452,6 +452,7 @@ var Auth = /** @class */ (function () {
452
452
  Auth.prototype.legacyRecoverAccount = function (_a) {
453
453
  var token = _a.token, encryptedPassword = _a.encryptedPassword, encryptedSalt = _a.encryptedSalt, encryptedMnemonic = _a.encryptedMnemonic, eccEncryptedMnemonic = _a.eccEncryptedMnemonic, kyberEncryptedMnemonic = _a.kyberEncryptedMnemonic, keys = _a.keys;
454
454
  var accountRecoverPayload = {
455
+ token: token,
455
456
  password: encryptedPassword,
456
457
  salt: encryptedSalt,
457
458
  mnemonic: encryptedMnemonic,
@@ -461,7 +462,7 @@ var Auth = /** @class */ (function () {
461
462
  },
462
463
  keys: keys,
463
464
  };
464
- return this.client.put("/users/legacy-recover-account?token=".concat(token), accountRecoverPayload, this.basicHeaders());
465
+ return this.client.put('/users/legacy-recover-account', accountRecoverPayload, this.basicHeaders());
465
466
  };
466
467
  /**
467
468
  * Reset account with token
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@internxt/sdk",
3
3
  "author": "Internxt <hello@internxt.com>",
4
- "version": "1.10.7",
4
+ "version": "1.10.8",
5
5
  "description": "An sdk for interacting with Internxt's services",
6
6
  "repository": {
7
7
  "type": "git",