@elyx-code/project-logic-tree 0.0.7119 → 0.0.7121
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 +277 -277
- package/dist/index.d.ts +21 -4
- package/dist/index.js +43633 -43276
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -21596,6 +21596,23 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
21596
21596
|
|
|
21597
21597
|
export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
21598
21598
|
|
|
21599
|
+
export declare enum GoogleSheetsAppendRowsValidationErrorCodes {
|
|
21600
|
+
RangeCannotBeEmpty = "range-cannot-be-empty",
|
|
21601
|
+
RangeCannotContainQuotes = "range-cannot-contain-quotes",
|
|
21602
|
+
RangeContainsInvalidCharacters = "range-contains-invalid-characters",
|
|
21603
|
+
MultipleExclamationMarks = "multiple-exclamation-marks",
|
|
21604
|
+
SheetNameMissingBeforeExclamation = "sheet-name-missing-before-exclamation",
|
|
21605
|
+
RangeMissingAfterExclamation = "range-missing-after-exclamation",
|
|
21606
|
+
TooManyColons = "too-many-colons",
|
|
21607
|
+
InvalidSingleCellReference = "invalid-single-cell-reference",
|
|
21608
|
+
InvalidRangeStartCell = "invalid-range-start-cell",
|
|
21609
|
+
InvalidRangeEndCell = "invalid-range-end-cell",
|
|
21610
|
+
MismatchedRangeTypes = "mismatched-range-types",
|
|
21611
|
+
InvalidRangeFormat = "invalid-range-format",// Fallback
|
|
21612
|
+
ValuesMustBeArray = "values-must-be-array",
|
|
21613
|
+
ValuesMustBe2DArray = "values-must-be-2d-array"
|
|
21614
|
+
}
|
|
21615
|
+
|
|
21599
21616
|
export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
21600
21617
|
|
|
21601
21618
|
export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
|
|
@@ -36505,13 +36522,13 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
36505
36522
|
|
|
36506
36523
|
export declare function transitionProjectVersion(from: ChangeSet | 'initial', to: ChangeSet | 'initial', project: ProjectState): IProjectVersionTransitionConfig;
|
|
36507
36524
|
|
|
36508
|
-
export declare function translateLogicErrorCode(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HttpStatusCodeValidationErrorCodes | CronjobExpressionValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
|
|
36525
|
+
export declare function translateLogicErrorCode(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HttpStatusCodeValidationErrorCodes | CronjobExpressionValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes | GoogleSheetsAppendRowsValidationErrorCodes>): string;
|
|
36509
36526
|
|
|
36510
|
-
export declare function translateLogicErrorCodeShort(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HttpStatusCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
|
|
36527
|
+
export declare function translateLogicErrorCodeShort(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HttpStatusCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes | GoogleSheetsAppendRowsValidationErrorCodes>): string;
|
|
36511
36528
|
|
|
36512
|
-
export declare function translateLogicErrorCodeShortWithEntityName(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HttpStatusCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
|
|
36529
|
+
export declare function translateLogicErrorCodeShortWithEntityName(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HttpStatusCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes | GoogleSheetsAppendRowsValidationErrorCodes>): string;
|
|
36513
36530
|
|
|
36514
|
-
export declare function translateLogicErrorCodeWithEntityName(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HttpStatusCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
|
|
36531
|
+
export declare function translateLogicErrorCodeWithEntityName(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HttpStatusCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes | GoogleSheetsAppendRowsValidationErrorCodes>): string;
|
|
36515
36532
|
|
|
36516
36533
|
export declare function traverseChangeSet(changeSet: ChangeSet, onAdded: (entity: UserManagedEntityState) => void, onUpdated: (entity: UserManagedEntityState) => void, onRemoved: (entity: UserManagedEntityState) => void, onAffected: (entity: UserManagedEntityState) => void): void;
|
|
36517
36534
|
|