@elyx-code/project-logic-tree 0.0.7151 → 0.0.7153
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.cjs +240 -240
- package/dist/index.d.ts +10 -1
- package/dist/index.js +42835 -42599
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16016,6 +16016,8 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
16016
16016
|
|
|
16017
16017
|
export declare function concatLists(base: unknown, ...others: unknown[]): any[];
|
|
16018
16018
|
|
|
16019
|
+
export declare const CONDITION_TYPE_OPTIONS: readonly ["List of items", "List from cell range", "Number greater than", "Number greater than or equal", "Number less than", "Number less than or equal", "Number equal to", "Number not equal to", "Number between", "Number not between", "Text contains", "Text does not contain", "Text starts with", "Text ends with", "Text equals", "Text is valid email", "Text is valid URL", "Date is", "Date is before", "Date is after", "Date is on or before", "Date is on or after", "Date is between", "Date is not between", "Date is valid", "Checkbox", "Custom formula"];
|
|
16020
|
+
|
|
16019
16021
|
export declare enum ConditionDependencyField {
|
|
16020
16022
|
Parent = "parent"
|
|
16021
16023
|
}
|
|
@@ -24208,7 +24210,14 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
24208
24210
|
TooShort = "too-short",
|
|
24209
24211
|
ConditionTypeEmpty = "condition-type-empty",
|
|
24210
24212
|
InvalidConditionType = "invalid-condition-type",
|
|
24211
|
-
ConditionValuesMustBeArray = "condition-values-must-be-array"
|
|
24213
|
+
ConditionValuesMustBeArray = "condition-values-must-be-array",
|
|
24214
|
+
ConditionValuesInvalidFormula = "condition-values-invalid-formula",
|
|
24215
|
+
ConditionValuesSingleNumberRequired = "condition-values-single-number-required",
|
|
24216
|
+
ConditionValuesTwoNumbersRequired = "condition-values-two-numbers-required",
|
|
24217
|
+
ConditionValuesSingleRangeRequired = "condition-values-single-range-required",
|
|
24218
|
+
ConditionValuesSingleTextRequired = "condition-values-single-text-required",
|
|
24219
|
+
ConditionValuesListEmpty = "condition-values-list-empty",
|
|
24220
|
+
ConditionValuesNoValuesRequired = "condition-values-no-values-required"
|
|
24212
24221
|
}
|
|
24213
24222
|
|
|
24214
24223
|
export declare enum GoogleSheetsAddNamedRangeValidationErrorCodes {
|