@confed/sanity-types 0.1.2-2509032017 → 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 +12 -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 = {
|