@elyx-code/project-logic-tree 0.0.6587 → 0.0.6589
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 +9 -0
- package/dist/index.js +19393 -19338
- package/dist/index.umd.cjs +205 -205
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7055,6 +7055,11 @@ export declare function findEntityFromKeys(keys: string[], project: ProjectState
|
|
|
7055
7055
|
|
|
7056
7056
|
export declare function findNextAvailableName(baseName: string, allEntitiesOfType: EntityWithNames[]): string;
|
|
7057
7057
|
|
|
7058
|
+
export declare function findNextCombinedSingleCallerAncestor(targetA: CallableEntityState, targetB: CallableEntityState, from?: CallerEntityState): {
|
|
7059
|
+
ancestor: CallerEntityState | null;
|
|
7060
|
+
callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
|
|
7061
|
+
};
|
|
7062
|
+
|
|
7058
7063
|
export declare function findNextSingleCallerAncestor(target: CallableEntityState, from?: CallerEntityState): {
|
|
7059
7064
|
ancestor: CallerEntityState | null;
|
|
7060
7065
|
callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
|
|
@@ -18481,6 +18486,8 @@ export declare function resolveNextValue(entity: ValueReadingEntityState, contex
|
|
|
18481
18486
|
|
|
18482
18487
|
export declare function resolveOutputMapValue(entity: OutputMapState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
18483
18488
|
|
|
18489
|
+
export declare function resolvePassThroughCallableValue(entity: OperationState | InternalCallState | FunctionCallState | SearchState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
18490
|
+
|
|
18484
18491
|
export declare function resolvePersistedDefinitionEntityDatabaseEntity(entity: DefinitionEntityState): DefinitionEntityState | null;
|
|
18485
18492
|
|
|
18486
18493
|
export declare function resolvePrimaryKeyProperty(entity: DefinitionEntityState): PropertyState | null;
|
|
@@ -18500,6 +18507,8 @@ export declare function resolveResourceNameFromType(resourceType: Infrastructure
|
|
|
18500
18507
|
|
|
18501
18508
|
export declare function resolveSearchName(search: SearchState): string;
|
|
18502
18509
|
|
|
18510
|
+
export declare function resolveTerminationEntityValue(entity: TerminationEntityState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
18511
|
+
|
|
18503
18512
|
export declare function resolveValue(entity: EntityWithValueState | PropertyState | ValueDescriptorState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
18504
18513
|
|
|
18505
18514
|
export declare function resolveValueDescriptorValue(entity: ValueDescriptorState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|