@elyx-code/project-logic-tree 0.0.6365 → 0.0.6368
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 +3 -4
- package/dist/index.js +5072 -5037
- package/dist/index.umd.cjs +112 -112
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ export declare class ActionDescriptorState extends VersionedState implements IAc
|
|
|
46
46
|
inputs: ValueDescriptorState[];
|
|
47
47
|
outputs: ValueDescriptorState[];
|
|
48
48
|
error: ValueDescriptorState | null;
|
|
49
|
-
implementation: ((
|
|
49
|
+
implementation: ((entity: OperationState, inputs: IDynamicValue[]) => IPrimitiveExecutionResult | Promise<IPrimitiveExecutionResult>) | null;
|
|
50
50
|
parent: DefinitionEntityState | PrimitiveEntityState | BuiltInBaseEntityState | DataTypeState | null;
|
|
51
51
|
errors: EntityError[];
|
|
52
52
|
project: ProjectState;
|
|
@@ -7284,6 +7284,8 @@ declare function getNestedFromSubqueryFromSelectStatement(selectStatement: Selec
|
|
|
7284
7284
|
as: string;
|
|
7285
7285
|
} | null;
|
|
7286
7286
|
|
|
7287
|
+
export declare function getOnlyRelevantErrorsForPublication(project: ProjectState): EntityError[];
|
|
7288
|
+
|
|
7287
7289
|
declare function getOrderByClauseFromSelectStatement(selectStatement: SelectStmt): OrderByClause | null;
|
|
7288
7290
|
|
|
7289
7291
|
export declare function getParentCallableEntity(entity: EntityState): CallableEntityState | null;
|
|
@@ -12691,7 +12693,6 @@ export declare class ProjectState extends VersionedState implements IProject, Us
|
|
|
12691
12693
|
}>) | null;
|
|
12692
12694
|
onAddChangeSetCallback: ((changeSet: ChangeSet, undoableStackValueIndex: number) => void) | null;
|
|
12693
12695
|
onDiscardChangeSetCallback: ((changeSet: ChangeSet) => void) | null;
|
|
12694
|
-
onRequestActiveValueCallback: ((valueOwner: EntityWithValueState) => LiteralValueState | null) | null;
|
|
12695
12696
|
onRequestActiveDynamicValueCallback: ((valueOwner: EntityWithValueState) => IDynamicValue | null) | null;
|
|
12696
12697
|
constructor(initialData: IProject | IProjectTransfer);
|
|
12697
12698
|
private static _UUIDModule;
|
|
@@ -12724,7 +12725,6 @@ export declare class ProjectState extends VersionedState implements IProject, Us
|
|
|
12724
12725
|
get on(): Events['on'];
|
|
12725
12726
|
get emit(): Events['emit'];
|
|
12726
12727
|
closePendingChangeSets(): Promise<void>;
|
|
12727
|
-
onRequestActiveValue(callback: (valueOwner: EntityWithValueState) => LiteralValueState | null): void;
|
|
12728
12728
|
onRequestActiveDynamicValue(callback: (valueOwner: EntityWithValueState) => IDynamicValue | null): void;
|
|
12729
12729
|
onCloseChangeSet(callback: (changeSet: ChangeSet) => Promise<{
|
|
12730
12730
|
success: boolean;
|
|
@@ -12864,7 +12864,6 @@ export declare class ProjectState extends VersionedState implements IProject, Us
|
|
|
12864
12864
|
getSearches(): SearchState[];
|
|
12865
12865
|
attachOrphanReferences(): ProjectState;
|
|
12866
12866
|
getBuiltInPersistedEntity(): BuiltInBaseEntityState | null;
|
|
12867
|
-
requestActiveValue(valueOwner: EntityWithValueState): LiteralValueState | null;
|
|
12868
12867
|
requestActiveDynamicValue(valueOwner: EntityWithValueState): IDynamicValue | null;
|
|
12869
12868
|
undo(): IProjectVersionTransitionConfig;
|
|
12870
12869
|
redo(): IProjectVersionTransitionConfig;
|