@elyx-code/project-logic-tree 0.0.6606 → 0.0.6608

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
@@ -18574,6 +18574,34 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
18574
18574
 
18575
18575
  export declare function resolveSearchName(search: SearchState): string;
18576
18576
 
18577
+ export declare function resolveSQLMigrationsDiffs(project: ProjectState, lastPublishedProjectState: ProjectState | null, entity: DefinitionEntityState): {
18578
+ changesSinceLastPublication: boolean;
18579
+ rowTransformerNeeded: boolean;
18580
+ newestOpenRowTransformer: DefinitionEntityState | null;
18581
+ newRequiredProperties: PropertyState[];
18582
+ newNonRequiredProperties: PropertyState[];
18583
+ deletedProperties: PropertyState[];
18584
+ lastPublishedEntityVersion: DefinitionEntityState | null;
18585
+ propChanges: Map<EntityId, {
18586
+ castableDataTypeEntity?: {
18587
+ fromId: EntityId;
18588
+ toId: EntityId;
18589
+ };
18590
+ nonCastableDataTypeEntity?: {
18591
+ fromId: EntityId;
18592
+ toId: EntityId;
18593
+ };
18594
+ nameChange?: {
18595
+ from: string;
18596
+ to: string;
18597
+ };
18598
+ requiredChange?: {
18599
+ from: boolean;
18600
+ to: boolean;
18601
+ };
18602
+ }>;
18603
+ };
18604
+
18577
18605
  export declare function resolveTerminationEntityValue(entity: TerminationEntityState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
18578
18606
 
18579
18607
  export declare function resolveValue(entity: EntityWithValueState | PropertyState | ValueDescriptorState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;