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

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;
@@ -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[];