@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.
- package/dist/generated/client.d.ts +13 -0
- package/dist/generated/client.d.ts.map +1 -1
- package/dist/generated/contract.cjs +73 -4
- package/dist/generated/contract.d.ts.map +1 -1
- package/dist/generated/contract.js +73 -4
- package/package.json +6 -6
- package/tools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/__pycache__/intent_dispatch_generated.cpython-312.pyc +0 -0
- package/tools/tools-policy.json +1 -1
|
@@ -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;
|