@whyour/qinglong 2.19.0-1 → 2.19.0-2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whyour/qinglong",
3
- "version": "2.19.0-1",
3
+ "version": "2.19.0-2",
4
4
  "description": "Timed task management platform supporting Python3, JavaScript, Shell, Typescript",
5
5
  "repository": {
6
6
  "type": "git",
@@ -298,12 +298,13 @@ let UserService = class UserService {
298
298
  }
299
299
  }
300
300
  async resetAuthInfo(info) {
301
- const { retries, twoFactorActivated, password } = info;
301
+ const { retries, twoFactorActivated, password, username } = info;
302
302
  const authInfo = await this.getAuthInfo();
303
303
  await this.updateAuthInfo(authInfo, {
304
304
  retries,
305
305
  twoFactorActivated,
306
306
  password,
307
+ username
307
308
  });
308
309
  }
309
310
  };