Files
klz-cables.com/.pnpm-store/v10/files/98/5a3d22aea536c7583252308e0b36fe5ae8a45b4908cfc41bae6fe06097c561843f5426d580b10a75ff4c472e42c6fa4369b8c4a17a44373e581aa742a367a4
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

27 lines
975 B
Plaintext

import type { RateLimits, TransportMakeRequestResponse } from '@sentry/core';
import type { SendReplayData } from '../types';
/**
* Send replay attachment using `fetch()`
*/
export declare function sendReplayRequest({ recordingData, replayId, segmentId: segment_id, eventContext, timestamp, session, }: SendReplayData): Promise<TransportMakeRequestResponse>;
/**
* This error indicates that the transport returned an invalid status code.
*/
export declare class TransportStatusCodeError extends Error {
constructor(statusCode: number);
}
/**
* This error indicates that we hit a rate limit API error.
*/
export declare class RateLimitError extends Error {
rateLimits: RateLimits;
constructor(rateLimits: RateLimits);
}
/**
* This error indicates that the replay duration limit was exceeded and the session is too long.
*
*/
export declare class ReplayDurationLimitError extends Error {
constructor();
}
//# sourceMappingURL=sendReplayRequest.d.ts.map