@financial-times/cp-content-pipeline-client 0.6.11 → 0.6.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -0
- package/lib/generated/index.d.ts +239 -233
- package/lib/generated/index.js +1 -1
- package/lib/generated/index.js.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/schema-version.d.ts +1 -1
- package/lib/schema-version.js +1 -1
- package/package.json +3 -3
- package/queries/article.graphql +1 -1
- package/src/generated/index.ts +32 -25
- package/src/schema-version.ts +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/lib/generated/index.d.ts
CHANGED
|
@@ -1,40 +1,41 @@
|
|
|
1
1
|
import { GraphQLClient } from 'graphql-request';
|
|
2
2
|
import * as Dom from 'graphql-request/dist/types.dom';
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
3
|
+
export type Maybe<T> = T | null;
|
|
4
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
5
|
+
export type Exact<T extends {
|
|
6
6
|
[key: string]: unknown;
|
|
7
7
|
}> = {
|
|
8
8
|
[K in keyof T]: T[K];
|
|
9
9
|
};
|
|
10
|
-
export
|
|
10
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
11
11
|
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
12
12
|
};
|
|
13
|
-
export
|
|
13
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
14
14
|
[SubKey in K]: Maybe<T[SubKey]>;
|
|
15
15
|
};
|
|
16
16
|
/** All built-in and custom scalars, mapped to their actual values */
|
|
17
|
-
export
|
|
17
|
+
export type Scalars = {
|
|
18
18
|
ID: string;
|
|
19
19
|
String: string;
|
|
20
20
|
Boolean: boolean;
|
|
21
21
|
Int: number;
|
|
22
22
|
Float: number;
|
|
23
23
|
AccessLevel: 'premium' | 'subscribed' | 'registered' | 'free';
|
|
24
|
+
ContentType: 'Article' | 'Video' | 'Audio' | 'LiveBlogPackage' | 'LiveBlogPost' | 'ContentPackage' | 'Content' | 'MediaResource';
|
|
24
25
|
ImageFormat: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit';
|
|
25
26
|
ImageType: 'image' | 'graphic';
|
|
26
27
|
JSON: any;
|
|
27
28
|
PackageDesign: 'special-report' | 'extra' | 'basic';
|
|
28
|
-
RichTextSource: 'standfirst' | 'summary';
|
|
29
|
+
RichTextSource: 'standfirst' | 'summary' | 'bodyXML';
|
|
29
30
|
TopperBackgroundColour: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky';
|
|
30
31
|
};
|
|
31
|
-
export
|
|
32
|
+
export type AltStandfirst = {
|
|
32
33
|
readonly promotionalStandfirst?: Maybe<Scalars['String']>;
|
|
33
34
|
};
|
|
34
|
-
export
|
|
35
|
+
export type AltTitle = {
|
|
35
36
|
readonly promotionalTitle?: Maybe<Scalars['String']>;
|
|
36
37
|
};
|
|
37
|
-
export
|
|
38
|
+
export type Article = Content & {
|
|
38
39
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
39
40
|
readonly altTitle?: Maybe<AltTitle>;
|
|
40
41
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -51,13 +52,13 @@ export declare type Article = Content & {
|
|
|
51
52
|
readonly teaser?: Maybe<Teaser>;
|
|
52
53
|
readonly title: Scalars['String'];
|
|
53
54
|
readonly topper?: Maybe<Topper>;
|
|
54
|
-
readonly type: Scalars['
|
|
55
|
+
readonly type: Scalars['ContentType'];
|
|
55
56
|
readonly url: Scalars['String'];
|
|
56
57
|
};
|
|
57
|
-
export
|
|
58
|
+
export type ArticleUrlArgs = {
|
|
58
59
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
59
60
|
};
|
|
60
|
-
export
|
|
61
|
+
export type Audio = Content & {
|
|
61
62
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
62
63
|
readonly altTitle?: Maybe<AltTitle>;
|
|
63
64
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -74,19 +75,19 @@ export declare type Audio = Content & {
|
|
|
74
75
|
readonly teaser?: Maybe<Teaser>;
|
|
75
76
|
readonly title: Scalars['String'];
|
|
76
77
|
readonly topper?: Maybe<Topper>;
|
|
77
|
-
readonly type: Scalars['
|
|
78
|
+
readonly type: Scalars['ContentType'];
|
|
78
79
|
readonly url: Scalars['String'];
|
|
79
80
|
};
|
|
80
|
-
export
|
|
81
|
+
export type AudioUrlArgs = {
|
|
81
82
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
82
83
|
};
|
|
83
|
-
export
|
|
84
|
+
export type BasicTopper = Topper & {
|
|
84
85
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
85
86
|
readonly displayConcept?: Maybe<Concept>;
|
|
86
87
|
readonly headline: Scalars['String'];
|
|
87
88
|
readonly intro?: Maybe<RichText>;
|
|
88
89
|
};
|
|
89
|
-
export
|
|
90
|
+
export type BrandedTopper = Topper & TopperWithBrand & TopperWithTheme & {
|
|
90
91
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
91
92
|
readonly brandConcept?: Maybe<Concept>;
|
|
92
93
|
readonly displayConcept?: Maybe<Concept>;
|
|
@@ -95,7 +96,7 @@ export declare type BrandedTopper = Topper & TopperWithBrand & TopperWithTheme &
|
|
|
95
96
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']>;
|
|
96
97
|
readonly layout?: Maybe<Scalars['String']>;
|
|
97
98
|
};
|
|
98
|
-
export
|
|
99
|
+
export type Concept = {
|
|
99
100
|
readonly apiUrl: Scalars['String'];
|
|
100
101
|
readonly directType?: Maybe<Scalars['String']>;
|
|
101
102
|
readonly id: Scalars['ID'];
|
|
@@ -105,11 +106,11 @@ export declare type Concept = {
|
|
|
105
106
|
readonly types: ReadonlyArray<Scalars['String']>;
|
|
106
107
|
readonly url: Scalars['String'];
|
|
107
108
|
};
|
|
108
|
-
export
|
|
109
|
+
export type ConceptUrlArgs = {
|
|
109
110
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
110
111
|
vanity?: InputMaybe<Scalars['Boolean']>;
|
|
111
112
|
};
|
|
112
|
-
export
|
|
113
|
+
export type Content = {
|
|
113
114
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
114
115
|
readonly altTitle?: Maybe<AltTitle>;
|
|
115
116
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -126,13 +127,13 @@ export declare type Content = {
|
|
|
126
127
|
readonly teaser?: Maybe<Teaser>;
|
|
127
128
|
readonly title: Scalars['String'];
|
|
128
129
|
readonly topper?: Maybe<Topper>;
|
|
129
|
-
readonly type: Scalars['
|
|
130
|
+
readonly type: Scalars['ContentType'];
|
|
130
131
|
readonly url: Scalars['String'];
|
|
131
132
|
};
|
|
132
|
-
export
|
|
133
|
+
export type ContentUrlArgs = {
|
|
133
134
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
134
135
|
};
|
|
135
|
-
export
|
|
136
|
+
export type ContentPackage = Content & {
|
|
136
137
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
137
138
|
readonly altTitle?: Maybe<AltTitle>;
|
|
138
139
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -150,26 +151,26 @@ export declare type ContentPackage = Content & {
|
|
|
150
151
|
readonly teaser?: Maybe<Teaser>;
|
|
151
152
|
readonly title: Scalars['String'];
|
|
152
153
|
readonly topper?: Maybe<Topper>;
|
|
153
|
-
readonly type: Scalars['
|
|
154
|
+
readonly type: Scalars['ContentType'];
|
|
154
155
|
readonly url: Scalars['String'];
|
|
155
156
|
};
|
|
156
|
-
export
|
|
157
|
+
export type ContentPackageUrlArgs = {
|
|
157
158
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
158
159
|
};
|
|
159
|
-
export
|
|
160
|
+
export type Design = {
|
|
160
161
|
readonly layout?: Maybe<Scalars['String']>;
|
|
161
162
|
readonly theme?: Maybe<Scalars['PackageDesign']>;
|
|
162
163
|
};
|
|
163
|
-
export
|
|
164
|
+
export type Flourish = Reference & {
|
|
164
165
|
readonly fallbackImage?: Maybe<FlourishFallback>;
|
|
165
166
|
readonly type: Scalars['String'];
|
|
166
167
|
};
|
|
167
|
-
export
|
|
168
|
+
export type FlourishFallback = {
|
|
168
169
|
readonly height?: Maybe<Scalars['Int']>;
|
|
169
170
|
readonly url?: Maybe<Scalars['String']>;
|
|
170
171
|
readonly width?: Maybe<Scalars['Int']>;
|
|
171
172
|
};
|
|
172
|
-
export
|
|
173
|
+
export type FullBleedTopper = Topper & TopperWithBrand & TopperWithImages & TopperWithTheme & {
|
|
173
174
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
174
175
|
readonly brandConcept?: Maybe<Concept>;
|
|
175
176
|
readonly displayConcept?: Maybe<Concept>;
|
|
@@ -180,7 +181,7 @@ export declare type FullBleedTopper = Topper & TopperWithBrand & TopperWithImage
|
|
|
180
181
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']>;
|
|
181
182
|
readonly layout?: Maybe<Scalars['String']>;
|
|
182
183
|
};
|
|
183
|
-
export
|
|
184
|
+
export type Image = {
|
|
184
185
|
readonly caption?: Maybe<Scalars['String']>;
|
|
185
186
|
readonly credit?: Maybe<Scalars['String']>;
|
|
186
187
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -191,11 +192,11 @@ export declare type Image = {
|
|
|
191
192
|
readonly url?: Maybe<Scalars['String']>;
|
|
192
193
|
readonly width?: Maybe<Scalars['Int']>;
|
|
193
194
|
};
|
|
194
|
-
export
|
|
195
|
+
export type ImageSourceSetArgs = {
|
|
195
196
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
196
197
|
width?: InputMaybe<Scalars['Int']>;
|
|
197
198
|
};
|
|
198
|
-
export
|
|
199
|
+
export type ImageDesktop = Image & {
|
|
199
200
|
readonly caption?: Maybe<Scalars['String']>;
|
|
200
201
|
readonly credit?: Maybe<Scalars['String']>;
|
|
201
202
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -206,11 +207,11 @@ export declare type ImageDesktop = Image & {
|
|
|
206
207
|
readonly url?: Maybe<Scalars['String']>;
|
|
207
208
|
readonly width?: Maybe<Scalars['Int']>;
|
|
208
209
|
};
|
|
209
|
-
export
|
|
210
|
+
export type ImageDesktopSourceSetArgs = {
|
|
210
211
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
211
212
|
width?: InputMaybe<Scalars['Int']>;
|
|
212
213
|
};
|
|
213
|
-
export
|
|
214
|
+
export type ImageMobile = Image & {
|
|
214
215
|
readonly caption?: Maybe<Scalars['String']>;
|
|
215
216
|
readonly credit?: Maybe<Scalars['String']>;
|
|
216
217
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -221,20 +222,20 @@ export declare type ImageMobile = Image & {
|
|
|
221
222
|
readonly url?: Maybe<Scalars['String']>;
|
|
222
223
|
readonly width?: Maybe<Scalars['Int']>;
|
|
223
224
|
};
|
|
224
|
-
export
|
|
225
|
+
export type ImageMobileSourceSetArgs = {
|
|
225
226
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
226
227
|
width?: InputMaybe<Scalars['Int']>;
|
|
227
228
|
};
|
|
228
|
-
export
|
|
229
|
+
export type ImageSet = Reference & {
|
|
229
230
|
readonly picture: Picture;
|
|
230
231
|
readonly type: Scalars['String'];
|
|
231
232
|
};
|
|
232
|
-
export
|
|
233
|
+
export type ImageSource = {
|
|
233
234
|
readonly dpr?: Maybe<Scalars['Int']>;
|
|
234
235
|
readonly url: Scalars['String'];
|
|
235
236
|
readonly width?: Maybe<Scalars['Int']>;
|
|
236
237
|
};
|
|
237
|
-
export
|
|
238
|
+
export type ImageSquare = Image & {
|
|
238
239
|
readonly caption?: Maybe<Scalars['String']>;
|
|
239
240
|
readonly credit?: Maybe<Scalars['String']>;
|
|
240
241
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -245,11 +246,11 @@ export declare type ImageSquare = Image & {
|
|
|
245
246
|
readonly url?: Maybe<Scalars['String']>;
|
|
246
247
|
readonly width?: Maybe<Scalars['Int']>;
|
|
247
248
|
};
|
|
248
|
-
export
|
|
249
|
+
export type ImageSquareSourceSetArgs = {
|
|
249
250
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
250
251
|
width?: InputMaybe<Scalars['Int']>;
|
|
251
252
|
};
|
|
252
|
-
export
|
|
253
|
+
export type ImageSquareFtEdit = Image & {
|
|
253
254
|
readonly caption?: Maybe<Scalars['String']>;
|
|
254
255
|
readonly credit?: Maybe<Scalars['String']>;
|
|
255
256
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -260,11 +261,11 @@ export declare type ImageSquareFtEdit = Image & {
|
|
|
260
261
|
readonly url?: Maybe<Scalars['String']>;
|
|
261
262
|
readonly width?: Maybe<Scalars['Int']>;
|
|
262
263
|
};
|
|
263
|
-
export
|
|
264
|
+
export type ImageSquareFtEditSourceSetArgs = {
|
|
264
265
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
265
266
|
width?: InputMaybe<Scalars['Int']>;
|
|
266
267
|
};
|
|
267
|
-
export
|
|
268
|
+
export type ImageStandard = Image & {
|
|
268
269
|
readonly caption?: Maybe<Scalars['String']>;
|
|
269
270
|
readonly credit?: Maybe<Scalars['String']>;
|
|
270
271
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -275,11 +276,11 @@ export declare type ImageStandard = Image & {
|
|
|
275
276
|
readonly url?: Maybe<Scalars['String']>;
|
|
276
277
|
readonly width?: Maybe<Scalars['Int']>;
|
|
277
278
|
};
|
|
278
|
-
export
|
|
279
|
+
export type ImageStandardSourceSetArgs = {
|
|
279
280
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
280
281
|
width?: InputMaybe<Scalars['Int']>;
|
|
281
282
|
};
|
|
282
|
-
export
|
|
283
|
+
export type ImageStandardInline = Image & {
|
|
283
284
|
readonly caption?: Maybe<Scalars['String']>;
|
|
284
285
|
readonly credit?: Maybe<Scalars['String']>;
|
|
285
286
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -290,11 +291,11 @@ export declare type ImageStandardInline = Image & {
|
|
|
290
291
|
readonly url?: Maybe<Scalars['String']>;
|
|
291
292
|
readonly width?: Maybe<Scalars['Int']>;
|
|
292
293
|
};
|
|
293
|
-
export
|
|
294
|
+
export type ImageStandardInlineSourceSetArgs = {
|
|
294
295
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
295
296
|
width?: InputMaybe<Scalars['Int']>;
|
|
296
297
|
};
|
|
297
|
-
export
|
|
298
|
+
export type ImageWide = Image & {
|
|
298
299
|
readonly caption?: Maybe<Scalars['String']>;
|
|
299
300
|
readonly credit?: Maybe<Scalars['String']>;
|
|
300
301
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -305,11 +306,11 @@ export declare type ImageWide = Image & {
|
|
|
305
306
|
readonly url?: Maybe<Scalars['String']>;
|
|
306
307
|
readonly width?: Maybe<Scalars['Int']>;
|
|
307
308
|
};
|
|
308
|
-
export
|
|
309
|
+
export type ImageWideSourceSetArgs = {
|
|
309
310
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
310
311
|
width?: InputMaybe<Scalars['Int']>;
|
|
311
312
|
};
|
|
312
|
-
export
|
|
313
|
+
export type Indicators = {
|
|
313
314
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']>;
|
|
314
315
|
readonly isColumn?: Maybe<Scalars['Boolean']>;
|
|
315
316
|
readonly isEditorsChoice?: Maybe<Scalars['Boolean']>;
|
|
@@ -318,11 +319,11 @@ export declare type Indicators = {
|
|
|
318
319
|
readonly isPodcast?: Maybe<Scalars['Boolean']>;
|
|
319
320
|
readonly isScoop?: Maybe<Scalars['Boolean']>;
|
|
320
321
|
};
|
|
321
|
-
export
|
|
322
|
+
export type LayoutImage = Reference & {
|
|
322
323
|
readonly picture: Picture;
|
|
323
324
|
readonly type: Scalars['String'];
|
|
324
325
|
};
|
|
325
|
-
export
|
|
326
|
+
export type LiveBlogPackage = Content & {
|
|
326
327
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
327
328
|
readonly altTitle?: Maybe<AltTitle>;
|
|
328
329
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -341,13 +342,13 @@ export declare type LiveBlogPackage = Content & {
|
|
|
341
342
|
readonly teaser?: Maybe<Teaser>;
|
|
342
343
|
readonly title: Scalars['String'];
|
|
343
344
|
readonly topper?: Maybe<Topper>;
|
|
344
|
-
readonly type: Scalars['
|
|
345
|
+
readonly type: Scalars['ContentType'];
|
|
345
346
|
readonly url: Scalars['String'];
|
|
346
347
|
};
|
|
347
|
-
export
|
|
348
|
+
export type LiveBlogPackageUrlArgs = {
|
|
348
349
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
349
350
|
};
|
|
350
|
-
export
|
|
351
|
+
export type LiveBlogPost = Content & {
|
|
351
352
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
352
353
|
readonly altTitle?: Maybe<AltTitle>;
|
|
353
354
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -364,17 +365,17 @@ export declare type LiveBlogPost = Content & {
|
|
|
364
365
|
readonly teaser?: Maybe<Teaser>;
|
|
365
366
|
readonly title: Scalars['String'];
|
|
366
367
|
readonly topper?: Maybe<Topper>;
|
|
367
|
-
readonly type: Scalars['
|
|
368
|
+
readonly type: Scalars['ContentType'];
|
|
368
369
|
readonly url: Scalars['String'];
|
|
369
370
|
};
|
|
370
|
-
export
|
|
371
|
+
export type LiveBlogPostUrlArgs = {
|
|
371
372
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
372
373
|
};
|
|
373
|
-
export
|
|
374
|
+
export type MainImage = Reference & {
|
|
374
375
|
readonly picture: Picture;
|
|
375
376
|
readonly type: Scalars['String'];
|
|
376
377
|
};
|
|
377
|
-
export
|
|
378
|
+
export type OpinionTopper = Topper & TopperWithHeadshot & TopperWithTheme & {
|
|
378
379
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
379
380
|
readonly columnist?: Maybe<Concept>;
|
|
380
381
|
readonly displayConcept?: Maybe<Concept>;
|
|
@@ -384,11 +385,11 @@ export declare type OpinionTopper = Topper & TopperWithHeadshot & TopperWithThem
|
|
|
384
385
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']>;
|
|
385
386
|
readonly layout?: Maybe<Scalars['String']>;
|
|
386
387
|
};
|
|
387
|
-
export
|
|
388
|
+
export type OpinionTopperHeadshotArgs = {
|
|
388
389
|
dpr?: InputMaybe<Scalars['Int']>;
|
|
389
390
|
width?: InputMaybe<Scalars['Int']>;
|
|
390
391
|
};
|
|
391
|
-
export
|
|
392
|
+
export type Picture = {
|
|
392
393
|
readonly alt: Scalars['String'];
|
|
393
394
|
readonly caption?: Maybe<Scalars['String']>;
|
|
394
395
|
readonly credit?: Maybe<Scalars['String']>;
|
|
@@ -397,7 +398,7 @@ export declare type Picture = {
|
|
|
397
398
|
readonly images: ReadonlyArray<Image>;
|
|
398
399
|
readonly layoutWidth?: Maybe<Scalars['String']>;
|
|
399
400
|
};
|
|
400
|
-
export
|
|
401
|
+
export type PictureFullBleed = Picture & {
|
|
401
402
|
readonly alt: Scalars['String'];
|
|
402
403
|
readonly caption?: Maybe<Scalars['String']>;
|
|
403
404
|
readonly credit?: Maybe<Scalars['String']>;
|
|
@@ -406,7 +407,7 @@ export declare type PictureFullBleed = Picture & {
|
|
|
406
407
|
readonly images: ReadonlyArray<Image>;
|
|
407
408
|
readonly layoutWidth?: Maybe<Scalars['String']>;
|
|
408
409
|
};
|
|
409
|
-
export
|
|
410
|
+
export type PictureInline = Picture & {
|
|
410
411
|
readonly alt: Scalars['String'];
|
|
411
412
|
readonly caption?: Maybe<Scalars['String']>;
|
|
412
413
|
readonly credit?: Maybe<Scalars['String']>;
|
|
@@ -415,7 +416,7 @@ export declare type PictureInline = Picture & {
|
|
|
415
416
|
readonly images: ReadonlyArray<Image>;
|
|
416
417
|
readonly layoutWidth?: Maybe<Scalars['String']>;
|
|
417
418
|
};
|
|
418
|
-
export
|
|
419
|
+
export type PictureStandard = Picture & {
|
|
419
420
|
readonly alt: Scalars['String'];
|
|
420
421
|
readonly caption?: Maybe<Scalars['String']>;
|
|
421
422
|
readonly credit?: Maybe<Scalars['String']>;
|
|
@@ -424,34 +425,34 @@ export declare type PictureStandard = Picture & {
|
|
|
424
425
|
readonly images: ReadonlyArray<Image>;
|
|
425
426
|
readonly layoutWidth?: Maybe<Scalars['String']>;
|
|
426
427
|
};
|
|
427
|
-
export
|
|
428
|
+
export type Query = {
|
|
428
429
|
readonly content: Content;
|
|
429
430
|
readonly contentFromJSON: Content;
|
|
430
431
|
readonly version: Scalars['String'];
|
|
431
432
|
};
|
|
432
|
-
export
|
|
433
|
+
export type QueryContentArgs = {
|
|
433
434
|
uuid: Scalars['String'];
|
|
434
435
|
};
|
|
435
|
-
export
|
|
436
|
+
export type QueryContentFromJsonArgs = {
|
|
436
437
|
content: Scalars['JSON'];
|
|
437
438
|
};
|
|
438
|
-
export
|
|
439
|
+
export type RawImage = Reference & {
|
|
439
440
|
readonly image: Image;
|
|
440
441
|
readonly type: Scalars['String'];
|
|
441
442
|
};
|
|
442
|
-
export
|
|
443
|
+
export type Recommended = Reference & {
|
|
443
444
|
readonly teaser: Teaser;
|
|
444
445
|
readonly type: Scalars['String'];
|
|
445
446
|
};
|
|
446
|
-
export
|
|
447
|
+
export type Reference = {
|
|
447
448
|
readonly type: Scalars['String'];
|
|
448
449
|
};
|
|
449
|
-
export
|
|
450
|
+
export type RichText = {
|
|
450
451
|
readonly raw: Scalars['String'];
|
|
451
452
|
readonly source: Scalars['RichTextSource'];
|
|
452
453
|
readonly structured: StructuredContent;
|
|
453
454
|
};
|
|
454
|
-
export
|
|
455
|
+
export type SplitTextTopper = Topper & TopperWithBrand & TopperWithImages & TopperWithPackage & TopperWithTheme & {
|
|
455
456
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
456
457
|
readonly brandConcept?: Maybe<Concept>;
|
|
457
458
|
readonly design?: Maybe<Scalars['String']>;
|
|
@@ -463,11 +464,11 @@ export declare type SplitTextTopper = Topper & TopperWithBrand & TopperWithImage
|
|
|
463
464
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']>;
|
|
464
465
|
readonly layout?: Maybe<Scalars['String']>;
|
|
465
466
|
};
|
|
466
|
-
export
|
|
467
|
+
export type StructuredContent = {
|
|
467
468
|
readonly references: ReadonlyArray<Reference>;
|
|
468
469
|
readonly tree: Scalars['JSON'];
|
|
469
470
|
};
|
|
470
|
-
export
|
|
471
|
+
export type Teaser = {
|
|
471
472
|
readonly firstPublishedDate?: Maybe<Scalars['String']>;
|
|
472
473
|
readonly id?: Maybe<Scalars['String']>;
|
|
473
474
|
readonly image?: Maybe<Image>;
|
|
@@ -483,41 +484,41 @@ export declare type Teaser = {
|
|
|
483
484
|
readonly type?: Maybe<Scalars['String']>;
|
|
484
485
|
readonly url: Scalars['String'];
|
|
485
486
|
};
|
|
486
|
-
export
|
|
487
|
+
export type TeaserUrlArgs = {
|
|
487
488
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
488
489
|
};
|
|
489
|
-
export
|
|
490
|
+
export type Topper = {
|
|
490
491
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
491
492
|
readonly displayConcept?: Maybe<Concept>;
|
|
492
493
|
readonly headline: Scalars['String'];
|
|
493
494
|
readonly intro?: Maybe<RichText>;
|
|
494
495
|
};
|
|
495
|
-
export
|
|
496
|
+
export type TopperWithBrand = {
|
|
496
497
|
readonly brandConcept?: Maybe<Concept>;
|
|
497
498
|
};
|
|
498
|
-
export
|
|
499
|
+
export type TopperWithHeadshot = {
|
|
499
500
|
readonly headshot?: Maybe<Scalars['String']>;
|
|
500
501
|
};
|
|
501
|
-
export
|
|
502
|
+
export type TopperWithHeadshotHeadshotArgs = {
|
|
502
503
|
dpr?: InputMaybe<Scalars['Int']>;
|
|
503
504
|
width?: InputMaybe<Scalars['Int']>;
|
|
504
505
|
};
|
|
505
|
-
export
|
|
506
|
+
export type TopperWithImages = {
|
|
506
507
|
readonly fallbackImage?: Maybe<Image>;
|
|
507
508
|
readonly images: ReadonlyArray<Image>;
|
|
508
509
|
};
|
|
509
|
-
export
|
|
510
|
+
export type TopperWithPackage = {
|
|
510
511
|
readonly design?: Maybe<Scalars['String']>;
|
|
511
512
|
};
|
|
512
|
-
export
|
|
513
|
+
export type TopperWithTheme = {
|
|
513
514
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']>;
|
|
514
515
|
readonly layout?: Maybe<Scalars['String']>;
|
|
515
516
|
};
|
|
516
|
-
export
|
|
517
|
+
export type Tweet = Reference & {
|
|
517
518
|
readonly html?: Maybe<Scalars['String']>;
|
|
518
519
|
readonly type: Scalars['String'];
|
|
519
520
|
};
|
|
520
|
-
export
|
|
521
|
+
export type Video = Content & {
|
|
521
522
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
522
523
|
readonly altTitle?: Maybe<AltTitle>;
|
|
523
524
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -534,13 +535,18 @@ export declare type Video = Content & Reference & {
|
|
|
534
535
|
readonly teaser?: Maybe<Teaser>;
|
|
535
536
|
readonly title: Scalars['String'];
|
|
536
537
|
readonly topper?: Maybe<Topper>;
|
|
537
|
-
readonly type: Scalars['
|
|
538
|
+
readonly type: Scalars['ContentType'];
|
|
538
539
|
readonly url: Scalars['String'];
|
|
539
540
|
};
|
|
540
|
-
export
|
|
541
|
+
export type VideoUrlArgs = {
|
|
541
542
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
542
543
|
};
|
|
543
|
-
export
|
|
544
|
+
export type VideoReference = Reference & {
|
|
545
|
+
readonly id: Scalars['String'];
|
|
546
|
+
readonly title: Scalars['String'];
|
|
547
|
+
readonly type: Scalars['String'];
|
|
548
|
+
};
|
|
549
|
+
export type ConceptFragment = {
|
|
544
550
|
readonly id: string;
|
|
545
551
|
readonly prefLabel: string;
|
|
546
552
|
readonly types: ReadonlyArray<string>;
|
|
@@ -550,10 +556,10 @@ export declare type ConceptFragment = {
|
|
|
550
556
|
readonly url: string;
|
|
551
557
|
readonly relativeUrl: string;
|
|
552
558
|
};
|
|
553
|
-
export
|
|
559
|
+
export type StructuredTreeFragment = {
|
|
554
560
|
readonly tree: any;
|
|
555
561
|
};
|
|
556
|
-
export
|
|
562
|
+
export type TeaserFragment = {
|
|
557
563
|
readonly title?: string | null;
|
|
558
564
|
readonly id?: string | null;
|
|
559
565
|
readonly url: string;
|
|
@@ -623,23 +629,23 @@ export declare type TeaserFragment = {
|
|
|
623
629
|
readonly isScoop?: boolean | null;
|
|
624
630
|
} | null;
|
|
625
631
|
};
|
|
626
|
-
export
|
|
632
|
+
export type ImageSourceFragment = {
|
|
627
633
|
readonly dpr?: number | null;
|
|
628
634
|
readonly width?: number | null;
|
|
629
635
|
readonly url: string;
|
|
630
636
|
};
|
|
631
|
-
export
|
|
632
|
-
readonly source: 'standfirst' | 'summary';
|
|
637
|
+
export type IntroFragment = {
|
|
638
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
633
639
|
readonly structured: {
|
|
634
640
|
readonly tree: any;
|
|
635
641
|
};
|
|
636
642
|
};
|
|
637
|
-
|
|
643
|
+
type Topper_BasicTopper_Fragment = {
|
|
638
644
|
readonly __typename: 'BasicTopper';
|
|
639
645
|
readonly headline: string;
|
|
640
646
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
641
647
|
readonly intro?: {
|
|
642
|
-
readonly source: 'standfirst' | 'summary';
|
|
648
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
643
649
|
readonly structured: {
|
|
644
650
|
readonly tree: any;
|
|
645
651
|
};
|
|
@@ -655,7 +661,7 @@ declare type Topper_BasicTopper_Fragment = {
|
|
|
655
661
|
readonly relativeUrl: string;
|
|
656
662
|
} | null;
|
|
657
663
|
};
|
|
658
|
-
|
|
664
|
+
type Topper_BrandedTopper_Fragment = {
|
|
659
665
|
readonly __typename: 'BrandedTopper';
|
|
660
666
|
readonly isLargeHeadline?: boolean | null;
|
|
661
667
|
readonly layout?: string | null;
|
|
@@ -672,7 +678,7 @@ declare type Topper_BrandedTopper_Fragment = {
|
|
|
672
678
|
readonly relativeUrl: string;
|
|
673
679
|
} | null;
|
|
674
680
|
readonly intro?: {
|
|
675
|
-
readonly source: 'standfirst' | 'summary';
|
|
681
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
676
682
|
readonly structured: {
|
|
677
683
|
readonly tree: any;
|
|
678
684
|
};
|
|
@@ -688,7 +694,7 @@ declare type Topper_BrandedTopper_Fragment = {
|
|
|
688
694
|
readonly relativeUrl: string;
|
|
689
695
|
} | null;
|
|
690
696
|
};
|
|
691
|
-
|
|
697
|
+
type Topper_FullBleedTopper_Fragment = {
|
|
692
698
|
readonly __typename: 'FullBleedTopper';
|
|
693
699
|
readonly isLargeHeadline?: boolean | null;
|
|
694
700
|
readonly layout?: string | null;
|
|
@@ -869,7 +875,7 @@ declare type Topper_FullBleedTopper_Fragment = {
|
|
|
869
875
|
}>;
|
|
870
876
|
}>;
|
|
871
877
|
readonly intro?: {
|
|
872
|
-
readonly source: 'standfirst' | 'summary';
|
|
878
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
873
879
|
readonly structured: {
|
|
874
880
|
readonly tree: any;
|
|
875
881
|
};
|
|
@@ -885,7 +891,7 @@ declare type Topper_FullBleedTopper_Fragment = {
|
|
|
885
891
|
readonly relativeUrl: string;
|
|
886
892
|
} | null;
|
|
887
893
|
};
|
|
888
|
-
|
|
894
|
+
type Topper_OpinionTopper_Fragment = {
|
|
889
895
|
readonly __typename: 'OpinionTopper';
|
|
890
896
|
readonly headshot?: string | null;
|
|
891
897
|
readonly isLargeHeadline?: boolean | null;
|
|
@@ -903,7 +909,7 @@ declare type Topper_OpinionTopper_Fragment = {
|
|
|
903
909
|
readonly relativeUrl: string;
|
|
904
910
|
} | null;
|
|
905
911
|
readonly intro?: {
|
|
906
|
-
readonly source: 'standfirst' | 'summary';
|
|
912
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
907
913
|
readonly structured: {
|
|
908
914
|
readonly tree: any;
|
|
909
915
|
};
|
|
@@ -919,7 +925,7 @@ declare type Topper_OpinionTopper_Fragment = {
|
|
|
919
925
|
readonly relativeUrl: string;
|
|
920
926
|
} | null;
|
|
921
927
|
};
|
|
922
|
-
|
|
928
|
+
type Topper_SplitTextTopper_Fragment = {
|
|
923
929
|
readonly __typename: 'SplitTextTopper';
|
|
924
930
|
readonly isLargeHeadline?: boolean | null;
|
|
925
931
|
readonly layout?: string | null;
|
|
@@ -1096,7 +1102,7 @@ declare type Topper_SplitTextTopper_Fragment = {
|
|
|
1096
1102
|
readonly id: string;
|
|
1097
1103
|
}>;
|
|
1098
1104
|
readonly intro?: {
|
|
1099
|
-
readonly source: 'standfirst' | 'summary';
|
|
1105
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
1100
1106
|
readonly structured: {
|
|
1101
1107
|
readonly tree: any;
|
|
1102
1108
|
};
|
|
@@ -1112,8 +1118,8 @@ declare type Topper_SplitTextTopper_Fragment = {
|
|
|
1112
1118
|
readonly relativeUrl: string;
|
|
1113
1119
|
} | null;
|
|
1114
1120
|
};
|
|
1115
|
-
export
|
|
1116
|
-
|
|
1121
|
+
export type TopperFragment = Topper_BasicTopper_Fragment | Topper_BrandedTopper_Fragment | Topper_FullBleedTopper_Fragment | Topper_OpinionTopper_Fragment | Topper_SplitTextTopper_Fragment;
|
|
1122
|
+
type Image_ImageDesktop_Fragment = {
|
|
1117
1123
|
readonly __typename: 'ImageDesktop';
|
|
1118
1124
|
readonly height?: number | null;
|
|
1119
1125
|
readonly width?: number | null;
|
|
@@ -1122,7 +1128,7 @@ declare type Image_ImageDesktop_Fragment = {
|
|
|
1122
1128
|
readonly url?: string | null;
|
|
1123
1129
|
readonly id: string;
|
|
1124
1130
|
};
|
|
1125
|
-
|
|
1131
|
+
type Image_ImageMobile_Fragment = {
|
|
1126
1132
|
readonly __typename: 'ImageMobile';
|
|
1127
1133
|
readonly height?: number | null;
|
|
1128
1134
|
readonly width?: number | null;
|
|
@@ -1131,7 +1137,7 @@ declare type Image_ImageMobile_Fragment = {
|
|
|
1131
1137
|
readonly url?: string | null;
|
|
1132
1138
|
readonly id: string;
|
|
1133
1139
|
};
|
|
1134
|
-
|
|
1140
|
+
type Image_ImageSquare_Fragment = {
|
|
1135
1141
|
readonly __typename: 'ImageSquare';
|
|
1136
1142
|
readonly height?: number | null;
|
|
1137
1143
|
readonly width?: number | null;
|
|
@@ -1140,7 +1146,7 @@ declare type Image_ImageSquare_Fragment = {
|
|
|
1140
1146
|
readonly url?: string | null;
|
|
1141
1147
|
readonly id: string;
|
|
1142
1148
|
};
|
|
1143
|
-
|
|
1149
|
+
type Image_ImageSquareFtEdit_Fragment = {
|
|
1144
1150
|
readonly __typename: 'ImageSquareFTEdit';
|
|
1145
1151
|
readonly height?: number | null;
|
|
1146
1152
|
readonly width?: number | null;
|
|
@@ -1149,7 +1155,7 @@ declare type Image_ImageSquareFtEdit_Fragment = {
|
|
|
1149
1155
|
readonly url?: string | null;
|
|
1150
1156
|
readonly id: string;
|
|
1151
1157
|
};
|
|
1152
|
-
|
|
1158
|
+
type Image_ImageStandard_Fragment = {
|
|
1153
1159
|
readonly __typename: 'ImageStandard';
|
|
1154
1160
|
readonly height?: number | null;
|
|
1155
1161
|
readonly width?: number | null;
|
|
@@ -1158,7 +1164,7 @@ declare type Image_ImageStandard_Fragment = {
|
|
|
1158
1164
|
readonly url?: string | null;
|
|
1159
1165
|
readonly id: string;
|
|
1160
1166
|
};
|
|
1161
|
-
|
|
1167
|
+
type Image_ImageStandardInline_Fragment = {
|
|
1162
1168
|
readonly __typename: 'ImageStandardInline';
|
|
1163
1169
|
readonly height?: number | null;
|
|
1164
1170
|
readonly width?: number | null;
|
|
@@ -1167,7 +1173,7 @@ declare type Image_ImageStandardInline_Fragment = {
|
|
|
1167
1173
|
readonly url?: string | null;
|
|
1168
1174
|
readonly id: string;
|
|
1169
1175
|
};
|
|
1170
|
-
|
|
1176
|
+
type Image_ImageWide_Fragment = {
|
|
1171
1177
|
readonly __typename: 'ImageWide';
|
|
1172
1178
|
readonly height?: number | null;
|
|
1173
1179
|
readonly width?: number | null;
|
|
@@ -1176,8 +1182,8 @@ declare type Image_ImageWide_Fragment = {
|
|
|
1176
1182
|
readonly url?: string | null;
|
|
1177
1183
|
readonly id: string;
|
|
1178
1184
|
};
|
|
1179
|
-
export
|
|
1180
|
-
|
|
1185
|
+
export type ImageFragment = Image_ImageDesktop_Fragment | Image_ImageMobile_Fragment | Image_ImageSquare_Fragment | Image_ImageSquareFtEdit_Fragment | Image_ImageStandard_Fragment | Image_ImageStandardInline_Fragment | Image_ImageWide_Fragment;
|
|
1186
|
+
type Picture_PictureFullBleed_Fragment = {
|
|
1181
1187
|
readonly __typename: 'PictureFullBleed';
|
|
1182
1188
|
readonly alt: string;
|
|
1183
1189
|
readonly caption?: string | null;
|
|
@@ -1314,7 +1320,7 @@ declare type Picture_PictureFullBleed_Fragment = {
|
|
|
1314
1320
|
readonly id: string;
|
|
1315
1321
|
};
|
|
1316
1322
|
};
|
|
1317
|
-
|
|
1323
|
+
type Picture_PictureInline_Fragment = {
|
|
1318
1324
|
readonly __typename: 'PictureInline';
|
|
1319
1325
|
readonly alt: string;
|
|
1320
1326
|
readonly caption?: string | null;
|
|
@@ -1441,7 +1447,7 @@ declare type Picture_PictureInline_Fragment = {
|
|
|
1441
1447
|
readonly id: string;
|
|
1442
1448
|
};
|
|
1443
1449
|
};
|
|
1444
|
-
|
|
1450
|
+
type Picture_PictureStandard_Fragment = {
|
|
1445
1451
|
readonly __typename: 'PictureStandard';
|
|
1446
1452
|
readonly alt: string;
|
|
1447
1453
|
readonly caption?: string | null;
|
|
@@ -1573,8 +1579,8 @@ declare type Picture_PictureStandard_Fragment = {
|
|
|
1573
1579
|
readonly id: string;
|
|
1574
1580
|
};
|
|
1575
1581
|
};
|
|
1576
|
-
export
|
|
1577
|
-
export
|
|
1582
|
+
export type PictureFragment = Picture_PictureFullBleed_Fragment | Picture_PictureInline_Fragment | Picture_PictureStandard_Fragment;
|
|
1583
|
+
export type MainImageFragment = {
|
|
1578
1584
|
readonly picture: {
|
|
1579
1585
|
readonly __typename: 'PictureFullBleed';
|
|
1580
1586
|
readonly alt: string;
|
|
@@ -1970,7 +1976,7 @@ export declare type MainImageFragment = {
|
|
|
1970
1976
|
};
|
|
1971
1977
|
};
|
|
1972
1978
|
};
|
|
1973
|
-
export
|
|
1979
|
+
export type ImageSetFragment = {
|
|
1974
1980
|
readonly picture: {
|
|
1975
1981
|
readonly __typename: 'PictureFullBleed';
|
|
1976
1982
|
readonly alt: string;
|
|
@@ -2366,7 +2372,7 @@ export declare type ImageSetFragment = {
|
|
|
2366
2372
|
};
|
|
2367
2373
|
};
|
|
2368
2374
|
};
|
|
2369
|
-
export
|
|
2375
|
+
export type LayoutImageFragment = {
|
|
2370
2376
|
readonly picture: {
|
|
2371
2377
|
readonly __typename: 'PictureFullBleed';
|
|
2372
2378
|
readonly alt: string;
|
|
@@ -2762,7 +2768,7 @@ export declare type LayoutImageFragment = {
|
|
|
2762
2768
|
};
|
|
2763
2769
|
};
|
|
2764
2770
|
};
|
|
2765
|
-
export
|
|
2771
|
+
export type RecommendedFragment = {
|
|
2766
2772
|
readonly teaser: {
|
|
2767
2773
|
readonly title?: string | null;
|
|
2768
2774
|
readonly id?: string | null;
|
|
@@ -2834,21 +2840,21 @@ export declare type RecommendedFragment = {
|
|
|
2834
2840
|
} | null;
|
|
2835
2841
|
};
|
|
2836
2842
|
};
|
|
2837
|
-
export
|
|
2843
|
+
export type TweetFragment = {
|
|
2838
2844
|
readonly html?: string | null;
|
|
2839
2845
|
};
|
|
2840
|
-
export
|
|
2846
|
+
export type VideoFragment = {
|
|
2841
2847
|
readonly title: string;
|
|
2842
2848
|
readonly id: string;
|
|
2843
2849
|
};
|
|
2844
|
-
export
|
|
2850
|
+
export type FlourishFragment = {
|
|
2845
2851
|
readonly fallbackImage?: {
|
|
2846
2852
|
readonly url?: string | null;
|
|
2847
2853
|
readonly height?: number | null;
|
|
2848
2854
|
readonly width?: number | null;
|
|
2849
2855
|
} | null;
|
|
2850
2856
|
};
|
|
2851
|
-
export
|
|
2857
|
+
export type RawImageFragment = {
|
|
2852
2858
|
readonly image: {
|
|
2853
2859
|
readonly __typename: 'ImageDesktop';
|
|
2854
2860
|
readonly height?: number | null;
|
|
@@ -2907,11 +2913,11 @@ export declare type RawImageFragment = {
|
|
|
2907
2913
|
readonly id: string;
|
|
2908
2914
|
};
|
|
2909
2915
|
};
|
|
2910
|
-
export
|
|
2916
|
+
export type DesignFragment = {
|
|
2911
2917
|
readonly theme?: 'special-report' | 'extra' | 'basic' | null;
|
|
2912
2918
|
readonly layout?: string | null;
|
|
2913
2919
|
};
|
|
2914
|
-
|
|
2920
|
+
type ArticleReferences_Flourish_Fragment = {
|
|
2915
2921
|
readonly type: string;
|
|
2916
2922
|
readonly fallbackImage?: {
|
|
2917
2923
|
readonly url?: string | null;
|
|
@@ -2919,7 +2925,7 @@ declare type ArticleReferences_Flourish_Fragment = {
|
|
|
2919
2925
|
readonly width?: number | null;
|
|
2920
2926
|
} | null;
|
|
2921
2927
|
};
|
|
2922
|
-
|
|
2928
|
+
type ArticleReferences_ImageSet_Fragment = {
|
|
2923
2929
|
readonly type: string;
|
|
2924
2930
|
readonly picture: {
|
|
2925
2931
|
readonly __typename: 'PictureFullBleed';
|
|
@@ -3316,7 +3322,7 @@ declare type ArticleReferences_ImageSet_Fragment = {
|
|
|
3316
3322
|
};
|
|
3317
3323
|
};
|
|
3318
3324
|
};
|
|
3319
|
-
|
|
3325
|
+
type ArticleReferences_LayoutImage_Fragment = {
|
|
3320
3326
|
readonly type: string;
|
|
3321
3327
|
readonly picture: {
|
|
3322
3328
|
readonly __typename: 'PictureFullBleed';
|
|
@@ -3713,7 +3719,7 @@ declare type ArticleReferences_LayoutImage_Fragment = {
|
|
|
3713
3719
|
};
|
|
3714
3720
|
};
|
|
3715
3721
|
};
|
|
3716
|
-
|
|
3722
|
+
type ArticleReferences_MainImage_Fragment = {
|
|
3717
3723
|
readonly type: string;
|
|
3718
3724
|
readonly picture: {
|
|
3719
3725
|
readonly __typename: 'PictureFullBleed';
|
|
@@ -4110,7 +4116,7 @@ declare type ArticleReferences_MainImage_Fragment = {
|
|
|
4110
4116
|
};
|
|
4111
4117
|
};
|
|
4112
4118
|
};
|
|
4113
|
-
|
|
4119
|
+
type ArticleReferences_RawImage_Fragment = {
|
|
4114
4120
|
readonly type: string;
|
|
4115
4121
|
readonly image: {
|
|
4116
4122
|
readonly __typename: 'ImageDesktop';
|
|
@@ -4170,7 +4176,7 @@ declare type ArticleReferences_RawImage_Fragment = {
|
|
|
4170
4176
|
readonly id: string;
|
|
4171
4177
|
};
|
|
4172
4178
|
};
|
|
4173
|
-
|
|
4179
|
+
type ArticleReferences_Recommended_Fragment = {
|
|
4174
4180
|
readonly type: string;
|
|
4175
4181
|
readonly teaser: {
|
|
4176
4182
|
readonly title?: string | null;
|
|
@@ -4243,17 +4249,17 @@ declare type ArticleReferences_Recommended_Fragment = {
|
|
|
4243
4249
|
} | null;
|
|
4244
4250
|
};
|
|
4245
4251
|
};
|
|
4246
|
-
|
|
4252
|
+
type ArticleReferences_Tweet_Fragment = {
|
|
4247
4253
|
readonly type: string;
|
|
4248
4254
|
readonly html?: string | null;
|
|
4249
4255
|
};
|
|
4250
|
-
|
|
4256
|
+
type ArticleReferences_VideoReference_Fragment = {
|
|
4251
4257
|
readonly type: string;
|
|
4252
4258
|
readonly title: string;
|
|
4253
4259
|
readonly id: string;
|
|
4254
4260
|
};
|
|
4255
|
-
export
|
|
4256
|
-
export
|
|
4261
|
+
export type ArticleReferencesFragment = ArticleReferences_Flourish_Fragment | ArticleReferences_ImageSet_Fragment | ArticleReferences_LayoutImage_Fragment | ArticleReferences_MainImage_Fragment | ArticleReferences_RawImage_Fragment | ArticleReferences_Recommended_Fragment | ArticleReferences_Tweet_Fragment | ArticleReferences_VideoReference_Fragment;
|
|
4262
|
+
export type StructuredContentFragment = {
|
|
4257
4263
|
readonly tree: any;
|
|
4258
4264
|
readonly references: ReadonlyArray<{
|
|
4259
4265
|
readonly type: string;
|
|
@@ -5590,7 +5596,7 @@ export declare type StructuredContentFragment = {
|
|
|
5590
5596
|
readonly id: string;
|
|
5591
5597
|
}>;
|
|
5592
5598
|
};
|
|
5593
|
-
|
|
5599
|
+
type Content_Article_Fragment = {
|
|
5594
5600
|
readonly __typename: 'Article';
|
|
5595
5601
|
readonly id: string;
|
|
5596
5602
|
readonly title: string;
|
|
@@ -5602,7 +5608,7 @@ declare type Content_Article_Fragment = {
|
|
|
5602
5608
|
readonly headline: string;
|
|
5603
5609
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
5604
5610
|
readonly intro?: {
|
|
5605
|
-
readonly source: 'standfirst' | 'summary';
|
|
5611
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
5606
5612
|
readonly structured: {
|
|
5607
5613
|
readonly tree: any;
|
|
5608
5614
|
};
|
|
@@ -5634,7 +5640,7 @@ declare type Content_Article_Fragment = {
|
|
|
5634
5640
|
readonly relativeUrl: string;
|
|
5635
5641
|
} | null;
|
|
5636
5642
|
readonly intro?: {
|
|
5637
|
-
readonly source: 'standfirst' | 'summary';
|
|
5643
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
5638
5644
|
readonly structured: {
|
|
5639
5645
|
readonly tree: any;
|
|
5640
5646
|
};
|
|
@@ -5830,7 +5836,7 @@ declare type Content_Article_Fragment = {
|
|
|
5830
5836
|
}>;
|
|
5831
5837
|
}>;
|
|
5832
5838
|
readonly intro?: {
|
|
5833
|
-
readonly source: 'standfirst' | 'summary';
|
|
5839
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
5834
5840
|
readonly structured: {
|
|
5835
5841
|
readonly tree: any;
|
|
5836
5842
|
};
|
|
@@ -5863,7 +5869,7 @@ declare type Content_Article_Fragment = {
|
|
|
5863
5869
|
readonly relativeUrl: string;
|
|
5864
5870
|
} | null;
|
|
5865
5871
|
readonly intro?: {
|
|
5866
|
-
readonly source: 'standfirst' | 'summary';
|
|
5872
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
5867
5873
|
readonly structured: {
|
|
5868
5874
|
readonly tree: any;
|
|
5869
5875
|
};
|
|
@@ -6055,7 +6061,7 @@ declare type Content_Article_Fragment = {
|
|
|
6055
6061
|
readonly id: string;
|
|
6056
6062
|
}>;
|
|
6057
6063
|
readonly intro?: {
|
|
6058
|
-
readonly source: 'standfirst' | 'summary';
|
|
6064
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
6059
6065
|
readonly structured: {
|
|
6060
6066
|
readonly tree: any;
|
|
6061
6067
|
};
|
|
@@ -7428,7 +7434,7 @@ declare type Content_Article_Fragment = {
|
|
|
7428
7434
|
readonly layout?: string | null;
|
|
7429
7435
|
} | null;
|
|
7430
7436
|
};
|
|
7431
|
-
|
|
7437
|
+
type Content_Audio_Fragment = {
|
|
7432
7438
|
readonly __typename: 'Audio';
|
|
7433
7439
|
readonly id: string;
|
|
7434
7440
|
readonly title: string;
|
|
@@ -7440,7 +7446,7 @@ declare type Content_Audio_Fragment = {
|
|
|
7440
7446
|
readonly headline: string;
|
|
7441
7447
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
7442
7448
|
readonly intro?: {
|
|
7443
|
-
readonly source: 'standfirst' | 'summary';
|
|
7449
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
7444
7450
|
readonly structured: {
|
|
7445
7451
|
readonly tree: any;
|
|
7446
7452
|
};
|
|
@@ -7472,7 +7478,7 @@ declare type Content_Audio_Fragment = {
|
|
|
7472
7478
|
readonly relativeUrl: string;
|
|
7473
7479
|
} | null;
|
|
7474
7480
|
readonly intro?: {
|
|
7475
|
-
readonly source: 'standfirst' | 'summary';
|
|
7481
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
7476
7482
|
readonly structured: {
|
|
7477
7483
|
readonly tree: any;
|
|
7478
7484
|
};
|
|
@@ -7668,7 +7674,7 @@ declare type Content_Audio_Fragment = {
|
|
|
7668
7674
|
}>;
|
|
7669
7675
|
}>;
|
|
7670
7676
|
readonly intro?: {
|
|
7671
|
-
readonly source: 'standfirst' | 'summary';
|
|
7677
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
7672
7678
|
readonly structured: {
|
|
7673
7679
|
readonly tree: any;
|
|
7674
7680
|
};
|
|
@@ -7701,7 +7707,7 @@ declare type Content_Audio_Fragment = {
|
|
|
7701
7707
|
readonly relativeUrl: string;
|
|
7702
7708
|
} | null;
|
|
7703
7709
|
readonly intro?: {
|
|
7704
|
-
readonly source: 'standfirst' | 'summary';
|
|
7710
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
7705
7711
|
readonly structured: {
|
|
7706
7712
|
readonly tree: any;
|
|
7707
7713
|
};
|
|
@@ -7893,7 +7899,7 @@ declare type Content_Audio_Fragment = {
|
|
|
7893
7899
|
readonly id: string;
|
|
7894
7900
|
}>;
|
|
7895
7901
|
readonly intro?: {
|
|
7896
|
-
readonly source: 'standfirst' | 'summary';
|
|
7902
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
7897
7903
|
readonly structured: {
|
|
7898
7904
|
readonly tree: any;
|
|
7899
7905
|
};
|
|
@@ -9266,7 +9272,7 @@ declare type Content_Audio_Fragment = {
|
|
|
9266
9272
|
readonly layout?: string | null;
|
|
9267
9273
|
} | null;
|
|
9268
9274
|
};
|
|
9269
|
-
|
|
9275
|
+
type Content_ContentPackage_Fragment = {
|
|
9270
9276
|
readonly __typename: 'ContentPackage';
|
|
9271
9277
|
readonly id: string;
|
|
9272
9278
|
readonly title: string;
|
|
@@ -9278,7 +9284,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
9278
9284
|
readonly headline: string;
|
|
9279
9285
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
9280
9286
|
readonly intro?: {
|
|
9281
|
-
readonly source: 'standfirst' | 'summary';
|
|
9287
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
9282
9288
|
readonly structured: {
|
|
9283
9289
|
readonly tree: any;
|
|
9284
9290
|
};
|
|
@@ -9310,7 +9316,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
9310
9316
|
readonly relativeUrl: string;
|
|
9311
9317
|
} | null;
|
|
9312
9318
|
readonly intro?: {
|
|
9313
|
-
readonly source: 'standfirst' | 'summary';
|
|
9319
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
9314
9320
|
readonly structured: {
|
|
9315
9321
|
readonly tree: any;
|
|
9316
9322
|
};
|
|
@@ -9506,7 +9512,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
9506
9512
|
}>;
|
|
9507
9513
|
}>;
|
|
9508
9514
|
readonly intro?: {
|
|
9509
|
-
readonly source: 'standfirst' | 'summary';
|
|
9515
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
9510
9516
|
readonly structured: {
|
|
9511
9517
|
readonly tree: any;
|
|
9512
9518
|
};
|
|
@@ -9539,7 +9545,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
9539
9545
|
readonly relativeUrl: string;
|
|
9540
9546
|
} | null;
|
|
9541
9547
|
readonly intro?: {
|
|
9542
|
-
readonly source: 'standfirst' | 'summary';
|
|
9548
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
9543
9549
|
readonly structured: {
|
|
9544
9550
|
readonly tree: any;
|
|
9545
9551
|
};
|
|
@@ -9731,7 +9737,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
9731
9737
|
readonly id: string;
|
|
9732
9738
|
}>;
|
|
9733
9739
|
readonly intro?: {
|
|
9734
|
-
readonly source: 'standfirst' | 'summary';
|
|
9740
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
9735
9741
|
readonly structured: {
|
|
9736
9742
|
readonly tree: any;
|
|
9737
9743
|
};
|
|
@@ -11104,7 +11110,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
11104
11110
|
readonly layout?: string | null;
|
|
11105
11111
|
} | null;
|
|
11106
11112
|
};
|
|
11107
|
-
|
|
11113
|
+
type Content_LiveBlogPackage_Fragment = {
|
|
11108
11114
|
readonly __typename: 'LiveBlogPackage';
|
|
11109
11115
|
readonly id: string;
|
|
11110
11116
|
readonly title: string;
|
|
@@ -11116,7 +11122,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
11116
11122
|
readonly headline: string;
|
|
11117
11123
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
11118
11124
|
readonly intro?: {
|
|
11119
|
-
readonly source: 'standfirst' | 'summary';
|
|
11125
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
11120
11126
|
readonly structured: {
|
|
11121
11127
|
readonly tree: any;
|
|
11122
11128
|
};
|
|
@@ -11148,7 +11154,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
11148
11154
|
readonly relativeUrl: string;
|
|
11149
11155
|
} | null;
|
|
11150
11156
|
readonly intro?: {
|
|
11151
|
-
readonly source: 'standfirst' | 'summary';
|
|
11157
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
11152
11158
|
readonly structured: {
|
|
11153
11159
|
readonly tree: any;
|
|
11154
11160
|
};
|
|
@@ -11344,7 +11350,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
11344
11350
|
}>;
|
|
11345
11351
|
}>;
|
|
11346
11352
|
readonly intro?: {
|
|
11347
|
-
readonly source: 'standfirst' | 'summary';
|
|
11353
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
11348
11354
|
readonly structured: {
|
|
11349
11355
|
readonly tree: any;
|
|
11350
11356
|
};
|
|
@@ -11377,7 +11383,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
11377
11383
|
readonly relativeUrl: string;
|
|
11378
11384
|
} | null;
|
|
11379
11385
|
readonly intro?: {
|
|
11380
|
-
readonly source: 'standfirst' | 'summary';
|
|
11386
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
11381
11387
|
readonly structured: {
|
|
11382
11388
|
readonly tree: any;
|
|
11383
11389
|
};
|
|
@@ -11569,7 +11575,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
11569
11575
|
readonly id: string;
|
|
11570
11576
|
}>;
|
|
11571
11577
|
readonly intro?: {
|
|
11572
|
-
readonly source: 'standfirst' | 'summary';
|
|
11578
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
11573
11579
|
readonly structured: {
|
|
11574
11580
|
readonly tree: any;
|
|
11575
11581
|
};
|
|
@@ -12942,7 +12948,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
12942
12948
|
readonly layout?: string | null;
|
|
12943
12949
|
} | null;
|
|
12944
12950
|
};
|
|
12945
|
-
|
|
12951
|
+
type Content_LiveBlogPost_Fragment = {
|
|
12946
12952
|
readonly __typename: 'LiveBlogPost';
|
|
12947
12953
|
readonly id: string;
|
|
12948
12954
|
readonly title: string;
|
|
@@ -12954,7 +12960,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
12954
12960
|
readonly headline: string;
|
|
12955
12961
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
12956
12962
|
readonly intro?: {
|
|
12957
|
-
readonly source: 'standfirst' | 'summary';
|
|
12963
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
12958
12964
|
readonly structured: {
|
|
12959
12965
|
readonly tree: any;
|
|
12960
12966
|
};
|
|
@@ -12986,7 +12992,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
12986
12992
|
readonly relativeUrl: string;
|
|
12987
12993
|
} | null;
|
|
12988
12994
|
readonly intro?: {
|
|
12989
|
-
readonly source: 'standfirst' | 'summary';
|
|
12995
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
12990
12996
|
readonly structured: {
|
|
12991
12997
|
readonly tree: any;
|
|
12992
12998
|
};
|
|
@@ -13182,7 +13188,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
13182
13188
|
}>;
|
|
13183
13189
|
}>;
|
|
13184
13190
|
readonly intro?: {
|
|
13185
|
-
readonly source: 'standfirst' | 'summary';
|
|
13191
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
13186
13192
|
readonly structured: {
|
|
13187
13193
|
readonly tree: any;
|
|
13188
13194
|
};
|
|
@@ -13215,7 +13221,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
13215
13221
|
readonly relativeUrl: string;
|
|
13216
13222
|
} | null;
|
|
13217
13223
|
readonly intro?: {
|
|
13218
|
-
readonly source: 'standfirst' | 'summary';
|
|
13224
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
13219
13225
|
readonly structured: {
|
|
13220
13226
|
readonly tree: any;
|
|
13221
13227
|
};
|
|
@@ -13407,7 +13413,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
13407
13413
|
readonly id: string;
|
|
13408
13414
|
}>;
|
|
13409
13415
|
readonly intro?: {
|
|
13410
|
-
readonly source: 'standfirst' | 'summary';
|
|
13416
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
13411
13417
|
readonly structured: {
|
|
13412
13418
|
readonly tree: any;
|
|
13413
13419
|
};
|
|
@@ -14780,7 +14786,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
14780
14786
|
readonly layout?: string | null;
|
|
14781
14787
|
} | null;
|
|
14782
14788
|
};
|
|
14783
|
-
|
|
14789
|
+
type Content_Video_Fragment = {
|
|
14784
14790
|
readonly __typename: 'Video';
|
|
14785
14791
|
readonly id: string;
|
|
14786
14792
|
readonly title: string;
|
|
@@ -14792,7 +14798,7 @@ declare type Content_Video_Fragment = {
|
|
|
14792
14798
|
readonly headline: string;
|
|
14793
14799
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
14794
14800
|
readonly intro?: {
|
|
14795
|
-
readonly source: 'standfirst' | 'summary';
|
|
14801
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
14796
14802
|
readonly structured: {
|
|
14797
14803
|
readonly tree: any;
|
|
14798
14804
|
};
|
|
@@ -14824,7 +14830,7 @@ declare type Content_Video_Fragment = {
|
|
|
14824
14830
|
readonly relativeUrl: string;
|
|
14825
14831
|
} | null;
|
|
14826
14832
|
readonly intro?: {
|
|
14827
|
-
readonly source: 'standfirst' | 'summary';
|
|
14833
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
14828
14834
|
readonly structured: {
|
|
14829
14835
|
readonly tree: any;
|
|
14830
14836
|
};
|
|
@@ -15020,7 +15026,7 @@ declare type Content_Video_Fragment = {
|
|
|
15020
15026
|
}>;
|
|
15021
15027
|
}>;
|
|
15022
15028
|
readonly intro?: {
|
|
15023
|
-
readonly source: 'standfirst' | 'summary';
|
|
15029
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
15024
15030
|
readonly structured: {
|
|
15025
15031
|
readonly tree: any;
|
|
15026
15032
|
};
|
|
@@ -15053,7 +15059,7 @@ declare type Content_Video_Fragment = {
|
|
|
15053
15059
|
readonly relativeUrl: string;
|
|
15054
15060
|
} | null;
|
|
15055
15061
|
readonly intro?: {
|
|
15056
|
-
readonly source: 'standfirst' | 'summary';
|
|
15062
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
15057
15063
|
readonly structured: {
|
|
15058
15064
|
readonly tree: any;
|
|
15059
15065
|
};
|
|
@@ -15245,7 +15251,7 @@ declare type Content_Video_Fragment = {
|
|
|
15245
15251
|
readonly id: string;
|
|
15246
15252
|
}>;
|
|
15247
15253
|
readonly intro?: {
|
|
15248
|
-
readonly source: 'standfirst' | 'summary';
|
|
15254
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
15249
15255
|
readonly structured: {
|
|
15250
15256
|
readonly tree: any;
|
|
15251
15257
|
};
|
|
@@ -16618,12 +16624,12 @@ declare type Content_Video_Fragment = {
|
|
|
16618
16624
|
readonly layout?: string | null;
|
|
16619
16625
|
} | null;
|
|
16620
16626
|
};
|
|
16621
|
-
export
|
|
16622
|
-
export
|
|
16627
|
+
export type ContentFragment = Content_Article_Fragment | Content_Audio_Fragment | Content_ContentPackage_Fragment | Content_LiveBlogPackage_Fragment | Content_LiveBlogPost_Fragment | Content_Video_Fragment;
|
|
16628
|
+
export type ArticleQueryVariables = Exact<{
|
|
16623
16629
|
uuid: Scalars['String'];
|
|
16624
16630
|
useVanities: Scalars['Boolean'];
|
|
16625
16631
|
}>;
|
|
16626
|
-
export
|
|
16632
|
+
export type ArticleQuery = {
|
|
16627
16633
|
readonly content: {
|
|
16628
16634
|
readonly __typename: 'Article';
|
|
16629
16635
|
readonly id: string;
|
|
@@ -16636,7 +16642,7 @@ export declare type ArticleQuery = {
|
|
|
16636
16642
|
readonly headline: string;
|
|
16637
16643
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
16638
16644
|
readonly intro?: {
|
|
16639
|
-
readonly source: 'standfirst' | 'summary';
|
|
16645
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
16640
16646
|
readonly structured: {
|
|
16641
16647
|
readonly tree: any;
|
|
16642
16648
|
};
|
|
@@ -16668,7 +16674,7 @@ export declare type ArticleQuery = {
|
|
|
16668
16674
|
readonly relativeUrl: string;
|
|
16669
16675
|
} | null;
|
|
16670
16676
|
readonly intro?: {
|
|
16671
|
-
readonly source: 'standfirst' | 'summary';
|
|
16677
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
16672
16678
|
readonly structured: {
|
|
16673
16679
|
readonly tree: any;
|
|
16674
16680
|
};
|
|
@@ -16864,7 +16870,7 @@ export declare type ArticleQuery = {
|
|
|
16864
16870
|
}>;
|
|
16865
16871
|
}>;
|
|
16866
16872
|
readonly intro?: {
|
|
16867
|
-
readonly source: 'standfirst' | 'summary';
|
|
16873
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
16868
16874
|
readonly structured: {
|
|
16869
16875
|
readonly tree: any;
|
|
16870
16876
|
};
|
|
@@ -16897,7 +16903,7 @@ export declare type ArticleQuery = {
|
|
|
16897
16903
|
readonly relativeUrl: string;
|
|
16898
16904
|
} | null;
|
|
16899
16905
|
readonly intro?: {
|
|
16900
|
-
readonly source: 'standfirst' | 'summary';
|
|
16906
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
16901
16907
|
readonly structured: {
|
|
16902
16908
|
readonly tree: any;
|
|
16903
16909
|
};
|
|
@@ -17089,7 +17095,7 @@ export declare type ArticleQuery = {
|
|
|
17089
17095
|
readonly id: string;
|
|
17090
17096
|
}>;
|
|
17091
17097
|
readonly intro?: {
|
|
17092
|
-
readonly source: 'standfirst' | 'summary';
|
|
17098
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
17093
17099
|
readonly structured: {
|
|
17094
17100
|
readonly tree: any;
|
|
17095
17101
|
};
|
|
@@ -18473,7 +18479,7 @@ export declare type ArticleQuery = {
|
|
|
18473
18479
|
readonly headline: string;
|
|
18474
18480
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
18475
18481
|
readonly intro?: {
|
|
18476
|
-
readonly source: 'standfirst' | 'summary';
|
|
18482
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
18477
18483
|
readonly structured: {
|
|
18478
18484
|
readonly tree: any;
|
|
18479
18485
|
};
|
|
@@ -18505,7 +18511,7 @@ export declare type ArticleQuery = {
|
|
|
18505
18511
|
readonly relativeUrl: string;
|
|
18506
18512
|
} | null;
|
|
18507
18513
|
readonly intro?: {
|
|
18508
|
-
readonly source: 'standfirst' | 'summary';
|
|
18514
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
18509
18515
|
readonly structured: {
|
|
18510
18516
|
readonly tree: any;
|
|
18511
18517
|
};
|
|
@@ -18701,7 +18707,7 @@ export declare type ArticleQuery = {
|
|
|
18701
18707
|
}>;
|
|
18702
18708
|
}>;
|
|
18703
18709
|
readonly intro?: {
|
|
18704
|
-
readonly source: 'standfirst' | 'summary';
|
|
18710
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
18705
18711
|
readonly structured: {
|
|
18706
18712
|
readonly tree: any;
|
|
18707
18713
|
};
|
|
@@ -18734,7 +18740,7 @@ export declare type ArticleQuery = {
|
|
|
18734
18740
|
readonly relativeUrl: string;
|
|
18735
18741
|
} | null;
|
|
18736
18742
|
readonly intro?: {
|
|
18737
|
-
readonly source: 'standfirst' | 'summary';
|
|
18743
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
18738
18744
|
readonly structured: {
|
|
18739
18745
|
readonly tree: any;
|
|
18740
18746
|
};
|
|
@@ -18926,7 +18932,7 @@ export declare type ArticleQuery = {
|
|
|
18926
18932
|
readonly id: string;
|
|
18927
18933
|
}>;
|
|
18928
18934
|
readonly intro?: {
|
|
18929
|
-
readonly source: 'standfirst' | 'summary';
|
|
18935
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
18930
18936
|
readonly structured: {
|
|
18931
18937
|
readonly tree: any;
|
|
18932
18938
|
};
|
|
@@ -20381,7 +20387,7 @@ export declare type ArticleQuery = {
|
|
|
20381
20387
|
readonly headline: string;
|
|
20382
20388
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
20383
20389
|
readonly intro?: {
|
|
20384
|
-
readonly source: 'standfirst' | 'summary';
|
|
20390
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
20385
20391
|
readonly structured: {
|
|
20386
20392
|
readonly tree: any;
|
|
20387
20393
|
};
|
|
@@ -20413,7 +20419,7 @@ export declare type ArticleQuery = {
|
|
|
20413
20419
|
readonly relativeUrl: string;
|
|
20414
20420
|
} | null;
|
|
20415
20421
|
readonly intro?: {
|
|
20416
|
-
readonly source: 'standfirst' | 'summary';
|
|
20422
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
20417
20423
|
readonly structured: {
|
|
20418
20424
|
readonly tree: any;
|
|
20419
20425
|
};
|
|
@@ -20609,7 +20615,7 @@ export declare type ArticleQuery = {
|
|
|
20609
20615
|
}>;
|
|
20610
20616
|
}>;
|
|
20611
20617
|
readonly intro?: {
|
|
20612
|
-
readonly source: 'standfirst' | 'summary';
|
|
20618
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
20613
20619
|
readonly structured: {
|
|
20614
20620
|
readonly tree: any;
|
|
20615
20621
|
};
|
|
@@ -20642,7 +20648,7 @@ export declare type ArticleQuery = {
|
|
|
20642
20648
|
readonly relativeUrl: string;
|
|
20643
20649
|
} | null;
|
|
20644
20650
|
readonly intro?: {
|
|
20645
|
-
readonly source: 'standfirst' | 'summary';
|
|
20651
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
20646
20652
|
readonly structured: {
|
|
20647
20653
|
readonly tree: any;
|
|
20648
20654
|
};
|
|
@@ -20834,7 +20840,7 @@ export declare type ArticleQuery = {
|
|
|
20834
20840
|
readonly id: string;
|
|
20835
20841
|
}>;
|
|
20836
20842
|
readonly intro?: {
|
|
20837
|
-
readonly source: 'standfirst' | 'summary';
|
|
20843
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
20838
20844
|
readonly structured: {
|
|
20839
20845
|
readonly tree: any;
|
|
20840
20846
|
};
|
|
@@ -22226,7 +22232,7 @@ export declare type ArticleQuery = {
|
|
|
22226
22232
|
readonly headline: string;
|
|
22227
22233
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
22228
22234
|
readonly intro?: {
|
|
22229
|
-
readonly source: 'standfirst' | 'summary';
|
|
22235
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
22230
22236
|
readonly structured: {
|
|
22231
22237
|
readonly tree: any;
|
|
22232
22238
|
};
|
|
@@ -22258,7 +22264,7 @@ export declare type ArticleQuery = {
|
|
|
22258
22264
|
readonly relativeUrl: string;
|
|
22259
22265
|
} | null;
|
|
22260
22266
|
readonly intro?: {
|
|
22261
|
-
readonly source: 'standfirst' | 'summary';
|
|
22267
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
22262
22268
|
readonly structured: {
|
|
22263
22269
|
readonly tree: any;
|
|
22264
22270
|
};
|
|
@@ -22454,7 +22460,7 @@ export declare type ArticleQuery = {
|
|
|
22454
22460
|
}>;
|
|
22455
22461
|
}>;
|
|
22456
22462
|
readonly intro?: {
|
|
22457
|
-
readonly source: 'standfirst' | 'summary';
|
|
22463
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
22458
22464
|
readonly structured: {
|
|
22459
22465
|
readonly tree: any;
|
|
22460
22466
|
};
|
|
@@ -22487,7 +22493,7 @@ export declare type ArticleQuery = {
|
|
|
22487
22493
|
readonly relativeUrl: string;
|
|
22488
22494
|
} | null;
|
|
22489
22495
|
readonly intro?: {
|
|
22490
|
-
readonly source: 'standfirst' | 'summary';
|
|
22496
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
22491
22497
|
readonly structured: {
|
|
22492
22498
|
readonly tree: any;
|
|
22493
22499
|
};
|
|
@@ -22679,7 +22685,7 @@ export declare type ArticleQuery = {
|
|
|
22679
22685
|
readonly id: string;
|
|
22680
22686
|
}>;
|
|
22681
22687
|
readonly intro?: {
|
|
22682
|
-
readonly source: 'standfirst' | 'summary';
|
|
22688
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
22683
22689
|
readonly structured: {
|
|
22684
22690
|
readonly tree: any;
|
|
22685
22691
|
};
|
|
@@ -24063,7 +24069,7 @@ export declare type ArticleQuery = {
|
|
|
24063
24069
|
readonly headline: string;
|
|
24064
24070
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
24065
24071
|
readonly intro?: {
|
|
24066
|
-
readonly source: 'standfirst' | 'summary';
|
|
24072
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
24067
24073
|
readonly structured: {
|
|
24068
24074
|
readonly tree: any;
|
|
24069
24075
|
};
|
|
@@ -24095,7 +24101,7 @@ export declare type ArticleQuery = {
|
|
|
24095
24101
|
readonly relativeUrl: string;
|
|
24096
24102
|
} | null;
|
|
24097
24103
|
readonly intro?: {
|
|
24098
|
-
readonly source: 'standfirst' | 'summary';
|
|
24104
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
24099
24105
|
readonly structured: {
|
|
24100
24106
|
readonly tree: any;
|
|
24101
24107
|
};
|
|
@@ -24291,7 +24297,7 @@ export declare type ArticleQuery = {
|
|
|
24291
24297
|
}>;
|
|
24292
24298
|
}>;
|
|
24293
24299
|
readonly intro?: {
|
|
24294
|
-
readonly source: 'standfirst' | 'summary';
|
|
24300
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
24295
24301
|
readonly structured: {
|
|
24296
24302
|
readonly tree: any;
|
|
24297
24303
|
};
|
|
@@ -24324,7 +24330,7 @@ export declare type ArticleQuery = {
|
|
|
24324
24330
|
readonly relativeUrl: string;
|
|
24325
24331
|
} | null;
|
|
24326
24332
|
readonly intro?: {
|
|
24327
|
-
readonly source: 'standfirst' | 'summary';
|
|
24333
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
24328
24334
|
readonly structured: {
|
|
24329
24335
|
readonly tree: any;
|
|
24330
24336
|
};
|
|
@@ -24516,7 +24522,7 @@ export declare type ArticleQuery = {
|
|
|
24516
24522
|
readonly id: string;
|
|
24517
24523
|
}>;
|
|
24518
24524
|
readonly intro?: {
|
|
24519
|
-
readonly source: 'standfirst' | 'summary';
|
|
24525
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
24520
24526
|
readonly structured: {
|
|
24521
24527
|
readonly tree: any;
|
|
24522
24528
|
};
|
|
@@ -25900,7 +25906,7 @@ export declare type ArticleQuery = {
|
|
|
25900
25906
|
readonly headline: string;
|
|
25901
25907
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
25902
25908
|
readonly intro?: {
|
|
25903
|
-
readonly source: 'standfirst' | 'summary';
|
|
25909
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
25904
25910
|
readonly structured: {
|
|
25905
25911
|
readonly tree: any;
|
|
25906
25912
|
};
|
|
@@ -25932,7 +25938,7 @@ export declare type ArticleQuery = {
|
|
|
25932
25938
|
readonly relativeUrl: string;
|
|
25933
25939
|
} | null;
|
|
25934
25940
|
readonly intro?: {
|
|
25935
|
-
readonly source: 'standfirst' | 'summary';
|
|
25941
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
25936
25942
|
readonly structured: {
|
|
25937
25943
|
readonly tree: any;
|
|
25938
25944
|
};
|
|
@@ -26128,7 +26134,7 @@ export declare type ArticleQuery = {
|
|
|
26128
26134
|
}>;
|
|
26129
26135
|
}>;
|
|
26130
26136
|
readonly intro?: {
|
|
26131
|
-
readonly source: 'standfirst' | 'summary';
|
|
26137
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
26132
26138
|
readonly structured: {
|
|
26133
26139
|
readonly tree: any;
|
|
26134
26140
|
};
|
|
@@ -26161,7 +26167,7 @@ export declare type ArticleQuery = {
|
|
|
26161
26167
|
readonly relativeUrl: string;
|
|
26162
26168
|
} | null;
|
|
26163
26169
|
readonly intro?: {
|
|
26164
|
-
readonly source: 'standfirst' | 'summary';
|
|
26170
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
26165
26171
|
readonly structured: {
|
|
26166
26172
|
readonly tree: any;
|
|
26167
26173
|
};
|
|
@@ -26353,7 +26359,7 @@ export declare type ArticleQuery = {
|
|
|
26353
26359
|
readonly id: string;
|
|
26354
26360
|
}>;
|
|
26355
26361
|
readonly intro?: {
|
|
26356
|
-
readonly source: 'standfirst' | 'summary';
|
|
26362
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
26357
26363
|
readonly structured: {
|
|
26358
26364
|
readonly tree: any;
|
|
26359
26365
|
};
|
|
@@ -27737,7 +27743,7 @@ export declare type ArticleQuery = {
|
|
|
27737
27743
|
readonly headline: string;
|
|
27738
27744
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
27739
27745
|
readonly intro?: {
|
|
27740
|
-
readonly source: 'standfirst' | 'summary';
|
|
27746
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
27741
27747
|
readonly structured: {
|
|
27742
27748
|
readonly tree: any;
|
|
27743
27749
|
};
|
|
@@ -27769,7 +27775,7 @@ export declare type ArticleQuery = {
|
|
|
27769
27775
|
readonly relativeUrl: string;
|
|
27770
27776
|
} | null;
|
|
27771
27777
|
readonly intro?: {
|
|
27772
|
-
readonly source: 'standfirst' | 'summary';
|
|
27778
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
27773
27779
|
readonly structured: {
|
|
27774
27780
|
readonly tree: any;
|
|
27775
27781
|
};
|
|
@@ -27965,7 +27971,7 @@ export declare type ArticleQuery = {
|
|
|
27965
27971
|
}>;
|
|
27966
27972
|
}>;
|
|
27967
27973
|
readonly intro?: {
|
|
27968
|
-
readonly source: 'standfirst' | 'summary';
|
|
27974
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
27969
27975
|
readonly structured: {
|
|
27970
27976
|
readonly tree: any;
|
|
27971
27977
|
};
|
|
@@ -27998,7 +28004,7 @@ export declare type ArticleQuery = {
|
|
|
27998
28004
|
readonly relativeUrl: string;
|
|
27999
28005
|
} | null;
|
|
28000
28006
|
readonly intro?: {
|
|
28001
|
-
readonly source: 'standfirst' | 'summary';
|
|
28007
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
28002
28008
|
readonly structured: {
|
|
28003
28009
|
readonly tree: any;
|
|
28004
28010
|
};
|
|
@@ -28190,7 +28196,7 @@ export declare type ArticleQuery = {
|
|
|
28190
28196
|
readonly id: string;
|
|
28191
28197
|
}>;
|
|
28192
28198
|
readonly intro?: {
|
|
28193
|
-
readonly source: 'standfirst' | 'summary';
|
|
28199
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
28194
28200
|
readonly structured: {
|
|
28195
28201
|
readonly tree: any;
|
|
28196
28202
|
};
|
|
@@ -29574,7 +29580,7 @@ export declare type ArticleQuery = {
|
|
|
29574
29580
|
readonly headline: string;
|
|
29575
29581
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
29576
29582
|
readonly intro?: {
|
|
29577
|
-
readonly source: 'standfirst' | 'summary';
|
|
29583
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
29578
29584
|
readonly structured: {
|
|
29579
29585
|
readonly tree: any;
|
|
29580
29586
|
};
|
|
@@ -29606,7 +29612,7 @@ export declare type ArticleQuery = {
|
|
|
29606
29612
|
readonly relativeUrl: string;
|
|
29607
29613
|
} | null;
|
|
29608
29614
|
readonly intro?: {
|
|
29609
|
-
readonly source: 'standfirst' | 'summary';
|
|
29615
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
29610
29616
|
readonly structured: {
|
|
29611
29617
|
readonly tree: any;
|
|
29612
29618
|
};
|
|
@@ -29802,7 +29808,7 @@ export declare type ArticleQuery = {
|
|
|
29802
29808
|
}>;
|
|
29803
29809
|
}>;
|
|
29804
29810
|
readonly intro?: {
|
|
29805
|
-
readonly source: 'standfirst' | 'summary';
|
|
29811
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
29806
29812
|
readonly structured: {
|
|
29807
29813
|
readonly tree: any;
|
|
29808
29814
|
};
|
|
@@ -29835,7 +29841,7 @@ export declare type ArticleQuery = {
|
|
|
29835
29841
|
readonly relativeUrl: string;
|
|
29836
29842
|
} | null;
|
|
29837
29843
|
readonly intro?: {
|
|
29838
|
-
readonly source: 'standfirst' | 'summary';
|
|
29844
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
29839
29845
|
readonly structured: {
|
|
29840
29846
|
readonly tree: any;
|
|
29841
29847
|
};
|
|
@@ -30027,7 +30033,7 @@ export declare type ArticleQuery = {
|
|
|
30027
30033
|
readonly id: string;
|
|
30028
30034
|
}>;
|
|
30029
30035
|
readonly intro?: {
|
|
30030
|
-
readonly source: 'standfirst' | 'summary';
|
|
30036
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
30031
30037
|
readonly structured: {
|
|
30032
30038
|
readonly tree: any;
|
|
30033
30039
|
};
|
|
@@ -31411,7 +31417,7 @@ export declare type ArticleQuery = {
|
|
|
31411
31417
|
readonly headline: string;
|
|
31412
31418
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
31413
31419
|
readonly intro?: {
|
|
31414
|
-
readonly source: 'standfirst' | 'summary';
|
|
31420
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
31415
31421
|
readonly structured: {
|
|
31416
31422
|
readonly tree: any;
|
|
31417
31423
|
};
|
|
@@ -31443,7 +31449,7 @@ export declare type ArticleQuery = {
|
|
|
31443
31449
|
readonly relativeUrl: string;
|
|
31444
31450
|
} | null;
|
|
31445
31451
|
readonly intro?: {
|
|
31446
|
-
readonly source: 'standfirst' | 'summary';
|
|
31452
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
31447
31453
|
readonly structured: {
|
|
31448
31454
|
readonly tree: any;
|
|
31449
31455
|
};
|
|
@@ -31639,7 +31645,7 @@ export declare type ArticleQuery = {
|
|
|
31639
31645
|
}>;
|
|
31640
31646
|
}>;
|
|
31641
31647
|
readonly intro?: {
|
|
31642
|
-
readonly source: 'standfirst' | 'summary';
|
|
31648
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
31643
31649
|
readonly structured: {
|
|
31644
31650
|
readonly tree: any;
|
|
31645
31651
|
};
|
|
@@ -31672,7 +31678,7 @@ export declare type ArticleQuery = {
|
|
|
31672
31678
|
readonly relativeUrl: string;
|
|
31673
31679
|
} | null;
|
|
31674
31680
|
readonly intro?: {
|
|
31675
|
-
readonly source: 'standfirst' | 'summary';
|
|
31681
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
31676
31682
|
readonly structured: {
|
|
31677
31683
|
readonly tree: any;
|
|
31678
31684
|
};
|
|
@@ -31864,7 +31870,7 @@ export declare type ArticleQuery = {
|
|
|
31864
31870
|
readonly id: string;
|
|
31865
31871
|
}>;
|
|
31866
31872
|
readonly intro?: {
|
|
31867
|
-
readonly source: 'standfirst' | 'summary';
|
|
31873
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
31868
31874
|
readonly structured: {
|
|
31869
31875
|
readonly tree: any;
|
|
31870
31876
|
};
|
|
@@ -33242,7 +33248,7 @@ export declare type ArticleQuery = {
|
|
|
33242
33248
|
readonly headline: string;
|
|
33243
33249
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
33244
33250
|
readonly intro?: {
|
|
33245
|
-
readonly source: 'standfirst' | 'summary';
|
|
33251
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
33246
33252
|
readonly structured: {
|
|
33247
33253
|
readonly tree: any;
|
|
33248
33254
|
};
|
|
@@ -33274,7 +33280,7 @@ export declare type ArticleQuery = {
|
|
|
33274
33280
|
readonly relativeUrl: string;
|
|
33275
33281
|
} | null;
|
|
33276
33282
|
readonly intro?: {
|
|
33277
|
-
readonly source: 'standfirst' | 'summary';
|
|
33283
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
33278
33284
|
readonly structured: {
|
|
33279
33285
|
readonly tree: any;
|
|
33280
33286
|
};
|
|
@@ -33470,7 +33476,7 @@ export declare type ArticleQuery = {
|
|
|
33470
33476
|
}>;
|
|
33471
33477
|
}>;
|
|
33472
33478
|
readonly intro?: {
|
|
33473
|
-
readonly source: 'standfirst' | 'summary';
|
|
33479
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
33474
33480
|
readonly structured: {
|
|
33475
33481
|
readonly tree: any;
|
|
33476
33482
|
};
|
|
@@ -33503,7 +33509,7 @@ export declare type ArticleQuery = {
|
|
|
33503
33509
|
readonly relativeUrl: string;
|
|
33504
33510
|
} | null;
|
|
33505
33511
|
readonly intro?: {
|
|
33506
|
-
readonly source: 'standfirst' | 'summary';
|
|
33512
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
33507
33513
|
readonly structured: {
|
|
33508
33514
|
readonly tree: any;
|
|
33509
33515
|
};
|
|
@@ -33695,7 +33701,7 @@ export declare type ArticleQuery = {
|
|
|
33695
33701
|
readonly id: string;
|
|
33696
33702
|
}>;
|
|
33697
33703
|
readonly intro?: {
|
|
33698
|
-
readonly source: 'standfirst' | 'summary';
|
|
33704
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
33699
33705
|
readonly structured: {
|
|
33700
33706
|
readonly tree: any;
|
|
33701
33707
|
};
|
|
@@ -35079,7 +35085,7 @@ export declare type ArticleQuery = {
|
|
|
35079
35085
|
readonly headline: string;
|
|
35080
35086
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
35081
35087
|
readonly intro?: {
|
|
35082
|
-
readonly source: 'standfirst' | 'summary';
|
|
35088
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
35083
35089
|
readonly structured: {
|
|
35084
35090
|
readonly tree: any;
|
|
35085
35091
|
};
|
|
@@ -35111,7 +35117,7 @@ export declare type ArticleQuery = {
|
|
|
35111
35117
|
readonly relativeUrl: string;
|
|
35112
35118
|
} | null;
|
|
35113
35119
|
readonly intro?: {
|
|
35114
|
-
readonly source: 'standfirst' | 'summary';
|
|
35120
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
35115
35121
|
readonly structured: {
|
|
35116
35122
|
readonly tree: any;
|
|
35117
35123
|
};
|
|
@@ -35307,7 +35313,7 @@ export declare type ArticleQuery = {
|
|
|
35307
35313
|
}>;
|
|
35308
35314
|
}>;
|
|
35309
35315
|
readonly intro?: {
|
|
35310
|
-
readonly source: 'standfirst' | 'summary';
|
|
35316
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
35311
35317
|
readonly structured: {
|
|
35312
35318
|
readonly tree: any;
|
|
35313
35319
|
};
|
|
@@ -35340,7 +35346,7 @@ export declare type ArticleQuery = {
|
|
|
35340
35346
|
readonly relativeUrl: string;
|
|
35341
35347
|
} | null;
|
|
35342
35348
|
readonly intro?: {
|
|
35343
|
-
readonly source: 'standfirst' | 'summary';
|
|
35349
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
35344
35350
|
readonly structured: {
|
|
35345
35351
|
readonly tree: any;
|
|
35346
35352
|
};
|
|
@@ -35532,7 +35538,7 @@ export declare type ArticleQuery = {
|
|
|
35532
35538
|
readonly id: string;
|
|
35533
35539
|
}>;
|
|
35534
35540
|
readonly intro?: {
|
|
35535
|
-
readonly source: 'standfirst' | 'summary';
|
|
35541
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
35536
35542
|
readonly structured: {
|
|
35537
35543
|
readonly tree: any;
|
|
35538
35544
|
};
|
|
@@ -36916,7 +36922,7 @@ export declare type ArticleQuery = {
|
|
|
36916
36922
|
readonly headline: string;
|
|
36917
36923
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
36918
36924
|
readonly intro?: {
|
|
36919
|
-
readonly source: 'standfirst' | 'summary';
|
|
36925
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
36920
36926
|
readonly structured: {
|
|
36921
36927
|
readonly tree: any;
|
|
36922
36928
|
};
|
|
@@ -36948,7 +36954,7 @@ export declare type ArticleQuery = {
|
|
|
36948
36954
|
readonly relativeUrl: string;
|
|
36949
36955
|
} | null;
|
|
36950
36956
|
readonly intro?: {
|
|
36951
|
-
readonly source: 'standfirst' | 'summary';
|
|
36957
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
36952
36958
|
readonly structured: {
|
|
36953
36959
|
readonly tree: any;
|
|
36954
36960
|
};
|
|
@@ -37144,7 +37150,7 @@ export declare type ArticleQuery = {
|
|
|
37144
37150
|
}>;
|
|
37145
37151
|
}>;
|
|
37146
37152
|
readonly intro?: {
|
|
37147
|
-
readonly source: 'standfirst' | 'summary';
|
|
37153
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
37148
37154
|
readonly structured: {
|
|
37149
37155
|
readonly tree: any;
|
|
37150
37156
|
};
|
|
@@ -37177,7 +37183,7 @@ export declare type ArticleQuery = {
|
|
|
37177
37183
|
readonly relativeUrl: string;
|
|
37178
37184
|
} | null;
|
|
37179
37185
|
readonly intro?: {
|
|
37180
|
-
readonly source: 'standfirst' | 'summary';
|
|
37186
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
37181
37187
|
readonly structured: {
|
|
37182
37188
|
readonly tree: any;
|
|
37183
37189
|
};
|
|
@@ -37369,7 +37375,7 @@ export declare type ArticleQuery = {
|
|
|
37369
37375
|
readonly id: string;
|
|
37370
37376
|
}>;
|
|
37371
37377
|
readonly intro?: {
|
|
37372
|
-
readonly source: 'standfirst' | 'summary';
|
|
37378
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
37373
37379
|
readonly structured: {
|
|
37374
37380
|
readonly tree: any;
|
|
37375
37381
|
};
|
|
@@ -38764,9 +38770,9 @@ export declare const StructuredContentFragmentDoc: import("graphql/language/ast"
|
|
|
38764
38770
|
export declare const DesignFragmentDoc: import("graphql/language/ast").DocumentNode;
|
|
38765
38771
|
export declare const ContentFragmentDoc: import("graphql/language/ast").DocumentNode;
|
|
38766
38772
|
export declare const ArticleDocument: import("graphql/language/ast").DocumentNode;
|
|
38767
|
-
export
|
|
38773
|
+
export type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string) => Promise<T>;
|
|
38768
38774
|
export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
38769
38775
|
Article(variables: ArticleQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<ArticleQuery>;
|
|
38770
38776
|
};
|
|
38771
|
-
export
|
|
38777
|
+
export type Sdk = ReturnType<typeof getSdk>;
|
|
38772
38778
|
export {};
|