@elyx-code/project-logic-tree 0.0.7149 → 0.0.7150

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.
Files changed (4) hide show
  1. package/dist/index.cjs +301 -301
  2. package/dist/index.d.ts +11 -109
  3. package/dist/index.js +50715 -51256
  4. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -10516,49 +10516,6 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
10516
10516
  };
10517
10517
  };
10518
10518
  };
10519
- "external-integration--google-sheet--set-background-color": {
10520
- id: ExternalIntegrationOperations;
10521
- inputs: {
10522
- connection: {
10523
- id: string;
10524
- dataType: {
10525
- id: string;
10526
- };
10527
- };
10528
- spreadsheetId: {
10529
- id: string;
10530
- dataType: {
10531
- id: string;
10532
- };
10533
- };
10534
- range: {
10535
- id: string;
10536
- dataType: {
10537
- id: string;
10538
- };
10539
- };
10540
- color: {
10541
- id: string;
10542
- dataType: {
10543
- id: string;
10544
- };
10545
- };
10546
- };
10547
- dataType: {
10548
- id: string;
10549
- entity: {
10550
- id: string;
10551
- properties: {
10552
- success: {
10553
- id: string;
10554
- dataType: {
10555
- id: string;
10556
- };
10557
- };
10558
- };
10559
- };
10560
- };
10561
- };
10562
10519
  "external-integration--google-sheet--merge-unmerge-cells": {
10563
10520
  id: ExternalIntegrationOperations;
10564
10521
  inputs: {
@@ -20522,12 +20479,11 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
20522
20479
  GoogleSheetsRenameSheet = "external-integration--google-sheet--rename-sheet",// DONE
20523
20480
  GoogleSheetsCopySheet = "external-integration--google-sheet--copy-sheet",// DONE
20524
20481
  GoogleSheetsClearSheet = "external-integration--google-sheet--clear-sheet",// DONE
20525
- GoogleSheetsBatchGetValues = "external-integration--google-sheet--batch-get-values",
20526
- GoogleSheetsFormatCells = "external-integration--google-sheet--format-cells",
20482
+ GoogleSheetsBatchGetValues = "external-integration--google-sheet--batch-get-values",// DONE
20483
+ GoogleSheetsFormatCells = "external-integration--google-sheet--format-cells",// DONE
20527
20484
  GoogleSheetsSetNumberFormat = "external-integration--google-sheet--set-number-format",
20528
- GoogleSheetsSetBackgroundColor = "external-integration--google-sheet--set-background-color",
20529
20485
  GoogleSheetsMergeUnmergeCells = "external-integration--google-sheet--merge-unmerge-cells",
20530
- GoogleSheetsAutoResizeDimensions = "external-integration--google-sheet--auto-resize-dimensions",
20486
+ GoogleSheetsAutoResizeDimensions = "external-integration--google-sheet--auto-resize-dimensions",// DONE
20531
20487
  GoogleSheetsFindAndReplace = "external-integration--google-sheet--find-and-replace",
20532
20488
  GoogleSheetsAddDataValidation = "external-integration--google-sheet--add-data-validation",
20533
20489
  GoogleSheetsSortRange = "external-integration--google-sheet--sort-range",
@@ -20550,7 +20506,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
20550
20506
  GoogleSheetsAddBanding = "external-integration--google-sheet--add-banding",
20551
20507
  GoogleSheetsAddNamedRange = "external-integration--google-sheet--add-named-range",
20552
20508
  GoogleSheetsSetCellNote = "external-integration--google-sheet--set-cell-note",
20553
- GoogleSheetsResizeDimension = "external-integration--google-sheet--resize-dimension",
20509
+ GoogleSheetsResizeDimension = "external-integration--google-sheet--resize-dimension",// DONE
20554
20510
  GoogleSheetsCloneSheet = "external-integration--google-sheet--clone-sheet"
20555
20511
  }
20556
20512
 
@@ -32316,14 +32272,6 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
32316
32272
  };
32317
32273
  }
32318
32274
 
32319
- export declare class OperationsImplementationsGoogleSheetsSetBackgroundColorModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
32320
- manifest: ExtensionManifest;
32321
- module: {
32322
- init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
32323
- main: (entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
32324
- };
32325
- }
32326
-
32327
32275
  export declare class OperationsImplementationsGoogleSheetsSetCellNoteModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
