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

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
 
@@ -10946,13 +10946,13 @@ export declare interface IOutputMapReference extends IGenericReference {
10946
10946
 
10947
10947
  export declare interface IOutputMapShallowTransfer extends IOutputMap_meta, IChildEntityShallowTransfer, IValueWritingEntityShallowTransfer {
10948
10948
  defaultValue: ILiteralValueReference | null;
10949
- declaration: IReturnDeclarationReference | IValueDescriptorReference | IPropertyReference;
10949
+ declaration: IReturnDeclarationReference | IValueDescriptorReference | IPropertyReference | null;
10950
10950
  parent: PassThroughCallableEntityReference;
10951
10951
  }
10952
10952
 
10953
10953
  export declare interface IOutputMapTransfer extends IOutputMap_meta, IChildEntityTransfer, IValueWritingEntityTransfer {
10954
10954
  defaultValue: ILiteralValue | ILiteralValueTransfer | null;
10955
- declaration: IReturnDeclaration | IReturnDeclarationTransfer | IValueDescriptor | IValueDescriptorTransfer | IProperty | IPropertyTransfer;
10955
+ declaration: IReturnDeclaration | IReturnDeclarationTransfer | IValueDescriptor | IValueDescriptorTransfer | IProperty | IPropertyTransfer | null;
10956
10956
  parent: PassThroughCallableEntity | PassThroughCallableEntityReference;
10957
10957
  }
10958
10958
 
@@ -13298,7 +13298,7 @@ export declare class OutputMapState extends VersionedState implements IOutputMap
13298
13298
  readonly type: EntityType.OutputMap;
13299
13299
  parentRelationType?: OutputMapParentChildRelation;
13300
13300
  defaultValue: LiteralValueState | null;
13301
- declaration: ReturnDeclarationState | PropertyState | ValueDescriptorState;
13301
+ declaration: ReturnDeclarationState | PropertyState | ValueDescriptorState | null;
13302
13302
  writesValues: ValueReadingEntityState[];
13303
13303
  dataType: DataTypeState | null;
13304
13304
  project: ProjectState;