API ReferenceEvent Referencelive.recording.ready.v1

live.recording.ready.v1

Constant

import { EVENT_NAMES } from "@platform/contracts";
 
EVENT_NAMES.LIVE_RECORDING_READY_V1;

Publishers

Subscribers

No service currently subscribes to this event.

Payload schema

z.object({
  recording_id: z.string().uuid(),
  session_id: z.string().uuid(),
  brand_id: z.string(),
  stream_recording_id: z.string(),
  ready_at: z.string().datetime(),
  url: z.string().url().nullable(),
  expires_at: z.string().datetime().nullable(),
}

Delivery semantics

  • At-least-once delivery. Consumers must dedupe by event ID.
  • Fanned out to both NATS (in-cluster) and EventBridge (durable). See Events concept.