Files
klz-cables.com/.pnpm-store/v10/files/b6/e5aa96c1604194bbd6913c6590c9efb3448d6e2a4dd56710c3d6d09fb794e69ef12bb711907f4155d5f02a0fb83b5219ff1094042cd4797ea152486987ef4d
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

36 lines
1.0 KiB
Plaintext

/**
* 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