@financial-times/cp-content-pipeline-schema 2.9.2 → 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.
Files changed (77) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/lib/datasources/capi.d.ts +1 -0
  3. package/lib/datasources/capi.js +10 -0
  4. package/lib/datasources/capi.js.map +1 -1
  5. package/lib/generated/index.d.ts +87 -2
  6. package/lib/model/CapiResponse.d.ts +6 -0
  7. package/lib/model/CapiResponse.js +5 -0
  8. package/lib/model/CapiResponse.js.map +1 -1
  9. package/lib/model/FlourishSource.d.ts +22 -0
  10. package/lib/model/FlourishSource.js +89 -0
  11. package/lib/model/FlourishSource.js.map +1 -0
  12. package/lib/model/FlourishSource.test.d.ts +1 -0
  13. package/lib/model/FlourishSource.test.js +67 -0
  14. package/lib/model/FlourishSource.test.js.map +1 -0
  15. package/lib/model/LeadFlourish.d.ts +13 -0
  16. package/lib/model/LeadFlourish.js +35 -0
  17. package/lib/model/LeadFlourish.js.map +1 -0
  18. package/lib/model/LeadFlourish.test.d.ts +1 -0
  19. package/lib/model/LeadFlourish.test.js +62 -0
  20. package/lib/model/LeadFlourish.test.js.map +1 -0
  21. package/lib/model/Topper.d.ts +4 -1
  22. package/lib/model/Topper.js +15 -0
  23. package/lib/model/Topper.js.map +1 -1
  24. package/lib/model/Topper.test.js +21 -0
  25. package/lib/model/Topper.test.js.map +1 -1
  26. package/lib/model/schemas/capi/article.d.ts +153 -60
  27. package/lib/model/schemas/capi/article.js +1 -0
  28. package/lib/model/schemas/capi/article.js.map +1 -1
  29. package/lib/model/schemas/capi/audio.d.ts +1111 -119
  30. package/lib/model/schemas/capi/base-schema.d.ts +166 -99
  31. package/lib/model/schemas/capi/base-schema.js +8 -1
  32. package/lib/model/schemas/capi/base-schema.js.map +1 -1
  33. package/lib/model/schemas/capi/content-package.d.ts +836 -46
  34. package/lib/model/schemas/capi/content-package.js +1 -1
  35. package/lib/model/schemas/capi/content-package.js.map +1 -1
  36. package/lib/model/schemas/capi/live-blog-package.d.ts +230 -65
  37. package/lib/model/schemas/capi/live-blog-package.js +0 -1
  38. package/lib/model/schemas/capi/live-blog-package.js.map +1 -1
  39. package/lib/model/schemas/capi/placeholder.d.ts +143 -60
  40. package/lib/resolvers/content-tree/references/Flourish.d.ts +8 -2
  41. package/lib/resolvers/content-tree/references/Flourish.js +15 -40
  42. package/lib/resolvers/content-tree/references/Flourish.js.map +1 -1
  43. package/lib/resolvers/content-tree/references/Flourish.test.js +0 -30
  44. package/lib/resolvers/content-tree/references/Flourish.test.js.map +1 -1
  45. package/lib/resolvers/index.d.ts +36 -9
  46. package/lib/resolvers/index.js +2 -0
  47. package/lib/resolvers/index.js.map +1 -1
  48. package/lib/resolvers/leadFlourish.d.ts +16 -0
  49. package/lib/resolvers/leadFlourish.js +28 -0
  50. package/lib/resolvers/leadFlourish.js.map +1 -0
  51. package/lib/resolvers/topper.d.ts +23 -9
  52. package/lib/resolvers/topper.js +6 -0
  53. package/lib/resolvers/topper.js.map +1 -1
  54. package/package.json +1 -1
  55. package/queries/article.graphql +26 -0
  56. package/src/datasources/capi.ts +14 -0
  57. package/src/generated/index.ts +93 -2
  58. package/src/model/CapiResponse.ts +6 -0
  59. package/src/model/FlourishSource.test.ts +93 -0
  60. package/src/model/FlourishSource.ts +103 -0
  61. package/src/model/LeadFlourish.test.ts +71 -0
  62. package/src/model/LeadFlourish.ts +30 -0
  63. package/src/model/Topper.test.ts +26 -0
  64. package/src/model/Topper.ts +18 -0
  65. package/src/model/schemas/capi/article.ts +1 -0
  66. package/src/model/schemas/capi/base-schema.ts +8 -0
  67. package/src/model/schemas/capi/content-package.ts +1 -1
  68. package/src/model/schemas/capi/live-blog-package.ts +0 -1
  69. package/src/resolvers/content-tree/references/Flourish.test.ts +2 -49
  70. package/src/resolvers/content-tree/references/Flourish.ts +15 -59
  71. package/src/resolvers/index.ts +2 -0
  72. package/src/resolvers/leadFlourish.ts +31 -0
  73. package/src/resolvers/topper.ts +10 -0
  74. package/src/types/internal-content.d.ts +2 -0
  75. package/tsconfig.tsbuildinfo +1 -1
  76. package/typedefs/leadFlouish.graphql +29 -0
  77. package/typedefs/topper.graphql +35 -0
