revdev 0.96.0 → 0.97.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.
|
@@ -14,14 +14,3 @@ export interface BoList {
|
|
|
14
14
|
wordCount: number;
|
|
15
15
|
userCount: number;
|
|
16
16
|
}
|
|
17
|
-
export interface BoListWord {
|
|
18
|
-
wordId: string;
|
|
19
|
-
text: string;
|
|
20
|
-
languageCode: string;
|
|
21
|
-
imageId: string;
|
|
22
|
-
imageFileName: string;
|
|
23
|
-
imageThumbnailFileName: string;
|
|
24
|
-
audioId: string;
|
|
25
|
-
audioFileName: string;
|
|
26
|
-
listId: string;
|
|
27
|
-
}
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
import { FeedRequest } from "../../feed";
|
|
2
1
|
import { FeCreateListRequest } from "../../units";
|
|
3
|
-
export interface BoListWordFeedRequest extends FeedRequest {
|
|
4
|
-
listId?: string;
|
|
5
|
-
}
|
|
6
2
|
export interface BoCreateListRequest extends FeCreateListRequest {
|
|
7
3
|
baseListId?: string;
|
|
8
4
|
isSuper?: boolean;
|
|
@@ -12,6 +8,6 @@ export interface BoCreateListRequest extends FeCreateListRequest {
|
|
|
12
8
|
version?: number;
|
|
13
9
|
level?: number;
|
|
14
10
|
}
|
|
15
|
-
export interface BoUpdateListRequest extends
|
|
11
|
+
export interface BoUpdateListRequest extends BoCreateListRequest {
|
|
16
12
|
id: string;
|
|
17
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "revdev",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.97.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"build": "tsc",
|
|
10
10
|
"lint": "eslint .",
|
|
11
11
|
"lint:fix": "eslint . --fix",
|
|
12
|
-
"v": "npm --no-git-tag-version version minor"
|
|
12
|
+
"v": "npm --no-git-tag-version version minor",
|
|
13
|
+
"p": "npm run v && npm run lint:fix && git add * && git commit -m\"v\" && git push origin master"
|
|
13
14
|
},
|
|
14
15
|
"keywords": [
|
|
15
16
|
"revdev"
|