Skip to content

Commit

Permalink
fix(msteams): add FEEL properties to inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
igpetrov committed Feb 9, 2023
1 parent 4ed50fe commit e948aec
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
"label": "Bearer Token",
"group": "authentication",
"type": "String",
"feel": "optional",
"constraints": {
"notEmpty": true
},
Expand All @@ -94,6 +95,7 @@
"label": "Refresh Token",
"group": "authentication",
"type": "String",
"feel": "optional",
"constraints": {
"notEmpty": true
},
Expand All @@ -111,6 +113,7 @@
"description": "The client ID of the application",
"group": "authentication",
"type": "String",
"feel": "optional",
"constraints": {
"notEmpty": true
},
Expand All @@ -131,6 +134,7 @@
"description": "The tenant ID of the application",
"group": "authentication",
"type": "String",
"feel": "optional",
"constraints": {
"notEmpty": true
},
Expand All @@ -151,6 +155,7 @@
"description": " The secret value of the Azure AD application",
"group": "authentication",
"type": "String",
"feel": "optional",
"constraints": {
"notEmpty": true
},
Expand Down Expand Up @@ -326,6 +331,7 @@
"description": "Set topic of chat (optional)",
"group": "data",
"type": "String",
"feel": "optional",
"optional": true,
"binding": {
"type": "zeebe:input",
Expand Down Expand Up @@ -359,6 +365,7 @@
"description": "The chat ID",
"group": "data",
"type": "String",
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "data.chatId"
Expand Down Expand Up @@ -412,6 +419,7 @@
"description": "Enter content",
"group": "data",
"type": "Text",
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "data.content"
Expand All @@ -429,6 +437,7 @@
"description": "The message ID",
"group": "data",
"type": "String",
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "data.messageId"
Expand All @@ -446,6 +455,7 @@
"description": "Controls the number of items per response. Maximum allowed $top value is 50",
"group": "data",
"type": "String",
"feel": "optional",
"optional": true,
"binding": {
"type": "zeebe:input",
Expand Down Expand Up @@ -496,6 +506,7 @@
"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",
"feel": "optional",
"optional": true,
"binding": {
"type": "zeebe:input",
Expand All @@ -511,6 +522,7 @@
"description": "The group id for teams",
"group": "data",
"type": "String",
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "data.groupId"
Expand All @@ -537,6 +549,7 @@
"description": "The channel ID",
"group": "data",
"type": "String",
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "data.channelId"
Expand All @@ -561,6 +574,7 @@
"description": "Enter name of a channel",
"group": "data",
"type": "String",
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "data.name"
Expand All @@ -578,6 +592,7 @@
"description": "Enter description",
"group": "data",
"type": "Text",
"feel": "optional",
"optional": true,
"binding": {
"type": "zeebe:input",
Expand Down Expand Up @@ -626,6 +641,7 @@
"description": "Enter ID or principal name of a user",
"group": "data",
"type": "String",
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "data.owner"
Expand All @@ -648,6 +664,7 @@
"group": "data",
"type": "String",
"optional": true,
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "data.filter"
Expand All @@ -662,6 +679,7 @@
"description": "Enter content",
"group": "data",
"type": "Text",
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "data.content"
Expand All @@ -679,6 +697,7 @@
"description": "The message ID",
"group": "data",
"type": "String",
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "data.messageId"
Expand All @@ -700,6 +719,7 @@
"group": "data",
"type": "String",
"optional": true,
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "data.top"
Expand All @@ -716,6 +736,7 @@
"label": "With replies",
"description": "Return message replies",
"group": "data",
"value": "false",
"type": "Dropdown",
"choices": [
{
Expand Down Expand Up @@ -745,6 +766,7 @@
"description": "Enter the name of the variable where the response should be stored. Details in the <a href=\"https://docs.camunda.io/docs/components/connectors/use-connectors/#result-variable\" target=\"_blank\">documentation</a>",
"group": "output",
"type": "String",
"feel": "optional",
"binding": {
"type": "zeebe:taskHeader",
"key": "resultVariable"
Expand Down

0 comments on commit e948aec

Please sign in to comment.