mirror of
https://github.com/xtr-dev/payload-automation.git
synced 2025-12-10 00:43:23 +00:00
Major Features: • Add persistent error tracking for timeout/network failures that bypasses PayloadCMS output limitations • Implement smart error classification (timeout, DNS, connection, network) with duration-based detection • Add comprehensive test infrastructure with MongoDB in-memory testing and enhanced mocking • Fix HTTP request handler error preservation with detailed context storage • Add independent execution tracking with success/failure status and duration metrics Technical Improvements: • Update JSONPath documentation to use correct $.trigger.doc syntax across all step types • Fix PayloadCMS job execution to use runByID instead of run() for reliable task processing • Add enhanced HTTP error handling that preserves outputs for 4xx/5xx status codes • Implement proper nock configuration with undici for Node.js 22 fetch interception • Add comprehensive unit tests for WorkflowExecutor with mocked PayloadCMS instances Developer Experience: • Add detailed error information in workflow context with URL, method, timeout, attempts • Update README with HTTP error handling patterns and enhanced error tracking examples • Add test helpers and setup infrastructure for reliable integration testing • Fix workflow step validation and JSONPath field descriptions Breaking Changes: None - fully backward compatible 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
64 lines
1.5 KiB
TypeScript
64 lines
1.5 KiB
TypeScript
import type { TaskConfig } from "payload"
|
|
|
|
import { updateDocumentHandler } from "./update-document-handler.js"
|
|
|
|
export const UpdateDocumentStepTask = {
|
|
slug: 'update-document',
|
|
handler: updateDocumentHandler,
|
|
inputSchema: [
|
|
{
|
|
name: 'collectionSlug',
|
|
type: 'text',
|
|
admin: {
|
|
description: 'The collection slug to update a document in'
|
|
},
|
|
required: true
|
|
},
|
|
{
|
|
name: 'id',
|
|
type: 'text',
|
|
admin: {
|
|
description: 'The ID of the document to update. Use JSONPath to reference IDs (e.g., "$.trigger.doc.id" or "$.steps.previousStep.output.id")'
|
|
},
|
|
required: true
|
|
},
|
|
{
|
|
name: 'data',
|
|
type: 'json',
|
|
admin: {
|
|
description: 'The data to update the document with. Use JSONPath to reference values (e.g., {"status": "$.trigger.doc.status", "updatedBy": "$.trigger.user.id"})'
|
|
},
|
|
required: true
|
|
},
|
|
{
|
|
name: 'draft',
|
|
type: 'checkbox',
|
|
admin: {
|
|
description: 'Update as draft (if collection has drafts enabled)'
|
|
}
|
|
},
|
|
{
|
|
name: 'locale',
|
|
type: 'text',
|
|
admin: {
|
|
description: 'Locale for the document (if localization is enabled)'
|
|
}
|
|
}
|
|
],
|
|
outputSchema: [
|
|
{
|
|
name: 'doc',
|
|
type: 'json',
|
|
admin: {
|
|
description: 'The updated document'
|
|
}
|
|
},
|
|
{
|
|
name: 'id',
|
|
type: 'text',
|
|
admin: {
|
|
description: 'The ID of the updated document'
|
|
}
|
|
}
|
|
]
|
|
} satisfies TaskConfig<'update-document'> |