@financial-times/cp-content-pipeline-schema 3.0.3 → 3.1.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.
Files changed (69) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/lib/generated/index.d.ts +33 -4
  3. package/lib/helpers/flatten-formatted-zod-errors.d.ts +1 -1
  4. package/lib/helpers/flatten-formatted-zod-errors.js +1 -0
  5. package/lib/helpers/flatten-formatted-zod-errors.js.map +1 -1
  6. package/lib/model/CapiResponse.d.ts +3 -2
  7. package/lib/model/CapiResponse.js +84 -23
  8. package/lib/model/CapiResponse.js.map +1 -1
  9. package/lib/model/Person.d.ts +2 -0
  10. package/lib/model/Person.js +16 -0
  11. package/lib/model/Person.js.map +1 -1
  12. package/lib/model/Topper.js +19 -1
  13. package/lib/model/Topper.js.map +1 -1
  14. package/lib/model/schemas/capi/article.d.ts +222 -0
  15. package/lib/model/schemas/capi/audio.d.ts +194 -0
  16. package/lib/model/schemas/capi/base-schema.d.ts +420 -0
  17. package/lib/model/schemas/capi/base-schema.js +25 -2
  18. package/lib/model/schemas/capi/base-schema.js.map +1 -1
  19. package/lib/model/schemas/capi/content-package.d.ts +194 -0
  20. package/lib/model/schemas/capi/custom-code-component.d.ts +1906 -0
  21. package/lib/model/schemas/capi/custom-code-component.js +17 -0
  22. package/lib/model/schemas/capi/custom-code-component.js.map +1 -0
  23. package/lib/model/schemas/capi/index.d.ts +2947 -16
  24. package/lib/model/schemas/capi/index.js +3 -0
  25. package/lib/model/schemas/capi/index.js.map +1 -1
  26. package/lib/model/schemas/capi/internal-content.d.ts +5 -2
  27. package/lib/model/schemas/capi/live-blog-package.d.ts +222 -0
  28. package/lib/model/schemas/capi/placeholder.d.ts +222 -0
  29. package/lib/model/schemas/capi/video.d.ts +194 -0
  30. package/lib/resolvers/content-tree/Workarounds.d.ts +5 -1
  31. package/lib/resolvers/content-tree/references/CustomCodeComponent.d.ts +13 -0
  32. package/lib/resolvers/content-tree/references/CustomCodeComponent.js +58 -0
  33. package/lib/resolvers/content-tree/references/CustomCodeComponent.js.map +1 -0
  34. package/lib/resolvers/content-tree/references/Reference.d.ts +1 -1
  35. package/lib/resolvers/content-tree/references/index.d.ts +3 -1
  36. package/lib/resolvers/content-tree/references/index.js +3 -0
  37. package/lib/resolvers/content-tree/references/index.js.map +1 -1
  38. package/lib/resolvers/content-tree/tagMappings.js +27 -2
  39. package/lib/resolvers/content-tree/tagMappings.js.map +1 -1
  40. package/lib/resolvers/content-tree/tagMappings.test.js +19 -0
  41. package/lib/resolvers/content-tree/tagMappings.test.js.map +1 -1
  42. package/lib/resolvers/content.d.ts +8 -8
  43. package/lib/resolvers/content.js +4 -0
  44. package/lib/resolvers/content.js.map +1 -1
  45. package/lib/resolvers/index.d.ts +10 -9
  46. package/lib/resolvers/scalars.d.ts +2 -2
  47. package/lib/resolvers/scalars.js +1 -0
  48. package/lib/resolvers/scalars.js.map +1 -1
  49. package/package.json +2 -2
  50. package/queries/article.graphql +24 -7
  51. package/src/generated/index.ts +34 -3
  52. package/src/helpers/flatten-formatted-zod-errors.ts +2 -1
  53. package/src/model/CapiResponse.ts +93 -34
  54. package/src/model/Person.ts +19 -0
  55. package/src/model/Topper.ts +18 -1
  56. package/src/model/schemas/capi/base-schema.ts +27 -1
  57. package/src/model/schemas/capi/custom-code-component.ts +20 -0
  58. package/src/model/schemas/capi/index.ts +3 -0
  59. package/src/model/schemas/capi/internal-content.ts +7 -0
  60. package/src/resolvers/content-tree/Workarounds.ts +7 -1
  61. package/src/resolvers/content-tree/references/CustomCodeComponent.ts +78 -0
  62. package/src/resolvers/content-tree/references/index.ts +5 -0
  63. package/src/resolvers/content-tree/tagMappings.test.ts +29 -0
  64. package/src/resolvers/content-tree/tagMappings.ts +46 -4
  65. package/src/resolvers/content.ts +7 -0
  66. package/src/resolvers/scalars.ts +3 -1
  67. package/tsconfig.tsbuildinfo +1 -1
  68. package/typedefs/content.graphql +1 -1
  69. package/typedefs/references/CustomCodeComponent.graphql +17 -0
