@supernova-studio/client 0.55.14 → 0.55.15
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 +34 -0
- package/dist/index.d.ts +34 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/design-system.ts +7 -0
package/package.json
CHANGED
|
@@ -14,6 +14,13 @@ export const DTODesignSystem = DesignSystem.omit({
|
|
|
14
14
|
meta: ObjectMeta,
|
|
15
15
|
docExporterId: z.string(),
|
|
16
16
|
sources: z.array(z.any()),
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Whether or not user who is requesting the design system
|
|
20
|
+
* has access to the design system's contents.
|
|
21
|
+
*/
|
|
22
|
+
isAvailableToUser: z.boolean(),
|
|
23
|
+
|
|
17
24
|
role: WorkspaceRoleSchema.optional(),
|
|
18
25
|
});
|
|
19
26
|
|