@supernova-studio/client 1.50.1 → 1.50.2
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 +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4426,14 +4426,14 @@ var WorkspaceUntypedData = _zod.z.object({
|
|
|
4426
4426
|
var WorkspaceRoleSchema = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]);
|
|
4427
4427
|
var WorkspaceRole = WorkspaceRoleSchema.enum;
|
|
4428
4428
|
var WorkspaceSeatType = _zod.z.enum(["Full", "Builder", "None"]);
|
|
4429
|
-
var
|
|
4429
|
+
var FULL_SEAT_ROLES = /* @__PURE__ */ new Set([
|
|
4430
4430
|
WorkspaceRole.Owner,
|
|
4431
4431
|
WorkspaceRole.Admin,
|
|
4432
4432
|
WorkspaceRole.Creator,
|
|
4433
4433
|
WorkspaceRole.Contributor
|
|
4434
4434
|
]);
|
|
4435
|
-
var
|
|
4436
|
-
var
|
|
4435
|
+
var BUILDER_SEAT_ROLES = /* @__PURE__ */ new Set([WorkspaceRole.Owner, WorkspaceRole.Admin, WorkspaceRole.Creator]);
|
|
4436
|
+
var NONE_SEAT_ROLES = /* @__PURE__ */ new Set([WorkspaceRole.Viewer, WorkspaceRole.Billing]);
|
|
4437
4437
|
var MAX_MEMBERS_COUNT = 100;
|
|
4438
4438
|
var UserInvite = _zod.z.object({
|
|
4439
4439
|
email: _zod.z.string().email().trim().transform((value) => value.toLowerCase()),
|