@elyx-code/project-logic-tree 0.0.6027 → 0.0.6029

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.
@@ -27,6 +27,7 @@ export declare class DataTypeState implements IDataType, UserManagedEntityStateF
27
27
  readonly type: EntityType.DataType;
28
28
  options?: string[];
29
29
  parentRelationType?: DataTypeParentChildRelation;
30
+ like: boolean;
30
31
  defaultValue: PrimitiveValueState | null;
31
32
  entity: CustomEntityState | PrimitiveEntityState | ActionDescriptorState | BuiltInBaseEntityState | null;
32
33
  andChildrenGroup: DataTypeState[] | null;
@@ -29,10 +29,9 @@ export declare class InputMapState implements IInputMap, ValueReadingEntityClass
29
29
  readonly type: EntityType.InputMap;
30
30
  defaultValue: PrimitiveValueState | null;
31
31
  readsValue: ValueWritingEntityState | null;
32
- dynamicArguments: InputMapState[];
33
32
  project: ProjectState;
34
33
  errors: EntityError[];
35
- parent: PassThroughCallableEntityState | InputMapState;
34
+ parent: PassThroughCallableEntityState;
36
35
  initialized: boolean;
37
36
  suggestion: boolean;
38
37
  constructor(initialVariableInputMapData: IInputMap | IInputMapTransfer, parentProjectState: ProjectState);
@@ -62,10 +61,8 @@ export declare class InputMapState implements IInputMap, ValueReadingEntityClass
62
61
  affected: EntityState[];
63
62
  self: InputMapState;
64
63
  };
65
- setParent(parent: PassThroughCallableEntityState | InputMapState): InputMapState;
64
+ setParent(parent: PassThroughCallableEntityState): InputMapState;
66
65
  setDeclaration(declaration: ArgumentDeclarationState | PropertyState | ValueDescriptorState | null): InputMapState;
67
- removeInput(input: InputMapState): InputMapState;
68
- addInput(input: InputMapState): InputMapState;
69
66
  initChildren(): InputMapState;
70
67
  setValueWriter(valueWriter: ValueWritingEntityState): InputMapState;
71
68
  removeValueWriter(): InputMapState;
@@ -121,7 +118,7 @@ export declare class ActionInputMapState extends InputMapState implements IActio
121
118
  name: null;
122
119
  description: null;
123
120
  declaration: ArgumentDeclarationState | ValueDescriptorState;
124
- parent: OperationState | FunctionCallState | ConditionState | LoopState | SearchState | InternalCallState | InputMapState;
121
+ parent: OperationState | FunctionCallState | ConditionState | LoopState | SearchState | InternalCallState;
125
122
  errors: EntityError[];
126
123
  constructor(initialActionInputMapData: IActionInputMap | IActionInputMapTransfer, parentProjectState: ProjectState);
127
124
  toJSON(): IActionInputMapTransfer;
@@ -5153,13 +5153,6 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5153
5153
  entityType: EntityType.BreakStatement;
5154
5154
  entityId: string;
5155
5155
  }>]>;
5156
- dynamicArguments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
5157
- type: z.ZodLiteral<EntityType.InputMap>;
5158
- }, "strip", z.ZodTypeAny, {
5159
- type: EntityType.InputMap;
5160
- }, {
5161
- type: EntityType.InputMap;
5162
- }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
5163
5156
  }, "strip", z.ZodTypeAny, {
5164
5157
  declaration: Record<string, any> | {
5165
5158
  type: EntityType.Property;
@@ -5650,9 +5643,6 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5650
5643
  entityId: string;
5651
5644
  };
5652
5645
  } | null;
5653
- dynamicArguments: (Record<string, any> | {
5654
- type: EntityType.InputMap;
5655
- })[];
5656
5646
  readsValue: Record<string, any> | {
5657
5647
  type: EntityType.OutputMap;
5658
5648
  } | {
@@ -6158,9 +6148,6 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
6158
6148
  entityId: string;
6159
6149
  };
6160
6150
  } | null;
6161
- dynamicArguments: (Record<string, any> | {
6162
- type: EntityType.InputMap;
6163
- })[];
6164
6151
  readsValue: Record<string, any> | {
6165
6152
  type: EntityType.OutputMap;
6166
6153
  } | {
@@ -11259,13 +11246,6 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11259
11246
  entityType: EntityType.BreakStatement;
11260
11247
  entityId: string;
11261
11248
  }>]>;
11262
- dynamicArguments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
11263
- type: z.ZodLiteral<EntityType.InputMap>;
11264
- }, "strip", z.ZodTypeAny, {
11265
- type: EntityType.InputMap;
11266
- }, {
11267
- type: EntityType.InputMap;
11268
- }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
11269
11249
  }>, "strip", z.ZodTypeAny, {
11270
11250
  id: string;
11271
11251
  type: EntityType.InputMap;
@@ -11759,9 +11739,6 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11759
11739
  entityId: string;
11760
11740
  };
11761
11741
  } | null;
