@bilig/workbook-domain 0.10.20 → 0.10.22
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/index.d.ts +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from './guards.js';
|
|
2
|
-
import type { CellRangeRef, CellNumberFormatRecord, CellStyleRecord, CellStylePatch, LiteralInput, WorkbookCommentThreadSnapshot, WorkbookChartSnapshot, WorkbookConditionalFormatSnapshot, WorkbookDataValidationSnapshot, WorkbookImageSnapshot, WorkbookMergeRangeSnapshot, WorkbookNoteSnapshot, WorkbookRangeProtectionSnapshot, WorkbookSheetProtectionSnapshot, WorkbookShapeSnapshot, WorkbookAxisEntrySnapshot, WorkbookCalculationSettingsSnapshot, WorkbookDefinedNameValueSnapshot, WorkbookPivotValueSnapshot, WorkbookVolatileContextSnapshot } from '@bilig/protocol';
|
|
2
|
+
import type { CellRangeRef, CellNumberFormatRecord, CellStyleRecord, CellStylePatch, LiteralInput, WorkbookAutoFilterSnapshot, WorkbookCommentThreadSnapshot, WorkbookChartSnapshot, WorkbookConditionalFormatSnapshot, WorkbookDataValidationSnapshot, WorkbookImageSnapshot, WorkbookMergeRangeSnapshot, WorkbookNoteSnapshot, WorkbookRangeProtectionSnapshot, WorkbookSheetProtectionSnapshot, WorkbookShapeSnapshot, WorkbookAxisEntrySnapshot, WorkbookCalculationSettingsSnapshot, WorkbookDefinedNameValueSnapshot, WorkbookPivotValueSnapshot, WorkbookVolatileContextSnapshot } from '@bilig/protocol';
|
|
3
3
|
export type ReplicaId = string;
|
|
4
4
|
export type OpId = string;
|
|
5
5
|
export interface Clock {
|
|
@@ -143,7 +143,7 @@ export type WorkbookOp = {
|
|
|
143
143
|
} | {
|
|
144
144
|
kind: 'setFilter';
|
|
145
145
|
sheetName: string;
|
|
146
|
-
range:
|
|
146
|
+
range: WorkbookAutoFilterSnapshot;
|
|
147
147
|
} | {
|
|
148
148
|
kind: 'clearFilter';
|
|
149
149
|
sheetName: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/workbook-domain",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.22",
|
|
4
4
|
"description": "Transport-neutral workbook domain ops and batch types for bilig.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bilig",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"build": "tsc -p tsconfig.json"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@bilig/protocol": "0.10.
|
|
43
|
+
"@bilig/protocol": "0.10.22"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=24.0.0"
|