@supernova-studio/client 0.54.6 → 0.54.7
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/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2316,9 +2316,14 @@ var PageBlockItemStorybookValue = _zod.z.object({
|
|
|
2316
2316
|
var PageBlockItemTextValue = _zod.z.object({
|
|
2317
2317
|
value: _zod.z.string()
|
|
2318
2318
|
});
|
|
2319
|
+
var PageBlockItemSwatch = _zod.z.object({
|
|
2320
|
+
id: _zod.z.string(),
|
|
2321
|
+
selectedThemeIds: _zod.z.string().array()
|
|
2322
|
+
});
|
|
2319
2323
|
var PageBlockItemTokenValue = _zod.z.object({
|
|
2320
2324
|
selectedPropertyIds: _zod.z.array(_zod.z.string()).optional(),
|
|
2321
2325
|
selectedThemeIds: _zod.z.array(_zod.z.string()).optional(),
|
|
2326
|
+
swatches: _zod.z.array(PageBlockItemSwatch).optional(),
|
|
2322
2327
|
themeDisplayMode: PageBlockThemeDisplayMode.optional(),
|
|
2323
2328
|
value: _zod.z.array(
|
|
2324
2329
|
_zod.z.object({
|