/** * Event types available for resource-scoped webhook subscriptions. The valid subset depends on the `resourceType`: * * - **extractor**: `extract_run.processed`, `extract_run.failed`, `batch_processor_run.processed`, `batch_processor_run.failed` * - **classifier**: `classify_run.processed`, `classify_run.failed`, `batch_processor_run.processed`, `batch_processor_run.failed` * - **splitter**: `split_run.processed`, `split_run.failed`, `batch_processor_run.processed`, `batch_processor_run.failed` * - **workflow**: `workflow_run.completed`, `workflow_run.failed`, `workflow_run.needs_review`, `workflow_run.rejected`, `workflow_run.cancelled`, `workflow_run.step_run.processed` */ export declare const WebhookSubscriptionEventType: { readonly ExtractRunProcessed: "extract_run.processed"; readonly ExtractRunFailed: "extract_run.failed"; readonly ClassifyRunProcessed: "classify_run.processed"; readonly ClassifyRunFailed: "classify_run.failed"; readonly SplitRunProcessed: "split_run.processed"; readonly SplitRunFailed: "split_run.failed"; readonly BatchProcessorRunProcessed: "batch_processor_run.processed"; readonly BatchProcessorRunFailed: "batch_processor_run.failed"; readonly WorkflowRunCompleted: "workflow_run.completed"; readonly WorkflowRunFailed: "workflow_run.failed"; readonly WorkflowRunNeedsReview: "workflow_run.needs_review"; readonly WorkflowRunRejected: "workflow_run.rejected"; readonly WorkflowRunCancelled: "workflow_run.cancelled"; readonly WorkflowRunStepRunProcessed: "workflow_run.step_run.processed"; }; export type WebhookSubscriptionEventType = (typeof WebhookSubscriptionEventType)[keyof typeof WebhookSubscriptionEventType] | string;