@@ -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
- publishedDate: import("zod").ZodString;
7
- annotations: import("zod").ZodArray<import("zod").ZodObject<{
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
- }, "strip", import("zod").ZodTypeAny, {
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">]>;
@@ -59,6 +112,7 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
59
112
  backgroundBox: import("zod").ZodOptional<import("zod").ZodBoolean>;
60
113
  textShadow: import("zod").ZodOptional<import("zod").ZodBoolean>;
61
114
  layout: import("zod").ZodString;
115
+ layoutWidth: import("zod").ZodOptional<import("zod").ZodString>;
62
116
  }, "strip", import("zod").ZodTypeAny, {
63
117
  backgroundColour: string;
64
118
  layout: string;
@@ -66,6 +120,7 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
66
120
  standfirst?: string | undefined;
67
121
  backgroundBox?: boolean | undefined;
68
122
  textShadow?: boolean | undefined;
123
+ layoutWidth?: string | undefined;
69
124
  }, {
70
125
  backgroundColour: string;
71
126
  layout: string;
@@ -73,6 +128,7 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
73
128
  standfirst?: string | undefined;
74
129
  backgroundBox?: boolean | undefined;
75
130
  textShadow?: boolean | undefined;
131
+ layoutWidth?: string | undefined;
76
132
  }>>;
77
133
  comments: import("zod").ZodOptional<import("zod").ZodObject<{
78
134
  enabled: import("zod").ZodBoolean;
@@ -81,6 +137,16 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
81
137
  }, {
82
138
  enabled: boolean;
83
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">>;
84
150
  tableOfContents: import("zod").ZodOptional<import("zod").ZodObject<{
85
151
  labelType: import("zod").ZodString;
86
152
  sequence: import("zod").ZodString;
@@ -91,38 +157,7 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
91
157
  labelType: string;
92
158
  sequence: string;
93
159
  }>>;
94
- bodyXML: import("zod").ZodString;
95
- summary: import("zod").ZodOptional<import("zod").ZodObject<{
96
- bodyXML: import("zod").ZodString;
97
- }, "strip", import("zod").ZodTypeAny, {
98
- bodyXML: string;
99
- }, {
100
- bodyXML: string;
101
- }>>;
102
- alternativeTitles: import("zod").ZodOptional<import("zod").ZodObject<{
103
- promotionalTitle: import("zod").ZodString;
104
- }, "strip", import("zod").ZodTypeAny, {
105
- promotionalTitle: string;
106
- }, {
107
- promotionalTitle: string;
108
- }>>;
109
- contains: import("zod").ZodArray<import("zod").ZodObject<{
110
- id: import("zod").ZodString;
111
- apiUrl: import("zod").ZodString;
112
- }, "strip", import("zod").ZodTypeAny, {
113
- id: string;
114
- apiUrl: string;
115
- }, {
116
- id: string;
117
- apiUrl: string;
118
- }>, "many">;
119
- design: import("zod").ZodObject<{
120
- theme: import("zod").ZodUnion<[import("zod").ZodLiteral<"special-report">, import("zod").ZodLiteral<"extra">, import("zod").ZodLiteral<"basic">, import("zod").ZodLiteral<"extra-wide">]>;
121
- }, "strip", import("zod").ZodTypeAny, {
122
- theme: "special-report" | "extra" | "basic" | "extra-wide";
123
- }, {
124
- theme: "special-report" | "extra" | "basic" | "extra-wide";
125
- }>;
160
+ }, "id" | "type" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "standout" | "firstPublishedDate" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "topper" | "comments" | "tableOfContents">>, Pick<{
126
161
  mainImage: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
127
162
  id: import("zod").ZodString;
128
163
  type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
@@ -173,8 +208,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
173
208
  maxDisplayWidth?: string | undefined;
174
209
  pixelWidth?: number | undefined;
175
210
  pixelHeight?: number | undefined;
176
- }>, import("zod").ZodObject<{
211
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
177
212
  id: import("zod").ZodString;
213
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
178
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">]>>;
179
215
  title: import("zod").ZodOptional<import("zod").ZodString>;
180
216
  description: import("zod").ZodOptional<import("zod").ZodString>;
@@ -190,8 +226,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
190
226
  maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
191
227
  pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
192
228
  pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
229
+ }, {
193
230
  type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
194
- }, "strip", import("zod").ZodTypeAny, {
231
+ }>, "strip", import("zod").ZodTypeAny, {
195
232
  id: string;
196
233
  type: "http://www.ft.com/ontology/content/Graphic";
197
234
  binaryUrl: string;
@@ -332,8 +369,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
332
369
  maxDisplayWidth?: string | undefined;
333
370
  pixelWidth?: number | undefined;
334
371
  pixelHeight?: number | undefined;
335
- }>, import("zod").ZodObject<{
372
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
336
373
  id: import("zod").ZodString;
374
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
337
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">]>>;
338
376
  title: import("zod").ZodOptional<import("zod").ZodString>;
339
377
  description: import("zod").ZodOptional<import("zod").ZodString>;
@@ -349,8 +387,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
349
387
  maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
350
388
  pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
351
389
  pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
390
+ }, {
352
391
  type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
353
- }, "strip", import("zod").ZodTypeAny, {
392
+ }>, "strip", import("zod").ZodTypeAny, {
354
393
  id: string;
355
394
  type: "http://www.ft.com/ontology/content/Graphic";
356
395
  binaryUrl: string;
@@ -428,8 +467,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
428
467
  maxDisplayWidth?: string | undefined;
429
468
  pixelWidth?: number | undefined;
430
469
  pixelHeight?: number | undefined;
431
- }>, import("zod").ZodObject<{
470
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
432
471
  id: import("zod").ZodString;
472
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
433
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">]>>;
434
474
  title: import("zod").ZodOptional<import("zod").ZodString>;
435
475
  description: import("zod").ZodOptional<import("zod").ZodString>;
@@ -445,8 +485,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
445
485
  maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
446
486
  pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
447
487
  pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
488
+ }, {
448
489
  type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
449
- }, "strip", import("zod").ZodTypeAny, {
490
+ }>, "strip", import("zod").ZodTypeAny, {
450
491
  id: string;
451
492
  type: "http://www.ft.com/ontology/content/Graphic";
452
493
  binaryUrl: string;
@@ -540,7 +581,744 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
540
581
  pixelHeight?: number | undefined;
541
582
  };
