@supernova-studio/model 0.18.0 → 0.19.0
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 +190 -1
- package/dist/index.d.ts +190 -1
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/multiplayer/documentation-page-room.ts +8 -2
package/dist/index.mjs
CHANGED
|
@@ -2987,12 +2987,15 @@ var DesignSystemVersionRoomUpdate = DesignSystemVersionRoomInitialState.extend({
|
|
|
2987
2987
|
|
|
2988
2988
|
// src/multiplayer/documentation-page-room.ts
|
|
2989
2989
|
import { z as z120 } from "zod";
|
|
2990
|
-
import { PageBlockEditorModel } from "@supernova-studio/client";
|
|
2991
2990
|
var DocumentationPageRoom = Entity.extend({
|
|
2992
2991
|
designSystemVersionId: z120.string(),
|
|
2993
2992
|
documentationPageId: z120.string(),
|
|
2994
2993
|
liveblocksId: z120.string()
|
|
2995
2994
|
});
|
|
2995
|
+
var PageBlockEditorModel = z120.object({
|
|
2996
|
+
id: z120.string(),
|
|
2997
|
+
data: PageBlockDataV2
|
|
2998
|
+
});
|
|
2996
2999
|
var DocumentationPageRoomRoomUpdate = z120.object({
|
|
2997
3000
|
page: DocumentationPageV2,
|
|
2998
3001
|
pageParent: ElementGroup
|
|
@@ -4130,6 +4133,7 @@ export {
|
|
|
4130
4133
|
PageBlockDefinitionTextPropertyStyle,
|
|
4131
4134
|
PageBlockDefinitionUntypedPropertyOptions,
|
|
4132
4135
|
PageBlockDefinitionVariant,
|
|
4136
|
+
PageBlockEditorModel,
|
|
4133
4137
|
PageBlockEditorModelV2,
|
|
4134
4138
|
PageBlockFigmaFrameProperties,
|
|
4135
4139
|
PageBlockFrame,
|