@supernova-studio/client 0.47.67 → 0.47.69
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/design-system.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -2737,7 +2737,8 @@ var DesignSystemVersion = z119.object({
|
|
|
2737
2737
|
comment: z119.string(),
|
|
2738
2738
|
isReadonly: z119.boolean(),
|
|
2739
2739
|
changeLog: z119.string(),
|
|
2740
|
-
parentId: z119.string().optional()
|
|
2740
|
+
parentId: z119.string().optional(),
|
|
2741
|
+
isDraftsFeatureAdopted: z119.boolean()
|
|
2741
2742
|
});
|
|
2742
2743
|
var VersionCreationJobStatus = z119.enum(["Success", "InProgress", "Error"]);
|
|
2743
2744
|
var VersionCreationJob = z119.object({
|
|
@@ -4730,7 +4731,8 @@ var DTODesignSystem = DesignSystem.omit({
|
|
|
4730
4731
|
docExporterId: true
|
|
4731
4732
|
}).extend({
|
|
4732
4733
|
meta: ObjectMeta,
|
|
4733
|
-
docExporterId: z167.string()
|
|
4734
|
+
docExporterId: z167.string(),
|
|
4735
|
+
sources: z167.array(z167.any())
|
|
4734
4736
|
});
|
|
4735
4737
|
|
|
4736
4738
|
// src/api/dto/design-systems/elements-diff.ts
|