@financial-times/cp-content-pipeline-client 3.0.2 → 3.1.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/lib/client-version.d.ts +1 -1
- package/lib/client-version.js +1 -1
- package/lib/generated/index.d.ts +75 -0
- package/lib/generated/index.js +5 -1
- package/lib/generated/index.js.map +1 -1
- package/lib/schema-version.d.ts +1 -1
- package/lib/schema-version.js +1 -1
- package/package.json +2 -2
- package/src/client-version.ts +1 -1
- package/src/generated/index.ts +18 -6
- package/src/schema-version.ts +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -366,6 +366,20 @@
|
|
|
366
366
|
* devDependencies
|
|
367
367
|
* @financial-times/cp-content-pipeline-schema bumped from ^2.0.1 to ^2.0.2
|
|
368
368
|
|
|
369
|
+
## [3.0.3](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v3.0.2...cp-content-pipeline-client-v3.0.3) (2024-02-14)
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
### Bug Fixes
|
|
373
|
+
|
|
374
|
+
* query for duration in article.graphql ([356fc44](https://github.com/Financial-Times/cp-content-pipeline/commit/356fc4464b893504ab43a5b895e61e82f77d7162))
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
### Dependencies
|
|
378
|
+
|
|
379
|
+
* The following workspace dependencies were updated
|
|
380
|
+
* devDependencies
|
|
381
|
+
* @financial-times/cp-content-pipeline-schema bumped from ^2.0.2 to ^2.0.3
|
|
382
|
+
|
|
369
383
|
## [3.0.0](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v2.6.6...cp-content-pipeline-client-v3.0.0) (2024-01-29)
|
|
370
384
|
|
|
371
385
|
|
package/lib/client-version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "3.0.
|
|
1
|
+
export declare const version = "3.0.3";
|
package/lib/client-version.js
CHANGED
package/lib/generated/index.d.ts
CHANGED
|
@@ -113,6 +113,7 @@ export type Article = Content & {
|
|
|
113
113
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
114
114
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
115
115
|
readonly id: Scalars['ID']['output'];
|
|
116
|
+
readonly indicators?: Maybe<Indicators>;
|
|
116
117
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
117
118
|
readonly mainImage?: Maybe<Image>;
|
|
118
119
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
@@ -145,6 +146,7 @@ export type Audio = Content & {
|
|
|
145
146
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
146
147
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
147
148
|
readonly id: Scalars['ID']['output'];
|
|
149
|
+
readonly indicators?: Maybe<Indicators>;
|
|
148
150
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
149
151
|
readonly mainImage?: Maybe<Image>;
|
|
150
152
|
readonly media?: Maybe<ReadonlyArray<Maybe<Media>>>;
|
|
@@ -255,6 +257,7 @@ export type Content = {
|
|
|
255
257
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
256
258
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
257
259
|
readonly id: Scalars['ID']['output'];
|
|
260
|
+
readonly indicators?: Maybe<Indicators>;
|
|
258
261
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
259
262
|
readonly mainImage?: Maybe<Image>;
|
|
260
263
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
@@ -289,6 +292,7 @@ export type ContentPackage = Content & {
|
|
|
289
292
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
290
293
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
291
294
|
readonly id: Scalars['ID']['output'];
|
|
295
|
+
readonly indicators?: Maybe<Indicators>;
|
|
292
296
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
293
297
|
readonly mainImage?: Maybe<Image>;
|
|
294
298
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
@@ -566,6 +570,7 @@ export type LiveBlogPackage = Content & {
|
|
|
566
570
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
567
571
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
568
572
|
readonly id: Scalars['ID']['output'];
|
|
573
|
+
readonly indicators?: Maybe<Indicators>;
|
|
569
574
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
570
575
|
readonly liveBlogPosts?: Maybe<ReadonlyArray<Maybe<Content>>>;
|
|
571
576
|
readonly mainImage?: Maybe<Image>;
|
|
@@ -605,6 +610,7 @@ export type LiveBlogPost = Content & {
|
|
|
605
610
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
606
611
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
607
612
|
readonly id: Scalars['ID']['output'];
|
|
613
|
+
readonly indicators?: Maybe<Indicators>;
|
|
608
614
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
609
615
|
readonly mainImage?: Maybe<Image>;
|
|
610
616
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
@@ -709,6 +715,7 @@ export type Placeholder = Content & {
|
|
|
709
715
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
710
716
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
711
717
|
readonly id: Scalars['ID']['output'];
|
|
718
|
+
readonly indicators?: Maybe<Indicators>;
|
|
712
719
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
713
720
|
readonly mainImage?: Maybe<Image>;
|
|
714
721
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
@@ -878,6 +885,7 @@ export type Video = Content & {
|
|
|
878
885
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
879
886
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
880
887
|
readonly id: Scalars['ID']['output'];
|
|
888
|
+
readonly indicators?: Maybe<Indicators>;
|
|
881
889
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
882
890
|
readonly mainImage?: Maybe<Image>;
|
|
883
891
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
@@ -5786,6 +5794,7 @@ export type DesignFragment = {
|
|
|
5786
5794
|
};
|
|
5787
5795
|
export type MediaFragment = {
|
|
5788
5796
|
readonly url?: string | null;
|
|
5797
|
+
readonly duration?: number | null;
|
|
5789
5798
|
readonly mediaType?: string | null;
|
|
5790
5799
|
};
|
|
5791
5800
|
type PinnedPost_Article_Fragment = {
|
|
@@ -116142,6 +116151,7 @@ type ArticleFields_Audio_Fragment = {
|
|
|
116142
116151
|
readonly editorialDesk?: string | null;
|
|
116143
116152
|
readonly media?: ReadonlyArray<{
|
|
116144
116153
|
readonly url?: string | null;
|
|
116154
|
+
readonly duration?: number | null;
|
|
116145
116155
|
readonly mediaType?: string | null;
|
|
116146
116156
|
} | null> | null;
|
|
116147
116157
|
readonly topper?: {
|
|
@@ -124133,6 +124143,9 @@ type ArticleFields_LiveBlogPackage_Fragment = {
|
|
|
124133
124143
|
readonly originatingParty?: string | null;
|
|
124134
124144
|
readonly commentsEnabled?: boolean | null;
|
|
124135
124145
|
readonly editorialDesk?: string | null;
|
|
124146
|
+
readonly indicators?: {
|
|
124147
|
+
readonly isOpinion?: boolean | null;
|
|
124148
|
+
} | null;
|
|
124136
124149
|
readonly topper?: {
|
|
124137
124150
|
readonly __typename: 'BasicTopper';
|
|
124138
124151
|
readonly headline: string;
|
|
@@ -128075,6 +128088,9 @@ type ArticleFields_LiveBlogPackage_Fragment = {
|
|
|
128075
128088
|
readonly originatingParty?: string | null;
|
|
128076
128089
|
readonly commentsEnabled?: boolean | null;
|
|
128077
128090
|
readonly editorialDesk?: string | null;
|
|
128091
|
+
readonly indicators?: {
|
|
128092
|
+
readonly isOpinion?: boolean | null;
|
|
128093
|
+
} | null;
|
|
128078
128094
|
readonly topper?: {
|
|
128079
128095
|
readonly __typename: 'BasicTopper';
|
|
128080
128096
|
readonly headline: string;
|
|
@@ -132017,6 +132033,9 @@ type ArticleFields_LiveBlogPackage_Fragment = {
|
|
|
132017
132033
|
readonly originatingParty?: string | null;
|
|
132018
132034
|
readonly commentsEnabled?: boolean | null;
|
|
132019
132035
|
readonly editorialDesk?: string | null;
|
|
132036
|
+
readonly indicators?: {
|
|
132037
|
+
readonly isOpinion?: boolean | null;
|
|
132038
|
+
} | null;
|
|
132020
132039
|
readonly topper?: {
|
|
132021
132040
|
readonly __typename: 'BasicTopper';
|
|
132022
132041
|
readonly headline: string;
|
|
@@ -135959,6 +135978,9 @@ type ArticleFields_LiveBlogPackage_Fragment = {
|
|
|
135959
135978
|
readonly originatingParty?: string | null;
|
|
135960
135979
|
readonly commentsEnabled?: boolean | null;
|
|
135961
135980
|
readonly editorialDesk?: string | null;
|
|
135981
|
+
readonly indicators?: {
|
|
135982
|
+
readonly isOpinion?: boolean | null;
|
|
135983
|
+
} | null;
|
|
135962
135984
|
readonly topper?: {
|
|
135963
135985
|
readonly __typename: 'BasicTopper';
|
|
135964
135986
|
readonly headline: string;
|
|
@@ -139901,6 +139923,9 @@ type ArticleFields_LiveBlogPackage_Fragment = {
|
|
|
139901
139923
|
readonly originatingParty?: string | null;
|
|
139902
139924
|
readonly commentsEnabled?: boolean | null;
|
|
139903
139925
|
readonly editorialDesk?: string | null;
|
|
139926
|
+
readonly indicators?: {
|
|
139927
|
+
readonly isOpinion?: boolean | null;
|
|
139928
|
+
} | null;
|
|
139904
139929
|
readonly topper?: {
|
|
139905
139930
|
readonly __typename: 'BasicTopper';
|
|
139906
139931
|
readonly headline: string;
|
|
@@ -143843,6 +143868,9 @@ type ArticleFields_LiveBlogPackage_Fragment = {
|
|
|
143843
143868
|
readonly originatingParty?: string | null;
|
|
143844
143869
|
readonly commentsEnabled?: boolean | null;
|
|
143845
143870
|
readonly editorialDesk?: string | null;
|
|
143871
|
+
readonly indicators?: {
|
|
143872
|
+
readonly isOpinion?: boolean | null;
|
|
143873
|
+
} | null;
|
|
143846
143874
|
readonly topper?: {
|
|
143847
143875
|
readonly __typename: 'BasicTopper';
|
|
143848
143876
|
readonly headline: string;
|
|
@@ -147785,6 +147813,9 @@ type ArticleFields_LiveBlogPackage_Fragment = {
|
|
|
147785
147813
|
readonly originatingParty?: string | null;
|
|
147786
147814
|
readonly commentsEnabled?: boolean | null;
|
|
147787
147815
|
readonly editorialDesk?: string | null;
|
|
147816
|
+
readonly indicators?: {
|
|
147817
|
+
readonly isOpinion?: boolean | null;
|
|
147818
|
+
} | null;
|
|
147788
147819
|
readonly topper?: {
|
|
147789
147820
|
readonly __typename: 'BasicTopper';
|
|
147790
147821
|
readonly headline: string;
|
|
@@ -272859,6 +272890,7 @@ export type ArticleQuery = {
|
|
|
272859
272890
|
readonly editorialDesk?: string | null;
|
|
272860
272891
|
readonly media?: ReadonlyArray<{
|
|
272861
272892
|
readonly url?: string | null;
|
|
272893
|
+
readonly duration?: number | null;
|
|
272862
272894
|
readonly mediaType?: string | null;
|
|
272863
272895
|
} | null> | null;
|
|
272864
272896
|
readonly topper?: {
|
|
@@ -280848,6 +280880,9 @@ export type ArticleQuery = {
|
|
|
280848
280880
|
readonly originatingParty?: string | null;
|
|
280849
280881
|
readonly commentsEnabled?: boolean | null;
|
|
280850
280882
|
readonly editorialDesk?: string | null;
|
|
280883
|
+
readonly indicators?: {
|
|
280884
|
+
readonly isOpinion?: boolean | null;
|
|
280885
|
+
} | null;
|
|
280851
280886
|
readonly topper?: {
|
|
280852
280887
|
readonly __typename: 'BasicTopper';
|
|
280853
280888
|
readonly headline: string;
|
|
@@ -284790,6 +284825,9 @@ export type ArticleQuery = {
|
|
|
284790
284825
|
readonly originatingParty?: string | null;
|
|
284791
284826
|
readonly commentsEnabled?: boolean | null;
|
|
284792
284827
|
readonly editorialDesk?: string | null;
|
|
284828
|
+
readonly indicators?: {
|
|
284829
|
+
readonly isOpinion?: boolean | null;
|
|
284830
|
+
} | null;
|
|
284793
284831
|
readonly topper?: {
|
|
284794
284832
|
readonly __typename: 'BasicTopper';
|
|
284795
284833
|
readonly headline: string;
|
|
@@ -288732,6 +288770,9 @@ export type ArticleQuery = {
|
|
|
288732
288770
|
readonly originatingParty?: string | null;
|
|
288733
288771
|
readonly commentsEnabled?: boolean | null;
|
|
288734
288772
|
readonly editorialDesk?: string | null;
|
|
288773
|
+
readonly indicators?: {
|
|
288774
|
+
readonly isOpinion?: boolean | null;
|
|
288775
|
+
} | null;
|
|
288735
288776
|
readonly topper?: {
|
|
288736
288777
|
readonly __typename: 'BasicTopper';
|
|
288737
288778
|
readonly headline: string;
|
|
@@ -292674,6 +292715,9 @@ export type ArticleQuery = {
|
|
|
292674
292715
|
readonly originatingParty?: string | null;
|
|
292675
292716
|
readonly commentsEnabled?: boolean | null;
|
|
292676
292717
|
readonly editorialDesk?: string | null;
|
|
292718
|
+
readonly indicators?: {
|
|
292719
|
+
readonly isOpinion?: boolean | null;
|
|
292720
|
+
} | null;
|
|
292677
292721
|
readonly topper?: {
|
|
292678
292722
|
readonly __typename: 'BasicTopper';
|
|
292679
292723
|
readonly headline: string;
|
|
@@ -296616,6 +296660,9 @@ export type ArticleQuery = {
|
|
|
296616
296660
|
readonly originatingParty?: string | null;
|
|
296617
296661
|
readonly commentsEnabled?: boolean | null;
|
|
296618
296662
|
readonly editorialDesk?: string | null;
|
|
296663
|
+
readonly indicators?: {
|
|
296664
|
+
readonly isOpinion?: boolean | null;
|
|
296665
|
+
} | null;
|
|
296619
296666
|
readonly topper?: {
|
|
296620
296667
|
readonly __typename: 'BasicTopper';
|
|
296621
296668
|
readonly headline: string;
|
|
@@ -300558,6 +300605,9 @@ export type ArticleQuery = {
|
|
|
300558
300605
|
readonly originatingParty?: string | null;
|
|
300559
300606
|
readonly commentsEnabled?: boolean | null;
|
|
300560
300607
|
readonly editorialDesk?: string | null;
|
|
300608
|
+
readonly indicators?: {
|
|
300609
|
+
readonly isOpinion?: boolean | null;
|
|
300610
|
+
} | null;
|
|
300561
300611
|
readonly topper?: {
|
|
300562
300612
|
readonly __typename: 'BasicTopper';
|
|
300563
300613
|
readonly headline: string;
|
|
@@ -304500,6 +304550,9 @@ export type ArticleQuery = {
|
|
|
304500
304550
|
readonly originatingParty?: string | null;
|
|
304501
304551
|
readonly commentsEnabled?: boolean | null;
|
|
304502
304552
|
readonly editorialDesk?: string | null;
|
|
304553
|
+
readonly indicators?: {
|
|
304554
|
+
readonly isOpinion?: boolean | null;
|
|
304555
|
+
} | null;
|
|
304503
304556
|
readonly topper?: {
|
|
304504
304557
|
readonly __typename: 'BasicTopper';
|
|
304505
304558
|
readonly headline: string;
|
|
@@ -429572,6 +429625,7 @@ export type ArticleFromJsonQuery = {
|
|
|
429572
429625
|
readonly editorialDesk?: string | null;
|
|
429573
429626
|
readonly media?: ReadonlyArray<{
|
|
429574
429627
|
readonly url?: string | null;
|
|
429628
|
+
readonly duration?: number | null;
|
|
429575
429629
|
readonly mediaType?: string | null;
|
|
429576
429630
|
} | null> | null;
|
|
429577
429631
|
readonly topper?: {
|
|
@@ -437561,6 +437615,9 @@ export type ArticleFromJsonQuery = {
|
|
|
437561
437615
|
readonly originatingParty?: string | null;
|
|
437562
437616
|
readonly commentsEnabled?: boolean | null;
|
|
437563
437617
|
readonly editorialDesk?: string | null;
|
|
437618
|
+
readonly indicators?: {
|
|
437619
|
+
readonly isOpinion?: boolean | null;
|
|
437620
|
+
} | null;
|
|
437564
437621
|
readonly topper?: {
|
|
437565
437622
|
readonly __typename: 'BasicTopper';
|
|
437566
437623
|
readonly headline: string;
|
|
@@ -441503,6 +441560,9 @@ export type ArticleFromJsonQuery = {
|
|
|
441503
441560
|
readonly originatingParty?: string | null;
|
|
441504
441561
|
readonly commentsEnabled?: boolean | null;
|
|
441505
441562
|
readonly editorialDesk?: string | null;
|
|
441563
|
+
readonly indicators?: {
|
|
441564
|
+
readonly isOpinion?: boolean | null;
|
|
441565
|
+
} | null;
|
|
441506
441566
|
readonly topper?: {
|
|
441507
441567
|
readonly __typename: 'BasicTopper';
|
|
441508
441568
|
readonly headline: string;
|
|
@@ -445445,6 +445505,9 @@ export type ArticleFromJsonQuery = {
|
|
|
445445
445505
|
readonly originatingParty?: string | null;
|
|
445446
445506
|
readonly commentsEnabled?: boolean | null;
|
|
445447
445507
|
readonly editorialDesk?: string | null;
|
|
445508
|
+
readonly indicators?: {
|
|
445509
|
+
readonly isOpinion?: boolean | null;
|
|
445510
|
+
} | null;
|
|
445448
445511
|
readonly topper?: {
|
|
445449
445512
|
readonly __typename: 'BasicTopper';
|
|
445450
445513
|
readonly headline: string;
|
|
@@ -449387,6 +449450,9 @@ export type ArticleFromJsonQuery = {
|
|
|
449387
449450
|
readonly originatingParty?: string | null;
|
|
449388
449451
|
readonly commentsEnabled?: boolean | null;
|
|
449389
449452
|
readonly editorialDesk?: string | null;
|
|
449453
|
+
readonly indicators?: {
|
|
449454
|
+
readonly isOpinion?: boolean | null;
|
|
449455
|
+
} | null;
|
|
449390
449456
|
readonly topper?: {
|
|
449391
449457
|
readonly __typename: 'BasicTopper';
|
|
449392
449458
|
readonly headline: string;
|
|
@@ -453329,6 +453395,9 @@ export type ArticleFromJsonQuery = {
|
|
|
453329
453395
|
readonly originatingParty?: string | null;
|
|
453330
453396
|
readonly commentsEnabled?: boolean | null;
|
|
453331
453397
|
readonly editorialDesk?: string | null;
|
|
453398
|
+
readonly indicators?: {
|
|
453399
|
+
readonly isOpinion?: boolean | null;
|
|
453400
|
+
} | null;
|
|
453332
453401
|
readonly topper?: {
|
|
453333
453402
|
readonly __typename: 'BasicTopper';
|
|
453334
453403
|
readonly headline: string;
|
|
@@ -457271,6 +457340,9 @@ export type ArticleFromJsonQuery = {
|
|
|
457271
457340
|
readonly originatingParty?: string | null;
|
|
457272
457341
|
readonly commentsEnabled?: boolean | null;
|
|
457273
457342
|
readonly editorialDesk?: string | null;
|
|
457343
|
+
readonly indicators?: {
|
|
457344
|
+
readonly isOpinion?: boolean | null;
|
|
457345
|
+
} | null;
|
|
457274
457346
|
readonly topper?: {
|
|
457275
457347
|
readonly __typename: 'BasicTopper';
|
|
457276
457348
|
readonly headline: string;
|
|
@@ -461213,6 +461285,9 @@ export type ArticleFromJsonQuery = {
|
|
|
461213
461285
|
readonly originatingParty?: string | null;
|
|
461214
461286
|
readonly commentsEnabled?: boolean | null;
|
|
461215
461287
|
readonly editorialDesk?: string | null;
|
|
461288
|
+
readonly indicators?: {
|
|
461289
|
+
readonly isOpinion?: boolean | null;
|
|
461290
|
+
} | null;
|
|
461216
461291
|
readonly topper?: {
|
|
461217
461292
|
readonly __typename: 'BasicTopper';
|
|
461218
461293
|
readonly headline: string;
|
package/lib/generated/index.js
CHANGED
|
@@ -140,7 +140,7 @@ exports.TopperFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
140
140
|
}
|
|
141
141
|
}
|
|
142
142
|
... on PodcastTopper {
|
|
143
|
-
headshot(dpr: 2, width:
|
|
143
|
+
headshot(dpr: 2, width: 160)
|
|
144
144
|
}
|
|
145
145
|
... on TopperWithTheme {
|
|
146
146
|
isLargeHeadline
|
|
@@ -601,6 +601,7 @@ ${exports.ImageFragmentDoc}`;
|
|
|
601
601
|
exports.MediaFragmentDoc = (0, graphql_tag_1.default) `
|
|
602
602
|
fragment Media on Media {
|
|
603
603
|
url
|
|
604
|
+
duration
|
|
604
605
|
mediaType
|
|
605
606
|
}
|
|
606
607
|
`;
|
|
@@ -627,6 +628,9 @@ exports.ArticleFieldsFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
627
628
|
liveBlogPosts(includePinned: false) {
|
|
628
629
|
...Content
|
|
629
630
|
url
|
|
631
|
+
indicators {
|
|
632
|
+
isOpinion
|
|
633
|
+
}
|
|
630
634
|
}
|
|
631
635
|
pinnedPost {
|
|
632
636
|
...PinnedPost
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/generated/index.ts"],"names":[],"mappings":";;;;;;AAEA,8DAA8B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/generated/index.ts"],"names":[],"mappings":"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"}
|
package/lib/schema-version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "2.0.
|
|
1
|
+
export declare const version = "2.0.3";
|
package/lib/schema-version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@financial-times/cp-content-pipeline-client",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.1.0-beta.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@dotcom-tool-kit/npm": "^3.1.4",
|
|
13
13
|
"@financial-times/content-tree": "github:financial-times/content-tree#14370e3",
|
|
14
|
-
"@financial-times/cp-content-pipeline-schema": "^2.0.
|
|
14
|
+
"@financial-times/cp-content-pipeline-schema": "^2.0.3",
|
|
15
15
|
"@graphql-tools/merge": "^8.3.6",
|
|
16
16
|
"@types/lodash.mapvalues": "^4.6.7",
|
|
17
17
|
"@types/semver": "^7.3.13",
|
package/src/client-version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '3.0.
|
|
2
|
+
export const version = '3.0.3'
|