revdev 0.61.0 → 0.62.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.
@@ -1,10 +1,10 @@
1
1
  import { Knowing } from "../../general";
2
2
  import { FeWordKnowledge } from "../common";
3
3
  import { FeWord } from "../word";
4
- export interface FeDiscoverProveData {
4
+ export interface FeDiscoverProveEntity {
5
5
  word: FeWord;
6
- images: FeWord[];
7
- translations: FeWord[];
6
+ images?: FeWord[];
7
+ translations?: FeWord[];
8
8
  }
9
9
  export interface FeDiscoverKnowingOld {
10
10
  words?: [string, Knowing][];
@@ -5,7 +5,7 @@ export interface FeDiscoverWordKnowingRequest {
5
5
  wordId: string;
6
6
  knowing?: Knowing;
7
7
  }
8
- export interface FeDiscoverProveRequest extends FeUserInfoRequest {
8
+ export interface FeDiscoverProveRequest {
9
9
  wordId: string;
10
10
  translationLanguageCode?: string;
11
11
  repeat?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.61.0",
3
+ "version": "0.62.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",