From 4fb7b06308647212f497989fdcaffebd619f7bd1 Mon Sep 17 00:00:00 2001 From: dolbin-prime Date: Wed, 3 Sep 2025 23:11:02 +0900 Subject: [PATCH 1/2] chore(core): export `TracesSamplerSamplingContext` of types-hoist --- packages/core/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index 339dc92454b0..5790d025747d 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -410,7 +410,7 @@ export type { Stacktrace, StackParser, StackLineParser, StackLineParserFn } from export type { PropagationContext, TracePropagationTargets, SerializedTraceData } from './types-hoist/tracing'; export type { StartSpanOptions } from './types-hoist/startSpanOptions'; export type { TraceparentData, TransactionSource } from './types-hoist/transaction'; -export type { CustomSamplingContext, SamplingContext } from './types-hoist/samplingcontext'; +export type { TracesSamplerSamplingContext, CustomSamplingContext, SamplingContext } from './types-hoist/samplingcontext'; export type { DurationUnit, InformationUnit, From 3ee3eb4b3217146edb2dbe1aa7ef62543439f1be Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Mon, 15 Sep 2025 12:25:28 +0200 Subject: [PATCH 2/2] format --- packages/core/src/index.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index 5790d025747d..b971aa8b43a3 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -410,7 +410,11 @@ export type { Stacktrace, StackParser, StackLineParser, StackLineParserFn } from export type { PropagationContext, TracePropagationTargets, SerializedTraceData } from './types-hoist/tracing'; export type { StartSpanOptions } from './types-hoist/startSpanOptions'; export type { TraceparentData, TransactionSource } from './types-hoist/transaction'; -export type { TracesSamplerSamplingContext, CustomSamplingContext, SamplingContext } from './types-hoist/samplingcontext'; +export type { + TracesSamplerSamplingContext, + CustomSamplingContext, + SamplingContext, +} from './types-hoist/samplingcontext'; export type { DurationUnit, InformationUnit,