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

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 +361 -361
  2. package/dist/index.d.ts +252 -2
  3. package/dist/index.js +77747 -77229
  4. 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
  }
@@ -20484,7 +20486,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
20484
20486
  GoogleSheetsSetNumberFormat = "external-integration--google-sheet--set-number-format",
20485
20487
  GoogleSheetsMergeUnmergeCells = "external-integration--google-sheet--merge-unmerge-cells",
20486
20488
  GoogleSheetsAutoResizeDimensions = "external-integration--google-sheet--auto-resize-dimensions",// DONE
20487
- GoogleSheetsFindAndReplace = "external-integration--google-sheet--find-and-replace",
20489
+ GoogleSheetsFindAndReplace = "external-integration--google-sheet--find-and-replace",// DONE
20488
20490
  GoogleSheetsAddDataValidation = "external-integration--google-sheet--add-data-validation",
20489
20491
  GoogleSheetsSortRange = "external-integration--google-sheet--sort-range",
20490
20492
  GoogleSheetsApplyClearFilter = "external-integration--google-sheet--apply-clear-filter",
@@ -24179,6 +24181,27 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
24179
24181
 
24180
24182
  export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
24181
24183
 
24184
+ export declare enum GoogleSheetsAddBandingValidationErrorCodes {
24185
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24186
+ SpacesIncluded = "spaces-included",
24187
+ InvalidChars = "invalid-chars",
24188
+ TooShort = "too-short"
24189
+ }
24190
+
24191
+ export declare enum GoogleSheetsAddChartValidationErrorCodes {
24192
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24193
+ SpacesIncluded = "spaces-included",
24194
+ InvalidChars = "invalid-chars",
24195
+ TooShort = "too-short"
24196
+ }
24197
+
24198
+ export declare enum GoogleSheetsAddConditionalFormatRuleValidationErrorCodes {
24199
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24200
+ SpacesIncluded = "spaces-included",
24201
+ InvalidChars = "invalid-chars",
24202
+ TooShort = "too-short"
24203
+ }
24204
+
24182
24205
  export declare enum GoogleSheetsAddDataValidationValidationErrorCodes {
24183
24206
  SpreadsheetIdEmpty = "spreadsheet-id-empty",
24184
24207
  UrlProvided = "url-provided",
@@ -24187,10 +24210,42 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
24187
24210
  TooShort = "too-short",
24188
24211
  ConditionTypeEmpty = "condition-type-empty",
24189
24212
  InvalidConditionType = "invalid-condition-type",
24190
- 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"
24221
+ }
24222
+
24223
+ export declare enum GoogleSheetsAddNamedRangeValidationErrorCodes {
24224
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24225
+ SpacesIncluded = "spaces-included",
24226
+ InvalidChars = "invalid-chars",
24227
+ TooShort = "too-short"
24228
+ }
24229
+
24230
+ export declare enum GoogleSheetsAddProtectedRangeValidationErrorCodes {
24231
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24232
+ SpacesIncluded = "spaces-included",
24233
+ InvalidChars = "invalid-chars",
24234
+ TooShort = "too-short"
24235
+ }
24236
+
24237
+ export declare enum GoogleSheetsAddSheetValidationErrorCodes {
24238
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24239
+ SpacesIncluded = "spaces-included",
24240
+ InvalidChars = "invalid-chars",
24241
+ TooShort = "too-short"
24191
24242
  }
24192
24243
 
24193
24244
  export declare enum GoogleSheetsAppendRowsValidationErrorCodes {
24245
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24246
+ SpacesIncluded = "spaces-included",
24247
+ InvalidChars = "invalid-chars",
24248
+ TooShort = "too-short",
24194
24249
  RangeCannotBeEmpty = "range-cannot-be-empty",
24195
24250
  RangeCannotContainQuotes = "range-cannot-contain-quotes",
24196
24251
  RangeContainsInvalidCharacters = "range-contains-invalid-characters",
@@ -24207,6 +24262,20 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
24207
24262
  ValuesMustBe2DArray = "values-must-be-2d-array"
24208
24263
  }
24209
24264
 
24265
+ export declare enum GoogleSheetsApplyClearFilterValidationErrorCodes {
24266
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24267
+ SpacesIncluded = "spaces-included",
24268
+ InvalidChars = "invalid-chars",
24269
+ TooShort = "too-short"
24270
+ }
24271
+
24272
+ export declare enum GoogleSheetsAutoResizeDimensionsValidationErrorCodes {
24273
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24274
+ SpacesIncluded = "spaces-included",
24275
+ InvalidChars = "invalid-chars",
24276
+ TooShort = "too-short"
24277
+ }
24278
+
24210
24279
  export declare enum GoogleSheetsBatchGetValuesValidationErrorCodes {
24211
24280
  SpreadsheetIdEmpty = "spreadsheet-id-empty",
24212
24281
  UrlProvided = "url-provided",
@@ -24227,6 +24296,97 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
24227
24296
  RequestsEmpty = "requests-empty"
24228
24297
  }
