revdev 0.217.0 → 0.219.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.
|
@@ -11,10 +11,11 @@ export interface BoTranWordRecord {
|
|
|
11
11
|
export interface BoTranRecord {
|
|
12
12
|
id: string;
|
|
13
13
|
speechPartId?: string;
|
|
14
|
-
created: string;
|
|
15
|
-
userId?: string;
|
|
16
|
-
active: boolean;
|
|
17
|
-
status: EntryStatus;
|
|
18
14
|
sourceWord: WordGen;
|
|
19
15
|
destWord: WordGen;
|
|
16
|
+
active: boolean;
|
|
17
|
+
status: EntryStatus;
|
|
18
|
+
rate: number;
|
|
19
|
+
created: string;
|
|
20
|
+
userId?: string;
|
|
20
21
|
}
|
package/lib/common/link.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { LiteralWord } from "../shared";
|
|
2
2
|
export interface LinkParentRequest {
|
|
3
3
|
link: boolean;
|
|
4
4
|
parentId: string;
|
|
@@ -27,7 +27,7 @@ export interface LinkedItem {
|
|
|
27
27
|
link: boolean;
|
|
28
28
|
}
|
|
29
29
|
interface BasicLinkWordRequest {
|
|
30
|
-
word:
|
|
30
|
+
word: LiteralWord;
|
|
31
31
|
link: boolean;
|
|
32
32
|
}
|
|
33
33
|
export interface LinkListWordRequest extends BasicLinkWordRequest {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { WordFeedExtension, FeedRequest, LangFeedRequest } from "../../feed";
|
|
2
|
-
import {
|
|
2
|
+
import { LiteralWord } from "../../shared";
|
|
3
3
|
import { BasicCellStruct } from "./entity";
|
|
4
4
|
export interface FeRowFeedRequest extends FeedRequest {
|
|
5
5
|
slug: string;
|
|
@@ -25,7 +25,7 @@ export interface FeCreateTableRequest {
|
|
|
25
25
|
export interface FeUpdateTableRequest extends Omit<FeCreateTableRequest, "langCode"> {
|
|
26
26
|
id: string;
|
|
27
27
|
}
|
|
28
|
-
export interface FeUpdateCellRequest extends BasicCellStruct<
|
|
28
|
+
export interface FeUpdateCellRequest extends BasicCellStruct<LiteralWord> {
|
|
29
29
|
}
|
|
30
30
|
export interface FeUpdateRowRequest {
|
|
31
31
|
tableId: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { LiteralWord } from "./entity";
|
|
2
2
|
export interface CreateWordRequest {
|
|
3
3
|
langCode: string;
|
|
4
4
|
text: string;
|
|
@@ -7,5 +7,5 @@ export interface CreateWordRequest {
|
|
|
7
7
|
}
|
|
8
8
|
export interface InitWordRequest {
|
|
9
9
|
langCode: string;
|
|
10
|
-
word:
|
|
10
|
+
word: LiteralWord;
|
|
11
11
|
}
|