@supernova-studio/model 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
@@ -1728,6 +1728,7 @@ var PageBlockTypeV1 = z40.enum([
1728
1728
  "Custom",
1729
1729
  "FigmaFrames",
1730
1730
  "ComponentAssets",
1731
+ "ComponentAssetGroup",
1731
1732
  "RenderCode",
1732
1733
  "Tabs",
1733
1734
  "TabItem",
@@ -1780,6 +1781,10 @@ var PageBlockTheme = z40.object({
1780
1781
  themeIds: z40.array(z40.string()),
1781
1782
  type: PageBlockThemeType
1782
1783
  });
1784
+ var PageBlockSwatch = z40.object({
1785
+ id: z40.string(),
1786
+ selectedThemeIds: z40.string().array()
1787
+ });
1783
1788
  var PageBlockUrlPreview = z40.object({
1784
1789
  title: nullishToOptional(z40.string()),
1785
1790
  description: nullishToOptional(z40.string()),
@@ -1951,6 +1956,7 @@ var PageBlockBaseV1 = z40.object({
1951
1956
  columnId: nullishToOptional(z40.string()),
1952
1957
  // Token spreadsheet
1953
1958
  theme: nullishToOptional(PageBlockTheme),
1959
+ swatches: nullishToOptional(PageBlockSwatch.array()),
1954
1960
  blacklistedElementProperties: nullishToOptional(z40.array(z40.string())),
1955
1961
  // Arbitrary
1956
1962
  userMetadata: nullishToOptional(z40.string())
@@ -2283,7 +2289,8 @@ var PageBlockColorV2 = z44.object({
2283
2289
  var PageBlockAssetEntityMeta = z44.object({
2284
2290
  title: z44.string().optional(),
2285
2291
  description: z44.string().optional(),
2286
- backgroundColor: PageBlockColorV2.optional()
2292
+ backgroundColor: PageBlockColorV2.optional(),
2293
+ showNestedGroups: z44.boolean().optional()
2287
2294
  });
2288
2295
  var PageBlockFigmaComponentEntityMeta = z44.object({
2289
2296
  title: z44.string().optional(),
@@ -5643,6 +5650,7 @@ export {
5643
5650
  PageBlockRenderCodeProperties,
5644
5651
  PageBlockResourceFrameNodeReference,
5645
5652
  PageBlockShortcut,
5653
+ PageBlockSwatch,
5646
5654
  PageBlockTableCellAlignment,
5647
5655
  PageBlockTableColumn,
5648
5656
  PageBlockTableProperties,