File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
packages/rum-core/src/domain/event Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import type {
1111 RawRumResourceEvent ,
1212 RawRumVitalEvent ,
1313 RawRumStreamEvent ,
14+ RawRumTransitionEvent ,
1415} from '../../rawRumEvent.types'
1516import { RumEventType } from '../../rawRumEvent.types'
1617
@@ -21,6 +22,7 @@ const allowedEventTypes = [
2122 RumEventType . RESOURCE ,
2223 RumEventType . STREAM ,
2324 RumEventType . VITAL ,
25+ RumEventType . TRANSITION ,
2426] as const
2527
2628export type AllowedRawRumEvent = (
@@ -31,6 +33,7 @@ export type AllowedRawRumEvent = (
3133 | RawRumActionEvent
3234 | RawRumVitalEvent
3335 | RawRumStreamEvent
36+ | RawRumTransitionEvent
3437) & { context ?: Context }
3538
3639export function startEventCollection ( lifeCycle : LifeCycle ) {
You can’t perform that action at this time.
0 commit comments