@sanity/types 6.2.0-next.7 → 6.2.0-next.9
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/lib/index.d.ts +4 -4
- package/package.json +4 -4
package/lib/index.d.ts
CHANGED
|
@@ -52,15 +52,15 @@ interface DocumentSystem {
|
|
|
52
52
|
/**
|
|
53
53
|
* It will be empty for the group document (aka published document)
|
|
54
54
|
*/
|
|
55
|
-
bundleId
|
|
55
|
+
bundleId?: 'drafts' | (string & {});
|
|
56
56
|
/**
|
|
57
57
|
* A weak reference to the release document that the version belongs to.
|
|
58
58
|
*/
|
|
59
|
-
release
|
|
59
|
+
release?: DocumentSystemRef;
|
|
60
60
|
/**
|
|
61
61
|
* A weak reference to the variant document that the version belongs to.
|
|
62
62
|
*/
|
|
63
|
-
variant
|
|
63
|
+
variant?: DocumentSystemRef;
|
|
64
64
|
/**
|
|
65
65
|
* A weak reference to the group document (aka published document).
|
|
66
66
|
*/
|
|
@@ -68,7 +68,7 @@ interface DocumentSystem {
|
|
|
68
68
|
/**
|
|
69
69
|
* Available only for version documents.
|
|
70
70
|
*/
|
|
71
|
-
scopeId
|
|
71
|
+
scopeId?: string;
|
|
72
72
|
}
|
|
73
73
|
/**
|
|
74
74
|
* @internal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/types",
|
|
3
|
-
"version": "6.2.0-next.
|
|
3
|
+
"version": "6.2.0-next.9",
|
|
4
4
|
"description": "Type definitions for common Sanity data structures",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cms",
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"rimraf": "^6.1.3",
|
|
48
48
|
"vite": "^8.0.16",
|
|
49
49
|
"vitest": "^4.1.8",
|
|
50
|
-
"@repo/package.config": "6.2.0-next.
|
|
51
|
-
"@repo/
|
|
52
|
-
"@repo/
|
|
50
|
+
"@repo/package.config": "6.2.0-next.9+31c46eb91f",
|
|
51
|
+
"@repo/test-config": "6.2.0-next.9+31c46eb91f",
|
|
52
|
+
"@repo/tsconfig": "6.2.0-next.9+31c46eb91f"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
55
|
"@types/react": "^19.2"
|