@elyx-code/project-logic-tree 0.0.6558 → 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;
@@ -5037,11 +5039,19 @@ export declare function deleteRootProject(where: {
5037
5039
 
5038
5040
  export declare const downSqlRowTransformerEntityMethod: IActionDescriptorTransfer;
5039
5041
 
5042
+ export declare const downSqlRowTransformerEntityMethodNewShapeDataType: IDataTypeTransfer;
5043
+
5044
+ export declare const downSqlRowTransformerEntityMethodNewShapeDataTypeParentRef: IDataTypeReference;
5045
+
5040
5046
  export declare const downSqlRowTransformerEntityMethodParentRef: IBuiltInBaseEntityReference;
5041
5047
 
5048
+ export declare const downSqlRowTransformerEntityMethodRootDataType: IDataTypeTransfer;
5049
+
5050
+ export declare const downSqlRowTransformerEntityMethodRootDataTypeParentRef: IActionDescriptorReference;
5051
+
5042
5052
  export declare const downSqlRowTransformerEntityMethodVoidDataType: IDataTypeTransfer;
5043
5053
 
5044
- export declare const downSqlRowTransformerEntityMethodVoidDataTypeParentRef: IActionDescriptorReference;
5054
+ export declare const downSqlRowTransformerEntityMethodVoidDataTypeParentRef: IDataTypeReference;
5045
5055
 
5046
5056
  export declare const DRAGGABLE_CALLABLE_TYPES: EntityType[];
5047
5057
 
@@ -7535,7 +7545,6 @@ export declare class FunctionDeclarationState extends UserManagedVersionedState
7535
7545
  addReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
7536
7546
  removeReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
7537
7547
  getUniqueOutputProperties(): PropertyState[];
7538
- checkArgumentIsLoopAggregateResult(argument: ArgumentDeclarationState): boolean;
7539
7548
  removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
7540
7549
  syncInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
7541
7550
  getUniqueInputMaps(): InputMapState[];
@@ -12713,7 +12722,7 @@ export declare interface IActiveBranchHeadResult {
12713
12722
  export declare interface IArgumentDeclaration extends IArgumentDeclaration_meta, IBaseVariable, IChildEntity, IValueWritingEntity {
12714
12723
  type: EntityType.ArgumentDeclaration;
12715
12724
  constant: true;
12716
- implements: IValueDescriptor | null;
12725
+ implements: (IValueDescriptor | IProperty)[];
12717
12726
  parent: EntryPointEntity | ISearch;
12718
12727
  }
12719
12728
 
@@ -12735,7 +12744,7 @@ export declare interface IArgumentDeclarationGenerationTarget extends IArgumentD
12735
12744
  type: EntityType.ArgumentDeclaration;
12736
12745
  required: boolean;
12737
12746
  constant: true;
12738
- implements?: EntityId;
12747
+ implements?: EntityId[];
12739
12748
  parent: EntityId;
12740
12749
  }
12741
12750
 
@@ -12746,13 +12755,13 @@ export declare interface IArgumentDeclarationReference extends IGenericReference
12746
12755
  export declare interface IArgumentDeclarationShallowTransfer extends IArgumentDeclaration_meta, IChildEntityShallowTransfer, IBaseVariableShallowTransfer, IValueWritingEntityShallowTransfer {
12747
12756
  type: EntityType.ArgumentDeclaration;
12748
12757
  constant: true;
12749
- implements: IValueDescriptorReference | null;
12758
+ implements: (IValueDescriptorReference | IPropertyReference)[];
12750
12759
  parent: EntryPointEntityReference | ISearchReference;
12751
12760
  }
12752
12761
 
12753
12762
  export declare interface IArgumentDeclarationTransfer extends IArgumentDeclaration_meta, IChildEntityTransfer, IBaseVariableTransfer, IValueWritingEntityTransfer {
12754
12763
  type: EntityType.ArgumentDeclaration;
12755
- implements: IValueDescriptor | IValueDescriptorTransfer | null;
12764
+ implements: (IValueDescriptor | IValueDescriptorTransfer | IProperty | IPropertyTransfer)[];
12756
12765
  constant: true;
12757
12766
  parent: EntryPointEntity | EntryPointEntityReference | ISearch | ISearchReference;
12758
12767
  }
@@ -17690,9 +17699,10 @@ export declare const PROPERTY_HEIGHT = 39;
17690
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.";
17691
17700
 
17692
17701
  export declare enum PropertyDependencyField {
17693
- PropertyImplements = "property-implements",
17694
- PropertyExtends = "property-extends",
17695
- 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"
17696
17706
  }
17697
17707
 
17698
17708
  export declare enum PropertyParentChildRelation {
@@ -17701,6 +17711,8 @@ export declare enum PropertyParentChildRelation {
17701
17711
 
17702
17712
  export declare type PropertyPayloadUnion = PropertyState | PropertyTypesUnion;
17703
17713
 
17714
+ export declare function propertyShouldBePartOfFinalVariableObjectValue(entity: PropertyState): boolean;
17715
+
17704
17716
  export declare class PropertyState extends UserManagedVersionedState implements IProperty, UserManagedEntityStateTemplate, UserManagedBaseState, ChildEntityBaseClass, EntityWithDefaultValueClass {
17705
17717
  initialData: IProperty | IPropertyTransfer;
17706
17718
  readonly id: EntityId;