@confed/sanity-types 0.1.2-2508181253 → 0.1.2-2508191936

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/sanity.types.ts +11 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@confed/sanity-types",
3
- "version": "0.1.2-2508181253",
3
+ "version": "0.1.2-2508191936",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [
package/sanity.types.ts CHANGED
@@ -925,25 +925,25 @@ export type SanityImagePalette = {
925
925
 
926
926
  export type SanityImageDimensions = {
927
927
  _type: 'sanity.imageDimensions'
928
- height?: number
929
- width?: number
930
- aspectRatio?: number
928
+ height: number
929
+ width: number
930
+ aspectRatio: number
931
931
  }
932
932
 
933
933
  export type SanityImageHotspot = {
934
934
  _type: 'sanity.imageHotspot'
935
- x?: number
936
- y?: number
937
- height?: number
938
- width?: number
935
+ x: number
936
+ y: number
937
+ height: number
938
+ width: number
939
939
  }
940
940
 
941
941
  export type SanityImageCrop = {
942
942
  _type: 'sanity.imageCrop'
943
- top?: number
944
- bottom?: number
945
- left?: number
946
- right?: number
943
+ top: number
944
+ bottom: number
945
+ left: number
946
+ right: number
947
947
  }
948
948
 
949
949
  export type SanityFileAsset = {