@sanity/schema 6.1.0-next.9 → 6.1.0-workbench.20260612124715
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/_internal.d.ts +10 -10
- package/package.json +6 -6
package/lib/_internal.d.ts
CHANGED
|
@@ -232,17 +232,17 @@ declare const builtinTypes: ({
|
|
|
232
232
|
type: string;
|
|
233
233
|
title: string;
|
|
234
234
|
readOnly: boolean;
|
|
235
|
-
fieldset?: undefined;
|
|
236
235
|
validation?: undefined;
|
|
237
236
|
hidden?: undefined;
|
|
237
|
+
fieldset?: undefined;
|
|
238
238
|
} | {
|
|
239
239
|
name: string;
|
|
240
240
|
type: string;
|
|
241
241
|
title: string;
|
|
242
|
-
readOnly?: undefined;
|
|
243
|
-
fieldset?: undefined;
|
|
244
242
|
validation?: undefined;
|
|
245
243
|
hidden?: undefined;
|
|
244
|
+
readOnly?: undefined;
|
|
245
|
+
fieldset?: undefined;
|
|
246
246
|
} | {
|
|
247
247
|
name: string;
|
|
248
248
|
type: string;
|
|
@@ -257,8 +257,8 @@ declare const builtinTypes: ({
|
|
|
257
257
|
readOnly: boolean;
|
|
258
258
|
hidden: boolean;
|
|
259
259
|
fieldset: string;
|
|
260
|
-
title?: undefined;
|
|
261
260
|
validation?: undefined;
|
|
261
|
+
title?: undefined;
|
|
262
262
|
} | {
|
|
263
263
|
name: string;
|
|
264
264
|
type: string;
|
|
@@ -311,17 +311,17 @@ declare const builtinTypes: ({
|
|
|
311
311
|
type: string;
|
|
312
312
|
title: string;
|
|
313
313
|
readOnly: boolean;
|
|
314
|
-
fieldset?: undefined;
|
|
315
314
|
validation?: undefined;
|
|
316
315
|
hidden?: undefined;
|
|
316
|
+
fieldset?: undefined;
|
|
317
317
|
} | {
|
|
318
318
|
name: string;
|
|
319
319
|
type: string;
|
|
320
320
|
title: string;
|
|
321
|
-
readOnly?: undefined;
|
|
322
|
-
fieldset?: undefined;
|
|
323
321
|
validation?: undefined;
|
|
324
322
|
hidden?: undefined;
|
|
323
|
+
readOnly?: undefined;
|
|
324
|
+
fieldset?: undefined;
|
|
325
325
|
} | {
|
|
326
326
|
name: string;
|
|
327
327
|
type: string;
|
|
@@ -331,21 +331,21 @@ declare const builtinTypes: ({
|
|
|
331
331
|
validation: (Rule: import("@sanity/types").Rule) => import("@sanity/types").Rule;
|
|
332
332
|
hidden?: undefined;
|
|
333
333
|
} | {
|
|
334
|
+
validation?: undefined;
|
|
334
335
|
name: string;
|
|
335
336
|
type: string;
|
|
336
337
|
readOnly: boolean;
|
|
337
338
|
hidden: boolean;
|
|
338
339
|
fieldset: string;
|
|
339
340
|
title?: undefined;
|
|
340
|
-
validation?: undefined;
|
|
341
341
|
} | {
|
|
342
|
+
validation?: undefined;
|
|
343
|
+
hidden?: undefined;
|
|
342
344
|
name: string;
|
|
343
345
|
type: string;
|
|
344
346
|
title: string;
|
|
345
347
|
readOnly: boolean;
|
|
346
348
|
fieldset: string;
|
|
347
|
-
validation?: undefined;
|
|
348
|
-
hidden?: undefined;
|
|
349
349
|
})[];
|
|
350
350
|
preview: {
|
|
351
351
|
select: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/schema",
|
|
3
|
-
"version": "6.1.0-
|
|
3
|
+
"version": "6.1.0-workbench.20260612124715",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cms",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"leven": "^3.1.0",
|
|
50
50
|
"lodash-es": "^4.18.1",
|
|
51
51
|
"object-inspect": "^1.13.4",
|
|
52
|
-
"@sanity/types": "6.1.0-
|
|
52
|
+
"@sanity/types": "6.1.0-workbench.20260612124715+e7bd2d8e31"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@sanity/icons": "^3.7.4",
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
"rimraf": "^6.1.3",
|
|
63
63
|
"vite": "^8.0.16",
|
|
64
64
|
"vitest": "^4.1.8",
|
|
65
|
-
"@repo/eslint-config": "6.1.0-
|
|
66
|
-
"@repo/package.config": "6.1.0-
|
|
67
|
-
"@repo/test-config": "6.1.0-
|
|
68
|
-
"@repo/tsconfig": "6.1.0-
|
|
65
|
+
"@repo/eslint-config": "6.1.0-workbench.20260612124715+e7bd2d8e31",
|
|
66
|
+
"@repo/package.config": "6.1.0-workbench.20260612124715+e7bd2d8e31",
|
|
67
|
+
"@repo/test-config": "6.1.0-workbench.20260612124715+e7bd2d8e31",
|
|
68
|
+
"@repo/tsconfig": "6.1.0-workbench.20260612124715+e7bd2d8e31"
|
|
69
69
|
},
|
|
70
70
|
"browserslist": [
|
|
71
71
|
"node >=22.12",
|