Files
yaak/src-web/lib/sendEphemeralRequest.ts
2025-04-30 10:13:06 -07:00

17 lines
545 B
TypeScript

import type { HttpRequest, HttpResponse } from '@yaakapp-internal/models';
import { getActiveCookieJar } from '../hooks/useActiveCookieJar';
import { invokeCmd } from './tauri';
export async function sendEphemeralRequest(
request: HttpRequest,
environmentId: string | null,
): Promise<HttpResponse> {
// Remove some things that we don't want to associate
const newRequest = { ...request };
return invokeCmd('cmd_send_ephemeral_request', {
request: newRequest,
environmentId,
cookieJarId: getActiveCookieJar()?.id,
});
}