revdev 0.324.0 → 0.325.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,4 +1,5 @@
1
1
  import { DualContribGen, ImageGen, ValueOption } from "../../common";
2
+ import { WordDataGen } from "../../front";
2
3
  import { BoUpdateListRequest } from "./request";
3
4
  export interface BoListRecord {
4
5
  id: string;
@@ -15,6 +16,7 @@ export interface BoListRecord {
15
16
  audioFilled: number;
16
17
  imageFilled: number;
17
18
  tagFilled: number;
19
+ filledTotal: number;
18
20
  }
19
21
  export interface BoListModifier extends BoUpdateListRequest {
20
22
  image?: ImageGen;
@@ -27,3 +29,9 @@ export interface BoListOption extends ValueOption {
27
29
  imageFilled: number;
28
30
  tagFilled: number;
29
31
  }
32
+ export interface BoListWordRecord extends WordDataGen {
33
+ audioTotal: number;
34
+ imageTotal: number;
35
+ tagTotal: number;
36
+ tranTotal: number;
37
+ }
@@ -1,4 +1,4 @@
1
- import { LangFeedRequest } from "../../feed";
1
+ import { FeedRequest, LangFeedRequest, WordFeedExtension } from "../../feed";
2
2
  import { CreateListRequest, UpdateListRequest } from "../../shared";
3
3
  export interface BoCreateListRequest extends Omit<CreateListRequest, "isPrivate"> {
4
4
  }
@@ -21,4 +21,10 @@ export interface BoListFeedRequest extends LangFeedRequest {
21
21
  isAudioFilled?: boolean;
22
22
  isImageFilled?: boolean;
23
23
  isTagFilled?: boolean;
24
+ fillLangCode?: string;
25
+ }
26
+ export interface BoListWordFeedRequest extends FeedRequest, WordFeedExtension {
27
+ fillLangCode?: string;
28
+ listId: string;
29
+ hasTran?: boolean;
24
30
  }
@@ -12,3 +12,9 @@ export interface UpdateListRequest extends CreateListRequest {
12
12
  export interface ListWordFeedRequest extends FeedRequest, WordFeedExtension {
13
13
  slug: string;
14
14
  }
15
+ export interface UpdateListFillRequest {
16
+ id: string;
17
+ langCode?: string;
18
+ }
19
+ export interface UpdateListFullFillRequest extends Pick<UpdateListFillRequest, "langCode"> {
20
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.324.0",
3
+ "version": "0.325.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",