542
583
  }>, "many">>;
543
- }, "strip", import("zod").ZodTypeAny, {
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
+ }>>;
665
+ leadFlourish: import("zod").ZodOptional<import("zod").ZodObject<{
666
+ id: import("zod").ZodString;
667
+ type: import("zod").ZodString;
668
+ description: import("zod").ZodString;
669
+ }, "strip", import("zod").ZodTypeAny, {
670
+ id: string;
671
+ type: string;
672
+ description: string;
673
+ }, {
674
+ id: string;
675
+ type: string;
676
+ description: string;
677
+ }>>;
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, {
544
1322
  id: string;
545
1323
  types: string[];
546
1324
  title: string;
@@ -583,6 +1361,7 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
583
1361
  standfirst?: string | undefined;
584
1362
  backgroundBox?: boolean | undefined;
585
1363
  textShadow?: boolean | undefined;
1364
+ layoutWidth?: string | undefined;
586
1365
  } | undefined;
587
1366
  comments?: {
588
1367
  enabled: boolean;
@@ -692,6 +1471,11 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
692
1471
  pixelHeight?: number | undefined;
693
1472
  };
694
1473
  }[] | undefined;
1474
+ leadFlourish?: {
1475
+ id: string;
1476
+ type: string;
1477
+ description: string;
1478
+ } | undefined;
695
1479
  }, {
696
1480
  id: string;
697
1481
  types: string[];
@@ -735,6 +1519,7 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
735
1519
  standfirst?: string | undefined;
736
1520
  backgroundBox?: boolean | undefined;
737
1521
  textShadow?: boolean | undefined;
1522
+ layoutWidth?: string | undefined;
738
1523
  } | undefined;
739
1524
  comments?: {
740
1525
  enabled: boolean;
@@ -844,4 +1629,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
844
1629
  pixelHeight?: number | undefined;
845
1630
  };
846
1631
  }[] | undefined;
1632
+ leadFlourish?: {
1633
+ id: string;
1634
+ type: string;
1635
+ description: string;
1636
+ } | undefined;
847
1637
  }>;