/** * #realtime_subscriptions.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ import type { RealtimeEvent } from "../../../events/v1alpha/realtime.js"; export declare enum RealtimeSubscriptionStatus { REALTIME_SUBSCRIBED = 0, REALTIME_UNSUBSCRIBED = 1, UNRECOGNIZED = -1 } /** Instruct the client to subscribe to realtime events */ export type RealtimeSubscriptionsEffect = { /** List of IDs the client should be subscribed to */ subscriptionIds: string[]; }; export type RealtimeSubscriptionEvent = { /** Event data from the subscription */ event?: RealtimeEvent | undefined; /** If set, this event signals a change in the subscription status */ status?: RealtimeSubscriptionStatus | undefined; }; //# sourceMappingURL=realtime_subscriptions.d.ts.map