@confed/sanity-types 0.1.3-2601071726 → 0.1.3-2601072105
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 +32 -5
package/package.json
CHANGED
package/sanity.types.ts
CHANGED
|
@@ -979,11 +979,6 @@ export type Campus = {
|
|
|
979
979
|
} & PtButton
|
|
980
980
|
>
|
|
981
981
|
image?: AccessibleImage
|
|
982
|
-
gallery?: Array<
|
|
983
|
-
{
|
|
984
|
-
_key: string
|
|
985
|
-
} & AccessibleImage
|
|
986
|
-
>
|
|
987
982
|
description?: PtBasic
|
|
988
983
|
virtualTourUrl?: string
|
|
989
984
|
staff?: Array<{
|
|
@@ -993,6 +988,38 @@ export type Campus = {
|
|
|
993
988
|
_key: string
|
|
994
989
|
[internalGroqTypeReferenceTo]?: 'person'
|
|
995
990
|
}>
|
|
991
|
+
pageBuilder?: Array<
|
|
992
|
+
| ({
|
|
993
|
+
_key: string
|
|
994
|
+
} & MediaTextSection)
|
|
995
|
+
| ({
|
|
996
|
+
_key: string
|
|
997
|
+
} & HeaderSection)
|
|
998
|
+
| ({
|
|
999
|
+
_key: string
|
|
1000
|
+
} & FaqSection)
|
|
1001
|
+
| ({
|
|
1002
|
+
_key: string
|
|
1003
|
+
} & GallerySection)
|
|
1004
|
+
| ({
|
|
1005
|
+
_key: string
|
|
1006
|
+
} & RichTextSection)
|
|
1007
|
+
| ({
|
|
1008
|
+
_key: string
|
|
1009
|
+
} & CardGridSection)
|
|
1010
|
+
| ({
|
|
1011
|
+
_key: string
|
|
1012
|
+
} & ProgramGridSection)
|
|
1013
|
+
| ({
|
|
1014
|
+
_key: string
|
|
1015
|
+
} & CallToActionSection)
|
|
1016
|
+
| ({
|
|
1017
|
+
_key: string
|
|
1018
|
+
} & SimpleCallToActionSection)
|
|
1019
|
+
| ({
|
|
1020
|
+
_key: string
|
|
1021
|
+
} & RelatedLinksSection)
|
|
1022
|
+
>
|
|
996
1023
|
address?: CanadianAddress
|
|
997
1024
|
phone?: Array<
|
|
998
1025
|
{
|