Rocky_Mountain_Vending/.pnpm-store/v10/files/64/42276a6a8ce07bb72bf6e58aef42aeb88e3e734b75818cb0b49730e0d87c457d5930dec3bfcb090d037929f9aa154a34eb32b6b293811fb1223b8fbdf5ea32
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

87 lines
2.5 KiB
Text

import { CaptureContext, SdkProcessingMetadata } from '../scope';
import { Attachment } from './attachment';
import { Breadcrumb } from './breadcrumb';
import { Contexts } from './context';
import { DebugMeta } from './debugMeta';
import { Exception } from './exception';
import { Extras } from './extra';
import { Measurements } from './measurement';
import { Mechanism } from './mechanism';
import { Primitive } from './misc';
import { RequestEventData } from './request';
import { SdkInfo } from './sdkinfo';
import { SeverityLevel } from './severity';
import { SpanJSON } from './span';
import { Thread } from './thread';
import { TransactionSource } from './transaction';
import { User } from './user';
/** An event to be sent to Sentry. */
export interface Event {
event_id?: string;
message?: string;
logentry?: {
message?: string;
params?: unknown[];
};
timestamp?: number;
start_timestamp?: number;
level?: SeverityLevel;
platform?: string;
logger?: string;
server_name?: string;
release?: string;
dist?: string;
environment?: string;
sdk?: SdkInfo;
request?: RequestEventData;
transaction?: string;
modules?: {
[key: string]: string;
};
fingerprint?: string[];
exception?: {
values?: Exception[];
};
breadcrumbs?: Breadcrumb[];
contexts?: Contexts;
tags?: {
[key: string]: Primitive;
};
extra?: Extras;
user?: User;
type?: EventType;
spans?: SpanJSON[];
measurements?: Measurements;
debug_meta?: DebugMeta;
sdkProcessingMetadata?: SdkProcessingMetadata;
transaction_info?: {
source: TransactionSource;
};
threads?: {
values: Thread[];
};
}
/**
* The type of an `Event`.
* Note that `ErrorEvent`s do not have a type (hence its undefined),
* while all other events are required to have one.
*/
export type EventType = 'transaction' | 'profile' | 'replay_event' | 'feedback' | undefined;
export interface ErrorEvent extends Event {
type: undefined;
}
export interface TransactionEvent extends Event {
type: 'transaction';
}
/** JSDoc */
export interface EventHint {
event_id?: string;
captureContext?: CaptureContext;
mechanism?: Partial<Mechanism>;
syntheticException?: Error | null;
originalException?: unknown;
attachments?: Attachment[];
data?: any;
integrations?: string[];
}
//# sourceMappingURL=event.d.ts.map