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>
56 lines
No EOL
2.3 KiB
Text
56 lines
No EOL
2.3 KiB
Text
import type { Scope } from '../scope';
|
|
import type { getTraceData } from '../utils/traceData';
|
|
import type { continueTrace, startInactiveSpan, startSpan, startSpanManual, suppressTracing, withActiveSpan } from './../tracing/trace';
|
|
import type { getActiveSpan } from './../utils/spanUtils';
|
|
/**
|
|
* @private Private API with no semver guarantees!
|
|
*
|
|
* Strategy used to track async context.
|
|
*/
|
|
export interface AsyncContextStrategy {
|
|
/**
|
|
* Fork the isolation scope inside of the provided callback.
|
|
*/
|
|
withIsolationScope: <T>(callback: (isolationScope: Scope) => T) => T;
|
|
/**
|
|
* Fork the current scope inside of the provided callback.
|
|
*/
|
|
withScope: <T>(callback: (isolationScope: Scope) => T) => T;
|
|
/**
|
|
* Set the provided scope as the current scope inside of the provided callback.
|
|
*/
|
|
withSetScope: <T>(scope: Scope, callback: (scope: Scope) => T) => T;
|
|
/**
|
|
* Set the provided isolation as the current isolation scope inside of the provided callback.
|
|
*/
|
|
withSetIsolationScope: <T>(isolationScope: Scope, callback: (isolationScope: Scope) => T) => T;
|
|
/**
|
|
* Get the currently active scope.
|
|
*/
|
|
getCurrentScope: () => Scope;
|
|
/**
|
|
* Get the currently active isolation scope.
|
|
*/
|
|
getIsolationScope: () => Scope;
|
|
/** Start an active span. */
|
|
startSpan?: typeof startSpan;
|
|
/** Start an inactive span. */
|
|
startInactiveSpan?: typeof startInactiveSpan;
|
|
/** Start an active manual span. */
|
|
startSpanManual?: typeof startSpanManual;
|
|
/** Get the currently active span. */
|
|
getActiveSpan?: typeof getActiveSpan;
|
|
/** Make a span the active span in the context of the callback. */
|
|
withActiveSpan?: typeof withActiveSpan;
|
|
/** Suppress tracing in the given callback, ensuring no spans are generated inside of it. */
|
|
suppressTracing?: typeof suppressTracing;
|
|
/** Get trace data as serialized string values for propagation via `sentry-trace` and `baggage`. */
|
|
getTraceData?: typeof getTraceData;
|
|
/**
|
|
* Continue a trace from `sentry-trace` and `baggage` values.
|
|
* These values can be obtained from incoming request headers, or in the browser from `<meta name="sentry-trace">`
|
|
* and `<meta name="baggage">` HTML tags.
|
|
*/
|
|
continueTrace?: typeof continueTrace;
|
|
}
|
|
//# sourceMappingURL=types.d.ts.map |