@confed/sanity-types 0.1.2-2509032017 → 0.1.2-2509101542
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 +15 -3
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 = {
|
|
@@ -1115,7 +1125,9 @@ export type Person = {
|
|
|
1115
1125
|
_type: 'accessibleImage'
|
|
1116
1126
|
}
|
|
1117
1127
|
jobTitle?: string
|
|
1118
|
-
siteRoles?: Array<
|
|
1128
|
+
siteRoles?: Array<
|
|
1129
|
+
'faculty' | 'staff' | 'recruitment' | 'internationalRecruitment' | 'testimonial' | 'dean'
|
|
1130
|
+
>
|
|
1119
1131
|
affiliations?: Array<{
|
|
1120
1132
|
program?: {
|
|
1121
1133
|
_ref: string
|