@elyx-code/project-logic-tree 0.0.6318 → 0.0.6320
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 +7 -7
- package/dist/index.js +4932 -4855
- package/dist/index.umd.cjs +167 -167
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
3293
|
-
|
|
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
|
-
|
|
9299
|
-
|
|
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;
|
|
@@ -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
|
-
|
|
11147
|
-
|
|
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;
|