@superdoc-dev/sdk 1.6.0-next.46 → 1.6.0-next.48

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.
@@ -9694,6 +9694,16 @@ export type DocExtractResult = {
9694
9694
  type: string;
9695
9695
  text: string;
9696
9696
  headingLevel?: number;
9697
+ tableContext?: {
9698
+ tableOrdinal: number;
9699
+ parentTableOrdinal?: number;
9700
+ parentRowIndex?: number;
9701
+ parentColumnIndex?: number;
9702
+ rowIndex: number;
9703
+ columnIndex: number;
9704
+ rowspan: number;
9705
+ colspan: number;
9706
+ };
9697
9707
  }>;
9698
9708
  comments: Array<{
9699
9709
  entityId: string;