@elyx-code/project-logic-tree 0.0.7150 → 0.0.7151
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 +354 -354
- package/dist/index.d.ts +242 -1
- package/dist/index.js +78832 -78512
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -20484,7 +20484,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
20484
20484
|
GoogleSheetsSetNumberFormat = "external-integration--google-sheet--set-number-format",
|
|
20485
20485
|
GoogleSheetsMergeUnmergeCells = "external-integration--google-sheet--merge-unmerge-cells",
|
|
20486
20486
|
GoogleSheetsAutoResizeDimensions = "external-integration--google-sheet--auto-resize-dimensions",// DONE
|
|
20487
|
-
GoogleSheetsFindAndReplace = "external-integration--google-sheet--find-and-replace"
|
|
20487
|
+
GoogleSheetsFindAndReplace = "external-integration--google-sheet--find-and-replace",// DONE
|
|
20488
20488
|
GoogleSheetsAddDataValidation = "external-integration--google-sheet--add-data-validation",
|
|
20489
20489
|
GoogleSheetsSortRange = "external-integration--google-sheet--sort-range",
|
|
20490
20490
|
GoogleSheetsApplyClearFilter = "external-integration--google-sheet--apply-clear-filter",
|
|
@@ -24179,6 +24179,27 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
24179
24179
|
|
|
24180
24180
|
export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
24181
24181
|
|
|
24182
|
+
export declare enum GoogleSheetsAddBandingValidationErrorCodes {
|
|
24183
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24184
|
+
SpacesIncluded = "spaces-included",
|
|
24185
|
+
InvalidChars = "invalid-chars",
|
|
24186
|
+
TooShort = "too-short"
|
|
24187
|
+
}
|
|
24188
|
+
|
|
24189
|
+
export declare enum GoogleSheetsAddChartValidationErrorCodes {
|
|
24190
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24191
|
+
SpacesIncluded = "spaces-included",
|
|
24192
|
+
InvalidChars = "invalid-chars",
|
|
24193
|
+
TooShort = "too-short"
|
|
24194
|
+
}
|
|
24195
|
+
|
|
24196
|
+
export declare enum GoogleSheetsAddConditionalFormatRuleValidationErrorCodes {
|
|
24197
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24198
|
+
SpacesIncluded = "spaces-included",
|
|
24199
|
+
InvalidChars = "invalid-chars",
|
|
24200
|
+
TooShort = "too-short"
|
|
24201
|
+
}
|
|
24202
|
+
|
|
24182
24203
|
export declare enum GoogleSheetsAddDataValidationValidationErrorCodes {
|
|
24183
24204
|
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24184
24205
|
UrlProvided = "url-provided",
|
|
@@ -24190,7 +24211,32 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
24190
24211
|
ConditionValuesMustBeArray = "condition-values-must-be-array"
|
|
24191
24212
|
}
|
|
24192
24213
|
|
|
24214
|
+
export declare enum GoogleSheetsAddNamedRangeValidationErrorCodes {
|
|
24215
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24216
|
+
SpacesIncluded = "spaces-included",
|
|
24217
|
+
InvalidChars = "invalid-chars",
|
|
24218
|
+
TooShort = "too-short"
|
|
24219
|
+
}
|
|
24220
|
+
|
|
24221
|
+
export declare enum GoogleSheetsAddProtectedRangeValidationErrorCodes {
|
|
24222
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24223
|
+
SpacesIncluded = "spaces-included",
|
|
24224
|
+
InvalidChars = "invalid-chars",
|
|
24225
|
+
TooShort = "too-short"
|
|
24226
|
+
}
|
|
24227
|
+
|
|
24228
|
+
export declare enum GoogleSheetsAddSheetValidationErrorCodes {
|
|
24229
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24230
|
+
SpacesIncluded = "spaces-included",
|
|
24231
|
+
InvalidChars = "invalid-chars",
|
|
24232
|
+
TooShort = "too-short"
|
|
24233
|
+
}
|
|
24234
|
+
|
|
24193
24235
|
export declare enum GoogleSheetsAppendRowsValidationErrorCodes {
|
|
24236
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24237
|
+
SpacesIncluded = "spaces-included",
|
|
24238
|
+
InvalidChars = "invalid-chars",
|
|
24239
|
+
TooShort = "too-short",
|
|
24194
24240
|
RangeCannotBeEmpty = "range-cannot-be-empty",
|
|
24195
24241
|
RangeCannotContainQuotes = "range-cannot-contain-quotes",
|
|
24196
24242
|
RangeContainsInvalidCharacters = "range-contains-invalid-characters",
|
|
@@ -24207,6 +24253,20 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
24207
24253
|
ValuesMustBe2DArray = "values-must-be-2d-array"
|
|
24208
24254
|
}
|
|
24209
24255
|
|
|
24256
|
+
export declare enum GoogleSheetsApplyClearFilterValidationErrorCodes {
|
|
24257
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24258
|
+
SpacesIncluded = "spaces-included",
|
|
24259
|
+
InvalidChars = "invalid-chars",
|
|
24260
|
+
TooShort = "too-short"
|
|
24261
|
+
}
|
|
24262
|
+
|
|
24263
|
+
export declare enum GoogleSheetsAutoResizeDimensionsValidationErrorCodes {
|
|
24264
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24265
|
+
SpacesIncluded = "spaces-included",
|
|
24266
|
+
InvalidChars = "invalid-chars",
|
|
24267
|
+
TooShort = "too-short"
|
|
24268
|
+
}
|
|
24269
|
+
|
|
24210
24270
|
export declare enum GoogleSheetsBatchGetValuesValidationErrorCodes {
|
|
24211
24271
|
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24212
24272
|
UrlProvided = "url-provided",
|
|
@@ -24227,6 +24287,97 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
24227
24287
|
RequestsEmpty = "requests-empty"
|
|
24228
24288
|
}
|
|
24229
24289
|
|
|
24290
|
+
export declare enum GoogleSheetsClearRangeValidationErrorCodes {
|
|
24291
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24292
|
+
SpacesIncluded = "spaces-included",
|
|
24293
|
+
InvalidChars = "invalid-chars",
|
|
24294
|
+
TooShort = "too-short"
|
|
24295
|
+
}
|
|
24296
|
+
|
|
24297
|
+
export declare enum GoogleSheetsClearSheetValidationErrorCodes {
|
|
24298
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24299
|
+
SpacesIncluded = "spaces-included",
|
|
24300
|
+
InvalidChars = "invalid-chars",
|
|
24301
|
+
TooShort = "too-short"
|
|
24302
|
+
}
|
|
24303
|
+
|
|
24304
|
+
export declare enum GoogleSheetsCloneSheetValidationErrorCodes {
|
|
24305
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24306
|
+
SpacesIncluded = "spaces-included",
|
|
24307
|
+
InvalidChars = "invalid-chars",
|
|
24308
|
+
TooShort = "too-short"
|
|
24309
|
+
}
|
|
24310
|
+
|
|
24311
|
+
export declare enum GoogleSheetsCopySheetValidationErrorCodes {
|
|
24312
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24313
|
+
SpacesIncluded = "spaces-included",
|
|
24314
|
+
InvalidChars = "invalid-chars",
|
|
24315
|
+
TooShort = "too-short"
|
|
24316
|
+
}
|
|
24317
|
+
|
|
24318
|
+
export declare enum GoogleSheetsCreatePivotTableValidationErrorCodes {
|
|
24319
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24320
|
+
SpacesIncluded = "spaces-included",
|
|
24321
|
+
InvalidChars = "invalid-chars",
|
|
24322
|
+
TooShort = "too-short"
|
|
24323
|
+
}
|
|
24324
|
+
|
|
24325
|
+
export declare enum GoogleSheetsDeleteChartValidationErrorCodes {
|
|
24326
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24327
|
+
SpacesIncluded = "spaces-included",
|
|
24328
|
+
InvalidChars = "invalid-chars",
|
|
24329
|
+
TooShort = "too-short"
|
|
24330
|
+
}
|
|
24331
|
+
|
|
24332
|
+
export declare enum GoogleSheetsDeleteConditionalFormatRuleValidationErrorCodes {
|
|
24333
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24334
|
+
SpacesIncluded = "spaces-included",
|
|
24335
|
+
InvalidChars = "invalid-chars",
|
|
24336
|
+
TooShort = "too-short"
|
|
24337
|
+
}
|
|
24338
|
+
|
|
24339
|
+
export declare enum GoogleSheetsDeleteDimensionValidationErrorCodes {
|
|
24340
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24341
|
+
SpacesIncluded = "spaces-included",
|
|
24342
|
+
InvalidChars = "invalid-chars",
|
|
24343
|
+
TooShort = "too-short"
|
|
24344
|
+
}
|
|
24345
|
+
|
|
24346
|
+
export declare enum GoogleSheetsDeletePivotTableValidationErrorCodes {
|
|
24347
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24348
|
+
SpacesIncluded = "spaces-included",
|
|
24349
|
+
InvalidChars = "invalid-chars",
|
|
24350
|
+
TooShort = "too-short"
|
|
24351
|
+
}
|
|
24352
|
+
|
|
24353
|
+
export declare enum GoogleSheetsDeleteProtectedRangeValidationErrorCodes {
|
|
24354
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24355
|
+
SpacesIncluded = "spaces-included",
|
|
24356
|
+
InvalidChars = "invalid-chars",
|
|
24357
|
+
TooShort = "too-short"
|
|
24358
|
+
}
|
|
24359
|
+
|
|
24360
|
+
export declare enum GoogleSheetsDeleteSheetValidationErrorCodes {
|
|
24361
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24362
|
+
SpacesIncluded = "spaces-included",
|
|
24363
|
+
InvalidChars = "invalid-chars",
|
|
24364
|
+
TooShort = "too-short"
|
|
24365
|
+
}
|
|
24366
|
+
|
|
24367
|
+
export declare enum GoogleSheetsFindAndReplaceValidationErrorCodes {
|
|
24368
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24369
|
+
SpacesIncluded = "spaces-included",
|
|
24370
|
+
InvalidChars = "invalid-chars",
|
|
24371
|
+
TooShort = "too-short"
|
|
24372
|
+
}
|
|
24373
|
+
|
|
24374
|
+
export declare enum GoogleSheetsFormatCellsValidationErrorCodes {
|
|
24375
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24376
|
+
SpacesIncluded = "spaces-included",
|
|
24377
|
+
InvalidChars = "invalid-chars",
|
|
24378
|
+
TooShort = "too-short"
|
|
24379
|
+
}
|
|
24380
|
+
|
|
24230
24381
|
export declare enum GoogleSheetsGetRangeValuesValidationErrorCodes {
|
|
24231
24382
|
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24232
24383
|
UrlProvided = "url-provided",
|
|
@@ -24235,6 +24386,90 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
24235
24386
|
TooShort = "too-short"
|
|
24236
24387
|
}
|
|
24237
24388
|
|
|
24389
|
+
export declare enum GoogleSheetsGetSpreadsheetValidationErrorCodes {
|
|
24390
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24391
|
+
SpacesIncluded = "spaces-included",
|
|
24392
|
+
InvalidChars = "invalid-chars",
|
|
24393
|
+
TooShort = "too-short"
|
|
24394
|
+
}
|
|
24395
|
+
|
|
24396
|
+
export declare enum GoogleSheetsInsertDimensionValidationErrorCodes {
|
|
24397
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24398
|
+
SpacesIncluded = "spaces-included",
|
|
24399
|
+
InvalidChars = "invalid-chars",
|
|
24400
|
+
TooShort = "too-short"
|
|
24401
|
+
}
|
|
24402
|
+
|
|
24403
|
+
export declare enum GoogleSheetsMergeUnmergeCellsValidationErrorCodes {
|
|
24404
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24405
|
+
SpacesIncluded = "spaces-included",
|
|
24406
|
+
InvalidChars = "invalid-chars",
|
|
24407
|
+
TooShort = "too-short"
|
|
24408
|
+
}
|
|
24409
|
+
|
|
24410
|
+
export declare enum GoogleSheetsMoveDimensionValidationErrorCodes {
|
|
24411
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24412
|
+
SpacesIncluded = "spaces-included",
|
|
24413
|
+
InvalidChars = "invalid-chars",
|
|
24414
|
+
TooShort = "too-short"
|
|
24415
|
+
}
|
|
24416
|
+
|
|
24417
|
+
export declare enum GoogleSheetsRenameSheetValidationErrorCodes {
|
|
24418
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24419
|
+
SpacesIncluded = "spaces-included",
|
|
24420
|
+
InvalidChars = "invalid-chars",
|
|
24421
|
+
TooShort = "too-short"
|
|
24422
|
+
}
|
|
24423
|
+
|
|
24424
|
+
export declare enum GoogleSheetsResizeDimensionValidationErrorCodes {
|
|
24425
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24426
|
+
SpacesIncluded = "spaces-included",
|
|
24427
|
+
InvalidChars = "invalid-chars",
|
|
24428
|
+
TooShort = "too-short"
|
|
24429
|
+
}
|
|
24430
|
+
|
|
24431
|
+
export declare enum GoogleSheetsSetCellNoteValidationErrorCodes {
|
|
24432
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24433
|
+
SpacesIncluded = "spaces-included",
|
|
24434
|
+
InvalidChars = "invalid-chars",
|
|
24435
|
+
TooShort = "too-short"
|
|
24436
|
+
}
|
|
24437
|
+
|
|
24438
|
+
export declare enum GoogleSheetsSetNumberFormatValidationErrorCodes {
|
|
24439
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24440
|
+
SpacesIncluded = "spaces-included",
|
|
24441
|
+
InvalidChars = "invalid-chars",
|
|
24442
|
+
TooShort = "too-short"
|
|
24443
|
+
}
|
|
24444
|
+
|
|
24445
|
+
export declare enum GoogleSheetsSortRangeValidationErrorCodes {
|
|
24446
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24447
|
+
SpacesIncluded = "spaces-included",
|
|
24448
|
+
InvalidChars = "invalid-chars",
|
|
24449
|
+
TooShort = "too-short"
|
|
24450
|
+
}
|
|
24451
|
+
|
|
24452
|
+
export declare enum GoogleSheetsUpdateChartSpecValidationErrorCodes {
|
|
24453
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24454
|
+
SpacesIncluded = "spaces-included",
|
|
24455
|
+
InvalidChars = "invalid-chars",
|
|
24456
|
+
TooShort = "too-short"
|
|
24457
|
+
}
|
|
24458
|
+
|
|
24459
|
+
export declare enum GoogleSheetsUpdateConditionalFormatRuleValidationErrorCodes {
|
|
24460
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24461
|
+
SpacesIncluded = "spaces-included",
|
|
24462
|
+
InvalidChars = "invalid-chars",
|
|
24463
|
+
TooShort = "too-short"
|
|
24464
|
+
}
|
|
24465
|
+
|
|
24466
|
+
export declare enum GoogleSheetsUpdateProtectedRangeValidationErrorCodes {
|
|
24467
|
+
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24468
|
+
SpacesIncluded = "spaces-included",
|
|
24469
|
+
InvalidChars = "invalid-chars",
|
|
24470
|
+
TooShort = "too-short"
|
|
24471
|
+
}
|
|
24472
|
+
|
|
24238
24473
|
export declare enum GoogleSheetsUpdateRangeValuesValidationErrorCodes {
|
|
24239
24474
|
SpreadsheetIdEmpty = "spreadsheet-id-empty",
|
|
24240
24475
|
UrlProvided = "url-provided",
|
|
@@ -34811,6 +35046,8 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
34811
35046
|
|
|
34812
35047
|
export declare const parseMultipartBodyResponseEntityTransfer: IDefinitionEntityTransfer;
|
|
34813
35048
|
|
|
35049
|
+
export declare function parseSpreadsheetId(input: any, options?: SpreadsheetIdParseOptions): string;
|
|
35050
|
+
|
|
34814
35051
|
export declare function parseSpreadsheetRangeToA1Notation(rangeObj: any, options?: RangeParseOptions): string;
|
|
34815
35052
|
|
|
34816
35053
|
export declare function parseSpreadsheetRangeToDimensionRange(rangeObj: any, options?: RangeParseOptions): any;
|
|
@@ -38119,6 +38356,10 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
38119
38356
|
|
|
38120
38357
|
export declare const splitStringAtLastSeparatorOperationStringDataType: IDataTypeTransfer;
|
|
38121
38358
|
|
|
38359
|
+
export declare interface SpreadsheetIdParseOptions {
|
|
38360
|
+
errorPrefix?: string;
|
|
38361
|
+
}
|
|
38362
|
+
|
|
38122
38363
|
export declare const spreadsheetRangeEndColumnProperty: IPropertyTransfer;
|
|
38123
38364
|
|
|
38124
38365
|
export declare const spreadsheetRangeEndColumnPropertyDataType: IDataTypeTransfer;
|