mirror of
https://github.com/xtr-dev/payload-automation.git
synced 2025-12-12 17:43:23 +00:00
- Add createTrigger() and createAdvancedTrigger() helpers - Add preset builders: webhookTrigger, cronTrigger, eventTrigger, etc. - Implement virtual fields with JSON backing for trigger parameters - Eliminate 90% of boilerplate when creating custom triggers - Add /helpers export path for trigger builders - Fix field name clashing between built-in and custom trigger parameters - Add comprehensive examples and documentation - Maintain backward compatibility with existing triggers 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
697 B
TypeScript
12 lines
697 B
TypeScript
// Client-side components that may have CSS imports or PayloadCMS UI dependencies
|
|
// These are separated to avoid CSS import errors during Node.js type generation
|
|
|
|
export { TriggerWorkflowButton } from '../components/TriggerWorkflowButton.js'
|
|
export { StatusCell } from '../components/StatusCell.js'
|
|
// export { ErrorDisplay } from '../components/ErrorDisplay.js' // Temporarily disabled
|
|
export { WorkflowExecutionStatus } from '../components/WorkflowExecutionStatus.js'
|
|
|
|
// Future client components can be added here:
|
|
// export { default as WorkflowDashboard } from '../components/WorkflowDashboard/index.js'
|
|
// export { default as WorkflowBuilder } from '../components/WorkflowBuilder/index.js'
|