@supernova-studio/client 0.54.7 → 0.54.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/dist/index.mjs CHANGED
@@ -1627,6 +1627,7 @@ var PageBlockTypeV1 = z40.enum([
1627
1627
  "Custom",
1628
1628
  "FigmaFrames",
1629
1629
  "ComponentAssets",
1630
+ "ComponentAssetGroup",
1630
1631
  "RenderCode",
1631
1632
  "Tabs",
1632
1633
  "TabItem",
@@ -1679,6 +1680,10 @@ var PageBlockTheme = z40.object({
1679
1680
  themeIds: z40.array(z40.string()),
1680
1681
  type: PageBlockThemeType
1681
1682
  });
1683
+ var PageBlockSwatch = z40.object({
1684
+ id: z40.string(),
1685
+ selectedThemeIds: z40.string().array()
1686
+ });
1682
1687
  var PageBlockUrlPreview = z40.object({
1683
1688
  title: nullishToOptional(z40.string()),
1684
1689
  description: nullishToOptional(z40.string()),
@@ -1850,6 +1855,7 @@ var PageBlockBaseV1 = z40.object({
1850
1855
  columnId: nullishToOptional(z40.string()),
1851
1856
  // Token spreadsheet
1852
1857
  theme: nullishToOptional(PageBlockTheme),
1858
+ swatches: nullishToOptional(PageBlockSwatch.array()),
1853
1859
  blacklistedElementProperties: nullishToOptional(z40.array(z40.string())),
1854
1860
  // Arbitrary
1855
1861
  userMetadata: nullishToOptional(z40.string())
@@ -2160,7 +2166,8 @@ var PageBlockColorV2 = z44.object({
2160
2166
  var PageBlockAssetEntityMeta = z44.object({
2161
2167
  title: z44.string().optional(),
2162
2168
  description: z44.string().optional(),
2163
- backgroundColor: PageBlockColorV2.optional()
2169
+ backgroundColor: PageBlockColorV2.optional(),
2170
+ showNestedGroups: z44.boolean().optional()
2164
2171
  });
2165
2172
  var PageBlockFigmaComponentEntityMeta = z44.object({
2166
2173
  title: z44.string().optional(),