@supernova-studio/model 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 +59 -1
- package/dist/index.d.ts +59 -1
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/membership/design-system-membership.ts +15 -0
package/dist/index.mjs
CHANGED
|
@@ -4065,10 +4065,20 @@ var DesignSystemInvite = z115.object({
|
|
|
4065
4065
|
*/
|
|
4066
4066
|
designSystemRole: DesignSystemRole.optional()
|
|
4067
4067
|
});
|
|
4068
|
+
var DesignSystemMemberUpdate = z115.object({
|
|
4069
|
+
userId: z115.string(),
|
|
4070
|
+
designSystemRole: DesignSystemRole.nullable()
|
|
4071
|
+
});
|
|
4072
|
+
var DesignSystemInviteUpdate = z115.object({
|
|
4073
|
+
inviteId: z115.string(),
|
|
4074
|
+
designSystemRole: DesignSystemRole.nullable()
|
|
4075
|
+
});
|
|
4068
4076
|
var DesignSystemMembershipUpdates = z115.object({
|
|
4069
4077
|
usersToInvite: DesignSystemUserInvitation.array().optional(),
|
|
4070
4078
|
invitesToInvite: DesignSystemPendingMemberInvitation.array().optional(),
|
|
4071
4079
|
emailsToInvite: DesignSystemInvite.array().optional(),
|
|
4080
|
+
usersToUpdate: DesignSystemMemberUpdate.array().optional(),
|
|
4081
|
+
invitesToUpdate: DesignSystemInviteUpdate.array().optional(),
|
|
4072
4082
|
removeUserIds: z115.string().array().optional(),
|
|
4073
4083
|
deleteInvitationIds: z115.string().array().optional()
|
|
4074
4084
|
});
|
|
@@ -5338,6 +5348,8 @@ export {
|
|
|
5338
5348
|
DesignSystemInvite,
|
|
5339
5349
|
DesignSystemInviteEmailData,
|
|
5340
5350
|
DesignSystemInviteEmailRecipient,
|
|
5351
|
+
DesignSystemInviteUpdate,
|
|
5352
|
+
DesignSystemMemberUpdate,
|
|
5341
5353
|
DesignSystemMembers,
|
|
5342
5354
|
DesignSystemMembership,
|
|
5343
5355
|
DesignSystemMembershipUpdates,
|