24229
24298
 
24299
+ export declare enum GoogleSheetsClearRangeValidationErrorCodes {
24300
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24301
+ SpacesIncluded = "spaces-included",
24302
+ InvalidChars = "invalid-chars",
24303
+ TooShort = "too-short"
24304
+ }
24305
+
24306
+ export declare enum GoogleSheetsClearSheetValidationErrorCodes {
24307
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24308
+ SpacesIncluded = "spaces-included",
24309
+ InvalidChars = "invalid-chars",
24310
+ TooShort = "too-short"
24311
+ }
24312
+
24313
+ export declare enum GoogleSheetsCloneSheetValidationErrorCodes {
24314
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24315
+ SpacesIncluded = "spaces-included",
24316
+ InvalidChars = "invalid-chars",
24317
+ TooShort = "too-short"
24318
+ }
24319
+
24320
+ export declare enum GoogleSheetsCopySheetValidationErrorCodes {
24321
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24322
+ SpacesIncluded = "spaces-included",
24323
+ InvalidChars = "invalid-chars",
24324
+ TooShort = "too-short"
24325
+ }
24326
+
24327
+ export declare enum GoogleSheetsCreatePivotTableValidationErrorCodes {
24328
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24329
+ SpacesIncluded = "spaces-included",
24330
+ InvalidChars = "invalid-chars",
24331
+ TooShort = "too-short"
24332
+ }
24333
+
24334
+ export declare enum GoogleSheetsDeleteChartValidationErrorCodes {
24335
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24336
+ SpacesIncluded = "spaces-included",
24337
+ InvalidChars = "invalid-chars",
24338
+ TooShort = "too-short"
24339
+ }
24340
+
24341
+ export declare enum GoogleSheetsDeleteConditionalFormatRuleValidationErrorCodes {
24342
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24343
+ SpacesIncluded = "spaces-included",
24344
+ InvalidChars = "invalid-chars",
24345
+ TooShort = "too-short"
24346
+ }
24347
+
24348
+ export declare enum GoogleSheetsDeleteDimensionValidationErrorCodes {
24349
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24350
+ SpacesIncluded = "spaces-included",
24351
+ InvalidChars = "invalid-chars",
24352
+ TooShort = "too-short"
24353
+ }
24354
+
24355
+ export declare enum GoogleSheetsDeletePivotTableValidationErrorCodes {
24356
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24357
+ SpacesIncluded = "spaces-included",
24358
+ InvalidChars = "invalid-chars",
24359
+ TooShort = "too-short"
24360
+ }
24361
+
24362
+ export declare enum GoogleSheetsDeleteProtectedRangeValidationErrorCodes {
24363
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24364
+ SpacesIncluded = "spaces-included",
24365
+ InvalidChars = "invalid-chars",
24366
+ TooShort = "too-short"
24367
+ }
24368
+
24369
+ export declare enum GoogleSheetsDeleteSheetValidationErrorCodes {
24370
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24371
+ SpacesIncluded = "spaces-included",
24372
+ InvalidChars = "invalid-chars",
24373
+ TooShort = "too-short"
24374
+ }
24375
+
24376
+ export declare enum GoogleSheetsFindAndReplaceValidationErrorCodes {
24377
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24378
+ SpacesIncluded = "spaces-included",
24379
+ InvalidChars = "invalid-chars",
24380
+ TooShort = "too-short"
24381
+ }
24382
+
24383
+ export declare enum GoogleSheetsFormatCellsValidationErrorCodes {
24384
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24385
+ SpacesIncluded = "spaces-included",
24386
+ InvalidChars = "invalid-chars",
24387
+ TooShort = "too-short"
24388
+ }
24389
+
24230
24390
  export declare enum GoogleSheetsGetRangeValuesValidationErrorCodes {
24231
24391
  SpreadsheetIdEmpty = "spreadsheet-id-empty",
24232
24392
  UrlProvided = "url-provided",
@@ -24235,6 +24395,90 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
24235
24395
  TooShort = "too-short"
24236
24396
  }
24237
24397
 
