@financial-times/cp-content-pipeline-client 0.6.10 → 0.6.12
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 +20 -0
- package/lib/generated/index.d.ts +226 -226
- package/lib/index.d.ts +1 -1
- package/lib/schema-version.d.ts +1 -1
- package/lib/schema-version.js +1 -1
- package/lib/schema-version.js.map +1 -1
- package/package.json +3 -3
- package/src/generated/index.ts +14 -14
- package/src/schema-version.ts +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/lib/generated/index.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
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;
|
|
@@ -25,16 +25,16 @@ export declare type Scalars = {
|
|
|
25
25
|
ImageType: 'image' | 'graphic';
|
|
26
26
|
JSON: any;
|
|
27
27
|
PackageDesign: 'special-report' | 'extra' | 'basic';
|
|
28
|
-
RichTextSource: 'standfirst' | 'summary';
|
|
28
|
+
RichTextSource: 'standfirst' | 'summary' | 'bodyXML';
|
|
29
29
|
TopperBackgroundColour: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky';
|
|
30
30
|
};
|
|
31
|
-
export
|
|
31
|
+
export type AltStandfirst = {
|
|
32
32
|
readonly promotionalStandfirst?: Maybe<Scalars['String']>;
|
|
33
33
|
};
|
|
34
|
-
export
|
|
34
|
+
export type AltTitle = {
|
|
35
35
|
readonly promotionalTitle?: Maybe<Scalars['String']>;
|
|
36
36
|
};
|
|
37
|
-
export
|
|
37
|
+
export type Article = Content & {
|
|
38
38
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
39
39
|
readonly altTitle?: Maybe<AltTitle>;
|
|
40
40
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -54,10 +54,10 @@ export declare type Article = Content & {
|
|
|
54
54
|
readonly type: Scalars['String'];
|
|
55
55
|
readonly url: Scalars['String'];
|
|
56
56
|
};
|
|
57
|
-
export
|
|
57
|
+
export type ArticleUrlArgs = {
|
|
58
58
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
59
59
|
};
|
|
60
|
-
export
|
|
60
|
+
export type Audio = Content & {
|
|
61
61
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
62
62
|
readonly altTitle?: Maybe<AltTitle>;
|
|
63
63
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -77,16 +77,16 @@ export declare type Audio = Content & {
|
|
|
77
77
|
readonly type: Scalars['String'];
|
|
78
78
|
readonly url: Scalars['String'];
|
|
79
79
|
};
|
|
80
|
-
export
|
|
80
|
+
export type AudioUrlArgs = {
|
|
81
81
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
82
82
|
};
|
|
83
|
-
export
|
|
83
|
+
export type BasicTopper = Topper & {
|
|
84
84
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
85
85
|
readonly displayConcept?: Maybe<Concept>;
|
|
86
86
|
readonly headline: Scalars['String'];
|
|
87
87
|
readonly intro?: Maybe<RichText>;
|
|
88
88
|
};
|
|
89
|
-
export
|
|
89
|
+
export type BrandedTopper = Topper & TopperWithBrand & TopperWithTheme & {
|
|
90
90
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
91
91
|
readonly brandConcept?: Maybe<Concept>;
|
|
92
92
|
readonly displayConcept?: Maybe<Concept>;
|
|
@@ -95,7 +95,7 @@ export declare type BrandedTopper = Topper & TopperWithBrand & TopperWithTheme &
|
|
|
95
95
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']>;
|
|
96
96
|
readonly layout?: Maybe<Scalars['String']>;
|
|
97
97
|
};
|
|
98
|
-
export
|
|
98
|
+
export type Concept = {
|
|
99
99
|
readonly apiUrl: Scalars['String'];
|
|
100
100
|
readonly directType?: Maybe<Scalars['String']>;
|
|
101
101
|
readonly id: Scalars['ID'];
|
|
@@ -105,11 +105,11 @@ export declare type Concept = {
|
|
|
105
105
|
readonly types: ReadonlyArray<Scalars['String']>;
|
|
106
106
|
readonly url: Scalars['String'];
|
|
107
107
|
};
|
|
108
|
-
export
|
|
108
|
+
export type ConceptUrlArgs = {
|
|
109
109
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
110
110
|
vanity?: InputMaybe<Scalars['Boolean']>;
|
|
111
111
|
};
|
|
112
|
-
export
|
|
112
|
+
export type Content = {
|
|
113
113
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
114
114
|
readonly altTitle?: Maybe<AltTitle>;
|
|
115
115
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -129,10 +129,10 @@ export declare type Content = {
|
|
|
129
129
|
readonly type: Scalars['String'];
|
|
130
130
|
readonly url: Scalars['String'];
|
|
131
131
|
};
|
|
132
|
-
export
|
|
132
|
+
export type ContentUrlArgs = {
|
|
133
133
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
134
134
|
};
|
|
135
|
-
export
|
|
135
|
+
export type ContentPackage = Content & {
|
|
136
136
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
137
137
|
readonly altTitle?: Maybe<AltTitle>;
|
|
138
138
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -153,23 +153,23 @@ export declare type ContentPackage = Content & {
|
|
|
153
153
|
readonly type: Scalars['String'];
|
|
154
154
|
readonly url: Scalars['String'];
|
|
155
155
|
};
|
|
156
|
-
export
|
|
156
|
+
export type ContentPackageUrlArgs = {
|
|
157
157
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
158
158
|
};
|
|
159
|
-
export
|
|
159
|
+
export type Design = {
|
|
160
160
|
readonly layout?: Maybe<Scalars['String']>;
|
|
161
161
|
readonly theme?: Maybe<Scalars['PackageDesign']>;
|
|
162
162
|
};
|
|
163
|
-
export
|
|
163
|
+
export type Flourish = Reference & {
|
|
164
164
|
readonly fallbackImage?: Maybe<FlourishFallback>;
|
|
165
165
|
readonly type: Scalars['String'];
|
|
166
166
|
};
|
|
167
|
-
export
|
|
167
|
+
export type FlourishFallback = {
|
|
168
168
|
readonly height?: Maybe<Scalars['Int']>;
|
|
169
169
|
readonly url?: Maybe<Scalars['String']>;
|
|
170
170
|
readonly width?: Maybe<Scalars['Int']>;
|
|
171
171
|
};
|
|
172
|
-
export
|
|
172
|
+
export type FullBleedTopper = Topper & TopperWithBrand & TopperWithImages & TopperWithTheme & {
|
|
173
173
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
174
174
|
readonly brandConcept?: Maybe<Concept>;
|
|
175
175
|
readonly displayConcept?: Maybe<Concept>;
|
|
@@ -180,7 +180,7 @@ export declare type FullBleedTopper = Topper & TopperWithBrand & TopperWithImage
|
|
|
180
180
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']>;
|
|
181
181
|
readonly layout?: Maybe<Scalars['String']>;
|
|
182
182
|
};
|
|
183
|
-
export
|
|
183
|
+
export type Image = {
|
|
184
184
|
readonly caption?: Maybe<Scalars['String']>;
|
|
185
185
|
readonly credit?: Maybe<Scalars['String']>;
|
|
186
186
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -191,11 +191,11 @@ export declare type Image = {
|
|
|
191
191
|
readonly url?: Maybe<Scalars['String']>;
|
|
192
192
|
readonly width?: Maybe<Scalars['Int']>;
|
|
193
193
|
};
|
|
194
|
-
export
|
|
194
|
+
export type ImageSourceSetArgs = {
|
|
195
195
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
196
196
|
width?: InputMaybe<Scalars['Int']>;
|
|
197
197
|
};
|
|
198
|
-
export
|
|
198
|
+
export type ImageDesktop = Image & {
|
|
199
199
|
readonly caption?: Maybe<Scalars['String']>;
|
|
200
200
|
readonly credit?: Maybe<Scalars['String']>;
|
|
201
201
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -206,11 +206,11 @@ export declare type ImageDesktop = Image & {
|
|
|
206
206
|
readonly url?: Maybe<Scalars['String']>;
|
|
207
207
|
readonly width?: Maybe<Scalars['Int']>;
|
|
208
208
|
};
|
|
209
|
-
export
|
|
209
|
+
export type ImageDesktopSourceSetArgs = {
|
|
210
210
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
211
211
|
width?: InputMaybe<Scalars['Int']>;
|
|
212
212
|
};
|
|
213
|
-
export
|
|
213
|
+
export type ImageMobile = Image & {
|
|
214
214
|
readonly caption?: Maybe<Scalars['String']>;
|
|
215
215
|
readonly credit?: Maybe<Scalars['String']>;
|
|
216
216
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -221,20 +221,20 @@ export declare type ImageMobile = Image & {
|
|
|
221
221
|
readonly url?: Maybe<Scalars['String']>;
|
|
222
222
|
readonly width?: Maybe<Scalars['Int']>;
|
|
223
223
|
};
|
|
224
|
-
export
|
|
224
|
+
export type ImageMobileSourceSetArgs = {
|
|
225
225
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
226
226
|
width?: InputMaybe<Scalars['Int']>;
|
|
227
227
|
};
|
|
228
|
-
export
|
|
228
|
+
export type ImageSet = Reference & {
|
|
229
229
|
readonly picture: Picture;
|
|
230
230
|
readonly type: Scalars['String'];
|
|
231
231
|
};
|
|
232
|
-
export
|
|
232
|
+
export type ImageSource = {
|
|
233
233
|
readonly dpr?: Maybe<Scalars['Int']>;
|
|
234
234
|
readonly url: Scalars['String'];
|
|
235
235
|
readonly width?: Maybe<Scalars['Int']>;
|
|
236
236
|
};
|
|
237
|
-
export
|
|
237
|
+
export type ImageSquare = Image & {
|
|
238
238
|
readonly caption?: Maybe<Scalars['String']>;
|
|
239
239
|
readonly credit?: Maybe<Scalars['String']>;
|
|
240
240
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -245,11 +245,11 @@ export declare type ImageSquare = Image & {
|
|
|
245
245
|
readonly url?: Maybe<Scalars['String']>;
|
|
246
246
|
readonly width?: Maybe<Scalars['Int']>;
|
|
247
247
|
};
|
|
248
|
-
export
|
|
248
|
+
export type ImageSquareSourceSetArgs = {
|
|
249
249
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
250
250
|
width?: InputMaybe<Scalars['Int']>;
|
|
251
251
|
};
|
|
252
|
-
export
|
|
252
|
+
export type ImageSquareFtEdit = Image & {
|
|
253
253
|
readonly caption?: Maybe<Scalars['String']>;
|
|
254
254
|
readonly credit?: Maybe<Scalars['String']>;
|
|
255
255
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -260,11 +260,11 @@ export declare type ImageSquareFtEdit = Image & {
|
|
|
260
260
|
readonly url?: Maybe<Scalars['String']>;
|
|
261
261
|
readonly width?: Maybe<Scalars['Int']>;
|
|
262
262
|
};
|
|
263
|
-
export
|
|
263
|
+
export type ImageSquareFtEditSourceSetArgs = {
|
|
264
264
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
265
265
|
width?: InputMaybe<Scalars['Int']>;
|
|
266
266
|
};
|
|
267
|
-
export
|
|
267
|
+
export type ImageStandard = Image & {
|
|
268
268
|
readonly caption?: Maybe<Scalars['String']>;
|
|
269
269
|
readonly credit?: Maybe<Scalars['String']>;
|
|
270
270
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -275,11 +275,11 @@ export declare type ImageStandard = Image & {
|
|
|
275
275
|
readonly url?: Maybe<Scalars['String']>;
|
|
276
276
|
readonly width?: Maybe<Scalars['Int']>;
|
|
277
277
|
};
|
|
278
|
-
export
|
|
278
|
+
export type ImageStandardSourceSetArgs = {
|
|
279
279
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
280
280
|
width?: InputMaybe<Scalars['Int']>;
|
|
281
281
|
};
|
|
282
|
-
export
|
|
282
|
+
export type ImageStandardInline = Image & {
|
|
283
283
|
readonly caption?: Maybe<Scalars['String']>;
|
|
284
284
|
readonly credit?: Maybe<Scalars['String']>;
|
|
285
285
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -290,11 +290,11 @@ export declare type ImageStandardInline = Image & {
|
|
|
290
290
|
readonly url?: Maybe<Scalars['String']>;
|
|
291
291
|
readonly width?: Maybe<Scalars['Int']>;
|
|
292
292
|
};
|
|
293
|
-
export
|
|
293
|
+
export type ImageStandardInlineSourceSetArgs = {
|
|
294
294
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
295
295
|
width?: InputMaybe<Scalars['Int']>;
|
|
296
296
|
};
|
|
297
|
-
export
|
|
297
|
+
export type ImageWide = Image & {
|
|
298
298
|
readonly caption?: Maybe<Scalars['String']>;
|
|
299
299
|
readonly credit?: Maybe<Scalars['String']>;
|
|
300
300
|
readonly format: Scalars['ImageFormat'];
|
|
@@ -305,11 +305,11 @@ export declare type ImageWide = Image & {
|
|
|
305
305
|
readonly url?: Maybe<Scalars['String']>;
|
|
306
306
|
readonly width?: Maybe<Scalars['Int']>;
|
|
307
307
|
};
|
|
308
|
-
export
|
|
308
|
+
export type ImageWideSourceSetArgs = {
|
|
309
309
|
maxDpr?: InputMaybe<Scalars['Int']>;
|
|
310
310
|
width?: InputMaybe<Scalars['Int']>;
|
|
311
311
|
};
|
|
312
|
-
export
|
|
312
|
+
export type Indicators = {
|
|
313
313
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']>;
|
|
314
314
|
readonly isColumn?: Maybe<Scalars['Boolean']>;
|
|
315
315
|
readonly isEditorsChoice?: Maybe<Scalars['Boolean']>;
|
|
@@ -318,11 +318,11 @@ export declare type Indicators = {
|
|
|
318
318
|
readonly isPodcast?: Maybe<Scalars['Boolean']>;
|
|
319
319
|
readonly isScoop?: Maybe<Scalars['Boolean']>;
|
|
320
320
|
};
|
|
321
|
-
export
|
|
321
|
+
export type LayoutImage = Reference & {
|
|
322
322
|
readonly picture: Picture;
|
|
323
323
|
readonly type: Scalars['String'];
|
|
324
324
|
};
|
|
325
|
-
export
|
|
325
|
+
export type LiveBlogPackage = Content & {
|
|
326
326
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
327
327
|
readonly altTitle?: Maybe<AltTitle>;
|
|
328
328
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -344,10 +344,10 @@ export declare type LiveBlogPackage = Content & {
|
|
|
344
344
|
readonly type: Scalars['String'];
|
|
345
345
|
readonly url: Scalars['String'];
|
|
346
346
|
};
|
|
347
|
-
export
|
|
347
|
+
export type LiveBlogPackageUrlArgs = {
|
|
348
348
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
349
349
|
};
|
|
350
|
-
export
|
|
350
|
+
export type LiveBlogPost = Content & {
|
|
351
351
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
352
352
|
readonly altTitle?: Maybe<AltTitle>;
|
|
353
353
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -367,14 +367,14 @@ export declare type LiveBlogPost = Content & {
|
|
|
367
367
|
readonly type: Scalars['String'];
|
|
368
368
|
readonly url: Scalars['String'];
|
|
369
369
|
};
|
|
370
|
-
export
|
|
370
|
+
export type LiveBlogPostUrlArgs = {
|
|
371
371
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
372
372
|
};
|
|
373
|
-
export
|
|
373
|
+
export type MainImage = Reference & {
|
|
374
374
|
readonly picture: Picture;
|
|
375
375
|
readonly type: Scalars['String'];
|
|
376
376
|
};
|
|
377
|
-
export
|
|
377
|
+
export type OpinionTopper = Topper & TopperWithHeadshot & TopperWithTheme & {
|
|
378
378
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
379
379
|
readonly columnist?: Maybe<Concept>;
|
|
380
380
|
readonly displayConcept?: Maybe<Concept>;
|
|
@@ -384,11 +384,11 @@ export declare type OpinionTopper = Topper & TopperWithHeadshot & TopperWithThem
|
|
|
384
384
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']>;
|
|
385
385
|
readonly layout?: Maybe<Scalars['String']>;
|
|
386
386
|
};
|
|
387
|
-
export
|
|
387
|
+
export type OpinionTopperHeadshotArgs = {
|
|
388
388
|
dpr?: InputMaybe<Scalars['Int']>;
|
|
389
389
|
width?: InputMaybe<Scalars['Int']>;
|
|
390
390
|
};
|
|
391
|
-
export
|
|
391
|
+
export type Picture = {
|
|
392
392
|
readonly alt: Scalars['String'];
|
|
393
393
|
readonly caption?: Maybe<Scalars['String']>;
|
|
394
394
|
readonly credit?: Maybe<Scalars['String']>;
|
|
@@ -397,7 +397,7 @@ export declare type Picture = {
|
|
|
397
397
|
readonly images: ReadonlyArray<Image>;
|
|
398
398
|
readonly layoutWidth?: Maybe<Scalars['String']>;
|
|
399
399
|
};
|
|
400
|
-
export
|
|
400
|
+
export type PictureFullBleed = Picture & {
|
|
401
401
|
readonly alt: Scalars['String'];
|
|
402
402
|
readonly caption?: Maybe<Scalars['String']>;
|
|
403
403
|
readonly credit?: Maybe<Scalars['String']>;
|
|
@@ -406,7 +406,7 @@ export declare type PictureFullBleed = Picture & {
|
|
|
406
406
|
readonly images: ReadonlyArray<Image>;
|
|
407
407
|
readonly layoutWidth?: Maybe<Scalars['String']>;
|
|
408
408
|
};
|
|
409
|
-
export
|
|
409
|
+
export type PictureInline = Picture & {
|
|
410
410
|
readonly alt: Scalars['String'];
|
|
411
411
|
readonly caption?: Maybe<Scalars['String']>;
|
|
412
412
|
readonly credit?: Maybe<Scalars['String']>;
|
|
@@ -415,7 +415,7 @@ export declare type PictureInline = Picture & {
|
|
|
415
415
|
readonly images: ReadonlyArray<Image>;
|
|
416
416
|
readonly layoutWidth?: Maybe<Scalars['String']>;
|
|
417
417
|
};
|
|
418
|
-
export
|
|
418
|
+
export type PictureStandard = Picture & {
|
|
419
419
|
readonly alt: Scalars['String'];
|
|
420
420
|
readonly caption?: Maybe<Scalars['String']>;
|
|
421
421
|
readonly credit?: Maybe<Scalars['String']>;
|
|
@@ -424,34 +424,34 @@ export declare type PictureStandard = Picture & {
|
|
|
424
424
|
readonly images: ReadonlyArray<Image>;
|
|
425
425
|
readonly layoutWidth?: Maybe<Scalars['String']>;
|
|
426
426
|
};
|
|
427
|
-
export
|
|
427
|
+
export type Query = {
|
|
428
428
|
readonly content: Content;
|
|
429
429
|
readonly contentFromJSON: Content;
|
|
430
430
|
readonly version: Scalars['String'];
|
|
431
431
|
};
|
|
432
|
-
export
|
|
432
|
+
export type QueryContentArgs = {
|
|
433
433
|
uuid: Scalars['String'];
|
|
434
434
|
};
|
|
435
|
-
export
|
|
435
|
+
export type QueryContentFromJsonArgs = {
|
|
436
436
|
content: Scalars['JSON'];
|
|
437
437
|
};
|
|
438
|
-
export
|
|
438
|
+
export type RawImage = Reference & {
|
|
439
439
|
readonly image: Image;
|
|
440
440
|
readonly type: Scalars['String'];
|
|
441
441
|
};
|
|
442
|
-
export
|
|
442
|
+
export type Recommended = Reference & {
|
|
443
443
|
readonly teaser: Teaser;
|
|
444
444
|
readonly type: Scalars['String'];
|
|
445
445
|
};
|
|
446
|
-
export
|
|
446
|
+
export type Reference = {
|
|
447
447
|
readonly type: Scalars['String'];
|
|
448
448
|
};
|
|
449
|
-
export
|
|
449
|
+
export type RichText = {
|
|
450
450
|
readonly raw: Scalars['String'];
|
|
451
451
|
readonly source: Scalars['RichTextSource'];
|
|
452
452
|
readonly structured: StructuredContent;
|
|
453
453
|
};
|
|
454
|
-
export
|
|
454
|
+
export type SplitTextTopper = Topper & TopperWithBrand & TopperWithImages & TopperWithPackage & TopperWithTheme & {
|
|
455
455
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
456
456
|
readonly brandConcept?: Maybe<Concept>;
|
|
457
457
|
readonly design?: Maybe<Scalars['String']>;
|
|
@@ -463,11 +463,11 @@ export declare type SplitTextTopper = Topper & TopperWithBrand & TopperWithImage
|
|
|
463
463
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']>;
|
|
464
464
|
readonly layout?: Maybe<Scalars['String']>;
|
|
465
465
|
};
|
|
466
|
-
export
|
|
466
|
+
export type StructuredContent = {
|
|
467
467
|
readonly references: ReadonlyArray<Reference>;
|
|
468
468
|
readonly tree: Scalars['JSON'];
|
|
469
469
|
};
|
|
470
|
-
export
|
|
470
|
+
export type Teaser = {
|
|
471
471
|
readonly firstPublishedDate?: Maybe<Scalars['String']>;
|
|
472
472
|
readonly id?: Maybe<Scalars['String']>;
|
|
473
473
|
readonly image?: Maybe<Image>;
|
|
@@ -483,41 +483,41 @@ export declare type Teaser = {
|
|
|
483
483
|
readonly type?: Maybe<Scalars['String']>;
|
|
484
484
|
readonly url: Scalars['String'];
|
|
485
485
|
};
|
|
486
|
-
export
|
|
486
|
+
export type TeaserUrlArgs = {
|
|
487
487
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
488
488
|
};
|
|
489
|
-
export
|
|
489
|
+
export type Topper = {
|
|
490
490
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']>;
|
|
491
491
|
readonly displayConcept?: Maybe<Concept>;
|
|
492
492
|
readonly headline: Scalars['String'];
|
|
493
493
|
readonly intro?: Maybe<RichText>;
|
|
494
494
|
};
|
|
495
|
-
export
|
|
495
|
+
export type TopperWithBrand = {
|
|
496
496
|
readonly brandConcept?: Maybe<Concept>;
|
|
497
497
|
};
|
|
498
|
-
export
|
|
498
|
+
export type TopperWithHeadshot = {
|
|
499
499
|
readonly headshot?: Maybe<Scalars['String']>;
|
|
500
500
|
};
|
|
501
|
-
export
|
|
501
|
+
export type TopperWithHeadshotHeadshotArgs = {
|
|
502
502
|
dpr?: InputMaybe<Scalars['Int']>;
|
|
503
503
|
width?: InputMaybe<Scalars['Int']>;
|
|
504
504
|
};
|
|
505
|
-
export
|
|
505
|
+
export type TopperWithImages = {
|
|
506
506
|
readonly fallbackImage?: Maybe<Image>;
|
|
507
507
|
readonly images: ReadonlyArray<Image>;
|
|
508
508
|
};
|
|
509
|
-
export
|
|
509
|
+
export type TopperWithPackage = {
|
|
510
510
|
readonly design?: Maybe<Scalars['String']>;
|
|
511
511
|
};
|
|
512
|
-
export
|
|
512
|
+
export type TopperWithTheme = {
|
|
513
513
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']>;
|
|
514
514
|
readonly layout?: Maybe<Scalars['String']>;
|
|
515
515
|
};
|
|
516
|
-
export
|
|
516
|
+
export type Tweet = Reference & {
|
|
517
517
|
readonly html?: Maybe<Scalars['String']>;
|
|
518
518
|
readonly type: Scalars['String'];
|
|
519
519
|
};
|
|
520
|
-
export
|
|
520
|
+
export type Video = Content & Reference & {
|
|
521
521
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
522
522
|
readonly altTitle?: Maybe<AltTitle>;
|
|
523
523
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -537,10 +537,10 @@ export declare type Video = Content & Reference & {
|
|
|
537
537
|
readonly type: Scalars['String'];
|
|
538
538
|
readonly url: Scalars['String'];
|
|
539
539
|
};
|
|
540
|
-
export
|
|
540
|
+
export type VideoUrlArgs = {
|
|
541
541
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
542
542
|
};
|
|
543
|
-
export
|
|
543
|
+
export type ConceptFragment = {
|
|
544
544
|
readonly id: string;
|
|
545
545
|
readonly prefLabel: string;
|
|
546
546
|
readonly types: ReadonlyArray<string>;
|
|
@@ -550,10 +550,10 @@ export declare type ConceptFragment = {
|
|
|
550
550
|
readonly url: string;
|
|
551
551
|
readonly relativeUrl: string;
|
|
552
552
|
};
|
|
553
|
-
export
|
|
553
|
+
export type StructuredTreeFragment = {
|
|
554
554
|
readonly tree: any;
|
|
555
555
|
};
|
|
556
|
-
export
|
|
556
|
+
export type TeaserFragment = {
|
|
557
557
|
readonly title?: string | null;
|
|
558
558
|
readonly id?: string | null;
|
|
559
559
|
readonly url: string;
|
|
@@ -623,23 +623,23 @@ export declare type TeaserFragment = {
|
|
|
623
623
|
readonly isScoop?: boolean | null;
|
|
624
624
|
} | null;
|
|
625
625
|
};
|
|
626
|
-
export
|
|
626
|
+
export type ImageSourceFragment = {
|
|
627
627
|
readonly dpr?: number | null;
|
|
628
628
|
readonly width?: number | null;
|
|
629
629
|
readonly url: string;
|
|
630
630
|
};
|
|
631
|
-
export
|
|
632
|
-
readonly source: 'standfirst' | 'summary';
|
|
631
|
+
export type IntroFragment = {
|
|
632
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
633
633
|
readonly structured: {
|
|
634
634
|
readonly tree: any;
|
|
635
635
|
};
|
|
636
636
|
};
|
|
637
|
-
|
|
637
|
+
type Topper_BasicTopper_Fragment = {
|
|
638
638
|
readonly __typename: 'BasicTopper';
|
|
639
639
|
readonly headline: string;
|
|
640
640
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
641
641
|
readonly intro?: {
|
|
642
|
-
readonly source: 'standfirst' | 'summary';
|
|
642
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
643
643
|
readonly structured: {
|
|
644
644
|
readonly tree: any;
|
|
645
645
|
};
|
|
@@ -655,7 +655,7 @@ declare type Topper_BasicTopper_Fragment = {
|
|
|
655
655
|
readonly relativeUrl: string;
|
|
656
656
|
} | null;
|
|
657
657
|
};
|
|
658
|
-
|
|
658
|
+
type Topper_BrandedTopper_Fragment = {
|
|
659
659
|
readonly __typename: 'BrandedTopper';
|
|
660
660
|
readonly isLargeHeadline?: boolean | null;
|
|
661
661
|
readonly layout?: string | null;
|
|
@@ -672,7 +672,7 @@ declare type Topper_BrandedTopper_Fragment = {
|
|
|
672
672
|
readonly relativeUrl: string;
|
|
673
673
|
} | null;
|
|
674
674
|
readonly intro?: {
|
|
675
|
-
readonly source: 'standfirst' | 'summary';
|
|
675
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
676
676
|
readonly structured: {
|
|
677
677
|
readonly tree: any;
|
|
678
678
|
};
|
|
@@ -688,7 +688,7 @@ declare type Topper_BrandedTopper_Fragment = {
|
|
|
688
688
|
readonly relativeUrl: string;
|
|
689
689
|
} | null;
|
|
690
690
|
};
|
|
691
|
-
|
|
691
|
+
type Topper_FullBleedTopper_Fragment = {
|
|
692
692
|
readonly __typename: 'FullBleedTopper';
|
|
693
693
|
readonly isLargeHeadline?: boolean | null;
|
|
694
694
|
readonly layout?: string | null;
|
|
@@ -869,7 +869,7 @@ declare type Topper_FullBleedTopper_Fragment = {
|
|
|
869
869
|
}>;
|
|
870
870
|
}>;
|
|
871
871
|
readonly intro?: {
|
|
872
|
-
readonly source: 'standfirst' | 'summary';
|
|
872
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
873
873
|
readonly structured: {
|
|
874
874
|
readonly tree: any;
|
|
875
875
|
};
|
|
@@ -885,7 +885,7 @@ declare type Topper_FullBleedTopper_Fragment = {
|
|
|
885
885
|
readonly relativeUrl: string;
|
|
886
886
|
} | null;
|
|
887
887
|
};
|
|
888
|
-
|
|
888
|
+
type Topper_OpinionTopper_Fragment = {
|
|
889
889
|
readonly __typename: 'OpinionTopper';
|
|
890
890
|
readonly headshot?: string | null;
|
|
891
891
|
readonly isLargeHeadline?: boolean | null;
|
|
@@ -903,7 +903,7 @@ declare type Topper_OpinionTopper_Fragment = {
|
|
|
903
903
|
readonly relativeUrl: string;
|
|
904
904
|
} | null;
|
|
905
905
|
readonly intro?: {
|
|
906
|
-
readonly source: 'standfirst' | 'summary';
|
|
906
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
907
907
|
readonly structured: {
|
|
908
908
|
readonly tree: any;
|
|
909
909
|
};
|
|
@@ -919,7 +919,7 @@ declare type Topper_OpinionTopper_Fragment = {
|
|
|
919
919
|
readonly relativeUrl: string;
|
|
920
920
|
} | null;
|
|
921
921
|
};
|
|
922
|
-
|
|
922
|
+
type Topper_SplitTextTopper_Fragment = {
|
|
923
923
|
readonly __typename: 'SplitTextTopper';
|
|
924
924
|
readonly isLargeHeadline?: boolean | null;
|
|
925
925
|
readonly layout?: string | null;
|
|
@@ -1096,7 +1096,7 @@ declare type Topper_SplitTextTopper_Fragment = {
|
|
|
1096
1096
|
readonly id: string;
|
|
1097
1097
|
}>;
|
|
1098
1098
|
readonly intro?: {
|
|
1099
|
-
readonly source: 'standfirst' | 'summary';
|
|
1099
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
1100
1100
|
readonly structured: {
|
|
1101
1101
|
readonly tree: any;
|
|
1102
1102
|
};
|
|
@@ -1112,8 +1112,8 @@ declare type Topper_SplitTextTopper_Fragment = {
|
|
|
1112
1112
|
readonly relativeUrl: string;
|
|
1113
1113
|
} | null;
|
|
1114
1114
|
};
|
|
1115
|
-
export
|
|
1116
|
-
|
|
1115
|
+
export type TopperFragment = Topper_BasicTopper_Fragment | Topper_BrandedTopper_Fragment | Topper_FullBleedTopper_Fragment | Topper_OpinionTopper_Fragment | Topper_SplitTextTopper_Fragment;
|
|
1116
|
+
type Image_ImageDesktop_Fragment = {
|
|
1117
1117
|
readonly __typename: 'ImageDesktop';
|
|
1118
1118
|
readonly height?: number | null;
|
|
1119
1119
|
readonly width?: number | null;
|
|
@@ -1122,7 +1122,7 @@ declare type Image_ImageDesktop_Fragment = {
|
|
|
1122
1122
|
readonly url?: string | null;
|
|
1123
1123
|
readonly id: string;
|
|
1124
1124
|
};
|
|
1125
|
-
|
|
1125
|
+
type Image_ImageMobile_Fragment = {
|
|
1126
1126
|
readonly __typename: 'ImageMobile';
|
|
1127
1127
|
readonly height?: number | null;
|
|
1128
1128
|
readonly width?: number | null;
|
|
@@ -1131,7 +1131,7 @@ declare type Image_ImageMobile_Fragment = {
|
|
|
1131
1131
|
readonly url?: string | null;
|
|
1132
1132
|
readonly id: string;
|
|
1133
1133
|
};
|
|
1134
|
-
|
|
1134
|
+
type Image_ImageSquare_Fragment = {
|
|
1135
1135
|
readonly __typename: 'ImageSquare';
|
|
1136
1136
|
readonly height?: number | null;
|
|
1137
1137
|
readonly width?: number | null;
|
|
@@ -1140,7 +1140,7 @@ declare type Image_ImageSquare_Fragment = {
|
|
|
1140
1140
|
readonly url?: string | null;
|
|
1141
1141
|
readonly id: string;
|
|
1142
1142
|
};
|
|
1143
|
-
|
|
1143
|
+
type Image_ImageSquareFtEdit_Fragment = {
|
|
1144
1144
|
readonly __typename: 'ImageSquareFTEdit';
|
|
1145
1145
|
readonly height?: number | null;
|
|
1146
1146
|
readonly width?: number | null;
|
|
@@ -1149,7 +1149,7 @@ declare type Image_ImageSquareFtEdit_Fragment = {
|
|
|
1149
1149
|
readonly url?: string | null;
|
|
1150
1150
|
readonly id: string;
|
|
1151
1151
|
};
|
|
1152
|
-
|
|
1152
|
+
type Image_ImageStandard_Fragment = {
|
|
1153
1153
|
readonly __typename: 'ImageStandard';
|
|
1154
1154
|
readonly height?: number | null;
|
|
1155
1155
|
readonly width?: number | null;
|
|
@@ -1158,7 +1158,7 @@ declare type Image_ImageStandard_Fragment = {
|
|
|
1158
1158
|
readonly url?: string | null;
|
|
1159
1159
|
readonly id: string;
|
|
1160
1160
|
};
|
|
1161
|
-
|
|
1161
|
+
type Image_ImageStandardInline_Fragment = {
|
|
1162
1162
|
readonly __typename: 'ImageStandardInline';
|
|
1163
1163
|
readonly height?: number | null;
|
|
1164
1164
|
readonly width?: number | null;
|
|
@@ -1167,7 +1167,7 @@ declare type Image_ImageStandardInline_Fragment = {
|
|
|
1167
1167
|
readonly url?: string | null;
|
|
1168
1168
|
readonly id: string;
|
|
1169
1169
|
};
|
|
1170
|
-
|
|
1170
|
+
type Image_ImageWide_Fragment = {
|
|
1171
1171
|
readonly __typename: 'ImageWide';
|
|
1172
1172
|
readonly height?: number | null;
|
|
1173
1173
|
readonly width?: number | null;
|
|
@@ -1176,8 +1176,8 @@ declare type Image_ImageWide_Fragment = {
|
|
|
1176
1176
|
readonly url?: string | null;
|
|
1177
1177
|
readonly id: string;
|
|
1178
1178
|
};
|
|
1179
|
-
export
|
|
1180
|
-
|
|
1179
|
+
export type ImageFragment = Image_ImageDesktop_Fragment | Image_ImageMobile_Fragment | Image_ImageSquare_Fragment | Image_ImageSquareFtEdit_Fragment | Image_ImageStandard_Fragment | Image_ImageStandardInline_Fragment | Image_ImageWide_Fragment;
|
|
1180
|
+
type Picture_PictureFullBleed_Fragment = {
|
|
1181
1181
|
readonly __typename: 'PictureFullBleed';
|
|
1182
1182
|
readonly alt: string;
|
|
1183
1183
|
readonly caption?: string | null;
|
|
@@ -1314,7 +1314,7 @@ declare type Picture_PictureFullBleed_Fragment = {
|
|
|
1314
1314
|
readonly id: string;
|
|
1315
1315
|
};
|
|
1316
1316
|
};
|
|
1317
|
-
|
|
1317
|
+
type Picture_PictureInline_Fragment = {
|
|
1318
1318
|
readonly __typename: 'PictureInline';
|
|
1319
1319
|
readonly alt: string;
|
|
1320
1320
|
readonly caption?: string | null;
|
|
@@ -1441,7 +1441,7 @@ declare type Picture_PictureInline_Fragment = {
|
|
|
1441
1441
|
readonly id: string;
|
|
1442
1442
|
};
|
|
1443
1443
|
};
|
|
1444
|
-
|
|
1444
|
+
type Picture_PictureStandard_Fragment = {
|
|
1445
1445
|
readonly __typename: 'PictureStandard';
|
|
1446
1446
|
readonly alt: string;
|
|
1447
1447
|
readonly caption?: string | null;
|
|
@@ -1573,8 +1573,8 @@ declare type Picture_PictureStandard_Fragment = {
|
|
|
1573
1573
|
readonly id: string;
|
|
1574
1574
|
};
|
|
1575
1575
|
};
|
|
1576
|
-
export
|
|
1577
|
-
export
|
|
1576
|
+
export type PictureFragment = Picture_PictureFullBleed_Fragment | Picture_PictureInline_Fragment | Picture_PictureStandard_Fragment;
|
|
1577
|
+
export type MainImageFragment = {
|
|
1578
1578
|
readonly picture: {
|
|
1579
1579
|
readonly __typename: 'PictureFullBleed';
|
|
1580
1580
|
readonly alt: string;
|
|
@@ -1970,7 +1970,7 @@ export declare type MainImageFragment = {
|
|
|
1970
1970
|
};
|
|
1971
1971
|
};
|
|
1972
1972
|
};
|
|
1973
|
-
export
|
|
1973
|
+
export type ImageSetFragment = {
|
|
1974
1974
|
readonly picture: {
|
|
1975
1975
|
readonly __typename: 'PictureFullBleed';
|
|
1976
1976
|
readonly alt: string;
|
|
@@ -2366,7 +2366,7 @@ export declare type ImageSetFragment = {
|
|
|
2366
2366
|
};
|
|
2367
2367
|
};
|
|
2368
2368
|
};
|
|
2369
|
-
export
|
|
2369
|
+
export type LayoutImageFragment = {
|
|
2370
2370
|
readonly picture: {
|
|
2371
2371
|
readonly __typename: 'PictureFullBleed';
|
|
2372
2372
|
readonly alt: string;
|
|
@@ -2762,7 +2762,7 @@ export declare type LayoutImageFragment = {
|
|
|
2762
2762
|
};
|
|
2763
2763
|
};
|
|
2764
2764
|
};
|
|
2765
|
-
export
|
|
2765
|
+
export type RecommendedFragment = {
|
|
2766
2766
|
readonly teaser: {
|
|
2767
2767
|
readonly title?: string | null;
|
|
2768
2768
|
readonly id?: string | null;
|
|
@@ -2834,21 +2834,21 @@ export declare type RecommendedFragment = {
|
|
|
2834
2834
|
} | null;
|
|
2835
2835
|
};
|
|
2836
2836
|
};
|
|
2837
|
-
export
|
|
2837
|
+
export type TweetFragment = {
|
|
2838
2838
|
readonly html?: string | null;
|
|
2839
2839
|
};
|
|
2840
|
-
export
|
|
2840
|
+
export type VideoFragment = {
|
|
2841
2841
|
readonly title: string;
|
|
2842
2842
|
readonly id: string;
|
|
2843
2843
|
};
|
|
2844
|
-
export
|
|
2844
|
+
export type FlourishFragment = {
|
|
2845
2845
|
readonly fallbackImage?: {
|
|
2846
2846
|
readonly url?: string | null;
|
|
2847
2847
|
readonly height?: number | null;
|
|
2848
2848
|
readonly width?: number | null;
|
|
2849
2849
|
} | null;
|
|
2850
2850
|
};
|
|
2851
|
-
export
|
|
2851
|
+
export type RawImageFragment = {
|
|
2852
2852
|
readonly image: {
|
|
2853
2853
|
readonly __typename: 'ImageDesktop';
|
|
2854
2854
|
readonly height?: number | null;
|
|
@@ -2907,11 +2907,11 @@ export declare type RawImageFragment = {
|
|
|
2907
2907
|
readonly id: string;
|
|
2908
2908
|
};
|
|
2909
2909
|
};
|
|
2910
|
-
export
|
|
2910
|
+
export type DesignFragment = {
|
|
2911
2911
|
readonly theme?: 'special-report' | 'extra' | 'basic' | null;
|
|
2912
2912
|
readonly layout?: string | null;
|
|
2913
2913
|
};
|
|
2914
|
-
|
|
2914
|
+
type ArticleReferences_Flourish_Fragment = {
|
|
2915
2915
|
readonly type: string;
|
|
2916
2916
|
readonly fallbackImage?: {
|
|
2917
2917
|
readonly url?: string | null;
|
|
@@ -2919,7 +2919,7 @@ declare type ArticleReferences_Flourish_Fragment = {
|
|
|
2919
2919
|
readonly width?: number | null;
|
|
2920
2920
|
} | null;
|
|
2921
2921
|
};
|
|
2922
|
-
|
|
2922
|
+
type ArticleReferences_ImageSet_Fragment = {
|
|
2923
2923
|
readonly type: string;
|
|
2924
2924
|
readonly picture: {
|
|
2925
2925
|
readonly __typename: 'PictureFullBleed';
|
|
@@ -3316,7 +3316,7 @@ declare type ArticleReferences_ImageSet_Fragment = {
|
|
|
3316
3316
|
};
|
|
3317
3317
|
};
|
|
3318
3318
|
};
|
|
3319
|
-
|
|
3319
|
+
type ArticleReferences_LayoutImage_Fragment = {
|
|
3320
3320
|
readonly type: string;
|
|
3321
3321
|
readonly picture: {
|
|
3322
3322
|
readonly __typename: 'PictureFullBleed';
|
|
@@ -3713,7 +3713,7 @@ declare type ArticleReferences_LayoutImage_Fragment = {
|
|
|
3713
3713
|
};
|
|
3714
3714
|
};
|
|
3715
3715
|
};
|
|
3716
|
-
|
|
3716
|
+
type ArticleReferences_MainImage_Fragment = {
|
|
3717
3717
|
readonly type: string;
|
|
3718
3718
|
readonly picture: {
|
|
3719
3719
|
readonly __typename: 'PictureFullBleed';
|
|
@@ -4110,7 +4110,7 @@ declare type ArticleReferences_MainImage_Fragment = {
|
|
|
4110
4110
|
};
|
|
4111
4111
|
};
|
|
4112
4112
|
};
|
|
4113
|
-
|
|
4113
|
+
type ArticleReferences_RawImage_Fragment = {
|
|
4114
4114
|
readonly type: string;
|
|
4115
4115
|
readonly image: {
|
|
4116
4116
|
readonly __typename: 'ImageDesktop';
|
|
@@ -4170,7 +4170,7 @@ declare type ArticleReferences_RawImage_Fragment = {
|
|
|
4170
4170
|
readonly id: string;
|
|
4171
4171
|
};
|
|
4172
4172
|
};
|
|
4173
|
-
|
|
4173
|
+
type ArticleReferences_Recommended_Fragment = {
|
|
4174
4174
|
readonly type: string;
|
|
4175
4175
|
readonly teaser: {
|
|
4176
4176
|
readonly title?: string | null;
|
|
@@ -4243,17 +4243,17 @@ declare type ArticleReferences_Recommended_Fragment = {
|
|
|
4243
4243
|
} | null;
|
|
4244
4244
|
};
|
|
4245
4245
|
};
|
|
4246
|
-
|
|
4246
|
+
type ArticleReferences_Tweet_Fragment = {
|
|
4247
4247
|
readonly type: string;
|
|
4248
4248
|
readonly html?: string | null;
|
|
4249
4249
|
};
|
|
4250
|
-
|
|
4250
|
+
type ArticleReferences_Video_Fragment = {
|
|
4251
4251
|
readonly type: string;
|
|
4252
4252
|
readonly title: string;
|
|
4253
4253
|
readonly id: string;
|
|
4254
4254
|
};
|
|
4255
|
-
export
|
|
4256
|
-
export
|
|
4255
|
+
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_Video_Fragment;
|
|
4256
|
+
export type StructuredContentFragment = {
|
|
4257
4257
|
readonly tree: any;
|
|
4258
4258
|
readonly references: ReadonlyArray<{
|
|
4259
4259
|
readonly type: string;
|
|
@@ -5590,7 +5590,7 @@ export declare type StructuredContentFragment = {
|
|
|
5590
5590
|
readonly id: string;
|
|
5591
5591
|
}>;
|
|
5592
5592
|
};
|
|
5593
|
-
|
|
5593
|
+
type Content_Article_Fragment = {
|
|
5594
5594
|
readonly __typename: 'Article';
|
|
5595
5595
|
readonly id: string;
|
|
5596
5596
|
readonly title: string;
|
|
@@ -5602,7 +5602,7 @@ declare type Content_Article_Fragment = {
|
|
|
5602
5602
|
readonly headline: string;
|
|
5603
5603
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
5604
5604
|
readonly intro?: {
|
|
5605
|
-
readonly source: 'standfirst' | 'summary';
|
|
5605
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
5606
5606
|
readonly structured: {
|
|
5607
5607
|
readonly tree: any;
|
|
5608
5608
|
};
|
|
@@ -5634,7 +5634,7 @@ declare type Content_Article_Fragment = {
|
|
|
5634
5634
|
readonly relativeUrl: string;
|
|
5635
5635
|
} | null;
|
|
5636
5636
|
readonly intro?: {
|
|
5637
|
-
readonly source: 'standfirst' | 'summary';
|
|
5637
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
5638
5638
|
readonly structured: {
|
|
5639
5639
|
readonly tree: any;
|
|
5640
5640
|
};
|
|
@@ -5830,7 +5830,7 @@ declare type Content_Article_Fragment = {
|
|
|
5830
5830
|
}>;
|
|
5831
5831
|
}>;
|
|
5832
5832
|
readonly intro?: {
|
|
5833
|
-
readonly source: 'standfirst' | 'summary';
|
|
5833
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
5834
5834
|
readonly structured: {
|
|
5835
5835
|
readonly tree: any;
|
|
5836
5836
|
};
|
|
@@ -5863,7 +5863,7 @@ declare type Content_Article_Fragment = {
|
|
|
5863
5863
|
readonly relativeUrl: string;
|
|
5864
5864
|
} | null;
|
|
5865
5865
|
readonly intro?: {
|
|
5866
|
-
readonly source: 'standfirst' | 'summary';
|
|
5866
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
5867
5867
|
readonly structured: {
|
|
5868
5868
|
readonly tree: any;
|
|
5869
5869
|
};
|
|
@@ -6055,7 +6055,7 @@ declare type Content_Article_Fragment = {
|
|
|
6055
6055
|
readonly id: string;
|
|
6056
6056
|
}>;
|
|
6057
6057
|
readonly intro?: {
|
|
6058
|
-
readonly source: 'standfirst' | 'summary';
|
|
6058
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
6059
6059
|
readonly structured: {
|
|
6060
6060
|
readonly tree: any;
|
|
6061
6061
|
};
|
|
@@ -7428,7 +7428,7 @@ declare type Content_Article_Fragment = {
|
|
|
7428
7428
|
readonly layout?: string | null;
|
|
7429
7429
|
} | null;
|
|
7430
7430
|
};
|
|
7431
|
-
|
|
7431
|
+
type Content_Audio_Fragment = {
|
|
7432
7432
|
readonly __typename: 'Audio';
|
|
7433
7433
|
readonly id: string;
|
|
7434
7434
|
readonly title: string;
|
|
@@ -7440,7 +7440,7 @@ declare type Content_Audio_Fragment = {
|
|
|
7440
7440
|
readonly headline: string;
|
|
7441
7441
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
7442
7442
|
readonly intro?: {
|
|
7443
|
-
readonly source: 'standfirst' | 'summary';
|
|
7443
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
7444
7444
|
readonly structured: {
|
|
7445
7445
|
readonly tree: any;
|
|
7446
7446
|
};
|
|
@@ -7472,7 +7472,7 @@ declare type Content_Audio_Fragment = {
|
|
|
7472
7472
|
readonly relativeUrl: string;
|
|
7473
7473
|
} | null;
|
|
7474
7474
|
readonly intro?: {
|
|
7475
|
-
readonly source: 'standfirst' | 'summary';
|
|
7475
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
7476
7476
|
readonly structured: {
|
|
7477
7477
|
readonly tree: any;
|
|
7478
7478
|
};
|
|
@@ -7668,7 +7668,7 @@ declare type Content_Audio_Fragment = {
|
|
|
7668
7668
|
}>;
|
|
7669
7669
|
}>;
|
|
7670
7670
|
readonly intro?: {
|
|
7671
|
-
readonly source: 'standfirst' | 'summary';
|
|
7671
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
7672
7672
|
readonly structured: {
|
|
7673
7673
|
readonly tree: any;
|
|
7674
7674
|
};
|
|
@@ -7701,7 +7701,7 @@ declare type Content_Audio_Fragment = {
|
|
|
7701
7701
|
readonly relativeUrl: string;
|
|
7702
7702
|
} | null;
|
|
7703
7703
|
readonly intro?: {
|
|
7704
|
-
readonly source: 'standfirst' | 'summary';
|
|
7704
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
7705
7705
|
readonly structured: {
|
|
7706
7706
|
readonly tree: any;
|
|
7707
7707
|
};
|
|
@@ -7893,7 +7893,7 @@ declare type Content_Audio_Fragment = {
|
|
|
7893
7893
|
readonly id: string;
|
|
7894
7894
|
}>;
|
|
7895
7895
|
readonly intro?: {
|
|
7896
|
-
readonly source: 'standfirst' | 'summary';
|
|
7896
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
7897
7897
|
readonly structured: {
|
|
7898
7898
|
readonly tree: any;
|
|
7899
7899
|
};
|
|
@@ -9266,7 +9266,7 @@ declare type Content_Audio_Fragment = {
|
|
|
9266
9266
|
readonly layout?: string | null;
|
|
9267
9267
|
} | null;
|
|
9268
9268
|
};
|
|
9269
|
-
|
|
9269
|
+
type Content_ContentPackage_Fragment = {
|
|
9270
9270
|
readonly __typename: 'ContentPackage';
|
|
9271
9271
|
readonly id: string;
|
|
9272
9272
|
readonly title: string;
|
|
@@ -9278,7 +9278,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
9278
9278
|
readonly headline: string;
|
|
9279
9279
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
9280
9280
|
readonly intro?: {
|
|
9281
|
-
readonly source: 'standfirst' | 'summary';
|
|
9281
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
9282
9282
|
readonly structured: {
|
|
9283
9283
|
readonly tree: any;
|
|
9284
9284
|
};
|
|
@@ -9310,7 +9310,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
9310
9310
|
readonly relativeUrl: string;
|
|
9311
9311
|
} | null;
|
|
9312
9312
|
readonly intro?: {
|
|
9313
|
-
readonly source: 'standfirst' | 'summary';
|
|
9313
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
9314
9314
|
readonly structured: {
|
|
9315
9315
|
readonly tree: any;
|
|
9316
9316
|
};
|
|
@@ -9506,7 +9506,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
9506
9506
|
}>;
|
|
9507
9507
|
}>;
|
|
9508
9508
|
readonly intro?: {
|
|
9509
|
-
readonly source: 'standfirst' | 'summary';
|
|
9509
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
9510
9510
|
readonly structured: {
|
|
9511
9511
|
readonly tree: any;
|
|
9512
9512
|
};
|
|
@@ -9539,7 +9539,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
9539
9539
|
readonly relativeUrl: string;
|
|
9540
9540
|
} | null;
|
|
9541
9541
|
readonly intro?: {
|
|
9542
|
-
readonly source: 'standfirst' | 'summary';
|
|
9542
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
9543
9543
|
readonly structured: {
|
|
9544
9544
|
readonly tree: any;
|
|
9545
9545
|
};
|
|
@@ -9731,7 +9731,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
9731
9731
|
readonly id: string;
|
|
9732
9732
|
}>;
|
|
9733
9733
|
readonly intro?: {
|
|
9734
|
-
readonly source: 'standfirst' | 'summary';
|
|
9734
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
9735
9735
|
readonly structured: {
|
|
9736
9736
|
readonly tree: any;
|
|
9737
9737
|
};
|
|
@@ -11104,7 +11104,7 @@ declare type Content_ContentPackage_Fragment = {
|
|
|
11104
11104
|
readonly layout?: string | null;
|
|
11105
11105
|
} | null;
|
|
11106
11106
|
};
|
|
11107
|
-
|
|
11107
|
+
type Content_LiveBlogPackage_Fragment = {
|
|
11108
11108
|
readonly __typename: 'LiveBlogPackage';
|
|
11109
11109
|
readonly id: string;
|
|
11110
11110
|
readonly title: string;
|
|
@@ -11116,7 +11116,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
11116
11116
|
readonly headline: string;
|
|
11117
11117
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
11118
11118
|
readonly intro?: {
|
|
11119
|
-
readonly source: 'standfirst' | 'summary';
|
|
11119
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
11120
11120
|
readonly structured: {
|
|
11121
11121
|
readonly tree: any;
|
|
11122
11122
|
};
|
|
@@ -11148,7 +11148,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
11148
11148
|
readonly relativeUrl: string;
|
|
11149
11149
|
} | null;
|
|
11150
11150
|
readonly intro?: {
|
|
11151
|
-
readonly source: 'standfirst' | 'summary';
|
|
11151
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
11152
11152
|
readonly structured: {
|
|
11153
11153
|
readonly tree: any;
|
|
11154
11154
|
};
|
|
@@ -11344,7 +11344,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
11344
11344
|
}>;
|
|
11345
11345
|
}>;
|
|
11346
11346
|
readonly intro?: {
|
|
11347
|
-
readonly source: 'standfirst' | 'summary';
|
|
11347
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
11348
11348
|
readonly structured: {
|
|
11349
11349
|
readonly tree: any;
|
|
11350
11350
|
};
|
|
@@ -11377,7 +11377,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
11377
11377
|
readonly relativeUrl: string;
|
|
11378
11378
|
} | null;
|
|
11379
11379
|
readonly intro?: {
|
|
11380
|
-
readonly source: 'standfirst' | 'summary';
|
|
11380
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
11381
11381
|
readonly structured: {
|
|
11382
11382
|
readonly tree: any;
|
|
11383
11383
|
};
|
|
@@ -11569,7 +11569,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
11569
11569
|
readonly id: string;
|
|
11570
11570
|
}>;
|
|
11571
11571
|
readonly intro?: {
|
|
11572
|
-
readonly source: 'standfirst' | 'summary';
|
|
11572
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
11573
11573
|
readonly structured: {
|
|
11574
11574
|
readonly tree: any;
|
|
11575
11575
|
};
|
|
@@ -12942,7 +12942,7 @@ declare type Content_LiveBlogPackage_Fragment = {
|
|
|
12942
12942
|
readonly layout?: string | null;
|
|
12943
12943
|
} | null;
|
|
12944
12944
|
};
|
|
12945
|
-
|
|
12945
|
+
type Content_LiveBlogPost_Fragment = {
|
|
12946
12946
|
readonly __typename: 'LiveBlogPost';
|
|
12947
12947
|
readonly id: string;
|
|
12948
12948
|
readonly title: string;
|
|
@@ -12954,7 +12954,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
12954
12954
|
readonly headline: string;
|
|
12955
12955
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
12956
12956
|
readonly intro?: {
|
|
12957
|
-
readonly source: 'standfirst' | 'summary';
|
|
12957
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
12958
12958
|
readonly structured: {
|
|
12959
12959
|
readonly tree: any;
|
|
12960
12960
|
};
|
|
@@ -12986,7 +12986,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
12986
12986
|
readonly relativeUrl: string;
|
|
12987
12987
|
} | null;
|
|
12988
12988
|
readonly intro?: {
|
|
12989
|
-
readonly source: 'standfirst' | 'summary';
|
|
12989
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
12990
12990
|
readonly structured: {
|
|
12991
12991
|
readonly tree: any;
|
|
12992
12992
|
};
|
|
@@ -13182,7 +13182,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
13182
13182
|
}>;
|
|
13183
13183
|
}>;
|
|
13184
13184
|
readonly intro?: {
|
|
13185
|
-
readonly source: 'standfirst' | 'summary';
|
|
13185
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
13186
13186
|
readonly structured: {
|
|
13187
13187
|
readonly tree: any;
|
|
13188
13188
|
};
|
|
@@ -13215,7 +13215,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
13215
13215
|
readonly relativeUrl: string;
|
|
13216
13216
|
} | null;
|
|
13217
13217
|
readonly intro?: {
|
|
13218
|
-
readonly source: 'standfirst' | 'summary';
|
|
13218
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
13219
13219
|
readonly structured: {
|
|
13220
13220
|
readonly tree: any;
|
|
13221
13221
|
};
|
|
@@ -13407,7 +13407,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
13407
13407
|
readonly id: string;
|
|
13408
13408
|
}>;
|
|
13409
13409
|
readonly intro?: {
|
|
13410
|
-
readonly source: 'standfirst' | 'summary';
|
|
13410
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
13411
13411
|
readonly structured: {
|
|
13412
13412
|
readonly tree: any;
|
|
13413
13413
|
};
|
|
@@ -14780,7 +14780,7 @@ declare type Content_LiveBlogPost_Fragment = {
|
|
|
14780
14780
|
readonly layout?: string | null;
|
|
14781
14781
|
} | null;
|
|
14782
14782
|
};
|
|
14783
|
-
|
|
14783
|
+
type Content_Video_Fragment = {
|
|
14784
14784
|
readonly __typename: 'Video';
|
|
14785
14785
|
readonly id: string;
|
|
14786
14786
|
readonly title: string;
|
|
@@ -14792,7 +14792,7 @@ declare type Content_Video_Fragment = {
|
|
|
14792
14792
|
readonly headline: string;
|
|
14793
14793
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
14794
14794
|
readonly intro?: {
|
|
14795
|
-
readonly source: 'standfirst' | 'summary';
|
|
14795
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
14796
14796
|
readonly structured: {
|
|
14797
14797
|
readonly tree: any;
|
|
14798
14798
|
};
|
|
@@ -14824,7 +14824,7 @@ declare type Content_Video_Fragment = {
|
|
|
14824
14824
|
readonly relativeUrl: string;
|
|
14825
14825
|
} | null;
|
|
14826
14826
|
readonly intro?: {
|
|
14827
|
-
readonly source: 'standfirst' | 'summary';
|
|
14827
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
14828
14828
|
readonly structured: {
|
|
14829
14829
|
readonly tree: any;
|
|
14830
14830
|
};
|
|
@@ -15020,7 +15020,7 @@ declare type Content_Video_Fragment = {
|
|
|
15020
15020
|
}>;
|
|
15021
15021
|
}>;
|
|
15022
15022
|
readonly intro?: {
|
|
15023
|
-
readonly source: 'standfirst' | 'summary';
|
|
15023
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
15024
15024
|
readonly structured: {
|
|
15025
15025
|
readonly tree: any;
|
|
15026
15026
|
};
|
|
@@ -15053,7 +15053,7 @@ declare type Content_Video_Fragment = {
|
|
|
15053
15053
|
readonly relativeUrl: string;
|
|
15054
15054
|
} | null;
|
|
15055
15055
|
readonly intro?: {
|
|
15056
|
-
readonly source: 'standfirst' | 'summary';
|
|
15056
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
15057
15057
|
readonly structured: {
|
|
15058
15058
|
readonly tree: any;
|
|
15059
15059
|
};
|
|
@@ -15245,7 +15245,7 @@ declare type Content_Video_Fragment = {
|
|
|
15245
15245
|
readonly id: string;
|
|
15246
15246
|
}>;
|
|
15247
15247
|
readonly intro?: {
|
|
15248
|
-
readonly source: 'standfirst' | 'summary';
|
|
15248
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
15249
15249
|
readonly structured: {
|
|
15250
15250
|
readonly tree: any;
|
|
15251
15251
|
};
|
|
@@ -16618,12 +16618,12 @@ declare type Content_Video_Fragment = {
|
|
|
16618
16618
|
readonly layout?: string | null;
|
|
16619
16619
|
} | null;
|
|
16620
16620
|
};
|
|
16621
|
-
export
|
|
16622
|
-
export
|
|
16621
|
+
export type ContentFragment = Content_Article_Fragment | Content_Audio_Fragment | Content_ContentPackage_Fragment | Content_LiveBlogPackage_Fragment | Content_LiveBlogPost_Fragment | Content_Video_Fragment;
|
|
16622
|
+
export type ArticleQueryVariables = Exact<{
|
|
16623
16623
|
uuid: Scalars['String'];
|
|
16624
16624
|
useVanities: Scalars['Boolean'];
|
|
16625
16625
|
}>;
|
|
16626
|
-
export
|
|
16626
|
+
export type ArticleQuery = {
|
|
16627
16627
|
readonly content: {
|
|
16628
16628
|
readonly __typename: 'Article';
|
|
16629
16629
|
readonly id: string;
|
|
@@ -16636,7 +16636,7 @@ export declare type ArticleQuery = {
|
|
|
16636
16636
|
readonly headline: string;
|
|
16637
16637
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
16638
16638
|
readonly intro?: {
|
|
16639
|
-
readonly source: 'standfirst' | 'summary';
|
|
16639
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
16640
16640
|
readonly structured: {
|
|
16641
16641
|
readonly tree: any;
|
|
16642
16642
|
};
|
|
@@ -16668,7 +16668,7 @@ export declare type ArticleQuery = {
|
|
|
16668
16668
|
readonly relativeUrl: string;
|
|
16669
16669
|
} | null;
|
|
16670
16670
|
readonly intro?: {
|
|
16671
|
-
readonly source: 'standfirst' | 'summary';
|
|
16671
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
16672
16672
|
readonly structured: {
|
|
16673
16673
|
readonly tree: any;
|
|
16674
16674
|
};
|
|
@@ -16864,7 +16864,7 @@ export declare type ArticleQuery = {
|
|
|
16864
16864
|
}>;
|
|
16865
16865
|
}>;
|
|
16866
16866
|
readonly intro?: {
|
|
16867
|
-
readonly source: 'standfirst' | 'summary';
|
|
16867
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
16868
16868
|
readonly structured: {
|
|
16869
16869
|
readonly tree: any;
|
|
16870
16870
|
};
|
|
@@ -16897,7 +16897,7 @@ export declare type ArticleQuery = {
|
|
|
16897
16897
|
readonly relativeUrl: string;
|
|
16898
16898
|
} | null;
|
|
16899
16899
|
readonly intro?: {
|
|
16900
|
-
readonly source: 'standfirst' | 'summary';
|
|
16900
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
16901
16901
|
readonly structured: {
|
|
16902
16902
|
readonly tree: any;
|
|
16903
16903
|
};
|
|
@@ -17089,7 +17089,7 @@ export declare type ArticleQuery = {
|
|
|
17089
17089
|
readonly id: string;
|
|
17090
17090
|
}>;
|
|
17091
17091
|
readonly intro?: {
|
|
17092
|
-
readonly source: 'standfirst' | 'summary';
|
|
17092
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
17093
17093
|
readonly structured: {
|
|
17094
17094
|
readonly tree: any;
|
|
17095
17095
|
};
|
|
@@ -18473,7 +18473,7 @@ export declare type ArticleQuery = {
|
|
|
18473
18473
|
readonly headline: string;
|
|
18474
18474
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
18475
18475
|
readonly intro?: {
|
|
18476
|
-
readonly source: 'standfirst' | 'summary';
|
|
18476
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
18477
18477
|
readonly structured: {
|
|
18478
18478
|
readonly tree: any;
|
|
18479
18479
|
};
|
|
@@ -18505,7 +18505,7 @@ export declare type ArticleQuery = {
|
|
|
18505
18505
|
readonly relativeUrl: string;
|
|
18506
18506
|
} | null;
|
|
18507
18507
|
readonly intro?: {
|
|
18508
|
-
readonly source: 'standfirst' | 'summary';
|
|
18508
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
18509
18509
|
readonly structured: {
|
|
18510
18510
|
readonly tree: any;
|
|
18511
18511
|
};
|
|
@@ -18701,7 +18701,7 @@ export declare type ArticleQuery = {
|
|
|
18701
18701
|
}>;
|
|
18702
18702
|
}>;
|
|
18703
18703
|
readonly intro?: {
|
|
18704
|
-
readonly source: 'standfirst' | 'summary';
|
|
18704
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
18705
18705
|
readonly structured: {
|
|
18706
18706
|
readonly tree: any;
|
|
18707
18707
|
};
|
|
@@ -18734,7 +18734,7 @@ export declare type ArticleQuery = {
|
|
|
18734
18734
|
readonly relativeUrl: string;
|
|
18735
18735
|
} | null;
|
|
18736
18736
|
readonly intro?: {
|
|
18737
|
-
readonly source: 'standfirst' | 'summary';
|
|
18737
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
18738
18738
|
readonly structured: {
|
|
18739
18739
|
readonly tree: any;
|
|
18740
18740
|
};
|
|
@@ -18926,7 +18926,7 @@ export declare type ArticleQuery = {
|
|
|
18926
18926
|
readonly id: string;
|
|
18927
18927
|
}>;
|
|
18928
18928
|
readonly intro?: {
|
|
18929
|
-
readonly source: 'standfirst' | 'summary';
|
|
18929
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
18930
18930
|
readonly structured: {
|
|
18931
18931
|
readonly tree: any;
|
|
18932
18932
|
};
|
|
@@ -20381,7 +20381,7 @@ export declare type ArticleQuery = {
|
|
|
20381
20381
|
readonly headline: string;
|
|
20382
20382
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
20383
20383
|
readonly intro?: {
|
|
20384
|
-
readonly source: 'standfirst' | 'summary';
|
|
20384
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
20385
20385
|
readonly structured: {
|
|
20386
20386
|
readonly tree: any;
|
|
20387
20387
|
};
|
|
@@ -20413,7 +20413,7 @@ export declare type ArticleQuery = {
|
|
|
20413
20413
|
readonly relativeUrl: string;
|
|
20414
20414
|
} | null;
|
|
20415
20415
|
readonly intro?: {
|
|
20416
|
-
readonly source: 'standfirst' | 'summary';
|
|
20416
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
20417
20417
|
readonly structured: {
|
|
20418
20418
|
readonly tree: any;
|
|
20419
20419
|
};
|
|
@@ -20609,7 +20609,7 @@ export declare type ArticleQuery = {
|
|
|
20609
20609
|
}>;
|
|
20610
20610
|
}>;
|
|
20611
20611
|
readonly intro?: {
|
|
20612
|
-
readonly source: 'standfirst' | 'summary';
|
|
20612
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
20613
20613
|
readonly structured: {
|
|
20614
20614
|
readonly tree: any;
|
|
20615
20615
|
};
|
|
@@ -20642,7 +20642,7 @@ export declare type ArticleQuery = {
|
|
|
20642
20642
|
readonly relativeUrl: string;
|
|
20643
20643
|
} | null;
|
|
20644
20644
|
readonly intro?: {
|
|
20645
|
-
readonly source: 'standfirst' | 'summary';
|
|
20645
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
20646
20646
|
readonly structured: {
|
|
20647
20647
|
readonly tree: any;
|
|
20648
20648
|
};
|
|
@@ -20834,7 +20834,7 @@ export declare type ArticleQuery = {
|
|
|
20834
20834
|
readonly id: string;
|
|
20835
20835
|
}>;
|
|
20836
20836
|
readonly intro?: {
|
|
20837
|
-
readonly source: 'standfirst' | 'summary';
|
|
20837
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
20838
20838
|
readonly structured: {
|
|
20839
20839
|
readonly tree: any;
|
|
20840
20840
|
};
|
|
@@ -22226,7 +22226,7 @@ export declare type ArticleQuery = {
|
|
|
22226
22226
|
readonly headline: string;
|
|
22227
22227
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
22228
22228
|
readonly intro?: {
|
|
22229
|
-
readonly source: 'standfirst' | 'summary';
|
|
22229
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
22230
22230
|
readonly structured: {
|
|
22231
22231
|
readonly tree: any;
|
|
22232
22232
|
};
|
|
@@ -22258,7 +22258,7 @@ export declare type ArticleQuery = {
|
|
|
22258
22258
|
readonly relativeUrl: string;
|
|
22259
22259
|
} | null;
|
|
22260
22260
|
readonly intro?: {
|
|
22261
|
-
readonly source: 'standfirst' | 'summary';
|
|
22261
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
22262
22262
|
readonly structured: {
|
|
22263
22263
|
readonly tree: any;
|
|
22264
22264
|
};
|
|
@@ -22454,7 +22454,7 @@ export declare type ArticleQuery = {
|
|
|
22454
22454
|
}>;
|
|
22455
22455
|
}>;
|
|
22456
22456
|
readonly intro?: {
|
|
22457
|
-
readonly source: 'standfirst' | 'summary';
|
|
22457
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
22458
22458
|
readonly structured: {
|
|
22459
22459
|
readonly tree: any;
|
|
22460
22460
|
};
|
|
@@ -22487,7 +22487,7 @@ export declare type ArticleQuery = {
|
|
|
22487
22487
|
readonly relativeUrl: string;
|
|
22488
22488
|
} | null;
|
|
22489
22489
|
readonly intro?: {
|
|
22490
|
-
readonly source: 'standfirst' | 'summary';
|
|
22490
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
22491
22491
|
readonly structured: {
|
|
22492
22492
|
readonly tree: any;
|
|
22493
22493
|
};
|
|
@@ -22679,7 +22679,7 @@ export declare type ArticleQuery = {
|
|
|
22679
22679
|
readonly id: string;
|
|
22680
22680
|
}>;
|
|
22681
22681
|
readonly intro?: {
|
|
22682
|
-
readonly source: 'standfirst' | 'summary';
|
|
22682
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
22683
22683
|
readonly structured: {
|
|
22684
22684
|
readonly tree: any;
|
|
22685
22685
|
};
|
|
@@ -24063,7 +24063,7 @@ export declare type ArticleQuery = {
|
|
|
24063
24063
|
readonly headline: string;
|
|
24064
24064
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
24065
24065
|
readonly intro?: {
|
|
24066
|
-
readonly source: 'standfirst' | 'summary';
|
|
24066
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
24067
24067
|
readonly structured: {
|
|
24068
24068
|
readonly tree: any;
|
|
24069
24069
|
};
|
|
@@ -24095,7 +24095,7 @@ export declare type ArticleQuery = {
|
|
|
24095
24095
|
readonly relativeUrl: string;
|
|
24096
24096
|
} | null;
|
|
24097
24097
|
readonly intro?: {
|
|
24098
|
-
readonly source: 'standfirst' | 'summary';
|
|
24098
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
24099
24099
|
readonly structured: {
|
|
24100
24100
|
readonly tree: any;
|
|
24101
24101
|
};
|
|
@@ -24291,7 +24291,7 @@ export declare type ArticleQuery = {
|
|
|
24291
24291
|
}>;
|
|
24292
24292
|
}>;
|
|
24293
24293
|
readonly intro?: {
|
|
24294
|
-
readonly source: 'standfirst' | 'summary';
|
|
24294
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
24295
24295
|
readonly structured: {
|
|
24296
24296
|
readonly tree: any;
|
|
24297
24297
|
};
|
|
@@ -24324,7 +24324,7 @@ export declare type ArticleQuery = {
|
|
|
24324
24324
|
readonly relativeUrl: string;
|
|
24325
24325
|
} | null;
|
|
24326
24326
|
readonly intro?: {
|
|
24327
|
-
readonly source: 'standfirst' | 'summary';
|
|
24327
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
24328
24328
|
readonly structured: {
|
|
24329
24329
|
readonly tree: any;
|
|
24330
24330
|
};
|
|
@@ -24516,7 +24516,7 @@ export declare type ArticleQuery = {
|
|
|
24516
24516
|
readonly id: string;
|
|
24517
24517
|
}>;
|
|
24518
24518
|
readonly intro?: {
|
|
24519
|
-
readonly source: 'standfirst' | 'summary';
|
|
24519
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
24520
24520
|
readonly structured: {
|
|
24521
24521
|
readonly tree: any;
|
|
24522
24522
|
};
|
|
@@ -25900,7 +25900,7 @@ export declare type ArticleQuery = {
|
|
|
25900
25900
|
readonly headline: string;
|
|
25901
25901
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
25902
25902
|
readonly intro?: {
|
|
25903
|
-
readonly source: 'standfirst' | 'summary';
|
|
25903
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
25904
25904
|
readonly structured: {
|
|
25905
25905
|
readonly tree: any;
|
|
25906
25906
|
};
|
|
@@ -25932,7 +25932,7 @@ export declare type ArticleQuery = {
|
|
|
25932
25932
|
readonly relativeUrl: string;
|
|
25933
25933
|
} | null;
|
|
25934
25934
|
readonly intro?: {
|
|
25935
|
-
readonly source: 'standfirst' | 'summary';
|
|
25935
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
25936
25936
|
readonly structured: {
|
|
25937
25937
|
readonly tree: any;
|
|
25938
25938
|
};
|
|
@@ -26128,7 +26128,7 @@ export declare type ArticleQuery = {
|
|
|
26128
26128
|
}>;
|
|
26129
26129
|
}>;
|
|
26130
26130
|
readonly intro?: {
|
|
26131
|
-
readonly source: 'standfirst' | 'summary';
|
|
26131
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
26132
26132
|
readonly structured: {
|
|
26133
26133
|
readonly tree: any;
|
|
26134
26134
|
};
|
|
@@ -26161,7 +26161,7 @@ export declare type ArticleQuery = {
|
|
|
26161
26161
|
readonly relativeUrl: string;
|
|
26162
26162
|
} | null;
|
|
26163
26163
|
readonly intro?: {
|
|
26164
|
-
readonly source: 'standfirst' | 'summary';
|
|
26164
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
26165
26165
|
readonly structured: {
|
|
26166
26166
|
readonly tree: any;
|
|
26167
26167
|
};
|
|
@@ -26353,7 +26353,7 @@ export declare type ArticleQuery = {
|
|
|
26353
26353
|
readonly id: string;
|
|
26354
26354
|
}>;
|
|
26355
26355
|
readonly intro?: {
|
|
26356
|
-
readonly source: 'standfirst' | 'summary';
|
|
26356
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
26357
26357
|
readonly structured: {
|
|
26358
26358
|
readonly tree: any;
|
|
26359
26359
|
};
|
|
@@ -27737,7 +27737,7 @@ export declare type ArticleQuery = {
|
|
|
27737
27737
|
readonly headline: string;
|
|
27738
27738
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
27739
27739
|
readonly intro?: {
|
|
27740
|
-
readonly source: 'standfirst' | 'summary';
|
|
27740
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
27741
27741
|
readonly structured: {
|
|
27742
27742
|
readonly tree: any;
|
|
27743
27743
|
};
|
|
@@ -27769,7 +27769,7 @@ export declare type ArticleQuery = {
|
|
|
27769
27769
|
readonly relativeUrl: string;
|
|
27770
27770
|
} | null;
|
|
27771
27771
|
readonly intro?: {
|
|
27772
|
-
readonly source: 'standfirst' | 'summary';
|
|
27772
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
27773
27773
|
readonly structured: {
|
|
27774
27774
|
readonly tree: any;
|
|
27775
27775
|
};
|
|
@@ -27965,7 +27965,7 @@ export declare type ArticleQuery = {
|
|
|
27965
27965
|
}>;
|
|
27966
27966
|
}>;
|
|
27967
27967
|
readonly intro?: {
|
|
27968
|
-
readonly source: 'standfirst' | 'summary';
|
|
27968
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
27969
27969
|
readonly structured: {
|
|
27970
27970
|
readonly tree: any;
|
|
27971
27971
|
};
|
|
@@ -27998,7 +27998,7 @@ export declare type ArticleQuery = {
|
|
|
27998
27998
|
readonly relativeUrl: string;
|
|
27999
27999
|
} | null;
|
|
28000
28000
|
readonly intro?: {
|
|
28001
|
-
readonly source: 'standfirst' | 'summary';
|
|
28001
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
28002
28002
|
readonly structured: {
|
|
28003
28003
|
readonly tree: any;
|
|
28004
28004
|
};
|
|
@@ -28190,7 +28190,7 @@ export declare type ArticleQuery = {
|
|
|
28190
28190
|
readonly id: string;
|
|
28191
28191
|
}>;
|
|
28192
28192
|
readonly intro?: {
|
|
28193
|
-
readonly source: 'standfirst' | 'summary';
|
|
28193
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
28194
28194
|
readonly structured: {
|
|
28195
28195
|
readonly tree: any;
|
|
28196
28196
|
};
|
|
@@ -29574,7 +29574,7 @@ export declare type ArticleQuery = {
|
|
|
29574
29574
|
readonly headline: string;
|
|
29575
29575
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
29576
29576
|
readonly intro?: {
|
|
29577
|
-
readonly source: 'standfirst' | 'summary';
|
|
29577
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
29578
29578
|
readonly structured: {
|
|
29579
29579
|
readonly tree: any;
|
|
29580
29580
|
};
|
|
@@ -29606,7 +29606,7 @@ export declare type ArticleQuery = {
|
|
|
29606
29606
|
readonly relativeUrl: string;
|
|
29607
29607
|
} | null;
|
|
29608
29608
|
readonly intro?: {
|
|
29609
|
-
readonly source: 'standfirst' | 'summary';
|
|
29609
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
29610
29610
|
readonly structured: {
|
|
29611
29611
|
readonly tree: any;
|
|
29612
29612
|
};
|
|
@@ -29802,7 +29802,7 @@ export declare type ArticleQuery = {
|
|
|
29802
29802
|
}>;
|
|
29803
29803
|
}>;
|
|
29804
29804
|
readonly intro?: {
|
|
29805
|
-
readonly source: 'standfirst' | 'summary';
|
|
29805
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
29806
29806
|
readonly structured: {
|
|
29807
29807
|
readonly tree: any;
|
|
29808
29808
|
};
|
|
@@ -29835,7 +29835,7 @@ export declare type ArticleQuery = {
|
|
|
29835
29835
|
readonly relativeUrl: string;
|
|
29836
29836
|
} | null;
|
|
29837
29837
|
readonly intro?: {
|
|
29838
|
-
readonly source: 'standfirst' | 'summary';
|
|
29838
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
29839
29839
|
readonly structured: {
|
|
29840
29840
|
readonly tree: any;
|
|
29841
29841
|
};
|
|
@@ -30027,7 +30027,7 @@ export declare type ArticleQuery = {
|
|
|
30027
30027
|
readonly id: string;
|
|
30028
30028
|
}>;
|
|
30029
30029
|
readonly intro?: {
|
|
30030
|
-
readonly source: 'standfirst' | 'summary';
|
|
30030
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
30031
30031
|
readonly structured: {
|
|
30032
30032
|
readonly tree: any;
|
|
30033
30033
|
};
|
|
@@ -31411,7 +31411,7 @@ export declare type ArticleQuery = {
|
|
|
31411
31411
|
readonly headline: string;
|
|
31412
31412
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
31413
31413
|
readonly intro?: {
|
|
31414
|
-
readonly source: 'standfirst' | 'summary';
|
|
31414
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
31415
31415
|
readonly structured: {
|
|
31416
31416
|
readonly tree: any;
|
|
31417
31417
|
};
|
|
@@ -31443,7 +31443,7 @@ export declare type ArticleQuery = {
|
|
|
31443
31443
|
readonly relativeUrl: string;
|
|
31444
31444
|
} | null;
|
|
31445
31445
|
readonly intro?: {
|
|
31446
|
-
readonly source: 'standfirst' | 'summary';
|
|
31446
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
31447
31447
|
readonly structured: {
|
|
31448
31448
|
readonly tree: any;
|
|
31449
31449
|
};
|
|
@@ -31639,7 +31639,7 @@ export declare type ArticleQuery = {
|
|
|
31639
31639
|
}>;
|
|
31640
31640
|
}>;
|
|
31641
31641
|
readonly intro?: {
|
|
31642
|
-
readonly source: 'standfirst' | 'summary';
|
|
31642
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
31643
31643
|
readonly structured: {
|
|
31644
31644
|
readonly tree: any;
|
|
31645
31645
|
};
|
|
@@ -31672,7 +31672,7 @@ export declare type ArticleQuery = {
|
|
|
31672
31672
|
readonly relativeUrl: string;
|
|
31673
31673
|
} | null;
|
|
31674
31674
|
readonly intro?: {
|
|
31675
|
-
readonly source: 'standfirst' | 'summary';
|
|
31675
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
31676
31676
|
readonly structured: {
|
|
31677
31677
|
readonly tree: any;
|
|
31678
31678
|
};
|
|
@@ -31864,7 +31864,7 @@ export declare type ArticleQuery = {
|
|
|
31864
31864
|
readonly id: string;
|
|
31865
31865
|
}>;
|
|
31866
31866
|
readonly intro?: {
|
|
31867
|
-
readonly source: 'standfirst' | 'summary';
|
|
31867
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
31868
31868
|
readonly structured: {
|
|
31869
31869
|
readonly tree: any;
|
|
31870
31870
|
};
|
|
@@ -33242,7 +33242,7 @@ export declare type ArticleQuery = {
|
|
|
33242
33242
|
readonly headline: string;
|
|
33243
33243
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
33244
33244
|
readonly intro?: {
|
|
33245
|
-
readonly source: 'standfirst' | 'summary';
|
|
33245
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
33246
33246
|
readonly structured: {
|
|
33247
33247
|
readonly tree: any;
|
|
33248
33248
|
};
|
|
@@ -33274,7 +33274,7 @@ export declare type ArticleQuery = {
|
|
|
33274
33274
|
readonly relativeUrl: string;
|
|
33275
33275
|
} | null;
|
|
33276
33276
|
readonly intro?: {
|
|
33277
|
-
readonly source: 'standfirst' | 'summary';
|
|
33277
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
33278
33278
|
readonly structured: {
|
|
33279
33279
|
readonly tree: any;
|
|
33280
33280
|
};
|
|
@@ -33470,7 +33470,7 @@ export declare type ArticleQuery = {
|
|
|
33470
33470
|
}>;
|
|
33471
33471
|
}>;
|
|
33472
33472
|
readonly intro?: {
|
|
33473
|
-
readonly source: 'standfirst' | 'summary';
|
|
33473
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
33474
33474
|
readonly structured: {
|
|
33475
33475
|
readonly tree: any;
|
|
33476
33476
|
};
|
|
@@ -33503,7 +33503,7 @@ export declare type ArticleQuery = {
|
|
|
33503
33503
|
readonly relativeUrl: string;
|
|
33504
33504
|
} | null;
|
|
33505
33505
|
readonly intro?: {
|
|
33506
|
-
readonly source: 'standfirst' | 'summary';
|
|
33506
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
33507
33507
|
readonly structured: {
|
|
33508
33508
|
readonly tree: any;
|
|
33509
33509
|
};
|
|
@@ -33695,7 +33695,7 @@ export declare type ArticleQuery = {
|
|
|
33695
33695
|
readonly id: string;
|
|
33696
33696
|
}>;
|
|
33697
33697
|
readonly intro?: {
|
|
33698
|
-
readonly source: 'standfirst' | 'summary';
|
|
33698
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
33699
33699
|
readonly structured: {
|
|
33700
33700
|
readonly tree: any;
|
|
33701
33701
|
};
|
|
@@ -35079,7 +35079,7 @@ export declare type ArticleQuery = {
|
|
|
35079
35079
|
readonly headline: string;
|
|
35080
35080
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
35081
35081
|
readonly intro?: {
|
|
35082
|
-
readonly source: 'standfirst' | 'summary';
|
|
35082
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
35083
35083
|
readonly structured: {
|
|
35084
35084
|
readonly tree: any;
|
|
35085
35085
|
};
|
|
@@ -35111,7 +35111,7 @@ export declare type ArticleQuery = {
|
|
|
35111
35111
|
readonly relativeUrl: string;
|
|
35112
35112
|
} | null;
|
|
35113
35113
|
readonly intro?: {
|
|
35114
|
-
readonly source: 'standfirst' | 'summary';
|
|
35114
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
35115
35115
|
readonly structured: {
|
|
35116
35116
|
readonly tree: any;
|
|
35117
35117
|
};
|
|
@@ -35307,7 +35307,7 @@ export declare type ArticleQuery = {
|
|
|
35307
35307
|
}>;
|
|
35308
35308
|
}>;
|
|
35309
35309
|
readonly intro?: {
|
|
35310
|
-
readonly source: 'standfirst' | 'summary';
|
|
35310
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
35311
35311
|
readonly structured: {
|
|
35312
35312
|
readonly tree: any;
|
|
35313
35313
|
};
|
|
@@ -35340,7 +35340,7 @@ export declare type ArticleQuery = {
|
|
|
35340
35340
|
readonly relativeUrl: string;
|
|
35341
35341
|
} | null;
|
|
35342
35342
|
readonly intro?: {
|
|
35343
|
-
readonly source: 'standfirst' | 'summary';
|
|
35343
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
35344
35344
|
readonly structured: {
|
|
35345
35345
|
readonly tree: any;
|
|
35346
35346
|
};
|
|
@@ -35532,7 +35532,7 @@ export declare type ArticleQuery = {
|
|
|
35532
35532
|
readonly id: string;
|
|
35533
35533
|
}>;
|
|
35534
35534
|
readonly intro?: {
|
|
35535
|
-
readonly source: 'standfirst' | 'summary';
|
|
35535
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
35536
35536
|
readonly structured: {
|
|
35537
35537
|
readonly tree: any;
|
|
35538
35538
|
};
|
|
@@ -36916,7 +36916,7 @@ export declare type ArticleQuery = {
|
|
|
36916
36916
|
readonly headline: string;
|
|
36917
36917
|
readonly backgroundColour?: 'paper' | 'wheat' | 'white' | 'black' | 'claret' | 'oxford' | 'slate' | 'crimson' | 'sky' | null;
|
|
36918
36918
|
readonly intro?: {
|
|
36919
|
-
readonly source: 'standfirst' | 'summary';
|
|
36919
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
36920
36920
|
readonly structured: {
|
|
36921
36921
|
readonly tree: any;
|
|
36922
36922
|
};
|
|
@@ -36948,7 +36948,7 @@ export declare type ArticleQuery = {
|
|
|
36948
36948
|
readonly relativeUrl: string;
|
|
36949
36949
|
} | null;
|
|
36950
36950
|
readonly intro?: {
|
|
36951
|
-
readonly source: 'standfirst' | 'summary';
|
|
36951
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
36952
36952
|
readonly structured: {
|
|
36953
36953
|
readonly tree: any;
|
|
36954
36954
|
};
|
|
@@ -37144,7 +37144,7 @@ export declare type ArticleQuery = {
|
|
|
37144
37144
|
}>;
|
|
37145
37145
|
}>;
|
|
37146
37146
|
readonly intro?: {
|
|
37147
|
-
readonly source: 'standfirst' | 'summary';
|
|
37147
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
37148
37148
|
readonly structured: {
|
|
37149
37149
|
readonly tree: any;
|
|
37150
37150
|
};
|
|
@@ -37177,7 +37177,7 @@ export declare type ArticleQuery = {
|
|
|
37177
37177
|
readonly relativeUrl: string;
|
|
37178
37178
|
} | null;
|
|
37179
37179
|
readonly intro?: {
|
|
37180
|
-
readonly source: 'standfirst' | 'summary';
|
|
37180
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
37181
37181
|
readonly structured: {
|
|
37182
37182
|
readonly tree: any;
|
|
37183
37183
|
};
|
|
@@ -37369,7 +37369,7 @@ export declare type ArticleQuery = {
|
|
|
37369
37369
|
readonly id: string;
|
|
37370
37370
|
}>;
|
|
37371
37371
|
readonly intro?: {
|
|
37372
|
-
readonly source: 'standfirst' | 'summary';
|
|
37372
|
+
readonly source: 'standfirst' | 'summary' | 'bodyXML';
|
|
37373
37373
|
readonly structured: {
|
|
37374
37374
|
readonly tree: any;
|
|
37375
37375
|
};
|
|
@@ -38764,9 +38764,9 @@ export declare const StructuredContentFragmentDoc: import("graphql/language/ast"
|
|
|
38764
38764
|
export declare const DesignFragmentDoc: import("graphql/language/ast").DocumentNode;
|
|
38765
38765
|
export declare const ContentFragmentDoc: import("graphql/language/ast").DocumentNode;
|
|
38766
38766
|
export declare const ArticleDocument: import("graphql/language/ast").DocumentNode;
|
|
38767
|
-
export
|
|
38767
|
+
export type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string) => Promise<T>;
|
|
38768
38768
|
export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
38769
38769
|
Article(variables: ArticleQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<ArticleQuery>;
|
|
38770
38770
|
};
|
|
38771
|
-
export
|
|
38771
|
+
export type Sdk = ReturnType<typeof getSdk>;
|
|
38772
38772
|
export {};
|