revdev 0.270.0 → 0.272.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/common/image.d.ts +2 -0
- package/lib/front/list/entity.d.ts +0 -3
- package/lib/front/list/request.d.ts +0 -2
- package/lib/front/table/entity.d.ts +0 -3
- package/lib/front/table/request.d.ts +0 -1
- package/lib/front/tag/entity.d.ts +0 -2
- package/lib/front/tag/request.d.ts +0 -1
- package/package.json +1 -1
package/lib/common/image.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Feed, WordDataGen } from "../..";
|
|
2
1
|
import { AccessGen, ContribGen } from "../../common";
|
|
3
2
|
export interface FeListRecord {
|
|
4
3
|
id: string;
|
|
@@ -23,6 +22,4 @@ export interface FeListEntity {
|
|
|
23
22
|
userTotal: number;
|
|
24
23
|
wordTotal: number;
|
|
25
24
|
knownWordTotal: number;
|
|
26
|
-
wordFeed: Feed<WordDataGen>;
|
|
27
|
-
tranLangCode?: string;
|
|
28
25
|
}
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import { AccessGen, ContribGen } from "../../common";
|
|
2
|
-
import { Feed } from "../../feed";
|
|
3
|
-
import { TableRowRecord } from "../../shared";
|
|
4
2
|
export interface FeTableRecord {
|
|
5
3
|
id: string;
|
|
6
4
|
slug: string;
|
|
@@ -24,5 +22,4 @@ export interface FeTableEntity {
|
|
|
24
22
|
userTotal: number;
|
|
25
23
|
wordTotal: number;
|
|
26
24
|
columns: string[];
|
|
27
|
-
rowFeed: Feed<TableRowRecord>;
|
|
28
25
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { SlugRequest } from "../..";
|
|
2
2
|
import { WordFeedExtension, FeedRequest, LangFeedRequest } from "../../feed";
|
|
3
3
|
export interface FeTableEntityRequest extends SlugRequest {
|
|
4
|
-
page?: number;
|
|
5
4
|
}
|
|
6
5
|
export interface FeTableWordFeedRequest extends WordFeedExtension, FeedRequest {
|
|
7
6
|
slug: string;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Feed, TagWordRecord } from "../..";
|
|
2
1
|
import { ContribGen } from "../../common";
|
|
3
2
|
export interface FeTagRecord {
|
|
4
3
|
id: string;
|
|
@@ -14,5 +13,4 @@ export interface FeTagEntity {
|
|
|
14
13
|
langCode?: string;
|
|
15
14
|
wordTotal: number;
|
|
16
15
|
knownWordTotal: number;
|
|
17
|
-
wordFeed: Feed<TagWordRecord>;
|
|
18
16
|
}
|