@supernova-studio/client 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.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.js
CHANGED
|
@@ -3860,13 +3860,15 @@ var WorkspaceMembership = _zod.z.object({
|
|
|
3860
3860
|
userId: _zod.z.string(),
|
|
3861
3861
|
workspaceId: _zod.z.string(),
|
|
3862
3862
|
workspaceRole: _zod.z.nativeEnum(WorkspaceRole),
|
|
3863
|
-
notificationSettings: UserNotificationSettings
|
|
3863
|
+
notificationSettings: UserNotificationSettings,
|
|
3864
|
+
isPrimaryOwner: _zod.z.boolean().nullish()
|
|
3864
3865
|
});
|
|
3865
3866
|
var UpdateMembershipRolesInput = _zod.z.object({
|
|
3866
3867
|
members: _zod.z.array(
|
|
3867
3868
|
_zod.z.object({
|
|
3868
3869
|
userId: _zod.z.string(),
|
|
3869
|
-
role: _zod.z.nativeEnum(WorkspaceRole)
|
|
3870
|
+
role: _zod.z.nativeEnum(WorkspaceRole),
|
|
3871
|
+
isPrimaryOwner: _zod.z.boolean().optional()
|
|
3870
3872
|
})
|
|
3871
3873
|
)
|
|
3872
3874
|
});
|