@supernova-studio/model 0.58.2 → 0.58.4
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 +8 -0
- package/dist/index.d.ts +8 -0
- 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/workspace/workspace-membership.ts +2 -0
package/dist/index.mjs
CHANGED
|
@@ -4412,13 +4412,15 @@ var WorkspaceMembership = z132.object({
|
|
|
4412
4412
|
userId: z132.string(),
|
|
4413
4413
|
workspaceId: z132.string(),
|
|
4414
4414
|
workspaceRole: z132.nativeEnum(WorkspaceRole),
|
|
4415
|
-
notificationSettings: UserNotificationSettings
|
|
4415
|
+
notificationSettings: UserNotificationSettings,
|
|
4416
|
+
isPrimaryOwner: z132.boolean().nullish()
|
|
4416
4417
|
});
|
|
4417
4418
|
var UpdateMembershipRolesInput = z132.object({
|
|
4418
4419
|
members: z132.array(
|
|
4419
4420
|
z132.object({
|
|
4420
4421
|
userId: z132.string(),
|
|
4421
|
-
role: z132.nativeEnum(WorkspaceRole)
|
|
4422
|
+
role: z132.nativeEnum(WorkspaceRole),
|
|
4423
|
+
isPrimaryOwner: z132.boolean().optional()
|
|
4422
4424
|
})
|
|
4423
4425
|
)
|
|
4424
4426
|
});
|