@elyx-code/project-logic-tree 0.0.6470 → 0.0.6472

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
@@ -4258,6 +4258,7 @@ export declare class FunctionCallState extends VersionedState implements IFuncti
4258
4258
  x: number;
4259
4259
  y: number;
4260
4260
  readonly type: EntityType.FunctionCall;
4261
+ catchesError: boolean;
4261
4262
  successCalls: CallableEntityState[];
4262
4263
  errorCalls: CallableEntityState[];
4263
4264
  process: ActionOutputMapState | null;
@@ -10094,23 +10095,25 @@ export declare interface IFunctionCall extends IFunctionCallTransfer, IChildEnti
10094
10095
 
10095
10096
  export declare interface IFunctionCall_meta extends IBaseActionCall_meta, IBaseCanvasDraggable {
10096
10097
  type: EntityType.FunctionCall;
10098
+ catchesError: boolean;
10097
10099
  }
10098
10100
 
10099
10101
  export declare interface IFunctionCallGenerationTarget extends IBaseActionCallGenerationTarget, IGenericBase {
10100
10102
  type: EntityType.FunctionCall;
10101
10103
  declaration: EntityId;
10104
+ catchesError?: boolean;
10102
10105
  }
10103
10106
 
10104
10107
  export declare interface IFunctionCallReference extends IGenericReference {
10105
10108
  entityType: EntityType.FunctionCall;
10106
10109
  }
10107
10110
 
