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

23
node_modules/svix/dist/models/messageAttemptLog.d.ts generated vendored Normal file
View File

@@ -0,0 +1,23 @@
import { type HttpAttemptTimes } from "./httpAttemptTimes";
import { type MessageStatus } from "./messageStatus";
export interface MessageAttemptLog {
appId: string;
appUid?: string | null;
attemptCount: number;
attemptEnd: Date;
attemptId: string;
attemptStart: Date;
endpointId: string;
eventType?: string | null;
httpTimes?: HttpAttemptTimes | null;
msgCreated: Date;
msgEventId?: string | null;
msgId: string;
orgId: string;
responseStatusCode: number;
status: MessageStatus;
}
export declare const MessageAttemptLogSerializer: {
_fromJsonObject(object: any): MessageAttemptLog;
_toJsonObject(self: MessageAttemptLog): any;
};