@supernova-studio/model 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.d.mts +114 -27
- package/dist/index.d.ts +114 -27
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v1.ts +1 -0
- package/src/workspace/workspace-role.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -1897,6 +1897,7 @@ var PageBlockBaseV1 = _zod.z.object({
|
|
|
1897
1897
|
// Image
|
|
1898
1898
|
asset: nullishToOptional(PageBlockAsset),
|
|
1899
1899
|
alignment: nullishToOptional(PageBlockAlignment),
|
|
1900
|
+
imageAlt: nullishToOptional(_zod.z.string()),
|
|
1900
1901
|
// Shortcuts block
|
|
1901
1902
|
shortcuts: nullishToOptional(_zod.z.array(PageBlockShortcut)),
|
|
1902
1903
|
// Guidelines
|
|
@@ -5063,7 +5064,7 @@ var NpmProxyTokenPayload = _zod.z.object({
|
|
|
5063
5064
|
|
|
5064
5065
|
// src/workspace/workspace-role.ts
|
|
5065
5066
|
|
|
5066
|
-
var WorkspaceRoleSchema = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]);
|
|
5067
|
+
var WorkspaceRoleSchema = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]);
|
|
5067
5068
|
var WorkspaceRole = WorkspaceRoleSchema.enum;
|
|
5068
5069
|
|
|
5069
5070
|
// src/workspace/user-invite.ts
|