Files
payload-automation/src/triggers/types.ts
Bas van den Aakster 0f741acf73 Remove initCollectionHooks and associated migration guides
- Delete `initCollectionHooks` implementation and its usage references
- Remove `MIGRATION-v0.0.24.md` and `NOT-IMPLEMENTING.md` as they are now obsolete
- Update related workflow executor logic and TypeScript definitions, ensuring compatibility
- Simplify error handling, input parsing, and logging within workflow execution
- Clean up and refactor redundant code to improve maintainability
2025-09-10 17:36:56 +02:00

7 lines
99 B
TypeScript

import type {Field} from "payload"
export type Trigger = {
slug: string
parameters: Field[]
}