@supernova-studio/model 1.48.9 → 1.48.11
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 +16 -2
- package/dist/index.d.ts +16 -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/dist/index.mjs
CHANGED
|
@@ -5568,7 +5568,8 @@ var WorkspaceMembership = z163.object({
|
|
|
5568
5568
|
workspaceRole: z163.nativeEnum(WorkspaceRole),
|
|
5569
5569
|
seatType: WorkspaceSeatType,
|
|
5570
5570
|
notificationSettings: UserNotificationSettings,
|
|
5571
|
-
isPrimaryOwner: z163.boolean().nullish()
|
|
5571
|
+
isPrimaryOwner: z163.boolean().nullish(),
|
|
5572
|
+
isDeactivated: z163.boolean()
|
|
5572
5573
|
});
|
|
5573
5574
|
var UpdateMembershipRolesInput = z163.object({
|
|
5574
5575
|
members: z163.array(
|
|
@@ -5623,7 +5624,8 @@ var DesignSystemMembership = z166.object({
|
|
|
5623
5624
|
designSystemId: z166.string(),
|
|
5624
5625
|
designSystemRole: DesignSystemRole.optional(),
|
|
5625
5626
|
workspaceMembershipId: z166.string(),
|
|
5626
|
-
workspaceRole: WorkspaceRoleSchema
|
|
5627
|
+
workspaceRole: WorkspaceRoleSchema,
|
|
5628
|
+
isDeactivated: z166.boolean()
|
|
5627
5629
|
});
|
|
5628
5630
|
var DesignSystemMembers = z166.object({
|
|
5629
5631
|
members: DesignSystemMembership.array(),
|