@bilig/protocol 0.11.21 → 0.11.22
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/types.d.ts +8 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -663,6 +663,12 @@ export interface WorkbookRichTextCellSnapshot {
|
|
|
663
663
|
export interface WorkbookSheetRichTextArtifactsSnapshot {
|
|
664
664
|
cells: WorkbookRichTextCellSnapshot[];
|
|
665
665
|
}
|
|
666
|
+
export interface WorkbookViewStateSnapshot {
|
|
667
|
+
bookViewsXml: string;
|
|
668
|
+
}
|
|
669
|
+
export interface WorkbookSheetViewStateSnapshot {
|
|
670
|
+
sheetViewsXml: string;
|
|
671
|
+
}
|
|
666
672
|
export interface WorkbookMetadataSnapshot {
|
|
667
673
|
properties?: WorkbookPropertySnapshot[];
|
|
668
674
|
documentPropertyArtifacts?: WorkbookDocumentPropertiesArtifactsSnapshot;
|
|
@@ -678,6 +684,7 @@ export interface WorkbookMetadataSnapshot {
|
|
|
678
684
|
controlArtifacts?: WorkbookControlArtifactsSnapshot;
|
|
679
685
|
dataModelArtifacts?: WorkbookDataModelArtifactsSnapshot;
|
|
680
686
|
threadedCommentArtifacts?: WorkbookThreadedCommentArtifactsSnapshot;
|
|
687
|
+
viewState?: WorkbookViewStateSnapshot;
|
|
681
688
|
charts?: WorkbookChartSnapshot[];
|
|
682
689
|
images?: WorkbookImageSnapshot[];
|
|
683
690
|
shapes?: WorkbookShapeSnapshot[];
|
|
@@ -725,6 +732,7 @@ export interface SheetMetadataSnapshot {
|
|
|
725
732
|
cellMetadataRefs?: WorkbookCellMetadataReferenceSnapshot[];
|
|
726
733
|
richTextArtifacts?: WorkbookSheetRichTextArtifactsSnapshot;
|
|
727
734
|
threadedCommentArtifacts?: WorkbookSheetThreadedCommentArtifactsSnapshot;
|
|
735
|
+
viewState?: WorkbookSheetViewStateSnapshot;
|
|
728
736
|
}
|
|
729
737
|
export interface WorkbookSnapshot {
|
|
730
738
|
version: 1;
|