revdev 0.346.0 → 0.348.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.
@@ -28,7 +28,3 @@ export interface BoListWordFeedRequest extends FeedRequest, WordFeedExtension {
28
28
  listId: string;
29
29
  hasTran?: boolean;
30
30
  }
31
- export interface BoAddWordTranscriptionsRequest {
32
- langCode: string;
33
- wordIds: string[];
34
- }
@@ -11,4 +11,5 @@ export interface BoRuleRecord {
11
11
  export interface BoRuleModifier extends BoRuleRecord {
12
12
  contentType: ContentType;
13
13
  content: string;
14
+ note?: string;
14
15
  }
@@ -6,6 +6,7 @@ export interface BoCreateRuleRequest {
6
6
  name: string;
7
7
  contentType: ContentType;
8
8
  content: string;
9
+ note?: string;
9
10
  }
10
11
  export interface BoUpdateRuleRequest extends BoCreateRuleRequest {
11
12
  id: string;
@@ -12,3 +12,7 @@ export interface BoWordFeedRequest extends FeedRequest, WordFeedExtension {
12
12
  active?: boolean;
13
13
  status?: EntryStatus;
14
14
  }
15
+ export interface BoAddWordTranscriptionsRequest {
16
+ langCode: string;
17
+ wordIds: string[];
18
+ }
@@ -4,21 +4,21 @@ export interface FeWordImageProveRecord {
4
4
  wordId: string;
5
5
  image: ImageGen;
6
6
  rate: number;
7
- listTotal: string;
7
+ listTotal: number;
8
8
  }
9
9
  export interface FeWordTranProveRecord {
10
10
  wordId: string;
11
- tran: WordUserGen;
11
+ trans: WordUserGen[];
12
12
  rate: number;
13
- listTotal: string;
13
+ listTotal: number;
14
14
  }
15
15
  export interface FeProveWordMatch {
16
- listTotal: string;
16
+ listTotal: number;
17
17
  }
18
18
  export interface FeWordKnowingResult {
19
19
  changed: boolean;
20
20
  wordId: string;
21
21
  knowing?: Knowing;
22
22
  images?: [string, ImageGen, FeProveWordMatch][];
23
- trans?: [string, WordUserGen, FeProveWordMatch][];
23
+ trans?: [string, WordUserGen[], FeProveWordMatch][];
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.346.0",
3
+ "version": "0.348.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",