@elyx-code/project-logic-tree 0.0.6317 → 0.0.6319

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
@@ -1550,7 +1550,7 @@ export declare class ConditionState extends VersionedState implements ICondition
1550
1550
  getShallowErrors(): EntityError[];
1551
1551
  clone(changeSet?: ChangeSet | null, parent?: EntryPointEntityState | ProjectState | null, newId?: string | null, subscribe?: boolean): ConditionState;
1552
1552
  removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<ConditionState>;
1553
- syncMissingFixedInputs(changeSet?: ChangeSet | null): IChangeSet<ConditionState>;
1553
+ syncInputs(changeSet?: ChangeSet | null): IChangeSet<ConditionState>;
1554
1554
  }
1555
1555
 
1556
1556
  export declare type ConditionTypesUnion = ICondition | IConditionTransfer | IConditionShallowTransfer | IConditionGenerationTarget;
@@ -3289,8 +3289,8 @@ export declare class FunctionCallState extends VersionedState implements IFuncti
3289
3289
  clone(changeSet?: ChangeSet | null, parent?: EntryPointEntityState | ProjectState | null, newId?: string | null, subscribe?: boolean): FunctionCallState;
3290
3290
  removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionCallState>;
3291
3291
  removeUnrecognizedOutputs(changeSet?: ChangeSet | null): IChangeSet<FunctionCallState>;
3292
- syncMissingFixedInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionCallState>;
3293
- syncMissingFixedOutputs(changeSet?: ChangeSet | null): IChangeSet<FunctionCallState>;
3292
+ syncInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionCallState>;
3293
+ syncOutputs(changeSet?: ChangeSet | null): IChangeSet<FunctionCallState>;
3294
3294
  }
3295
3295
 
3296
3296
  export declare type FunctionCallTypesUnion = IFunctionCall | IFunctionCallTransfer | IFunctionCallShallowTransfer | IFunctionCallGenerationTarget;
@@ -9295,8 +9295,8 @@ export declare class InternalCallState extends VersionedState implements IIntern
9295
9295
  clone(changeSet?: ChangeSet | null, parent?: VariableState | null, newId?: string | null, subscribe?: boolean): InternalCallState;
9296
9296
  removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<InternalCallState>;
9297
9297
  removeUnrecognizedOutputs(changeSet?: ChangeSet | null): IChangeSet<InternalCallState>;
9298
- syncMissingFixedInputs(changeSet?: ChangeSet | null): IChangeSet<InternalCallState>;
9299
- syncMissingFixedOutputs(changeSet?: ChangeSet | null): IChangeSet<InternalCallState>;
9298
+ syncInputs(changeSet?: ChangeSet | null): IChangeSet<InternalCallState>;
9299
+ syncOutputs(changeSet?: ChangeSet | null): IChangeSet<InternalCallState>;
9300
9300
  }
9301
9301
 
9302
9302
  export declare type InternalCallTypesUnion = IInternalCall | IInternalCallTransfer | IInternalCallReference | IInternalCallGenerationTarget;
@@ -10592,8 +10592,6 @@ export declare class LoopState extends VersionedState implements ILoop, BaseStat
10592
10592
  calledByEntry: EntryPointEntityState[];
10593
10593
  parent: EntityWithLogicScopeState | ProjectState;
10594
10594
  detachedChildren: CanvasEntityState[];
10595
- currentIterationNumberArgumentDeclaration: ArgumentDeclarationState;
10596
- currentValueArgumentDeclaration: ArgumentDeclarationState | null;
10597
10595
  errors: EntityError[];
10598
10596
  project: ProjectState;
10599
10597
  detachedDependents: Record<EntityId, {
@@ -10636,6 +10634,8 @@ export declare class LoopState extends VersionedState implements ILoop, BaseStat
10636
10634
  static fromLoopOutputDeclarationToReturnDeclarationName(outputDeclaration: ValueDescriptorState): string;
10637
10635
  static fromLoopOutputDeclarationToBodyArgumentDeclarationName(outputDeclaration: ValueDescriptorState): string;
10638
10636
  static fromBodyArgumentDeclarationToLoopOutputDeclarationName(argumentDeclaration: ArgumentDeclarationState): string;
10637
+ get currentIterationNumberArgumentDeclaration(): ArgumentDeclarationState;
10638
+ get currentValueArgumentDeclaration(): ArgumentDeclarationState | null;
10639
10639
  get continueStatements(): ContinueStatementState[];
10640
10640
  get breakStatements(): BreakStatementState[];
10641
10641
  validateGeneratedUpdate(data: Partial<ILoopGenerationTarget>): {
@@ -11143,8 +11143,8 @@ export declare class OperationState extends VersionedState implements IOperation
11143
11143
  clone(changeSet?: ChangeSet | null, parent?: EntryPointEntityState | ProjectState | null, newId?: string | null, subscribe?: boolean): OperationState;
11144
11144
  removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<OperationState>;
11145
11145
  removeUnrecognizedOutputs(changeSet?: ChangeSet | null): IChangeSet<OperationState>;
11146
- syncMissingFixedInputs(changeSet?: ChangeSet | null): IChangeSet<OperationState>;
11147
- syncMissingFixedOutputs(changeSet?: ChangeSet | null): IChangeSet<OperationState>;
11146
+ syncInputs(changeSet?: ChangeSet | null): IChangeSet<OperationState>;
11147
+ syncOutputs(changeSet?: ChangeSet | null): IChangeSet<OperationState>;
11148
11148
  }
11149
11149
 
11150
11150
  export declare type OperationTypes = NumberOperations | StringOperations | ListOperations | ExecutionOperations | EntityOperations | HTTPOperations;