@supernova-studio/client 0.54.18 → 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.d.mts +177 -7
- package/dist/index.d.ts +177 -7
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/design-system.ts +8 -3
package/dist/index.mjs
CHANGED
|
@@ -5086,11 +5086,15 @@ var DTODesignSystem = DesignSystem.omit({
|
|
|
5086
5086
|
}).extend({
|
|
5087
5087
|
meta: ObjectMeta,
|
|
5088
5088
|
docExporterId: z175.string(),
|
|
5089
|
-
sources: z175.array(z175.any())
|
|
5089
|
+
sources: z175.array(z175.any()),
|
|
5090
|
+
role: WorkspaceRoleSchema.optional()
|
|
5090
5091
|
});
|
|
5091
5092
|
var DTODesignSystemCreateResponse = z175.object({
|
|
5092
5093
|
designSystem: DTODesignSystem
|
|
5093
5094
|
});
|
|
5095
|
+
var DTODesignSystemsListResponse = z175.object({
|
|
5096
|
+
designSystems: DTODesignSystem.array()
|
|
5097
|
+
});
|
|
5094
5098
|
var DTODesignSystemCreateInput = z175.object({
|
|
5095
5099
|
workspaceId: z175.string(),
|
|
5096
5100
|
meta: ObjectMeta.optional(),
|
|
@@ -11635,6 +11639,7 @@ export {
|
|
|
11635
11639
|
DTODesignSystemVersionJobStatusResponse,
|
|
11636
11640
|
DTODesignSystemVersionJobsResponse,
|
|
11637
11641
|
DTODesignSystemVersionsListResponse,
|
|
11642
|
+
DTODesignSystemsListResponse,
|
|
11638
11643
|
DTODiffCountBase,
|
|
11639
11644
|
DTODocumentationDraftChangeType,
|
|
11640
11645
|
DTODocumentationDraftState,
|