@mana-app/types 0.0.7 → 0.0.8
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.
|
@@ -7,14 +7,6 @@ export type BaseItem = {
|
|
|
7
7
|
* Base Cover/Thumbnail for content
|
|
8
8
|
*/
|
|
9
9
|
cover: string;
|
|
10
|
-
/**
|
|
11
|
-
* Additional Covers Provided
|
|
12
|
-
*/
|
|
13
|
-
additionalCovers?: string[];
|
|
14
|
-
/**
|
|
15
|
-
* Additional Info that may be displayed with this content
|
|
16
|
-
*/
|
|
17
|
-
info?: string[];
|
|
18
10
|
/**
|
|
19
11
|
* Indicates that this title contains NSFW content
|
|
20
12
|
*/
|
|
@@ -18,6 +18,10 @@ export type Content = BaseItem & {
|
|
|
18
18
|
* Summary / Description of the content
|
|
19
19
|
*/
|
|
20
20
|
summary?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Additional Covers Provided
|
|
23
|
+
*/
|
|
24
|
+
additionalCovers?: string[];
|
|
21
25
|
/**
|
|
22
26
|
* Other Names of the Publication
|
|
23
27
|
*/
|
|
@@ -44,6 +48,10 @@ export type Content = BaseItem & {
|
|
|
44
48
|
* Useful for display stuff like recommended Content
|
|
45
49
|
*/
|
|
46
50
|
collections?: HighlightCollection[];
|
|
51
|
+
/**
|
|
52
|
+
* Additional Info that may be displayed with this content
|
|
53
|
+
*/
|
|
54
|
+
info?: string[];
|
|
47
55
|
/**
|
|
48
56
|
* The Content's defined Tracking ID's.
|
|
49
57
|
*/
|
|
@@ -8,6 +8,10 @@ export type Highlight = BaseItem & ContextProvider & {
|
|
|
8
8
|
* The Subtitle of the tile
|
|
9
9
|
*/
|
|
10
10
|
subtitle?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Additional Info that may be displayed with this content
|
|
13
|
+
*/
|
|
14
|
+
info?: Record<string, string>;
|
|
11
15
|
/**
|
|
12
16
|
* Badge to be displayed with the tile
|
|
13
17
|
*/
|