Add db event trigger and cron trigger to migration v2 (#14772)
## Context Add DB events triggers and Cron triggers to migration v2 builder/runner (and adding corresponding services/resolvers)
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
import { type FlatCronTrigger } from 'src/engine/metadata-modules/cron-trigger/types/flat-cron-trigger.type';
|
||||
|
||||
export const FLAT_CRON_TRIGGER_EDITABLE_PROPERTIES = [
|
||||
'settings',
|
||||
] as const satisfies (keyof FlatCronTrigger)[];
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import { FLAT_CRON_TRIGGER_EDITABLE_PROPERTIES } from 'src/engine/metadata-modules/cron-trigger/constants/flat-cron-trigger-editable-properties.constant';
|
||||
import { type FlatCronTrigger } from 'src/engine/metadata-modules/cron-trigger/types/flat-cron-trigger.type';
|
||||
|
||||
export const FLAT_CRON_TRIGGER_PROPERTIES_TO_COMPARE = [
|
||||
...FLAT_CRON_TRIGGER_EDITABLE_PROPERTIES,
|
||||
] as const satisfies (keyof FlatCronTrigger)[];
|
||||
Reference in New Issue
Block a user