@supernova-studio/client 0.55.20 → 0.55.22
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 +56 -0
- package/dist/index.d.ts +56 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3621,10 +3621,20 @@ var DesignSystemInvite = z115.object({
|
|
|
3621
3621
|
*/
|
|
3622
3622
|
designSystemRole: DesignSystemRole.optional()
|
|
3623
3623
|
});
|
|
3624
|
+
var DesignSystemMemberUpdate = z115.object({
|
|
3625
|
+
userId: z115.string(),
|
|
3626
|
+
designSystemRole: DesignSystemRole.nullable()
|
|
3627
|
+
});
|
|
3628
|
+
var DesignSystemInviteUpdate = z115.object({
|
|
3629
|
+
inviteId: z115.string(),
|
|
3630
|
+
designSystemRole: DesignSystemRole.nullable()
|
|
3631
|
+
});
|
|
3624
3632
|
var DesignSystemMembershipUpdates = z115.object({
|
|
3625
3633
|
usersToInvite: DesignSystemUserInvitation.array().optional(),
|
|
3626
3634
|
invitesToInvite: DesignSystemPendingMemberInvitation.array().optional(),
|
|
3627
3635
|
emailsToInvite: DesignSystemInvite.array().optional(),
|
|
3636
|
+
usersToUpdate: DesignSystemMemberUpdate.array().optional(),
|
|
3637
|
+
invitesToUpdate: DesignSystemInviteUpdate.array().optional(),
|
|
3628
3638
|
removeUserIds: z115.string().array().optional(),
|
|
3629
3639
|
deleteInvitationIds: z115.string().array().optional()
|
|
3630
3640
|
});
|