@elyx-code/project-logic-tree 0.0.7158 → 0.0.7160

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 CHANGED
@@ -16016,7 +16016,7 @@ 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", "Is empty", "Is not empty", "Checkbox", "Custom formula"];
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
16020
 
16021
16021
  export declare enum ConditionDependencyField {
16022
16022
  Parent = "parent"
@@ -23510,6 +23510,8 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
23510
23510
 
23511
23511
  export declare const getTimezoneOffsetOperation: IActionDescriptorTransfer;
23512
23512
 
23513
+ export declare function getTopLeftCellFromRange(rangeObj: any): string;
23514
+
23513
23515
  /**
23514
23516
  * Given two function-declarations or action-descriptors
23515
23517
  * That could be implementations or extensions of each other
@@ -27657,6 +27659,15 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
27657
27659
 
27658
27660
  export declare type IsoWeekday1Mon7Sun = 1 | 2 | 3 | 4 | 5 | 6 | 7;
27659
27661
 
27662
+ export declare interface ISpreadsheetRangeData {
27663
+ sheet?: string;
27664
+ startRow?: string;
27665
+ startColumn?: string;
27666
+ endRow?: string;
27667
+ endColumn?: string;
27668
+ namedRange?: string;
27669
+ }
27670
+
27660
27671
  export declare function isPromise(obj: any): obj is Promise<any>;
27661
27672
 
27662
27673
  declare interface ISQLFunctionArgument {