/opt/canhelp/node_modules/svix/dist/api
Edit: /opt/canhelp/node_modules/svix/dist/api/streamingStream.d.ts (1079B)
import { type ListResponseStreamOut } from "../models/listResponseStreamOut";
import type { Ordering } from "../models/ordering";
import { type StreamIn } from "../models/streamIn";
import { type StreamOut } from "../models/streamOut";
import { type StreamPatch } from "../models/streamPatch";
import { type SvixRequestContext } from "../request";
export interface StreamingStreamListOptions {
limit?: number;
iterator?: string | null;
order?: Ordering;
}
export interface StreamingStreamCreateOptions {
idempotencyKey?: string;
}
export declare class StreamingStream {
private readonly requestCtx;
constructor(requestCtx: SvixRequestContext);
list(options?: StreamingStreamListOptions): Promise
;
create(streamIn: StreamIn, options?: StreamingStreamCreateOptions): Promise;
get(streamId: string): Promise;
update(streamId: string, streamIn: StreamIn): Promise;
delete(streamId: string): Promise;
patch(streamId: string, streamPatch: StreamPatch): Promise;
}