@bilig/protocol 0.11.5 → 0.11.7
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 +16 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -209,6 +209,16 @@ export interface WorkbookPivotSnapshot {
|
|
|
209
209
|
rows: number;
|
|
210
210
|
cols: number;
|
|
211
211
|
}
|
|
212
|
+
export interface WorkbookStyleArtifactsSnapshot {
|
|
213
|
+
stylesXml: string;
|
|
214
|
+
}
|
|
215
|
+
export interface WorkbookSheetCellStyleIndexSnapshot {
|
|
216
|
+
address: string;
|
|
217
|
+
styleIndex: number;
|
|
218
|
+
}
|
|
219
|
+
export interface WorkbookSheetStyleArtifactsSnapshot {
|
|
220
|
+
cellStyleIndexes: WorkbookSheetCellStyleIndexSnapshot[];
|
|
221
|
+
}
|
|
212
222
|
export interface WorkbookPackageRelationshipSnapshot {
|
|
213
223
|
id: string;
|
|
214
224
|
type: string;
|
|
@@ -627,6 +637,9 @@ export interface WorkbookIgnoredErrorsSnapshot {
|
|
|
627
637
|
export interface WorkbookSparklinesSnapshot {
|
|
628
638
|
xml: string;
|
|
629
639
|
}
|
|
640
|
+
export interface WorkbookSheetConditionalFormatArtifactsSnapshot {
|
|
641
|
+
xml: string;
|
|
642
|
+
}
|
|
630
643
|
export type WorkbookSheetVisibilitySnapshot = 'hidden' | 'veryHidden';
|
|
631
644
|
export interface WorkbookCellMetadataSnapshot {
|
|
632
645
|
relationshipTarget: string;
|
|
@@ -650,6 +663,7 @@ export interface WorkbookMetadataSnapshot {
|
|
|
650
663
|
images?: WorkbookImageSnapshot[];
|
|
651
664
|
shapes?: WorkbookShapeSnapshot[];
|
|
652
665
|
styles?: CellStyleRecord[];
|
|
666
|
+
styleArtifacts?: WorkbookStyleArtifactsSnapshot;
|
|
653
667
|
formats?: CellNumberFormatRecord[];
|
|
654
668
|
macroPayloads?: WorkbookMacroPayloadSnapshot[];
|
|
655
669
|
calculationSettings?: WorkbookCalculationSettingsSnapshot;
|
|
@@ -672,6 +686,7 @@ export interface SheetMetadataSnapshot {
|
|
|
672
686
|
sorts?: WorkbookSortSnapshot[];
|
|
673
687
|
validations?: WorkbookDataValidationSnapshot[];
|
|
674
688
|
conditionalFormats?: WorkbookConditionalFormatSnapshot[];
|
|
689
|
+
conditionalFormatArtifacts?: WorkbookSheetConditionalFormatArtifactsSnapshot;
|
|
675
690
|
protectedRanges?: WorkbookRangeProtectionSnapshot[];
|
|
676
691
|
commentThreads?: WorkbookCommentThreadSnapshot[];
|
|
677
692
|
notes?: WorkbookNoteSnapshot[];
|
|
@@ -681,6 +696,7 @@ export interface SheetMetadataSnapshot {
|
|
|
681
696
|
sheetPr?: WorkbookSheetPrSnapshot;
|
|
682
697
|
ignoredErrors?: WorkbookIgnoredErrorsSnapshot;
|
|
683
698
|
sparklines?: WorkbookSparklinesSnapshot;
|
|
699
|
+
styleArtifacts?: WorkbookSheetStyleArtifactsSnapshot;
|
|
684
700
|
pivotArtifacts?: WorkbookSheetPivotArtifactsSnapshot;
|
|
685
701
|
visibility?: WorkbookSheetVisibilitySnapshot;
|
|
686
702
|
cellMetadataRefs?: WorkbookCellMetadataReferenceSnapshot[];
|