@elyx-code/project-logic-tree 0.0.6430 → 0.0.6431

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
@@ -2007,6 +2007,7 @@ export declare class ConditionState extends VersionedState implements ICondition
2007
2007
  x: number;
2008
2008
  y: number;
2009
2009
  readonly type: EntityType.Condition;
2010
+ index: number | null;
2010
2011
  successCalls: CallableEntityState[];
2011
2012
  errorCalls: CallableEntityState[];
2012
2013
  declaration: ActionDescriptorState;
@@ -2485,6 +2486,7 @@ export declare class DataTypeState extends VersionedState implements IDataType,
2485
2486
  staticEntities: boolean | null;
2486
2487
  interactiveEntities: boolean | null;
2487
2488
  actionEntities: boolean | null;
2489
+ index: number | null;
2488
2490
  entity: DefinitionEntityState | PrimitiveEntityState | ActionDescriptorState | BuiltInBaseEntityState | LiteralValueState | null;
2489
2491
  andChildrenGroup: DataTypeState[] | null;
2490
2492
  orChildrenGroup: DataTypeState[] | null;
@@ -9621,6 +9623,7 @@ export declare interface ICondition extends IConditionTransfer, IChildEntity, IC
9621
9623
 
9622
9624
  export declare interface ICondition_meta extends IGenericBase, IBaseCanvasDraggable {
9623
9625
  type: EntityType.Condition;
9626
+ index: number | null;
9624
9627
  }
9625
9628
 
9626
9629
  export declare interface IConditionGenerationTarget extends IChildEntityGenerationTarget, ICalledEntityGenerationTarget {
@@ -9734,6 +9737,7 @@ export declare interface IDataType_meta extends IGenericBase {
9734
9737
  type: EntityType.DataType;
9735
9738
  like: boolean;
9736
9739
  inferred: boolean;
9740
+ index: number | null;
9737
9741
  implementationChooseOne: boolean;
9738
9742
  options: string[] | null;
9739
9743
  parentRelationType: DataTypeParentChildRelation | null;