@supernova-studio/client 0.57.14 → 0.57.16
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 +40 -26
- package/dist/index.d.ts +40 -26
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-tokens/design-token.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -1594,6 +1594,7 @@ var ShallowDesignElement = z39.object({
|
|
|
1594
1594
|
designSystemVersionId: z39.string(),
|
|
1595
1595
|
type: DesignElementType,
|
|
1596
1596
|
brandPersistentId: z39.string().optional(),
|
|
1597
|
+
collectionPersistentId: z39.string().optional(),
|
|
1597
1598
|
parentPersistentId: z39.string().optional(),
|
|
1598
1599
|
shortPersistentId: z39.string().optional(),
|
|
1599
1600
|
childType: DesignElementType.optional(),
|
|
@@ -2811,7 +2812,8 @@ var DesignTokenOriginPart = z85.object({
|
|
|
2811
2812
|
});
|
|
2812
2813
|
var DesignTokenOrigin = DesignElementOrigin.extend(DesignTokenOriginPart.shape);
|
|
2813
2814
|
var DesignTokenBase = DesignElementBase.extend(DesignElementGroupableRequiredPart.shape).extend(DesignElementBrandedPart.shape).extend({
|
|
2814
|
-
origin: DesignTokenOrigin.optional()
|
|
2815
|
+
origin: DesignTokenOrigin.optional(),
|
|
2816
|
+
collectionPersistentId: z85.string().optional()
|
|
2815
2817
|
});
|
|
2816
2818
|
var CreateDesignTokenBase = DesignTokenBase.omit(zodCreateInputOmit());
|
|
2817
2819
|
var UpdateDesignTokenBase = DesignTokenBase.omit({
|
|
@@ -3400,7 +3402,7 @@ var ThemeUpdateImportModelInput = z98.object({
|
|
|
3400
3402
|
overrides: z98.array(ThemeOverrideImportModelInput)
|
|
3401
3403
|
});
|
|
3402
3404
|
var DesignTokenImportModelPart = z99.object({
|
|
3403
|
-
|
|
3405
|
+
collectionId: z99.string().optional(),
|
|
3404
3406
|
codeSyntax: z99.record(z99.coerce.string()).optional(),
|
|
3405
3407
|
scopes: z99.array(z99.string()).optional()
|
|
3406
3408
|
});
|
|
@@ -5907,6 +5909,7 @@ var DTODesignToken = DesignTokenTypedData.and(
|
|
|
5907
5909
|
meta: ObjectMeta,
|
|
5908
5910
|
originStyle: DesignTokenOrigin.optional(),
|
|
5909
5911
|
brandId: z208.string(),
|
|
5912
|
+
collectionId: z208.string().optional(),
|
|
5910
5913
|
updatedAt: z208.coerce.date()
|
|
5911
5914
|
})
|
|
5912
5915
|
);
|