@bilig/protocol 0.11.23 → 0.11.24
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 +4 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -523,12 +523,15 @@ export interface WorkbookCheckboxValidationRuleSnapshot {
|
|
|
523
523
|
checkedValue?: LiteralInput;
|
|
524
524
|
uncheckedValue?: LiteralInput;
|
|
525
525
|
}
|
|
526
|
+
export interface WorkbookAnyValidationRuleSnapshot {
|
|
527
|
+
kind: 'any';
|
|
528
|
+
}
|
|
526
529
|
export interface WorkbookScalarValidationRuleSnapshot {
|
|
527
530
|
kind: 'whole' | 'decimal' | 'date' | 'time' | 'textLength';
|
|
528
531
|
operator: WorkbookValidationComparisonOperator;
|
|
529
532
|
values: LiteralInput[];
|
|
530
533
|
}
|
|
531
|
-
export type WorkbookDataValidationRuleSnapshot = WorkbookListValidationRuleSnapshot | WorkbookCheckboxValidationRuleSnapshot | WorkbookScalarValidationRuleSnapshot;
|
|
534
|
+
export type WorkbookDataValidationRuleSnapshot = WorkbookListValidationRuleSnapshot | WorkbookCheckboxValidationRuleSnapshot | WorkbookAnyValidationRuleSnapshot | WorkbookScalarValidationRuleSnapshot;
|
|
532
535
|
export interface WorkbookDataValidationSnapshot {
|
|
533
536
|
range: CellRangeRef;
|
|
534
537
|
rule: WorkbookDataValidationRuleSnapshot;
|