@elyx-code/project-logic-tree 0.0.6288 → 0.0.6289

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
@@ -394,7 +394,7 @@ export declare class ArgumentDeclarationState extends VersionedState implements
394
394
  setDefaultValue(defaultValue: LiteralValueState): ArgumentDeclarationState;
395
395
  clone(changeSet?: ChangeSet | null, parent?: EntryPointEntityState | null, newId?: string | null, subscribe?: boolean): ArgumentDeclarationState;
396
396
  getDataType(_changeSet?: ChangeSet | null): DataTypeState | null;
397
- setDataType(dataType: DataTypeState): ArgumentDeclarationState;
397
+ setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): ArgumentDeclarationState;
398
398
  removeDataType(): ArgumentDeclarationState;
399
399
  }
400
400
 
@@ -1083,6 +1083,8 @@ export declare class BuiltInBaseEntityState extends VersionedState implements Ba
1083
1083
  project: ProjectState;
1084
1084
  constructor(initialData: IBuiltInBaseEntity | IBuiltInBaseEntityTransfer, parentProjectState: ProjectState);
1085
1085
  static repository: IReadOnlyEntityPersistanceRepository;
1086
+ get allProperties(): PropertyState[];
1087
+ get allBasePropertiesFromOriginalParents(): PropertyState[];
1086
1088
  get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
1087
1089
  get extendedPropertiesFromOriginalParents(): PropertyState[];
1088
1090
  get implementedPropertiesFromOriginalParents(): PropertyState[];
@@ -1965,6 +1967,7 @@ export declare class DataTypeState extends VersionedState implements IDataType,
1965
1967
  addToOrGroup(child: DataTypeState): DataTypeState;
1966
1968
  setEntity(entity: DefinitionEntityState | PrimitiveEntityState | ActionDescriptorState | BuiltInBaseEntityState | LiteralValueState | null): DataTypeState;
1967
1969
  isObject(): boolean;
1970
+ canBeObject(): boolean;
1968
1971
  hasStrictObjectStructure(): boolean;
1969
1972
  inferFromInputs(inputs: VariableInputMapState[], changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
1970
1973
  }
@@ -2128,6 +2131,8 @@ export declare class DefinitionEntityState extends VersionedState implements Bas
2128
2131
  modifiedData: IDefinitionEntityGenerationTarget;
2129
2132
  };
2130
2133
  get interactive(): boolean;
2134
+ get allProperties(): PropertyState[];
2135
+ get allBasePropertiesFromOriginalParents(): PropertyState[];
2131
2136
  get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
2132
2137
  get allBaseMethodsFromExtendedAndImplementedEntities(): (FunctionDeclarationState | ActionDescriptorState)[];
2133
2138
  get extendedPropertiesFromOriginalParents(): PropertyState[];
@@ -8895,7 +8900,7 @@ export declare class InputMapState extends VersionedState implements IInputMap,
8895
8900
  afterAllChildrenInitialized(changeSet?: ChangeSet | null): IChangeSet<InputMapState>;
8896
8901
  addSelfToProject(changeSet?: ChangeSet | null): IChangeSet<InputMapState>;
8897
8902
  setParent(parent: PassThroughCallableEntityState, changeSet?: ChangeSet | null): InputMapState;
8898
- setDataType(dataType: DataTypeState): InputMapState;
8903
+ setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): InputMapState;
8899
8904
  removeDataType(): InputMapState;
8900
8905
  setDeclaration(declaration: ArgumentDeclarationState | PropertyState | ValueDescriptorState | null): InputMapState;
8901
8906
  initChildren(changeSet?: ChangeSet | null): InputMapState;
@@ -11139,7 +11144,7 @@ export declare class OutputMapState extends VersionedState implements IOutputMap
11139
11144
  addValueReader(entity: ValueReadingEntityState, changeSet?: ChangeSet | null): OutputMapState;
11140
11145
  removeValueReader(valueReader: ValueReadingEntityState, changeSet?: ChangeSet | null): OutputMapState;
11141
11146
  setParent(parent: PassThroughCallableEntityWithOutputsState, changeSet?: ChangeSet | null): OutputMapState;
11142
- setDataType(dataType: DataTypeState): OutputMapState;
11147
+ setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): OutputMapState;
11143
11148
  removeDataType(): OutputMapState;
11144
11149
  setDeclaration(declaration: ReturnDeclarationState | PropertyState | ValueDescriptorState): OutputMapState;
11145
11150
  initChildren(changeSet?: ChangeSet | null): OutputMapState;
@@ -11375,6 +11380,8 @@ export declare class PrimitiveEntityState extends VersionedState implements Base
11375
11380
  project: ProjectState;
