@supernova-studio/client 1.47.0 → 1.47.1
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 +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4423,6 +4423,14 @@ var WorkspaceUntypedData = _zod.z.object({
|
|
|
4423
4423
|
var WorkspaceRoleSchema = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]);
|
|
4424
4424
|
var WorkspaceRole = WorkspaceRoleSchema.enum;
|
|
4425
4425
|
var WorkspaceSeatType = _zod.z.enum(["Full", "Builder", "None"]);
|
|
4426
|
+
var fullSeatTypeRoles = /* @__PURE__ */ new Set([
|
|
4427
|
+
WorkspaceRole.Owner,
|
|
4428
|
+
WorkspaceRole.Admin,
|
|
4429
|
+
WorkspaceRole.Creator,
|
|
4430
|
+
WorkspaceRole.Contributor
|
|
4431
|
+
]);
|
|
4432
|
+
var builderSeatTypeRoles = /* @__PURE__ */ new Set([WorkspaceRole.Owner, WorkspaceRole.Admin, WorkspaceRole.Creator]);
|
|
4433
|
+
var noneSeatTypeRoles = /* @__PURE__ */ new Set([WorkspaceRole.Viewer, WorkspaceRole.Billing]);
|
|
4426
4434
|
var MAX_MEMBERS_COUNT = 100;
|
|
4427
4435
|
var UserInvite = _zod.z.object({
|
|
4428
4436
|
email: _zod.z.string().email().trim().transform((value) => value.toLowerCase()),
|