@supernova-studio/client 0.54.17 → 0.54.19

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.mjs CHANGED
@@ -3631,6 +3631,7 @@ var DesignSystem = z117.object({
3631
3631
  isApprovalFeatureEnabled: z117.boolean(),
3632
3632
  approvalRequiredForPublishing: z117.boolean(),
3633
3633
  accessMode: DesignSystemAccessMode,
3634
+ membersGenerated: z117.boolean(),
3634
3635
  createdAt: z117.coerce.date(),
3635
3636
  updatedAt: z117.coerce.date()
3636
3637
  });
@@ -5085,11 +5086,15 @@ var DTODesignSystem = DesignSystem.omit({
5085
5086
  }).extend({
5086
5087
  meta: ObjectMeta,
5087
5088
  docExporterId: z175.string(),
5088
- sources: z175.array(z175.any())
5089
+ sources: z175.array(z175.any()),
5090
+ role: WorkspaceRoleSchema.optional()
5089
5091
  });
5090
5092
  var DTODesignSystemCreateResponse = z175.object({
5091
5093
  designSystem: DTODesignSystem
5092
5094
  });
5095
+ var DTODesignSystemsListResponse = z175.object({
5096
+ designSystems: DTODesignSystem.array()
5097
+ });
5093
5098
  var DTODesignSystemCreateInput = z175.object({
5094
5099
  workspaceId: z175.string(),
5095
5100
  meta: ObjectMeta.optional(),
@@ -11634,6 +11639,7 @@ export {
11634
11639
  DTODesignSystemVersionJobStatusResponse,
11635
11640
  DTODesignSystemVersionJobsResponse,
11636
11641
  DTODesignSystemVersionsListResponse,
11642
+ DTODesignSystemsListResponse,
11637
11643
  DTODiffCountBase,
11638
11644
  DTODocumentationDraftChangeType,
11639
11645
  DTODocumentationDraftState,