@bilig/protocol 0.11.6 → 0.11.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/types.d.ts +28 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -229,6 +229,28 @@ export interface WorkbookPivotPackagePartSnapshot {
|
|
|
229
229
|
path: string;
|
|
230
230
|
xml: string;
|
|
231
231
|
}
|
|
232
|
+
export interface WorkbookPreservedPackagePartSnapshot {
|
|
233
|
+
path: string;
|
|
234
|
+
storage: 'base64';
|
|
235
|
+
dataBase64: string;
|
|
236
|
+
byteLength: number;
|
|
237
|
+
}
|
|
238
|
+
export interface WorkbookContentTypeDefaultSnapshot {
|
|
239
|
+
extension: string;
|
|
240
|
+
contentType: string;
|
|
241
|
+
}
|
|
242
|
+
export interface WorkbookContentTypeOverrideSnapshot {
|
|
243
|
+
partName: string;
|
|
244
|
+
contentType: string;
|
|
245
|
+
}
|
|
246
|
+
export interface WorkbookDrawingArtifactsSnapshot {
|
|
247
|
+
parts: WorkbookPreservedPackagePartSnapshot[];
|
|
248
|
+
contentTypeDefaults?: WorkbookContentTypeDefaultSnapshot[];
|
|
249
|
+
contentTypeOverrides?: WorkbookContentTypeOverrideSnapshot[];
|
|
250
|
+
}
|
|
251
|
+
export interface WorkbookSheetDrawingArtifactsSnapshot {
|
|
252
|
+
relationshipTarget: string;
|
|
253
|
+
}
|
|
232
254
|
export interface WorkbookPivotArtifactsSnapshot {
|
|
233
255
|
parts: WorkbookPivotPackagePartSnapshot[];
|
|
234
256
|
workbookPivotCachesXml?: string;
|
|
@@ -637,6 +659,9 @@ export interface WorkbookIgnoredErrorsSnapshot {
|
|
|
637
659
|
export interface WorkbookSparklinesSnapshot {
|
|
638
660
|
xml: string;
|
|
639
661
|
}
|
|
662
|
+
export interface WorkbookSheetConditionalFormatArtifactsSnapshot {
|
|
663
|
+
xml: string;
|
|
664
|
+
}
|
|
640
665
|
export type WorkbookSheetVisibilitySnapshot = 'hidden' | 'veryHidden';
|
|
641
666
|
export interface WorkbookCellMetadataSnapshot {
|
|
642
667
|
relationshipTarget: string;
|
|
@@ -656,6 +681,7 @@ export interface WorkbookMetadataSnapshot {
|
|
|
656
681
|
spills?: WorkbookSpillSnapshot[];
|
|
657
682
|
pivots?: WorkbookPivotSnapshot[];
|
|
658
683
|
pivotArtifacts?: WorkbookPivotArtifactsSnapshot;
|
|
684
|
+
drawingArtifacts?: WorkbookDrawingArtifactsSnapshot;
|
|
659
685
|
charts?: WorkbookChartSnapshot[];
|
|
660
686
|
images?: WorkbookImageSnapshot[];
|
|
661
687
|
shapes?: WorkbookShapeSnapshot[];
|
|
@@ -683,10 +709,12 @@ export interface SheetMetadataSnapshot {
|
|
|
683
709
|
sorts?: WorkbookSortSnapshot[];
|
|
684
710
|
validations?: WorkbookDataValidationSnapshot[];
|
|
685
711
|
conditionalFormats?: WorkbookConditionalFormatSnapshot[];
|
|
712
|
+
conditionalFormatArtifacts?: WorkbookSheetConditionalFormatArtifactsSnapshot;
|
|
686
713
|
protectedRanges?: WorkbookRangeProtectionSnapshot[];
|
|
687
714
|
commentThreads?: WorkbookCommentThreadSnapshot[];
|
|
688
715
|
notes?: WorkbookNoteSnapshot[];
|
|
689
716
|
hyperlinks?: WorkbookHyperlinkSnapshot[];
|
|
717
|
+
drawingArtifacts?: WorkbookSheetDrawingArtifactsSnapshot;
|
|
690
718
|
legacyCommentVml?: WorkbookLegacyCommentVmlSnapshot;
|
|
691
719
|
printerSettings?: WorkbookPrinterSettingsSnapshot[];
|
|
692
720
|
sheetPr?: WorkbookSheetPrSnapshot;
|