32328
32276
  manifest: ExtensionManifest;
32329
32277
  module: {
@@ -34867,7 +34815,13 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
34867
34815
 
34868
34816
  export declare function parseSpreadsheetRangeToDimensionRange(rangeObj: any, options?: RangeParseOptions): any;
34869
34817
 
34870
- export declare function parseSpreadsheetRangeToGridRange(rangeObj: any, options?: RangeParseOptions): any;
34818
+ export declare function parseSpreadsheetRangeToGridRange(rangeObj: any, options?: RangeParseOptions): {
34819
+ sheetId?: number;
34820
+ startRowIndex?: number;
34821
+ endRowIndex?: number;
34822
+ startColumnIndex?: number;
34823
+ endColumnIndex?: number;
34824
+ };
34871
34825
 
34872
34826
  export declare const PASS_THROUGH_CALLABLE_ENTITIES_EXPLANATION: string;
34873
34827
 
@@ -37381,58 +37335,6 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
37381
37335
  */
37382
37336
  export declare function set<T extends object = any>(obj: T, path: PathInput, value: any, options?: SetOptions): T;
37383
37337
 
37384
- export declare const setBackgroundColorActionRef: IActionDescriptorReference;
37385
-
37386
- export declare const setBackgroundColorColorInput: IValueDescriptorTransfer;
37387
-
37388
- export declare const setBackgroundColorColorInputDataType: IDataTypeTransfer;
37389
-
37390
- export declare const setBackgroundColorColorInputDTParentRef: IValueDescriptorReference;
37391
-
37392
- export declare const setBackgroundColorColorInputParentRef: IActionDescriptorReference;
37393
-
37394
- export declare const setBackgroundColorConnectionInput: IValueDescriptorTransfer;
37395
-
37396
- export declare const setBackgroundColorConnectionInputDataType: IDataTypeTransfer;
37397
-
37398
- export declare const setBackgroundColorConnectionInputDTParentRef: IValueDescriptorReference;
37399
-
37400
- export declare const setBackgroundColorConnectionInputParentRef: IActionDescriptorReference;
37401
-
37402
- export declare const setBackgroundColorIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
37403
-
37404
- export declare const setBackgroundColorRangeInput: IValueDescriptorTransfer;
37405
-
37406
- export declare const setBackgroundColorRangeInputDataType: IDataTypeTransfer;
37407
-
37408
- export declare const setBackgroundColorRangeInputDTParentRef: IValueDescriptorReference;
37409
-
37410
- export declare const setBackgroundColorRangeInputParentRef: IActionDescriptorReference;
37411
-
37412
- export declare const setBackgroundColorResponseDataType: IDataTypeTransfer;
37413
-
37414
- export declare const setBackgroundColorResponseDTParentRef: IActionDescriptorReference;
37415
-
37416
- export declare const setBackgroundColorResponseEntity: IDefinitionEntityTransfer;
37417
-
37418
- export declare const setBackgroundColorResponseEntityParentRef: IDataTypeReference;
37419
-
37420
- export declare const setBackgroundColorResponsePropsParentRef: IDefinitionEntityReference;
37421
-
37422
- export declare const setBackgroundColorSpreadsheetIdInput: IValueDescriptorTransfer;
37423
-
37424
- export declare const setBackgroundColorSpreadsheetIdInputDataType: IDataTypeTransfer;
37425
-
37426
- export declare const setBackgroundColorSpreadsheetIdInputDTParentRef: IValueDescriptorReference;
37427
-
37428
- export declare const setBackgroundColorSpreadsheetIdInputParentRef: IActionDescriptorReference;
37429
-
37430
- export declare const setBackgroundColorSuccessProp: IPropertyTransfer;
37431
-
37432
- export declare const setBackgroundColorSuccessPropDT: IDataTypeTransfer;
37433
-
37434
- export declare const setBackgroundColorSuccessPropDTParentRef: IPropertyReference;
37435
-
37436
37338
  export declare const setCellNoteActionRef: IActionDescriptorReference;
37437
37339
 
37438
37340
  export declare const setCellNoteConnectionInput: IValueDescriptorTransfer;