@elyx-code/project-logic-tree 0.0.6559 → 0.0.6560

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
@@ -388,8 +388,9 @@ export declare class Area {
388
388
  }
389
389
 
390
390
  export declare enum ArgumentDeclarationDependencyField {
391
- DataTypeEntity = "data-type-entity",
392
- Implements = "implements"
391
+ ArgumentDataTypeEntityField = "data-type-entity-field",
392
+ ArgumentDataTypeField = "data-type-field",
393
+ ArgumentImplementsField = "argument-implements-field"
393
394
  }
394
395
 
395
396
  export declare type ArgumentDeclarationPayloadUnion = ArgumentDeclarationState | ArgumentDeclarationTypesUnion;
@@ -407,7 +408,7 @@ export declare class ArgumentDeclarationState extends UserManagedVersionedState
407
408
  defaultValue: LiteralValueState | null;
408
409
  dataType: DataTypeState | null;
409
410
  writesValues: ValueReadingEntityState[];
410
- implements: ValueDescriptorState | null;
411
+ implements: (ValueDescriptorState | PropertyState)[];
411
412
  project: ProjectState;
412
413
  errors: EntityError[];
413
414
  parent: EntryPointEntityState;
@@ -459,7 +460,7 @@ export declare class ArgumentDeclarationState extends UserManagedVersionedState
459
460
  field: string;
460
461
  }[]): UserManagedEntityState;
461
462
  syncDependents(changeSet?: ChangeSet | null): IChangeSet<UserManagedEntityState>;
462
- onDetachedDependencyRemoved(_dependency: UserManagedEntityState, field: string, changeSet: ChangeSet | null): IChangeSet<UserManagedEntityState>;
463
+ onDetachedDependencyRemoved(dependency: UserManagedEntityState, field: string, changeSet: ChangeSet | null): IChangeSet<UserManagedEntityState>;
463
464
  onDetachedDependencyRestored(dependency: UserManagedEntityState, field: string, changeSet: ChangeSet | null): IChangeSet<UserManagedEntityState>;
464
465
  unsubscribeFromDependencies(): UserManagedEntityState;
465
466
  subscribeToDependencies(): UserManagedEntityState;
@@ -474,7 +475,8 @@ export declare class ArgumentDeclarationState extends UserManagedVersionedState
474
475
  addValueReader(entity: ValueReadingEntityState, changeSet?: ChangeSet | null): ArgumentDeclarationState;
475
476
  removeValueReader(valueReader: ValueReadingEntityState, changeSet?: ChangeSet | null): ArgumentDeclarationState;
476
477
  setParent(parent: EntryPointEntityState, changeSet?: ChangeSet | null): ArgumentDeclarationState;
477
- setImplements(implementsEntity: ValueDescriptorState | null, changeSet?: ChangeSet | null): ArgumentDeclarationState;
478
+ addImplementation(entity: PropertyState | ValueDescriptorState, changeSet?: ChangeSet | null): ArgumentDeclarationState;
479
+ removeImplementation(entity: PropertyState | ValueDescriptorState, changeSet?: ChangeSet | null): ArgumentDeclarationState;
478
480
  initChildren(changeSet?: ChangeSet | null): ArgumentDeclarationState;
479
481
  subscribe(): ArgumentDeclarationState;
480
482
  unsubscribe(): ArgumentDeclarationState;
@@ -12720,7 +12722,7 @@ export declare interface IActiveBranchHeadResult {
12720
12722
  export declare interface IArgumentDeclaration extends IArgumentDeclaration_meta, IBaseVariable, IChildEntity, IValueWritingEntity {
12721
12723
  type: EntityType.ArgumentDeclaration;
12722
12724
  constant: true;
12723
- implements: IValueDescriptor | null;
12725
+ implements: (IValueDescriptor | IProperty)[];
12724
12726
  parent: EntryPointEntity | ISearch;
12725
12727
  }
12726
12728
 
@@ -12742,7 +12744,7 @@ export declare interface IArgumentDeclarationGenerationTarget extends IArgumentD
12742
12744
  type: EntityType.ArgumentDeclaration;
12743
12745
  required: boolean;
12744
12746
  constant: true;
12745
- implements?: EntityId;
12747
+ implements?: EntityId[];
12746
12748
  parent: EntityId;
12747
12749
  }
12748
12750
 
@@ -12753,13 +12755,13 @@ export declare interface IArgumentDeclarationReference extends IGenericReference
12753
12755
  export declare interface IArgumentDeclarationShallowTransfer extends IArgumentDeclaration_meta, IChildEntityShallowTransfer, IBaseVariableShallowTransfer, IValueWritingEntityShallowTransfer {
12754
12756
  type: EntityType.ArgumentDeclaration;
12755
12757
  constant: true;
12756
- implements: IValueDescriptorReference | null;
12758
+ implements: (IValueDescriptorReference | IPropertyReference)[];
12757
12759
  parent: EntryPointEntityReference | ISearchReference;
12758
12760
  }
12759
12761
 
12760
12762
  export declare interface IArgumentDeclarationTransfer extends IArgumentDeclaration_meta, IChildEntityTransfer, IBaseVariableTransfer, IValueWritingEntityTransfer {
12761
12763
  type: EntityType.ArgumentDeclaration;
12762
- implements: IValueDescriptor | IValueDescriptorTransfer | null;
12764
+ implements: (IValueDescriptor | IValueDescriptorTransfer | IProperty | IPropertyTransfer)[];
12763
12765
  constant: true;
12764
12766
  parent: EntryPointEntity | EntryPointEntityReference | ISearch | ISearchReference;
12765
12767
  }
@@ -17697,9 +17699,10 @@ export declare const PROPERTY_HEIGHT = 39;
17697
17699
  export declare const PROPERTY_NOT_VALUE_READER_WRITTER_EXPLANATION = "A property entity, is neither a value reading, or a value writting entity, but they are often confused with one.\nA 'property' can have a default value through its nested 'data-type' entity.\nThe 'property' entity only represents the data field in the declaration, and it can't write or read values.\nWhen a 'definition-entity' is instantiated as a variable, any writes or reads to its properties are done through 'input-map's and 'output-map's.";
17698
17700
 
17699
17701
  export declare enum PropertyDependencyField {
17700
- PropertyImplements = "property-implements",
17701
- PropertyExtends = "property-extends",
17702
- DataTypeEntity = "data-type-entity"
17702
+ PropertyImplements = "property-implements-field",
17703
+ PropertyExtends = "property-extends-field",
17704
+ PropertyDataTypeEntity = "property-data-type-entity-field",
17705
+ PropertyDataType = "property-data-type-field"
17703
17706
  }
17704
17707
 
17705
17708
  export declare enum PropertyParentChildRelation {
@@ -17708,6 +17711,8 @@ export declare enum PropertyParentChildRelation {
17708
17711
 
17709
17712
  export declare type PropertyPayloadUnion = PropertyState | PropertyTypesUnion;
17710
17713
 
17714
+ export declare function propertyShouldBePartOfFinalVariableObjectValue(entity: PropertyState): boolean;
17715
+
17711
17716
  export declare class PropertyState extends UserManagedVersionedState implements IProperty, UserManagedEntityStateTemplate, UserManagedBaseState, ChildEntityBaseClass, EntityWithDefaultValueClass {
17712
17717
  initialData: IProperty | IPropertyTransfer;
17713
17718
  readonly id: EntityId;