@elyx-code/project-logic-tree 0.0.6307 → 0.0.6309

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
@@ -1083,12 +1083,15 @@ 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 allMethods(): FunctionDeclarationState[];
1086
1087
  get allProperties(): PropertyState[];
1088
+ get allBaseMethodsFromOriginalParents(): FunctionDeclarationState[];
1087
1089
  get allBasePropertiesFromOriginalParents(): PropertyState[];
1088
1090
  get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
1089
1091
  get extendedPropertiesFromOriginalParents(): PropertyState[];
1090
1092
  get implementedPropertiesFromOriginalParents(): PropertyState[];
1091
1093
  get extendedProperties(): PropertyState[];
1094
+ get ownDeclaredMethods(): FunctionDeclarationState[];
1092
1095
  get ownDeclaredProperties(): PropertyState[];
1093
1096
  subscribe(): BuiltInBaseEntityState;
1094
1097
  unsubscribe(): BuiltInBaseEntityState;
@@ -2155,7 +2158,9 @@ export declare class DefinitionEntityState extends VersionedState implements Bas
2155
2158
  modifiedData: IDefinitionEntityGenerationTarget;
2156
2159
  };
2157
2160
  get interactive(): boolean;
2161
+ get allMethods(): FunctionDeclarationState[];
2158
2162
  get allProperties(): PropertyState[];
2163
+ get allBaseMethodsFromOriginalParents(): FunctionDeclarationState[];
2159
2164
  get allBasePropertiesFromOriginalParents(): PropertyState[];
2160
2165
  get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
2161
2166
  get allBaseMethodsFromExtendedAndImplementedEntities(): (FunctionDeclarationState | ActionDescriptorState)[];
@@ -11413,12 +11418,15 @@ export declare class PrimitiveEntityState extends VersionedState implements Base
11413
11418
  project: ProjectState;
11414
11419
  constructor(initialData: IPrimitiveEntity | IPrimitiveEntityTransfer, parentProjectState: ProjectState);
11415
11420
  static repository: IReadOnlyEntityPersistanceRepository;
11421
+ get allMethods(): FunctionDeclarationState[];
11416
11422
  get allProperties(): PropertyState[];
11423
+ get allBaseMethodsFromOriginalParents(): FunctionDeclarationState[];
11417
11424
  get allBasePropertiesFromOriginalParents(): PropertyState[];
11418
11425
  get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
11419
11426
  get extendedPropertiesFromOriginalParents(): PropertyState[];
11420
11427
  get implementedPropertiesFromOriginalParents(): PropertyState[];
11421
11428
  get extendedProperties(): PropertyState[];
11429
+ get ownDeclaredMethods(): FunctionDeclarationState[];
11422
11430
  get ownDeclaredProperties(): PropertyState[];
11423
11431
  subscribe(): PrimitiveEntityState;
11424
11432
  unsubscribe(): PrimitiveEntityState;
@@ -14163,6 +14171,7 @@ export declare class VariableDeclarationState extends VersionedState implements
14163
14171
  get unusedOutputs(): VariableOutputMapState[];
14164
14172
  get usedInternalCalls(): InternalCallState[];
14165
14173
  get unusedInternalCalls(): InternalCallState[];
14174
+ removeInternalCall(internalCall: InternalCallState, changeSet?: ChangeSet | null): VariableDeclarationState;
14166
14175
  removeInput(input: VariableInputMapState, changeSet?: ChangeSet | null): VariableDeclarationState;
14167
14176
  addInput(input: VariableInputMapState, changeSet?: ChangeSet | null): VariableDeclarationState;
14168
14177
  addOutput(output: VariableOutputMapState, changeSet?: ChangeSet | null): VariableDeclarationState;
@@ -14220,6 +14229,7 @@ export declare class VariableDeclarationState extends VersionedState implements
14220
14229
  createInstance(parent?: EntityWithLogicScopeState | ProjectState, changeSet?: ChangeSet | null, overrides?: Partial<IVariableInstanceTransfer>): VariableInstanceState;
14221
14230
  removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14222
14231
  removeUnrecognizedOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14232
+ removeUnrecognizedInternalCalls(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14223
14233
  syncInputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14224
14234
  syncOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
14225
14235
  generateUnusedInternalCalls(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
@@ -14358,6 +14368,7 @@ export declare class VariableInstanceState extends VersionedState implements IVa
14358
14368
  get unusedOutputs(): VariableOutputMapState[];
14359
14369
  get usedInternalCalls(): InternalCallState[];
14360
14370
  get unusedInternalCalls(): InternalCallState[];
14371
+ removeInternalCall(internalCall: InternalCallState, changeSet?: ChangeSet | null): VariableInstanceState;
14361
14372
  removeInput(input: VariableInputMapState, changeSet?: ChangeSet | null): VariableInstanceState;
14362
14373
  addInput(input: VariableInputMapState, changeSet?: ChangeSet | null): VariableInstanceState;
14363
14374
  addOutput(output: VariableOutputMapState, changeSet?: ChangeSet | null): VariableInstanceState;
@@ -14413,6 +14424,7 @@ export declare class VariableInstanceState extends VersionedState implements IVa
14413
14424
  setDeclaration(declaration: VariableDeclarationState): VariableInstanceState;
14414
14425
  removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14415
14426
  removeUnrecognizedOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14427
+ removeUnrecognizedInternalCalls(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14416
14428
  syncInputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14417
14429
  syncOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
14418
14430
  generateUnusedInternalCalls(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;