@elyx-code/project-logic-tree 0.0.6126 → 0.0.6127

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.
Files changed (31) hide show
  1. package/dist/index.js +1182 -1170
  2. package/dist/index.umd.cjs +69 -69
  3. package/dist/tree/state/action-descriptor/action-descriptor.d.ts +4 -4
  4. package/dist/tree/state/argument-declaration/argument-declaration.d.ts +4 -4
  5. package/dist/tree/state/base.d.ts +4 -4
  6. package/dist/tree/state/break-statement/break-statement.d.ts +4 -4
  7. package/dist/tree/state/built-in-base-entity/built-in-base-entity.d.ts +1 -1
  8. package/dist/tree/state/condition/condition.d.ts +4 -4
  9. package/dist/tree/state/continue-statement/continue-statement.d.ts +4 -4
  10. package/dist/tree/state/data-type/data-type.d.ts +4 -4
  11. package/dist/tree/state/definition-entity/definition-entity.d.ts +4 -4
  12. package/dist/tree/state/function-call/function-call.d.ts +4 -4
  13. package/dist/tree/state/function-declaration/function-declaration.d.ts +4 -4
  14. package/dist/tree/state/global-event/global-event.d.ts +4 -4
  15. package/dist/tree/state/input-map/input-map.d.ts +4 -4
  16. package/dist/tree/state/installed-project/installed-project.d.ts +4 -4
  17. package/dist/tree/state/internal-call/internal-call.d.ts +4 -4
  18. package/dist/tree/state/literal-value/literal-value.d.ts +4 -4
  19. package/dist/tree/state/loop/loop.d.ts +4 -4
  20. package/dist/tree/state/operation/operation.d.ts +4 -4
  21. package/dist/tree/state/output-map/output-map.d.ts +4 -4
  22. package/dist/tree/state/primitive-entity/primitive-entity.d.ts +1 -1
  23. package/dist/tree/state/project/project.d.ts +4 -4
  24. package/dist/tree/state/property/property.d.ts +4 -4
  25. package/dist/tree/state/return-declaration/return-declaration.d.ts +4 -4
  26. package/dist/tree/state/return-statement/return-statement.d.ts +4 -4
  27. package/dist/tree/state/search/search.d.ts +4 -4
  28. package/dist/tree/state/value-descriptor/value-descriptor.d.ts +4 -4
  29. package/dist/tree/state/variable-declaration/variable-declaration.d.ts +4 -4
  30. package/dist/tree/state/variable-instance/variable-instance.d.ts +4 -4
  31. package/package.json +1 -1
@@ -78,10 +78,10 @@ export declare class ActionDescriptorState implements IActionDescriptor, UserMan
78
78
  subscribe(): ActionDescriptorState;
79
79
  unsubscribe(): ActionDescriptorState;
80
80
  sync(data: Partial<IActionDescriptor>): ActionDescriptorState;
