@elyx-code/project-logic-tree 0.0.6573 → 0.0.6574

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
@@ -16142,10 +16142,33 @@ export declare function mapRecord(record: Record<EntityId, Element_2 | ElementTr
16142
16142
 
16143
16143
  export declare function mergeArraysOfStringsWithoutDuplicates(arr1: string[], arr2: string[]): string[];
16144
16144
 
16145
+ /**
16146
+ * Merges two definition entities by aligning their properties.
16147
+ * Always returns the first entity (self) with its properties modified to match the second entity (sourceDefinitionEntity).
16148
+ *
16149
+ * @param {DefinitionEntityState} self - The definition entity to be modified.
16150
+ * @param {DefinitionEntityState} sourceDefinitionEntity - The definition entity to merge from.
16151
+ * @param {ChangeSet | null} changeSet - The change set to apply the changes.
16152
+ * @returns {DefinitionEntityState} The modified definition entity (self).
16153
+ */
16154
+ export declare function mergeDefinitionEntities(self: DefinitionEntityState, sourceDefinitionEntity: DefinitionEntityState, changeSet?: ChangeSet | null): DefinitionEntityState;
16155
+
16145
16156
  export declare function mergeEntityErrorsList(oldErrors: EntityError[], newErrors: EntityError[]): EntityError[];
16146
16157
 
16147
16158
  export declare function mergeListOfEntities(oldErrors: EntityState[], newErrors: EntityState[]): EntityState[];
16148
16159
 
16160
+ /**
16161
+ * Merges two property entities by aligning their attributes.
16162
+ * Always returns the first entity (self) with its attributes modified to match the second entity (sourceProperty).
16163
+ *
16164
+ * @param {PropertyState} self - The property entity to be modified.
16165
+ * @param {PropertyState} sourceProperty - The property entity to merge from.
16166
+ * @param {ChangeSet | null} changeSet - The change set to apply the changes.
16167
+ *
16168
+ * @return {PropertyState} The modified property entity (self).
16169
+ */
16170
+ export declare function mergeProperties(self: PropertyState, sourceProperty: PropertyState, changeSet?: ChangeSet | null): PropertyState;
16171
+
16149
16172
  export declare const messagesActionRef: IActionDescriptorReference;
16150
16173
 
16151
16174
  /** SlackMessage entity — parent must be the messages property *data type* */