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

48
node_modules/svix/dist/models/streamSinkPatch.d.ts generated vendored Normal file
View File

@@ -0,0 +1,48 @@
import { type AmazonS3PatchConfig } from "./amazonS3PatchConfig";
import { type AzureBlobStoragePatchConfig } from "./azureBlobStoragePatchConfig";
import { type GoogleCloudStoragePatchConfig } from "./googleCloudStoragePatchConfig";
import { type HttpPatchConfig } from "./httpPatchConfig";
import { type OtelTracingPatchConfig } from "./otelTracingPatchConfig";
import { type SinkStatusIn } from "./sinkStatusIn";
interface _StreamSinkPatchFields {
batchSize?: number | null;
eventTypes?: string[];
maxWaitSecs?: number | null;
metadata?: {
[key: string]: string;
};
status?: SinkStatusIn | null;
uid?: string | null;
}
interface StreamSinkPatchPollerConfig {
}
interface StreamSinkPatchPoller {
type: "poller";
config?: StreamSinkPatchPollerConfig;
}
interface StreamSinkPatchAzureBlobStorage {
type: "azureBlobStorage";
config: AzureBlobStoragePatchConfig;
}
interface StreamSinkPatchOtelTracing {
type: "otelTracing";
config: OtelTracingPatchConfig;
}
interface StreamSinkPatchHttp {
type: "http";
config: HttpPatchConfig;
}
interface StreamSinkPatchAmazonS3 {
type: "amazonS3";
config: AmazonS3PatchConfig;
}
interface StreamSinkPatchGoogleCloudStorage {
type: "googleCloudStorage";
config: GoogleCloudStoragePatchConfig;
}
export type StreamSinkPatch = _StreamSinkPatchFields & (StreamSinkPatchPoller | StreamSinkPatchAzureBlobStorage | StreamSinkPatchOtelTracing | StreamSinkPatchHttp | StreamSinkPatchAmazonS3 | StreamSinkPatchGoogleCloudStorage);
export declare const StreamSinkPatchSerializer: {
_fromJsonObject(object: any): StreamSinkPatch;
_toJsonObject(self: StreamSinkPatch): any;
};
export {};