81
- load(_?: IEntityPersistanceOptions): Promise<ActionDescriptorState>;
82
- create(_?: IEntityPersistanceOptions): Promise<ActionDescriptorState>;
83
- update(_?: IEntityPersistanceOptions): Promise<ActionDescriptorState>;
84
- delete(_?: IEntityPersistanceOptions): Promise<ActionDescriptorState>;
81
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ActionDescriptorState>;
82
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ActionDescriptorState>;
83
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ActionDescriptorState>;
84
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ActionDescriptorState>;
85
85
  remove({ ignoreUpstream: _, seenEntities, }?: {
86
86
  ignoreUpstream: boolean;
87
87
  seenEntities: Set<string>;
@@ -62,10 +62,10 @@ export declare class ArgumentDeclarationState implements IArgumentDeclaration, U
62
62
  subscribe(): ArgumentDeclarationState;
63
63
  unsubscribe(): ArgumentDeclarationState;
64
64
  sync(data: Partial<IArgumentDeclaration>): ArgumentDeclarationState;
65
- load(_?: IEntityPersistanceOptions): Promise<ArgumentDeclarationState>;
66
- create(_?: IEntityPersistanceOptions): Promise<ArgumentDeclarationState>;
67
- update(_?: IEntityPersistanceOptions): Promise<ArgumentDeclarationState>;
68
- delete(_?: IEntityPersistanceOptions): Promise<ArgumentDeclarationState>;
65
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ArgumentDeclarationState>;
66
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ArgumentDeclarationState>;
67
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ArgumentDeclarationState>;
68
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ArgumentDeclarationState>;
69
69
  remove({ ignoreUpstream, seenEntities, }?: {
70
70
  ignoreUpstream: boolean;
71
71
  seenEntities: Set<string>;
@@ -43,12 +43,12 @@ export interface IEntityPersistanceOptions {
43
43
  }
44
44
  export declare const ENTITY_PERSISTANCE_OPTIONS_DEFAULTS: IEntityPersistanceOptions;
45
45
  export interface IReadOnlyEntityPersistanceRepository {
46
- load(entityId: EntityId): Promise<ElementShallowTransfer | null>;
46
+ load<T extends Array<any> = any[]>(entityId: EntityId, ...otherArgs: T): Promise<ElementShallowTransfer | null>;
47
47
  }
48
48
  export interface IEditableEntityPersistanceRepository extends IReadOnlyEntityPersistanceRepository {
49
- create(entity: ElementShallowTransfer): Promise<ElementShallowTransfer>;
50
- update(entity: ElementShallowTransfer): Promise<ElementShallowTransfer>;
51
- delete(entityId: EntityId): Promise<void>;
49
+ create<T extends Array<any> = any[]>(entity: ElementShallowTransfer, ...otherArgs: T): Promise<ElementShallowTransfer>;
50
+ update<T extends Array<any> = any[]>(entity: ElementShallowTransfer, ...otherArgs: T): Promise<ElementShallowTransfer>;
51
+ delete<T extends Array<any> = any[]>(entityId: EntityId, ...otherArgs: T): Promise<void>;
52
52
  }
53
53
  export declare const READ_ONLY_ENTITY_PERSISTANCE_REPOSITORY: IReadOnlyEntityPersistanceRepository;
54
54
  export declare const EDITABLE_PERSISTANCE_REPOSITORY_DEFAULTS: IEditableEntityPersistanceRepository;
@@ -63,10 +63,10 @@ export declare class BreakStatementState implements IBreakStatement, UserManaged
63
63
  subscribe(): BreakStatementState;
64
64
  unsubscribe(): BreakStatementState;
65
65
  sync(data: Partial<IBreakStatement>): BreakStatementState;
66
- load(_?: IEntityPersistanceOptions): Promise<BreakStatementState>;
67
- create(_?: IEntityPersistanceOptions): Promise<BreakStatementState>;
68
- update(_?: IEntityPersistanceOptions): Promise<BreakStatementState>;
69
- delete(_?: IEntityPersistanceOptions): Promise<BreakStatementState>;
66
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<BreakStatementState>;
67
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<BreakStatementState>;
68
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<BreakStatementState>;
69
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<BreakStatementState>;
70
70
  remove({ ignoreUpstream, seenEntities, }?: {
71
71
  ignoreUpstream: boolean;
72
72
  seenEntities: Set<string>;
@@ -35,7 +35,7 @@ export declare class BuiltInBaseEntityState implements BaseState, IBuiltInBaseEn
35
35
  get ownDeclaredProperties(): PropertyState[];
36
36
  subscribe(): BuiltInBaseEntityState;
37
37
  unsubscribe(): BuiltInBaseEntityState;
38
- load(_?: IEntityPersistanceOptions): Promise<BuiltInBaseEntityState>;
38
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<BuiltInBaseEntityState>;
39
39
  remove(_?: {
40
40
  ignoreUpstream: boolean;
41
41
  seenEntities: Set<string>;
@@ -71,10 +71,10 @@ export declare class ConditionState implements ICondition, UserManagedEntityStat
71
71
  subscribe(): ConditionState;
72
72
  unsubscribe(): ConditionState;
73
73
  sync(data: Partial<ICondition>): ConditionState;
74
- load(_?: IEntityPersistanceOptions): Promise<ConditionState>;
75
- create(_?: IEntityPersistanceOptions): Promise<ConditionState>;
76
- update(_?: IEntityPersistanceOptions): Promise<ConditionState>;
77
- delete(_?: IEntityPersistanceOptions): Promise<ConditionState>;
74
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ConditionState>;
75
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ConditionState>;
76
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ConditionState>;
77
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ConditionState>;
78
78
  remove({ ignoreUpstream, seenEntities, }?: {
79
79
  ignoreUpstream: boolean;
80
80
  seenEntities: Set<string>;
@@ -63,10 +63,10 @@ export declare class ContinueStatementState implements IContinueStatement, UserM
63
63
  subscribe(): ContinueStatementState;
64
64
  unsubscribe(): ContinueStatementState;
65
65
  sync(data: Partial<IContinueStatement>): ContinueStatementState;
66
- load(_?: IEntityPersistanceOptions): Promise<ContinueStatementState>;
67
- create(_?: IEntityPersistanceOptions): Promise<ContinueStatementState>;
68
- update(_?: IEntityPersistanceOptions): Promise<ContinueStatementState>;
69
- delete(_?: IEntityPersistanceOptions): Promise<ContinueStatementState>;
66
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ContinueStatementState>;
67
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ContinueStatementState>;
68
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ContinueStatementState>;
69
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ContinueStatementState>;
70
70
  remove({ ignoreUpstream, seenEntities, }?: {
71
71
  ignoreUpstream: boolean;
72
72
  seenEntities: Set<string>;
@@ -72,10 +72,10 @@ export declare class DataTypeState implements IDataType, UserManagedEntityStateF
72
72
  subscribe(): DataTypeState;
73
73
  unsubscribe(): DataTypeState;
74
74
  sync(data: Partial<IDataType>): DataTypeState;
75
- load(_?: IEntityPersistanceOptions): Promise<DataTypeState>;
76
- create(_?: IEntityPersistanceOptions): Promise<DataTypeState>;
77
- update(_?: IEntityPersistanceOptions): Promise<DataTypeState>;
78
- delete(_?: IEntityPersistanceOptions): Promise<DataTypeState>;
75
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<DataTypeState>;
76
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<DataTypeState>;
77
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<DataTypeState>;
78
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<DataTypeState>;
79
79
  remove({ ignoreUpstream, seenEntities, }?: {
80
80
  ignoreUpstream: boolean;
81
81
  seenEntities: Set<string>;
@@ -87,10 +87,10 @@ export declare class DefinitionEntityState implements BaseState, UserManagedEnti
87
87
  subscribe(): DefinitionEntityState;
88
88
  unsubscribe(): DefinitionEntityState;
89
89
  sync(data: Partial<IDefinitionEntity | IDefinitionEntityTransfer>): DefinitionEntityState;
90
- load(_?: IEntityPersistanceOptions): Promise<DefinitionEntityState>;
91
- create(_?: IEntityPersistanceOptions): Promise<DefinitionEntityState>;
92
- update(_?: IEntityPersistanceOptions): Promise<DefinitionEntityState>;
93
- delete(_?: IEntityPersistanceOptions): Promise<DefinitionEntityState>;
90
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<DefinitionEntityState>;
91
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<DefinitionEntityState>;
92
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<DefinitionEntityState>;
93
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<DefinitionEntityState>;
94
94
  remove({ ignoreUpstream: _, seenEntities, }?: {
95
95
  ignoreUpstream: boolean;
96
96
  seenEntities: Set<string>;
@@ -76,10 +76,10 @@ export declare class FunctionCallState implements IFunctionCall, BaseState, User
76
76
  subscribe(): FunctionCallState;
77
77
  unsubscribe(): FunctionCallState;
78
78
  sync(data: Partial<IFunctionCall>): FunctionCallState;
79
- load(_?: IEntityPersistanceOptions): Promise<FunctionCallState>;
80
- create(_?: IEntityPersistanceOptions): Promise<FunctionCallState>;
81
- update(_?: IEntityPersistanceOptions): Promise<FunctionCallState>;
82
- delete(_?: IEntityPersistanceOptions): Promise<FunctionCallState>;
79
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<FunctionCallState>;
80
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<FunctionCallState>;
81
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<FunctionCallState>;
82
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<FunctionCallState>;
83
83
  remove({ ignoreUpstream, seenEntities, }?: {
84
84
  ignoreUpstream: boolean;
85
85
  seenEntities: Set<string>;
@@ -78,10 +78,10 @@ export declare class FunctionDeclarationState implements IFunctionDeclaration, B
78
78
  subscribe(): FunctionDeclarationState;
79
79
  unsubscribe(): FunctionDeclarationState;
80
80
  sync(data: Partial<IFunctionDeclaration>): FunctionDeclarationState;
81
- load(_?: IEntityPersistanceOptions): Promise<FunctionDeclarationState>;
82
- create(_?: IEntityPersistanceOptions): Promise<FunctionDeclarationState>;
83
- update(_?: IEntityPersistanceOptions): Promise<FunctionDeclarationState>;
84
- delete(_?: IEntityPersistanceOptions): Promise<FunctionDeclarationState>;
81
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<FunctionDeclarationState>;
82
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<FunctionDeclarationState>;
83
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<FunctionDeclarationState>;
84
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<FunctionDeclarationState>;
85
85
  remove({ ignoreUpstream: _, seenEntities, }?: {
86
86
  ignoreUpstream: boolean;
87
87
  seenEntities: Set<string>;
@@ -68,10 +68,10 @@ export declare class GlobalEventState implements IGlobalEvent, UserManagedEntity
68
68
  subscribe(): GlobalEventState;
69
69
  unsubscribe(): GlobalEventState;
70
70
  sync(data: Partial<IGlobalEvent>): GlobalEventState;
71
- load(_?: IEntityPersistanceOptions): Promise<GlobalEventState>;
72
- create(_?: IEntityPersistanceOptions): Promise<GlobalEventState>;
73
- update(_?: IEntityPersistanceOptions): Promise<GlobalEventState>;
74
- delete(_?: IEntityPersistanceOptions): Promise<GlobalEventState>;
71
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<GlobalEventState>;
72
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<GlobalEventState>;
73
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<GlobalEventState>;
74
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<GlobalEventState>;
75
75
  remove({ ignoreUpstream: _, seenEntities, }?: {
76
76
  ignoreUpstream: boolean;
77
77
  seenEntities: Set<string>;
@@ -72,10 +72,10 @@ export declare class InputMapState implements IInputMap, ValueReadingEntityClass
72
72
  subscribe(): InputMapState;
73
73
  unsubscribe(): InputMapState;
74
74
  sync(data: Partial<IInputMap>): InputMapState;
75
- load(_?: IEntityPersistanceOptions): Promise<InputMapState>;
76
- create(_?: IEntityPersistanceOptions): Promise<InputMapState>;
77
- update(_?: IEntityPersistanceOptions): Promise<InputMapState>;
78
- delete(_?: IEntityPersistanceOptions): Promise<InputMapState>;
75
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InputMapState>;
76
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InputMapState>;
77
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InputMapState>;
78
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InputMapState>;
79
79
  remove({ ignoreUpstream, seenEntities, }?: {
80
80
  ignoreUpstream: boolean;
81
81
  seenEntities: Set<string>;
@@ -55,10 +55,10 @@ export declare class InstalledProjectState implements IInstalledProject, UserMan
55
55
  subscribe(): InstalledProjectState;
56
56
  unsubscribe(): InstalledProjectState;
57
57
  sync(data: Partial<IInstalledProject>): InstalledProjectState;
58
- load(_?: IEntityPersistanceOptions): Promise<InstalledProjectState>;
59
- create(_?: IEntityPersistanceOptions): Promise<InstalledProjectState>;
60
- update(_?: IEntityPersistanceOptions): Promise<InstalledProjectState>;
61
- delete(_?: IEntityPersistanceOptions): Promise<InstalledProjectState>;
58
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InstalledProjectState>;
59
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InstalledProjectState>;
60
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InstalledProjectState>;
61
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InstalledProjectState>;
62
62
  remove({ ignoreUpstream: _, seenEntities, }?: {
63
63
  ignoreUpstream: boolean;
64
64
  seenEntities: Set<string>;
@@ -76,10 +76,10 @@ export declare class InternalCallState implements IInternalCall, UserManagedEnti
76
76
  subscribe(): InternalCallState;
77
77
  unsubscribe(): InternalCallState;
78
78
  sync(data: Partial<IInternalCall>): InternalCallState;
79
- load(_?: IEntityPersistanceOptions): Promise<InternalCallState>;
80
- create(_?: IEntityPersistanceOptions): Promise<InternalCallState>;
81
- update(_?: IEntityPersistanceOptions): Promise<InternalCallState>;
82
- delete(_?: IEntityPersistanceOptions): Promise<InternalCallState>;
79
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InternalCallState>;
80
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InternalCallState>;
81
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InternalCallState>;
82
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<InternalCallState>;
83
83
  remove({ ignoreUpstream, seenEntities, }?: {
84
84
  ignoreUpstream: boolean;
85
85
  seenEntities: Set<string>;
@@ -67,10 +67,10 @@ export declare class LiteralValueState implements BaseState, UserManagedEntitySt
67
67
  subscribe(): LiteralValueState;
68
68
  unsubscribe(): LiteralValueState;
69
69
  sync(data: Partial<ILiteralValue>): LiteralValueState;
70
- load(_?: IEntityPersistanceOptions): Promise<LiteralValueState>;
71
- create(_?: IEntityPersistanceOptions): Promise<LiteralValueState>;
72
- update(_?: IEntityPersistanceOptions): Promise<LiteralValueState>;
73
- delete(_?: IEntityPersistanceOptions): Promise<LiteralValueState>;
70
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<LiteralValueState>;
71
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<LiteralValueState>;
72
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<LiteralValueState>;
73
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<LiteralValueState>;
74
74
  remove({ ignoreUpstream: _, seenEntities, }?: {
75
75
  ignoreUpstream: boolean;
76
76
  seenEntities: Set<string>;
@@ -102,10 +102,10 @@ export declare class LoopState implements ILoop, BaseState, UserManagedEntitySta
102
102
  subscribe(): LoopState;
103
103
  unsubscribe(): LoopState;
104
104
  sync(data: Partial<ILoop>): LoopState;
105
- load(_?: IEntityPersistanceOptions): Promise<LoopState>;
106
- create(_?: IEntityPersistanceOptions): Promise<LoopState>;
107
- update(_?: IEntityPersistanceOptions): Promise<LoopState>;
108
- delete(_?: IEntityPersistanceOptions): Promise<LoopState>;
105
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<LoopState>;
106
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<LoopState>;
107
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<LoopState>;
108
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<LoopState>;
109
109
  remove({ ignoreUpstream, seenEntities, }?: {
110
110
  ignoreUpstream: boolean;
111
111
  seenEntities: Set<string>;
@@ -76,10 +76,10 @@ export declare class OperationState implements IOperation, BaseState, UserManage
76
76
  subscribe(): OperationState;
77
77
  unsubscribe(): OperationState;
78
78
  sync(data: Partial<IOperation>): OperationState;
79
- load(_?: IEntityPersistanceOptions): Promise<OperationState>;
80
- create(_?: IEntityPersistanceOptions): Promise<OperationState>;
81
- update(_?: IEntityPersistanceOptions): Promise<OperationState>;
82
- delete(_?: IEntityPersistanceOptions): Promise<OperationState>;
79
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<OperationState>;
80
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<OperationState>;
81
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<OperationState>;
82
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<OperationState>;
83
83
  remove({ ignoreUpstream, seenEntities, }?: {
84
84
  ignoreUpstream: boolean;
85
85
  seenEntities: Set<string>;
@@ -65,10 +65,10 @@ export declare class OutputMapState implements IOutputMap, UserManagedEntityStat
65
65
  subscribe(): OutputMapState;
66
66
  unsubscribe(): OutputMapState;
67
67
  sync(data: Partial<IOutputMap>): OutputMapState;
68
- load(_?: IEntityPersistanceOptions): Promise<OutputMapState>;
69
- create(_?: IEntityPersistanceOptions): Promise<OutputMapState>;
70
- update(_?: IEntityPersistanceOptions): Promise<OutputMapState>;
71
- delete(_?: IEntityPersistanceOptions): Promise<OutputMapState>;
68
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<OutputMapState>;
69
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<OutputMapState>;
70
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<OutputMapState>;
71
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<OutputMapState>;
72
72
  remove({ ignoreUpstream, seenEntities, }?: {
73
73
  ignoreUpstream: boolean;
74
74
  seenEntities: Set<string>;
@@ -33,7 +33,7 @@ export declare class PrimitiveEntityState implements BaseState, IPrimitiveEntity
33
33
  get ownDeclaredProperties(): PropertyState[];
34
34
  subscribe(): PrimitiveEntityState;
35
35
  unsubscribe(): PrimitiveEntityState;
36
- load(_?: IEntityPersistanceOptions): Promise<PrimitiveEntityState>;
36
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<PrimitiveEntityState>;
37
37
  remove({ ignoreUpstream: _, seenEntities: _1, }?: {
38
38
  ignoreUpstream: boolean;
39
39
  seenEntities: Set<string>;
@@ -114,10 +114,10 @@ export declare class ProjectState implements IProject, UserManagedEntityStateFun
114
114
  x: number;
115
115
  y: number;
116
116
  }>): ProjectState;
117
- load(_?: IEntityPersistanceOptions): Promise<ProjectState>;
118
- create(_?: IEntityPersistanceOptions): Promise<ProjectState>;
119
- update(_?: IEntityPersistanceOptions): Promise<ProjectState>;
120
- delete(_?: IEntityPersistanceOptions): Promise<ProjectState>;
117
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ProjectState>;
118
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ProjectState>;
119
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ProjectState>;
120
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ProjectState>;
121
121
  remove({ ignoreUpstream: _ }?: {
122
122
  ignoreUpstream: boolean;
123
123
  }): {
@@ -66,10 +66,10 @@ export declare class PropertyState implements IProperty, UserManagedEntityStateF
66
66
  subscribe(): PropertyState;
67
67
  unsubscribe(): PropertyState;
68
68
  sync(data: Partial<IProperty>): PropertyState;
69
- load(_?: IEntityPersistanceOptions): Promise<PropertyState>;
70
- create(_?: IEntityPersistanceOptions): Promise<PropertyState>;
71
- update(_?: IEntityPersistanceOptions): Promise<PropertyState>;
72
- delete(_?: IEntityPersistanceOptions): Promise<PropertyState>;
69
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<PropertyState>;
70
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<PropertyState>;
71
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<PropertyState>;
72
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<PropertyState>;
73
73
  remove({ ignoreUpstream, seenEntities, }?: {
74
74
  ignoreUpstream: boolean;
75
75
  seenEntities: Set<string>;
@@ -67,10 +67,10 @@ export declare class ReturnDeclarationState implements IReturnDeclaration, UserM
67
67
  subscribe(): ReturnDeclarationState;
68
68
  unsubscribe(): ReturnDeclarationState;
69
69
  sync(data: Partial<IReturnDeclaration>): ReturnDeclarationState;
70
- load(_?: IEntityPersistanceOptions): Promise<ReturnDeclarationState>;
71
- create(_?: IEntityPersistanceOptions): Promise<ReturnDeclarationState>;
72
- update(_?: IEntityPersistanceOptions): Promise<ReturnDeclarationState>;
73
- delete(_?: IEntityPersistanceOptions): Promise<ReturnDeclarationState>;
70
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ReturnDeclarationState>;
71
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ReturnDeclarationState>;
72
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ReturnDeclarationState>;
73
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ReturnDeclarationState>;
74
74
  remove({ ignoreUpstream: _, seenEntities, }?: {
75
75
  ignoreUpstream: boolean;
76
76
  seenEntities: Set<string>;
@@ -62,10 +62,10 @@ export declare class ReturnStatementState implements IReturnStatement, UserManag
62
62
  subscribe(): ReturnStatementState;
63
63
  unsubscribe(): ReturnStatementState;
64
64
  sync(data: Partial<IReturnStatement>): ReturnStatementState;
65
- load(_?: IEntityPersistanceOptions): Promise<ReturnStatementState>;
66
- create(_?: IEntityPersistanceOptions): Promise<ReturnStatementState>;
67
- update(_?: IEntityPersistanceOptions): Promise<ReturnStatementState>;
68
- delete(_?: IEntityPersistanceOptions): Promise<ReturnStatementState>;
65
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ReturnStatementState>;
66
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ReturnStatementState>;
67
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ReturnStatementState>;
68
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ReturnStatementState>;
69
69
  remove({ ignoreUpstream, seenEntities, }?: {
70
70
  ignoreUpstream: boolean;
71
71
  seenEntities: Set<string>;
@@ -81,10 +81,10 @@ export declare class SearchState implements ISearch, BaseState, UserManagedEntit
81
81
  subscribe(): SearchState;
82
82
  unsubscribe(): SearchState;
83
83
  sync(data: Partial<ISearch>): SearchState;
84
- load(_?: IEntityPersistanceOptions): Promise<SearchState>;
85
- create(_?: IEntityPersistanceOptions): Promise<SearchState>;
86
- update(_?: IEntityPersistanceOptions): Promise<SearchState>;
87
- delete(_?: IEntityPersistanceOptions): Promise<SearchState>;
84
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<SearchState>;
85
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<SearchState>;
86
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<SearchState>;
87
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<SearchState>;
88
88
  remove({ ignoreUpstream, seenEntities, }?: {
89
89
  ignoreUpstream: boolean;
90
90
  seenEntities: Set<string>;
@@ -58,10 +58,10 @@ export declare class ValueDescriptorState implements IValueDescriptor, UserManag
58
58
  subscribe(): ValueDescriptorState;
59
59
  unsubscribe(): ValueDescriptorState;
60
60
  sync(data: Partial<IValueDescriptor>): ValueDescriptorState;
61
- load(_?: IEntityPersistanceOptions): Promise<ValueDescriptorState>;
62
- create(_?: IEntityPersistanceOptions): Promise<ValueDescriptorState>;
63
- update(_?: IEntityPersistanceOptions): Promise<ValueDescriptorState>;
64
- delete(_?: IEntityPersistanceOptions): Promise<ValueDescriptorState>;
61
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ValueDescriptorState>;
62
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ValueDescriptorState>;
63
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ValueDescriptorState>;
64
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<ValueDescriptorState>;
65
65
  remove({ ignoreUpstream, seenEntities, }?: {
66
66
  ignoreUpstream: boolean;
67
67
  seenEntities: Set<string>;
@@ -98,10 +98,10 @@ export declare class VariableDeclarationState implements IVariableDeclaration, B
98
98
  getMasterInputWithValueWritterFromAllInstances(input: VariableInputMapState): VariableInputMapState;
99
99
  inferDataTypeAndSyncInstancesInputsAndOutputs(): VariableDeclarationState;
100
100
  sync(data: Partial<IVariableDeclaration>): VariableDeclarationState;
101
- load(_?: IEntityPersistanceOptions): Promise<VariableDeclarationState>;
102
- create(_?: IEntityPersistanceOptions): Promise<VariableDeclarationState>;
103
- update(_?: IEntityPersistanceOptions): Promise<VariableDeclarationState>;
104
- delete(_?: IEntityPersistanceOptions): Promise<VariableDeclarationState>;
101
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<VariableDeclarationState>;
102
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<VariableDeclarationState>;
103
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<VariableDeclarationState>;
104
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<VariableDeclarationState>;
105
105
  remove({ ignoreUpstream, seenEntities, }?: {
106
106
  ignoreUpstream: boolean;
107
107
  seenEntities: Set<string>;
@@ -89,10 +89,10 @@ export declare class VariableInstanceState implements IVariableInstance, BaseSta
89
89
  subscribe(): VariableInstanceState;
90
90
  unsubscribe(): VariableInstanceState;
91
91
  sync(data: Partial<IVariableInstance>): VariableInstanceState;
92
- load(_?: IEntityPersistanceOptions): Promise<VariableInstanceState>;
93
- create(_?: IEntityPersistanceOptions): Promise<VariableInstanceState>;
94
- update(_?: IEntityPersistanceOptions): Promise<VariableInstanceState>;
95
- delete(_?: IEntityPersistanceOptions): Promise<VariableInstanceState>;
92
+ load(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<VariableInstanceState>;
93
+ create(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<VariableInstanceState>;
94
+ update(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<VariableInstanceState>;
95
+ delete(_?: IEntityPersistanceOptions, ...otherArgs: any[]): Promise<VariableInstanceState>;
96
96
  remove({ ignoreUpstream, seenEntities, }?: {
97
97
  ignoreUpstream: boolean;
98
98
  seenEntities: Set<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6126",
3
+ "version": "0.0.6127",
4
4
  "author": "Sergio Herrero",
5
5
  "license": "UNLICENSED",
6
6
  "description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",