@openreplay/tracker 16.3.0-beta.2 → 16.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -26,6 +26,9 @@ export declare const enum Type {
26
26
  Metadata = 30,
27
27
  StringDictGlobal = 34,
28
28
  SetNodeAttributeDictGlobal = 35,
29
+ CSSInsertRule = 37,
30
+ CSSDeleteRule = 38,
31
+ Fetch = 39,
29
32
  Profiler = 40,
30
33
  OTable = 41,
31
34
  StateAction = 42,
@@ -44,10 +47,12 @@ export declare const enum Type {
44
47
  SetPageVisibility = 55,
45
48
  LoadFontFace = 57,
46
49
  SetNodeFocus = 58,
50
+ LongTask = 59,
47
51
  SetNodeAttributeURLBased = 60,
48
52
  SetCSSDataURLBased = 61,
49
53
  TechnicalInfo = 63,
50
54
  CustomIssue = 64,
55
+ CSSInsertRuleURLBased = 67,
51
56
  MouseClick = 68,
52
57
  MouseClickDeprecated = 69,
53
58
  CreateIFrameDocument = 70,
@@ -229,6 +234,27 @@ export type SetNodeAttributeDictGlobal = [
229
234
  number,
230
235
  number
231
236
  ];
237
+ export type CSSInsertRule = [
238
+ Type.CSSInsertRule,
239
+ number,
240
+ string,
241
+ number
242
+ ];
243
+ export type CSSDeleteRule = [
244
+ Type.CSSDeleteRule,
245
+ number,
246
+ number
247
+ ];
248
+ export type Fetch = [
249
+ Type.Fetch,
250
+ string,
251
+ string,
252
+ string,
253
+ string,
254
+ number,
255
+ number,
256
+ number
257
+ ];
232
258
  export type Profiler = [
233
259
  Type.Profiler,
234
260
  string,
@@ -335,6 +361,16 @@ export type SetNodeFocus = [
335
361
  Type.SetNodeFocus,
336
362
  number
337
363
  ];
364
+ export type LongTask = [
365
+ Type.LongTask,
366
+ number,
367
+ number,
368
+ number,
369
+ number,
370
+ string,
371
+ string,
372
+ string
373
+ ];
338
374
  export type SetNodeAttributeURLBased = [
339
375
  Type.SetNodeAttributeURLBased,
340
376
  number,
@@ -358,6 +394,13 @@ export type CustomIssue = [
358
394
  string,
359
395
  string
360
396
  ];
397
+ export type CSSInsertRuleURLBased = [
398
+ Type.CSSInsertRuleURLBased,
399
+ number,
400
+ string,
401
+ number,
402
+ string
403
+ ];
361
404
  export type MouseClick = [
362
405
  Type.MouseClick,
363
406
  number,
@@ -533,5 +576,5 @@ export type WebVitals = [
533
576
  string,
534
577
  string
535
578
  ];
536
- type Message = Timestamp | SetPageLocationDeprecated | SetViewportSize | SetViewportScroll | CreateDocument | CreateElementNode | CreateTextNode | MoveNode | RemoveNode | SetNodeAttribute | RemoveNodeAttribute | SetNodeData | SetNodeScroll | SetInputTarget | SetInputValue | SetInputChecked | MouseMove | NetworkRequestDeprecated | ConsoleLog | PageLoadTiming | PageRenderTiming | CustomEvent | UserID | UserAnonymousID | Metadata | StringDictGlobal | SetNodeAttributeDictGlobal | Profiler | OTable | StateAction | ReduxDeprecated | Vuex | MobX | NgRx | GraphQLDeprecated | PerformanceTrack | StringDictDeprecated | SetNodeAttributeDictDeprecated | StringDict | SetNodeAttributeDict | ResourceTimingDeprecated | ConnectionInformation | SetPageVisibility | LoadFontFace | SetNodeFocus | SetNodeAttributeURLBased | SetCSSDataURLBased | TechnicalInfo | CustomIssue | MouseClick | MouseClickDeprecated | CreateIFrameDocument | AdoptedSSReplaceURLBased | AdoptedSSInsertRuleURLBased | AdoptedSSDeleteRule | AdoptedSSAddOwner | AdoptedSSRemoveOwner | JSException | Zustand | BatchMetadata | PartitionedMessage | NetworkRequest | WSChannel | InputChange | SelectionChange | MouseThrashing | UnbindNodes | ResourceTiming | TabChange | TabData | CanvasNode | TagTrigger | Redux | SetPageLocation | GraphQL | WebVitals;
579
+ type Message = Timestamp | SetPageLocationDeprecated | SetViewportSize | SetViewportScroll | CreateDocument | CreateElementNode | CreateTextNode | MoveNode | RemoveNode | SetNodeAttribute | RemoveNodeAttribute | SetNodeData | SetNodeScroll | SetInputTarget | SetInputValue | SetInputChecked | MouseMove | NetworkRequestDeprecated | ConsoleLog | PageLoadTiming | PageRenderTiming | CustomEvent | UserID | UserAnonymousID | Metadata | StringDictGlobal | SetNodeAttributeDictGlobal | CSSInsertRule | CSSDeleteRule | Fetch | Profiler | OTable | StateAction | ReduxDeprecated | Vuex | MobX | NgRx | GraphQLDeprecated | PerformanceTrack | StringDictDeprecated | SetNodeAttributeDictDeprecated | StringDict | SetNodeAttributeDict | ResourceTimingDeprecated | ConnectionInformation | SetPageVisibility | LoadFontFace | SetNodeFocus | LongTask | SetNodeAttributeURLBased | SetCSSDataURLBased | TechnicalInfo | CustomIssue | CSSInsertRuleURLBased | MouseClick | MouseClickDeprecated | CreateIFrameDocument | AdoptedSSReplaceURLBased | AdoptedSSInsertRuleURLBased | AdoptedSSDeleteRule | AdoptedSSAddOwner | AdoptedSSRemoveOwner | JSException | Zustand | BatchMetadata | PartitionedMessage | NetworkRequest | WSChannel | InputChange | SelectionChange | MouseThrashing | UnbindNodes | ResourceTiming | TabChange | TabData | CanvasNode | TagTrigger | Redux | SetPageLocation | GraphQL | WebVitals;
537
580
  export default Message;