@elyx-code/project-logic-tree 0.0.6308 → 0.0.6310
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 +13 -0
- package/dist/index.js +4143 -3932
- package/dist/index.umd.cjs +36 -38
- package/package.json +1 -1
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;
|
|
@@ -1992,6 +1995,7 @@ export declare class DataTypeState extends VersionedState implements IDataType,
|
|
|
1992
1995
|
canBeObject(): boolean;
|
|
1993
1996
|
hasStrictObjectStructure(): boolean;
|
|
1994
1997
|
isInlineDeclaredEntity(): boolean;
|
|
1998
|
+
isIndependentlyUserDeclaredEntity(): boolean;
|
|
1995
1999
|
canModifyObjectStructure(): boolean;
|
|
1996
2000
|
inferFromInputs(inputs: VariableInputMapState[], changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
|
|
1997
2001
|
}
|
|
@@ -2155,7 +2159,9 @@ export declare class DefinitionEntityState extends VersionedState implements Bas
|
|
|
2155
2159
|
modifiedData: IDefinitionEntityGenerationTarget;
|
|
2156
2160
|
};
|
|
2157
2161
|
get interactive(): boolean;
|
|
2162
|
+
get allMethods(): FunctionDeclarationState[];
|
|
2158
2163
|
get allProperties(): PropertyState[];
|
|
2164
|
+
get allBaseMethodsFromOriginalParents(): FunctionDeclarationState[];
|
|
2159
2165
|
get allBasePropertiesFromOriginalParents(): PropertyState[];
|
|
2160
2166
|
get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
|
|
2161
2167
|
get allBaseMethodsFromExtendedAndImplementedEntities(): (FunctionDeclarationState | ActionDescriptorState)[];
|
|
@@ -11413,12 +11419,15 @@ export declare class PrimitiveEntityState extends VersionedState implements Base
|
|
|
11413
11419
|
project: ProjectState;
|
|
11414
11420
|
constructor(initialData: IPrimitiveEntity | IPrimitiveEntityTransfer, parentProjectState: ProjectState);
|
|
11415
11421
|
static repository: IReadOnlyEntityPersistanceRepository;
|
|
11422
|
+
get allMethods(): FunctionDeclarationState[];
|
|
11416
11423
|
get allProperties(): PropertyState[];
|
|
11424
|
+
get allBaseMethodsFromOriginalParents(): FunctionDeclarationState[];
|
|
11417
11425
|
get allBasePropertiesFromOriginalParents(): PropertyState[];
|
|
11418
11426
|
get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
|
|
11419
11427
|
get extendedPropertiesFromOriginalParents(): PropertyState[];
|
|
11420
11428
|
get implementedPropertiesFromOriginalParents(): PropertyState[];
|
|
11421
11429
|
get extendedProperties(): PropertyState[];
|
|
11430
|
+
get ownDeclaredMethods(): FunctionDeclarationState[];
|
|
11422
11431
|
get ownDeclaredProperties(): PropertyState[];
|
|
11423
11432
|
subscribe(): PrimitiveEntityState;
|
|
11424
11433
|
unsubscribe(): PrimitiveEntityState;
|
|
@@ -14163,6 +14172,7 @@ export declare class VariableDeclarationState extends VersionedState implements
|
|
|
14163
14172
|
get unusedOutputs(): VariableOutputMapState[];
|
|
14164
14173
|
get usedInternalCalls(): InternalCallState[];
|
|
14165
14174
|
get unusedInternalCalls(): InternalCallState[];
|
|
14175
|
+
removeInternalCall(internalCall: InternalCallState, changeSet?: ChangeSet | null): VariableDeclarationState;
|
|
14166
14176
|
removeInput(input: VariableInputMapState, changeSet?: ChangeSet | null): VariableDeclarationState;
|
|
14167
14177
|
addInput(input: VariableInputMapState, changeSet?: ChangeSet | null): VariableDeclarationState;
|
|
14168
14178
|
addOutput(output: VariableOutputMapState, changeSet?: ChangeSet | null): VariableDeclarationState;
|
|
@@ -14220,6 +14230,7 @@ export declare class VariableDeclarationState extends VersionedState implements
|
|
|
14220
14230
|
createInstance(parent?: EntityWithLogicScopeState | ProjectState, changeSet?: ChangeSet | null, overrides?: Partial<IVariableInstanceTransfer>): VariableInstanceState;
|
|
14221
14231
|
removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
|
|
14222
14232
|
removeUnrecognizedOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
|
|
14233
|
+
removeUnrecognizedInternalCalls(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
|
|
14223
14234
|
syncInputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
|
|
14224
14235
|
syncOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
|
|
14225
14236
|
generateUnusedInternalCalls(changeSet?: ChangeSet | null): IChangeSet<VariableDeclarationState>;
|
|
@@ -14358,6 +14369,7 @@ export declare class VariableInstanceState extends VersionedState implements IVa
|
|
|
14358
14369
|
get unusedOutputs(): VariableOutputMapState[];
|
|
14359
14370
|
get usedInternalCalls(): InternalCallState[];
|
|
14360
14371
|
get unusedInternalCalls(): InternalCallState[];
|
|
14372
|
+
removeInternalCall(internalCall: InternalCallState, changeSet?: ChangeSet | null): VariableInstanceState;
|
|
14361
14373
|
removeInput(input: VariableInputMapState, changeSet?: ChangeSet | null): VariableInstanceState;
|
|
14362
14374
|
addInput(input: VariableInputMapState, changeSet?: ChangeSet | null): VariableInstanceState;
|
|
14363
14375
|
addOutput(output: VariableOutputMapState, changeSet?: ChangeSet | null): VariableInstanceState;
|
|
@@ -14413,6 +14425,7 @@ export declare class VariableInstanceState extends VersionedState implements IVa
|
|
|
14413
14425
|
setDeclaration(declaration: VariableDeclarationState): VariableInstanceState;
|
|
14414
14426
|
removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
|
|
14415
14427
|
removeUnrecognizedOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
|
|
14428
|
+
removeUnrecognizedInternalCalls(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
|
|
14416
14429
|
syncInputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
|
|
14417
14430
|
syncOutputs(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
|
|
14418
14431
|
generateUnusedInternalCalls(changeSet?: ChangeSet | null): IChangeSet<VariableInstanceState>;
|