@financial-times/cp-content-pipeline-schema 2.0.1 → 2.0.3

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
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.3](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-schema-v2.0.2...cp-content-pipeline-schema-v2.0.3) (2024-02-14)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * query for duration in article.graphql ([356fc44](https://github.com/Financial-Times/cp-content-pipeline/commit/356fc4464b893504ab43a5b895e61e82f77d7162))
9
+
10
+ ## [2.0.2](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-schema-v2.0.1...cp-content-pipeline-schema-v2.0.2) (2024-02-08)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * pin @dotcom-reliability-kit/logger to 2.2.5 to avoid breaking change ([902a000](https://github.com/Financial-Times/cp-content-pipeline/commit/902a0001262a1b3232946ed988a0c2d8037bcc0e))
16
+
3
17
  ## [2.0.1](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-schema-v2.0.0...cp-content-pipeline-schema-v2.0.1) (2024-02-02)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@financial-times/cp-content-pipeline-schema",
3
- "version": "2.0.1",
3
+ "version": "2.0.3",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "devDependencies": {
45
45
  "@apollo/utils.fetcher": "^1.1.1",
46
- "@dotcom-reliability-kit/logger": "^2.0.0",
46
+ "@dotcom-reliability-kit/logger": "2.2.5",
47
47
  "@dotcom-tool-kit/npm": "^3.1.4",
48
48
  "@financial-times/content-tree": "github:financial-times/content-tree#14370e3",
49
49
  "@types/graphql": "^14.5.0",
@@ -171,7 +171,7 @@ fragment Topper on Topper {
171
171
  }
172
172
  }
173
173
  ... on PodcastTopper {
174
- headshot(dpr: 2, width: 150)
174
+ headshot(dpr: 2, width: 160)
175
175
  }
176
176
  ... on TopperWithTheme {
177
177
  isLargeHeadline
@@ -441,6 +441,7 @@ fragment Design on Design {
441
441
 
442
442
  fragment Media on Media {
443
443
  url
444
+ duration
444
445
  mediaType
445
446
  }
446
447