57 lines
1.2 KiB
JavaScript
57 lines
1.2 KiB
JavaScript
import defineAction from '../../../../helpers/define-action.js';
|
|
|
|
export default defineAction({
|
|
name: 'Delay for',
|
|
key: 'delayFor',
|
|
description:
|
|
'Delays the execution of the next action by a specified amount of time.',
|
|
arguments: [
|
|
{
|
|
label: 'Delay for unit',
|
|
key: 'delayForUnit',
|
|
type: 'dropdown',
|
|
required: true,
|
|
value: null,
|
|
description: 'Delay for unit, e.g. minutes, hours, days, weeks.',
|
|
variables: true,
|
|
options: [
|
|
{
|
|
label: 'Minutes',
|
|
value: 'minutes',
|
|
},
|
|
{
|
|
label: 'Hours',
|
|
value: 'hours',
|
|
},
|
|
{
|
|
label: 'Days',
|
|
value: 'days',
|
|
},
|
|
{
|
|
label: 'Weeks',
|
|
value: 'weeks',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: 'Delay for value',
|
|
key: 'delayForValue',
|
|
type: 'string',
|
|
required: true,
|
|
description: 'Delay for value, use a number, e.g. 1, 2, 3.',
|
|
variables: true,
|
|
},
|
|
],
|
|
|
|
async run($) {
|
|
const { delayForUnit, delayForValue } = $.step.parameters;
|
|
|
|
const dataItem = {
|
|
delayForUnit,
|
|
delayForValue,
|
|
};
|
|
|
|
$.setActionItem({ raw: dataItem });
|
|
},
|
|
});
|