@financial-times/cp-content-pipeline-schema 2.10.0 → 2.10.1
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/CHANGELOG.md +7 -0
- package/lib/datasources/capi.d.ts +1 -0
- package/lib/datasources/capi.js +10 -0
- package/lib/datasources/capi.js.map +1 -1
- package/lib/model/schemas/capi/article.d.ts +125 -60
- package/lib/model/schemas/capi/audio.d.ts +1111 -119
- package/lib/model/schemas/capi/base-schema.d.ts +125 -99
- package/lib/model/schemas/capi/content-package.d.ts +808 -46
- package/lib/model/schemas/capi/content-package.js +0 -1
- package/lib/model/schemas/capi/content-package.js.map +1 -1
- package/lib/model/schemas/capi/live-blog-package.d.ts +225 -65
- package/lib/model/schemas/capi/live-blog-package.js +0 -1
- package/lib/model/schemas/capi/live-blog-package.js.map +1 -1
- package/lib/model/schemas/capi/placeholder.d.ts +138 -60
- package/package.json +1 -1
- package/src/datasources/capi.ts +14 -0
- package/src/model/schemas/capi/content-package.ts +0 -1
- package/src/model/schemas/capi/live-blog-package.ts +0 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,10 +1,58 @@
|
|
|
1
|
-
export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
2
|
-
id: import("zod").ZodString;
|
|
3
|
-
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4
|
-
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
1
|
+
export declare const contentPackageSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<Pick<{
|
|
5
2
|
title: import("zod").ZodString;
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4
|
+
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5
|
+
bodyXML: import("zod").ZodString;
|
|
6
|
+
summary: import("zod").ZodObject<{
|
|
7
|
+
bodyXML: import("zod").ZodString;
|
|
8
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
9
|
+
bodyXML: string;
|
|
10
|
+
}, {
|
|
11
|
+
bodyXML: string;
|
|
12
|
+
}>;
|
|
13
|
+
alternativeTitles: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
14
|
+
promotionalTitle: import("zod").ZodString;
|
|
15
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
16
|
+
promotionalTitle: string;
|
|
17
|
+
}, {
|
|
18
|
+
promotionalTitle: string;
|
|
19
|
+
}>>;
|
|
20
|
+
alternativeStandfirsts: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
21
|
+
promotionalStandfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
23
|
+
promotionalStandfirst?: string | undefined;
|
|
24
|
+
}, {
|
|
25
|
+
promotionalStandfirst?: string | undefined;
|
|
26
|
+
}>>;
|
|
27
|
+
pinnedPosts: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
28
|
+
contains: import("zod").ZodArray<import("zod").ZodObject<{
|
|
29
|
+
id: import("zod").ZodString;
|
|
30
|
+
apiUrl: import("zod").ZodString;
|
|
31
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
32
|
+
id: string;
|
|
33
|
+
apiUrl: string;
|
|
34
|
+
}, {
|
|
35
|
+
id: string;
|
|
36
|
+
apiUrl: string;
|
|
37
|
+
}>, "many">;
|
|
38
|
+
design: import("zod").ZodObject<{
|
|
39
|
+
theme: import("zod").ZodUnion<[import("zod").ZodLiteral<"special-report">, import("zod").ZodLiteral<"extra">, import("zod").ZodLiteral<"basic">, import("zod").ZodLiteral<"extra-wide">]>;
|
|
40
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
41
|
+
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
42
|
+
}, {
|
|
43
|
+
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
44
|
+
}>;
|
|
45
|
+
}, "title" | "bodyXML" | "summary" | "alternativeTitles" | "contains" | "design">, {
|
|
46
|
+
summary: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
47
|
+
bodyXML: import("zod").ZodString;
|
|
48
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
49
|
+
bodyXML: string;
|
|
50
|
+
}, {
|
|
51
|
+
bodyXML: string;
|
|
52
|
+
}>>;
|
|
53
|
+
}>, Pick<{
|
|
54
|
+
id: import("zod").ZodString;
|
|
55
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
8
56
|
id: import("zod").ZodString;
|
|
9
57
|
apiUrl: import("zod").ZodString;
|
|
10
58
|
directType: import("zod").ZodString;
|
|
@@ -12,8 +60,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
12
60
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13
61
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
14
62
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
63
|
+
}, {
|
|
15
64
|
predicate: import("zod").ZodString;
|
|
16
|
-
}
|
|
65
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
17
66
|
id: string;
|
|
18
67
|
apiUrl: string;
|
|
19
68
|
directType: string;
|
|
@@ -34,6 +83,8 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
34
83
|
}>, "many">;
|
|
35
84
|
webUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
36
85
|
canonicalWebUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
86
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
87
|
+
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
37
88
|
standout: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
38
89
|
editorsChoice: import("zod").ZodBoolean;
|
|
39
90
|
exclusive: import("zod").ZodBoolean;
|
|
@@ -47,7 +98,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
47
98
|
exclusive: boolean;
|
|
48
99
|
scoop: boolean;
|
|
49
100
|
}>>;
|
|
101
|
+
publishedDate: import("zod").ZodString;
|
|
50
102
|
firstPublishedDate: import("zod").ZodString;
|
|
103
|
+
realtime: import("zod").ZodBoolean;
|
|
51
104
|
editorialDesk: import("zod").ZodOptional<import("zod").ZodString>;
|
|
52
105
|
accessLevel: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"premium">, import("zod").ZodLiteral<"subscribed">, import("zod").ZodLiteral<"registered">, import("zod").ZodLiteral<"free">]>>;
|
|
53
106
|
canBeSyndicated: import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">, import("zod").ZodLiteral<"withContributorPayment">, import("zod").ZodLiteral<"unknown">]>;
|
|
@@ -84,6 +137,16 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
84
137
|
}, {
|
|
85
138
|
enabled: boolean;
|
|
86
139
|
}>>;
|
|
140
|
+
containedIn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
141
|
+
apiUrl: import("zod").ZodString;
|
|
142
|
+
id: import("zod").ZodString;
|
|
143
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
144
|
+
id: string;
|
|
145
|
+
apiUrl: string;
|
|
146
|
+
}, {
|
|
147
|
+
id: string;
|
|
148
|
+
apiUrl: string;
|
|
149
|
+
}>, "many">>;
|
|
87
150
|
tableOfContents: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
88
151
|
labelType: import("zod").ZodString;
|
|
89
152
|
sequence: import("zod").ZodString;
|
|
@@ -94,38 +157,7 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
94
157
|
labelType: string;
|
|
95
158
|
sequence: string;
|
|
96
159
|
}>>;
|
|
97
|
-
|
|
98
|
-
summary: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
99
|
-
bodyXML: import("zod").ZodString;
|
|
100
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
101
|
-
bodyXML: string;
|
|
102
|
-
}, {
|
|
103
|
-
bodyXML: string;
|
|
104
|
-
}>>;
|
|
105
|
-
alternativeTitles: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
106
|
-
promotionalTitle: import("zod").ZodString;
|
|
107
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
108
|
-
promotionalTitle: string;
|
|
109
|
-
}, {
|
|
110
|
-
promotionalTitle: string;
|
|
111
|
-
}>>;
|
|
112
|
-
contains: import("zod").ZodArray<import("zod").ZodObject<{
|
|
113
|
-
id: import("zod").ZodString;
|
|
114
|
-
apiUrl: import("zod").ZodString;
|
|
115
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
116
|
-
id: string;
|
|
117
|
-
apiUrl: string;
|
|
118
|
-
}, {
|
|
119
|
-
id: string;
|
|
120
|
-
apiUrl: string;
|
|
121
|
-
}>, "many">;
|
|
122
|
-
design: import("zod").ZodObject<{
|
|
123
|
-
theme: import("zod").ZodUnion<[import("zod").ZodLiteral<"special-report">, import("zod").ZodLiteral<"extra">, import("zod").ZodLiteral<"basic">, import("zod").ZodLiteral<"extra-wide">]>;
|
|
124
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
125
|
-
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
126
|
-
}, {
|
|
127
|
-
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
128
|
-
}>;
|
|
160
|
+
}, "id" | "type" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "standout" | "firstPublishedDate" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "topper" | "comments" | "tableOfContents">>, Pick<{
|
|
129
161
|
mainImage: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
130
162
|
id: import("zod").ZodString;
|
|
131
163
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
|
|
@@ -176,8 +208,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
176
208
|
maxDisplayWidth?: string | undefined;
|
|
177
209
|
pixelWidth?: number | undefined;
|
|
178
210
|
pixelHeight?: number | undefined;
|
|
179
|
-
}>, import("zod").ZodObject<{
|
|
211
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
180
212
|
id: import("zod").ZodString;
|
|
213
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
181
214
|
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
182
215
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
183
216
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -193,8 +226,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
193
226
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
194
227
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
195
228
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
229
|
+
}, {
|
|
196
230
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
197
|
-
}
|
|
231
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
198
232
|
id: string;
|
|
199
233
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
200
234
|
binaryUrl: string;
|
|
@@ -335,8 +369,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
335
369
|
maxDisplayWidth?: string | undefined;
|
|
336
370
|
pixelWidth?: number | undefined;
|
|
337
371
|
pixelHeight?: number | undefined;
|
|
338
|
-
}>, import("zod").ZodObject<{
|
|
372
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
339
373
|
id: import("zod").ZodString;
|
|
374
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
340
375
|
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
341
376
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
342
377
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -352,8 +387,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
352
387
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
353
388
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
354
389
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
390
|
+
}, {
|
|
355
391
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
356
|
-
}
|
|
392
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
357
393
|
id: string;
|
|
358
394
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
359
395
|
binaryUrl: string;
|
|
@@ -431,8 +467,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
431
467
|
maxDisplayWidth?: string | undefined;
|
|
432
468
|
pixelWidth?: number | undefined;
|
|
433
469
|
pixelHeight?: number | undefined;
|
|
434
|
-
}>, import("zod").ZodObject<{
|
|
470
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
435
471
|
id: import("zod").ZodString;
|
|
472
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
436
473
|
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
437
474
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
438
475
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -448,8 +485,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
448
485
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
449
486
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
450
487
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
488
|
+
}, {
|
|
451
489
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
452
|
-
}
|
|
490
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
453
491
|
id: string;
|
|
454
492
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
455
493
|
binaryUrl: string;
|
|
@@ -543,6 +581,87 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
543
581
|
pixelHeight?: number | undefined;
|
|
544
582
|
};
|
|
545
583
|
}>, "many">>;
|
|
584
|
+
alternativeImages: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
585
|
+
promotionalImage: import("zod").ZodObject<{
|
|
586
|
+
id: import("zod").ZodString;
|
|
587
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
588
|
+
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
589
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
590
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
591
|
+
binaryUrl: import("zod").ZodString;
|
|
592
|
+
copyright: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
593
|
+
notice: import("zod").ZodString;
|
|
594
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
595
|
+
notice: string;
|
|
596
|
+
}, {
|
|
597
|
+
notice: string;
|
|
598
|
+
}>>;
|
|
599
|
+
minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
600
|
+
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
601
|
+
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
602
|
+
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
603
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
604
|
+
id: string;
|
|
605
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
606
|
+
binaryUrl: string;
|
|
607
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
608
|
+
title?: string | undefined;
|
|
609
|
+
description?: string | undefined;
|
|
610
|
+
copyright?: {
|
|
611
|
+
notice: string;
|
|
612
|
+
} | undefined;
|
|
613
|
+
minDisplayWidth?: string | undefined;
|
|
614
|
+
maxDisplayWidth?: string | undefined;
|
|
615
|
+
pixelWidth?: number | undefined;
|
|
616
|
+
pixelHeight?: number | undefined;
|
|
617
|
+
}, {
|
|
618
|
+
id: string;
|
|
619
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
620
|
+
binaryUrl: string;
|
|
621
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
622
|
+
title?: string | undefined;
|
|
623
|
+
description?: string | undefined;
|
|
624
|
+
copyright?: {
|
|
625
|
+
notice: string;
|
|
626
|
+
} | undefined;
|
|
627
|
+
minDisplayWidth?: string | undefined;
|
|
628
|
+
maxDisplayWidth?: string | undefined;
|
|
629
|
+
pixelWidth?: number | undefined;
|
|
630
|
+
pixelHeight?: number | undefined;
|
|
631
|
+
}>;
|
|
632
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
633
|
+
promotionalImage: {
|
|
634
|
+
id: string;
|
|
635
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
636
|
+
binaryUrl: string;
|
|
637
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
638
|
+
title?: string | undefined;
|
|
639
|
+
description?: string | undefined;
|
|
640
|
+
copyright?: {
|
|
641
|
+
notice: string;
|
|
642
|
+
} | undefined;
|
|
643
|
+
minDisplayWidth?: string | undefined;
|
|
644
|
+
maxDisplayWidth?: string | undefined;
|
|
645
|
+
pixelWidth?: number | undefined;
|
|
646
|
+
pixelHeight?: number | undefined;
|
|
647
|
+
};
|
|
648
|
+
}, {
|
|
649
|
+
promotionalImage: {
|
|
650
|
+
id: string;
|
|
651
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
652
|
+
binaryUrl: string;
|
|
653
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
654
|
+
title?: string | undefined;
|
|
655
|
+
description?: string | undefined;
|
|
656
|
+
copyright?: {
|
|
657
|
+
notice: string;
|
|
658
|
+
} | undefined;
|
|
659
|
+
minDisplayWidth?: string | undefined;
|
|
660
|
+
maxDisplayWidth?: string | undefined;
|
|
661
|
+
pixelWidth?: number | undefined;
|
|
662
|
+
pixelHeight?: number | undefined;
|
|
663
|
+
};
|
|
664
|
+
}>>;
|
|
546
665
|
leadFlourish: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
547
666
|
id: import("zod").ZodString;
|
|
548
667
|
type: import("zod").ZodString;
|
|
@@ -556,7 +675,650 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
556
675
|
type: string;
|
|
557
676
|
description: string;
|
|
558
677
|
}>>;
|
|
559
|
-
|
|
678
|
+
embeds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
679
|
+
id: import("zod").ZodString;
|
|
680
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
|
|
681
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
682
|
+
members: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
683
|
+
id: import("zod").ZodString;
|
|
684
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
685
|
+
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
686
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
687
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
688
|
+
binaryUrl: import("zod").ZodString;
|
|
689
|
+
copyright: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
690
|
+
notice: import("zod").ZodString;
|
|
691
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
692
|
+
notice: string;
|
|
693
|
+
}, {
|
|
694
|
+
notice: string;
|
|
695
|
+
}>>;
|
|
696
|
+
minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
697
|
+
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
698
|
+
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
699
|
+
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
700
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
701
|
+
id: string;
|
|
702
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
703
|
+
binaryUrl: string;
|
|
704
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
705
|
+
title?: string | undefined;
|
|
706
|
+
description?: string | undefined;
|
|
707
|
+
copyright?: {
|
|
708
|
+
notice: string;
|
|
709
|
+
} | undefined;
|
|
710
|
+
minDisplayWidth?: string | undefined;
|
|
711
|
+
maxDisplayWidth?: string | undefined;
|
|
712
|
+
pixelWidth?: number | undefined;
|
|
713
|
+
pixelHeight?: number | undefined;
|
|
714
|
+
}, {
|
|
715
|
+
id: string;
|
|
716
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
717
|
+
binaryUrl: string;
|
|
718
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
719
|
+
title?: string | undefined;
|
|
720
|
+
description?: string | undefined;
|
|
721
|
+
copyright?: {
|
|
722
|
+
notice: string;
|
|
723
|
+
} | undefined;
|
|
724
|
+
minDisplayWidth?: string | undefined;
|
|
725
|
+
maxDisplayWidth?: string | undefined;
|
|
726
|
+
pixelWidth?: number | undefined;
|
|
727
|
+
pixelHeight?: number | undefined;
|
|
728
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
729
|
+
id: import("zod").ZodString;
|
|
730
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
731
|
+
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
732
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
733
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
734
|
+
binaryUrl: import("zod").ZodString;
|
|
735
|
+
copyright: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
736
|
+
notice: import("zod").ZodString;
|
|
737
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
738
|
+
notice: string;
|
|
739
|
+
}, {
|
|
740
|
+
notice: string;
|
|
741
|
+
}>>;
|
|
742
|
+
minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
743
|
+
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
744
|
+
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
745
|
+
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
746
|
+
}, {
|
|
747
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
748
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
749
|
+
id: string;
|
|
750
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
751
|
+
binaryUrl: string;
|
|
752
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
753
|
+
title?: string | undefined;
|
|
754
|
+
description?: string | undefined;
|
|
755
|
+
copyright?: {
|
|
756
|
+
notice: string;
|
|
757
|
+
} | undefined;
|
|
758
|
+
minDisplayWidth?: string | undefined;
|
|
759
|
+
maxDisplayWidth?: string | undefined;
|
|
760
|
+
pixelWidth?: number | undefined;
|
|
761
|
+
pixelHeight?: number | undefined;
|
|
762
|
+
}, {
|
|
763
|
+
id: string;
|
|
764
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
765
|
+
binaryUrl: string;
|
|
766
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
767
|
+
title?: string | undefined;
|
|
768
|
+
description?: string | undefined;
|
|
769
|
+
copyright?: {
|
|
770
|
+
notice: string;
|
|
771
|
+
} | undefined;
|
|
772
|
+
minDisplayWidth?: string | undefined;
|
|
773
|
+
maxDisplayWidth?: string | undefined;
|
|
774
|
+
pixelWidth?: number | undefined;
|
|
775
|
+
pixelHeight?: number | undefined;
|
|
776
|
+
}>]>, "many">;
|
|
777
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
778
|
+
id: string;
|
|
779
|
+
type: "http://www.ft.com/ontology/content/ImageSet";
|
|
780
|
+
members: ({
|
|
781
|
+
id: string;
|
|
782
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
783
|
+
binaryUrl: string;
|
|
784
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
785
|
+
title?: string | undefined;
|
|
786
|
+
description?: string | undefined;
|
|
787
|
+
copyright?: {
|
|
788
|
+
notice: string;
|
|
789
|
+
} | undefined;
|
|
790
|
+
minDisplayWidth?: string | undefined;
|
|
791
|
+
maxDisplayWidth?: string | undefined;
|
|
792
|
+
pixelWidth?: number | undefined;
|
|
793
|
+
pixelHeight?: number | undefined;
|
|
794
|
+
} | {
|
|
795
|
+
id: string;
|
|
796
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
797
|
+
binaryUrl: string;
|
|
798
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
799
|
+
title?: string | undefined;
|
|
800
|
+
description?: string | undefined;
|
|
801
|
+
copyright?: {
|
|
802
|
+
notice: string;
|
|
803
|
+
} | undefined;
|
|
804
|
+
minDisplayWidth?: string | undefined;
|
|
805
|
+
maxDisplayWidth?: string | undefined;
|
|
806
|
+
pixelWidth?: number | undefined;
|
|
807
|
+
pixelHeight?: number | undefined;
|
|
808
|
+
})[];
|
|
809
|
+
description?: string | undefined;
|
|
810
|
+
}, {
|
|
811
|
+
id: string;
|
|
812
|
+
type: "http://www.ft.com/ontology/content/ImageSet";
|
|
813
|
+
members: ({
|
|
814
|
+
id: string;
|
|
815
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
816
|
+
binaryUrl: string;
|
|
817
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
818
|
+
title?: string | undefined;
|
|
819
|
+
description?: string | undefined;
|
|
820
|
+
copyright?: {
|
|
821
|
+
notice: string;
|
|
822
|
+
} | undefined;
|
|
823
|
+
minDisplayWidth?: string | undefined;
|
|
824
|
+
maxDisplayWidth?: string | undefined;
|
|
825
|
+
pixelWidth?: number | undefined;
|
|
826
|
+
pixelHeight?: number | undefined;
|
|
827
|
+
} | {
|
|
828
|
+
id: string;
|
|
829
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
830
|
+
binaryUrl: string;
|
|
831
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
832
|
+
title?: string | undefined;
|
|
833
|
+
description?: string | undefined;
|
|
834
|
+
copyright?: {
|
|
835
|
+
notice: string;
|
|
836
|
+
} | undefined;
|
|
837
|
+
minDisplayWidth?: string | undefined;
|
|
838
|
+
maxDisplayWidth?: string | undefined;
|
|
839
|
+
pixelWidth?: number | undefined;
|
|
840
|
+
pixelHeight?: number | undefined;
|
|
841
|
+
})[];
|
|
842
|
+
description?: string | undefined;
|
|
843
|
+
}>, import("zod").ZodObject<{
|
|
844
|
+
id: import("zod").ZodString;
|
|
845
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ClipSet">;
|
|
846
|
+
members: import("zod").ZodArray<import("zod").ZodObject<{
|
|
847
|
+
id: import("zod").ZodString;
|
|
848
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Clip">;
|
|
849
|
+
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">]>>;
|
|
850
|
+
dataSource: import("zod").ZodArray<import("zod").ZodObject<{
|
|
851
|
+
audioCodec: import("zod").ZodOptional<import("zod").ZodString>;
|
|
852
|
+
binaryUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
853
|
+
duration: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
854
|
+
mediaType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
855
|
+
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
856
|
+
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
857
|
+
videoCodec: import("zod").ZodOptional<import("zod").ZodString>;
|
|
858
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
859
|
+
binaryUrl?: string | undefined;
|
|
860
|
+
pixelWidth?: number | undefined;
|
|
861
|
+
pixelHeight?: number | undefined;
|
|
862
|
+
audioCodec?: string | undefined;
|
|
863
|
+
duration?: number | undefined;
|
|
864
|
+
mediaType?: string | undefined;
|
|
865
|
+
videoCodec?: string | undefined;
|
|
866
|
+
}, {
|
|
867
|
+
binaryUrl?: string | undefined;
|
|
868
|
+
pixelWidth?: number | undefined;
|
|
869
|
+
pixelHeight?: number | undefined;
|
|
870
|
+
audioCodec?: string | undefined;
|
|
871
|
+
duration?: number | undefined;
|
|
872
|
+
mediaType?: string | undefined;
|
|
873
|
+
videoCodec?: string | undefined;
|
|
874
|
+
}>, "many">;
|
|
875
|
+
poster: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
876
|
+
id: import("zod").ZodString;
|
|
877
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
|
|
878
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
879
|
+
members: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
880
|
+
id: import("zod").ZodString;
|
|
881
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
882
|
+
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
883
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
884
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
885
|
+
binaryUrl: import("zod").ZodString;
|
|
886
|
+
copyright: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
887
|
+
notice: import("zod").ZodString;
|
|
888
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
889
|
+
notice: string;
|
|
890
|
+
}, {
|
|
891
|
+
notice: string;
|
|
892
|
+
}>>;
|
|
893
|
+
minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
894
|
+
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
895
|
+
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
896
|
+
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
897
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
898
|
+
id: string;
|
|
899
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
900
|
+
binaryUrl: string;
|
|
901
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
902
|
+
title?: string | undefined;
|
|
903
|
+
description?: string | undefined;
|
|
904
|
+
copyright?: {
|
|
905
|
+
notice: string;
|
|
906
|
+
} | undefined;
|
|
907
|
+
minDisplayWidth?: string | undefined;
|
|
908
|
+
maxDisplayWidth?: string | undefined;
|
|
909
|
+
pixelWidth?: number | undefined;
|
|
910
|
+
pixelHeight?: number | undefined;
|
|
911
|
+
}, {
|
|
912
|
+
id: string;
|
|
913
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
914
|
+
binaryUrl: string;
|
|
915
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
916
|
+
title?: string | undefined;
|
|
917
|
+
description?: string | undefined;
|
|
918
|
+
copyright?: {
|
|
919
|
+
notice: string;
|
|
920
|
+
} | undefined;
|
|
921
|
+
minDisplayWidth?: string | undefined;
|
|
922
|
+
maxDisplayWidth?: string | undefined;
|
|
923
|
+
pixelWidth?: number | undefined;
|
|
924
|
+
pixelHeight?: number | undefined;
|
|
925
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
926
|
+
id: import("zod").ZodString;
|
|
927
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
928
|
+
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
929
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
930
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
931
|
+
binaryUrl: import("zod").ZodString;
|
|
932
|
+
copyright: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
933
|
+
notice: import("zod").ZodString;
|
|
934
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
935
|
+
notice: string;
|
|
936
|
+
}, {
|
|
937
|
+
notice: string;
|
|
938
|
+
}>>;
|
|
939
|
+
minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
940
|
+
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
941
|
+
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
942
|
+
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
943
|
+
}, {
|
|
944
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
945
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
946
|
+
id: string;
|
|
947
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
948
|
+
binaryUrl: string;
|
|
949
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
950
|
+
title?: string | undefined;
|
|
951
|
+
description?: string | undefined;
|
|
952
|
+
copyright?: {
|
|
953
|
+
notice: string;
|
|
954
|
+
} | undefined;
|
|
955
|
+
minDisplayWidth?: string | undefined;
|
|
956
|
+
maxDisplayWidth?: string | undefined;
|
|
957
|
+
pixelWidth?: number | undefined;
|
|
958
|
+
pixelHeight?: number | undefined;
|
|
959
|
+
}, {
|
|
960
|
+
id: string;
|
|
961
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
962
|
+
binaryUrl: string;
|
|
963
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
964
|
+
title?: string | undefined;
|
|
965
|
+
description?: string | undefined;
|
|
966
|
+
copyright?: {
|
|
967
|
+
notice: string;
|
|
968
|
+
} | undefined;
|
|
969
|
+
minDisplayWidth?: string | undefined;
|
|
970
|
+
maxDisplayWidth?: string | undefined;
|
|
971
|
+
pixelWidth?: number | undefined;
|
|
972
|
+
pixelHeight?: number | undefined;
|
|
973
|
+
}>]>, "many">;
|
|
974
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
975
|
+
id: string;
|
|
976
|
+
type: "http://www.ft.com/ontology/content/ImageSet";
|
|
977
|
+
members: ({
|
|
978
|
+
id: string;
|
|
979
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
980
|
+
binaryUrl: string;
|
|
981
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
982
|
+
title?: string | undefined;
|
|
983
|
+
description?: string | undefined;
|
|
984
|
+
copyright?: {
|
|
985
|
+
notice: string;
|
|
986
|
+
} | undefined;
|
|
987
|
+
minDisplayWidth?: string | undefined;
|
|
988
|
+
maxDisplayWidth?: string | undefined;
|
|
989
|
+
pixelWidth?: number | undefined;
|
|
990
|
+
pixelHeight?: number | undefined;
|
|
991
|
+
} | {
|
|
992
|
+
id: string;
|
|
993
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
994
|
+
binaryUrl: string;
|
|
995
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
996
|
+
title?: string | undefined;
|
|
997
|
+
description?: string | undefined;
|
|
998
|
+
copyright?: {
|
|
999
|
+
notice: string;
|
|
1000
|
+
} | undefined;
|
|
1001
|
+
minDisplayWidth?: string | undefined;
|
|
1002
|
+
maxDisplayWidth?: string | undefined;
|
|
1003
|
+
pixelWidth?: number | undefined;
|
|
1004
|
+
pixelHeight?: number | undefined;
|
|
1005
|
+
})[];
|
|
1006
|
+
description?: string | undefined;
|
|
1007
|
+
}, {
|
|
1008
|
+
id: string;
|
|
1009
|
+
type: "http://www.ft.com/ontology/content/ImageSet";
|
|
1010
|
+
members: ({
|
|
1011
|
+
id: string;
|
|
1012
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
1013
|
+
binaryUrl: string;
|
|
1014
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
1015
|
+
title?: string | undefined;
|
|
1016
|
+
description?: string | undefined;
|
|
1017
|
+
copyright?: {
|
|
1018
|
+
notice: string;
|
|
1019
|
+
} | undefined;
|
|
1020
|
+
minDisplayWidth?: string | undefined;
|
|
1021
|
+
maxDisplayWidth?: string | undefined;
|
|
1022
|
+
pixelWidth?: number | undefined;
|
|
1023
|
+
pixelHeight?: number | undefined;
|
|
1024
|
+
} | {
|
|
1025
|
+
id: string;
|
|
1026
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
1027
|
+
binaryUrl: string;
|
|
1028
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
1029
|
+
title?: string | undefined;
|
|
1030
|
+
description?: string | undefined;
|
|
1031
|
+
copyright?: {
|
|
1032
|
+
notice: string;
|
|
1033
|
+
} | undefined;
|
|
1034
|
+
minDisplayWidth?: string | undefined;
|
|
1035
|
+
maxDisplayWidth?: string | undefined;
|
|
1036
|
+
pixelWidth?: number | undefined;
|
|
1037
|
+
pixelHeight?: number | undefined;
|
|
1038
|
+
})[];
|
|
1039
|
+
description?: string | undefined;
|
|
1040
|
+
}>>;
|
|
1041
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1042
|
+
id: string;
|
|
1043
|
+
type: "http://www.ft.com/ontology/content/Clip";
|
|
1044
|
+
dataSource: {
|
|
1045
|
+
binaryUrl?: string | undefined;
|
|
1046
|
+
pixelWidth?: number | undefined;
|
|
1047
|
+
pixelHeight?: number | undefined;
|
|
1048
|
+
audioCodec?: string | undefined;
|
|
1049
|
+
duration?: number | undefined;
|
|
1050
|
+
mediaType?: string | undefined;
|
|
1051
|
+
videoCodec?: string | undefined;
|
|
1052
|
+
}[];
|
|
1053
|
+
format?: "standardInline" | "mobile" | undefined;
|
|
1054
|
+
poster?: {
|
|
1055
|
+
id: string;
|
|
1056
|
+
type: "http://www.ft.com/ontology/content/ImageSet";
|
|
1057
|
+
members: ({
|
|
1058
|
+
id: string;
|
|
1059
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
1060
|
+
binaryUrl: string;
|
|
1061
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
1062
|
+
title?: string | undefined;
|
|
1063
|
+
description?: string | undefined;
|
|
1064
|
+
copyright?: {
|
|
1065
|
+
notice: string;
|
|
1066
|
+
} | undefined;
|
|
1067
|
+
minDisplayWidth?: string | undefined;
|
|
1068
|
+
maxDisplayWidth?: string | undefined;
|
|
1069
|
+
pixelWidth?: number | undefined;
|
|
1070
|
+
pixelHeight?: number | undefined;
|
|
1071
|
+
} | {
|
|
1072
|
+
id: string;
|
|
1073
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
1074
|
+
binaryUrl: string;
|
|
1075
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
1076
|
+
title?: string | undefined;
|
|
1077
|
+
description?: string | undefined;
|
|
1078
|
+
copyright?: {
|
|
1079
|
+
notice: string;
|
|
1080
|
+
} | undefined;
|
|
1081
|
+
minDisplayWidth?: string | undefined;
|
|
1082
|
+
maxDisplayWidth?: string | undefined;
|
|
1083
|
+
pixelWidth?: number | undefined;
|
|
1084
|
+
pixelHeight?: number | undefined;
|
|
1085
|
+
})[];
|
|
1086
|
+
description?: string | undefined;
|
|
1087
|
+
} | undefined;
|
|
1088
|
+
}, {
|
|
1089
|
+
id: string;
|
|
1090
|
+
type: "http://www.ft.com/ontology/content/Clip";
|
|
1091
|
+
dataSource: {
|
|
1092
|
+
binaryUrl?: string | undefined;
|
|
1093
|
+
pixelWidth?: number | undefined;
|
|
1094
|
+
pixelHeight?: number | undefined;
|
|
1095
|
+
audioCodec?: string | undefined;
|
|
1096
|
+
duration?: number | undefined;
|
|
1097
|
+
mediaType?: string | undefined;
|
|
1098
|
+
videoCodec?: string | undefined;
|
|
1099
|
+
}[];
|
|
1100
|
+
format?: "standardInline" | "mobile" | undefined;
|
|
1101
|
+
poster?: {
|
|
1102
|
+
id: string;
|
|
1103
|
+
type: "http://www.ft.com/ontology/content/ImageSet";
|
|
1104
|
+
members: ({
|
|
1105
|
+
id: string;
|
|
1106
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
1107
|
+
binaryUrl: string;
|
|
1108
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
1109
|
+
title?: string | undefined;
|
|
1110
|
+
description?: string | undefined;
|
|
1111
|
+
copyright?: {
|
|
1112
|
+
notice: string;
|
|
1113
|
+
} | undefined;
|
|
1114
|
+
minDisplayWidth?: string | undefined;
|
|
1115
|
+
maxDisplayWidth?: string | undefined;
|
|
1116
|
+
pixelWidth?: number | undefined;
|
|
1117
|
+
pixelHeight?: number | undefined;
|
|
1118
|
+
} | {
|
|
1119
|
+
id: string;
|
|
1120
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
1121
|
+
binaryUrl: string;
|
|
1122
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
1123
|
+
title?: string | undefined;
|
|
1124
|
+
description?: string | undefined;
|
|
1125
|
+
copyright?: {
|
|
1126
|
+
notice: string;
|
|
1127
|
+
} | undefined;
|
|
1128
|
+
minDisplayWidth?: string | undefined;
|
|
1129
|
+
maxDisplayWidth?: string | undefined;
|
|
1130
|
+
pixelWidth?: number | undefined;
|
|
1131
|
+
pixelHeight?: number | undefined;
|
|
1132
|
+
})[];
|
|
1133
|
+
description?: string | undefined;
|
|
1134
|
+
} | undefined;
|
|
1135
|
+
}>, "many">;
|
|
1136
|
+
caption: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1137
|
+
dataCopyright: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1138
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1139
|
+
displayTitle: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1140
|
+
contentWarning: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
1141
|
+
noAudio: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1142
|
+
source: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1143
|
+
subtitle: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1144
|
+
publishedDate: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1145
|
+
accessibility: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1146
|
+
captions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1147
|
+
mediaType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1148
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1149
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1150
|
+
mediaType?: string | undefined;
|
|
1151
|
+
url?: string | undefined;
|
|
1152
|
+
}, {
|
|
1153
|
+
mediaType?: string | undefined;
|
|
1154
|
+
url?: string | undefined;
|
|
1155
|
+
}>, "many">>;
|
|
1156
|
+
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1157
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1158
|
+
captions?: {
|
|
1159
|
+
mediaType?: string | undefined;
|
|
1160
|
+
url?: string | undefined;
|
|
1161
|
+
}[] | undefined;
|
|
1162
|
+
transcript?: string | undefined;
|
|
1163
|
+
}, {
|
|
1164
|
+
captions?: {
|
|
1165
|
+
mediaType?: string | undefined;
|
|
1166
|
+
url?: string | undefined;
|
|
1167
|
+
}[] | undefined;
|
|
1168
|
+
transcript?: string | undefined;
|
|
1169
|
+
}>>;
|
|
1170
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1171
|
+
id: string;
|
|
1172
|
+
type: "http://www.ft.com/ontology/content/ClipSet";
|
|
1173
|
+
members: {
|
|
1174
|
+
id: string;
|
|
1175
|
+
type: "http://www.ft.com/ontology/content/Clip";
|
|
1176
|
+
dataSource: {
|
|
1177
|
+
binaryUrl?: string | undefined;
|
|
1178
|
+
pixelWidth?: number | undefined;
|
|
1179
|
+
pixelHeight?: number | undefined;
|
|
1180
|
+
audioCodec?: string | undefined;
|
|
1181
|
+
duration?: number | undefined;
|
|
1182
|
+
mediaType?: string | undefined;
|
|
1183
|
+
videoCodec?: string | undefined;
|
|
1184
|
+
}[];
|
|
1185
|
+
format?: "standardInline" | "mobile" | undefined;
|
|
1186
|
+
poster?: {
|
|
1187
|
+
id: string;
|
|
1188
|
+
type: "http://www.ft.com/ontology/content/ImageSet";
|
|
1189
|
+
members: ({
|
|
1190
|
+
id: string;
|
|
1191
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
1192
|
+
binaryUrl: string;
|
|
1193
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
1194
|
+
title?: string | undefined;
|
|
1195
|
+
description?: string | undefined;
|
|
1196
|
+
copyright?: {
|
|
1197
|
+
notice: string;
|
|
1198
|
+
} | undefined;
|
|
1199
|
+
minDisplayWidth?: string | undefined;
|
|
1200
|
+
maxDisplayWidth?: string | undefined;
|
|
1201
|
+
pixelWidth?: number | undefined;
|
|
1202
|
+
pixelHeight?: number | undefined;
|
|
1203
|
+
} | {
|
|
1204
|
+
id: string;
|
|
1205
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
1206
|
+
binaryUrl: string;
|
|
1207
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
1208
|
+
title?: string | undefined;
|
|
1209
|
+
description?: string | undefined;
|
|
1210
|
+
copyright?: {
|
|
1211
|
+
notice: string;
|
|
1212
|
+
} | undefined;
|
|
1213
|
+
minDisplayWidth?: string | undefined;
|
|
1214
|
+
maxDisplayWidth?: string | undefined;
|
|
1215
|
+
pixelWidth?: number | undefined;
|
|
1216
|
+
pixelHeight?: number | undefined;
|
|
1217
|
+
})[];
|
|
1218
|
+
description?: string | undefined;
|
|
1219
|
+
} | undefined;
|
|
1220
|
+
}[];
|
|
1221
|
+
description?: string | undefined;
|
|
1222
|
+
caption?: string | undefined;
|
|
1223
|
+
dataCopyright?: string | undefined;
|
|
1224
|
+
displayTitle?: string | undefined;
|
|
1225
|
+
contentWarning?: string[] | undefined;
|
|
1226
|
+
noAudio?: boolean | undefined;
|
|
1227
|
+
source?: string | undefined;
|
|
1228
|
+
subtitle?: string | undefined;
|
|
1229
|
+
publishedDate?: string | undefined;
|
|
1230
|
+
accessibility?: {
|
|
1231
|
+
captions?: {
|
|
1232
|
+
mediaType?: string | undefined;
|
|
1233
|
+
url?: string | undefined;
|
|
1234
|
+
}[] | undefined;
|
|
1235
|
+
transcript?: string | undefined;
|
|
1236
|
+
} | undefined;
|
|
1237
|
+
}, {
|
|
1238
|
+
id: string;
|
|
1239
|
+
type: "http://www.ft.com/ontology/content/ClipSet";
|
|
1240
|
+
members: {
|
|
1241
|
+
id: string;
|
|
1242
|
+
type: "http://www.ft.com/ontology/content/Clip";
|
|
1243
|
+
dataSource: {
|
|
1244
|
+
binaryUrl?: string | undefined;
|
|
1245
|
+
pixelWidth?: number | undefined;
|
|
1246
|
+
pixelHeight?: number | undefined;
|
|
1247
|
+
audioCodec?: string | undefined;
|
|
1248
|
+
duration?: number | undefined;
|
|
1249
|
+
mediaType?: string | undefined;
|
|
1250
|
+
videoCodec?: string | undefined;
|
|
1251
|
+
}[];
|
|
1252
|
+
format?: "standardInline" | "mobile" | undefined;
|
|
1253
|
+
poster?: {
|
|
1254
|
+
id: string;
|
|
1255
|
+
type: "http://www.ft.com/ontology/content/ImageSet";
|
|
1256
|
+
members: ({
|
|
1257
|
+
id: string;
|
|
1258
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
1259
|
+
binaryUrl: string;
|
|
1260
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
1261
|
+
title?: string | undefined;
|
|
1262
|
+
description?: string | undefined;
|
|
1263
|
+
copyright?: {
|
|
1264
|
+
notice: string;
|
|
1265
|
+
} | undefined;
|
|
1266
|
+
minDisplayWidth?: string | undefined;
|
|
1267
|
+
maxDisplayWidth?: string | undefined;
|
|
1268
|
+
pixelWidth?: number | undefined;
|
|
1269
|
+
pixelHeight?: number | undefined;
|
|
1270
|
+
} | {
|
|
1271
|
+
id: string;
|
|
1272
|
+
type: "http://www.ft.com/ontology/content/Graphic";
|
|
1273
|
+
binaryUrl: string;
|
|
1274
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
1275
|
+
title?: string | undefined;
|
|
1276
|
+
description?: string | undefined;
|
|
1277
|
+
copyright?: {
|
|
1278
|
+
notice: string;
|
|
1279
|
+
} | undefined;
|
|
1280
|
+
minDisplayWidth?: string | undefined;
|
|
1281
|
+
maxDisplayWidth?: string | undefined;
|
|
1282
|
+
pixelWidth?: number | undefined;
|
|
1283
|
+
pixelHeight?: number | undefined;
|
|
1284
|
+
})[];
|
|
1285
|
+
description?: string | undefined;
|
|
1286
|
+
} | undefined;
|
|
1287
|
+
}[];
|
|
1288
|
+
description?: string | undefined;
|
|
1289
|
+
caption?: string | undefined;
|
|
1290
|
+
dataCopyright?: string | undefined;
|
|
1291
|
+
displayTitle?: string | undefined;
|
|
1292
|
+
contentWarning?: string[] | undefined;
|
|
1293
|
+
noAudio?: boolean | undefined;
|
|
1294
|
+
source?: string | undefined;
|
|
1295
|
+
subtitle?: string | undefined;
|
|
1296
|
+
publishedDate?: string | undefined;
|
|
1297
|
+
accessibility?: {
|
|
1298
|
+
captions?: {
|
|
1299
|
+
mediaType?: string | undefined;
|
|
1300
|
+
url?: string | undefined;
|
|
1301
|
+
}[] | undefined;
|
|
1302
|
+
transcript?: string | undefined;
|
|
1303
|
+
} | undefined;
|
|
1304
|
+
}>]>, "many">>;
|
|
1305
|
+
dataSource: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1306
|
+
binaryUrl: import("zod").ZodString;
|
|
1307
|
+
duration: import("zod").ZodNumber;
|
|
1308
|
+
filesize: import("zod").ZodNumber;
|
|
1309
|
+
mediaType: import("zod").ZodString;
|
|
1310
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1311
|
+
binaryUrl: string;
|
|
1312
|
+
duration: number;
|
|
1313
|
+
mediaType: string;
|
|
1314
|
+
filesize: number;
|
|
1315
|
+
}, {
|
|
1316
|
+
binaryUrl: string;
|
|
1317
|
+
duration: number;
|
|
1318
|
+
mediaType: string;
|
|
1319
|
+
filesize: number;
|
|
1320
|
+
}>, "many">>;
|
|
1321
|
+
}, "mainImage" | "leadImages" | "leadFlourish">>, "strip", import("zod").ZodTypeAny, {
|
|
560
1322
|
id: string;
|
|
561
1323
|
types: string[];
|
|
562
1324
|
title: string;
|