From 5153b541ce7057bd04edf9aca370e98d15803f0e Mon Sep 17 00:00:00 2001 From: nicosammito Date: Sun, 7 Jun 2026 16:29:11 +0200 Subject: [PATCH 1/3] feat: coorect flow type display messages --- .../draco_cron/flow_types/cron.proto.json | 2 +- .../runtime_flow_types/cron.proto.json | 2 +- .../draco_rest/flow_types/rest.proto.json | 2 +- .../runtime_flow_types/rest.proto.json | 2 +- .../taurus/text/configurations/module.json | 16 ++++++++++++++++ .../taurus/text/configurations/test.json | 16 ++++++++++++++++ definitions/taurus/text/module.json | 18 ++++++++++++++++++ 7 files changed, 54 insertions(+), 4 deletions(-) create mode 100644 definitions/taurus/text/configurations/module.json create mode 100644 definitions/taurus/text/configurations/test.json diff --git a/definitions/draco_cron/flow_types/cron.proto.json b/definitions/draco_cron/flow_types/cron.proto.json index a56de24..2d89e40 100644 --- a/definitions/draco_cron/flow_types/cron.proto.json +++ b/definitions/draco_cron/flow_types/cron.proto.json @@ -24,7 +24,7 @@ "displayMessage": [ { "code": "en-US", - "content": "Schedule Job ${cron_code}" + "content": "Runs flow every ${cronMinute}min ${cronHour}hour ${cronMonth}month" } ], "signature": "(cronMinute: CRON_MINUTE, cronHour: CRON_HOUR, cronDayOfMonth: CRON_DAY_OF_MONTH, cronMonth: CRON_MONTH, cronDayOfWeek: CRON_DAY_OF_WEEK): void", diff --git a/definitions/draco_cron/runtime_flow_types/cron.proto.json b/definitions/draco_cron/runtime_flow_types/cron.proto.json index 67438d6..1cb7cb6 100644 --- a/definitions/draco_cron/runtime_flow_types/cron.proto.json +++ b/definitions/draco_cron/runtime_flow_types/cron.proto.json @@ -23,7 +23,7 @@ "displayMessage": [ { "code": "en-US", - "content": "Schedule Job ${cron_code}" + "content": "Runs flow every ${cronMinute}min ${cronHour}hour ${cronMonth}month" } ], "signature": "(cronMinute: CRON_MINUTE, cronHour: CRON_HOUR, cronDayOfMonth: CRON_DAY_OF_MONTH, cronMonth: CRON_MONTH, cronDayOfWeek: CRON_DAY_OF_WEEK): void", diff --git a/definitions/draco_rest/flow_types/rest.proto.json b/definitions/draco_rest/flow_types/rest.proto.json index 3ac1acc..945ca79 100644 --- a/definitions/draco_rest/flow_types/rest.proto.json +++ b/definitions/draco_rest/flow_types/rest.proto.json @@ -18,7 +18,7 @@ "displayMessage": [ { "code": "en-US", - "content": "Trigger Rest-Flow on ${method} with a Request to ${route}" + "content": "Trigger Rest-Flow on ${httpMethod} with a Request to ${httpURL}" } ], "alias": [ diff --git a/definitions/draco_rest/runtime_flow_types/rest.proto.json b/definitions/draco_rest/runtime_flow_types/rest.proto.json index 760f68d..0ca6135 100644 --- a/definitions/draco_rest/runtime_flow_types/rest.proto.json +++ b/definitions/draco_rest/runtime_flow_types/rest.proto.json @@ -17,7 +17,7 @@ "displayMessage": [ { "code": "en-US", - "content": "Trigger Rest-Flow on ${method} with a Request to ${route}" + "content": "Trigger Rest-Flow on ${httpMethod} with a Request to ${httpURL}" } ], "alias": [ diff --git a/definitions/taurus/text/configurations/module.json b/definitions/taurus/text/configurations/module.json new file mode 100644 index 0000000..68a7661 --- /dev/null +++ b/definitions/taurus/text/configurations/module.json @@ -0,0 +1,16 @@ +{ + "identifier": "test", + "name": [ + { + "code": "en-US", + "content": "Text" + } + ], + "description": [ + { + "code": "en-US", + "content": "Work with Text." + } + ], + "type": "TEXT" +} \ No newline at end of file diff --git a/definitions/taurus/text/configurations/test.json b/definitions/taurus/text/configurations/test.json new file mode 100644 index 0000000..019efad --- /dev/null +++ b/definitions/taurus/text/configurations/test.json @@ -0,0 +1,16 @@ +{ + "identifier": "test2", + "name": [ + { + "code": "en-US", + "content": "List" + } + ], + "description": [ + { + "code": "en-US", + "content": "Work with List." + } + ], + "type": "LIST" +} \ No newline at end of file diff --git a/definitions/taurus/text/module.json b/definitions/taurus/text/module.json index 4acb39e..5f91011 100644 --- a/definitions/taurus/text/module.json +++ b/definitions/taurus/text/module.json @@ -12,6 +12,24 @@ "content": "Work with Text." } ], + "configurations": [ + { + "identifier": "test", + "name": [ + { + "code": "en-US", + "content": "Text" + } + ], + "description": [ + { + "code": "en-US", + "content": "Work with Text." + } + ], + "type": "TEXT" + } + ], "documentation": "", "author": "CodeZero", "icon": "tabler:abc" From 43ceaf5420e7bf9940ce43a32d118c638139e23c Mon Sep 17 00:00:00 2001 From: nicosammito Date: Sun, 7 Jun 2026 16:52:35 +0200 Subject: [PATCH 2/3] feat: remove config --- .../taurus/text/configurations/module.json | 16 ---------------- .../taurus/text/configurations/test.json | 16 ---------------- definitions/taurus/text/module.json | 18 ------------------ 3 files changed, 50 deletions(-) delete mode 100644 definitions/taurus/text/configurations/module.json delete mode 100644 definitions/taurus/text/configurations/test.json diff --git a/definitions/taurus/text/configurations/module.json b/definitions/taurus/text/configurations/module.json deleted file mode 100644 index 68a7661..0000000 --- a/definitions/taurus/text/configurations/module.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "identifier": "test", - "name": [ - { - "code": "en-US", - "content": "Text" - } - ], - "description": [ - { - "code": "en-US", - "content": "Work with Text." - } - ], - "type": "TEXT" -} \ No newline at end of file diff --git a/definitions/taurus/text/configurations/test.json b/definitions/taurus/text/configurations/test.json deleted file mode 100644 index 019efad..0000000 --- a/definitions/taurus/text/configurations/test.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "identifier": "test2", - "name": [ - { - "code": "en-US", - "content": "List" - } - ], - "description": [ - { - "code": "en-US", - "content": "Work with List." - } - ], - "type": "LIST" -} \ No newline at end of file diff --git a/definitions/taurus/text/module.json b/definitions/taurus/text/module.json index 5f91011..4acb39e 100644 --- a/definitions/taurus/text/module.json +++ b/definitions/taurus/text/module.json @@ -12,24 +12,6 @@ "content": "Work with Text." } ], - "configurations": [ - { - "identifier": "test", - "name": [ - { - "code": "en-US", - "content": "Text" - } - ], - "description": [ - { - "code": "en-US", - "content": "Work with Text." - } - ], - "type": "TEXT" - } - ], "documentation": "", "author": "CodeZero", "icon": "tabler:abc" From d7454239ac2f9f4cc9817efed9f7f05a85b690fa Mon Sep 17 00:00:00 2001 From: nicosammito Date: Sun, 7 Jun 2026 16:55:48 +0200 Subject: [PATCH 3/3] feat: adjusting cron display message --- definitions/draco_cron/flow_types/cron.proto.json | 2 +- definitions/draco_cron/runtime_flow_types/cron.proto.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/definitions/draco_cron/flow_types/cron.proto.json b/definitions/draco_cron/flow_types/cron.proto.json index 2d89e40..a2a9fb1 100644 --- a/definitions/draco_cron/flow_types/cron.proto.json +++ b/definitions/draco_cron/flow_types/cron.proto.json @@ -24,7 +24,7 @@ "displayMessage": [ { "code": "en-US", - "content": "Runs flow every ${cronMinute}min ${cronHour}hour ${cronMonth}month" + "content": "Runs flow every ${cronMinute}min ${cronHour}hour ${cronDayOfMonth}day of month ${cronMonth}month ${cronDayOfWeek}day of week" } ], "signature": "(cronMinute: CRON_MINUTE, cronHour: CRON_HOUR, cronDayOfMonth: CRON_DAY_OF_MONTH, cronMonth: CRON_MONTH, cronDayOfWeek: CRON_DAY_OF_WEEK): void", diff --git a/definitions/draco_cron/runtime_flow_types/cron.proto.json b/definitions/draco_cron/runtime_flow_types/cron.proto.json index 1cb7cb6..dd617a7 100644 --- a/definitions/draco_cron/runtime_flow_types/cron.proto.json +++ b/definitions/draco_cron/runtime_flow_types/cron.proto.json @@ -23,7 +23,7 @@ "displayMessage": [ { "code": "en-US", - "content": "Runs flow every ${cronMinute}min ${cronHour}hour ${cronMonth}month" + "content": "Runs flow every ${cronMinute}min ${cronHour}hour ${cronDayOfMonth}day of month ${cronMonth}month ${cronDayOfWeek}day of week" } ], "signature": "(cronMinute: CRON_MINUTE, cronHour: CRON_HOUR, cronDayOfMonth: CRON_DAY_OF_MONTH, cronMonth: CRON_MONTH, cronDayOfWeek: CRON_DAY_OF_WEEK): void",