@bilig/protocol 0.11.7 → 0.11.9
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 +24 -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;
|
|
@@ -659,6 +681,7 @@ export interface WorkbookMetadataSnapshot {
|
|
|
659
681
|
spills?: WorkbookSpillSnapshot[];
|
|
660
682
|
pivots?: WorkbookPivotSnapshot[];
|
|
661
683
|
pivotArtifacts?: WorkbookPivotArtifactsSnapshot;
|
|
684
|
+
drawingArtifacts?: WorkbookDrawingArtifactsSnapshot;
|
|
662
685
|
charts?: WorkbookChartSnapshot[];
|
|
663
686
|
images?: WorkbookImageSnapshot[];
|
|
664
687
|
shapes?: WorkbookShapeSnapshot[];
|
|
@@ -691,6 +714,7 @@ export interface SheetMetadataSnapshot {
|
|
|
691
714
|
commentThreads?: WorkbookCommentThreadSnapshot[];
|
|
692
715
|
notes?: WorkbookNoteSnapshot[];
|
|
693
716
|
hyperlinks?: WorkbookHyperlinkSnapshot[];
|
|
717
|
+
drawingArtifacts?: WorkbookSheetDrawingArtifactsSnapshot;
|
|
694
718
|
legacyCommentVml?: WorkbookLegacyCommentVmlSnapshot;
|
|
695
719
|
printerSettings?: WorkbookPrinterSettingsSnapshot[];
|
|
696
720
|
sheetPr?: WorkbookSheetPrSnapshot;
|