Rocky_Mountain_Vending/.pnpm-store/v10/files/a8/5729697b7d9f11d2367d412b998babed8147427e9d85061cd8052b6d553e3407e76aac70ceccb98b2dc7de5cfd5cd85161f4c7af8aa2dde474db6bcd7b3328
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

76 lines
No EOL
2 KiB
Text

import type { WebFetchHeaders } from './webfetchapi';
type XHRSendInput = unknown;
export type ConsoleLevel = 'debug' | 'info' | 'warn' | 'error' | 'log' | 'assert' | 'trace';
export interface SentryWrappedXMLHttpRequest {
__sentry_xhr_v3__?: SentryXhrData;
__sentry_own_request__?: boolean;
__sentry_xhr_span_id__?: string;
setRequestHeader?: (key: string, val: string) => void;
getResponseHeader?: (key: string) => string | null;
}
export interface SentryXhrData {
method: string;
url: string;
status_code?: number;
body?: XHRSendInput;
request_body_size?: number;
response_body_size?: number;
request_headers: Record<string, string>;
}
export interface HandlerDataXhr {
xhr: SentryWrappedXMLHttpRequest;
startTimestamp?: number;
endTimestamp?: number;
error?: unknown;
virtualError?: unknown;
}
interface SentryFetchData {
method: string;
url: string;
request_body_size?: number;
response_body_size?: number;
__span?: string;
}
export interface HandlerDataFetch {
args: any[];
fetchData: SentryFetchData;
startTimestamp: number;
endTimestamp?: number;
response?: {
readonly ok: boolean;
readonly status: number;
readonly url: string;
headers: WebFetchHeaders;
};
error?: unknown;
virtualError?: unknown;
/** Headers that the user passed to the fetch request. */
headers?: WebFetchHeaders;
}
export interface HandlerDataDom {
event: object | {
target: object;
};
name: string;
global?: boolean;
}
export interface HandlerDataConsole {
level: ConsoleLevel;
args: any[];
}
export interface HandlerDataHistory {
/** The full URL of the previous page */
from: string | undefined;
/** The full URL of the new page */
to: string;
}
export interface HandlerDataError {
column?: number;
error?: Error;
line?: number;
msg: string | object;
url?: string;
}
export type HandlerDataUnhandledRejection = unknown;
export {};
//# sourceMappingURL=instrument.d.ts.map