@supernova-studio/client 0.54.6 → 0.54.8

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.mjs CHANGED
@@ -1679,6 +1679,10 @@ var PageBlockTheme = z40.object({
1679
1679
  themeIds: z40.array(z40.string()),
1680
1680
  type: PageBlockThemeType
1681
1681
  });
1682
+ var PageBlockSwatch = z40.object({
1683
+ id: z40.string(),
1684
+ selectedThemeIds: z40.string().array()
1685
+ });
1682
1686
  var PageBlockUrlPreview = z40.object({
1683
1687
  title: nullishToOptional(z40.string()),
1684
1688
  description: nullishToOptional(z40.string()),
@@ -1850,6 +1854,7 @@ var PageBlockBaseV1 = z40.object({
1850
1854
  columnId: nullishToOptional(z40.string()),
1851
1855
  // Token spreadsheet
1852
1856
  theme: nullishToOptional(PageBlockTheme),
1857
+ swatches: nullishToOptional(PageBlockSwatch.array()),
1853
1858
  blacklistedElementProperties: nullishToOptional(z40.array(z40.string())),
1854
1859
  // Arbitrary
1855
1860
  userMetadata: nullishToOptional(z40.string())
@@ -2316,9 +2321,14 @@ var PageBlockItemStorybookValue = z44.object({
2316
2321
  var PageBlockItemTextValue = z44.object({
2317
2322
  value: z44.string()
2318
2323
  });
2324
+ var PageBlockItemSwatch = z44.object({
2325
+ id: z44.string(),
2326
+ selectedThemeIds: z44.string().array()
2327
+ });
2319
2328
  var PageBlockItemTokenValue = z44.object({
2320
2329
  selectedPropertyIds: z44.array(z44.string()).optional(),
2321
2330
  selectedThemeIds: z44.array(z44.string()).optional(),
2331
+ swatches: z44.array(PageBlockItemSwatch).optional(),
2322
2332
  themeDisplayMode: PageBlockThemeDisplayMode.optional(),
2323
2333
  value: z44.array(
2324
2334
  z44.object({