@elyx-code/project-logic-tree 0.0.6942 → 0.0.6945
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.cjs +129 -129
- package/dist/index.d.ts +9 -3
- package/dist/index.js +6590 -6590
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9907,7 +9907,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
9907
9907
|
|
|
9908
9908
|
export declare function checkAreDefinitionEntitiesCompatibleAsDataType(sourceDefinitionEntity: DefinitionEntityState, targetDefinitionEntity: DefinitionEntityState): boolean;
|
|
9909
9909
|
|
|
9910
|
-
export declare function checkArePropertiesCompatibleAsDataType(sourceProperty: PropertyState, targetProperty: PropertyState
|
|
9910
|
+
export declare function checkArePropertiesCompatibleAsDataType(sourceProperty: PropertyState, targetProperty: PropertyState, options?: {
|
|
9911
|
+
exactDataType?: boolean;
|
|
9912
|
+
}): boolean;
|
|
9911
9913
|
|
|
9912
9914
|
/**
|
|
9913
9915
|
* Recursively checks if all branches of a target entity come from the same caller
|
|
@@ -26090,7 +26092,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
26090
26092
|
* @param {ChangeSet | null} changeSet - The change set to apply the changes.
|
|
26091
26093
|
* @returns {DefinitionEntityState} The modified definition entity (self).
|
|
26092
26094
|
*/
|
|
26093
|
-
export declare function mergeDefinitionEntities(self: DefinitionEntityState, sourceDefinitionEntity: DefinitionEntityState, changeSet?: ChangeSet | null
|
|
26095
|
+
export declare function mergeDefinitionEntities(self: DefinitionEntityState, sourceDefinitionEntity: DefinitionEntityState, changeSet?: ChangeSet | null, options?: {
|
|
26096
|
+
exactDataType?: boolean;
|
|
26097
|
+
}): DefinitionEntityState;
|
|
26094
26098
|
|
|
26095
26099
|
export declare function mergeEntityErrorsList(oldErrors: EntityError[], newErrors: EntityError[]): EntityError[];
|
|
26096
26100
|
|
|
@@ -26111,7 +26115,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
26111
26115
|
*
|
|
26112
26116
|
* @return {PropertyState} The modified property entity (self).
|
|
26113
26117
|
*/
|
|
26114
|
-
export declare function mergeProperties(self: PropertyState, sourceProperty: PropertyState, changeSet?: ChangeSet | null
|
|
26118
|
+
export declare function mergeProperties(self: PropertyState, sourceProperty: PropertyState, changeSet?: ChangeSet | null, options?: {
|
|
26119
|
+
exactDataType?: boolean;
|
|
26120
|
+
}): PropertyState;
|
|
26115
26121
|
|
|
26116
26122
|
export declare const messagesActionRef: IActionDescriptorReference;
|
|
26117
26123
|
|