@supernova-studio/client 0.53.2 → 0.53.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
@@ -1794,6 +1794,7 @@ var PageBlockBaseV1 = z40.object({
1794
1794
  // Image
1795
1795
  asset: nullishToOptional(PageBlockAsset),
1796
1796
  alignment: nullishToOptional(PageBlockAlignment),
1797
+ imageAlt: nullishToOptional(z40.string()),
1797
1798
  // Shortcuts block
1798
1799
  shortcuts: nullishToOptional(z40.array(PageBlockShortcut)),
1799
1800
  // Guidelines
@@ -4439,7 +4440,7 @@ var NpmPackage = AnyRecord.and(
4439
4440
  var NpmProxyTokenPayload = z163.object({
4440
4441
  npmProxyRegistryConfigId: z163.string()
4441
4442
  });
4442
- var WorkspaceRoleSchema = z164.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]);
4443
+ var WorkspaceRoleSchema = z164.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]);
4443
4444
  var WorkspaceRole = WorkspaceRoleSchema.enum;
4444
4445
  var MAX_MEMBERS_COUNT = 100;
4445
4446
  var UserInvite = z165.object({
@@ -6263,7 +6264,7 @@ var DTOWorkspace = z223.object({
6263
6264
  });
6264
6265
 
6265
6266
  // src/api/dto/workspaces/membership.ts
6266
- var DTOWorkspaceRole = z224.enum(["Owner", "Admin", "Creator", "Viewer", "Billing"]);
6267
+ var DTOWorkspaceRole = z224.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]);
6267
6268
  var DTOUserWorkspaceMembership = z224.object({
6268
6269
  // Workspace the user is a member of
6269
6270
  workspace: DTOWorkspace,