@elyx-code/project-logic-tree 0.0.6454 → 0.0.6456

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 CHANGED
@@ -15442,8 +15442,6 @@ export declare type TerminationEntityTypesUnion = TerminationEntity | Terminatio
15442
15442
 
15443
15443
  export declare type TerminationState = ReturnStatementState | BreakStatementState | ContinueStatementState;
15444
15444
 
15445
- export declare const test_primitive_entities_export = "test_primitive_entities_export";
15446
-
15447
15445
  export declare type TestableEntityState = ExecutableEntityState;
15448
15446
 
15449
15447
  export declare function toCamelCase(str: string): string;
@@ -15464,13 +15462,13 @@ export declare function toSnakeCase(str: string): string;
15464
15462
 
15465
15463
  export declare function transitionProjectVersion(from: ChangeSet | 'initial', to: ChangeSet | 'initial', project: ProjectState): IProjectVersionTransitionConfig;
15466
15464
 
15467
- export declare function translateLogicErrorCode(error: EntityError): string;
15465
+ export declare function translateLogicErrorCode(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HTTPStatucCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
15468
15466
 
15469
- export declare function translateLogicErrorCodeShort(error: EntityError): string;
15467
+ export declare function translateLogicErrorCodeShort(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HTTPStatucCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
15470
15468
 
15471
- export declare function translateLogicErrorCodeShortWithEntityName(error: EntityError): string;
15469
+ export declare function translateLogicErrorCodeShortWithEntityName(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HTTPStatucCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
15472
15470
 
15473
- export declare function translateLogicErrorCodeWithEntityName(error: EntityError): string;
15471
+ export declare function translateLogicErrorCodeWithEntityName(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HTTPStatucCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
15474
15472
 
15475
15473
  export declare function traverseChangeSet(changeSet: ChangeSet, onAdded: (entity: UserManagedEntityState) => void, onUpdated: (entity: UserManagedEntityState) => void, onRemoved: (entity: UserManagedEntityState) => void): void;
15476
15474
 
@@ -15599,6 +15597,14 @@ export declare class UUIDModule extends BaseRegisteredExtension implements IRegi
15599
15597
 
15600
15598
  export declare const uuidPrototype: IPrimitiveEntity;
15601
15599
 
15600
+ export declare enum UUIDV4ValidationErrorCodes {
15601
+ UUIDMustBeString = "uuid-must-be-string",
15602
+ UUIDMustBeValidFormat = "uuid-must-be-valid-format",
15603
+ UUIDMustNotContainSpaces = "uuid-must-not-contain-spaces"
15604
+ }
15605
+
15606
+ export declare function uuidValueValidation(self: EntityWithValueState, value: LiteralValueType): IValueValidationResult<LiteralValueType, UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>;
15607
+
15602
15608
  declare function validate(self: OutputMapState): EntityError[];
15603
15609
 
15604
15610
  declare function validate_10(self: FunctionDeclarationState): EntityError[];