mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(Node): add the Scheduler Node (#4223)
* ✨ Create Schedule node with MVP structure * ✨ Add 24 increments for hours picker * 🚨 Lintfix * Add timestamp, add hour minute and cron expression * Fix bug where there was one extra interval object * Fix default value from fixedCollection * 🐛 UI fixes * 🎨 Changed logic to reflect UI fixes * Fix auto intitialising * Deprecated interval and cron in favor of schedule node * 🐛 Ui fixes * 🐛 Fix issue with week intervals * 🚨 Lint fixes * change order of days in the week to chronological order
This commit is contained in:
9
packages/nodes-base/nodes/Schedule/CronInterface.ts
Normal file
9
packages/nodes-base/nodes/Schedule/CronInterface.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { IDataObject } from 'n8n-workflow';
|
||||
|
||||
export type ICronExpression = [
|
||||
string | Date,
|
||||
string | Date,
|
||||
string | Date,
|
||||
string | Date,
|
||||
string | Date,
|
||||
];
|
||||
Reference in New Issue
Block a user