@confed/sanity-types 0.1.3-2601061707 → 0.1.3-2601072012
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 +39 -0
package/package.json
CHANGED
package/sanity.types.ts
CHANGED
|
@@ -966,11 +966,18 @@ export type Campus = {
|
|
|
966
966
|
_updatedAt: string
|
|
967
967
|
_rev: string
|
|
968
968
|
title: string
|
|
969
|
+
alternativeName?: string
|
|
969
970
|
code: string
|
|
970
971
|
ontarioCollegesCampusCode?: string
|
|
971
972
|
city?: string
|
|
972
973
|
slug: Slug
|
|
973
974
|
isEnabled?: boolean
|
|
975
|
+
heroDescription?: string
|
|
976
|
+
heroButtons?: Array<
|
|
977
|
+
{
|
|
978
|
+
_key: string
|
|
979
|
+
} & PtButton
|
|
980
|
+
>
|
|
974
981
|
image?: AccessibleImage
|
|
975
982
|
gallery?: Array<
|
|
976
983
|
{
|
|
@@ -986,6 +993,38 @@ export type Campus = {
|
|
|
986
993
|
_key: string
|
|
987
994
|
[internalGroqTypeReferenceTo]?: 'person'
|
|
988
995
|
}>
|
|
996
|
+
pageBuilder?: Array<
|
|
997
|
+
| ({
|
|
998
|
+
_key: string
|
|
999
|
+
} & MediaTextSection)
|
|
1000
|
+
| ({
|
|
1001
|
+
_key: string
|
|
1002
|
+
} & HeaderSection)
|
|
1003
|
+
| ({
|
|
1004
|
+
_key: string
|
|
1005
|
+
} & FaqSection)
|
|
1006
|
+
| ({
|
|
1007
|
+
_key: string
|
|
1008
|
+
} & GallerySection)
|
|
1009
|
+
| ({
|
|
1010
|
+
_key: string
|
|
1011
|
+
} & RichTextSection)
|
|
1012
|
+
| ({
|
|
1013
|
+
_key: string
|
|
1014
|
+
} & CardGridSection)
|
|
1015
|
+
| ({
|
|
1016
|
+
_key: string
|
|
1017
|
+
} & ProgramGridSection)
|
|
1018
|
+
| ({
|
|
1019
|
+
_key: string
|
|
1020
|
+
} & CallToActionSection)
|
|
1021
|
+
| ({
|
|
1022
|
+
_key: string
|
|
1023
|
+
} & SimpleCallToActionSection)
|
|
1024
|
+
| ({
|
|
1025
|
+
_key: string
|
|
1026
|
+
} & RelatedLinksSection)
|
|
1027
|
+
>
|
|
989
1028
|
address?: CanadianAddress
|
|
990
1029
|
phone?: Array<
|
|
991
1030
|
{
|