@elyx-code/project-logic-tree 0.0.6653 → 0.0.6655
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 +4 -10
- package/dist/index.js +33564 -33627
- package/package.json +9 -3
- package/dist/index.umd.cjs +0 -394
package/dist/index.d.ts
CHANGED
|
@@ -24011,16 +24011,6 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
24011
24011
|
|
|
24012
24012
|
declare function loadProjectDatasources(project: ProjectState): DefinitionEntityState[];
|
|
24013
24013
|
|
|
24014
|
-
export declare class Logger {
|
|
24015
|
-
static get logsEnabled(): boolean;
|
|
24016
|
-
static enableLogs(newLogsEnabled: boolean): void;
|
|
24017
|
-
static log(message?: any, ...optionalParams: any[]): void;
|
|
24018
|
-
static warn(message?: any, ...optionalParams: any[]): void;
|
|
24019
|
-
static error(message?: any, ...optionalParams: any[]): void;
|
|
24020
|
-
}
|
|
24021
|
-
|
|
24022
|
-
export declare let LOGS_ENABLED: boolean;
|
|
24023
|
-
|
|
24024
24014
|
export declare enum LoopDependencyField {
|
|
24025
24015
|
Parent = "loop-parent-field",
|
|
24026
24016
|
LoopDataTypeEntity = "loop-data-type-entity-field",
|
|
@@ -29070,11 +29060,15 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29070
29060
|
onPersistChangeSetSequentially(callback: (changeSet: ChangeSet) => Promise<{
|
|
29071
29061
|
success: boolean;
|
|
29072
29062
|
}>): Promise<void>;
|
|
29063
|
+
offPersistChangeSetSequentially(): void;
|
|
29073
29064
|
onPersistChangeSetInParallel(callback: (changeSet: ChangeSet) => Promise<{
|
|
29074
29065
|
success: boolean;
|
|
29075
29066
|
}>): Promise<void>;
|
|
29067
|
+
offPersistChangeSetInParallel(): void;
|
|
29076
29068
|
onAddChangeSet(callback: (changeSet: ChangeSet, undoableStackValueIndex: number) => void): void;
|
|
29069
|
+
offAddChangeSet(): void;
|
|
29077
29070
|
onDiscardChangeSet(callback: (changeSet: ChangeSet) => void): void;
|
|
29071
|
+
offDiscardChangeSet(): void;
|
|
29078
29072
|
persistChangeSetSequentially(changeSet: ChangeSet): Promise<void>;
|
|
29079
29073
|
persistChangeSetInParallel(changeSet: ChangeSet): Promise<void>;
|
|
29080
29074
|
toLatestChangeSet(author: string, timestamp: string, // ISO 8601 format
|