@supernova-studio/client 0.48.22 → 0.48.23
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 +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3713,12 +3713,15 @@ var DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomRoomUpdate.ex
|
|
|
3713
3713
|
pageItems: _zod.z.array(PageBlockEditorModelV2.or(PageSectionEditorModelV2)),
|
|
3714
3714
|
blockDefinitions: _zod.z.array(PageBlockDefinition)
|
|
3715
3715
|
});
|
|
3716
|
+
var DocumentationPageRestorationType = _zod.z.enum(["Restore", "Revert"]);
|
|
3716
3717
|
var RestoredDocumentationPage = _zod.z.object({
|
|
3717
3718
|
page: DocumentationPageV2,
|
|
3718
3719
|
pageParent: ElementGroup,
|
|
3719
3720
|
pageContent: DocumentationPageContentData,
|
|
3720
3721
|
contentHash: _zod.z.string(),
|
|
3721
|
-
|
|
3722
|
+
snapshotId: _zod.z.string(),
|
|
3723
|
+
roomId: _zod.z.string().optional(),
|
|
3724
|
+
type: DocumentationPageRestorationType
|
|
3722
3725
|
});
|
|
3723
3726
|
var RestoredDocumentationGroup = _zod.z.object({
|
|
3724
3727
|
group: ElementGroup,
|