Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 0 additions & 65 deletions definitions/cron/data_type/object/cron_code.proto.json

This file was deleted.

80 changes: 76 additions & 4 deletions definitions/cron/flow_type/cron.proto.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,92 @@
"identifier": "CRON",
"settings": [
{
"identifier": "CRON_CODE",
"identifier": "CRON_MINUTE",
"unique": "NONE",
"dataTypeIdentifier": "CRON_CODE",
"dataTypeIdentifier": "CRON_MINUTE",
"defaultValue": null,
"name": [
{
"code": "en-US",
"content": "Cron Code"
"content": "Minute"
}
],
"description": [
{
"code": "en-US",
"content": "Specifies the Cron Code for this flow to be called."
"content": "Defines the minute when the flow runs (e.g., 0 for on the hour, */5 for every 5 minutes)."
}
]
},
{
"identifier": "CRON_HOUR",
"unique": "NONE",
"dataTypeIdentifier": "CRON_HOUR",
"defaultValue": null,
"name": [
{
"code": "en-US",
"content": "Hour"
}
],
"description": [
{
"code": "en-US",
"content": "Defines the hour when the flow runs (e.g., 0 for midnight, 14 for 2 PM)."
}
]
},
{
"identifier": "CRON_DAY_OF_MONTH",
"unique": "NONE",
"dataTypeIdentifier": "CRON_DAY_OF_MONTH",
"defaultValue": null,
"name": [
{
"code": "en-US",
"content": "Day of the Month"
}
],
"description": [
{
"code": "en-US",
"content": "Defines the day of the month when the flow runs (e.g., 1 for first day, 15 for mid-month)."
}
]
},
{
"identifier": "CRON_MONTH",
"unique": "NONE",
"dataTypeIdentifier": "CRON_MONTH",
"defaultValue": null,
"name": [
{
"code": "en-US",
"content": "Month"
}
],
"description": [
{
"code": "en-US",
"content": "Defines the month when the flow runs (e.g., 1 for January, 12 for December)."
}
]
},
{
"identifier": "CRON_DAY_OF_WEEK",
"unique": "NONE",
"dataTypeIdentifier": "CRON_DAY_OF_WEEK",
"defaultValue": null,
"name": [
{
"code": "en-US",
"content": "Day of the Week"
}
],
"description": [
{
"code": "en-US",
"content": "Defines the weekday when the flow runs (e.g., 0 or SUN for Sunday, MON-FRI for weekdays)."
}
]
}
Expand Down