@elyx-code/project-logic-tree 0.0.6325 → 0.0.6328

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
@@ -2643,6 +2643,7 @@ export declare class EntityGenerationError implements IEntityGenerationError {
2643
2643
 
2644
2644
  export declare enum EntityGenerationErrorCode {
2645
2645
  RootReference = "root-reference",
2646
+ InvalidUUIDStringFormat = "invalid-uuid-string-format",
2646
2647
  ReferencedEntityNotFound = "referenced-entity-not-found",
2647
2648
  EntityIdNotUnique = "entity-id-not-unique",
2648
2649
  BuiltInEntityGenerated = "built-in-entity-generated",
@@ -7095,6 +7096,8 @@ export declare function getTerminationTypeSchema(): z_2.ZodUnion<[z_2.ZodUnion<[
7095
7096
  type: import("../../..").EntityType.ContinueStatement;
7096
7097
  }>, z_2.ZodRecord<z_2.ZodString, z_2.ZodAny>]>]>;
7097
7098
 
7099
+ export declare function getTopLevelParentEntityId(entity: EntityState): EntityId | null;
7100
+
7098
7101
  export declare function getTouchedCanvasEntitiesFromChangeSet(changeSet: ChangeSet): CanvasEntityState[];
7099
7102
 
7100
7103
  export declare function getUsedArgFromDeclaration(argumentDeclaration: ArgumentDeclarationState, entity: ConditionState | FunctionCallState | OperationState): InputMapState | null;
@@ -9850,6 +9853,8 @@ export declare interface IString extends IPrimitiveEntity {
9850
9853
  name: PrimitiveTypes.String;
9851
9854
  }
9852
9855
 
9856
+ export declare function isUUID(uuid: string): boolean;
9857
+
9853
9858
  declare interface ITable {
9854
9859
  entity: DefinitionEntityState;
9855
9860
  tableName: string;