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

38
node_modules/svix/dist/api/ingestEndpoint.d.ts generated vendored Normal file
View File

@@ -0,0 +1,38 @@
import { type IngestEndpointHeadersIn } from "../models/ingestEndpointHeadersIn";
import { type IngestEndpointHeadersOut } from "../models/ingestEndpointHeadersOut";
import { type IngestEndpointIn } from "../models/ingestEndpointIn";
import { type IngestEndpointOut } from "../models/ingestEndpointOut";
import { type IngestEndpointSecretIn } from "../models/ingestEndpointSecretIn";
import { type IngestEndpointSecretOut } from "../models/ingestEndpointSecretOut";
import { type IngestEndpointTransformationOut } from "../models/ingestEndpointTransformationOut";
import { type IngestEndpointTransformationPatch } from "../models/ingestEndpointTransformationPatch";
import { type IngestEndpointUpdate } from "../models/ingestEndpointUpdate";
import { type ListResponseIngestEndpointOut } from "../models/listResponseIngestEndpointOut";
import type { Ordering } from "../models/ordering";
import { type SvixRequestContext } from "../request";
export interface IngestEndpointListOptions {
limit?: number;
iterator?: string | null;
order?: Ordering;
}
export interface IngestEndpointCreateOptions {
idempotencyKey?: string;
}
export interface IngestEndpointRotateSecretOptions {
idempotencyKey?: string;
}
export declare class IngestEndpoint {
private readonly requestCtx;
constructor(requestCtx: SvixRequestContext);
list(sourceId: string, options?: IngestEndpointListOptions): Promise<ListResponseIngestEndpointOut>;
create(sourceId: string, ingestEndpointIn: IngestEndpointIn, options?: IngestEndpointCreateOptions): Promise<IngestEndpointOut>;
get(sourceId: string, endpointId: string): Promise<IngestEndpointOut>;
update(sourceId: string, endpointId: string, ingestEndpointUpdate: IngestEndpointUpdate): Promise<IngestEndpointOut>;
delete(sourceId: string, endpointId: string): Promise<void>;
getHeaders(sourceId: string, endpointId: string): Promise<IngestEndpointHeadersOut>;
updateHeaders(sourceId: string, endpointId: string, ingestEndpointHeadersIn: IngestEndpointHeadersIn): Promise<void>;
getSecret(sourceId: string, endpointId: string): Promise<IngestEndpointSecretOut>;
rotateSecret(sourceId: string, endpointId: string, ingestEndpointSecretIn: IngestEndpointSecretIn, options?: IngestEndpointRotateSecretOptions): Promise<void>;
getTransformation(sourceId: string, endpointId: string): Promise<IngestEndpointTransformationOut>;
setTransformation(sourceId: string, endpointId: string, ingestEndpointTransformationPatch: IngestEndpointTransformationPatch): Promise<void>;
}