@elyx-code/project-logic-tree 0.0.6852 → 0.0.6853
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.cjs +58 -58
- package/dist/index.d.ts +9 -7
- package/dist/index.js +2028 -2006
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -15133,14 +15133,14 @@ export declare enum BaseValueDescriptorIds {
|
|
|
15133
15133
|
|
|
15134
15134
|
export declare function generateActionExample(actionName: string, properties: Record<string, string>): string;
|
|
15135
15135
|
|
|
15136
|
-
export declare function generateAllAvailableCalleesExplanation(project: ProjectState, caller: CallerEntityState | null, fromError?: boolean): Promise<{
|
|
15136
|
+
export declare function generateAllAvailableCalleesExplanation(project: ProjectState, caller: CallerEntityState | null, fromError?: boolean, options?: IGetConnectionCompatibilityOptions): Promise<{
|
|
15137
15137
|
explanations: {
|
|
15138
15138
|
id: GenerationExplanationIds.AllAvailableCalleeEntitiesForGivenCaller | GenerationExplanationIds.AllAvailableCallableEntities;
|
|
15139
15139
|
message: string;
|
|
15140
15140
|
}[];
|
|
15141
15141
|
}>;
|
|
15142
15142
|
|
|
15143
|
-
export declare function generateAllAvailableCallersExplanation(project: ProjectState, callee: CallableEntityState | null, fromError?: boolean): Promise<{
|
|
15143
|
+
export declare function generateAllAvailableCallersExplanation(project: ProjectState, callee: CallableEntityState | null, fromError?: boolean, options?: IGetConnectionCompatibilityOptions): Promise<{
|
|
15144
15144
|
explanations: {
|
|
15145
15145
|
id: GenerationExplanationIds.AllAvailableCallerEntitiesForGivenCallee | GenerationExplanationIds.AllAvailableCallerEntities;
|
|
15146
15146
|
message: string;
|
|
@@ -15590,14 +15590,14 @@ export declare enum BaseValueDescriptorIds {
|
|
|
15590
15590
|
|
|
15591
15591
|
export declare function getAllVariablesInScope(project: ProjectState, variableDeclarations: VariableDeclarationState[], targetEntity?: UserManagedEntityState): VariableDeclarationState[];
|
|
15592
15592
|
|
|
15593
|
-
export declare function getAvailableValueReadersForGivenWritter(project: ProjectState, valueWriterEntity: ValueWritingEntityState): Promise<{
|
|
15593
|
+
export declare function getAvailableValueReadersForGivenWritter(project: ProjectState, valueWriterEntity: ValueWritingEntityState, options?: IGetConnectionCompatibilityOptions): Promise<{
|
|
15594
15594
|
explanations: {
|
|
15595
15595
|
id: GenerationExplanationIds.AvailableValueReadersForGivenWriter | GenerationExplanationIds.EntitiesWithValues;
|
|
15596
15596
|
message: string;
|
|
15597
15597
|
}[];
|
|
15598
15598
|
}>;
|
|
15599
15599
|
|
|
15600
|
-
export declare function getAvailableValueWritersForGivenReader(project: ProjectState, valueReaderEntity: ValueReadingEntityState): Promise<{
|
|
15600
|
+
export declare function getAvailableValueWritersForGivenReader(project: ProjectState, valueReaderEntity: ValueReadingEntityState, options?: IGetConnectionCompatibilityOptions): Promise<{
|
|
15601
15601
|
explanations: {
|
|
15602
15602
|
id: GenerationExplanationIds.AvailableValueWritersForGivenReader | GenerationExplanationIds.EntitiesWithValues;
|
|
15603
15603
|
message: string;
|
|
@@ -18814,9 +18814,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
18814
18814
|
*
|
|
18815
18815
|
* @returns {Promise<IConnectionCompatibilityResult>} An object containing two lists: one for compatible entities and one for incompatible entities, each with the reasons for their compatibility or incompatibility
|
|
18816
18816
|
*/
|
|
18817
|
-
export declare function getIncompatibleConnectionEntitiesAsync(entity: ArgumentDeclarationState | InputMapState | OutputMapState | LoopState | CallerEntityState | VariableState | ValueDescriptorState | ExecutableEntityState, connectionType: ConnectionNodeType, options?:
|
|
18818
|
-
allowReadWriteToFixableScope?: boolean;
|
|
18819
|
-
}): Promise<IConnectionCompatibilityResult>;
|
|
18817
|
+
export declare function getIncompatibleConnectionEntitiesAsync(entity: ArgumentDeclarationState | InputMapState | OutputMapState | LoopState | CallerEntityState | VariableState | ValueDescriptorState | ExecutableEntityState, connectionType: ConnectionNodeType, options?: IGetConnectionCompatibilityOptions): Promise<IConnectionCompatibilityResult>;
|
|
18820
18818
|
|
|
18821
18819
|
export declare function getIndexItem(list: unknown, index: unknown): any;
|
|
18822
18820
|
|
|
@@ -22062,6 +22060,10 @@ export declare enum BaseValueDescriptorIds {
|
|
|
22062
22060
|
entityId: EntityId;
|
|
22063
22061
|
}
|
|
22064
22062
|
|
|
22063
|
+
export declare interface IGetConnectionCompatibilityOptions extends YieldOptions {
|
|
22064
|
+
allowReadWriteToFixableScope?: boolean;
|
|
22065
|
+
}
|
|
22066
|
+
|
|
22065
22067
|
export declare interface IGetProjectOptions {
|
|
22066
22068
|
empty?: boolean;
|
|
22067
22069
|
authToken?: string | null;
|