@bilig/protocol 0.11.4 → 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 +21 -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';
|
|
@@ -626,6 +645,7 @@ export interface WorkbookMetadataSnapshot {
|
|
|
626
645
|
tables?: WorkbookTableSnapshot[];
|
|
627
646
|
spills?: WorkbookSpillSnapshot[];
|
|
628
647
|
pivots?: WorkbookPivotSnapshot[];
|
|
648
|
+
pivotArtifacts?: WorkbookPivotArtifactsSnapshot;
|
|
629
649
|
charts?: WorkbookChartSnapshot[];
|
|
630
650
|
images?: WorkbookImageSnapshot[];
|
|
631
651
|
shapes?: WorkbookShapeSnapshot[];
|
|
@@ -661,6 +681,7 @@ export interface SheetMetadataSnapshot {
|
|
|
661
681
|
sheetPr?: WorkbookSheetPrSnapshot;
|
|
662
682
|
ignoredErrors?: WorkbookIgnoredErrorsSnapshot;
|
|
663
683
|
sparklines?: WorkbookSparklinesSnapshot;
|
|
684
|
+
pivotArtifacts?: WorkbookSheetPivotArtifactsSnapshot;
|
|
664
685
|
visibility?: WorkbookSheetVisibilitySnapshot;
|
|
665
686
|
cellMetadataRefs?: WorkbookCellMetadataReferenceSnapshot[];
|
|
666
687
|
}
|