@thetimes/times-public-api-types 1.0.9725 → 1.0.9744
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/index.d.ts
CHANGED
|
@@ -81,6 +81,7 @@ export * from "./mutations/edition-upsert-result";
|
|
|
81
81
|
export * from "./mutations/page-delete-input";
|
|
82
82
|
export * from "./mutations/page-delete-result";
|
|
83
83
|
export * from "./mutations/page-input";
|
|
84
|
+
export * from "./mutations/page-slice-tile-update-result";
|
|
84
85
|
export * from "./mutations/page-tile-input";
|
|
85
86
|
export * from "./mutations/page-upsert-result";
|
|
86
87
|
export * from "./mutations/preview-collection-update-result";
|
|
@@ -8,20 +8,25 @@ export type PageTileInput = {
|
|
|
8
8
|
inheritedArticleRef?: InheritedArticleRefInput | null;
|
|
9
9
|
};
|
|
10
10
|
export type ArticleRefInput = {
|
|
11
|
+
id?: UUID;
|
|
11
12
|
articleId: UUID;
|
|
12
13
|
};
|
|
13
14
|
export type TopicArticleRefInput = {
|
|
15
|
+
id?: UUID;
|
|
14
16
|
topic: Slug;
|
|
15
17
|
isComment: boolean;
|
|
16
18
|
};
|
|
17
19
|
export type CategoryArticleRefInput = {
|
|
20
|
+
id?: UUID;
|
|
18
21
|
category: Slug;
|
|
19
22
|
isComment: boolean;
|
|
20
23
|
};
|
|
21
24
|
export type InheritedArticleRefInput = {
|
|
25
|
+
id?: UUID;
|
|
22
26
|
isComment: boolean;
|
|
23
27
|
};
|
|
24
28
|
export type CustomComponentInput = {
|
|
29
|
+
id?: UUID;
|
|
25
30
|
name: string;
|
|
26
31
|
url: string;
|
|
27
32
|
parameters?: string | null;
|
|
@@ -33,6 +38,7 @@ export type ExternalRefImageInput = {
|
|
|
33
38
|
height: number;
|
|
34
39
|
};
|
|
35
40
|
export type ExternalRefInput = {
|
|
41
|
+
id?: UUID;
|
|
36
42
|
headline: string;
|
|
37
43
|
url: string;
|
|
38
44
|
label?: string | null;
|