@elyx-code/project-logic-tree 0.0.7159 → 0.0.7161
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 +256 -256
- package/dist/index.d.ts +19 -2
- package/dist/index.js +41105 -41005
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -20487,7 +20487,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
20487
20487
|
GoogleSheetsMergeUnmergeCells = "external-integration--google-sheet--merge-unmerge-cells",
|
|
20488
20488
|
GoogleSheetsAutoResizeDimensions = "external-integration--google-sheet--auto-resize-dimensions",// DONE
|
|
20489
20489
|
GoogleSheetsFindAndReplace = "external-integration--google-sheet--find-and-replace",// DONE
|
|
20490
|
-
GoogleSheetsAddDataValidation = "external-integration--google-sheet--add-data-validation"
|
|
20490
|
+
GoogleSheetsAddDataValidation = "external-integration--google-sheet--add-data-validation",// DONE
|
|
20491
20491
|
GoogleSheetsSortRange = "external-integration--google-sheet--sort-range",
|
|
20492
20492
|
GoogleSheetsApplyClearFilter = "external-integration--google-sheet--apply-clear-filter",
|
|
20493
20493
|
GoogleSheetsUpdateSpreadsheetProperties = "external-integration--google-sheet--update-spreadsheet-properties",
|
|
@@ -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
|
|
@@ -24455,7 +24457,13 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
24455
24457
|
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24456
24458
|
SpacesIncluded = "spaces-included",
|
|
24457
24459
|
InvalidChars = "invalid-chars",
|
|
24458
|
-
TooShort = "too-short"
|
|
24460
|
+
TooShort = "too-short",
|
|
24461
|
+
SortColumnIndexRequired = "sort-column-index-required",
|
|
24462
|
+
SortColumnIndexInvalid = "sort-column-index-invalid",
|
|
24463
|
+
SortColumnIndexTooLow = "sort-column-index-too-low",
|
|
24464
|
+
SortColumnIndexMustBeInteger = "sort-column-index-must-be-integer",
|
|
24465
|
+
SortOrderRequired = "sort-order-required",
|
|
24466
|
+
SortOrderInvalid = "sort-order-invalid"
|
|
24459
24467
|
}
|
|
24460
24468
|
|
|
24461
24469
|
export declare enum GoogleSheetsUpdateChartSpecValidationErrorCodes {
|
|
@@ -27657,6 +27665,15 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
27657
27665
|
|
|
27658
27666
|
export declare type IsoWeekday1Mon7Sun = 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
27659
27667
|
|
|
27668
|
+
export declare interface ISpreadsheetRangeData {
|
|
27669
|
+
sheet?: string;
|
|
27670
|
+
startRow?: string;
|
|
27671
|
+
startColumn?: string;
|
|
27672
|
+
endRow?: string;
|
|
27673
|
+
endColumn?: string;
|
|
27674
|
+
namedRange?: string;
|
|
27675
|
+
}
|
|
27676
|
+
|
|
27660
27677
|
export declare function isPromise(obj: any): obj is Promise<any>;
|
|
27661
27678
|
|
|
27662
27679
|
declare interface ISQLFunctionArgument {
|