@bilig/protocol 0.10.63 → 0.11.0
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 +12 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -177,6 +177,16 @@ export interface WorkbookPropertySnapshot {
|
|
|
177
177
|
key: string;
|
|
178
178
|
value: LiteralInput;
|
|
179
179
|
}
|
|
180
|
+
export interface WorkbookProtectionXmlAttributeSnapshot {
|
|
181
|
+
name: string;
|
|
182
|
+
value: string;
|
|
183
|
+
}
|
|
184
|
+
export interface WorkbookProtectionSnapshot {
|
|
185
|
+
lockStructure?: boolean;
|
|
186
|
+
lockWindows?: boolean;
|
|
187
|
+
lockRevision?: boolean;
|
|
188
|
+
xmlAttributes?: WorkbookProtectionXmlAttributeSnapshot[];
|
|
189
|
+
}
|
|
180
190
|
export interface WorkbookSpillSnapshot {
|
|
181
191
|
sheetName: string;
|
|
182
192
|
address: string;
|
|
@@ -295,6 +305,7 @@ export interface WorkbookCalculationSettingsSnapshot {
|
|
|
295
305
|
iterate?: boolean | null;
|
|
296
306
|
iterateCount?: number | null;
|
|
297
307
|
iterateDelta?: string | null;
|
|
308
|
+
fullPrecision?: boolean | null;
|
|
298
309
|
fullCalcOnLoad?: boolean | null;
|
|
299
310
|
concurrentCalc?: boolean | null;
|
|
300
311
|
}
|
|
@@ -603,6 +614,7 @@ export interface WorkbookCellMetadataReferenceSnapshot {
|
|
|
603
614
|
}
|
|
604
615
|
export interface WorkbookMetadataSnapshot {
|
|
605
616
|
properties?: WorkbookPropertySnapshot[];
|
|
617
|
+
workbookProtection?: WorkbookProtectionSnapshot;
|
|
606
618
|
definedNames?: WorkbookDefinedNameSnapshot[];
|
|
607
619
|
tables?: WorkbookTableSnapshot[];
|
|
608
620
|
spills?: WorkbookSpillSnapshot[];
|