10108
- export declare interface IFunctionCallShallowTransfer extends IBaseActionCallShallowTransfer, IBaseCanvasDraggable {
10111
+ export declare interface IFunctionCallShallowTransfer extends IFunctionCall_meta, IBaseActionCallShallowTransfer, IBaseCanvasDraggable {
10109
10112
  type: EntityType.FunctionCall;
10110
10113
  declaration: IFunctionDeclarationReference;
10111
10114
  }
10112
10115
 
10113
- export declare interface IFunctionCallTransfer extends IBaseActionCallTransfer, IBaseCanvasDraggable {
10116
+ export declare interface IFunctionCallTransfer extends IFunctionCall_meta, IBaseActionCallTransfer, IBaseCanvasDraggable {
10114
10117
  type: EntityType.FunctionCall;
10115
10118
  declaration: IFunctionDeclaration | IFunctionDeclarationTransfer | IFunctionDeclarationReference;
10116
10119
  }
@@ -10348,6 +10351,7 @@ export declare interface IInternalCall extends IInternalCallTransfer {
10348
10351
  export declare interface IInternalCall_meta extends IBaseActionCall_meta {
10349
10352
  type: EntityType.InternalCall;
10350
10353
  index: number;
10354
+ catchesError: boolean;
10351
10355
  }
10352
10356
 
10353
10357
  export declare interface IInternalCallGenerationTarget extends IBaseActionCallGenerationTarget {
@@ -10355,6 +10359,7 @@ export declare interface IInternalCallGenerationTarget extends IBaseActionCallGe
10355
10359
  type: EntityType.InternalCall;
10356
10360
  declaration: EntityId;
10357
10361
  parent: EntityId;
10362
+ catchesError?: boolean;
10358
10363
  }
10359
10364
 
10360
10365
  export declare interface IInternalCallReference extends IGenericReference {
@@ -10431,6 +10436,7 @@ export declare interface ILoop extends ILoop_meta, IChildEntity, ICalledEntity,
10431
10436
 
10432
10437
  export declare interface ILoop_meta extends IBaseCanvasDraggable, IBaseActionCall_meta {
10433
10438
  type: EntityType.Loop;
10439
+ catchesError: boolean;
10434
10440
  }
10435
10441
 
10436
10442
  export declare interface ILoopGenerationTarget extends IChildEntityGenerationTarget, ICalledEntityGenerationTarget, IBaseActionCallGenerationTarget {
@@ -10438,6 +10444,7 @@ export declare interface ILoopGenerationTarget extends IChildEntityGenerationTar
10438
10444
  type: EntityType.Loop;
10439
10445
  declaration: EntityId;
10440
10446
  parent?: EntityId;
10447
+ catchesError?: boolean;
10441
10448
  }
10442
10449
 
10443
10450
  export declare interface ILoopReference extends IGenericReference {
@@ -10791,6 +10798,7 @@ export declare class InternalCallState extends VersionedState implements IIntern
10791
10798
  readonly id: EntityId;
10792
10799
  index: number;
10793
10800
  readonly type: EntityType.InternalCall;
10801
+ catchesError: boolean;
10794
10802
  declaration: FunctionDeclarationState;
10795
10803
  inputs: ActionInputMapState[];
10796
10804
  outputs: ActionOutputMapState[];
@@ -10954,6 +10962,7 @@ export declare interface IOperation extends IOperationTransfer, IChildEntity, IC
10954
10962
 
10955
10963
  export declare interface IOperation_meta extends IBaseCanvasDraggable, IBaseActionCall_meta {
10956
10964
  type: EntityType.Operation;
10965
+ catchesError: boolean;
10957
10966
  }
10958
10967
 
10959
10968
  export declare interface IOperationGenerationTarget extends IBaseActionCallGenerationTarget {
@@ -10961,6 +10970,7 @@ export declare interface IOperationGenerationTarget extends IBaseActionCallGener
10961
10970
  type: EntityType.Operation;
10962
10971
  declaration: EntityId;
10963
10972
  parent?: EntityId;
10973
+ catchesError?: boolean;
10964
10974
  }
10965
10975
 
10966
10976
  export declare interface IOperationReference extends IGenericReference {
@@ -11426,6 +11436,7 @@ export declare interface ISearch_meta extends IBaseCanvasDraggable, IBaseActionC
11426
11436
  name: string;
11427
11437
  description: string | null;
11428
11438
  query: string;
11439
+ catchesError: boolean;
11429
11440
  }
11430
11441
 
11431
11442
  export declare interface ISearchGenerationTarget extends IChildEntityGenerationTarget, ICalledEntityGenerationTarget {
@@ -11438,6 +11449,7 @@ export declare interface ISearchGenerationTarget extends IChildEntityGenerationT
11438
11449
  calledByEntry: EntityId[];
11439
11450
  query: string;
11440
11451
  parent?: EntityId;
11452
+ catchesError?: boolean;
11441
11453
  }
11442
11454
 
11443
11455
  declare interface ISearchNode {
@@ -11886,10 +11898,12 @@ export declare interface IVariableDeclaration extends IChildEntity, IVariableDec
11886
11898
  calledByError: PassThroughCallableEntity[];
11887
11899
  calledByEntry: EntryPointEntity[];
11888
11900
  parent: EntityWithLogicScope | IProject;
11901
+ error: IActionOutputMap | null;
11889
11902
  }
11890
11903
 
11891
11904
  export declare interface IVariableDeclaration_meta extends IBaseCanvasDraggable, IBaseVariable_meta {
11892
11905
  type: EntityType.VariableDeclaration;
11906
+ catchesError: boolean;
11893
11907
  }
11894
11908
 
11895
11909
  export declare interface IVariableDeclarationGenerationTarget extends IBaseVariableGenerationTarget, IChildEntityGenerationTarget, IValueReadingEntityGenerationTarget, IValueWritingEntityGenerationTarget {
@@ -11899,6 +11913,7 @@ export declare interface IVariableDeclarationGenerationTarget extends IBaseVaria
11899
11913
  calledByError: EntityId[];
11900
11914
  calledByEntry: EntityId[];
11901
11915
  parent?: EntityId;
11916
+ catchesError?: boolean;
11902
11917
  }
11903
11918
 
11904
11919
  export declare interface IVariableDeclarationReference extends IGenericReference {
@@ -11916,6 +11931,7 @@ export declare interface IVariableDeclarationShallowTransfer extends IVariableDe
11916
11931
  calledByError: PassThroughCallableEntityReference[];
11917
11932
  calledByEntry: EntryPointEntityReference[];
11918
11933
  parent: EntityWithLogicScopeReference | IProjectReference;
11934
+ error: IOutputMapReference | null;
11919
11935
  }
11920
11936
 
11921
11937
  export declare interface IVariableDeclarationTransfer extends IVariableDeclaration_meta, IBaseVariableTransfer, IChildEntityTransfer, IValueReadingEntityTransfer, IValueWritingEntityTransfer {
@@ -11924,11 +11940,12 @@ export declare interface IVariableDeclarationTransfer extends IVariableDeclarati
11924
11940
  outputs: IVariableOutputMapTransfer[];
11925
11941
  successCalls: (CallableEntity | CallableEntityTransfer)[];
11926
11942
  errorCalls: (CallableEntity | CallableEntityTransfer)[];
11927
- internalCalls: IInternalCallTransfer[];
11943
+ internalCalls: (IInternalCall | IInternalCallTransfer | IInternalCallReference)[];
11928
11944
  calledBySuccess: (PassThroughCallableEntity | PassThroughCallableEntityTransfer | PassThroughCallableEntityReference)[];
11929
11945
  calledByError: (PassThroughCallableEntity | PassThroughCallableEntityTransfer | PassThroughCallableEntityReference)[];
11930
11946
  calledByEntry: (EntryPointEntity | EntryPointEntityTransfer | EntryPointEntityReference)[];
11931
11947
  parent: EntityWithLogicScope | IProject | EntityWithLogicScopeReference | IProjectReference;
11948
+ error: IActionOutputMap | IActionOutputMapTransfer | null;
11932
11949
  }
11933
11950
 
11934
11951
  export declare interface IVariableInputMap extends IInputMap {
@@ -11964,10 +11981,12 @@ export declare interface IVariableInstance extends IChildEntity, IVariableInstan
11964
11981
  calledByEntry: EntryPointEntity[];
11965
11982
  declaration: IVariableDeclaration;
11966
11983
  parent: EntityWithLogicScope | IProject;
11984
+ error: IActionOutputMap | null;
11967
11985
  }
11968
11986
 
11969
11987
  export declare interface IVariableInstance_meta extends IBaseCanvasDraggable {
11970
11988
  type: EntityType.VariableInstance;
11989
+ catchesError: boolean;
11971
11990
  }
11972
11991
 
11973
11992
  export declare interface IVariableInstanceGenerationTarget extends IChildEntityGenerationTarget, IValueReadingEntityGenerationTarget, IValueWritingEntityGenerationTarget {
@@ -11978,6 +11997,7 @@ export declare interface IVariableInstanceGenerationTarget extends IChildEntityG
11978
11997
  calledByError: EntityId[];
11979
11998
  calledByEntry: EntityId[];
11980
11999
  parent?: EntityId;
12000
+ catchesError?: boolean;
11981
12001
  }
11982
12002
 
11983
12003
  export declare interface IVariableInstanceReference extends IGenericReference {
@@ -11997,6 +12017,7 @@ export declare interface IVariableInstanceShallowTransfer extends IVariableInsta
11997
12017
  calledByError: PassThroughCallableEntityReference[];
11998
12018
  calledByEntry: EntryPointEntityReference[];
11999
12019
  parent: EntityWithLogicScopeReference | IProjectReference;
12020
+ error: IOutputMapReference | null;
12000
12021
  }
12001
12022
 
12002
12023
  export declare interface IVariableInstanceTransfer extends IVariableInstance_meta, IChildEntityTransfer, IValueReadingEntityTransfer, IValueWritingEntityTransfer {
@@ -12012,6 +12033,7 @@ export declare interface IVariableInstanceTransfer extends IVariableInstance_met
12012
12033
  calledByError: (PassThroughCallableEntity | PassThroughCallableEntityTransfer | PassThroughCallableEntityReference)[];
12013
12034
  calledByEntry: (EntryPointEntity | EntryPointEntityTransfer | EntryPointEntityReference)[];
12014
12035
  parent: EntityWithLogicScope | IProject | EntityWithLogicScopeReference | IProjectReference;
12036
+ error: IActionOutputMap | IActionOutputMapTransfer | null;
12015
12037
  }
12016
12038
 
12017
12039
  export declare interface IVariableOutputMap extends IOutputMap {
@@ -12319,6 +12341,7 @@ export declare class LoopState extends VersionedState implements ILoop, BaseStat
12319
12341
  x: number;
12320
12342
  y: number;
12321
12343
  readonly type: EntityType.Loop;
12344
+ catchesError: boolean;
12322
12345
  declaration: ActionDescriptorState;
12323
12346
  inputs: ActionInputMapState[];
12324
12347
  outputs: ActionOutputMapState[];
@@ -13198,6 +13221,7 @@ export declare class OperationState extends VersionedState implements IOperation
13198
13221
  x: number;
13199
13222
  y: number;
13200
13223
  readonly type: EntityType.Operation;
13224
+ catchesError: boolean;
13201
13225
  declaration: ActionDescriptorState;
13202
13226
  inputs: ActionInputMapState[];
13203
13227
  outputs: ActionOutputMapState[];
@@ -14897,6 +14921,7 @@ export declare class SearchState extends VersionedState implements ISearch, Base
14897
14921
  y: number;
14898
14922
  query: string;
14899
14923
  readonly type: EntityType.Search;
14924
+ catchesError: boolean;
14900
14925
  successCalls: CallableEntityState[];
14901
14926
  errorCalls: CallableEntityState[];
14902
14927
  inputsDeclarations: ValueDescriptorState[];
@@ -16521,12 +16546,14 @@ export declare class VariableDeclarationState extends VersionedState implements
16521
16546
  x: number;
16522
16547
  y: number;
16523
16548
  readonly type: EntityType.VariableDeclaration;
16549
+ catchesError: boolean;
16524
16550
  defaultValue: LiteralValueState | null;
16525
16551
  dataType: DataTypeState | null;
16526
16552
  writesValues: ValueReadingEntityState[];
16527
16553
  readsValue: ValueWritingEntityState | null;
16528
16554
  inputs: VariableInputMapState[];
16529
16555
  outputs: VariableOutputMapState[];
16556
+ error: ActionOutputMapState | null;
16530
16557
  calledBySuccess: PassThroughCallableEntityState[];
16531
16558
  calledByError: PassThroughCallableEntityState[];
16532
16559
  calledByEntry: EntryPointEntityState[];
@@ -16719,12 +16746,14 @@ export declare class VariableInstanceState extends VersionedState implements IVa
16719
16746
  x: number;
16720
16747
  y: number;
16721
16748
  readonly type: EntityType.VariableInstance;
16749
+ catchesError: boolean;
16722
16750
  defaultValue: LiteralValueState | null;
16723
16751
  writesValues: ValueReadingEntityState[];
16724
16752
  readsValue: ValueWritingEntityState | null;
16725
16753
  declaration: VariableDeclarationState;
16726
16754
  inputs: VariableInputMapState[];
16727
16755
  outputs: VariableOutputMapState[];
16756
+ error: ActionOutputMapState | null;
16728
16757
  calledBySuccess: PassThroughCallableEntityState[];
16729
16758
  calledByError: PassThroughCallableEntityState[];
16730
16759
  calledByEntry: EntryPointEntityState[];