@elyx-code/project-logic-tree 0.0.6630 → 0.0.6632

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
@@ -19907,6 +19907,21 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
19907
19907
  rootAction?: boolean;
19908
19908
  }
19909
19909
 
19910
+ export declare interface IChangeSetStorageFormat {
19911
+ id: string;
19912
+ author: string;
19913
+ timestamp: string;
19914
+ dirty: boolean;
19915
+ project: string;
19916
+ version: string;
19917
+ previousVersion: string;
19918
+ branch: string;
19919
+ added: Record<EntityId, UserManagedElementShallowTransfer>;
19920
+ updated: Record<EntityId, UserManagedElementShallowTransfer>;
19921
+ removed: Record<EntityId, UserManagedElementShallowTransfer>;
19922
+ affected: EntityId[];
19923
+ }
19924
+
19910
19925
  export declare interface IChannelConnections {
19911
19926
  channel: string;
19912
19927
  connections: {
@@ -20810,6 +20825,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
20810
20825
 
20811
20826
  export declare function inferLoopDataType(entity: LoopState, _changeSet?: ChangeSet | null): DataTypeState | null;
20812
20827
 
20828
+ export declare function inferOperationDataType(entity: OperationState, _changeSet?: ChangeSet | null): DataTypeState | null;
20829
+
20813
20830
  export declare function inferOutputMapDataType(entity: OutputMapState, _changeSet?: ChangeSet | null): DataTypeState | null;
20814
20831
 
20815
20832
  export declare function inferPropertyDataType(entity: PropertyState, _changeSet?: ChangeSet | null): DataTypeState | null;