Skip to content

Commit 5153b54

Browse files
committed
feat: coorect flow type display messages
1 parent 303c17b commit 5153b54

7 files changed

Lines changed: 54 additions & 4 deletions

File tree

definitions/draco_cron/flow_types/cron.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"displayMessage": [
2525
{
2626
"code": "en-US",
27-
"content": "Schedule Job ${cron_code}"
27+
"content": "Runs flow every ${cronMinute}min ${cronHour}hour ${cronMonth}month"
2828
}
2929
],
3030
"signature": "(cronMinute: CRON_MINUTE, cronHour: CRON_HOUR, cronDayOfMonth: CRON_DAY_OF_MONTH, cronMonth: CRON_MONTH, cronDayOfWeek: CRON_DAY_OF_WEEK): void",

definitions/draco_cron/runtime_flow_types/cron.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"displayMessage": [
2424
{
2525
"code": "en-US",
26-
"content": "Schedule Job ${cron_code}"
26+
"content": "Runs flow every ${cronMinute}min ${cronHour}hour ${cronMonth}month"
2727
}
2828
],
2929
"signature": "(cronMinute: CRON_MINUTE, cronHour: CRON_HOUR, cronDayOfMonth: CRON_DAY_OF_MONTH, cronMonth: CRON_MONTH, cronDayOfWeek: CRON_DAY_OF_WEEK): void",

definitions/draco_rest/flow_types/rest.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"displayMessage": [
1919
{
2020
"code": "en-US",
21-
"content": "Trigger Rest-Flow on ${method} with a Request to ${route}"
21+
"content": "Trigger Rest-Flow on ${httpMethod} with a Request to ${httpURL}"
2222
}
2323
],
2424
"alias": [

definitions/draco_rest/runtime_flow_types/rest.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"displayMessage": [
1818
{
1919
"code": "en-US",
20-
"content": "Trigger Rest-Flow on ${method} with a Request to ${route}"
20+
"content": "Trigger Rest-Flow on ${httpMethod} with a Request to ${httpURL}"
2121
}
2222
],
2323
"alias": [
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"identifier": "test",
3+
"name": [
4+
{
5+
"code": "en-US",
6+
"content": "Text"
7+
}
8+
],
9+
"description": [
10+
{
11+
"code": "en-US",
12+
"content": "Work with Text."
13+
}
14+
],
15+
"type": "TEXT"
16+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"identifier": "test2",
3+
"name": [
4+
{
5+
"code": "en-US",
6+
"content": "List"
7+
}
8+
],
9+
"description": [
10+
{
11+
"code": "en-US",
12+
"content": "Work with List."
13+
}
14+
],
15+
"type": "LIST<TEXT>"
16+
}

definitions/taurus/text/module.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,24 @@
1212
"content": "Work with Text."
1313
}
1414
],
15+
"configurations": [
16+
{
17+
"identifier": "test",
18+
"name": [
19+
{
20+
"code": "en-US",
21+
"content": "Text"
22+
}
23+
],
24+
"description": [
25+
{
26+
"code": "en-US",
27+
"content": "Work with Text."
28+
}
29+
],
30+
"type": "TEXT"
31+
}
32+
],
1533
"documentation": "",
1634
"author": "CodeZero",
1735
"icon": "tabler:abc"

0 commit comments

Comments
 (0)