@elyx-code/project-logic-tree 0.0.6455 → 0.0.6457
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.d.ts +4 -4
- package/dist/index.js +19057 -18905
- package/dist/index.umd.cjs +165 -165
- package/package.json +1 -3
package/dist/index.d.ts
CHANGED
|
@@ -15462,13 +15462,13 @@ export declare function toSnakeCase(str: string): string;
|
|
|
15462
15462
|
|
|
15463
15463
|
export declare function transitionProjectVersion(from: ChangeSet | 'initial', to: ChangeSet | 'initial', project: ProjectState): IProjectVersionTransitionConfig;
|
|
15464
15464
|
|
|
15465
|
-
export declare function translateLogicErrorCode(error: EntityError): string;
|
|
15465
|
+
export declare function translateLogicErrorCode(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HTTPStatucCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
|
|
15466
15466
|
|
|
15467
|
-
export declare function translateLogicErrorCodeShort(error: EntityError): string;
|
|
15467
|
+
export declare function translateLogicErrorCodeShort(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HTTPStatucCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
|
|
15468
15468
|
|
|
15469
|
-
export declare function translateLogicErrorCodeShortWithEntityName(error: EntityError): string;
|
|
15469
|
+
export declare function translateLogicErrorCodeShortWithEntityName(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HTTPStatucCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
|
|
15470
15470
|
|
|
15471
|
-
export declare function translateLogicErrorCodeWithEntityName(error: EntityError): string;
|
|
15471
|
+
export declare function translateLogicErrorCodeWithEntityName(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HTTPStatucCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
|
|
15472
15472
|
|
|
15473
15473
|
export declare function traverseChangeSet(changeSet: ChangeSet, onAdded: (entity: UserManagedEntityState) => void, onUpdated: (entity: UserManagedEntityState) => void, onRemoved: (entity: UserManagedEntityState) => void): void;
|
|
15474
15474
|
|