17 lines
877 B
TypeScript
17 lines
877 B
TypeScript
// Parser shim. The widget consumes a single `parseEvent(rawEvent)` and
|
|
// the dialect handles the full event surface — m.text, m.notice, m.image
|
|
// (QR broadcasts), m.room.redaction (post-scan cleanup). v1 ships one
|
|
// dialect, `bridgev2_v0264`, for the operator's current bridge image.
|
|
// When bridgev2 / mautrix-whatsapp wording drifts in a future Go release,
|
|
// add a sibling dialect file and switch the import below.
|
|
//
|
|
// The dialects/ subdirectory is kept as a seam for that swap; we don't
|
|
// implement runtime autodetect (the operator owns one bridge image at a
|
|
// time and a parser pin is honest about that).
|
|
|
|
import type { LoginEvent, ParsableEvent } from './types';
|
|
import { parseEventBridgev2V0264 } from './dialects/bridgev2_v0264';
|
|
|
|
export type { ParsableEvent };
|
|
|
|
export const parseEvent = (event: ParsableEvent): LoginEvent => parseEventBridgev2V0264(event);
|