@supernova-studio/client 1.0.0-alpha.16 → 1.0.0-alpha.17

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 CHANGED
@@ -13577,16 +13577,19 @@ var DocsStructureRepository = class {
13577
13577
  const localActions = this.localActions.filter((a) => a.tId && !executedTransactionIds.has(a.tId));
13578
13578
  this.localActions = localActions;
13579
13579
  const { pages, groups } = applyActionsLocally(this.designSystemVersionId, yState, localActions);
13580
- const hierarchy = computeDocsHierarchy({
13581
- pages,
13582
- groups,
13583
- approvals: yState.approvals,
13584
- groupSnapshots: yState.groupSnapshots,
13585
- pageContentHashes: yState.pageContentHashes,
13586
- pageSnapshots: yState.pageSnapshots,
13587
- settings: yState.settings,
13588
- pageLiveblockRoomIds: yState.pageLiveblockRoomIds
13589
- });
13580
+ const hierarchy = computeDocsHierarchy(
13581
+ {
13582
+ pages,
13583
+ groups,
13584
+ approvals: yState.approvals,
13585
+ groupSnapshots: yState.groupSnapshots,
13586
+ pageContentHashes: yState.pageContentHashes,
13587
+ pageSnapshots: yState.pageSnapshots,
13588
+ settings: yState.settings,
13589
+ pageLiveblockRoomIds: yState.pageLiveblockRoomIds
13590
+ },
13591
+ { includeDeletedContent: true }
13592
+ );
13590
13593
  return hierarchy;
13591
13594
  }
13592
13595
  onYUpdate() {