@bilig/protocol 0.10.62 → 0.10.64
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 +15 -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;
|
|
@@ -287,9 +297,11 @@ export interface WorkbookSheetFormatPrSnapshot {
|
|
|
287
297
|
thickBottom?: boolean | null;
|
|
288
298
|
}
|
|
289
299
|
export type WorkbookCalculationMode = 'automatic' | 'manual';
|
|
300
|
+
export type WorkbookDateSystem = '1900' | '1904';
|
|
290
301
|
export interface WorkbookCalculationSettingsSnapshot {
|
|
291
302
|
mode: WorkbookCalculationMode;
|
|
292
303
|
compatibilityMode?: CompatibilityMode;
|
|
304
|
+
dateSystem?: WorkbookDateSystem;
|
|
293
305
|
iterate?: boolean | null;
|
|
294
306
|
iterateCount?: number | null;
|
|
295
307
|
iterateDelta?: string | null;
|
|
@@ -574,6 +586,8 @@ export interface WorkbookHyperlinkSnapshot {
|
|
|
574
586
|
export interface WorkbookLegacyCommentVmlSnapshot {
|
|
575
587
|
relationshipTarget: string;
|
|
576
588
|
vmlXml: string;
|
|
589
|
+
commentsRelationshipTarget?: string;
|
|
590
|
+
commentsXml?: string;
|
|
577
591
|
commentSignature: string;
|
|
578
592
|
}
|
|
579
593
|
export interface WorkbookPrinterSettingsSnapshot {
|
|
@@ -599,6 +613,7 @@ export interface WorkbookCellMetadataReferenceSnapshot {
|
|
|
599
613
|
}
|
|
600
614
|
export interface WorkbookMetadataSnapshot {
|
|
601
615
|
properties?: WorkbookPropertySnapshot[];
|
|
616
|
+
workbookProtection?: WorkbookProtectionSnapshot;
|
|
602
617
|
definedNames?: WorkbookDefinedNameSnapshot[];
|
|
603
618
|
tables?: WorkbookTableSnapshot[];
|
|
604
619
|
spills?: WorkbookSpillSnapshot[];
|