@elyx-code/project-logic-tree 0.0.6458 → 0.0.6460

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
@@ -181,7 +181,7 @@ export declare class ActionInputMapState extends InputMapState implements IActio
181
181
  }
182
182
 
183
183
  export declare class ActionOutputMapState extends OutputMapState implements IActionOutputMap {
184
- declaration: ReturnDeclarationState | ValueDescriptorState;
184
+ declaration: ReturnDeclarationState | ValueDescriptorState | null;
185
185
  parent: PassThroughCallableEntityWithOutputsState;
186
186
  errors: EntityError[];
187
187
  constructor(initialActionOutputMapData: IActionOutputMap | IActionOutputMapTransfer, parentProjectState: ProjectState);
@@ -9068,7 +9068,7 @@ export declare interface IActionInputMapTransfer extends IInputMapTransfer {
9068
9068
  }
9069
9069
 
9070
9070
  export declare interface IActionOutputMap extends IOutputMap {
9071
- declaration: IReturnDeclaration | IValueDescriptor;
9071
+ declaration: IReturnDeclaration | IValueDescriptor | null;
9072
9072
  parent: PassThroughCallableEntity;
9073
9073
  }
9074
9074
 
@@ -10919,7 +10919,7 @@ export declare interface IOperationTransfer extends IBaseActionCallTransfer, IOp
10919
10919
 
10920
10920
  export declare interface IOutputMap extends IOutputMap_meta, IChildEntity, IValueWritingEntity {
10921
10921
  defaultValue: ILiteralValue | null;
10922
- declaration: IReturnDeclaration | IValueDescriptor | IProperty;
10922
+ declaration: IReturnDeclaration | IValueDescriptor | IProperty | null;
10923
10923
  parent: PassThroughCallableEntity;
10924
10924
  }
10925
10925
 
@@ -10937,6 +10937,7 @@ export declare interface IOutputMapGenerationTarget extends IChildEntityGenerati
10937
10937
  id: EntityId;
10938
10938
  type: EntityType.OutputMap;
10939
10939
  declaration?: EntityId | null;
10940
+ parentRelationType?: OutputMapParentChildRelation;
10940
10941
  parent: EntityId;
10941
10942
  }
10942
10943
 
@@ -10946,13 +10947,13 @@ export declare interface IOutputMapReference extends IGenericReference {
10946
10947
 
10947
10948
  export declare interface IOutputMapShallowTransfer extends IOutputMap_meta, IChildEntityShallowTransfer, IValueWritingEntityShallowTransfer {
10948
10949
  defaultValue: ILiteralValueReference | null;
10949
- declaration: IReturnDeclarationReference | IValueDescriptorReference | IPropertyReference;
10950
+ declaration: IReturnDeclarationReference | IValueDescriptorReference | IPropertyReference | null;
10950
10951
  parent: PassThroughCallableEntityReference;
10951
10952
  }
10952
10953
 
10953
10954
  export declare interface IOutputMapTransfer extends IOutputMap_meta, IChildEntityTransfer, IValueWritingEntityTransfer {
10954
10955
  defaultValue: ILiteralValue | ILiteralValueTransfer | null;
10955
- declaration: IReturnDeclaration | IReturnDeclarationTransfer | IValueDescriptor | IValueDescriptorTransfer | IProperty | IPropertyTransfer;
10956
+ declaration: IReturnDeclaration | IReturnDeclarationTransfer | IValueDescriptor | IValueDescriptorTransfer | IProperty | IPropertyTransfer | null;
10956
10957
  parent: PassThroughCallableEntity | PassThroughCallableEntityReference;
10957
10958
  }
10958
10959
 
@@ -13298,7 +13299,7 @@ export declare class OutputMapState extends VersionedState implements IOutputMap
13298
13299
  readonly type: EntityType.OutputMap;
13299
13300
  parentRelationType?: OutputMapParentChildRelation;
13300
13301
  defaultValue: LiteralValueState | null;
13301
- declaration: ReturnDeclarationState | PropertyState | ValueDescriptorState;
13302
+ declaration: ReturnDeclarationState | PropertyState | ValueDescriptorState | null;
13302
13303
  writesValues: ValueReadingEntityState[];
13303
13304
  dataType: DataTypeState | null;
13304
13305
  project: ProjectState;