@elyx-code/project-logic-tree 0.0.6568 → 0.0.6570
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 +8 -4
- package/dist/index.js +344 -327
- package/dist/index.umd.cjs +33 -33
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3640,7 +3640,7 @@ export declare enum CanvasEntityConnectionDisabledReason {
|
|
|
3640
3640
|
SuccessOutputMapCannotBeConnectedToParentErrorBranchCallees = "success-output-map-cannot-be-connected-to-parent-error-branch-callees"
|
|
3641
3641
|
}
|
|
3642
3642
|
|
|
3643
|
-
export declare type CanvasEntityDisabledReason = CanvasEntityConnectionDisabledReason | CanvasEntityTestingDisabledReason | CanvasEntityOtherDisabledReason;
|
|
3643
|
+
export declare type CanvasEntityDisabledReason = CanvasEntityConnectionDisabledReason | CanvasEntityTestingDisabledReason | CanvasEntityOtherDisabledReason | StateMutationErrorCode;
|
|
3644
3644
|
|
|
3645
3645
|
export declare enum CanvasEntityOtherDisabledReason {
|
|
3646
3646
|
Suggestion = "suggestion",
|
|
@@ -4378,6 +4378,8 @@ export declare enum DataTypeParentChildRelation {
|
|
|
4378
4378
|
AndDataTypeGroup = "and-data-type-group"
|
|
4379
4379
|
}
|
|
4380
4380
|
|
|
4381
|
+
export declare type DataTypeParentEntityState = UserManagedDataTypeParentEntityState | BuiltInBaseEntityState;
|
|
4382
|
+
|
|
4381
4383
|
export declare type DataTypePayloadUnion = DataTypeState | DataTypeTypesUnion;
|
|
4382
4384
|
|
|
4383
4385
|
export declare class DataTypeState extends UserManagedVersionedState implements IDataType, UserManagedEntityStateTemplate, UserManagedBaseState, ChildEntityBaseClass {
|
|
@@ -4400,7 +4402,7 @@ export declare class DataTypeState extends UserManagedVersionedState implements
|
|
|
4400
4402
|
orChildrenGroup: DataTypeState[] | null;
|
|
4401
4403
|
project: ProjectState;
|
|
4402
4404
|
errors: EntityError[];
|
|
4403
|
-
parent:
|
|
4405
|
+
parent: DataTypeParentEntityState;
|
|
4404
4406
|
detachedDependents: Record<EntityId, {
|
|
4405
4407
|
entity: UserManagedEntityState;
|
|
4406
4408
|
field: string;
|
|
@@ -4460,7 +4462,7 @@ export declare class DataTypeState extends UserManagedVersionedState implements
|
|
|
4460
4462
|
hydrateAncestors(): IChangeSet<DataTypeState>;
|
|
4461
4463
|
afterAllChildrenInitialized(changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
|
|
4462
4464
|
addSelfToProject(changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
|
|
4463
|
-
setParent(parent:
|
|
4465
|
+
setParent(parent: DataTypeParentEntityState, changeSet?: ChangeSet | null): DataTypeState;
|
|
4464
4466
|
removeChildGroup(child: DataTypeState, changeSet?: ChangeSet | null): DataTypeState;
|
|
4465
4467
|
initChildren(changeSet?: ChangeSet | null): DataTypeState;
|
|
4466
4468
|
subscribe(): DataTypeState;
|
|
@@ -4493,7 +4495,7 @@ export declare class DataTypeState extends UserManagedVersionedState implements
|
|
|
4493
4495
|
};
|
|
4494
4496
|
getErrors(): EntityError[];
|
|
4495
4497
|
getShallowErrors(): EntityError[];
|
|
4496
|
-
clone(changeSet?: ChangeSet | null, parent?:
|
|
4498
|
+
clone(changeSet?: ChangeSet | null, parent?: DataTypeParentEntityState | null, newId?: string | null, subscribe?: boolean): DataTypeState;
|
|
4497
4499
|
merge(sourceEntity: DataTypeState, changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
|
|
4498
4500
|
addToAndGroup(child: DataTypeState, changeSet?: ChangeSet | null): DataTypeState;
|
|
4499
4501
|
addToOrGroup(child: DataTypeState, changeSet?: ChangeSet | null): DataTypeState;
|
|
@@ -19783,6 +19785,8 @@ export declare abstract class UserManagedBaseState extends BaseState implements
|
|
|
19783
19785
|
abstract deletable: boolean;
|
|
19784
19786
|
}
|
|
19785
19787
|
|
|
19788
|
+
export declare type UserManagedDataTypeParentEntityState = PropertyState | ArgumentDeclarationState | ReturnStatementState | BreakStatementState | ContinueStatementState | VariableDeclarationState | ValueDescriptorState | InputMapState | OutputMapState | DataTypeState | FunctionDeclarationState | ActionDescriptorState | LoopState | SearchState | DefinitionEntityState;
|
|
19789
|
+
|
|
19786
19790
|
export declare type UserManagedElement = IProject | IInstalledProject | IDefinitionEntity | IFunctionDeclaration | IArgumentDeclaration | IProperty | IVariableDeclaration | IGlobalEvent | ISearch | ILoop | IActionDescriptor | IValueDescriptor | IInputMap | IDataType | IOutputMap | ILiteralValue | IFunctionCall | IOperation | ICondition | IReturnStatement | IBreakStatement | IContinueStatement | IVariableInstance | IInternalCall;
|
|
19787
19791
|
|
|
19788
19792
|
export declare type UserManagedElement_meta = IProject_meta | IInstalledProject_meta | IDefinitionEntity_meta | IFunctionDeclaration_meta | IArgumentDeclaration_meta | IProperty_meta | IVariableDeclaration_meta | IGlobalEvent_meta | ISearch_meta | ILoop_meta | IActionDescriptor_meta | IValueDescriptor_meta | IInputMap_meta | IDataType_meta | IOutputMap_meta | ILiteralValue_meta | IFunctionCall_meta | IOperation_meta | ICondition_meta | IReturnStatement_meta | IBreakStatement_meta | IContinueStatement_meta | IVariableInstance_meta | IInternalCall_meta;
|