24398
+ export declare enum GoogleSheetsGetSpreadsheetValidationErrorCodes {
24399
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24400
+ SpacesIncluded = "spaces-included",
24401
+ InvalidChars = "invalid-chars",
24402
+ TooShort = "too-short"
24403
+ }
24404
+
24405
+ export declare enum GoogleSheetsInsertDimensionValidationErrorCodes {
24406
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24407
+ SpacesIncluded = "spaces-included",
24408
+ InvalidChars = "invalid-chars",
24409
+ TooShort = "too-short"
24410
+ }
24411
+
24412
+ export declare enum GoogleSheetsMergeUnmergeCellsValidationErrorCodes {
24413
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24414
+ SpacesIncluded = "spaces-included",
24415
+ InvalidChars = "invalid-chars",
24416
+ TooShort = "too-short"
24417
+ }
24418
+
24419
+ export declare enum GoogleSheetsMoveDimensionValidationErrorCodes {
24420
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24421
+ SpacesIncluded = "spaces-included",
24422
+ InvalidChars = "invalid-chars",
24423
+ TooShort = "too-short"
24424
+ }
24425
+
24426
+ export declare enum GoogleSheetsRenameSheetValidationErrorCodes {
24427
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24428
+ SpacesIncluded = "spaces-included",
24429
+ InvalidChars = "invalid-chars",
24430
+ TooShort = "too-short"
24431
+ }
24432
+
24433
+ export declare enum GoogleSheetsResizeDimensionValidationErrorCodes {
24434
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24435
+ SpacesIncluded = "spaces-included",
24436
+ InvalidChars = "invalid-chars",
24437
+ TooShort = "too-short"
24438
+ }
24439
+
24440
+ export declare enum GoogleSheetsSetCellNoteValidationErrorCodes {
24441
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24442
+ SpacesIncluded = "spaces-included",
24443
+ InvalidChars = "invalid-chars",
24444
+ TooShort = "too-short"
24445
+ }
24446
+
24447
+ export declare enum GoogleSheetsSetNumberFormatValidationErrorCodes {
24448
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24449
+ SpacesIncluded = "spaces-included",
24450
+ InvalidChars = "invalid-chars",
24451
+ TooShort = "too-short"
24452
+ }
24453
+
24454
+ export declare enum GoogleSheetsSortRangeValidationErrorCodes {
24455
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24456
+ SpacesIncluded = "spaces-included",
24457
+ InvalidChars = "invalid-chars",
24458
+ TooShort = "too-short"
24459
+ }
24460
+
24461
+ export declare enum GoogleSheetsUpdateChartSpecValidationErrorCodes {
24462
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24463
+ SpacesIncluded = "spaces-included",
24464
+ InvalidChars = "invalid-chars",
24465
+ TooShort = "too-short"
24466
+ }
24467
+
24468
+ export declare enum GoogleSheetsUpdateConditionalFormatRuleValidationErrorCodes {
24469
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24470
+ SpacesIncluded = "spaces-included",
24471
+ InvalidChars = "invalid-chars",
24472
+ TooShort = "too-short"
24473
+ }
24474
+
24475
+ export declare enum GoogleSheetsUpdateProtectedRangeValidationErrorCodes {
24476
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
24477
+ SpacesIncluded = "spaces-included",
24478
+ InvalidChars = "invalid-chars",
24479
+ TooShort = "too-short"
24480
+ }
24481
+
24238
24482
  export declare enum GoogleSheetsUpdateRangeValuesValidationErrorCodes {
24239
24483
  SpreadsheetIdEmpty = "spreadsheet-id-empty",
24240
24484
  UrlProvided = "url-provided",
@@ -34811,6 +35055,8 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
34811
35055
 
34812
35056
  export declare const parseMultipartBodyResponseEntityTransfer: IDefinitionEntityTransfer;
34813
35057
 
35058
+ export declare function parseSpreadsheetId(input: any, options?: SpreadsheetIdParseOptions): string;
35059
+
34814
35060
  export declare function parseSpreadsheetRangeToA1Notation(rangeObj: any, options?: RangeParseOptions): string;
34815
35061
 
34816
35062
  export declare function parseSpreadsheetRangeToDimensionRange(rangeObj: any, options?: RangeParseOptions): any;
@@ -38119,6 +38365,10 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
38119
38365
 
38120
38366
  export declare const splitStringAtLastSeparatorOperationStringDataType: IDataTypeTransfer;
38121
38367
 
38368
+ export declare interface SpreadsheetIdParseOptions {
38369
+ errorPrefix?: string;
38370
+ }
38371
+
38122
38372
  export declare const spreadsheetRangeEndColumnProperty: IPropertyTransfer;
38123
38373
 
38124
38374
  export declare const spreadsheetRangeEndColumnPropertyDataType: IDataTypeTransfer;