@supernova-studio/model 1.67.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.d.mts +44 -1
- package/dist/index.d.ts +44 -1
- 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.mjs
CHANGED
|
@@ -2033,6 +2033,7 @@ var ShallowDesignElement = z46.object({
|
|
|
2033
2033
|
type: DesignElementType,
|
|
2034
2034
|
brandPersistentId: z46.string().optional(),
|
|
2035
2035
|
collectionPersistentId: z46.string().optional(),
|
|
2036
|
+
collectionPersistentIds: z46.string().array(),
|
|
2036
2037
|
parentPersistentId: z46.string().optional(),
|
|
2037
2038
|
shortPersistentId: z46.string().optional(),
|
|
2038
2039
|
childType: DesignElementType.optional(),
|
|
@@ -3767,7 +3768,8 @@ var ThemeOrigin = z93.object({
|
|
|
3767
3768
|
var Theme = DesignElementGroupableBase.extend(DesignElementBrandedPart.shape).extend({
|
|
3768
3769
|
origin: ThemeOrigin.optional(),
|
|
3769
3770
|
overrides: z93.array(ThemeOverride),
|
|
3770
|
-
codeName: z93.string()
|
|
3771
|
+
codeName: z93.string(),
|
|
3772
|
+
collectionPersistentIds: z93.string().array()
|
|
3771
3773
|
});
|
|
3772
3774
|
|
|
3773
3775
|
// src/dsm/elements/utils.ts
|