@mescius/spread-sheets 18.0.4 → 18.0.6
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.
@@ -38326,31 +38326,31 @@ declare module GC{
|
|
38326
38326
|
*/
|
38327
38327
|
export enum ComparisonOperator{
|
38328
38328
|
/**
|
38329
|
-
|
38329
|
+
The field value must match any one of the given filter array.
|
38330
38330
|
*/
|
38331
38331
|
in= "In",
|
38332
38332
|
/**
|
38333
|
-
|
38333
|
+
The field value must be exactly equal to the target value.
|
38334
38334
|
*/
|
38335
38335
|
equalsTo= "EqualsTo",
|
38336
38336
|
/**
|
38337
|
-
|
38337
|
+
The field value is greater than target value.
|
38338
38338
|
*/
|
38339
38339
|
greaterThan= "GreaterThan",
|
38340
38340
|
/**
|
38341
|
-
|
38341
|
+
The field value is greater than or equal to the target value.
|
38342
38342
|
*/
|
38343
38343
|
greaterThanOrEqualsTo= "GreaterThanOrEqualsTo",
|
38344
38344
|
/**
|
38345
|
-
|
38345
|
+
The field value is less than target value.
|
38346
38346
|
*/
|
38347
38347
|
lessThan= "LessThan",
|
38348
38348
|
/**
|
38349
|
-
|
38349
|
+
The field value is less than or equal to the target value.
|
38350
38350
|
*/
|
38351
38351
|
lessThanOrEqualsTo= "LessThanOrEqualsTo",
|
38352
38352
|
/**
|
38353
|
-
|
38353
|
+
The field value is not equal to the target value.
|
38354
38354
|
*/
|
38355
38355
|
notEqualsTo= "NotEqualsTo"
|
38356
38356
|
}
|
@@ -38690,25 +38690,29 @@ declare module GC{
|
|
38690
38690
|
*/
|
38691
38691
|
export enum StringOperator{
|
38692
38692
|
/**
|
38693
|
-
|
38693
|
+
* The field value must match any one of the given string array.
|
38694
38694
|
*/
|
38695
38695
|
in= "In",
|
38696
38696
|
/**
|
38697
|
-
|
38697
|
+
* The field value must be exactly equal to the target value.
|
38698
38698
|
*/
|
38699
38699
|
equalsTo= "EqualsTo",
|
38700
38700
|
/**
|
38701
|
-
contains
|
38701
|
+
* The field value contains the target substring.
|
38702
38702
|
*/
|
38703
38703
|
contains= "Contains",
|
38704
38704
|
/**
|
38705
|
-
|
38705
|
+
* The field value starts with the target string.
|
38706
38706
|
*/
|
38707
38707
|
startsWith= "StartsWith",
|
38708
38708
|
/**
|
38709
|
-
|
38709
|
+
* The field value ends with the target string.
|
38710
38710
|
*/
|
38711
|
-
endsWith= "EndsWith"
|
38711
|
+
endsWith= "EndsWith",
|
38712
|
+
/**
|
38713
|
+
* The field value is not equal to the target value.
|
38714
|
+
*/
|
38715
|
+
notEqualsTo= "NotEqualsTo"
|
38712
38716
|
}
|
38713
38717
|
|
38714
38718
|
/**
|