@financial-times/cp-content-pipeline-schema 3.3.0 → 3.3.2

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.
@@ -403,7 +403,7 @@ type TopperWithFlourish implements Topper & TopperWithTheme {
403
403
  leadFlourish: LeadFlourish
404
404
  }
405
405
 
406
- type PartnerContentTopper implements Topper {
406
+ type PartnerContentTopper implements Topper & TopperWithImages & TopperWithTheme {
407
407
  "The headline text of the topper."
408
408
  headline: String!
409
409
 
@@ -427,4 +427,16 @@ type PartnerContentTopper implements Topper {
427
427
 
428
428
  "The variant of the follow button to be displayed on the topper."
429
429
  followButtonVariant: FollowButtonVariant
430
+
431
+ "An array of images to be displayed on the topper."
432
+ images: [Image!]!
433
+
434
+ "A fallback image to be used if the 'images' are not availableimages: [Image!]!."
435
+ fallbackImage: Image
436
+
437
+ "Whether the headline should be large."
438
+ isLargeHeadline: Boolean
439
+
440
+ "The layout of the topper, eg. 'split-text-left'."
441
+ layout: String
430
442
  }