11376
11381
  constructor(initialData: IPrimitiveEntity | IPrimitiveEntityTransfer, parentProjectState: ProjectState);
11377
11382
  static repository: IReadOnlyEntityPersistanceRepository;
11383
+ get allProperties(): PropertyState[];
11384
+ get allBasePropertiesFromOriginalParents(): PropertyState[];
11378
11385
  get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
11379
11386
  get extendedPropertiesFromOriginalParents(): PropertyState[];
11380
11387
  get implementedPropertiesFromOriginalParents(): PropertyState[];
@@ -11798,7 +11805,7 @@ export declare class PropertyState extends VersionedState implements IProperty,
11798
11805
  getErrors(): EntityError[];
11799
11806
  getShallowErrors(): EntityError[];
11800
11807
  clone(changeSet?: ChangeSet | null, parent?: DefinitionEntityState | null, newId?: string | null, subscribe?: boolean): PropertyState;
11801
- setDataType(dataType: DataTypeState): PropertyState;
11808
+ setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): PropertyState;
11802
11809
  removeDataType(): PropertyState;
11803
11810
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
11804
11811
  getDefaultValue(): LiteralValueState | null;
@@ -12052,7 +12059,7 @@ export declare class ReturnDeclarationState extends VersionedState implements IR
12052
12059
  getDefaultValue(): LiteralValueState | null;
12053
12060
  setDefaultValue(defaultValue: LiteralValueState): ReturnDeclarationState;
12054
12061
  clone(changeSet?: ChangeSet | null, parent?: ReturnStatementState | BreakStatementState | ContinueStatementState | null, newId?: string | null, subscribe?: boolean): ReturnDeclarationState;
12055
- setDataType(dataType: DataTypeState | null): ReturnDeclarationState;
12062
+ setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): ReturnDeclarationState;
12056
12063
  removeDataType(): ReturnDeclarationState;
12057
12064
  inferDataType(changeSet?: ChangeSet | null): ReturnDeclarationState;
12058
12065
  getCounterparts(): ReturnDeclarationState[];
@@ -13950,7 +13957,7 @@ export declare class ValueDescriptorState extends VersionedState implements IVal
13950
13957
  getShallowErrors(): EntityError[];
13951
13958
  clone(changeSet?: ChangeSet | null, parent?: ActionDescriptorState | LoopState | SearchState | null, newId?: string | null, subscribe?: boolean): ValueDescriptorState;
13952
13959
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
13953
- setDataType(dataType: DataTypeState): ValueDescriptorState;
13960
+ setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): ValueDescriptorState;
13954
13961
  getDefaultValue(): LiteralValueState | null;
13955
13962
  setDefaultValue(defaultValue: LiteralValueState): ValueDescriptorState;
13956
13963
  removeDataType(): ValueDescriptorState;
@@ -14173,10 +14180,12 @@ export declare class VariableDeclarationState extends VersionedState implements
14173
14180
  clone(changeSet?: ChangeSet | null, parent?: EntryPointEntityState | ProjectState | null, newId?: string | null, subscribe?: boolean): VariableDeclarationState;
14174
14181
  addInternalCall(internalCall: InternalCallState): VariableDeclarationState;
14175
14182
  createInstance(parent?: EntityWithLogicScopeState | ProjectState, changeSet?: ChangeSet | null, overrides?: Partial<IVariableInstanceTransfer>): VariableInstanceState;
14176
- generateUnusedInputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14177
- generateUnusedOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14183
+ removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14184
+ removeUnrecognizedOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14185
+ syncInputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14186
+ syncOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14178
14187
  generateUnusedInternalCalls(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14179
- setDataType(dataType: DataTypeState): VariableDeclarationState;
14188
+ setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): VariableDeclarationState;
14180
14189
  removeDataType(): VariableDeclarationState;
14181
14190
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
14182
14191
  getUnusedInputs(): VariableInputMapState[];
@@ -14364,8 +14373,10 @@ export declare class VariableInstanceState extends VersionedState implements IVa
14364
14373
  clone(changeSet?: ChangeSet | null, parent?: EntryPointEntityState | ProjectState | null, newId?: string | null, subscribe?: boolean): VariableInstanceState;
14365
14374
  addInternalCall(internalCall: InternalCallState): VariableInstanceState;
14366
14375
  setDeclaration(declaration: VariableDeclarationState): VariableInstanceState;
14367
- generateUnusedInputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14368
- generateUnusedOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14376
+ removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14377
+ removeUnrecognizedOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14378
+ syncInputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14379
+ syncOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14369
14380
  generateUnusedInternalCalls(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14370
14381
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
14371
14382
  getUnusedInputs(): VariableInputMapState[];