Rocky_Mountain_Vending/.pnpm-store/v10/files/b6/e5aa96c1604194bbd6913c6590c9efb3448d6e2a4dd56710c3d6d09fb794e69ef12bb711907f4155d5f02a0fb83b5219ff1094042cd4797ea152486987ef4d
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

35 lines
1 KiB
Text

/**
* Data pulled from a `sentry-trace` header
*/
export interface TraceparentData {
/**
* Trace ID
*/
traceId?: string | undefined;
/**
* Parent Span ID
*/
parentSpanId?: string | undefined;
/**
* If this transaction has a parent, the parent's sampling decision
*/
parentSampled?: boolean | undefined;
}
/**
* Contains information about how the name of the transaction was determined. This will be used by the server to decide
* whether or not to scrub identifiers from the transaction name, or replace the entire name with a placeholder.
*/
export type TransactionSource =
/** User-defined name */
'custom'
/** Raw URL, potentially containing identifiers */
| 'url'
/** Parametrized URL / route */
| 'route'
/** Name of the view handling the request */
| 'view'
/** Named after a software component, such as a function or class name. */
| 'component'
/** Name of a background task (e.g. a Celery task) */
| 'task';
//# sourceMappingURL=transaction.d.ts.map