@bilig/protocol 0.10.52 → 0.10.54
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 +14 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -579,6 +579,17 @@ export interface WorkbookPrinterSettingsSnapshot {
|
|
|
579
579
|
export interface WorkbookSheetPrSnapshot {
|
|
580
580
|
xml: string;
|
|
581
581
|
}
|
|
582
|
+
export type WorkbookSheetVisibilitySnapshot = 'hidden' | 'veryHidden';
|
|
583
|
+
export interface WorkbookCellMetadataSnapshot {
|
|
584
|
+
relationshipTarget: string;
|
|
585
|
+
metadataXml: string;
|
|
586
|
+
}
|
|
587
|
+
export interface WorkbookCellMetadataReferenceSnapshot {
|
|
588
|
+
address: string;
|
|
589
|
+
cellSignature: string;
|
|
590
|
+
cm?: string;
|
|
591
|
+
vm?: string;
|
|
592
|
+
}
|
|
582
593
|
export interface WorkbookMetadataSnapshot {
|
|
583
594
|
properties?: WorkbookPropertySnapshot[];
|
|
584
595
|
definedNames?: WorkbookDefinedNameSnapshot[];
|
|
@@ -593,6 +604,7 @@ export interface WorkbookMetadataSnapshot {
|
|
|
593
604
|
macroPayloads?: WorkbookMacroPayloadSnapshot[];
|
|
594
605
|
calculationSettings?: WorkbookCalculationSettingsSnapshot;
|
|
595
606
|
volatileContext?: WorkbookVolatileContextSnapshot;
|
|
607
|
+
cellMetadata?: WorkbookCellMetadataSnapshot;
|
|
596
608
|
}
|
|
597
609
|
export interface SheetMetadataSnapshot {
|
|
598
610
|
rows?: WorkbookAxisEntrySnapshot[];
|
|
@@ -616,6 +628,8 @@ export interface SheetMetadataSnapshot {
|
|
|
616
628
|
legacyCommentVml?: WorkbookLegacyCommentVmlSnapshot;
|
|
617
629
|
printerSettings?: WorkbookPrinterSettingsSnapshot[];
|
|
618
630
|
sheetPr?: WorkbookSheetPrSnapshot;
|
|
631
|
+
visibility?: WorkbookSheetVisibilitySnapshot;
|
|
632
|
+
cellMetadataRefs?: WorkbookCellMetadataReferenceSnapshot[];
|
|
619
633
|
}
|
|
620
634
|
export interface WorkbookSnapshot {
|
|
621
635
|
version: 1;
|