refactor resolveHeaders

This commit is contained in:
Gopal Sharma 2025-08-10 03:44:49 +05:30 committed by Gopal Sharma
parent eec10bf745
commit d37db43e29
10 changed files with 78 additions and 63 deletions

View file

@ -27,6 +27,7 @@ export * from './types/mutations';
export * from './types/queries';
export * from './types/runs';
export * from './types/web';
export * from './types/http';
/* query/mutation keys */
export * from './keys';
/* api call helpers */

View file

@ -0,0 +1,7 @@
export interface RequestBody {
parentMessageId: string;
messageId: string;
conversationId?: string;
[key: string]: unknown;
}