File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
app/api/resume/[workflowId]/[executionId]/[contextId] Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export async function POST(
2929
3030 const workflow = access . workflow
3131
32- let payload : any = { }
32+ let payload : Record < string , unknown > = { }
3333 try {
3434 payload = await request . json ( )
3535 } catch {
Original file line number Diff line number Diff line change @@ -4,23 +4,23 @@ export interface RequestParams {
44 url : string
55 method ?: HttpMethod
66 headers ?: TableRow [ ]
7- body ?: any
7+ body ?: unknown
88 params ?: TableRow [ ]
99 pathParams ?: Record < string , string >
1010 formData ?: Record < string , string | Blob >
1111}
1212
1313export interface RequestResponse extends ToolResponse {
1414 output : {
15- data : any
15+ data : unknown
1616 status : number
1717 headers : Record < string , string >
1818 }
1919}
2020
2121export interface WebhookRequestParams {
2222 url : string
23- body ?: any
23+ body ?: unknown
2424 secret ?: string
2525 headers ?: Record < string , string >
2626}
You can’t perform that action at this time.
0 commit comments