@@ -0,0 +1,1906 @@
1
+ export declare const customCodeComponentSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<Omit<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<Pick<{
2
+ id: import("zod").ZodString;
3
+ annotations: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<{
4
+ id: import("zod").ZodString;
5
+ apiUrl: import("zod").ZodString;
6
+ directType: import("zod").ZodString;
7
+ prefLabel: import("zod").ZodString;
8
+ type: import("zod").ZodOptional<import("zod").ZodString>;
9
+ types: import("zod").ZodArray<import("zod").ZodString, "many">;
10
+ headshot: import("zod").ZodOptional<import("zod").ZodString>;
11
+ }, {
12
+ predicate: import("zod").ZodString;
13
+ }>, "strip", import("zod").ZodTypeAny, {
14
+ id: string;
15
+ apiUrl: string;
16
+ directType: string;
17
+ prefLabel: string;
18
+ types: string[];
19
+ predicate: string;
20
+ type?: string | undefined;
21
+ headshot?: string | undefined;
22
+ }, {
23
+ id: string;
24
+ apiUrl: string;
25
+ directType: string;
26
+ prefLabel: string;
27
+ types: string[];
28
+ predicate: string;
29
+ type?: string | undefined;
30
+ headshot?: string | undefined;
31
+ }>, "many">;
32
+ webUrl: import("zod").ZodOptional<import("zod").ZodString>;
33
+ canonicalWebUrl: import("zod").ZodOptional<import("zod").ZodString>;
34
+ apiUrl: import("zod").ZodOptional<import("zod").ZodString>;
35
+ path: import("zod").ZodString;
36
+ versionRange: import("zod").ZodString;
37
+ type: import("zod").ZodOptional<import("zod").ZodString>;
38
+ types: import("zod").ZodArray<import("zod").ZodString, "many">;
39
+ standout: import("zod").ZodOptional<import("zod").ZodObject<{
40
+ editorsChoice: import("zod").ZodBoolean;
41
+ exclusive: import("zod").ZodBoolean;
42
+ scoop: import("zod").ZodBoolean;
43
+ }, "strip", import("zod").ZodTypeAny, {
44
+ editorsChoice: boolean;
45
+ exclusive: boolean;
46
+ scoop: boolean;
47
+ }, {
48
+ editorsChoice: boolean;
49
+ exclusive: boolean;
50
+ scoop: boolean;
51
+ }>>;
52
+ publishedDate: import("zod").ZodString;
53
+ firstPublishedDate: import("zod").ZodString;
54
+ publishReference: import("zod").ZodOptional<import("zod").ZodString>;
55
+ lastModified: import("zod").ZodOptional<import("zod").ZodString>;
56
+ realtime: import("zod").ZodBoolean;
57
+ editorialDesk: import("zod").ZodOptional<import("zod").ZodString>;
58
+ accessLevel: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"premium">, import("zod").ZodLiteral<"subscribed">, import("zod").ZodLiteral<"registered">, import("zod").ZodLiteral<"free">]>>;
59
+ canBeSyndicated: import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">, import("zod").ZodLiteral<"withContributorPayment">, import("zod").ZodLiteral<"unknown">]>;
60
+ canBeDistributed: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">]>>;
61
+ topper: import("zod").ZodOptional<import("zod").ZodObject<{
62
+ headline: import("zod").ZodOptional<import("zod").ZodString>;
63
+ standfirst: import("zod").ZodOptional<import("zod").ZodString>;
64
+ backgroundColour: import("zod").ZodString;
65
+ backgroundBox: import("zod").ZodOptional<import("zod").ZodBoolean>;
66
+ textShadow: import("zod").ZodOptional<import("zod").ZodBoolean>;
67
+ layout: import("zod").ZodString;
68
+ layoutWidth: import("zod").ZodOptional<import("zod").ZodString>;
69
+ }, "strip", import("zod").ZodTypeAny, {
70
+ backgroundColour: string;
71
+ layout: string;
72
+ headline?: string | undefined;
73
+ standfirst?: string | undefined;
74
+ backgroundBox?: boolean | undefined;
75
+ textShadow?: boolean | undefined;
76
+ layoutWidth?: string | undefined;
77
+ }, {
78
+ backgroundColour: string;
79
+ layout: string;
80
+ headline?: string | undefined;
81
+ standfirst?: string | undefined;
82
+ backgroundBox?: boolean | undefined;
83
+ textShadow?: boolean | undefined;
84
+ layoutWidth?: string | undefined;
85
+ }>>;
86
+ comments: import("zod").ZodOptional<import("zod").ZodObject<{
87
+ enabled: import("zod").ZodBoolean;
88
+ }, "strip", import("zod").ZodTypeAny, {
89
+ enabled: boolean;
90
+ }, {
91
+ enabled: boolean;
92
+ }>>;
93
+ containedIn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
94
+ apiUrl: import("zod").ZodString;
95
+ id: import("zod").ZodString;
96
+ }, "strip", import("zod").ZodTypeAny, {
97
+ id: string;
98
+ apiUrl: string;
99
+ }, {
100
+ id: string;
101
+ apiUrl: string;
102
+ }>, "many">>;
103
+ tableOfContents: import("zod").ZodOptional<import("zod").ZodObject<{
104
+ labelType: import("zod").ZodString;
105
+ sequence: import("zod").ZodString;
106
+ }, "strip", import("zod").ZodTypeAny, {
107
+ labelType: string;
108
+ sequence: string;
109
+ }, {
110
+ labelType: string;
111
+ sequence: string;
112
+ }>>;
113
+ }, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed">, Pick<{
114
+ title: import("zod").ZodString;
115
+ standfirst: import("zod").ZodOptional<import("zod").ZodString>;
116
+ byline: import("zod").ZodOptional<import("zod").ZodString>;
117
+ bodyXML: import("zod").ZodString;
118
+ summary: import("zod").ZodObject<{
119
+ bodyXML: import("zod").ZodString;
120
+ }, "strip", import("zod").ZodTypeAny, {
121
+ bodyXML: string;
122
+ }, {
123
+ bodyXML: string;
124
+ }>;
125
+ alternativeTitles: import("zod").ZodOptional<import("zod").ZodObject<{
126
+ promotionalTitle: import("zod").ZodString;
127
+ }, "strip", import("zod").ZodTypeAny, {
128
+ promotionalTitle: string;
129
+ }, {
130
+ promotionalTitle: string;
131
+ }>>;
132
+ alternativeStandfirsts: import("zod").ZodOptional<import("zod").ZodObject<{
133
+ promotionalStandfirst: import("zod").ZodOptional<import("zod").ZodString>;
134
+ }, "strip", import("zod").ZodTypeAny, {
135
+ promotionalStandfirst?: string | undefined;
136
+ }, {
137
+ promotionalStandfirst?: string | undefined;
138
+ }>>;
139
+ pinnedPosts: import("zod").ZodArray<import("zod").ZodString, "many">;
140
+ contains: import("zod").ZodArray<import("zod").ZodObject<{
141
+ id: import("zod").ZodString;
142
+ apiUrl: import("zod").ZodString;
143
+ }, "strip", import("zod").ZodTypeAny, {
144
+ id: string;
145
+ apiUrl: string;
146
+ }, {
147
+ id: string;
148
+ apiUrl: string;
149
+ }>, "many">;
150
+ design: import("zod").ZodObject<{
151
+ theme: import("zod").ZodUnion<[import("zod").ZodLiteral<"special-report">, import("zod").ZodLiteral<"extra">, import("zod").ZodLiteral<"basic">, import("zod").ZodLiteral<"extra-wide">]>;
152
+ }, "strip", import("zod").ZodTypeAny, {
153
+ theme: "special-report" | "extra" | "basic" | "extra-wide";
154
+ }, {
155
+ theme: "special-report" | "extra" | "basic" | "extra-wide";
156
+ }>;
157
+ transcript: import("zod").ZodOptional<import("zod").ZodString>;
158
+ }, "bodyXML">>, {
159
+ apiUrl: import("zod").ZodString;
160
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/CustomCodeComponent">;
161
+ path: import("zod").ZodString;
162
+ versionRange: import("zod").ZodString;
163
+ attributes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodUndefined]>>;
164
+ }>, "type">, Pick<{
165
+ id: import("zod").ZodString;
166
+ annotations: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<{
167
+ id: import("zod").ZodString;
168
+ apiUrl: import("zod").ZodString;
169
+ directType: import("zod").ZodString;
170
+ prefLabel: import("zod").ZodString;
171
+ type: import("zod").ZodOptional<import("zod").ZodString>;
172
+ types: import("zod").ZodArray<import("zod").ZodString, "many">;
173
+ headshot: import("zod").ZodOptional<import("zod").ZodString>;
174
+ }, {
175
+ predicate: import("zod").ZodString;
176
+ }>, "strip", import("zod").ZodTypeAny, {
177
+ id: string;
178
+ apiUrl: string;
179
+ directType: string;
180
+ prefLabel: string;
181
+ types: string[];
182
+ predicate: string;
183
+ type?: string | undefined;
184
+ headshot?: string | undefined;
185
+ }, {
186
+ id: string;
187
+ apiUrl: string;
188
+ directType: string;
189
+ prefLabel: string;
190
+ types: string[];
191
+ predicate: string;
192
+ type?: string | undefined;
193
+ headshot?: string | undefined;
194
+ }>, "many">;
195
+ webUrl: import("zod").ZodOptional<import("zod").ZodString>;
196
+ canonicalWebUrl: import("zod").ZodOptional<import("zod").ZodString>;
197
+ apiUrl: import("zod").ZodOptional<import("zod").ZodString>;
198
+ path: import("zod").ZodString;
199
+ versionRange: import("zod").ZodString;
200
+ type: import("zod").ZodOptional<import("zod").ZodString>;
201
+ types: import("zod").ZodArray<import("zod").ZodString, "many">;
202
+ standout: import("zod").ZodOptional<import("zod").ZodObject<{
203
+ editorsChoice: import("zod").ZodBoolean;
204
+ exclusive: import("zod").ZodBoolean;
205
+ scoop: import("zod").ZodBoolean;
206
+ }, "strip", import("zod").ZodTypeAny, {
207
+ editorsChoice: boolean;
208
+ exclusive: boolean;
209
+ scoop: boolean;
210
+ }, {
211
+ editorsChoice: boolean;
212
+ exclusive: boolean;
213
+ scoop: boolean;
214
+ }>>;
215
+ publishedDate: import("zod").ZodString;
216
+ firstPublishedDate: import("zod").ZodString;
217
+ publishReference: import("zod").ZodOptional<import("zod").ZodString>;
218
+ lastModified: import("zod").ZodOptional<import("zod").ZodString>;
219
+ realtime: import("zod").ZodBoolean;
220
+ editorialDesk: import("zod").ZodOptional<import("zod").ZodString>;
221
+ accessLevel: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"premium">, import("zod").ZodLiteral<"subscribed">, import("zod").ZodLiteral<"registered">, import("zod").ZodLiteral<"free">]>>;
222
+ canBeSyndicated: import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">, import("zod").ZodLiteral<"withContributorPayment">, import("zod").ZodLiteral<"unknown">]>;
223
+ canBeDistributed: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">]>>;
224
+ topper: import("zod").ZodOptional<import("zod").ZodObject<{
225
+ headline: import("zod").ZodOptional<import("zod").ZodString>;
226
+ standfirst: import("zod").ZodOptional<import("zod").ZodString>;
227
+ backgroundColour: import("zod").ZodString;
228
+ backgroundBox: import("zod").ZodOptional<import("zod").ZodBoolean>;
229
+ textShadow: import("zod").ZodOptional<import("zod").ZodBoolean>;
230
+ layout: import("zod").ZodString;
231
+ layoutWidth: import("zod").ZodOptional<import("zod").ZodString>;
232
+ }, "strip", import("zod").ZodTypeAny, {
233
+ backgroundColour: string;
234
+ layout: string;
235
+ headline?: string | undefined;
236
+ standfirst?: string | undefined;
237
+ backgroundBox?: boolean | undefined;
238
+ textShadow?: boolean | undefined;
239
+ layoutWidth?: string | undefined;
240
+ }, {
241
+ backgroundColour: string;
242
+ layout: string;
243
+ headline?: string | undefined;
244
+ standfirst?: string | undefined;
245
+ backgroundBox?: boolean | undefined;
246
+ textShadow?: boolean | undefined;
247
+ layoutWidth?: string | undefined;
248
+ }>>;
249
+ comments: import("zod").ZodOptional<import("zod").ZodObject<{
250
+ enabled: import("zod").ZodBoolean;
251
+ }, "strip", import("zod").ZodTypeAny, {
252
+ enabled: boolean;
253
+ }, {
254
+ enabled: boolean;
255
+ }>>;
256
+ containedIn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
257
+ apiUrl: import("zod").ZodString;
258
+ id: import("zod").ZodString;
259
+ }, "strip", import("zod").ZodTypeAny, {
260
+ id: string;
261
+ apiUrl: string;
262
+ }, {
263
+ id: string;
264
+ apiUrl: string;
265
+ }>, "many">>;
266
+ tableOfContents: import("zod").ZodOptional<import("zod").ZodObject<{
267
+ labelType: import("zod").ZodString;
268
+ sequence: import("zod").ZodString;
269
+ }, "strip", import("zod").ZodTypeAny, {
270
+ labelType: string;
271
+ sequence: string;
272
+ }, {
273
+ labelType: string;
274
+ sequence: string;
275
+ }>>;
276
+ }, "types" | "annotations">>, Pick<{
277
+ mainImage: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
278
+ id: import("zod").ZodString;
279
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
280
+ description: import("zod").ZodOptional<import("zod").ZodString>;
281
+ members: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
282
+ id: import("zod").ZodString;
283
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
284
+ 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">]>>;
285
+ title: import("zod").ZodOptional<import("zod").ZodString>;
286
+ description: import("zod").ZodOptional<import("zod").ZodString>;
287
+ binaryUrl: import("zod").ZodString;
288
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
289
+ notice: import("zod").ZodString;
290
+ }, "strip", import("zod").ZodTypeAny, {
291
+ notice: string;
292
+ }, {
293
+ notice: string;
294
+ }>>;
295
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
296
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
297
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
298
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
299
+ }, "strip", import("zod").ZodTypeAny, {
300
+ id: string;
301
+ type: "http://www.ft.com/ontology/content/Image";
302
+ binaryUrl: string;
303
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
304
+ title?: string | undefined;
305
+ description?: string | undefined;
306
+ copyright?: {
307
+ notice: string;
308
+ } | undefined;
309
+ minDisplayWidth?: string | undefined;
310
+ maxDisplayWidth?: string | undefined;
311
+ pixelWidth?: number | undefined;
312
+ pixelHeight?: number | undefined;
313
+ }, {
314
+ id: string;
315
+ type: "http://www.ft.com/ontology/content/Image";
316
+ binaryUrl: string;
317
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
318
+ title?: string | undefined;
319
+ description?: string | undefined;
320
+ copyright?: {
321
+ notice: string;
322
+ } | undefined;
323
+ minDisplayWidth?: string | undefined;
324
+ maxDisplayWidth?: string | undefined;
325
+ pixelWidth?: number | undefined;
326
+ pixelHeight?: number | undefined;
327
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
328
+ id: import("zod").ZodString;
329
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
330
+ 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">]>>;
331
+ title: import("zod").ZodOptional<import("zod").ZodString>;
332
+ description: import("zod").ZodOptional<import("zod").ZodString>;
333
+ binaryUrl: import("zod").ZodString;
334
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
335
+ notice: import("zod").ZodString;
336
+ }, "strip", import("zod").ZodTypeAny, {
337
+ notice: string;
338
+ }, {
339
+ notice: string;
340
+ }>>;
341
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
342
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
343
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
344
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
345
+ }, {
346
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
347
+ }>, "strip", import("zod").ZodTypeAny, {
348
+ id: string;
349
+ type: "http://www.ft.com/ontology/content/Graphic";
350
+ binaryUrl: string;
351
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
352
+ title?: string | undefined;
353
+ description?: string | undefined;
354
+ copyright?: {
355
+ notice: string;
356
+ } | undefined;
357
+ minDisplayWidth?: string | undefined;
358
+ maxDisplayWidth?: string | undefined;
359
+ pixelWidth?: number | undefined;
360
+ pixelHeight?: number | undefined;
361
+ }, {
362
+ id: string;
363
+ type: "http://www.ft.com/ontology/content/Graphic";
364
+ binaryUrl: string;
365
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
366
+ title?: string | undefined;
367
+ description?: string | undefined;
368
+ copyright?: {
369
+ notice: string;
370
+ } | undefined;
371
+ minDisplayWidth?: string | undefined;
372
+ maxDisplayWidth?: string | undefined;
373
+ pixelWidth?: number | undefined;
374
+ pixelHeight?: number | undefined;
375
+ }>]>, "many">;
376
+ }, "strip", import("zod").ZodTypeAny, {
377
+ id: string;
378
+ type: "http://www.ft.com/ontology/content/ImageSet";
379
+ members: ({
380
+ id: string;
381
+ type: "http://www.ft.com/ontology/content/Image";
382
+ binaryUrl: string;
383
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
384
+ title?: string | undefined;
385
+ description?: string | undefined;
386
+ copyright?: {
387
+ notice: string;
388
+ } | undefined;
389
+ minDisplayWidth?: string | undefined;
390
+ maxDisplayWidth?: string | undefined;
391
+ pixelWidth?: number | undefined;
392
+ pixelHeight?: number | undefined;
393
+ } | {
394
+ id: string;
395
+ type: "http://www.ft.com/ontology/content/Graphic";
396
+ binaryUrl: string;
397
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
398
+ title?: string | undefined;
399
+ description?: string | undefined;
400
+ copyright?: {
401
+ notice: string;
402
+ } | undefined;
403
+ minDisplayWidth?: string | undefined;
404
+ maxDisplayWidth?: string | undefined;
405
+ pixelWidth?: number | undefined;
406
+ pixelHeight?: number | undefined;
407
+ })[];
408
+ description?: string | undefined;
409
+ }, {
410
+ id: string;
411
+ type: "http://www.ft.com/ontology/content/ImageSet";
412
+ members: ({
413
+ id: string;
414
+ type: "http://www.ft.com/ontology/content/Image";
415
+ binaryUrl: string;
416
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
417
+ title?: string | undefined;
418
+ description?: string | undefined;
419
+ copyright?: {
420
+ notice: string;
421
+ } | undefined;
422
+ minDisplayWidth?: string | undefined;
423
+ maxDisplayWidth?: string | undefined;
424
+ pixelWidth?: number | undefined;
425
+ pixelHeight?: number | undefined;
426
+ } | {
427
+ id: string;
428
+ type: "http://www.ft.com/ontology/content/Graphic";
429
+ binaryUrl: string;
430
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
431
+ title?: string | undefined;
432
+ description?: string | undefined;
433
+ copyright?: {
434
+ notice: string;
435
+ } | undefined;
436
+ minDisplayWidth?: string | undefined;
437
+ maxDisplayWidth?: string | undefined;
438
+ pixelWidth?: number | undefined;
439
+ pixelHeight?: number | undefined;
440
+ })[];
441
+ description?: string | undefined;
442
+ }>, import("zod").ZodObject<{
443
+ id: import("zod").ZodString;
444
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
445
+ 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">]>>;
446
+ title: import("zod").ZodOptional<import("zod").ZodString>;
447
+ description: import("zod").ZodOptional<import("zod").ZodString>;
448
+ binaryUrl: import("zod").ZodString;
449
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
450
+ notice: import("zod").ZodString;
451
+ }, "strip", import("zod").ZodTypeAny, {
452
+ notice: string;
453
+ }, {
454
+ notice: string;
455
+ }>>;
456
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
457
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
458
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
459
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
460
+ }, "strip", import("zod").ZodTypeAny, {
461
+ id: string;
462
+ type: "http://www.ft.com/ontology/content/Image";
463
+ binaryUrl: string;
464
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
465
+ title?: string | undefined;
466
+ description?: string | undefined;
467
+ copyright?: {
468
+ notice: string;
469
+ } | undefined;
470
+ minDisplayWidth?: string | undefined;
471
+ maxDisplayWidth?: string | undefined;
472
+ pixelWidth?: number | undefined;
473
+ pixelHeight?: number | undefined;
474
+ }, {
475
+ id: string;
476
+ type: "http://www.ft.com/ontology/content/Image";
477
+ binaryUrl: string;
478
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
479
+ title?: string | undefined;
480
+ description?: string | undefined;
481
+ copyright?: {
482
+ notice: string;
483
+ } | undefined;
484
+ minDisplayWidth?: string | undefined;
485
+ maxDisplayWidth?: string | undefined;
486
+ pixelWidth?: number | undefined;
487
+ pixelHeight?: number | undefined;
488
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
489
+ id: import("zod").ZodString;
490
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
491
+ 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">]>>;
492
+ title: import("zod").ZodOptional<import("zod").ZodString>;
493
+ description: import("zod").ZodOptional<import("zod").ZodString>;
494
+ binaryUrl: import("zod").ZodString;
495
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
496
+ notice: import("zod").ZodString;
497
+ }, "strip", import("zod").ZodTypeAny, {
498
+ notice: string;
499
+ }, {
500
+ notice: string;
501
+ }>>;
502
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
503
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
504
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
505
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
506
+ }, {
507
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
508
+ }>, "strip", import("zod").ZodTypeAny, {
509
+ id: string;
510
+ type: "http://www.ft.com/ontology/content/Graphic";
511
+ binaryUrl: string;
512
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
513
+ title?: string | undefined;
514
+ description?: string | undefined;
515
+ copyright?: {
516
+ notice: string;
517
+ } | undefined;
518
+ minDisplayWidth?: string | undefined;
519
+ maxDisplayWidth?: string | undefined;
520
+ pixelWidth?: number | undefined;
521
+ pixelHeight?: number | undefined;
522
+ }, {
523
+ id: string;
524
+ type: "http://www.ft.com/ontology/content/Graphic";
525
+ binaryUrl: string;
526
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
527
+ title?: string | undefined;
528
+ description?: string | undefined;
529
+ copyright?: {
530
+ notice: string;
531
+ } | undefined;
532
+ minDisplayWidth?: string | undefined;
533
+ maxDisplayWidth?: string | undefined;
534
+ pixelWidth?: number | undefined;
535
+ pixelHeight?: number | undefined;
536
+ }>]>>;
537
+ leadImages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
538
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>;
539
+ id: import("zod").ZodString;
540
+ image: import("zod").ZodUnion<[import("zod").ZodObject<{
541
+ id: import("zod").ZodString;
542
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
543
+ 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">]>>;
544
+ title: import("zod").ZodOptional<import("zod").ZodString>;
545
+ description: import("zod").ZodOptional<import("zod").ZodString>;
546
+ binaryUrl: import("zod").ZodString;
547
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
548
+ notice: import("zod").ZodString;
549
+ }, "strip", import("zod").ZodTypeAny, {
550
+ notice: string;
551
+ }, {
552
+ notice: string;
553
+ }>>;
554
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
555
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
556
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
557
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
558
+ }, "strip", import("zod").ZodTypeAny, {
559
+ id: string;
560
+ type: "http://www.ft.com/ontology/content/Image";
561
+ binaryUrl: string;
562
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
563
+ title?: string | undefined;
564
+ description?: string | undefined;
565
+ copyright?: {
566
+ notice: string;
567
+ } | undefined;
568
+ minDisplayWidth?: string | undefined;
569
+ maxDisplayWidth?: string | undefined;
570
+ pixelWidth?: number | undefined;
571
+ pixelHeight?: number | undefined;
572
+ }, {
573
+ id: string;
574
+ type: "http://www.ft.com/ontology/content/Image";
575
+ binaryUrl: string;
576
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
577
+ title?: string | undefined;
578
+ description?: string | undefined;
579
+ copyright?: {
580
+ notice: string;
581
+ } | undefined;
582
+ minDisplayWidth?: string | undefined;
583
+ maxDisplayWidth?: string | undefined;
584
+ pixelWidth?: number | undefined;
585
+ pixelHeight?: number | undefined;
586
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
587
+ id: import("zod").ZodString;
588
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
589
+ 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">]>>;
590
+ title: import("zod").ZodOptional<import("zod").ZodString>;
591
+ description: import("zod").ZodOptional<import("zod").ZodString>;
592
+ binaryUrl: import("zod").ZodString;
593
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
594
+ notice: import("zod").ZodString;
595
+ }, "strip", import("zod").ZodTypeAny, {
596
+ notice: string;
597
+ }, {
598
+ notice: string;
599
+ }>>;
600
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
601
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
602
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
603
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
604
+ }, {
605
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
606
+ }>, "strip", import("zod").ZodTypeAny, {
607
+ id: string;
608
+ type: "http://www.ft.com/ontology/content/Graphic";
609
+ binaryUrl: string;
610
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
611
+ title?: string | undefined;
612
+ description?: string | undefined;
613
+ copyright?: {
614
+ notice: string;
615
+ } | undefined;
616
+ minDisplayWidth?: string | undefined;
617
+ maxDisplayWidth?: string | undefined;
618
+ pixelWidth?: number | undefined;
619
+ pixelHeight?: number | undefined;
620
+ }, {
621
+ id: string;
622
+ type: "http://www.ft.com/ontology/content/Graphic";
623
+ binaryUrl: string;
624
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
625
+ title?: string | undefined;
626
+ description?: string | undefined;
627
+ copyright?: {
628
+ notice: string;
629
+ } | undefined;
630
+ minDisplayWidth?: string | undefined;
631
+ maxDisplayWidth?: string | undefined;
632
+ pixelWidth?: number | undefined;
633
+ pixelHeight?: number | undefined;
634
+ }>]>;
635
+ }, "strip", import("zod").ZodTypeAny, {
636
+ id: string;
637
+ type: "standard" | "square" | "wide" | "portrait" | "landscape";
638
+ image: {
639
+ id: string;
640
+ type: "http://www.ft.com/ontology/content/Image";
641
+ binaryUrl: string;
642
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
643
+ title?: string | undefined;
644
+ description?: string | undefined;
645
+ copyright?: {
646
+ notice: string;
647
+ } | undefined;
648
+ minDisplayWidth?: string | undefined;
649
+ maxDisplayWidth?: string | undefined;
650
+ pixelWidth?: number | undefined;
651
+ pixelHeight?: number | undefined;
652
+ } | {
653
+ id: string;
654
+ type: "http://www.ft.com/ontology/content/Graphic";
655
+ binaryUrl: string;
656
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
657
+ title?: string | undefined;
658
+ description?: string | undefined;
659
+ copyright?: {
660
+ notice: string;
661
+ } | undefined;
662
+ minDisplayWidth?: string | undefined;
663
+ maxDisplayWidth?: string | undefined;
664
+ pixelWidth?: number | undefined;
665
+ pixelHeight?: number | undefined;
666
+ };
667
+ }, {
668
+ id: string;
669
+ type: "standard" | "square" | "wide" | "portrait" | "landscape";
670
+ image: {
671
+ id: string;
672
+ type: "http://www.ft.com/ontology/content/Image";
673
+ binaryUrl: string;
674
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
675
+ title?: string | undefined;
676
+ description?: string | undefined;
677
+ copyright?: {
678
+ notice: string;
679
+ } | undefined;
680
+ minDisplayWidth?: string | undefined;
681
+ maxDisplayWidth?: string | undefined;
682
+ pixelWidth?: number | undefined;
683
+ pixelHeight?: number | undefined;
684
+ } | {
685
+ id: string;
686
+ type: "http://www.ft.com/ontology/content/Graphic";
687
+ binaryUrl: string;
688
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
689
+ title?: string | undefined;
690
+ description?: string | undefined;
691
+ copyright?: {
692
+ notice: string;
693
+ } | undefined;
694
+ minDisplayWidth?: string | undefined;
695
+ maxDisplayWidth?: string | undefined;
696
+ pixelWidth?: number | undefined;
697
+ pixelHeight?: number | undefined;
698
+ };
699
+ }>, "many">>;
700
+ alternativeImages: import("zod").ZodOptional<import("zod").ZodObject<{
701
+ promotionalImage: import("zod").ZodObject<{
702
+ id: import("zod").ZodString;
703
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
704
+ 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">]>>;
705
+ title: import("zod").ZodOptional<import("zod").ZodString>;
706
+ description: import("zod").ZodOptional<import("zod").ZodString>;
707
+ binaryUrl: import("zod").ZodString;
708
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
709
+ notice: import("zod").ZodString;
710
+ }, "strip", import("zod").ZodTypeAny, {
711
+ notice: string;
712
+ }, {
713
+ notice: string;
714
+ }>>;
715
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
716
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
717
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
718
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
719
+ }, "strip", import("zod").ZodTypeAny, {
720
+ id: string;
721
+ type: "http://www.ft.com/ontology/content/Image";
722
+ binaryUrl: string;
723
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
724
+ title?: string | undefined;
725
+ description?: string | undefined;
726
+ copyright?: {
727
+ notice: string;
728
+ } | undefined;
729
+ minDisplayWidth?: string | undefined;
730
+ maxDisplayWidth?: string | undefined;
731
+ pixelWidth?: number | undefined;
732
+ pixelHeight?: number | undefined;
733
+ }, {
734
+ id: string;
735
+ type: "http://www.ft.com/ontology/content/Image";
736
+ binaryUrl: string;
737
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
738
+ title?: string | undefined;
739
+ description?: string | undefined;
740
+ copyright?: {
741
+ notice: string;
742
+ } | undefined;
743
+ minDisplayWidth?: string | undefined;
744
+ maxDisplayWidth?: string | undefined;
745
+ pixelWidth?: number | undefined;
746
+ pixelHeight?: number | undefined;
747
+ }>;
748
+ }, "strip", import("zod").ZodTypeAny, {
749
+ promotionalImage: {
750
+ id: string;
751
+ type: "http://www.ft.com/ontology/content/Image";
752
+ binaryUrl: string;
753
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
754
+ title?: string | undefined;
755
+ description?: string | undefined;
756
+ copyright?: {
757
+ notice: string;
758
+ } | undefined;
759
+ minDisplayWidth?: string | undefined;
760
+ maxDisplayWidth?: string | undefined;
761
+ pixelWidth?: number | undefined;
762
+ pixelHeight?: number | undefined;
763
+ };
764
+ }, {
765
+ promotionalImage: {
766
+ id: string;
767
+ type: "http://www.ft.com/ontology/content/Image";
768
+ binaryUrl: string;
769
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
770
+ title?: string | undefined;
771
+ description?: string | undefined;
772
+ copyright?: {
773
+ notice: string;
774
+ } | undefined;
775
+ minDisplayWidth?: string | undefined;
776
+ maxDisplayWidth?: string | undefined;
777
+ pixelWidth?: number | undefined;
778
+ pixelHeight?: number | undefined;
779
+ };
780
+ }>>;
781
+ leadFlourish: import("zod").ZodOptional<import("zod").ZodObject<{
782
+ id: import("zod").ZodString;
783
+ type: import("zod").ZodString;
784
+ description: import("zod").ZodString;
785
+ }, "strip", import("zod").ZodTypeAny, {
786
+ id: string;
787
+ type: string;
788
+ description: string;
789
+ }, {
790
+ id: string;
791
+ type: string;
792
+ description: string;
793
+ }>>;
794
+ embeds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
795
+ id: import("zod").ZodString;
796
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
797
+ description: import("zod").ZodOptional<import("zod").ZodString>;
798
+ members: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
799
+ id: import("zod").ZodString;
800
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
801
+ 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">]>>;
802
+ title: import("zod").ZodOptional<import("zod").ZodString>;
803
+ description: import("zod").ZodOptional<import("zod").ZodString>;
804
+ binaryUrl: import("zod").ZodString;
805
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
806
+ notice: import("zod").ZodString;
807
+ }, "strip", import("zod").ZodTypeAny, {
808
+ notice: string;
809
+ }, {
810
+ notice: string;
811
+ }>>;
812
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
813
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
814
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
815
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
816
+ }, "strip", import("zod").ZodTypeAny, {
817
+ id: string;
818
+ type: "http://www.ft.com/ontology/content/Image";
819
+ binaryUrl: string;
820
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
821
+ title?: string | undefined;
822
+ description?: string | undefined;
823
+ copyright?: {
824
+ notice: string;
825
+ } | undefined;
826
+ minDisplayWidth?: string | undefined;
827
+ maxDisplayWidth?: string | undefined;
828
+ pixelWidth?: number | undefined;
829
+ pixelHeight?: number | undefined;
830
+ }, {
831
+ id: string;
832
+ type: "http://www.ft.com/ontology/content/Image";
833
+ binaryUrl: string;
834
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
835
+ title?: string | undefined;
836
+ description?: string | undefined;
837
+ copyright?: {
838
+ notice: string;
839
+ } | undefined;
840
+ minDisplayWidth?: string | undefined;
841
+ maxDisplayWidth?: string | undefined;
842
+ pixelWidth?: number | undefined;
843
+ pixelHeight?: number | undefined;
844
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
845
+ id: import("zod").ZodString;
846
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
847
+ 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">]>>;
848
+ title: import("zod").ZodOptional<import("zod").ZodString>;
849
+ description: import("zod").ZodOptional<import("zod").ZodString>;
850
+ binaryUrl: import("zod").ZodString;
851
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
852
+ notice: import("zod").ZodString;
853
+ }, "strip", import("zod").ZodTypeAny, {
854
+ notice: string;
855
+ }, {
856
+ notice: string;
857
+ }>>;
858
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
859
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
860
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
861
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
862
+ }, {
863
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
864
+ }>, "strip", import("zod").ZodTypeAny, {
865
+ id: string;
866
+ type: "http://www.ft.com/ontology/content/Graphic";
867
+ binaryUrl: string;
868
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
869
+ title?: string | undefined;
870
+ description?: string | undefined;
871
+ copyright?: {
872
+ notice: string;
873
+ } | undefined;
874
+ minDisplayWidth?: string | undefined;
875
+ maxDisplayWidth?: string | undefined;
876
+ pixelWidth?: number | undefined;
877
+ pixelHeight?: number | undefined;
878
+ }, {
879
+ id: string;
880
+ type: "http://www.ft.com/ontology/content/Graphic";
881
+ binaryUrl: string;
882
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
883
+ title?: string | undefined;
884
+ description?: string | undefined;
885
+ copyright?: {
886
+ notice: string;
887
+ } | undefined;
888
+ minDisplayWidth?: string | undefined;
889
+ maxDisplayWidth?: string | undefined;
890
+ pixelWidth?: number | undefined;
891
+ pixelHeight?: number | undefined;
892
+ }>]>, "many">;
893
+ }, "strip", import("zod").ZodTypeAny, {
894
+ id: string;
895
+ type: "http://www.ft.com/ontology/content/ImageSet";
896
+ members: ({
897
+ id: string;
898
+ type: "http://www.ft.com/ontology/content/Image";
899
+ binaryUrl: string;
900
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
901
+ title?: string | undefined;
902
+ description?: string | undefined;
903
+ copyright?: {
904
+ notice: string;
905
+ } | undefined;
906
+ minDisplayWidth?: string | undefined;
907
+ maxDisplayWidth?: string | undefined;
908
+ pixelWidth?: number | undefined;
909
+ pixelHeight?: number | undefined;
910
+ } | {
911
+ id: string;
912
+ type: "http://www.ft.com/ontology/content/Graphic";
913
+ binaryUrl: string;
914
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
915
+ title?: string | undefined;
916
+ description?: string | undefined;
917
+ copyright?: {
918
+ notice: string;
919
+ } | undefined;
920
+ minDisplayWidth?: string | undefined;
921
+ maxDisplayWidth?: string | undefined;
922
+ pixelWidth?: number | undefined;
923
+ pixelHeight?: number | undefined;
924
+ })[];
925
+ description?: string | undefined;
926
+ }, {
927
+ id: string;
928
+ type: "http://www.ft.com/ontology/content/ImageSet";
929
+ members: ({
930
+ id: string;
931
+ type: "http://www.ft.com/ontology/content/Image";
932
+ binaryUrl: string;
933
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
934
+ title?: string | undefined;
935
+ description?: string | undefined;
936
+ copyright?: {
937
+ notice: string;
938
+ } | undefined;
939
+ minDisplayWidth?: string | undefined;
940
+ maxDisplayWidth?: string | undefined;
941
+ pixelWidth?: number | undefined;
942
+ pixelHeight?: number | undefined;
943
+ } | {
944
+ id: string;
945
+ type: "http://www.ft.com/ontology/content/Graphic";
946
+ binaryUrl: string;
947
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
948
+ title?: string | undefined;
949
+ description?: string | undefined;
950
+ copyright?: {
951
+ notice: string;
952
+ } | undefined;
953
+ minDisplayWidth?: string | undefined;
954
+ maxDisplayWidth?: string | undefined;
955
+ pixelWidth?: number | undefined;
956
+ pixelHeight?: number | undefined;
957
+ })[];
958
+ description?: string | undefined;
959
+ }>, import("zod").ZodObject<{
960
+ id: import("zod").ZodString;
961
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ClipSet">;
962
+ members: import("zod").ZodArray<import("zod").ZodObject<{
963
+ id: import("zod").ZodString;
964
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Clip">;
965
+ format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">]>>;
966
+ dataSource: import("zod").ZodArray<import("zod").ZodObject<{
967
+ audioCodec: import("zod").ZodOptional<import("zod").ZodString>;
968
+ binaryUrl: import("zod").ZodOptional<import("zod").ZodString>;
969
+ duration: import("zod").ZodOptional<import("zod").ZodNumber>;
970
+ mediaType: import("zod").ZodOptional<import("zod").ZodString>;
971
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
972
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
973
+ videoCodec: import("zod").ZodOptional<import("zod").ZodString>;
974
+ }, "strip", import("zod").ZodTypeAny, {
975
+ binaryUrl?: string | undefined;
976
+ pixelWidth?: number | undefined;
977
+ pixelHeight?: number | undefined;
978
+ audioCodec?: string | undefined;
979
+ duration?: number | undefined;
980
+ mediaType?: string | undefined;
981
+ videoCodec?: string | undefined;
982
+ }, {
983
+ binaryUrl?: string | undefined;
984
+ pixelWidth?: number | undefined;
985
+ pixelHeight?: number | undefined;
986
+ audioCodec?: string | undefined;
987
+ duration?: number | undefined;
988
+ mediaType?: string | undefined;
989
+ videoCodec?: string | undefined;
990
+ }>, "many">;
991
+ poster: import("zod").ZodOptional<import("zod").ZodObject<{
992
+ id: import("zod").ZodString;
993
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
994
+ description: import("zod").ZodOptional<import("zod").ZodString>;
995
+ members: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
996
+ id: import("zod").ZodString;
997
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
998
+ 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">]>>;
999
+ title: import("zod").ZodOptional<import("zod").ZodString>;
1000
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1001
+ binaryUrl: import("zod").ZodString;
1002
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
1003
+ notice: import("zod").ZodString;
1004
+ }, "strip", import("zod").ZodTypeAny, {
1005
+ notice: string;
1006
+ }, {
1007
+ notice: string;
1008
+ }>>;
1009
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
1010
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
1011
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
1012
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
1013
+ }, "strip", import("zod").ZodTypeAny, {
1014
+ id: string;
1015
+ type: "http://www.ft.com/ontology/content/Image";
1016
+ binaryUrl: string;
1017
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1018
+ title?: string | undefined;
1019
+ description?: string | undefined;
1020
+ copyright?: {
1021
+ notice: string;
1022
+ } | undefined;
1023
+ minDisplayWidth?: string | undefined;
1024
+ maxDisplayWidth?: string | undefined;
1025
+ pixelWidth?: number | undefined;
1026
+ pixelHeight?: number | undefined;
1027
+ }, {
1028
+ id: string;
1029
+ type: "http://www.ft.com/ontology/content/Image";
1030
+ binaryUrl: string;
1031
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1032
+ title?: string | undefined;
1033
+ description?: string | undefined;
1034
+ copyright?: {
1035
+ notice: string;
1036
+ } | undefined;
1037
+ minDisplayWidth?: string | undefined;
1038
+ maxDisplayWidth?: string | undefined;
1039
+ pixelWidth?: number | undefined;
1040
+ pixelHeight?: number | undefined;
1041
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
1042
+ id: import("zod").ZodString;
1043
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
1044
+ 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">]>>;
1045
+ title: import("zod").ZodOptional<import("zod").ZodString>;
1046
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1047
+ binaryUrl: import("zod").ZodString;
1048
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
1049
+ notice: import("zod").ZodString;
1050
+ }, "strip", import("zod").ZodTypeAny, {
1051
+ notice: string;
1052
+ }, {
1053
+ notice: string;
1054
+ }>>;
1055
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
1056
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
1057
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
1058
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
1059
+ }, {
1060
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
1061
+ }>, "strip", import("zod").ZodTypeAny, {
1062
+ id: string;
1063
+ type: "http://www.ft.com/ontology/content/Graphic";
1064
+ binaryUrl: string;
1065
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1066
+ title?: string | undefined;
1067
+ description?: string | undefined;
1068
+ copyright?: {
1069
+ notice: string;
1070
+ } | undefined;
1071
+ minDisplayWidth?: string | undefined;
1072
+ maxDisplayWidth?: string | undefined;
1073
+ pixelWidth?: number | undefined;
1074
+ pixelHeight?: number | undefined;
1075
+ }, {
1076
+ id: string;
1077
+ type: "http://www.ft.com/ontology/content/Graphic";
1078
+ binaryUrl: string;
1079
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1080
+ title?: string | undefined;
1081
+ description?: string | undefined;
1082
+ copyright?: {
1083
+ notice: string;
1084
+ } | undefined;
1085
+ minDisplayWidth?: string | undefined;
1086
+ maxDisplayWidth?: string | undefined;
1087
+ pixelWidth?: number | undefined;
1088
+ pixelHeight?: number | undefined;
1089
+ }>]>, "many">;
1090
+ }, "strip", import("zod").ZodTypeAny, {
1091
+ id: string;
1092
+ type: "http://www.ft.com/ontology/content/ImageSet";
1093
+ members: ({
1094
+ id: string;
1095
+ type: "http://www.ft.com/ontology/content/Image";
1096
+ binaryUrl: string;
1097
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1098
+ title?: string | undefined;
1099
+ description?: string | undefined;
1100
+ copyright?: {
1101
+ notice: string;
1102
+ } | undefined;
1103
+ minDisplayWidth?: string | undefined;
1104
+ maxDisplayWidth?: string | undefined;
1105
+ pixelWidth?: number | undefined;
1106
+ pixelHeight?: number | undefined;
1107
+ } | {
1108
+ id: string;
1109
+ type: "http://www.ft.com/ontology/content/Graphic";
1110
+ binaryUrl: string;
1111
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1112
+ title?: string | undefined;
1113
+ description?: string | undefined;
1114
+ copyright?: {
1115
+ notice: string;
1116
+ } | undefined;
1117
+ minDisplayWidth?: string | undefined;
1118
+ maxDisplayWidth?: string | undefined;
1119
+ pixelWidth?: number | undefined;
1120
+ pixelHeight?: number | undefined;
1121
+ })[];
1122
+ description?: string | undefined;
1123
+ }, {
1124
+ id: string;
1125
+ type: "http://www.ft.com/ontology/content/ImageSet";
1126
+ members: ({
1127
+ id: string;
1128
+ type: "http://www.ft.com/ontology/content/Image";
1129
+ binaryUrl: string;
1130
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1131
+ title?: string | undefined;
1132
+ description?: string | undefined;
1133
+ copyright?: {
1134
+ notice: string;
1135
+ } | undefined;
1136
+ minDisplayWidth?: string | undefined;
1137
+ maxDisplayWidth?: string | undefined;
1138
+ pixelWidth?: number | undefined;
1139
+ pixelHeight?: number | undefined;
1140
+ } | {
1141
+ id: string;
1142
+ type: "http://www.ft.com/ontology/content/Graphic";
1143
+ binaryUrl: string;
1144
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1145
+ title?: string | undefined;
1146
+ description?: string | undefined;
1147
+ copyright?: {
1148
+ notice: string;
1149
+ } | undefined;
1150
+ minDisplayWidth?: string | undefined;
1151
+ maxDisplayWidth?: string | undefined;
1152
+ pixelWidth?: number | undefined;
1153
+ pixelHeight?: number | undefined;
1154
+ })[];
1155
+ description?: string | undefined;
1156
+ }>>;
1157
+ }, "strip", import("zod").ZodTypeAny, {
1158
+ id: string;
1159
+ type: "http://www.ft.com/ontology/content/Clip";
1160
+ dataSource: {
1161
+ binaryUrl?: string | undefined;
1162
+ pixelWidth?: number | undefined;
1163
+ pixelHeight?: number | undefined;
1164
+ audioCodec?: string | undefined;
1165
+ duration?: number | undefined;
1166
+ mediaType?: string | undefined;
1167
+ videoCodec?: string | undefined;
1168
+ }[];
1169
+ format?: "standardInline" | "mobile" | undefined;
1170
+ poster?: {
1171
+ id: string;
1172
+ type: "http://www.ft.com/ontology/content/ImageSet";
1173
+ members: ({
1174
+ id: string;
1175
+ type: "http://www.ft.com/ontology/content/Image";
1176
+ binaryUrl: string;
1177
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1178
+ title?: string | undefined;
1179
+ description?: string | undefined;
1180
+ copyright?: {
1181
+ notice: string;
1182
+ } | undefined;
1183
+ minDisplayWidth?: string | undefined;
1184
+ maxDisplayWidth?: string | undefined;
1185
+ pixelWidth?: number | undefined;
1186
+ pixelHeight?: number | undefined;
1187
+ } | {
1188
+ id: string;
1189
+ type: "http://www.ft.com/ontology/content/Graphic";
1190
+ binaryUrl: string;
1191
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1192
+ title?: string | undefined;
1193
+ description?: string | undefined;
1194
+ copyright?: {
1195
+ notice: string;
1196
+ } | undefined;
1197
+ minDisplayWidth?: string | undefined;
1198
+ maxDisplayWidth?: string | undefined;
1199
+ pixelWidth?: number | undefined;
1200
+ pixelHeight?: number | undefined;
1201
+ })[];
1202
+ description?: string | undefined;
1203
+ } | undefined;
1204
+ }, {
1205
+ id: string;
1206
+ type: "http://www.ft.com/ontology/content/Clip";
1207
+ dataSource: {
1208
+ binaryUrl?: string | undefined;
1209
+ pixelWidth?: number | undefined;
1210
+ pixelHeight?: number | undefined;
1211
+ audioCodec?: string | undefined;
1212
+ duration?: number | undefined;
1213
+ mediaType?: string | undefined;
1214
+ videoCodec?: string | undefined;
1215
+ }[];
1216
+ format?: "standardInline" | "mobile" | undefined;
1217
+ poster?: {
1218
+ id: string;
1219
+ type: "http://www.ft.com/ontology/content/ImageSet";
1220
+ members: ({
1221
+ id: string;
1222
+ type: "http://www.ft.com/ontology/content/Image";
1223
+ binaryUrl: string;
1224
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1225
+ title?: string | undefined;
1226
+ description?: string | undefined;
1227
+ copyright?: {
1228
+ notice: string;
1229
+ } | undefined;
1230
+ minDisplayWidth?: string | undefined;
1231
+ maxDisplayWidth?: string | undefined;
1232
+ pixelWidth?: number | undefined;
1233
+ pixelHeight?: number | undefined;
1234
+ } | {
1235
+ id: string;
1236
+ type: "http://www.ft.com/ontology/content/Graphic";
1237
+ binaryUrl: string;
1238
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1239
+ title?: string | undefined;
1240
+ description?: string | undefined;
1241
+ copyright?: {
1242
+ notice: string;
1243
+ } | undefined;
1244
+ minDisplayWidth?: string | undefined;
1245
+ maxDisplayWidth?: string | undefined;
1246
+ pixelWidth?: number | undefined;
1247
+ pixelHeight?: number | undefined;
1248
+ })[];
1249
+ description?: string | undefined;
1250
+ } | undefined;
1251
+ }>, "many">;
1252
+ caption: import("zod").ZodOptional<import("zod").ZodString>;
1253
+ dataCopyright: import("zod").ZodOptional<import("zod").ZodString>;
1254
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1255
+ displayTitle: import("zod").ZodOptional<import("zod").ZodString>;
1256
+ contentWarning: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1257
+ noAudio: import("zod").ZodOptional<import("zod").ZodBoolean>;
1258
+ source: import("zod").ZodOptional<import("zod").ZodString>;
1259
+ subtitle: import("zod").ZodOptional<import("zod").ZodString>;
1260
+ publishedDate: import("zod").ZodOptional<import("zod").ZodString>;
1261
+ accessibility: import("zod").ZodOptional<import("zod").ZodObject<{
1262
+ captions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1263
+ mediaType: import("zod").ZodOptional<import("zod").ZodString>;
1264
+ url: import("zod").ZodOptional<import("zod").ZodString>;
1265
+ }, "strip", import("zod").ZodTypeAny, {
1266
+ mediaType?: string | undefined;
1267
+ url?: string | undefined;
1268
+ }, {
1269
+ mediaType?: string | undefined;
1270
+ url?: string | undefined;
1271
+ }>, "many">>;
1272
+ transcript: import("zod").ZodOptional<import("zod").ZodString>;
1273
+ }, "strip", import("zod").ZodTypeAny, {
1274
+ captions?: {
1275
+ mediaType?: string | undefined;
1276
+ url?: string | undefined;
1277
+ }[] | undefined;
1278
+ transcript?: string | undefined;
1279
+ }, {
1280
+ captions?: {
1281
+ mediaType?: string | undefined;
1282
+ url?: string | undefined;
1283
+ }[] | undefined;
1284
+ transcript?: string | undefined;
1285
+ }>>;
1286
+ }, "strip", import("zod").ZodTypeAny, {
1287
+ id: string;
1288
+ type: "http://www.ft.com/ontology/content/ClipSet";
1289
+ members: {
1290
+ id: string;
1291
+ type: "http://www.ft.com/ontology/content/Clip";
1292
+ dataSource: {
1293
+ binaryUrl?: string | undefined;
1294
+ pixelWidth?: number | undefined;
1295
+ pixelHeight?: number | undefined;
1296
+ audioCodec?: string | undefined;
1297
+ duration?: number | undefined;
1298
+ mediaType?: string | undefined;
1299
+ videoCodec?: string | undefined;
1300
+ }[];
1301
+ format?: "standardInline" | "mobile" | undefined;
1302
+ poster?: {
1303
+ id: string;
1304
+ type: "http://www.ft.com/ontology/content/ImageSet";
1305
+ members: ({
1306
+ id: string;
1307
+ type: "http://www.ft.com/ontology/content/Image";
1308
+ binaryUrl: string;
1309
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1310
+ title?: string | undefined;
1311
+ description?: string | undefined;
1312
+ copyright?: {
1313
+ notice: string;
1314
+ } | undefined;
1315
+ minDisplayWidth?: string | undefined;
1316
+ maxDisplayWidth?: string | undefined;
1317
+ pixelWidth?: number | undefined;
1318
+ pixelHeight?: number | undefined;
1319
+ } | {
1320
+ id: string;
1321
+ type: "http://www.ft.com/ontology/content/Graphic";
1322
+ binaryUrl: string;
1323
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1324
+ title?: string | undefined;
1325
+ description?: string | undefined;
1326
+ copyright?: {
1327
+ notice: string;
1328
+ } | undefined;
1329
+ minDisplayWidth?: string | undefined;
1330
+ maxDisplayWidth?: string | undefined;
1331
+ pixelWidth?: number | undefined;
1332
+ pixelHeight?: number | undefined;
1333
+ })[];
1334
+ description?: string | undefined;
1335
+ } | undefined;
1336
+ }[];
1337
+ description?: string | undefined;
1338
+ caption?: string | undefined;
1339
+ dataCopyright?: string | undefined;
1340
+ displayTitle?: string | undefined;
1341
+ contentWarning?: string[] | undefined;
1342
+ noAudio?: boolean | undefined;
1343
+ source?: string | undefined;
1344
+ subtitle?: string | undefined;
1345
+ publishedDate?: string | undefined;
1346
+ accessibility?: {
1347
+ captions?: {
1348
+ mediaType?: string | undefined;
1349
+ url?: string | undefined;
1350
+ }[] | undefined;
1351
+ transcript?: string | undefined;
1352
+ } | undefined;
1353
+ }, {
1354
+ id: string;
1355
+ type: "http://www.ft.com/ontology/content/ClipSet";
1356
+ members: {
1357
+ id: string;
1358
+ type: "http://www.ft.com/ontology/content/Clip";
1359
+ dataSource: {
1360
+ binaryUrl?: string | undefined;
1361
+ pixelWidth?: number | undefined;
1362
+ pixelHeight?: number | undefined;
1363
+ audioCodec?: string | undefined;
1364
+ duration?: number | undefined;
1365
+ mediaType?: string | undefined;
1366
+ videoCodec?: string | undefined;
1367
+ }[];
1368
+ format?: "standardInline" | "mobile" | undefined;
1369
+ poster?: {
1370
+ id: string;
1371
+ type: "http://www.ft.com/ontology/content/ImageSet";
1372
+ members: ({
1373
+ id: string;
1374
+ type: "http://www.ft.com/ontology/content/Image";
1375
+ binaryUrl: string;
1376
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1377
+ title?: string | undefined;
1378
+ description?: string | undefined;
1379
+ copyright?: {
1380
+ notice: string;
1381
+ } | undefined;
1382
+ minDisplayWidth?: string | undefined;
1383
+ maxDisplayWidth?: string | undefined;
1384
+ pixelWidth?: number | undefined;
1385
+ pixelHeight?: number | undefined;
1386
+ } | {
1387
+ id: string;
1388
+ type: "http://www.ft.com/ontology/content/Graphic";
1389
+ binaryUrl: string;
1390
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1391
+ title?: string | undefined;
1392
+ description?: string | undefined;
1393
+ copyright?: {
1394
+ notice: string;
1395
+ } | undefined;
1396
+ minDisplayWidth?: string | undefined;
1397
+ maxDisplayWidth?: string | undefined;
1398
+ pixelWidth?: number | undefined;
1399
+ pixelHeight?: number | undefined;
1400
+ })[];
1401
+ description?: string | undefined;
1402
+ } | undefined;
1403
+ }[];
1404
+ description?: string | undefined;
1405
+ caption?: string | undefined;
1406
+ dataCopyright?: string | undefined;
1407
+ displayTitle?: string | undefined;
1408
+ contentWarning?: string[] | undefined;
1409
+ noAudio?: boolean | undefined;
1410
+ source?: string | undefined;
1411
+ subtitle?: string | undefined;
1412
+ publishedDate?: string | undefined;
1413
+ accessibility?: {
1414
+ captions?: {
1415
+ mediaType?: string | undefined;
1416
+ url?: string | undefined;
1417
+ }[] | undefined;
1418
+ transcript?: string | undefined;
1419
+ } | undefined;
1420
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<Pick<{
1421
+ id: import("zod").ZodString;
1422
+ annotations: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<{
1423
+ id: import("zod").ZodString;
1424
+ apiUrl: import("zod").ZodString;
1425
+ directType: import("zod").ZodString;
1426
+ prefLabel: import("zod").ZodString;
1427
+ type: import("zod").ZodOptional<import("zod").ZodString>;
1428
+ types: import("zod").ZodArray<import("zod").ZodString, "many">;
1429
+ headshot: import("zod").ZodOptional<import("zod").ZodString>;
1430
+ }, {
1431
+ predicate: import("zod").ZodString;
1432
+ }>, "strip", import("zod").ZodTypeAny, {
1433
+ id: string;
1434
+ apiUrl: string;
1435
+ directType: string;
1436
+ prefLabel: string;
1437
+ types: string[];
1438
+ predicate: string;
1439
+ type?: string | undefined;
1440
+ headshot?: string | undefined;
1441
+ }, {
1442
+ id: string;
1443
+ apiUrl: string;
1444
+ directType: string;
1445
+ prefLabel: string;
1446
+ types: string[];
1447
+ predicate: string;
1448
+ type?: string | undefined;
1449
+ headshot?: string | undefined;
1450
+ }>, "many">;
1451
+ webUrl: import("zod").ZodOptional<import("zod").ZodString>;
1452
+ canonicalWebUrl: import("zod").ZodOptional<import("zod").ZodString>;
1453
+ apiUrl: import("zod").ZodOptional<import("zod").ZodString>;
1454
+ path: import("zod").ZodString;
1455
+ versionRange: import("zod").ZodString;
1456
+ type: import("zod").ZodOptional<import("zod").ZodString>;
1457
+ types: import("zod").ZodArray<import("zod").ZodString, "many">;
1458
+ standout: import("zod").ZodOptional<import("zod").ZodObject<{
1459
+ editorsChoice: import("zod").ZodBoolean;
1460
+ exclusive: import("zod").ZodBoolean;
1461
+ scoop: import("zod").ZodBoolean;
1462
+ }, "strip", import("zod").ZodTypeAny, {
1463
+ editorsChoice: boolean;
1464
+ exclusive: boolean;
1465
+ scoop: boolean;
1466
+ }, {
1467
+ editorsChoice: boolean;
1468
+ exclusive: boolean;
1469
+ scoop: boolean;
1470
+ }>>;
1471
+ publishedDate: import("zod").ZodString;
1472
+ firstPublishedDate: import("zod").ZodString;
1473
+ publishReference: import("zod").ZodOptional<import("zod").ZodString>;
1474
+ lastModified: import("zod").ZodOptional<import("zod").ZodString>;
1475
+ realtime: import("zod").ZodBoolean;
1476
+ editorialDesk: import("zod").ZodOptional<import("zod").ZodString>;
1477
+ accessLevel: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"premium">, import("zod").ZodLiteral<"subscribed">, import("zod").ZodLiteral<"registered">, import("zod").ZodLiteral<"free">]>>;
1478
+ canBeSyndicated: import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">, import("zod").ZodLiteral<"withContributorPayment">, import("zod").ZodLiteral<"unknown">]>;
1479
+ canBeDistributed: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">]>>;
1480
+ topper: import("zod").ZodOptional<import("zod").ZodObject<{
1481
+ headline: import("zod").ZodOptional<import("zod").ZodString>;
1482
+ standfirst: import("zod").ZodOptional<import("zod").ZodString>;
1483
+ backgroundColour: import("zod").ZodString;
1484
+ backgroundBox: import("zod").ZodOptional<import("zod").ZodBoolean>;
1485
+ textShadow: import("zod").ZodOptional<import("zod").ZodBoolean>;
1486
+ layout: import("zod").ZodString;
1487
+ layoutWidth: import("zod").ZodOptional<import("zod").ZodString>;
1488
+ }, "strip", import("zod").ZodTypeAny, {
1489
+ backgroundColour: string;
1490
+ layout: string;
1491
+ headline?: string | undefined;
1492
+ standfirst?: string | undefined;
1493
+ backgroundBox?: boolean | undefined;
1494
+ textShadow?: boolean | undefined;
1495
+ layoutWidth?: string | undefined;
1496
+ }, {
1497
+ backgroundColour: string;
1498
+ layout: string;
1499
+ headline?: string | undefined;
1500
+ standfirst?: string | undefined;
1501
+ backgroundBox?: boolean | undefined;
1502
+ textShadow?: boolean | undefined;
1503
+ layoutWidth?: string | undefined;
1504
+ }>>;
1505
+ comments: import("zod").ZodOptional<import("zod").ZodObject<{
1506
+ enabled: import("zod").ZodBoolean;
1507
+ }, "strip", import("zod").ZodTypeAny, {
1508
+ enabled: boolean;
1509
+ }, {
1510
+ enabled: boolean;
1511
+ }>>;
1512
+ containedIn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1513
+ apiUrl: import("zod").ZodString;
1514
+ id: import("zod").ZodString;
1515
+ }, "strip", import("zod").ZodTypeAny, {
1516
+ id: string;
1517
+ apiUrl: string;
1518
+ }, {
1519
+ id: string;
1520
+ apiUrl: string;
1521
+ }>, "many">>;
1522
+ tableOfContents: import("zod").ZodOptional<import("zod").ZodObject<{
1523
+ labelType: import("zod").ZodString;
1524
+ sequence: import("zod").ZodString;
1525
+ }, "strip", import("zod").ZodTypeAny, {
1526
+ labelType: string;
1527
+ sequence: string;
1528
+ }, {
1529
+ labelType: string;
1530
+ sequence: string;
1531
+ }>>;
1532
+ }, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed">, Pick<{
1533
+ title: import("zod").ZodString;
1534
+ standfirst: import("zod").ZodOptional<import("zod").ZodString>;
1535
+ byline: import("zod").ZodOptional<import("zod").ZodString>;
1536
+ bodyXML: import("zod").ZodString;
1537
+ summary: import("zod").ZodObject<{
1538
+ bodyXML: import("zod").ZodString;
1539
+ }, "strip", import("zod").ZodTypeAny, {
1540
+ bodyXML: string;
1541
+ }, {
1542
+ bodyXML: string;
1543
+ }>;
1544
+ alternativeTitles: import("zod").ZodOptional<import("zod").ZodObject<{
1545
+ promotionalTitle: import("zod").ZodString;
1546
+ }, "strip", import("zod").ZodTypeAny, {
1547
+ promotionalTitle: string;
1548
+ }, {
1549
+ promotionalTitle: string;
1550
+ }>>;
1551
+ alternativeStandfirsts: import("zod").ZodOptional<import("zod").ZodObject<{
1552
+ promotionalStandfirst: import("zod").ZodOptional<import("zod").ZodString>;
1553
+ }, "strip", import("zod").ZodTypeAny, {
1554
+ promotionalStandfirst?: string | undefined;
1555
+ }, {
1556
+ promotionalStandfirst?: string | undefined;
1557
+ }>>;
1558
+ pinnedPosts: import("zod").ZodArray<import("zod").ZodString, "many">;
1559
+ contains: import("zod").ZodArray<import("zod").ZodObject<{
1560
+ id: import("zod").ZodString;
1561
+ apiUrl: import("zod").ZodString;
1562
+ }, "strip", import("zod").ZodTypeAny, {
1563
+ id: string;
1564
+ apiUrl: string;
1565
+ }, {
1566
+ id: string;
1567
+ apiUrl: string;
1568
+ }>, "many">;
1569
+ design: import("zod").ZodObject<{
1570
+ theme: import("zod").ZodUnion<[import("zod").ZodLiteral<"special-report">, import("zod").ZodLiteral<"extra">, import("zod").ZodLiteral<"basic">, import("zod").ZodLiteral<"extra-wide">]>;
1571
+ }, "strip", import("zod").ZodTypeAny, {
1572
+ theme: "special-report" | "extra" | "basic" | "extra-wide";
1573
+ }, {
1574
+ theme: "special-report" | "extra" | "basic" | "extra-wide";
1575
+ }>;
1576
+ transcript: import("zod").ZodOptional<import("zod").ZodString>;
1577
+ }, "bodyXML">>, {
1578
+ apiUrl: import("zod").ZodString;
1579
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/CustomCodeComponent">;
1580
+ path: import("zod").ZodString;
1581
+ versionRange: import("zod").ZodString;
1582
+ attributes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodUndefined]>>;
1583
+ }>, "strip", import("zod").ZodTypeAny, {
1584
+ id: string;
1585
+ apiUrl: string;
1586
+ type: "http://www.ft.com/ontology/content/CustomCodeComponent";
1587
+ path: string;
1588
+ publishedDate: string;
1589
+ versionRange: string;
1590
+ firstPublishedDate: string;
1591
+ canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
1592
+ bodyXML: string;
1593
+ attributes: Record<string, string | boolean | undefined>;
1594
+ canonicalWebUrl?: string | undefined;
1595
+ publishReference?: string | undefined;
1596
+ canBeDistributed?: "yes" | "no" | "verify" | undefined;
1597
+ }, {
1598
+ id: string;
1599
+ apiUrl: string;
1600
+ type: "http://www.ft.com/ontology/content/CustomCodeComponent";
1601
+ path: string;
1602
+ publishedDate: string;
1603
+ versionRange: string;
1604
+ firstPublishedDate: string;
1605
+ canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
1606
+ bodyXML: string;
1607
+ attributes: Record<string, string | boolean | undefined>;
1608
+ canonicalWebUrl?: string | undefined;
1609
+ publishReference?: string | undefined;
1610
+ canBeDistributed?: "yes" | "no" | "verify" | undefined;
1611
+ }>]>, "many">>;
1612
+ dataSource: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1613
+ binaryUrl: import("zod").ZodString;
1614
+ duration: import("zod").ZodNumber;
1615
+ filesize: import("zod").ZodNumber;
1616
+ mediaType: import("zod").ZodString;
1617
+ }, "strip", import("zod").ZodTypeAny, {
1618
+ binaryUrl: string;
1619
+ duration: number;
1620
+ mediaType: string;
1621
+ filesize: number;
1622
+ }, {
1623
+ binaryUrl: string;
1624
+ duration: number;
1625
+ mediaType: string;
1626
+ filesize: number;
1627
+ }>, "many">>;
1628
+ }, "embeds">>, "strip", import("zod").ZodTypeAny, {
1629
+ id: string;
1630
+ apiUrl: string;
1631
+ types: string[];
1632
+ path: string;
1633
+ publishedDate: string;
1634
+ annotations: {
1635
+ id: string;
1636
+ apiUrl: string;
1637
+ directType: string;
1638
+ prefLabel: string;
1639
+ types: string[];
1640
+ predicate: string;
1641
+ type?: string | undefined;
1642
+ headshot?: string | undefined;
1643
+ }[];
1644
+ versionRange: string;
1645
+ firstPublishedDate: string;
1646
+ canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
1647
+ bodyXML: string;
1648
+ attributes: Record<string, string | boolean | undefined>;
1649
+ canonicalWebUrl?: string | undefined;
1650
+ publishReference?: string | undefined;
1651
+ canBeDistributed?: "yes" | "no" | "verify" | undefined;
1652
+ embeds?: ({
1653
+ id: string;
1654
+ type: "http://www.ft.com/ontology/content/ImageSet";
1655
+ members: ({
1656
+ id: string;
1657
+ type: "http://www.ft.com/ontology/content/Image";
1658
+ binaryUrl: string;
1659
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1660
+ title?: string | undefined;
1661
+ description?: string | undefined;
1662
+ copyright?: {
1663
+ notice: string;
1664
+ } | undefined;
1665
+ minDisplayWidth?: string | undefined;
1666
+ maxDisplayWidth?: string | undefined;
1667
+ pixelWidth?: number | undefined;
1668
+ pixelHeight?: number | undefined;
1669
+ } | {
1670
+ id: string;
1671
+ type: "http://www.ft.com/ontology/content/Graphic";
1672
+ binaryUrl: string;
1673
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1674
+ title?: string | undefined;
1675
+ description?: string | undefined;
1676
+ copyright?: {
1677
+ notice: string;
1678
+ } | undefined;
1679
+ minDisplayWidth?: string | undefined;
1680
+ maxDisplayWidth?: string | undefined;
1681
+ pixelWidth?: number | undefined;
1682
+ pixelHeight?: number | undefined;
1683
+ })[];
1684
+ description?: string | undefined;
1685
+ } | {
1686
+ id: string;
1687
+ type: "http://www.ft.com/ontology/content/ClipSet";
1688
+ members: {
1689
+ id: string;
1690
+ type: "http://www.ft.com/ontology/content/Clip";
1691
+ dataSource: {
1692
+ binaryUrl?: string | undefined;
1693
+ pixelWidth?: number | undefined;
1694
+ pixelHeight?: number | undefined;
1695
+ audioCodec?: string | undefined;
1696
+ duration?: number | undefined;
1697
+ mediaType?: string | undefined;
1698
+ videoCodec?: string | undefined;
1699
+ }[];
1700
+ format?: "standardInline" | "mobile" | undefined;
1701
+ poster?: {
1702
+ id: string;
1703
+ type: "http://www.ft.com/ontology/content/ImageSet";
1704
+ members: ({
1705
+ id: string;
1706
+ type: "http://www.ft.com/ontology/content/Image";
1707
+ binaryUrl: string;
1708
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1709
+ title?: string | undefined;
1710
+ description?: string | undefined;
1711
+ copyright?: {
1712
+ notice: string;
1713
+ } | undefined;
1714
+ minDisplayWidth?: string | undefined;
1715
+ maxDisplayWidth?: string | undefined;
1716
+ pixelWidth?: number | undefined;
1717
+ pixelHeight?: number | undefined;
1718
+ } | {
1719
+ id: string;
1720
+ type: "http://www.ft.com/ontology/content/Graphic";
1721
+ binaryUrl: string;
1722
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1723
+ title?: string | undefined;
1724
+ description?: string | undefined;
1725
+ copyright?: {
1726
+ notice: string;
1727
+ } | undefined;
1728
+ minDisplayWidth?: string | undefined;
1729
+ maxDisplayWidth?: string | undefined;
1730
+ pixelWidth?: number | undefined;
1731
+ pixelHeight?: number | undefined;
1732
+ })[];
1733
+ description?: string | undefined;
1734
+ } | undefined;
1735
+ }[];
1736
+ description?: string | undefined;
1737
+ caption?: string | undefined;
1738
+ dataCopyright?: string | undefined;
1739
+ displayTitle?: string | undefined;
1740
+ contentWarning?: string[] | undefined;
1741
+ noAudio?: boolean | undefined;
1742
+ source?: string | undefined;
1743
+ subtitle?: string | undefined;
1744
+ publishedDate?: string | undefined;
1745
+ accessibility?: {
1746
+ captions?: {
1747
+ mediaType?: string | undefined;
1748
+ url?: string | undefined;
1749
+ }[] | undefined;
1750
+ transcript?: string | undefined;
1751
+ } | undefined;
1752
+ } | {
1753
+ id: string;
1754
+ apiUrl: string;
1755
+ type: "http://www.ft.com/ontology/content/CustomCodeComponent";
1756
+ path: string;
1757
+ publishedDate: string;
1758
+ versionRange: string;
1759
+ firstPublishedDate: string;
1760
+ canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
1761
+ bodyXML: string;
1762
+ attributes: Record<string, string | boolean | undefined>;
1763
+ canonicalWebUrl?: string | undefined;
1764
+ publishReference?: string | undefined;
1765
+ canBeDistributed?: "yes" | "no" | "verify" | undefined;
1766
+ })[] | undefined;
1767
+ }, {
1768
+ id: string;
1769
+ apiUrl: string;
1770
+ types: string[];
1771
+ path: string;
1772
+ publishedDate: string;
1773
+ annotations: {
1774
+ id: string;
1775
+ apiUrl: string;
1776
+ directType: string;
1777
+ prefLabel: string;
1778
+ types: string[];
1779
+ predicate: string;
1780
+ type?: string | undefined;
1781
+ headshot?: string | undefined;
1782
+ }[];
1783
+ versionRange: string;
1784
+ firstPublishedDate: string;
1785
+ canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
1786
+ bodyXML: string;
1787
+ attributes: Record<string, string | boolean | undefined>;
1788
+ canonicalWebUrl?: string | undefined;
1789
+ publishReference?: string | undefined;
1790
+ canBeDistributed?: "yes" | "no" | "verify" | undefined;
1791
+ embeds?: ({
1792
+ id: string;
1793
+ type: "http://www.ft.com/ontology/content/ImageSet";
1794
+ members: ({
1795
+ id: string;
1796
+ type: "http://www.ft.com/ontology/content/Image";
1797
+ binaryUrl: string;
1798
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1799
+ title?: string | undefined;
1800
+ description?: string | undefined;
1801
+ copyright?: {
1802
+ notice: string;
1803
+ } | undefined;
1804
+ minDisplayWidth?: string | undefined;
1805
+ maxDisplayWidth?: string | undefined;
1806
+ pixelWidth?: number | undefined;
1807
+ pixelHeight?: number | undefined;
1808
+ } | {
1809
+ id: string;
1810
+ type: "http://www.ft.com/ontology/content/Graphic";
1811
+ binaryUrl: string;
1812
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1813
+ title?: string | undefined;
1814
+ description?: string | undefined;
1815
+ copyright?: {
1816
+ notice: string;
1817
+ } | undefined;
1818
+ minDisplayWidth?: string | undefined;
1819
+ maxDisplayWidth?: string | undefined;
1820
+ pixelWidth?: number | undefined;
1821
+ pixelHeight?: number | undefined;
1822
+ })[];
1823
+ description?: string | undefined;
1824
+ } | {
1825
+ id: string;
1826
+ type: "http://www.ft.com/ontology/content/ClipSet";
1827
+ members: {
1828
+ id: string;
1829
+ type: "http://www.ft.com/ontology/content/Clip";
1830
+ dataSource: {
1831
+ binaryUrl?: string | undefined;
1832
+ pixelWidth?: number | undefined;
1833
+ pixelHeight?: number | undefined;
1834
+ audioCodec?: string | undefined;
1835
+ duration?: number | undefined;
1836
+ mediaType?: string | undefined;
1837
+ videoCodec?: string | undefined;
1838
+ }[];
1839
+ format?: "standardInline" | "mobile" | undefined;
1840
+ poster?: {
1841
+ id: string;
1842
+ type: "http://www.ft.com/ontology/content/ImageSet";
1843
+ members: ({
1844
+ id: string;
1845
+ type: "http://www.ft.com/ontology/content/Image";
1846
+ binaryUrl: string;
1847
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1848
+ title?: string | undefined;
1849
+ description?: string | undefined;
1850
+ copyright?: {
1851
+ notice: string;
1852
+ } | undefined;
1853
+ minDisplayWidth?: string | undefined;
1854
+ maxDisplayWidth?: string | undefined;
1855
+ pixelWidth?: number | undefined;
1856
+ pixelHeight?: number | undefined;
1857
+ } | {
1858
+ id: string;
1859
+ type: "http://www.ft.com/ontology/content/Graphic";
1860
+ binaryUrl: string;
1861
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1862
+ title?: string | undefined;
1863
+ description?: string | undefined;
1864
+ copyright?: {
1865
+ notice: string;
1866
+ } | undefined;
1867
+ minDisplayWidth?: string | undefined;
1868
+ maxDisplayWidth?: string | undefined;
1869
+ pixelWidth?: number | undefined;
1870
+ pixelHeight?: number | undefined;
1871
+ })[];
1872
+ description?: string | undefined;
1873
+ } | undefined;
1874
+ }[];
1875
+ description?: string | undefined;
1876
+ caption?: string | undefined;
1877
+ dataCopyright?: string | undefined;
1878
+ displayTitle?: string | undefined;
1879
+ contentWarning?: string[] | undefined;
1880
+ noAudio?: boolean | undefined;
1881
+ source?: string | undefined;
1882
+ subtitle?: string | undefined;
1883
+ publishedDate?: string | undefined;
1884
+ accessibility?: {
1885
+ captions?: {
1886
+ mediaType?: string | undefined;
1887
+ url?: string | undefined;
1888
+ }[] | undefined;
1889
+ transcript?: string | undefined;
1890
+ } | undefined;
1891
+ } | {
1892
+ id: string;
1893
+ apiUrl: string;
1894
+ type: "http://www.ft.com/ontology/content/CustomCodeComponent";
1895
+ path: string;
1896
+ publishedDate: string;
1897
+ versionRange: string;
1898
+ firstPublishedDate: string;
1899
+ canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
1900
+ bodyXML: string;
1901
+ attributes: Record<string, string | boolean | undefined>;
1902
+ canonicalWebUrl?: string | undefined;
1903
+ publishReference?: string | undefined;
1904
+ canBeDistributed?: "yes" | "no" | "verify" | undefined;
1905
+ })[] | undefined;
1906
+ }>;