@elyx-code/project-logic-tree 0.0.6604 → 0.0.6606
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 +27 -0
- package/dist/index.js +27824 -27364
- package/dist/index.umd.cjs +214 -214
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -208,6 +208,19 @@ export declare class ActionOutputMapState extends OutputMapState implements IAct
|
|
|
208
208
|
toJSON(seenEntities?: Set<EntityId>): IActionOutputMap | IOutputMapReference;
|
|
209
209
|
}
|
|
210
210
|
|
|
211
|
+
/**
|
|
212
|
+
* Modifies the given transformer so the arguments of the 'up' method's body match the properties of the old entity state
|
|
213
|
+
* The returned structure matches that of the new entity state
|
|
214
|
+
*
|
|
215
|
+
* And does the oposite to the 'down' method's body so the return is the old entity and the input args are the new entity
|
|
216
|
+
*
|
|
217
|
+
* @param {EditorService} editor
|
|
218
|
+
* @param {DefinitionEntityState} transformer
|
|
219
|
+
* @param {DefinitionEntityState} newEntityState
|
|
220
|
+
* @param {DefinitionEntityState} oldEntityState
|
|
221
|
+
*/
|
|
222
|
+
export declare function addDifferencesToRowTransformer(project: ProjectState, transformer: DefinitionEntityState, newEntityState: DefinitionEntityState, oldEntityState: DefinitionEntityState, changeSet: ChangeSet): void;
|
|
223
|
+
|
|
211
224
|
export declare function addDisabledReasons(existingDisbledResons: CanvasEntityDisabledReason[], newReasons: CanvasEntityDisabledReason[]): {
|
|
212
225
|
hasChanged: boolean;
|
|
213
226
|
reasons: CanvasEntityDisabledReason[];
|
|
@@ -7720,6 +7733,8 @@ export declare function generateIdFromStrategy(entity: EntityState, project: Pro
|
|
|
7720
7733
|
|
|
7721
7734
|
export declare function generateMutablePropertiesExplanation(entityToUpdate: EntityState): string;
|
|
7722
7735
|
|
|
7736
|
+
export declare function generateNewRowMigrationDefinition(project: ProjectState, updatedEntity: DefinitionEntityState, lastPublishedEntityVersion: DefinitionEntityState, changeSet: ChangeSet): DefinitionEntityState;
|
|
7737
|
+
|
|
7723
7738
|
export declare function generatePlaceholderValueStore(id: string, project: ProjectState): IValueStoreClient;
|
|
7724
7739
|
|
|
7725
7740
|
export declare const generateRandomAlphanumericOperation: IActionDescriptorTransfer;
|
|
@@ -17422,8 +17437,20 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
17422
17437
|
|
|
17423
17438
|
export declare const persistedBuiltInBaseEntityBaseColumnProperty: IPropertyTransfer;
|
|
17424
17439
|
|
|
17440
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyBooleanDataTypeOption: IDataTypeTransfer;
|
|
17441
|
+
|
|
17442
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyBooleanDataTypeOptionParentRef: IDataTypeReference;
|
|
17443
|
+
|
|
17425
17444
|
export declare const persistedBuiltInBaseEntityBaseColumnPropertyDataType: IDataTypeTransfer;
|
|
17426
17445
|
|
|
17446
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyDateDataTypeOption: IDataTypeTransfer;
|
|
17447
|
+
|
|
17448
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyDateDataTypeOptionParentRef: IDataTypeReference;
|
|
17449
|
+
|
|
17450
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyEnumDataTypeOption: IDataTypeTransfer;
|
|
17451
|
+
|
|
17452
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyEnumDataTypeOptionParentRef: IDataTypeReference;
|
|
17453
|
+
|
|
17427
17454
|
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNumberDataTypeOption: IDataTypeTransfer;
|
|
17428
17455
|
|
|
17429
17456
|
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNumberDataTypeOptionParentRef: IDataTypeReference;
|