@confed/sanity-types 0.1.3-2511261846 → 0.1.3-2511261850

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/sanity.types.ts +32 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@confed/sanity-types",
3
- "version": "0.1.3-2511261846",
3
+ "version": "0.1.3-2511261850",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [
package/sanity.types.ts CHANGED
@@ -610,6 +610,38 @@ export type NewsArticle = {
610
610
  slug: Slug
611
611
  mainImage?: AccessibleImage
612
612
  body?: PtBasic
613
+ pageBuilder?: Array<
614
+ | ({
615
+ _key: string
616
+ } & MediaTextSection)
617
+ | ({
618
+ _key: string
619
+ } & HeaderSection)
620
+ | ({
621
+ _key: string
622
+ } & FaqSection)
623
+ | ({
624
+ _key: string
625
+ } & GallerySection)
626
+ | ({
627
+ _key: string
628
+ } & RichTextSection)
629
+ | ({
630
+ _key: string
631
+ } & CardGridSection)
632
+ | ({
633
+ _key: string
634
+ } & ProgramGridSection)
635
+ | ({
636
+ _key: string
637
+ } & CallToActionSection)
638
+ | ({
639
+ _key: string
640
+ } & SimpleCallToActionSection)
641
+ | ({
642
+ _key: string
643
+ } & RelatedLinksSection)
644
+ >
613
645
  categories: Array<'media' | 'students' | 'employee' | 'alumni'>
614
646
  dateCreated?: string
615
647
  seo?: Seo