@bilig/protocol 0.11.2 → 0.11.5
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 +29 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -209,6 +209,25 @@ export interface WorkbookPivotSnapshot {
|
|
|
209
209
|
rows: number;
|
|
210
210
|
cols: number;
|
|
211
211
|
}
|
|
212
|
+
export interface WorkbookPackageRelationshipSnapshot {
|
|
213
|
+
id: string;
|
|
214
|
+
type: string;
|
|
215
|
+
target: string;
|
|
216
|
+
targetMode?: string;
|
|
217
|
+
}
|
|
218
|
+
export interface WorkbookPivotPackagePartSnapshot {
|
|
219
|
+
path: string;
|
|
220
|
+
xml: string;
|
|
221
|
+
}
|
|
222
|
+
export interface WorkbookPivotArtifactsSnapshot {
|
|
223
|
+
parts: WorkbookPivotPackagePartSnapshot[];
|
|
224
|
+
workbookPivotCachesXml?: string;
|
|
225
|
+
workbookRelationships?: WorkbookPackageRelationshipSnapshot[];
|
|
226
|
+
}
|
|
227
|
+
export interface WorkbookSheetPivotArtifactsSnapshot {
|
|
228
|
+
relationships: WorkbookPackageRelationshipSnapshot[];
|
|
229
|
+
pivotTableDefinitionsXml?: string;
|
|
230
|
+
}
|
|
212
231
|
export type WorkbookChartType = 'column' | 'bar' | 'line' | 'area' | 'pie' | 'scatter';
|
|
213
232
|
export type WorkbookChartSeriesOrientation = 'rows' | 'columns';
|
|
214
233
|
export type WorkbookChartLegendPosition = 'top' | 'right' | 'bottom' | 'left' | 'hidden';
|
|
@@ -602,6 +621,12 @@ export interface WorkbookPrinterSettingsSnapshot {
|
|
|
602
621
|
export interface WorkbookSheetPrSnapshot {
|
|
603
622
|
xml: string;
|
|
604
623
|
}
|
|
624
|
+
export interface WorkbookIgnoredErrorsSnapshot {
|
|
625
|
+
xml: string;
|
|
626
|
+
}
|
|
627
|
+
export interface WorkbookSparklinesSnapshot {
|
|
628
|
+
xml: string;
|
|
629
|
+
}
|
|
605
630
|
export type WorkbookSheetVisibilitySnapshot = 'hidden' | 'veryHidden';
|
|
606
631
|
export interface WorkbookCellMetadataSnapshot {
|
|
607
632
|
relationshipTarget: string;
|
|
@@ -620,6 +645,7 @@ export interface WorkbookMetadataSnapshot {
|
|
|
620
645
|
tables?: WorkbookTableSnapshot[];
|
|
621
646
|
spills?: WorkbookSpillSnapshot[];
|
|
622
647
|
pivots?: WorkbookPivotSnapshot[];
|
|
648
|
+
pivotArtifacts?: WorkbookPivotArtifactsSnapshot;
|
|
623
649
|
charts?: WorkbookChartSnapshot[];
|
|
624
650
|
images?: WorkbookImageSnapshot[];
|
|
625
651
|
shapes?: WorkbookShapeSnapshot[];
|
|
@@ -653,6 +679,9 @@ export interface SheetMetadataSnapshot {
|
|
|
653
679
|
legacyCommentVml?: WorkbookLegacyCommentVmlSnapshot;
|
|
654
680
|
printerSettings?: WorkbookPrinterSettingsSnapshot[];
|
|
655
681
|
sheetPr?: WorkbookSheetPrSnapshot;
|
|
682
|
+
ignoredErrors?: WorkbookIgnoredErrorsSnapshot;
|
|
683
|
+
sparklines?: WorkbookSparklinesSnapshot;
|
|
684
|
+
pivotArtifacts?: WorkbookSheetPivotArtifactsSnapshot;
|
|
656
685
|
visibility?: WorkbookSheetVisibilitySnapshot;
|
|
657
686
|
cellMetadataRefs?: WorkbookCellMetadataReferenceSnapshot[];
|
|
658
687
|
}
|