11762
- dynamicArguments: (Record<string, any> | {
11763
- type: EntityType.InputMap;
11764
- })[];
11765
11742
  index: number;
11766
11743
  readsValue: Record<string, any> | {
11767
11744
  type: EntityType.OutputMap;
@@ -12273,9 +12250,6 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
12273
12250
  entityId: string;
12274
12251
  };
12275
12252
  } | null;
12276
- dynamicArguments: (Record<string, any> | {
12277
- type: EntityType.InputMap;
12278
- })[];
12279
12253
  index: number;
12280
12254
  readsValue: Record<string, any> | {
12281
12255
  type: EntityType.OutputMap;
@@ -17244,13 +17218,6 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17244
17218
  entityType: EntityType.VariableInstance;
17245
17219
  entityId: string;
17246
17220
  }>]>;
17247
- dynamicArguments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
17248
- type: z.ZodLiteral<EntityType.InputMap>;
17249
- }, "strip", z.ZodTypeAny, {
17250
- type: EntityType.InputMap;
17251
- }, {
17252
- type: EntityType.InputMap;
17253
- }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
17254
17221
  }, "strip", z.ZodTypeAny, {
17255
17222
  declaration: Record<string, any> | {
17256
17223
  type: EntityType.Property;
@@ -17699,9 +17666,6 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17699
17666
  entityId: string;
17700
17667
  };
17701
17668
  } | null;
17702
- dynamicArguments: (Record<string, any> | {
17703
- type: EntityType.InputMap;
17704
- })[];
17705
17669
  readsValue: Record<string, any> | {
17706
17670
  type: EntityType.OutputMap;
17707
17671
  } | {
@@ -18165,9 +18129,6 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
18165
18129
  entityId: string;
18166
18130
  };
18167
18131
  } | null;
18168
- dynamicArguments: (Record<string, any> | {
18169
- type: EntityType.InputMap;
18170
- })[];
18171
18132
  readsValue: Record<string, any> | {
18172
18133
  type: EntityType.OutputMap;
18173
18134
  } | {
@@ -23125,13 +23086,6 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23125
23086
  entityType: EntityType.VariableInstance;
23126
23087
  entityId: string;
23127
23088
  }>]>;
23128
- dynamicArguments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
23129
- type: z.ZodLiteral<EntityType.InputMap>;
23130
- }, "strip", z.ZodTypeAny, {
23131
- type: EntityType.InputMap;
23132
- }, {
23133
- type: EntityType.InputMap;
23134
- }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
23135
23089
  }>, "strip", z.ZodTypeAny, {
23136
23090
  id: string;
23137
23091
  type: EntityType.InputMap;
@@ -23583,9 +23537,6 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23583
23537
  entityId: string;
23584
23538
  };
23585
23539
  } | null;
23586
- dynamicArguments: (Record<string, any> | {
23587
- type: EntityType.InputMap;
23588
- })[];
23589
23540
  index: number;
23590
23541
  readsValue: Record<string, any> | {
23591
23542
  type: EntityType.OutputMap;
@@ -24055,9 +24006,6 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
24055
24006
  entityId: string;
24056
24007
  };
24057
24008
  } | null;
24058
- dynamicArguments: (Record<string, any> | {
24059
- type: EntityType.InputMap;
24060
- })[];
24061
24009
  index: number;
24062
24010
  readsValue: Record<string, any> | {
24063
24011
  type: EntityType.OutputMap;
@@ -29116,13 +29064,6 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29116
29064
  entityType: EntityType.BreakStatement;
29117
29065
  entityId: string;
29118
29066
  }>]>;
29119
- dynamicArguments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
29120
- type: z.ZodLiteral<EntityType.InputMap>;
29121
- }, "strip", z.ZodTypeAny, {
29122
- type: EntityType.InputMap;
29123
- }, {
29124
- type: EntityType.InputMap;
29125
- }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
29126
29067
  }, "strip", z.ZodTypeAny, {
29127
29068
  declaration: Record<string, any> | {
29128
29069
  type: EntityType.ArgumentDeclaration;
@@ -29601,9 +29542,6 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29601
29542
  entityId: string;
29602
29543
  };
29603
29544
  } | null;
29604
- dynamicArguments: (Record<string, any> | {
29605
- type: EntityType.InputMap;
29606
- })[];
29607
29545
  readsValue: Record<string, any> | {
29608
29546
  type: EntityType.OutputMap;
29609
29547
  } | {
@@ -30097,9 +30035,6 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
30097
30035
  entityId: string;
30098
30036
  };
30099
30037
  } | null;
30100
- dynamicArguments: (Record<string, any> | {
30101
- type: EntityType.InputMap;
30102
- })[];
30103
30038
  readsValue: Record<string, any> | {
30104
30039
  type: EntityType.OutputMap;
30105
30040
  } | {
@@ -35147,13 +35082,6 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35147
35082
  entityType: EntityType.BreakStatement;
35148
35083
  entityId: string;
35149
35084
  }>]>;
