Skip to content

Commit 3bc18f7

Browse files
committed
fix(Sdk): Added the output` runtime expression argument
Signed-off-by: Charles d'Avernas <[email protected]>
1 parent 5e30827 commit 3bc18f7

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

src/ServerlessWorkflow.Sdk.Builders/ServerlessWorkflow.Sdk.Builders.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<VersionPrefix>1.0.0</VersionPrefix>
8-
<VersionSuffix>alpha2.4</VersionSuffix>
8+
<VersionSuffix>alpha2.5</VersionSuffix>
99
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1010
<FileVersion>$(VersionPrefix)</FileVersion>
1111
<NeutralLanguage>en</NeutralLanguage>

src/ServerlessWorkflow.Sdk.IO/ServerlessWorkflow.Sdk.IO.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<VersionPrefix>1.0.0</VersionPrefix>
8-
<VersionSuffix>alpha2.4</VersionSuffix>
8+
<VersionSuffix>alpha2.5</VersionSuffix>
99
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1010
<FileVersion>$(VersionPrefix)</FileVersion>
1111
<NeutralLanguage>en</NeutralLanguage>

src/ServerlessWorkflow.Sdk/RuntimeExpressions.cs

+8
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ public static class Languages
2929
/// Gets the 'jq' runtime expression language
3030
/// </summary>
3131
public const string JQ = "jq";
32+
/// <summary>
33+
/// Gets the 'js' runtime expression language
34+
/// </summary>
35+
public const string JavaScript = "js";
3236

3337
}
3438

@@ -55,6 +59,10 @@ public static class Arguments
5559
/// </summary>
5660
public const string Index = "index";
5761
/// <summary>
62+
/// Gets the name of the 'output' argument, used to access the task's output
63+
/// </summary>
64+
public const string Output = "output";
65+
/// <summary>
5866
/// Gets the name of the 'task' argument
5967
/// </summary>
6068
public const string Task = "task";

src/ServerlessWorkflow.Sdk/ServerlessWorkflow.Sdk.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<VersionPrefix>1.0.0</VersionPrefix>
8-
<VersionSuffix>alpha2.4</VersionSuffix>
8+
<VersionSuffix>alpha2.5</VersionSuffix>
99
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1010
<FileVersion>$(VersionPrefix)</FileVersion>
1111
<NeutralLanguage>en</NeutralLanguage>

0 commit comments

Comments
 (0)