@bilig/protocol 0.11.4 → 0.11.6
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 +33 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -209,6 +209,35 @@ 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
|
+
}
|
|
222
|
+
export interface WorkbookPackageRelationshipSnapshot {
|
|
223
|
+
id: string;
|
|
224
|
+
type: string;
|
|
225
|
+
target: string;
|
|
226
|
+
targetMode?: string;
|
|
227
|
+
}
|
|
228
|
+
export interface WorkbookPivotPackagePartSnapshot {
|
|
229
|
+
path: string;
|
|
230
|
+
xml: string;
|
|
231
|
+
}
|
|
232
|
+
export interface WorkbookPivotArtifactsSnapshot {
|
|
233
|
+
parts: WorkbookPivotPackagePartSnapshot[];
|
|
234
|
+
workbookPivotCachesXml?: string;
|
|
235
|
+
workbookRelationships?: WorkbookPackageRelationshipSnapshot[];
|
|
236
|
+
}
|
|
237
|
+
export interface WorkbookSheetPivotArtifactsSnapshot {
|
|
238
|
+
relationships: WorkbookPackageRelationshipSnapshot[];
|
|
239
|
+
pivotTableDefinitionsXml?: string;
|
|
240
|
+
}
|
|
212
241
|
export type WorkbookChartType = 'column' | 'bar' | 'line' | 'area' | 'pie' | 'scatter';
|
|
213
242
|
export type WorkbookChartSeriesOrientation = 'rows' | 'columns';
|
|
214
243
|
export type WorkbookChartLegendPosition = 'top' | 'right' | 'bottom' | 'left' | 'hidden';
|
|
@@ -626,10 +655,12 @@ export interface WorkbookMetadataSnapshot {
|
|
|
626
655
|
tables?: WorkbookTableSnapshot[];
|
|
627
656
|
spills?: WorkbookSpillSnapshot[];
|
|
628
657
|
pivots?: WorkbookPivotSnapshot[];
|
|
658
|
+
pivotArtifacts?: WorkbookPivotArtifactsSnapshot;
|
|
629
659
|
charts?: WorkbookChartSnapshot[];
|
|
630
660
|
images?: WorkbookImageSnapshot[];
|
|
631
661
|
shapes?: WorkbookShapeSnapshot[];
|
|
632
662
|
styles?: CellStyleRecord[];
|
|
663
|
+
styleArtifacts?: WorkbookStyleArtifactsSnapshot;
|
|
633
664
|
formats?: CellNumberFormatRecord[];
|
|
634
665
|
macroPayloads?: WorkbookMacroPayloadSnapshot[];
|
|
635
666
|
calculationSettings?: WorkbookCalculationSettingsSnapshot;
|
|
@@ -661,6 +692,8 @@ export interface SheetMetadataSnapshot {
|
|
|
661
692
|
sheetPr?: WorkbookSheetPrSnapshot;
|
|
662
693
|
ignoredErrors?: WorkbookIgnoredErrorsSnapshot;
|
|
663
694
|
sparklines?: WorkbookSparklinesSnapshot;
|
|
695
|
+
styleArtifacts?: WorkbookSheetStyleArtifactsSnapshot;
|
|
696
|
+
pivotArtifacts?: WorkbookSheetPivotArtifactsSnapshot;
|
|
664
697
|
visibility?: WorkbookSheetVisibilitySnapshot;
|
|
665
698
|
cellMetadataRefs?: WorkbookCellMetadataReferenceSnapshot[];
|
|
666
699
|
}
|