mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-02 16:55:42 +08:00
### What problem does this PR solve? Feat: Remove HMAC from the webhook #10427 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
10 lines
283 B
TypeScript
10 lines
283 B
TypeScript
export interface IDebugSingleRequestBody {
|
|
component_id: string;
|
|
params: Record<string, any>;
|
|
}
|
|
|
|
export interface IAgentWebhookTraceRequest {
|
|
since_ts: number; // From the first request for return
|
|
webhook_id: string; // Each external request generates a unique webhook ID.
|
|
}
|