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