@confed/sanity-types 0.1.3-2512121432 → 0.1.3-2512121943
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/package.json +1 -1
- package/sanity.types.ts +40 -1
package/package.json
CHANGED
package/sanity.types.ts
CHANGED
|
@@ -73,6 +73,12 @@ export type RelatedLinkItem = {
|
|
|
73
73
|
_weak?: boolean
|
|
74
74
|
[internalGroqTypeReferenceTo]?: 'person'
|
|
75
75
|
}
|
|
76
|
+
| {
|
|
77
|
+
_ref: string
|
|
78
|
+
_type: 'reference'
|
|
79
|
+
_weak?: boolean
|
|
80
|
+
[internalGroqTypeReferenceTo]?: 'programFile'
|
|
81
|
+
}
|
|
76
82
|
url?: string
|
|
77
83
|
isExternal?: boolean
|
|
78
84
|
icon?: string
|
|
@@ -940,8 +946,41 @@ export type Area = {
|
|
|
940
946
|
title: string
|
|
941
947
|
slug: Slug
|
|
942
948
|
image?: AccessibleImage
|
|
943
|
-
|
|
949
|
+
body?: PtBasic
|
|
950
|
+
pageBuilder?: Array<
|
|
951
|
+
| ({
|
|
952
|
+
_key: string
|
|
953
|
+
} & MediaTextSection)
|
|
954
|
+
| ({
|
|
955
|
+
_key: string
|
|
956
|
+
} & HeaderSection)
|
|
957
|
+
| ({
|
|
958
|
+
_key: string
|
|
959
|
+
} & FaqSection)
|
|
960
|
+
| ({
|
|
961
|
+
_key: string
|
|
962
|
+
} & GallerySection)
|
|
963
|
+
| ({
|
|
964
|
+
_key: string
|
|
965
|
+
} & RichTextSection)
|
|
966
|
+
| ({
|
|
967
|
+
_key: string
|
|
968
|
+
} & CardGridSection)
|
|
969
|
+
| ({
|
|
970
|
+
_key: string
|
|
971
|
+
} & ProgramGridSection)
|
|
972
|
+
| ({
|
|
973
|
+
_key: string
|
|
974
|
+
} & CallToActionSection)
|
|
975
|
+
| ({
|
|
976
|
+
_key: string
|
|
977
|
+
} & SimpleCallToActionSection)
|
|
978
|
+
| ({
|
|
979
|
+
_key: string
|
|
980
|
+
} & RelatedLinksSection)
|
|
981
|
+
>
|
|
944
982
|
isEnabled?: boolean
|
|
983
|
+
seo?: Seo
|
|
945
984
|
}
|
|
946
985
|
|
|
947
986
|
export type ProgramIntake = {
|