@supernova-studio/client 1.48.19 → 1.48.21
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 +42 -5
- package/dist/index.d.ts +42 -5
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5037,6 +5037,7 @@ var DesignSystem = z170.object({
|
|
|
5037
5037
|
approvalRequiredForPublishing: z170.boolean(),
|
|
5038
5038
|
accessMode: DesignSystemAccessMode,
|
|
5039
5039
|
membersGenerated: z170.boolean(),
|
|
5040
|
+
sharedDraftId: z170.string().optional(),
|
|
5040
5041
|
createdAt: z170.coerce.date(),
|
|
5041
5042
|
updatedAt: z170.coerce.date()
|
|
5042
5043
|
});
|
|
@@ -6860,12 +6861,14 @@ var DTODesignSystemMembersUpdatePayload = DesignSystemMembershipUpdates;
|
|
|
6860
6861
|
var DTODesignSystem = DesignSystem.omit({
|
|
6861
6862
|
name: true,
|
|
6862
6863
|
description: true,
|
|
6863
|
-
docExporterId: true
|
|
6864
|
+
docExporterId: true,
|
|
6865
|
+
sharedDraftId: true
|
|
6864
6866
|
}).extend({
|
|
6865
6867
|
meta: ObjectMeta,
|
|
6866
6868
|
docExporterId: z232.string(),
|
|
6867
6869
|
sources: z232.array(z232.any()),
|
|
6868
6870
|
isPublic: z232.literal(true),
|
|
6871
|
+
sharedDraftId: z232.string(),
|
|
6869
6872
|
/**
|
|
6870
6873
|
* Whether or not user who is requesting the design system
|
|
6871
6874
|
* has access to the design system's contents.
|