From 83997a73451d2b2a788c1e07cb7b4e9ed29f5f61 Mon Sep 17 00:00:00 2001 From: Jakub Bednar Date: Mon, 16 Sep 2019 12:28:36 +0200 Subject: [PATCH 1/2] fix(http): add ParenExpression --- http/swagger.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/http/swagger.yml b/http/swagger.yml index dc21735640..f9ab57021e 100644 --- a/http/swagger.yml +++ b/http/swagger.yml @@ -6258,6 +6258,7 @@ components: - $ref: "#/components/schemas/MemberExpression" - $ref: "#/components/schemas/IndexExpression" - $ref: "#/components/schemas/ObjectExpression" + - $ref: "#/components/schemas/ParenExpression" - $ref: "#/components/schemas/PipeExpression" - $ref: "#/components/schemas/UnaryExpression" - $ref: "#/components/schemas/BooleanLiteral" @@ -6374,6 +6375,14 @@ components: type: array items: $ref: "#/components/schemas/Property" + ParenExpression: + description: represents an expression wrapped in parenthesis + type: object + properties: + type: + $ref: "#/components/schemas/NodeType" + expression: + $ref: "#/components/schemas/Expression" PipeExpression: description: Call expression with pipe argument type: object From 8089b9c7ea2879205f5d81cdf22c12e42b668045 Mon Sep 17 00:00:00 2001 From: Jakub Bednar Date: Mon, 23 Sep 2019 10:30:20 +0200 Subject: [PATCH 2/2] fix(http): fix capitalization --- http/swagger.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/swagger.yml b/http/swagger.yml index f9ab57021e..7d6006ee5f 100644 --- a/http/swagger.yml +++ b/http/swagger.yml @@ -6376,7 +6376,7 @@ components: items: $ref: "#/components/schemas/Property" ParenExpression: - description: represents an expression wrapped in parenthesis + description: Represents an expression wrapped in parenthesis type: object properties: type: