@financial-times/cp-content-pipeline-client 0.6.26 → 0.6.28

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 CHANGED
@@ -204,6 +204,35 @@
204
204
  * devDependencies
205
205
  * @financial-times/cp-content-pipeline-schema bumped from ^0.7.22 to ^0.7.23
206
206
 
207
+ ## [0.6.28](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v0.6.27...cp-content-pipeline-client-v0.6.28) (2023-08-02)
208
+
209
+
210
+ ### Bug Fixes
211
+
212
+ * add missing data-* attributes ([a55b9ee](https://github.com/Financial-Times/cp-content-pipeline/commit/a55b9eea7a68dfba20dd2a26f72530b0c9f70b00))
213
+ * don't use entire graphql-request error message, it's got the stringified request in it ([75ffbc1](https://github.com/Financial-Times/cp-content-pipeline/commit/75ffbc1da5055bbb932d6072f13cdef735aa4b7a))
214
+
215
+
216
+ ### Dependencies
217
+
218
+ * The following workspace dependencies were updated
219
+ * devDependencies
220
+ * @financial-times/cp-content-pipeline-schema bumped from ^0.7.25 to ^0.7.26
221
+
222
+ ## [0.6.27](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v0.6.26...cp-content-pipeline-client-v0.6.27) (2023-08-02)
223
+
224
+
225
+ ### Bug Fixes
226
+
227
+ * restore the theme field on the Teaser type ([4f7960c](https://github.com/Financial-Times/cp-content-pipeline/commit/4f7960c559969647a3f2b014c9e4d10585101075))
228
+
229
+
230
+ ### Dependencies
231
+
232
+ * The following workspace dependencies were updated
233
+ * devDependencies
234
+ * @financial-times/cp-content-pipeline-schema bumped from ^0.7.24 to ^0.7.25
235
+
207
236
  ## [0.6.26](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v0.6.25...cp-content-pipeline-client-v0.6.26) (2023-08-01)
208
237
 
209
238
 
@@ -1 +1 @@
1
- export declare const version = "0.6.26";
1
+ export declare const version = "0.6.28";
@@ -2,5 +2,5 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
4
  // Generated by genversion.
5
- exports.version = '0.6.26';
5
+ exports.version = '0.6.28';
6
6
  //# sourceMappingURL=client-version.js.map
@@ -47,6 +47,10 @@ export type Scalars = {
47
47
  input: 'premium' | 'subscribed' | 'registered' | 'free';
48
48
  output: 'premium' | 'subscribed' | 'registered' | 'free';
49
49
  };
50
+ CanBeSyndicated: {
51
+ input: 'yes' | 'no' | 'verify';
52
+ output: 'yes' | 'no' | 'verify';
53
+ };
50
54
  ContentType: {
51
55
  input: 'Article' | 'Video' | 'Audio' | 'LiveBlogPackage' | 'LiveBlogPost' | 'ContentPackage' | 'Content' | 'MediaResource';
52
56
  output: 'Article' | 'Video' | 'Audio' | 'LiveBlogPackage' | 'LiveBlogPost' | 'ContentPackage' | 'Content' | 'MediaResource';
@@ -94,6 +98,7 @@ export type Article = Content & {
94
98
  readonly body?: Maybe<RichText>;
95
99
  readonly bodyXML?: Maybe<Scalars['String']['output']>;
96
100
  readonly byline?: Maybe<StructuredContent>;
101
+ readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
97
102
  readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
98
103
  readonly containedIn?: Maybe<Content>;
99
104
  readonly design?: Maybe<Design>;
@@ -120,6 +125,7 @@ export type Audio = Content & {
120
125
  readonly body?: Maybe<RichText>;
121
126
  readonly bodyXML?: Maybe<Scalars['String']['output']>;
122
127
  readonly byline?: Maybe<StructuredContent>;
128
+ readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
123
129
  readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
124
130
  readonly design?: Maybe<Design>;
125
131
  readonly firstPublishedDate: Scalars['String']['output'];
@@ -182,6 +188,7 @@ export type Content = {
182
188
  readonly body?: Maybe<RichText>;
183
189
  readonly bodyXML?: Maybe<Scalars['String']['output']>;
184
190
  readonly byline?: Maybe<StructuredContent>;
191
+ readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
185
192
  readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
186
193
  readonly design?: Maybe<Design>;
187
194
  readonly firstPublishedDate: Scalars['String']['output'];
@@ -207,6 +214,7 @@ export type ContentPackage = Content & {
207
214
  readonly body?: Maybe<RichText>;
208
215
  readonly bodyXML?: Maybe<Scalars['String']['output']>;
209
216
  readonly byline?: Maybe<StructuredContent>;
217
+ readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
210
218
  readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
211
219
  readonly contains?: Maybe<ReadonlyArray<Maybe<Teaser>>>;
212
220
  readonly design?: Maybe<Design>;
@@ -474,6 +482,7 @@ export type LiveBlogPackage = Content & {
474
482
  readonly body?: Maybe<RichText>;
475
483
  readonly bodyXML?: Maybe<Scalars['String']['output']>;
476
484
  readonly byline?: Maybe<StructuredContent>;
485
+ readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
477
486
  readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
478
487
  readonly design?: Maybe<Design>;
479
488
  readonly firstPublishedDate: Scalars['String']['output'];
@@ -501,6 +510,7 @@ export type LiveBlogPost = Content & {
501
510
  readonly body?: Maybe<RichText>;
502
511
  readonly bodyXML?: Maybe<Scalars['String']['output']>;
503
512
  readonly byline?: Maybe<StructuredContent>;
513
+ readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
504
514
  readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
505
515
  readonly design?: Maybe<Design>;
506
516
  readonly firstPublishedDate: Scalars['String']['output'];
@@ -673,6 +683,7 @@ export type Teaser = {
673
683
  readonly metaSuffixText?: Maybe<Scalars['String']['output']>;
674
684
  readonly publishedDate?: Maybe<Scalars['String']['output']>;
675
685
  readonly standfirst?: Maybe<Scalars['String']['output']>;
686
+ readonly theme?: Maybe<Scalars['String']['output']>;
676
687
  readonly title?: Maybe<Scalars['String']['output']>;
677
688
  readonly type?: Maybe<Scalars['String']['output']>;
678
689
  readonly url: Scalars['String']['output'];
@@ -723,6 +734,7 @@ export type Video = Content & {
723
734
  readonly body?: Maybe<RichText>;
724
735
  readonly bodyXML?: Maybe<Scalars['String']['output']>;
725
736
  readonly byline?: Maybe<StructuredContent>;
737
+ readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
726
738
  readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
727
739
  readonly design?: Maybe<Design>;
728
740
  readonly firstPublishedDate: Scalars['String']['output'];
@@ -10351,6 +10363,7 @@ type Content_Article_Fragment = {
10351
10363
  readonly firstPublishedDate: string;
10352
10364
  readonly standfirst?: string | null;
10353
10365
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
10366
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
10354
10367
  readonly commentsEnabled?: boolean | null;
10355
10368
  readonly topper?: {
10356
10369
  readonly __typename: 'BasicTopper';
@@ -14098,6 +14111,7 @@ type Content_Audio_Fragment = {
14098
14111
  readonly firstPublishedDate: string;
14099
14112
  readonly standfirst?: string | null;
14100
14113
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
14114
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
14101
14115
  readonly commentsEnabled?: boolean | null;
14102
14116
  readonly topper?: {
14103
14117
  readonly __typename: 'BasicTopper';
@@ -17845,6 +17859,7 @@ type Content_ContentPackage_Fragment = {
17845
17859
  readonly firstPublishedDate: string;
17846
17860
  readonly standfirst?: string | null;
17847
17861
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
17862
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
17848
17863
  readonly commentsEnabled?: boolean | null;
17849
17864
  readonly topper?: {
17850
17865
  readonly __typename: 'BasicTopper';
@@ -21592,6 +21607,7 @@ type Content_LiveBlogPackage_Fragment = {
21592
21607
  readonly firstPublishedDate: string;
21593
21608
  readonly standfirst?: string | null;
21594
21609
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
21610
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
21595
21611
  readonly commentsEnabled?: boolean | null;
21596
21612
  readonly topper?: {
21597
21613
  readonly __typename: 'BasicTopper';
@@ -25339,6 +25355,7 @@ type Content_LiveBlogPost_Fragment = {
25339
25355
  readonly firstPublishedDate: string;
25340
25356
  readonly standfirst?: string | null;
25341
25357
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
25358
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
25342
25359
  readonly commentsEnabled?: boolean | null;
25343
25360
  readonly topper?: {
25344
25361
  readonly __typename: 'BasicTopper';
@@ -29086,6 +29103,7 @@ type Content_Video_Fragment = {
29086
29103
  readonly firstPublishedDate: string;
29087
29104
  readonly standfirst?: string | null;
29088
29105
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
29106
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
29089
29107
  readonly commentsEnabled?: boolean | null;
29090
29108
  readonly topper?: {
29091
29109
  readonly __typename: 'BasicTopper';
@@ -32835,6 +32853,7 @@ type PackageContainer_Article_Fragment = {
32835
32853
  readonly firstPublishedDate: string;
32836
32854
  readonly standfirst?: string | null;
32837
32855
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
32856
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
32838
32857
  readonly commentsEnabled?: boolean | null;
32839
32858
  readonly topper?: {
32840
32859
  readonly __typename: 'BasicTopper';
@@ -36643,6 +36662,7 @@ type PackageContainer_Audio_Fragment = {
36643
36662
  readonly firstPublishedDate: string;
36644
36663
  readonly standfirst?: string | null;
36645
36664
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
36665
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
36646
36666
  readonly commentsEnabled?: boolean | null;
36647
36667
  readonly topper?: {
36648
36668
  readonly __typename: 'BasicTopper';
@@ -40451,6 +40471,7 @@ type PackageContainer_ContentPackage_Fragment = {
40451
40471
  readonly firstPublishedDate: string;
40452
40472
  readonly standfirst?: string | null;
40453
40473
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
40474
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
40454
40475
  readonly commentsEnabled?: boolean | null;
40455
40476
  readonly contains?: ReadonlyArray<{
40456
40477
  readonly standfirst?: string | null;
@@ -44350,6 +44371,7 @@ type PackageContainer_LiveBlogPackage_Fragment = {
44350
44371
  readonly firstPublishedDate: string;
44351
44372
  readonly standfirst?: string | null;
44352
44373
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
44374
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
44353
44375
  readonly commentsEnabled?: boolean | null;
44354
44376
  readonly topper?: {
44355
44377
  readonly __typename: 'BasicTopper';
@@ -48158,6 +48180,7 @@ type PackageContainer_LiveBlogPost_Fragment = {
48158
48180
  readonly firstPublishedDate: string;
48159
48181
  readonly standfirst?: string | null;
48160
48182
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
48183
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
48161
48184
  readonly commentsEnabled?: boolean | null;
48162
48185
  readonly topper?: {
48163
48186
  readonly __typename: 'BasicTopper';
@@ -51966,6 +51989,7 @@ type PackageContainer_Video_Fragment = {
51966
51989
  readonly firstPublishedDate: string;
51967
51990
  readonly standfirst?: string | null;
51968
51991
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
51992
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
51969
51993
  readonly commentsEnabled?: boolean | null;
51970
51994
  readonly topper?: {
51971
51995
  readonly __typename: 'BasicTopper';
@@ -55775,6 +55799,7 @@ type ArticleFields_Article_Fragment = {
55775
55799
  readonly firstPublishedDate: string;
55776
55800
  readonly standfirst?: string | null;
55777
55801
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
55802
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
55778
55803
  readonly commentsEnabled?: boolean | null;
55779
55804
  readonly containedIn?: {
55780
55805
  readonly __typename: 'Article';
@@ -55785,6 +55810,7 @@ type ArticleFields_Article_Fragment = {
55785
55810
  readonly firstPublishedDate: string;
55786
55811
  readonly standfirst?: string | null;
55787
55812
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
55813
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
55788
55814
  readonly commentsEnabled?: boolean | null;
55789
55815
  readonly topper?: {
55790
55816
  readonly __typename: 'BasicTopper';
@@ -59592,6 +59618,7 @@ type ArticleFields_Article_Fragment = {
59592
59618
  readonly firstPublishedDate: string;
59593
59619
  readonly standfirst?: string | null;
59594
59620
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
59621
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
59595
59622
  readonly commentsEnabled?: boolean | null;
59596
59623
  readonly topper?: {
59597
59624
  readonly __typename: 'BasicTopper';
@@ -63399,6 +63426,7 @@ type ArticleFields_Article_Fragment = {
63399
63426
  readonly firstPublishedDate: string;
63400
63427
  readonly standfirst?: string | null;
63401
63428
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
63429
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
63402
63430
  readonly commentsEnabled?: boolean | null;
63403
63431
  readonly contains?: ReadonlyArray<{
63404
63432
  readonly standfirst?: string | null;
@@ -67297,6 +67325,7 @@ type ArticleFields_Article_Fragment = {
67297
67325
  readonly firstPublishedDate: string;
67298
67326
  readonly standfirst?: string | null;
67299
67327
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
67328
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
67300
67329
  readonly commentsEnabled?: boolean | null;
67301
67330
  readonly topper?: {
67302
67331
  readonly __typename: 'BasicTopper';
@@ -71104,6 +71133,7 @@ type ArticleFields_Article_Fragment = {
71104
71133
  readonly firstPublishedDate: string;
71105
71134
  readonly standfirst?: string | null;
71106
71135
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
71136
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
71107
71137
  readonly commentsEnabled?: boolean | null;
71108
71138
  readonly topper?: {
71109
71139
  readonly __typename: 'BasicTopper';
@@ -74911,6 +74941,7 @@ type ArticleFields_Article_Fragment = {
74911
74941
  readonly firstPublishedDate: string;
74912
74942
  readonly standfirst?: string | null;
74913
74943
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
74944
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
74914
74945
  readonly commentsEnabled?: boolean | null;
74915
74946
  readonly topper?: {
74916
74947
  readonly __typename: 'BasicTopper';
@@ -82457,6 +82488,7 @@ type ArticleFields_Audio_Fragment = {
82457
82488
  readonly firstPublishedDate: string;
82458
82489
  readonly standfirst?: string | null;
82459
82490
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
82491
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
82460
82492
  readonly commentsEnabled?: boolean | null;
82461
82493
  readonly media?: ReadonlyArray<{
82462
82494
  readonly url?: string | null;
@@ -86209,6 +86241,7 @@ type ArticleFields_ContentPackage_Fragment = {
86209
86241
  readonly firstPublishedDate: string;
86210
86242
  readonly standfirst?: string | null;
86211
86243
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
86244
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
86212
86245
  readonly commentsEnabled?: boolean | null;
86213
86246
  readonly contains?: ReadonlyArray<{
86214
86247
  readonly standfirst?: string | null;
@@ -90045,6 +90078,7 @@ type ArticleFields_LiveBlogPackage_Fragment = {
90045
90078
  readonly firstPublishedDate: string;
90046
90079
  readonly standfirst?: string | null;
90047
90080
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
90081
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
90048
90082
  readonly commentsEnabled?: boolean | null;
90049
90083
  readonly liveBlogPosts?: ReadonlyArray<{
90050
90084
  readonly __typename: 'Article';
@@ -90055,6 +90089,7 @@ type ArticleFields_LiveBlogPackage_Fragment = {
90055
90089
  readonly firstPublishedDate: string;
90056
90090
  readonly standfirst?: string | null;
90057
90091
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
90092
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
90058
90093
  readonly commentsEnabled?: boolean | null;
90059
90094
  readonly topper?: {
90060
90095
  readonly __typename: 'BasicTopper';
@@ -93802,6 +93837,7 @@ type ArticleFields_LiveBlogPackage_Fragment = {
93802
93837
  readonly firstPublishedDate: string;
93803
93838
  readonly standfirst?: string | null;
93804
93839
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
93840
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
93805
93841
  readonly commentsEnabled?: boolean | null;
93806
93842
  readonly topper?: {
93807
93843
  readonly __typename: 'BasicTopper';
@@ -97549,6 +97585,7 @@ type ArticleFields_LiveBlogPackage_Fragment = {
97549
97585
  readonly firstPublishedDate: string;
97550
97586
  readonly standfirst?: string | null;
97551
97587
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
97588
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
97552
97589
  readonly commentsEnabled?: boolean | null;
97553
97590
  readonly topper?: {
97554
97591
  readonly __typename: 'BasicTopper';
@@ -101296,6 +101333,7 @@ type ArticleFields_LiveBlogPackage_Fragment = {
101296
101333
  readonly firstPublishedDate: string;
101297
101334
  readonly standfirst?: string | null;
101298
101335
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
101336
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
101299
101337
  readonly commentsEnabled?: boolean | null;
101300
101338
  readonly topper?: {
101301
101339
  readonly __typename: 'BasicTopper';
@@ -105043,6 +105081,7 @@ type ArticleFields_LiveBlogPackage_Fragment = {
105043
105081
  readonly firstPublishedDate: string;
105044
105082
  readonly standfirst?: string | null;
105045
105083
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
105084
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
105046
105085
  readonly commentsEnabled?: boolean | null;
105047
105086
  readonly topper?: {
105048
105087
  readonly __typename: 'BasicTopper';
@@ -108790,6 +108829,7 @@ type ArticleFields_LiveBlogPackage_Fragment = {
108790
108829
  readonly firstPublishedDate: string;
108791
108830
  readonly standfirst?: string | null;
108792
108831
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
108832
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
108793
108833
  readonly commentsEnabled?: boolean | null;
108794
108834
  readonly topper?: {
108795
108835
  readonly __typename: 'BasicTopper';
@@ -116276,6 +116316,7 @@ type ArticleFields_LiveBlogPost_Fragment = {
116276
116316
  readonly firstPublishedDate: string;
116277
116317
  readonly standfirst?: string | null;
116278
116318
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
116319
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
116279
116320
  readonly commentsEnabled?: boolean | null;
116280
116321
  readonly topper?: {
116281
116322
  readonly __typename: 'BasicTopper';
@@ -120024,6 +120065,7 @@ type ArticleFields_Video_Fragment = {
120024
120065
  readonly firstPublishedDate: string;
120025
120066
  readonly standfirst?: string | null;
120026
120067
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
120068
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
120027
120069
  readonly commentsEnabled?: boolean | null;
120028
120070
  readonly topper?: {
120029
120071
  readonly __typename: 'BasicTopper';
@@ -123778,6 +123820,7 @@ export type ArticleQuery = {
123778
123820
  readonly firstPublishedDate: string;
123779
123821
  readonly standfirst?: string | null;
123780
123822
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
123823
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
123781
123824
  readonly commentsEnabled?: boolean | null;
123782
123825
  readonly containedIn?: {
123783
123826
  readonly __typename: 'Article';
@@ -123788,6 +123831,7 @@ export type ArticleQuery = {
123788
123831
  readonly firstPublishedDate: string;
123789
123832
  readonly standfirst?: string | null;
123790
123833
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
123834
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
123791
123835
  readonly commentsEnabled?: boolean | null;
123792
123836
  readonly topper?: {
123793
123837
  readonly __typename: 'BasicTopper';
@@ -127595,6 +127639,7 @@ export type ArticleQuery = {
127595
127639
  readonly firstPublishedDate: string;
127596
127640
  readonly standfirst?: string | null;
127597
127641
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
127642
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
127598
127643
  readonly commentsEnabled?: boolean | null;
127599
127644
  readonly topper?: {
127600
127645
  readonly __typename: 'BasicTopper';
@@ -131402,6 +131447,7 @@ export type ArticleQuery = {
131402
131447
  readonly firstPublishedDate: string;
131403
131448
  readonly standfirst?: string | null;
131404
131449
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
131450
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
131405
131451
  readonly commentsEnabled?: boolean | null;
131406
131452
  readonly contains?: ReadonlyArray<{
131407
131453
  readonly standfirst?: string | null;
@@ -135300,6 +135346,7 @@ export type ArticleQuery = {
135300
135346
  readonly firstPublishedDate: string;
135301
135347
  readonly standfirst?: string | null;
135302
135348
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
135349
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
135303
135350
  readonly commentsEnabled?: boolean | null;
135304
135351
  readonly topper?: {
135305
135352
  readonly __typename: 'BasicTopper';
@@ -139107,6 +139154,7 @@ export type ArticleQuery = {
139107
139154
  readonly firstPublishedDate: string;
139108
139155
  readonly standfirst?: string | null;
139109
139156
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
139157
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
139110
139158
  readonly commentsEnabled?: boolean | null;
139111
139159
  readonly topper?: {
139112
139160
  readonly __typename: 'BasicTopper';
@@ -142914,6 +142962,7 @@ export type ArticleQuery = {
142914
142962
  readonly firstPublishedDate: string;
142915
142963
  readonly standfirst?: string | null;
142916
142964
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
142965
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
142917
142966
  readonly commentsEnabled?: boolean | null;
142918
142967
  readonly topper?: {
142919
142968
  readonly __typename: 'BasicTopper';
@@ -150459,6 +150508,7 @@ export type ArticleQuery = {
150459
150508
  readonly firstPublishedDate: string;
150460
150509
  readonly standfirst?: string | null;
150461
150510
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
150511
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
150462
150512
  readonly commentsEnabled?: boolean | null;
150463
150513
  readonly media?: ReadonlyArray<{
150464
150514
  readonly url?: string | null;
@@ -154210,6 +154260,7 @@ export type ArticleQuery = {
154210
154260
  readonly firstPublishedDate: string;
154211
154261
  readonly standfirst?: string | null;
154212
154262
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
154263
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
154213
154264
  readonly commentsEnabled?: boolean | null;
154214
154265
  readonly contains?: ReadonlyArray<{
154215
154266
  readonly standfirst?: string | null;
@@ -158045,6 +158096,7 @@ export type ArticleQuery = {
158045
158096
  readonly firstPublishedDate: string;
158046
158097
  readonly standfirst?: string | null;
158047
158098
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
158099
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
158048
158100
  readonly commentsEnabled?: boolean | null;
158049
158101
  readonly liveBlogPosts?: ReadonlyArray<{
158050
158102
  readonly __typename: 'Article';
@@ -158055,6 +158107,7 @@ export type ArticleQuery = {
158055
158107
  readonly firstPublishedDate: string;
158056
158108
  readonly standfirst?: string | null;
158057
158109
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
158110
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
158058
158111
  readonly commentsEnabled?: boolean | null;
158059
158112
  readonly topper?: {
158060
158113
  readonly __typename: 'BasicTopper';
@@ -161802,6 +161855,7 @@ export type ArticleQuery = {
161802
161855
  readonly firstPublishedDate: string;
161803
161856
  readonly standfirst?: string | null;
161804
161857
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
161858
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
161805
161859
  readonly commentsEnabled?: boolean | null;
161806
161860
  readonly topper?: {
161807
161861
  readonly __typename: 'BasicTopper';
@@ -165549,6 +165603,7 @@ export type ArticleQuery = {
165549
165603
  readonly firstPublishedDate: string;
165550
165604
  readonly standfirst?: string | null;
165551
165605
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
165606
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
165552
165607
  readonly commentsEnabled?: boolean | null;
165553
165608
  readonly topper?: {
165554
165609
  readonly __typename: 'BasicTopper';
@@ -169296,6 +169351,7 @@ export type ArticleQuery = {
169296
169351
  readonly firstPublishedDate: string;
169297
169352
  readonly standfirst?: string | null;
169298
169353
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
169354
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
169299
169355
  readonly commentsEnabled?: boolean | null;
169300
169356
  readonly topper?: {
169301
169357
  readonly __typename: 'BasicTopper';
@@ -173043,6 +173099,7 @@ export type ArticleQuery = {
173043
173099
  readonly firstPublishedDate: string;
173044
173100
  readonly standfirst?: string | null;
173045
173101
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
173102
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
173046
173103
  readonly commentsEnabled?: boolean | null;
173047
173104
  readonly topper?: {
173048
173105
  readonly __typename: 'BasicTopper';
@@ -176790,6 +176847,7 @@ export type ArticleQuery = {
176790
176847
  readonly firstPublishedDate: string;
176791
176848
  readonly standfirst?: string | null;
176792
176849
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
176850
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
176793
176851
  readonly commentsEnabled?: boolean | null;
176794
176852
  readonly topper?: {
176795
176853
  readonly __typename: 'BasicTopper';
@@ -184275,6 +184333,7 @@ export type ArticleQuery = {
184275
184333
  readonly firstPublishedDate: string;
184276
184334
  readonly standfirst?: string | null;
184277
184335
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
184336
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
184278
184337
  readonly commentsEnabled?: boolean | null;
184279
184338
  readonly topper?: {
184280
184339
  readonly __typename: 'BasicTopper';
@@ -188022,6 +188081,7 @@ export type ArticleQuery = {
188022
188081
  readonly firstPublishedDate: string;
188023
188082
  readonly standfirst?: string | null;
188024
188083
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
188084
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
188025
188085
  readonly commentsEnabled?: boolean | null;
188026
188086
  readonly topper?: {
188027
188087
  readonly __typename: 'BasicTopper';
@@ -191776,6 +191836,7 @@ export type ArticleFromJsonQuery = {
191776
191836
  readonly firstPublishedDate: string;
191777
191837
  readonly standfirst?: string | null;
191778
191838
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
191839
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
191779
191840
  readonly commentsEnabled?: boolean | null;
191780
191841
  readonly containedIn?: {
191781
191842
  readonly __typename: 'Article';
@@ -191786,6 +191847,7 @@ export type ArticleFromJsonQuery = {
191786
191847
  readonly firstPublishedDate: string;
191787
191848
  readonly standfirst?: string | null;
191788
191849
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
191850
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
191789
191851
  readonly commentsEnabled?: boolean | null;
191790
191852
  readonly topper?: {
191791
191853
  readonly __typename: 'BasicTopper';
@@ -195593,6 +195655,7 @@ export type ArticleFromJsonQuery = {
195593
195655
  readonly firstPublishedDate: string;
195594
195656
  readonly standfirst?: string | null;
195595
195657
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
195658
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
195596
195659
  readonly commentsEnabled?: boolean | null;
195597
195660
  readonly topper?: {
195598
195661
  readonly __typename: 'BasicTopper';
@@ -199400,6 +199463,7 @@ export type ArticleFromJsonQuery = {
199400
199463
  readonly firstPublishedDate: string;
199401
199464
  readonly standfirst?: string | null;
199402
199465
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
199466
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
199403
199467
  readonly commentsEnabled?: boolean | null;
199404
199468
  readonly contains?: ReadonlyArray<{
199405
199469
  readonly standfirst?: string | null;
@@ -203298,6 +203362,7 @@ export type ArticleFromJsonQuery = {
203298
203362
  readonly firstPublishedDate: string;
203299
203363
  readonly standfirst?: string | null;
203300
203364
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
203365
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
203301
203366
  readonly commentsEnabled?: boolean | null;
203302
203367
  readonly topper?: {
203303
203368
  readonly __typename: 'BasicTopper';
@@ -207105,6 +207170,7 @@ export type ArticleFromJsonQuery = {
207105
207170
  readonly firstPublishedDate: string;
207106
207171
  readonly standfirst?: string | null;
207107
207172
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
207173
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
207108
207174
  readonly commentsEnabled?: boolean | null;
207109
207175
  readonly topper?: {
207110
207176
  readonly __typename: 'BasicTopper';
@@ -210912,6 +210978,7 @@ export type ArticleFromJsonQuery = {
210912
210978
  readonly firstPublishedDate: string;
210913
210979
  readonly standfirst?: string | null;
210914
210980
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
210981
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
210915
210982
  readonly commentsEnabled?: boolean | null;
210916
210983
  readonly topper?: {
210917
210984
  readonly __typename: 'BasicTopper';
@@ -218457,6 +218524,7 @@ export type ArticleFromJsonQuery = {
218457
218524
  readonly firstPublishedDate: string;
218458
218525
  readonly standfirst?: string | null;
218459
218526
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
218527
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
218460
218528
  readonly commentsEnabled?: boolean | null;
218461
218529
  readonly media?: ReadonlyArray<{
218462
218530
  readonly url?: string | null;
@@ -222208,6 +222276,7 @@ export type ArticleFromJsonQuery = {
222208
222276
  readonly firstPublishedDate: string;
222209
222277
  readonly standfirst?: string | null;
222210
222278
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
222279
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
222211
222280
  readonly commentsEnabled?: boolean | null;
222212
222281
  readonly contains?: ReadonlyArray<{
222213
222282
  readonly standfirst?: string | null;
@@ -226043,6 +226112,7 @@ export type ArticleFromJsonQuery = {
226043
226112
  readonly firstPublishedDate: string;
226044
226113
  readonly standfirst?: string | null;
226045
226114
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
226115
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
226046
226116
  readonly commentsEnabled?: boolean | null;
226047
226117
  readonly liveBlogPosts?: ReadonlyArray<{
226048
226118
  readonly __typename: 'Article';
@@ -226053,6 +226123,7 @@ export type ArticleFromJsonQuery = {
226053
226123
  readonly firstPublishedDate: string;
226054
226124
  readonly standfirst?: string | null;
226055
226125
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
226126
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
226056
226127
  readonly commentsEnabled?: boolean | null;
226057
226128
  readonly topper?: {
226058
226129
  readonly __typename: 'BasicTopper';
@@ -229800,6 +229871,7 @@ export type ArticleFromJsonQuery = {
229800
229871
  readonly firstPublishedDate: string;
229801
229872
  readonly standfirst?: string | null;
229802
229873
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
229874
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
229803
229875
  readonly commentsEnabled?: boolean | null;
229804
229876
  readonly topper?: {
229805
229877
  readonly __typename: 'BasicTopper';
@@ -233547,6 +233619,7 @@ export type ArticleFromJsonQuery = {
233547
233619
  readonly firstPublishedDate: string;
233548
233620
  readonly standfirst?: string | null;
233549
233621
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
233622
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
233550
233623
  readonly commentsEnabled?: boolean | null;
233551
233624
  readonly topper?: {
233552
233625
  readonly __typename: 'BasicTopper';
@@ -237294,6 +237367,7 @@ export type ArticleFromJsonQuery = {
237294
237367
  readonly firstPublishedDate: string;
237295
237368
  readonly standfirst?: string | null;
237296
237369
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
237370
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
237297
237371
  readonly commentsEnabled?: boolean | null;
237298
237372
  readonly topper?: {
237299
237373
  readonly __typename: 'BasicTopper';
@@ -241041,6 +241115,7 @@ export type ArticleFromJsonQuery = {
241041
241115
  readonly firstPublishedDate: string;
241042
241116
  readonly standfirst?: string | null;
241043
241117
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
241118
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
241044
241119
  readonly commentsEnabled?: boolean | null;
241045
241120
  readonly topper?: {
241046
241121
  readonly __typename: 'BasicTopper';
@@ -244788,6 +244863,7 @@ export type ArticleFromJsonQuery = {
244788
244863
  readonly firstPublishedDate: string;
244789
244864
  readonly standfirst?: string | null;
244790
244865
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
244866
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
244791
244867
  readonly commentsEnabled?: boolean | null;
244792
244868
  readonly topper?: {
244793
244869
  readonly __typename: 'BasicTopper';
@@ -252273,6 +252349,7 @@ export type ArticleFromJsonQuery = {
252273
252349
  readonly firstPublishedDate: string;
252274
252350
  readonly standfirst?: string | null;
252275
252351
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
252352
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
252276
252353
  readonly commentsEnabled?: boolean | null;
252277
252354
  readonly topper?: {
252278
252355
  readonly __typename: 'BasicTopper';
@@ -256020,6 +256097,7 @@ export type ArticleFromJsonQuery = {
256020
256097
  readonly firstPublishedDate: string;
256021
256098
  readonly standfirst?: string | null;
256022
256099
  readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null;
256100
+ readonly canBeSyndicated?: 'yes' | 'no' | 'verify' | null;
256023
256101
  readonly commentsEnabled?: boolean | null;
256024
256102
  readonly topper?: {
256025
256103
  readonly __typename: 'BasicTopper';
@@ -430,6 +430,7 @@ exports.ContentFragmentDoc = (0, graphql_tag_1.default) `
430
430
  ...Concept
431
431
  }
432
432
  accessLevel
433
+ canBeSyndicated
433
434
  commentsEnabled
434
435
  design {
435
436
  ...Design