revdev 0.272.0 → 0.274.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.
- package/lib/back/list/entity.d.ts +6 -0
- package/lib/back/table/entity.d.ts +4 -0
- package/lib/back/tran/request.d.ts +1 -0
- package/lib/front/list/entity.d.ts +4 -0
- package/lib/front/table/entity.d.ts +4 -0
- package/lib/shared/general/entity.d.ts +3 -3
- package/lib/shared/table/request.d.ts +2 -0
- package/lib/shared/wordImage/request.d.ts +0 -4
- package/package.json +1 -1
|
@@ -11,6 +11,12 @@ export interface BoListRecord {
|
|
|
11
11
|
contrib: DualContribGen;
|
|
12
12
|
wordTotal: number;
|
|
13
13
|
userTotal: number;
|
|
14
|
+
fileName?: string;
|
|
15
|
+
thumbnailFileName?: string;
|
|
16
|
+
imageUrl?: string;
|
|
17
|
+
imageThumbnailUrl?: string;
|
|
14
18
|
}
|
|
15
19
|
export interface BoListModifier extends BoUpdateListRequest {
|
|
20
|
+
imageUrl?: string;
|
|
21
|
+
imageThumbnailUrl?: string;
|
|
16
22
|
}
|
|
@@ -8,6 +8,7 @@ export interface BoTranRefFeedRequest extends FeedRequest {
|
|
|
8
8
|
export interface BoTranFeedRequest extends BoTranRefFeedRequest {
|
|
9
9
|
active?: boolean;
|
|
10
10
|
status?: EntryStatus;
|
|
11
|
+
wordId?: string;
|
|
11
12
|
}
|
|
12
13
|
export interface BoTranExternalRequest {
|
|
13
14
|
sourceLangCode: string;
|
|
@@ -16,6 +16,10 @@ export interface FeTableEntity {
|
|
|
16
16
|
langCode: string;
|
|
17
17
|
description?: string;
|
|
18
18
|
metaKeywords: string;
|
|
19
|
+
fileName?: string;
|
|
20
|
+
thumbnailFileName?: string;
|
|
21
|
+
imageUrl?: string;
|
|
22
|
+
imageThumbnailUrl?: string;
|
|
19
23
|
access: AccessGen;
|
|
20
24
|
contrib: ContribGen;
|
|
21
25
|
rowTotal: number;
|
|
@@ -21,9 +21,9 @@ export interface AppSettings {
|
|
|
21
21
|
readonly proveKnowingWords: number;
|
|
22
22
|
readonly wordSetTake: number;
|
|
23
23
|
readonly wordAttemptTake: number;
|
|
24
|
-
readonly
|
|
25
|
-
readonly
|
|
26
|
-
readonly
|
|
24
|
+
readonly imageMinDimension: number;
|
|
25
|
+
readonly imageOptimalDimension: number;
|
|
26
|
+
readonly imageThumbnailSize: number;
|
|
27
27
|
readonly initRateRange: [number, number];
|
|
28
28
|
readonly maxTranWordPins: number;
|
|
29
29
|
readonly maxWordImagePins: number;
|
|
@@ -27,6 +27,8 @@ export interface UpdateTableRequest extends Omit<CreateTableRequest, "langCode"
|
|
|
27
27
|
}
|
|
28
28
|
export interface TableModifier extends CreateTableRequest {
|
|
29
29
|
id: string;
|
|
30
|
+
imageUrl?: string;
|
|
31
|
+
imageThumbnailUrl?: string;
|
|
30
32
|
}
|
|
31
33
|
export interface UpdateTableCellRequest extends TableCellSkeleton<LiteralWord> {
|
|
32
34
|
}
|