@supernova-studio/client 1.66.0 → 1.67.1
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 +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1874,6 +1874,7 @@ var ShallowDesignElement = _zod.z.object({
|
|
|
1874
1874
|
type: DesignElementType,
|
|
1875
1875
|
brandPersistentId: _zod.z.string().optional(),
|
|
1876
1876
|
collectionPersistentId: _zod.z.string().optional(),
|
|
1877
|
+
collectionPersistentIds: _zod.z.string().array(),
|
|
1877
1878
|
parentPersistentId: _zod.z.string().optional(),
|
|
1878
1879
|
shortPersistentId: _zod.z.string().optional(),
|
|
1879
1880
|
childType: DesignElementType.optional(),
|
|
@@ -3390,7 +3391,8 @@ var ThemeOrigin = _zod.z.object({
|
|
|
3390
3391
|
var Theme = DesignElementGroupableBase.extend(DesignElementBrandedPart.shape).extend({
|
|
3391
3392
|
origin: ThemeOrigin.optional(),
|
|
3392
3393
|
overrides: _zod.z.array(ThemeOverride),
|
|
3393
|
-
codeName: _zod.z.string()
|
|
3394
|
+
codeName: _zod.z.string(),
|
|
3395
|
+
collectionPersistentIds: _zod.z.string().array()
|
|
3394
3396
|
});
|
|
3395
3397
|
function mapPageBlockItemValuesV2(pageItems, definitionsMap, fn) {
|
|
3396
3398
|
traversePageBlockItemsV2(pageItems, (block, item) => {
|