FRE-709: Document duplicate recovery wake - FRE-635 already recovered via FRE-708
This commit is contained in:
48
node_modules/svix/dist/models/streamSinkPatch.d.ts
generated
vendored
Normal file
48
node_modules/svix/dist/models/streamSinkPatch.d.ts
generated
vendored
Normal 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 {};
|
||||
Reference in New Issue
Block a user