Files
boc/landvex/node_modules/openai/lib/responses/ResponseAccumulator.d.mts
T
Bernt 6989a98d75 feat: Passwordless cross-device authentication
- Arkitektur: docs/auth/passwordless-architecture.md
- Backend: iom/quixzoom-auth-service/ (FastAPI + Redis)
- Webb: quixzoom-market-pages/se/login/ (QR-kod + polling)
- App: iom/quixzoom-app/src/features/auth/ (push + deep links)

Flöde: QR-kod → app-godkännande → webb-inloggad
2026-07-07 07:11:50 +00:00

10 lines
557 B
TypeScript

import { type Response, type ResponseStreamEvent } from "../../resources/responses/responses.mjs";
/**
* Applies a streaming event to a response snapshot.
*
* Always use the returned snapshot. Incremental events update the supplied snapshot
* in place, while response lifecycle events return a detached replacement. Event
* payloads are cloned, so retaining or replaying the raw events is safe.
*/
export declare function accumulateResponse(event: ResponseStreamEvent, snapshot?: Response): Response;
//# sourceMappingURL=ResponseAccumulator.d.mts.map