@bilig/protocol 0.1.52 → 0.1.53
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 +11 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -383,6 +383,15 @@ export interface WorkbookConditionalFormatSnapshot {
|
|
|
383
383
|
stopIfTrue?: boolean;
|
|
384
384
|
priority?: number;
|
|
385
385
|
}
|
|
386
|
+
export interface WorkbookSheetProtectionSnapshot {
|
|
387
|
+
sheetName: string;
|
|
388
|
+
hideFormulas?: boolean;
|
|
389
|
+
}
|
|
390
|
+
export interface WorkbookRangeProtectionSnapshot {
|
|
391
|
+
id: string;
|
|
392
|
+
range: CellRangeRef;
|
|
393
|
+
hideFormulas?: boolean;
|
|
394
|
+
}
|
|
386
395
|
export interface WorkbookCommentEntrySnapshot {
|
|
387
396
|
id: string;
|
|
388
397
|
body: string;
|
|
@@ -423,10 +432,12 @@ export interface SheetMetadataSnapshot {
|
|
|
423
432
|
styleRanges?: SheetStyleRangeSnapshot[];
|
|
424
433
|
formatRanges?: SheetFormatRangeSnapshot[];
|
|
425
434
|
freezePane?: WorkbookFreezePaneSnapshot;
|
|
435
|
+
sheetProtection?: WorkbookSheetProtectionSnapshot;
|
|
426
436
|
filters?: CellRangeRef[];
|
|
427
437
|
sorts?: WorkbookSortSnapshot[];
|
|
428
438
|
validations?: WorkbookDataValidationSnapshot[];
|
|
429
439
|
conditionalFormats?: WorkbookConditionalFormatSnapshot[];
|
|
440
|
+
protectedRanges?: WorkbookRangeProtectionSnapshot[];
|
|
430
441
|
commentThreads?: WorkbookCommentThreadSnapshot[];
|
|
431
442
|
notes?: WorkbookNoteSnapshot[];
|
|
432
443
|
}
|