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

17
node_modules/svix/dist/models/messageIn.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import { type ApplicationIn } from "./applicationIn";
export interface MessageIn {
application?: ApplicationIn | null;
channels?: string[] | null;
deliverAt?: Date | null;
eventId?: string | null;
eventType: string;
payload: any;
payloadRetentionHours?: number | null;
payloadRetentionPeriod?: number | null;
tags?: string[] | null;
transformationsParams?: any | null;
}
export declare const MessageInSerializer: {
_fromJsonObject(object: any): MessageIn;
_toJsonObject(self: MessageIn): any;
};