@confed/sanity-types 0.1.2-2509031906 → 0.1.2-2509052004
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 +13 -2
package/package.json
CHANGED
package/sanity.types.ts
CHANGED
|
@@ -729,10 +729,10 @@ export type Campus = {
|
|
|
729
729
|
_updatedAt: string
|
|
730
730
|
_rev: string
|
|
731
731
|
title: string
|
|
732
|
-
slug: Slug
|
|
733
732
|
code: string
|
|
733
|
+
city?: string
|
|
734
|
+
slug: Slug
|
|
734
735
|
isEnabled?: boolean
|
|
735
|
-
description?: string
|
|
736
736
|
image?: {
|
|
737
737
|
asset?: {
|
|
738
738
|
_ref: string
|
|
@@ -747,6 +747,16 @@ export type Campus = {
|
|
|
747
747
|
caption?: string
|
|
748
748
|
_type: 'accessibleImage'
|
|
749
749
|
}
|
|
750
|
+
description?: PtBasic
|
|
751
|
+
virtualTourUrl?: string
|
|
752
|
+
staff?: Array<{
|
|
753
|
+
_ref: string
|
|
754
|
+
_type: 'reference'
|
|
755
|
+
_weak?: boolean
|
|
756
|
+
_key: string
|
|
757
|
+
[internalGroqTypeReferenceTo]?: 'person'
|
|
758
|
+
}>
|
|
759
|
+
seo?: Seo
|
|
750
760
|
}
|
|
751
761
|
|
|
752
762
|
export type Area = {
|
|
@@ -1094,6 +1104,7 @@ export type Person = {
|
|
|
1094
1104
|
slug: Slug
|
|
1095
1105
|
email?: string
|
|
1096
1106
|
phone?: string
|
|
1107
|
+
mobilePhone?: string
|
|
1097
1108
|
socialLinks?: Array<{
|
|
1098
1109
|
platform?: string
|
|
1099
1110
|
url?: string
|