@confed/sanity-types 0.1.3-2512112004 → 0.1.3-2512121440

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 +34 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@confed/sanity-types",
3
- "version": "0.1.3-2512112004",
3
+ "version": "0.1.3-2512121440",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [
package/sanity.types.ts CHANGED
@@ -940,8 +940,41 @@ export type Area = {
940
940
  title: string
941
941
  slug: Slug
942
942
  image?: AccessibleImage
943
- description?: string
943
+ body?: PtBasic
944
+ pageBuilder?: Array<
945
+ | ({
946
+ _key: string
947
+ } & MediaTextSection)
948
+ | ({
949
+ _key: string
950
+ } & HeaderSection)
951
+ | ({
952
+ _key: string
953
+ } & FaqSection)
954
+ | ({
955
+ _key: string
956
+ } & GallerySection)
957
+ | ({
958
+ _key: string
959
+ } & RichTextSection)
960
+ | ({
961
+ _key: string
962
+ } & CardGridSection)
963
+ | ({
964
+ _key: string
965
+ } & ProgramGridSection)
966
+ | ({
967
+ _key: string
968
+ } & CallToActionSection)
969
+ | ({
970
+ _key: string
971
+ } & SimpleCallToActionSection)
972
+ | ({
973
+ _key: string
974
+ } & RelatedLinksSection)
975
+ >
944
976
  isEnabled?: boolean
977
+ seo?: Seo
945
978
  }
946
979
 
947
980
  export type ProgramIntake = {