From 4553deafd06d0821f0258b19b020648f494e9fa6 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Fri, 9 Jul 2021 21:28:20 +0200 Subject: [PATCH] fix: correct moddle string->String type This prevents encoding errors as elements are properly regarded as encodeable. Related to https://github.com/camunda/camunda-modeler/issues/2365 --- resources/zeebe.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/resources/zeebe.json b/resources/zeebe.json index 21d7bf0..6439319 100644 --- a/resources/zeebe.json +++ b/resources/zeebe.json @@ -159,12 +159,12 @@ "properties": [ { "name": "type", - "type": "string", + "type": "String", "isAttr": true }, { "name": "retries", - "type": "string", + "type": "String", "isAttr": true } ] @@ -184,22 +184,22 @@ "properties": [ { "name": "inputCollection", - "type": "string", + "type": "String", "isAttr": true }, { "name": "inputElement", - "type": "string", + "type": "String", "isAttr": true }, { "name": "outputCollection", - "type": "string", + "type": "String", "isAttr": true }, { "name": "outputElement", - "type": "string", + "type": "String", "isAttr": true } ] @@ -217,12 +217,12 @@ "properties": [ { "name": "processId", - "type": "string", + "type": "String", "isAttr": true }, { "name": "processIdExpression", - "type": "string", + "type": "String", "isAttr": true }, { @@ -245,12 +245,12 @@ "properties": [ { "name": "id", - "type": "string", + "type": "String", "isAttr": true }, { "name": "body", - "type": "string", + "type": "String", "isBody": true } ] @@ -268,7 +268,7 @@ "properties": [ { "name": "formKey", - "type": "string", + "type": "String", "isAttr": true } ]