You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -166,6 +167,60 @@ export type RumActionEvent = CommonProperties &
166
167
}
167
168
[k: string]: unknown
168
169
}
170
+
/**
171
+
* Schema of all properties of an Transition event
172
+
*/
173
+
exporttypeRumTransitionEvent=CommonProperties&{
174
+
/**
175
+
* RUM event type
176
+
*/
177
+
readonlytype: 'transition'
178
+
/**
179
+
* Stream properties
180
+
*/
181
+
readonlystream: {
182
+
/**
183
+
* UUID of the stream
184
+
*/
185
+
readonlyid: string
186
+
[k: string]: unknown
187
+
}
188
+
/**
189
+
* Transition properties
190
+
*/
191
+
readonlytransition: {
192
+
/**
193
+
* Type of the transition
194
+
*/
195
+
readonlytype: string
196
+
/**
197
+
* UUID of the transition
198
+
*/
199
+
readonlyid?: string
200
+
/**
201
+
* The player's current timestamp in milliseconds
202
+
*/
203
+
readonlytimestamp?: number
204
+
/**
205
+
* Buffer starvation duration, the amount of time spent rebuffering in milliseconds
206
+
*/
207
+
readonlybuffer_starvation_duration?: number
208
+
/**
209
+
* Media start delay, the amount of time spent loading before playing in milliseconds
210
+
*/
211
+
readonlymedia_start_delay?: number
212
+
/**
213
+
* Error code, as reported by the player
214
+
*/
215
+
readonlyerror_code?: number
216
+
/**
217
+
* Duration of the event in milliseconds
218
+
*/
219
+
readonlyduration?: number
220
+
[k: string]: unknown
221
+
}
222
+
[k: string]: unknown
223
+
}
169
224
/**
170
225
* Schema of all properties of an Error event
171
226
*/
@@ -1233,44 +1288,7 @@ export type RumVitalEvent = CommonProperties &
1233
1288
* RUM event type
1234
1289
*/
1235
1290
readonlytype: 'vital'
1236
-
/**
1237
-
* Vital properties
1238
-
*/
1239
-
readonlyvital: {
1240
-
/**
1241
-
* Type of the vital
1242
-
*/
1243
-
readonlytype: 'duration'|'operation_step'
1244
-
/**
1245
-
* UUID of the vital
1246
-
*/
1247
-
readonlyid: string
1248
-
/**
1249
-
* Optional key to distinguish between multiple operations of the same name running in parallel (e.g., 'photo_upload' with keys 'profile_pic' vs 'cover')
1250
-
*/
1251
-
readonlyoperation_key?: string
1252
-
/**
1253
-
* Name of the vital, as it is also used as facet path for its value, it must contain only letters, digits, or the characters - _ . @ $
1254
-
*/
1255
-
readonlyname?: string
1256
-
/**
1257
-
* Description of the vital. It can be used as a secondary identifier (URL, React component name...)
1258
-
*/
1259
-
readonlydescription?: string
1260
-
/**
1261
-
* Duration of the vital in nanoseconds
1262
-
*/
1263
-
readonlyduration?: number
1264
-
/**
1265
-
* Type of the step that triggered the vital, if applicable
* Optional key to distinguish between multiple operations of the same name running in parallel (e.g., 'photo_upload' with keys 'profile_pic' vs 'cover')
1382
+
*/
1383
+
readonlyoperation_key?: string
1384
+
/**
1385
+
* Type of the step that triggered the vital, if applicable
0 commit comments