@financial-times/cp-content-pipeline-client 4.5.0 → 4.6.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 +17 -0
- package/lib/client-version.d.ts +1 -1
- package/lib/client-version.js +1 -1
- package/lib/generated/index.d.ts +50 -0
- package/lib/generated/index.js +8 -3
- 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 +53 -6
- package/src/schema-version.ts +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -510,6 +510,23 @@
|
|
|
510
510
|
* devDependencies
|
|
511
511
|
* @financial-times/cp-content-pipeline-schema bumped from ^3.3.0 to ^3.3.1
|
|
512
512
|
|
|
513
|
+
## [4.6.0](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v4.5.0...cp-content-pipeline-client-v4.6.0) (2024-10-24)
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
### Features
|
|
517
|
+
|
|
518
|
+
* **api:** request how many live blog posts to fetch in query parameter ([bde0da2](https://github.com/Financial-Times/cp-content-pipeline/commit/bde0da2c58c575b4f1d2fe80d30beb1b36a696a3))
|
|
519
|
+
* **client:** return whether more blog posts can be requested ([4fc05d5](https://github.com/Financial-Times/cp-content-pipeline/commit/4fc05d536db53d33315abc7752e5d24649d28e64))
|
|
520
|
+
* **schema:** add GraphQL argument to request first x live blog posts ([8be94cc](https://github.com/Financial-Times/cp-content-pipeline/commit/8be94cca226cfcfe746ff6861b203db188943cd0))
|
|
521
|
+
* **schema:** add pagination support for live blog posts ([5b9aa4f](https://github.com/Financial-Times/cp-content-pipeline/commit/5b9aa4f26150a13645031b3de40d695cd5308cca))
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
### Dependencies
|
|
525
|
+
|
|
526
|
+
* The following workspace dependencies were updated
|
|
527
|
+
* devDependencies
|
|
528
|
+
* @financial-times/cp-content-pipeline-schema bumped from ^3.4.0 to ^3.5.0
|
|
529
|
+
|
|
513
530
|
## [4.5.0](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v4.4.2...cp-content-pipeline-client-v4.5.0) (2024-10-21)
|
|
514
531
|
|
|
515
532
|
|
package/lib/client-version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "4.
|
|
1
|
+
export declare const version = "4.6.0";
|
package/lib/client-version.js
CHANGED
package/lib/generated/index.d.ts
CHANGED
|
@@ -524,6 +524,18 @@ export type ContentUrlArgs = {
|
|
|
524
524
|
relative?: InputMaybe<Scalars['Boolean']['input']>;
|
|
525
525
|
vanity?: InputMaybe<Scalars['Boolean']['input']>;
|
|
526
526
|
};
|
|
527
|
+
export type ContentConnection = {
|
|
528
|
+
/** A list of edges for the connection. */
|
|
529
|
+
readonly edges: ReadonlyArray<Maybe<ContentEdge>>;
|
|
530
|
+
/** Pagination data for the connection. */
|
|
531
|
+
readonly pageInfo: PageInfo;
|
|
532
|
+
};
|
|
533
|
+
export type ContentEdge = {
|
|
534
|
+
/** The opaque cursor for this edge that can be used for future requests. */
|
|
535
|
+
readonly cursor: Scalars['String']['output'];
|
|
536
|
+
/** The child article of this edge. */
|
|
537
|
+
readonly node?: Maybe<Content>;
|
|
538
|
+
};
|
|
527
539
|
export type ContentPackage = Content & {
|
|
528
540
|
/** A scalar representing the access level of the article, eg. 'free'. */
|
|
529
541
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']['output']>;
|
|
@@ -1078,6 +1090,8 @@ export type LiveBlogPackage = Content & {
|
|
|
1078
1090
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
1079
1091
|
/** The child articles of this live blog package. */
|
|
1080
1092
|
readonly liveBlogPosts?: Maybe<ReadonlyArray<Maybe<Content>>>;
|
|
1093
|
+
/** The child articles of this live blog package following the [Connections](https://relay.dev/graphql/connections.htm) spec. */
|
|
1094
|
+
readonly liveBlogPostsConnection?: Maybe<ContentConnection>;
|
|
1081
1095
|
/** An image object containing the url and the caption, to be displayed usually before the article content. */
|
|
1082
1096
|
readonly mainImage?: Maybe<Image>;
|
|
1083
1097
|
/** The number of milliseconds since the unix epoch the article was last changed, eg '1712140552443'. */
|
|
@@ -1113,6 +1127,15 @@ export type LiveBlogPackageAnnotationsArgs = {
|
|
|
1113
1127
|
export type LiveBlogPackageBylineArgs = {
|
|
1114
1128
|
vanity?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1115
1129
|
};
|
|
1130
|
+
export type LiveBlogPackageLiveBlogPostsArgs = {
|
|
1131
|
+
count?: InputMaybe<Scalars['Int']['input']>;
|
|
1132
|
+
};
|
|
1133
|
+
export type LiveBlogPackageLiveBlogPostsConnectionArgs = {
|
|
1134
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1135
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1136
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1137
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1138
|
+
};
|
|
1116
1139
|
export type LiveBlogPackageUrlArgs = {
|
|
1117
1140
|
relative?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1118
1141
|
vanity?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -1247,6 +1270,16 @@ export type OpinionTopperHeadshotArgs = {
|
|
|
1247
1270
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
1248
1271
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
1249
1272
|
};
|
|
1273
|
+
export type PageInfo = {
|
|
1274
|
+
/** The cursor for the last edge. */
|
|
1275
|
+
readonly endCursor?: Maybe<Scalars['String']['output']>;
|
|
1276
|
+
/** Whether a subsequent page of edges is available on request. */
|
|
1277
|
+
readonly hasNextPage: Scalars['Boolean']['output'];
|
|
1278
|
+
/** Whether a previous page of edges is available on request. */
|
|
1279
|
+
readonly hasPreviousPage: Scalars['Boolean']['output'];
|
|
1280
|
+
/** The cursor for the first edge. */
|
|
1281
|
+
readonly startCursor?: Maybe<Scalars['String']['output']>;
|
|
1282
|
+
};
|
|
1250
1283
|
export type PartnerContentTopper = Topper & TopperWithImages & TopperWithTheme & {
|
|
1251
1284
|
/** Whether the topper should have a background box. */
|
|
1252
1285
|
readonly backgroundBox?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -187379,6 +187412,11 @@ type ArticleFields_LiveBlogPackage_Fragment = {
|
|
|
187379
187412
|
readonly layout?: string | null;
|
|
187380
187413
|
} | null;
|
|
187381
187414
|
} | null> | null;
|
|
187415
|
+
readonly liveBlogPostsConnection?: {
|
|
187416
|
+
readonly pageInfo: {
|
|
187417
|
+
readonly hasNextPage: boolean;
|
|
187418
|
+
};
|
|
187419
|
+
} | null;
|
|
187382
187420
|
readonly pinnedPost?: {
|
|
187383
187421
|
readonly __typename: 'Article';
|
|
187384
187422
|
readonly id: string;
|
|
@@ -297255,6 +297293,7 @@ export type ArticleFieldsFragment = ArticleFields_Article_Fragment | ArticleFiel
|
|
|
297255
297293
|
export type ArticleQueryVariables = Exact<{
|
|
297256
297294
|
uuid: Scalars['String']['input'];
|
|
297257
297295
|
useVanities: Scalars['Boolean']['input'];
|
|
297296
|
+
liveBlogPostCount?: InputMaybe<Scalars['Int']['input']>;
|
|
297258
297297
|
}>;
|
|
297259
297298
|
export type ArticleQuery = {
|
|
297260
297299
|
readonly content: {
|
|
@@ -379826,6 +379865,11 @@ export type ArticleQuery = {
|
|
|
379826
379865
|
readonly layout?: string | null;
|
|
379827
379866
|
} | null;
|
|
379828
379867
|
} | null> | null;
|
|
379868
|
+
readonly liveBlogPostsConnection?: {
|
|
379869
|
+
readonly pageInfo: {
|
|
379870
|
+
readonly hasNextPage: boolean;
|
|
379871
|
+
};
|
|
379872
|
+
} | null;
|
|
379829
379873
|
readonly pinnedPost?: {
|
|
379830
379874
|
readonly __typename: 'Article';
|
|
379831
379875
|
readonly id: string;
|
|
@@ -489699,6 +489743,7 @@ export type ArticleQuery = {
|
|
|
489699
489743
|
export type ArticleFromJsonQueryVariables = Exact<{
|
|
489700
489744
|
content: Scalars['JSON']['input'];
|
|
489701
489745
|
useVanities: Scalars['Boolean']['input'];
|
|
489746
|
+
liveBlogPostCount?: InputMaybe<Scalars['Int']['input']>;
|
|
489702
489747
|
uuid?: InputMaybe<Scalars['String']['input']>;
|
|
489703
489748
|
}>;
|
|
489704
489749
|
export type ArticleFromJsonQuery = {
|
|
@@ -572271,6 +572316,11 @@ export type ArticleFromJsonQuery = {
|
|
|
572271
572316
|
readonly layout?: string | null;
|
|
572272
572317
|
} | null;
|
|
572273
572318
|
} | null> | null;
|
|
572319
|
+
readonly liveBlogPostsConnection?: {
|
|
572320
|
+
readonly pageInfo: {
|
|
572321
|
+
readonly hasNextPage: boolean;
|
|
572322
|
+
};
|
|
572323
|
+
} | null;
|
|
572274
572324
|
readonly pinnedPost?: {
|
|
572275
572325
|
readonly __typename: 'Article';
|
|
572276
572326
|
readonly id: string;
|
package/lib/generated/index.js
CHANGED
|
@@ -725,7 +725,7 @@ exports.ArticleFieldsFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
725
725
|
}
|
|
726
726
|
}
|
|
727
727
|
... on LiveBlogPackage {
|
|
728
|
-
liveBlogPosts {
|
|
728
|
+
liveBlogPosts(count: $liveBlogPostCount) {
|
|
729
729
|
...Content
|
|
730
730
|
url
|
|
731
731
|
... on LiveBlogPost {
|
|
@@ -738,6 +738,11 @@ exports.ArticleFieldsFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
738
738
|
}
|
|
739
739
|
}
|
|
740
740
|
}
|
|
741
|
+
liveBlogPostsConnection(first: $liveBlogPostCount) {
|
|
742
|
+
pageInfo {
|
|
743
|
+
hasNextPage
|
|
744
|
+
}
|
|
745
|
+
}
|
|
741
746
|
pinnedPost {
|
|
742
747
|
...PinnedPost
|
|
743
748
|
}
|
|
@@ -763,14 +768,14 @@ ${exports.PinnedPostFragmentDoc}
|
|
|
763
768
|
${exports.TeaserFragmentDoc}
|
|
764
769
|
${exports.MediaFragmentDoc}`;
|
|
765
770
|
exports.ArticleDocument = (0, graphql_tag_1.default) `
|
|
766
|
-
query Article($uuid: String!, $useVanities: Boolean
|
|
771
|
+
query Article($uuid: String!, $useVanities: Boolean!, $liveBlogPostCount: Int) {
|
|
767
772
|
content(uuid: $uuid) {
|
|
768
773
|
...ArticleFields
|
|
769
774
|
}
|
|
770
775
|
}
|
|
771
776
|
${exports.ArticleFieldsFragmentDoc}`;
|
|
772
777
|
exports.ArticleFromJsonDocument = (0, graphql_tag_1.default) `
|
|
773
|
-
query ArticleFromJSON($content: JSON!, $useVanities: Boolean!, $uuid: String = null) {
|
|
778
|
+
query ArticleFromJSON($content: JSON!, $useVanities: Boolean!, $liveBlogPostCount: Int, $uuid: String = null) {
|
|
774
779
|
contentFromJSON(content: $content) {
|
|
775
780
|
...ArticleFields
|
|
776
781
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/generated/index.ts"],"names":[],"mappings":";;;;;;
|
|
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 = "3.
|
|
1
|
+
export declare const version = "3.5.0";
|
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": "4.
|
|
3
|
+
"version": "4.6.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#056af70",
|
|
14
|
-
"@financial-times/cp-content-pipeline-schema": "^3.
|
|
14
|
+
"@financial-times/cp-content-pipeline-schema": "^3.5.0",
|
|
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 = '4.
|
|
2
|
+
export const version = '4.6.0'
|