feat(G): G-RUN/G-CTX/G-WAIT/G-HTTP/G-MAIL/G-CAL/G-DMS/G-SEARCH/G-AGENT/G-CRM/G-EVT/G-WEB — Durable WorkflowRun, 10 step handlers, resume/wait/lock/retry, SSRF protection, frontend step editor

This commit is contained in:
Agent Zero
2026-08-18 00:29:58 +02:00
parent 4ec2ac9eb5
commit db41e60042
8 changed files with 1783 additions and 154 deletions
+15 -1
View File
@@ -11,9 +11,23 @@ import type { PaginatedResponse } from './types';
// ── Types ──
export type WorkflowStepType =
| 'action'
| 'approval'
| 'notification'
| 'condition'
| 'wait'
| 'http'
| 'mail'
| 'calendar'
| 'dms'
| 'search'
| 'agent'
| 'crm';
export interface WorkflowStep {
name: string;
type: 'action' | 'approval' | 'notification' | 'condition';
type: WorkflowStepType;
config: Record<string, unknown>;
description?: string | null;
}