@supernova-studio/client 0.54.7 → 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.d.mts +24 -0
- package/dist/index.d.ts +24 -0
- 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.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())
|