revdev 0.41.0 → 0.43.0

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.
@@ -24,6 +24,10 @@ export interface FeSocialAuthRequest {
24
24
  providerName: FeSocialProviderName;
25
25
  providerToken: string;
26
26
  }
27
- export interface FeResetPasswordRequest {
27
+ export interface FeForgotPasswordRequest {
28
28
  email: string;
29
29
  }
30
+ export interface FeResetPasswordRequest {
31
+ token: string;
32
+ newPassword: string;
33
+ }
@@ -1,7 +1,7 @@
1
1
  import { QuizCode, QuizModeCode } from "../../general";
2
2
  export interface FeQuizEntityRequest {
3
3
  code: QuizCode;
4
- wordCount?: number;
4
+ wordCount: number;
5
5
  mode?: QuizModeCode;
6
6
  translationLanguageCode?: string;
7
7
  languageCode?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.41.0",
3
+ "version": "0.43.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -8,7 +8,8 @@
8
8
  "test": "jest --config jest.config.js",
9
9
  "build": "tsc",
10
10
  "lint": "eslint .",
11
- "lint:fix": "eslint . --fix"
11
+ "lint:fix": "eslint . --fix",
12
+ "v": "npm --no-git-tag-version version minor"
12
13
  },
13
14
  "keywords": [
14
15
  "revdev"