FRE-709: Document duplicate recovery wake - FRE-635 already recovered via FRE-708

This commit is contained in:
2026-04-26 20:23:14 -04:00
parent e07237b6b0
commit 0ff6c74871
5880 changed files with 1643723 additions and 908 deletions

19
node_modules/svix/dist/api/streaming.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import { type EndpointHeadersOut } from "../models/endpointHeadersOut";
import { type HttpSinkHeadersPatchIn } from "../models/httpSinkHeadersPatchIn";
import { type SinkTransformationOut } from "../models/sinkTransformationOut";
import { StreamingEventType } from "./streamingEventType";
import { StreamingEvents } from "./streamingEvents";
import { StreamingSink } from "./streamingSink";
import { StreamingStream } from "./streamingStream";
import { type SvixRequestContext } from "../request";
export declare class Streaming {
private readonly requestCtx;
constructor(requestCtx: SvixRequestContext);
get event_type(): StreamingEventType;
get events(): StreamingEvents;
get sink(): StreamingSink;
get stream(): StreamingStream;
sinkHeadersGet(streamId: string, sinkId: string): Promise<EndpointHeadersOut>;
sinkHeadersPatch(streamId: string, sinkId: string, httpSinkHeadersPatchIn: HttpSinkHeadersPatchIn): Promise<EndpointHeadersOut>;
sinkTransformationGet(streamId: string, sinkId: string): Promise<SinkTransformationOut>;
}