@supernova-studio/model 0.55.29 → 0.55.31
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 +18 -2
- package/dist/index.d.ts +18 -2
- 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/dsm/elements/raw-element.ts +2 -2
- package/src/dsm/membership/design-system-membership.ts +1 -0
- package/src/dsm/membership/invitations.ts +2 -0
- package/src/utils/common.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4346,7 +4346,8 @@ var DesignSystemInvitation = z132.object({
|
|
|
4346
4346
|
id: z132.string(),
|
|
4347
4347
|
designSystemId: z132.string(),
|
|
4348
4348
|
workspaceInvitationId: z132.string(),
|
|
4349
|
-
designSystemRole: DesignSystemRole.optional()
|
|
4349
|
+
designSystemRole: DesignSystemRole.optional(),
|
|
4350
|
+
workspaceRole: WorkspaceRoleSchema.optional()
|
|
4350
4351
|
});
|
|
4351
4352
|
|
|
4352
4353
|
// src/dsm/membership/design-system-membership.ts
|
|
@@ -4355,7 +4356,8 @@ var DesignSystemMembership = z133.object({
|
|
|
4355
4356
|
userId: z133.string(),
|
|
4356
4357
|
designSystemId: z133.string(),
|
|
4357
4358
|
designSystemRole: DesignSystemRole.optional(),
|
|
4358
|
-
workspaceMembershipId: z133.string()
|
|
4359
|
+
workspaceMembershipId: z133.string(),
|
|
4360
|
+
workspaceRole: WorkspaceRoleSchema.optional()
|
|
4359
4361
|
});
|
|
4360
4362
|
var DesignSystemMembers = z133.object({
|
|
4361
4363
|
members: DesignSystemMembership.array(),
|