Skip to content

Commit 4921297

Browse files
author
Viktor Chernev
committed
AWS small fix
1 parent 9af473b commit 4921297

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

DescribeTranspiler.AWS/Function.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public APIGatewayProxyResponse HTranspile_SingleDmlToSingleJson(APIGatewayProxyR
106106
else result.Result = "Success";
107107
result.Command = command;
108108
result.Logs = Messages.Log;
109-
result.Json = base64Json;
109+
result.Output = base64Json;
110110

111111
// return
112112
var response = new APIGatewayProxyResponse
@@ -221,7 +221,7 @@ public APIGatewayProxyResponse HTranspile_SingleDmlToSingleJsonListiary(APIGatew
221221
else result.Result = "Success";
222222
result.Command = command;
223223
result.Logs = Messages.Log;
224-
result.Json = base64Json;
224+
result.Output = base64Json;
225225

226226
// return
227227
var response = new APIGatewayProxyResponse
@@ -336,7 +336,7 @@ public APIGatewayProxyResponse HTranspile_SingleDmlToSingleXml(APIGatewayProxyRe
336336
else result.Result = "Success";
337337
result.Command = command;
338338
result.Logs = Messages.Log;
339-
result.Json = base64Json;
339+
result.Output = base64Json;
340340

341341
// return
342342
var response = new APIGatewayProxyResponse
@@ -451,7 +451,7 @@ public APIGatewayProxyResponse HTranspile_SingleDmlToSingleHtml(APIGatewayProxyR
451451
else result.Result = "Success";
452452
result.Command = command;
453453
result.Logs = Messages.Log;
454-
result.Json = base64Json;
454+
result.Output = base64Json;
455455

456456
// return
457457
var response = new APIGatewayProxyResponse
@@ -566,7 +566,7 @@ public APIGatewayProxyResponse HTranspile_SingleDmlToSingleHtmlPlain(APIGatewayP
566566
else result.Result = "Success";
567567
result.Command = command;
568568
result.Logs = Messages.Log;
569-
result.Json = base64Json;
569+
result.Output = base64Json;
570570

571571
// return
572572
var response = new APIGatewayProxyResponse
@@ -605,5 +605,5 @@ public class OutputJson
605605

606606
public string? Result { get; set; }
607607
public string? Logs { get; set; }
608-
public string? Json { get; set; }
608+
public string? Output { get; set; }
609609
}

0 commit comments

Comments
 (0)