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

27
node_modules/svix/dist/api/ingestSource.d.ts generated vendored Normal file
View File

@@ -0,0 +1,27 @@
import { type IngestSourceIn } from "../models/ingestSourceIn";
import { type IngestSourceOut } from "../models/ingestSourceOut";
import { type ListResponseIngestSourceOut } from "../models/listResponseIngestSourceOut";
import type { Ordering } from "../models/ordering";
import { type RotateTokenOut } from "../models/rotateTokenOut";
import { type SvixRequestContext } from "../request";
export interface IngestSourceListOptions {
limit?: number;
iterator?: string | null;
order?: Ordering;
}
export interface IngestSourceCreateOptions {
idempotencyKey?: string;
}
export interface IngestSourceRotateTokenOptions {
idempotencyKey?: string;
}
export declare class IngestSource {
private readonly requestCtx;
constructor(requestCtx: SvixRequestContext);
list(options?: IngestSourceListOptions): Promise<ListResponseIngestSourceOut>;
create(ingestSourceIn: IngestSourceIn, options?: IngestSourceCreateOptions): Promise<IngestSourceOut>;
get(sourceId: string): Promise<IngestSourceOut>;
update(sourceId: string, ingestSourceIn: IngestSourceIn): Promise<IngestSourceOut>;
delete(sourceId: string): Promise<void>;
rotateToken(sourceId: string, options?: IngestSourceRotateTokenOptions): Promise<RotateTokenOut>;
}