Skip to content

Commit

Permalink
fix(ms-teams): add optional flags for additional properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksiivanov committed Dec 20, 2022
1 parent d0b3017 commit 56c0c5a
Showing 1 changed file with 26 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@
"binding": {
"type": "zeebe:input",
"name": "data.type"
},
"constraints": {
"notEmpty": true
}
},
{
Expand Down Expand Up @@ -192,6 +195,9 @@
"value": "getMessageFromChat"
}
],
"constraints": {
"notEmpty": true
},
"condition": {
"property": "operationType",
"equals": "chat"
Expand Down Expand Up @@ -242,6 +248,9 @@
"value": "listMembersInChannel"
}
],
"constraints": {
"notEmpty": true
},
"condition": {
"property": "operationType",
"equals": "channel"
Expand Down Expand Up @@ -283,6 +292,7 @@
"description": "Set topic of chat (optional)",
"group": "data",
"type": "String",
"optional": true,
"binding": {
"type": "zeebe:input",
"name": "data.topic"
Expand Down Expand Up @@ -372,6 +382,7 @@
"description": "Controls the number of items per response. Maximum allowed $top value is 50",
"group": "data",
"type": "String",
"optional": true,
"binding": {
"type": "zeebe:input",
"name": "data.top"
Expand Down Expand Up @@ -407,6 +418,7 @@
"type": "zeebe:input",
"name": "data.orderBy"
},
"optional": true,
"constraints": {
"notEmpty": false
},
Expand All @@ -417,9 +429,10 @@
},
{
"label": "Filter",
"description": "Sets the date range filter for the lastModifiedDateTime and createdDateTime properties",
"description": "Sets the date range filter for the lastModifiedDateTime and createdDateTime properties. <a href='https://learn.microsoft.com/en-us/graph/filter-query-parameter'>Learn more about filtering</a>",
"group": "data",
"type": "String",
"optional": true,
"binding": {
"type": "zeebe:input",
"name": "data.filter"
Expand Down Expand Up @@ -501,6 +514,7 @@
"description": "Enter description",
"group": "data",
"type": "Text",
"optional": true,
"binding": {
"type": "zeebe:input",
"name": "data.description"
Expand Down Expand Up @@ -535,6 +549,9 @@
"type": "zeebe:input",
"name": "data.channelType"
},
"constraints": {
"notEmpty": true
},
"condition": {
"property": "channelMethod",
"equals": "createChannel"
Expand Down Expand Up @@ -563,9 +580,10 @@
},
{
"label": "Filter",
"description": "Sets the search filter",
"description": "Sets the search filter. <a href='https://learn.microsoft.com/en-us/graph/filter-query-parameter'>Learn more about filtering</a>",
"group": "data",
"type": "String",
"optional": true,
"binding": {
"type": "zeebe:input",
"name": "data.filter"
Expand All @@ -584,6 +602,9 @@
"type": "zeebe:input",
"name": "data.content"
},
"constraints": {
"notEmpty": true
},
"condition": {
"property": "channelMethod",
"equals": "sendMessageToChannel"
Expand Down Expand Up @@ -614,6 +635,7 @@
"description": "Controls the number of items per response",
"group": "data",
"type": "String",
"optional": true,
"binding": {
"type": "zeebe:input",
"name": "data.top"
Expand Down Expand Up @@ -641,6 +663,7 @@
"value": "false"
}
],
"optional": true,
"binding": {
"type": "zeebe:input",
"name": "data.isExpand"
Expand Down Expand Up @@ -676,7 +699,7 @@
},
{
"label": "Error Expression",
"description": "Expression to define BPMN errors to throw",
"description": "Expression to handle errors. Details in the <a href=\"https://docs.camunda.io/docs/components/connectors/use-connectors/#bpmn-errors\" target=\"_blank\">documentation</a>",
"group": "errors",
"type": "Text",
"feel": "required",
Expand Down

0 comments on commit 56c0c5a

Please sign in to comment.