revdev 0.19.0 → 0.20.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,4 @@
|
|
|
1
|
-
import { FeEntityAccess, FeEntityContribution, FeWordKnowledge,
|
|
1
|
+
import { FeEntityAccess, FeEntityContribution, FeWordKnowledge, PotentialWord } from "../common";
|
|
2
2
|
export interface FeList {
|
|
3
3
|
id: string;
|
|
4
4
|
slug: string;
|
|
@@ -12,7 +12,7 @@ export interface FeList {
|
|
|
12
12
|
}
|
|
13
13
|
export interface FeListJoinWordsParams {
|
|
14
14
|
listId: string;
|
|
15
|
-
words:
|
|
15
|
+
words: PotentialWord[];
|
|
16
16
|
join: boolean;
|
|
17
17
|
}
|
|
18
18
|
export interface FeListEntity {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FeEntityAccess, FeEntityContribution, FeWordKnowledge,
|
|
1
|
+
import { FeEntityAccess, FeEntityContribution, FeWordKnowledge, PotentialWord, FeWordDirect } from "../common";
|
|
2
2
|
import { FeWord } from "../word";
|
|
3
3
|
export interface FeTable {
|
|
4
4
|
id: string;
|
|
@@ -42,14 +42,14 @@ export interface FeCreateTableParams {
|
|
|
42
42
|
export interface FeUpdateTableParams extends Omit<FeCreateTableParams, "languageCode"> {
|
|
43
43
|
id: string;
|
|
44
44
|
}
|
|
45
|
-
export interface
|
|
46
|
-
|
|
47
|
-
words:
|
|
45
|
+
export interface FeUpdateTableRowColumn {
|
|
46
|
+
index: number;
|
|
47
|
+
words: PotentialWord[];
|
|
48
48
|
}
|
|
49
49
|
export interface FeUpdateTableRow {
|
|
50
50
|
tableId: string;
|
|
51
51
|
rowId?: string;
|
|
52
|
-
|
|
52
|
+
columns: FeUpdateTableRowColumn[];
|
|
53
53
|
}
|
|
54
54
|
export interface FeTableRowWord {
|
|
55
55
|
rowId: string;
|