35150
- dynamicArguments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
35151
- type: z.ZodLiteral<EntityType.InputMap>;
35152
- }, "strip", z.ZodTypeAny, {
35153
- type: EntityType.InputMap;
35154
- }, {
35155
- type: EntityType.InputMap;
35156
- }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
35157
35085
  }>, "strip", z.ZodTypeAny, {
35158
35086
  id: string;
35159
35087
  type: EntityType.InputMap;
@@ -35635,9 +35563,6 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35635
35563
  entityId: string;
35636
35564
  };
35637
35565
  } | null;
35638
- dynamicArguments: (Record<string, any> | {
35639
- type: EntityType.InputMap;
35640
- })[];
35641
35566
  index: number;
35642
35567
  readsValue: Record<string, any> | {
35643
35568
  type: EntityType.OutputMap;
@@ -36137,9 +36062,6 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
36137
36062
  entityId: string;
36138
36063
  };
36139
36064
  } | null;
36140
- dynamicArguments: (Record<string, any> | {
36141
- type: EntityType.InputMap;
36142
- })[];
36143
36065
  index: number;
36144
36066
  readsValue: Record<string, any> | {
36145
36067
  type: EntityType.OutputMap;
@@ -22,7 +22,6 @@ export declare class OperationState implements IOperation, BaseState, UserManage
22
22
  successCalls: CallableEntityState[];
23
23
  errorCalls: CallableEntityState[];
24
24
  error: ActionOutputMapState | null;
25
- dynamicArguments: ActionInputMapState[];
26
25
  calledBySuccess: PassThroughCallableEntityState[];
27
26
  calledByError: PassThroughCallableEntityState[];
28
27
  calledByEntry: EntryPointEntityState[];
@@ -726,13 +726,6 @@ export declare function getOperationNestedEntitiesSchema(): z.ZodObject<z.object
726
726
  }, {
727
727
  type: EntityType.OutputMap;
728
728
  }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
729
- dynamicArguments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
730
- type: z.ZodLiteral<EntityType.InputMap>;
731
- }, "strip", z.ZodTypeAny, {
732
- type: EntityType.InputMap;
733
- }, {
734
- type: EntityType.InputMap;
735
- }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
736
729
  parent: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
737
730
  id: z.ZodString;
738
731
  type: z.ZodLiteral<EntityType.GenericReference>;
@@ -917,9 +910,6 @@ export declare function getOperationNestedEntitiesSchema(): z.ZodObject<z.object
917
910
  error: (Record<string, any> | {
918
911
  type: EntityType.OutputMap;
919
912
  })[];
920
- dynamicArguments: (Record<string, any> | {
921
- type: EntityType.InputMap;
922
- })[];
923
913
  inputs: (Record<string, any> | {
924
914
  type: EntityType.InputMap;
925
915
  })[];
@@ -1170,9 +1160,6 @@ export declare function getOperationNestedEntitiesSchema(): z.ZodObject<z.object
1170
1160
  error: (Record<string, any> | {
1171
1161
  type: EntityType.OutputMap;
1172
1162
  })[];
1173
- dynamicArguments: (Record<string, any> | {
1174
- type: EntityType.InputMap;
1175
- })[];
1176
1163
  inputs: (Record<string, any> | {
1177
1164
  type: EntityType.InputMap;
1178
1165
  })[];
@@ -1970,13 +1957,6 @@ export declare function getOperationSchema(): z.ZodObject<z.objectUtil.extendSha
1970
1957
  }, {
1971
1958
  type: EntityType.OutputMap;
1972
1959
  }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
1973
- dynamicArguments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1974
- type: z.ZodLiteral<EntityType.InputMap>;
1975
- }, "strip", z.ZodTypeAny, {
1976
- type: EntityType.InputMap;
1977
- }, {
1978
- type: EntityType.InputMap;
1979
- }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
1980
1960
  parent: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1981
1961
  id: z.ZodString;
1982
1962
  type: z.ZodLiteral<EntityType.GenericReference>;
@@ -2162,9 +2142,6 @@ export declare function getOperationSchema(): z.ZodObject<z.objectUtil.extendSha
2162
2142
  type: EntityType.OutputMap;
2163
2143
  })[];
2164
2144
  version: number;
2165
- dynamicArguments: (Record<string, any> | {
2166
- type: EntityType.InputMap;
2167
- })[];
2168
2145
  x: number;
2169
2146
  y: number;
2170
2147
  inputs: (Record<string, any> | {
@@ -2418,9 +2395,6 @@ export declare function getOperationSchema(): z.ZodObject<z.objectUtil.extendSha
2418
2395
  type: EntityType.OutputMap;
2419
2396
  })[];
2420
2397
  version: number;
2421
- dynamicArguments: (Record<string, any> | {
2422
- type: EntityType.InputMap;
2423
- })[];
2424
2398
  x: number;
2425
2399
  y: number;
2426
2400
  inputs: (Record<string, any> | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6027",
3
+ "version": "0.0.6029",
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",