@superdoc-dev/sdk 1.8.0-next.6 → 1.8.0-next.8

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.
@@ -9737,6 +9737,13 @@ export type DocExtractResult = {
9737
9737
  nodeId: string;
9738
9738
  type: string;
9739
9739
  text: string;
9740
+ textSpans?: Array<{
9741
+ text: string;
9742
+ trackedChanges?: Array<{
9743
+ entityId: string;
9744
+ type: "insert" | "delete" | "format";
9745
+ }>;
9746
+ }>;
9740
9747
  headingLevel?: number;
9741
9748
  tableContext?: {
9742
9749
  tableOrdinal: number;
@@ -9760,6 +9767,12 @@ export type DocExtractResult = {
9760
9767
  trackedChanges: Array<{
9761
9768
  entityId: string;
9762
9769
  type: "insert" | "delete" | "format";
9770
+ blockIds?: Array<string>;
9771
+ wordRevisionIds?: {
9772
+ insert?: string;
9773
+ delete?: string;
9774
+ format?: string;
9775
+ };
9763
9776
  excerpt?: string;
9764
9777
  author?: string;
9765
9778
  date?: string;