@elyx-code/project-logic-tree 0.0.6366 → 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 -1
- package/dist/index.js +4708 -4680
- package/dist/index.umd.cjs +96 -96
- 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;
|