32 lines
657 B
JavaScript
32 lines
657 B
JavaScript
exports.definition = {
|
|
name: "Cron Trigger",
|
|
event: "cron:trigger",
|
|
icon: "Clock",
|
|
tagline: "Cron Trigger (<b>{{inputs.cron}}</b>)",
|
|
description: "Triggers automation on a cron schedule.",
|
|
stepId: "CRON",
|
|
inputs: {},
|
|
schema: {
|
|
inputs: {
|
|
properties: {
|
|
cron: {
|
|
type: "string",
|
|
customType: "cron",
|
|
title: "Expression",
|
|
},
|
|
},
|
|
required: ["cron"],
|
|
},
|
|
outputs: {
|
|
properties: {
|
|
timestamp: {
|
|
type: "number",
|
|
description: "Timestamp the cron was executed",
|
|
},
|
|
},
|
|
required: ["timestamp"],
|
|
},
|
|
},
|
|
type: "TRIGGER",
|
|
}
|