fix(core): Fix value resolution in declarative node design (#5217)

This commit is contained in:
Jan Oberhauser
2023-02-01 08:25:43 -06:00
committed by GitHub
parent 3bb1690086
commit b27a60b665
2 changed files with 38 additions and 3 deletions

View File

@@ -180,7 +180,7 @@ export class RoutingNode {
runIndex,
executeData,
{ $credentials: credentials, $version: this.node.typeVersion },
true,
false,
) as string | NodeParameterValue;
const tempOptions = this.getRequestOptionsFromParameters(
@@ -380,7 +380,7 @@ export class RoutingNode {
$value: parameterValue,
$version: this.node.typeVersion,
},
true,
false,
) as string;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(returnItem as Record<string, any>)[key] = propertyValue;
@@ -725,7 +725,7 @@ export class RoutingNode {
runIndex,
executeSingleFunctions.getExecuteData(),
{ ...additionalKeys, $value: value },
true,
false,
) as string;
}