@openreplay/tracker 3.6.2 → 4.0.1
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.
- package/.eslintignore +8 -0
- package/.prettierignore +1 -0
- package/LICENSE +1 -1
- package/cjs/app/guards.d.ts +2 -1
- package/cjs/app/guards.js +6 -3
- package/cjs/app/index.d.ts +28 -23
- package/cjs/app/index.js +107 -86
- package/cjs/app/logger.js +6 -3
- package/cjs/app/messages.d.ts +52 -0
- package/cjs/app/messages.gen.d.ts +58 -0
- package/cjs/app/messages.gen.js +501 -0
- package/cjs/app/messages.js +234 -0
- package/cjs/app/nodes.d.ts +1 -1
- package/cjs/app/nodes.js +2 -0
- package/cjs/app/observer/iframe_observer.d.ts +1 -1
- package/cjs/app/observer/iframe_observer.js +3 -3
- package/cjs/app/observer/observer.d.ts +2 -3
- package/cjs/app/observer/observer.js +50 -52
- package/cjs/app/observer/shadow_root_observer.d.ts +1 -1
- package/cjs/app/observer/shadow_root_observer.js +3 -3
- package/cjs/app/observer/top_observer.d.ts +13 -2
- package/cjs/app/observer/top_observer.js +58 -23
- package/cjs/app/sanitizer.d.ts +1 -1
- package/cjs/app/sanitizer.js +5 -5
- package/cjs/app/session.d.ts +20 -2
- package/cjs/app/session.js +65 -6
- package/cjs/app/ticker.d.ts +1 -1
- package/cjs/common/{webworker.d.ts → interaction.d.ts} +5 -5
- package/cjs/common/{types.js → interaction.js} +0 -0
- package/cjs/common/messages.gen.d.ts +388 -0
- package/cjs/common/{webworker.js → messages.gen.js} +1 -0
- package/cjs/index.d.ts +10 -9
- package/cjs/index.js +47 -36
- package/cjs/modules/adoptedStyleSheets.d.ts +2 -0
- package/cjs/modules/adoptedStyleSheets.js +127 -0
- package/cjs/modules/connection.d.ts +1 -1
- package/cjs/modules/connection.js +2 -2
- package/cjs/modules/console.d.ts +1 -1
- package/cjs/modules/console.js +7 -21
- package/cjs/modules/cssrules.d.ts +1 -1
- package/cjs/modules/cssrules.js +18 -14
- package/cjs/modules/exception.d.ts +3 -3
- package/cjs/modules/exception.js +23 -18
- package/cjs/modules/img.d.ts +1 -1
- package/cjs/modules/img.js +39 -26
- package/cjs/modules/input.d.ts +1 -1
- package/cjs/modules/input.js +21 -21
- package/cjs/modules/mouse.d.ts +1 -1
- package/cjs/modules/mouse.js +50 -43
- package/cjs/modules/performance.d.ts +1 -1
- package/cjs/modules/performance.js +2 -2
- package/cjs/modules/scroll.d.ts +1 -1
- package/cjs/modules/scroll.js +16 -7
- package/cjs/modules/timing.d.ts +1 -1
- package/cjs/modules/timing.js +14 -26
- package/cjs/modules/viewport.d.ts +1 -1
- package/cjs/modules/viewport.js +4 -4
- package/cjs/utils.js +7 -7
- package/cjs/vendors/finder/finder.js +53 -48
- package/lib/app/guards.d.ts +2 -1
- package/lib/app/guards.js +4 -2
- package/lib/app/index.d.ts +28 -23
- package/lib/app/index.js +115 -94
- package/lib/app/logger.js +6 -3
- package/lib/app/messages.d.ts +52 -0
- package/lib/app/messages.gen.d.ts +58 -0
- package/lib/app/messages.gen.js +441 -0
- package/lib/app/messages.js +181 -0
- package/lib/app/nodes.d.ts +1 -1
- package/lib/app/nodes.js +2 -0
- package/lib/app/observer/iframe_observer.d.ts +1 -1
- package/lib/app/observer/iframe_observer.js +3 -3
- package/lib/app/observer/observer.d.ts +2 -3
- package/lib/app/observer/observer.js +51 -53
- package/lib/app/observer/shadow_root_observer.d.ts +1 -1
- package/lib/app/observer/shadow_root_observer.js +3 -3
- package/lib/app/observer/top_observer.d.ts +13 -2
- package/lib/app/observer/top_observer.js +62 -27
- package/lib/app/sanitizer.d.ts +1 -1
- package/lib/app/sanitizer.js +7 -7
- package/lib/app/session.d.ts +20 -2
- package/lib/app/session.js +65 -6
- package/lib/app/ticker.d.ts +1 -1
- package/lib/common/{webworker.d.ts → interaction.d.ts} +5 -5
- package/lib/common/{types.js → interaction.js} +0 -0
- package/lib/common/messages.gen.d.ts +388 -0
- package/lib/common/messages.gen.js +2 -0
- package/lib/common/tsconfig.tsbuildinfo +1 -1
- package/lib/index.d.ts +10 -9
- package/lib/index.js +60 -49
- package/lib/modules/adoptedStyleSheets.d.ts +2 -0
- package/lib/modules/adoptedStyleSheets.js +124 -0
- package/lib/modules/connection.d.ts +1 -1
- package/lib/modules/connection.js +2 -2
- package/lib/modules/console.d.ts +1 -1
- package/lib/modules/console.js +8 -22
- package/lib/modules/cssrules.d.ts +1 -1
- package/lib/modules/cssrules.js +19 -15
- package/lib/modules/exception.d.ts +3 -3
- package/lib/modules/exception.js +23 -18
- package/lib/modules/img.d.ts +1 -1
- package/lib/modules/img.js +41 -28
- package/lib/modules/input.d.ts +1 -1
- package/lib/modules/input.js +23 -23
- package/lib/modules/mouse.d.ts +1 -1
- package/lib/modules/mouse.js +53 -46
- package/lib/modules/performance.d.ts +1 -1
- package/lib/modules/performance.js +3 -3
- package/lib/modules/scroll.d.ts +1 -1
- package/lib/modules/scroll.js +17 -8
- package/lib/modules/timing.d.ts +1 -1
- package/lib/modules/timing.js +16 -28
- package/lib/modules/viewport.d.ts +1 -1
- package/lib/modules/viewport.js +4 -4
- package/lib/utils.js +7 -7
- package/lib/vendors/finder/finder.js +53 -48
- package/package.json +27 -10
- package/cjs/common/messages.d.ts +0 -444
- package/cjs/common/messages.js +0 -794
- package/cjs/common/types.d.ts +0 -9
- package/cjs/modules/longtasks.d.ts +0 -2
- package/cjs/modules/longtasks.js +0 -26
- package/lib/common/messages.d.ts +0 -444
- package/lib/common/messages.js +0 -790
- package/lib/common/types.d.ts +0 -9
- package/lib/common/webworker.js +0 -1
- package/lib/modules/longtasks.d.ts +0 -2
- package/lib/modules/longtasks.js +0 -23
package/lib/common/messages.js
DELETED
|
@@ -1,790 +0,0 @@
|
|
|
1
|
-
function bindNew(Class) {
|
|
2
|
-
function _Class(...args) {
|
|
3
|
-
return new Class(...args);
|
|
4
|
-
}
|
|
5
|
-
_Class.prototype = Class.prototype;
|
|
6
|
-
return _Class;
|
|
7
|
-
}
|
|
8
|
-
export const classes = new Map();
|
|
9
|
-
class _BatchMeta {
|
|
10
|
-
constructor(pageNo, firstIndex, timestamp) {
|
|
11
|
-
this.pageNo = pageNo;
|
|
12
|
-
this.firstIndex = firstIndex;
|
|
13
|
-
this.timestamp = timestamp;
|
|
14
|
-
this._id = 80;
|
|
15
|
-
}
|
|
16
|
-
encode(writer) {
|
|
17
|
-
return writer.uint(80) &&
|
|
18
|
-
writer.uint(this.pageNo) &&
|
|
19
|
-
writer.uint(this.firstIndex) &&
|
|
20
|
-
writer.int(this.timestamp);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
export const BatchMeta = bindNew(_BatchMeta);
|
|
24
|
-
classes.set(80, BatchMeta);
|
|
25
|
-
class _Timestamp {
|
|
26
|
-
constructor(timestamp) {
|
|
27
|
-
this.timestamp = timestamp;
|
|
28
|
-
this._id = 0;
|
|
29
|
-
}
|
|
30
|
-
encode(writer) {
|
|
31
|
-
return writer.uint(0) &&
|
|
32
|
-
writer.uint(this.timestamp);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
export const Timestamp = bindNew(_Timestamp);
|
|
36
|
-
classes.set(0, Timestamp);
|
|
37
|
-
class _SetPageLocation {
|
|
38
|
-
constructor(url, referrer, navigationStart) {
|
|
39
|
-
this.url = url;
|
|
40
|
-
this.referrer = referrer;
|
|
41
|
-
this.navigationStart = navigationStart;
|
|
42
|
-
this._id = 4;
|
|
43
|
-
}
|
|
44
|
-
encode(writer) {
|
|
45
|
-
return writer.uint(4) &&
|
|
46
|
-
writer.string(this.url) &&
|
|
47
|
-
writer.string(this.referrer) &&
|
|
48
|
-
writer.uint(this.navigationStart);
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
export const SetPageLocation = bindNew(_SetPageLocation);
|
|
52
|
-
classes.set(4, SetPageLocation);
|
|
53
|
-
class _SetViewportSize {
|
|
54
|
-
constructor(width, height) {
|
|
55
|
-
this.width = width;
|
|
56
|
-
this.height = height;
|
|
57
|
-
this._id = 5;
|
|
58
|
-
}
|
|
59
|
-
encode(writer) {
|
|
60
|
-
return writer.uint(5) &&
|
|
61
|
-
writer.uint(this.width) &&
|
|
62
|
-
writer.uint(this.height);
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
export const SetViewportSize = bindNew(_SetViewportSize);
|
|
66
|
-
classes.set(5, SetViewportSize);
|
|
67
|
-
class _SetViewportScroll {
|
|
68
|
-
constructor(x, y) {
|
|
69
|
-
this.x = x;
|
|
70
|
-
this.y = y;
|
|
71
|
-
this._id = 6;
|
|
72
|
-
}
|
|
73
|
-
encode(writer) {
|
|
74
|
-
return writer.uint(6) &&
|
|
75
|
-
writer.int(this.x) &&
|
|
76
|
-
writer.int(this.y);
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
export const SetViewportScroll = bindNew(_SetViewportScroll);
|
|
80
|
-
classes.set(6, SetViewportScroll);
|
|
81
|
-
class _CreateDocument {
|
|
82
|
-
constructor() {
|
|
83
|
-
this._id = 7;
|
|
84
|
-
}
|
|
85
|
-
encode(writer) {
|
|
86
|
-
return writer.uint(7);
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
export const CreateDocument = bindNew(_CreateDocument);
|
|
90
|
-
classes.set(7, CreateDocument);
|
|
91
|
-
class _CreateElementNode {
|
|
92
|
-
constructor(id, parentID, index, tag, svg) {
|
|
93
|
-
this.id = id;
|
|
94
|
-
this.parentID = parentID;
|
|
95
|
-
this.index = index;
|
|
96
|
-
this.tag = tag;
|
|
97
|
-
this.svg = svg;
|
|
98
|
-
this._id = 8;
|
|
99
|
-
}
|
|
100
|
-
encode(writer) {
|
|
101
|
-
return writer.uint(8) &&
|
|
102
|
-
writer.uint(this.id) &&
|
|
103
|
-
writer.uint(this.parentID) &&
|
|
104
|
-
writer.uint(this.index) &&
|
|
105
|
-
writer.string(this.tag) &&
|
|
106
|
-
writer.boolean(this.svg);
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
export const CreateElementNode = bindNew(_CreateElementNode);
|
|
110
|
-
classes.set(8, CreateElementNode);
|
|
111
|
-
class _CreateTextNode {
|
|
112
|
-
constructor(id, parentID, index) {
|
|
113
|
-
this.id = id;
|
|
114
|
-
this.parentID = parentID;
|
|
115
|
-
this.index = index;
|
|
116
|
-
this._id = 9;
|
|
117
|
-
}
|
|
118
|
-
encode(writer) {
|
|
119
|
-
return writer.uint(9) &&
|
|
120
|
-
writer.uint(this.id) &&
|
|
121
|
-
writer.uint(this.parentID) &&
|
|
122
|
-
writer.uint(this.index);
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
export const CreateTextNode = bindNew(_CreateTextNode);
|
|
126
|
-
classes.set(9, CreateTextNode);
|
|
127
|
-
class _MoveNode {
|
|
128
|
-
constructor(id, parentID, index) {
|
|
129
|
-
this.id = id;
|
|
130
|
-
this.parentID = parentID;
|
|
131
|
-
this.index = index;
|
|
132
|
-
this._id = 10;
|
|
133
|
-
}
|
|
134
|
-
encode(writer) {
|
|
135
|
-
return writer.uint(10) &&
|
|
136
|
-
writer.uint(this.id) &&
|
|
137
|
-
writer.uint(this.parentID) &&
|
|
138
|
-
writer.uint(this.index);
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
export const MoveNode = bindNew(_MoveNode);
|
|
142
|
-
classes.set(10, MoveNode);
|
|
143
|
-
class _RemoveNode {
|
|
144
|
-
constructor(id) {
|
|
145
|
-
this.id = id;
|
|
146
|
-
this._id = 11;
|
|
147
|
-
}
|
|
148
|
-
encode(writer) {
|
|
149
|
-
return writer.uint(11) &&
|
|
150
|
-
writer.uint(this.id);
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
export const RemoveNode = bindNew(_RemoveNode);
|
|
154
|
-
classes.set(11, RemoveNode);
|
|
155
|
-
class _SetNodeAttribute {
|
|
156
|
-
constructor(id, name, value) {
|
|
157
|
-
this.id = id;
|
|
158
|
-
this.name = name;
|
|
159
|
-
this.value = value;
|
|
160
|
-
this._id = 12;
|
|
161
|
-
}
|
|
162
|
-
encode(writer) {
|
|
163
|
-
return writer.uint(12) &&
|
|
164
|
-
writer.uint(this.id) &&
|
|
165
|
-
writer.string(this.name) &&
|
|
166
|
-
writer.string(this.value);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
export const SetNodeAttribute = bindNew(_SetNodeAttribute);
|
|
170
|
-
classes.set(12, SetNodeAttribute);
|
|
171
|
-
class _RemoveNodeAttribute {
|
|
172
|
-
constructor(id, name) {
|
|
173
|
-
this.id = id;
|
|
174
|
-
this.name = name;
|
|
175
|
-
this._id = 13;
|
|
176
|
-
}
|
|
177
|
-
encode(writer) {
|
|
178
|
-
return writer.uint(13) &&
|
|
179
|
-
writer.uint(this.id) &&
|
|
180
|
-
writer.string(this.name);
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
export const RemoveNodeAttribute = bindNew(_RemoveNodeAttribute);
|
|
184
|
-
classes.set(13, RemoveNodeAttribute);
|
|
185
|
-
class _SetNodeData {
|
|
186
|
-
constructor(id, data) {
|
|
187
|
-
this.id = id;
|
|
188
|
-
this.data = data;
|
|
189
|
-
this._id = 14;
|
|
190
|
-
}
|
|
191
|
-
encode(writer) {
|
|
192
|
-
return writer.uint(14) &&
|
|
193
|
-
writer.uint(this.id) &&
|
|
194
|
-
writer.string(this.data);
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
export const SetNodeData = bindNew(_SetNodeData);
|
|
198
|
-
classes.set(14, SetNodeData);
|
|
199
|
-
class _SetNodeScroll {
|
|
200
|
-
constructor(id, x, y) {
|
|
201
|
-
this.id = id;
|
|
202
|
-
this.x = x;
|
|
203
|
-
this.y = y;
|
|
204
|
-
this._id = 16;
|
|
205
|
-
}
|
|
206
|
-
encode(writer) {
|
|
207
|
-
return writer.uint(16) &&
|
|
208
|
-
writer.uint(this.id) &&
|
|
209
|
-
writer.int(this.x) &&
|
|
210
|
-
writer.int(this.y);
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
export const SetNodeScroll = bindNew(_SetNodeScroll);
|
|
214
|
-
classes.set(16, SetNodeScroll);
|
|
215
|
-
class _SetInputTarget {
|
|
216
|
-
constructor(id, label) {
|
|
217
|
-
this.id = id;
|
|
218
|
-
this.label = label;
|
|
219
|
-
this._id = 17;
|
|
220
|
-
}
|
|
221
|
-
encode(writer) {
|
|
222
|
-
return writer.uint(17) &&
|
|
223
|
-
writer.uint(this.id) &&
|
|
224
|
-
writer.string(this.label);
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
export const SetInputTarget = bindNew(_SetInputTarget);
|
|
228
|
-
classes.set(17, SetInputTarget);
|
|
229
|
-
class _SetInputValue {
|
|
230
|
-
constructor(id, value, mask) {
|
|
231
|
-
this.id = id;
|
|
232
|
-
this.value = value;
|
|
233
|
-
this.mask = mask;
|
|
234
|
-
this._id = 18;
|
|
235
|
-
}
|
|
236
|
-
encode(writer) {
|
|
237
|
-
return writer.uint(18) &&
|
|
238
|
-
writer.uint(this.id) &&
|
|
239
|
-
writer.string(this.value) &&
|
|
240
|
-
writer.int(this.mask);
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
|
-
export const SetInputValue = bindNew(_SetInputValue);
|
|
244
|
-
classes.set(18, SetInputValue);
|
|
245
|
-
class _SetInputChecked {
|
|
246
|
-
constructor(id, checked) {
|
|
247
|
-
this.id = id;
|
|
248
|
-
this.checked = checked;
|
|
249
|
-
this._id = 19;
|
|
250
|
-
}
|
|
251
|
-
encode(writer) {
|
|
252
|
-
return writer.uint(19) &&
|
|
253
|
-
writer.uint(this.id) &&
|
|
254
|
-
writer.boolean(this.checked);
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
export const SetInputChecked = bindNew(_SetInputChecked);
|
|
258
|
-
classes.set(19, SetInputChecked);
|
|
259
|
-
class _MouseMove {
|
|
260
|
-
constructor(x, y) {
|
|
261
|
-
this.x = x;
|
|
262
|
-
this.y = y;
|
|
263
|
-
this._id = 20;
|
|
264
|
-
}
|
|
265
|
-
encode(writer) {
|
|
266
|
-
return writer.uint(20) &&
|
|
267
|
-
writer.uint(this.x) &&
|
|
268
|
-
writer.uint(this.y);
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
export const MouseMove = bindNew(_MouseMove);
|
|
272
|
-
classes.set(20, MouseMove);
|
|
273
|
-
class _ConsoleLog {
|
|
274
|
-
constructor(level, value) {
|
|
275
|
-
this.level = level;
|
|
276
|
-
this.value = value;
|
|
277
|
-
this._id = 22;
|
|
278
|
-
}
|
|
279
|
-
encode(writer) {
|
|
280
|
-
return writer.uint(22) &&
|
|
281
|
-
writer.string(this.level) &&
|
|
282
|
-
writer.string(this.value);
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
export const ConsoleLog = bindNew(_ConsoleLog);
|
|
286
|
-
classes.set(22, ConsoleLog);
|
|
287
|
-
class _PageLoadTiming {
|
|
288
|
-
constructor(requestStart, responseStart, responseEnd, domContentLoadedEventStart, domContentLoadedEventEnd, loadEventStart, loadEventEnd, firstPaint, firstContentfulPaint) {
|
|
289
|
-
this.requestStart = requestStart;
|
|
290
|
-
this.responseStart = responseStart;
|
|
291
|
-
this.responseEnd = responseEnd;
|
|
292
|
-
this.domContentLoadedEventStart = domContentLoadedEventStart;
|
|
293
|
-
this.domContentLoadedEventEnd = domContentLoadedEventEnd;
|
|
294
|
-
this.loadEventStart = loadEventStart;
|
|
295
|
-
this.loadEventEnd = loadEventEnd;
|
|
296
|
-
this.firstPaint = firstPaint;
|
|
297
|
-
this.firstContentfulPaint = firstContentfulPaint;
|
|
298
|
-
this._id = 23;
|
|
299
|
-
}
|
|
300
|
-
encode(writer) {
|
|
301
|
-
return writer.uint(23) &&
|
|
302
|
-
writer.uint(this.requestStart) &&
|
|
303
|
-
writer.uint(this.responseStart) &&
|
|
304
|
-
writer.uint(this.responseEnd) &&
|
|
305
|
-
writer.uint(this.domContentLoadedEventStart) &&
|
|
306
|
-
writer.uint(this.domContentLoadedEventEnd) &&
|
|
307
|
-
writer.uint(this.loadEventStart) &&
|
|
308
|
-
writer.uint(this.loadEventEnd) &&
|
|
309
|
-
writer.uint(this.firstPaint) &&
|
|
310
|
-
writer.uint(this.firstContentfulPaint);
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
export const PageLoadTiming = bindNew(_PageLoadTiming);
|
|
314
|
-
classes.set(23, PageLoadTiming);
|
|
315
|
-
class _PageRenderTiming {
|
|
316
|
-
constructor(speedIndex, visuallyComplete, timeToInteractive) {
|
|
317
|
-
this.speedIndex = speedIndex;
|
|
318
|
-
this.visuallyComplete = visuallyComplete;
|
|
319
|
-
this.timeToInteractive = timeToInteractive;
|
|
320
|
-
this._id = 24;
|
|
321
|
-
}
|
|
322
|
-
encode(writer) {
|
|
323
|
-
return writer.uint(24) &&
|
|
324
|
-
writer.uint(this.speedIndex) &&
|
|
325
|
-
writer.uint(this.visuallyComplete) &&
|
|
326
|
-
writer.uint(this.timeToInteractive);
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
export const PageRenderTiming = bindNew(_PageRenderTiming);
|
|
330
|
-
classes.set(24, PageRenderTiming);
|
|
331
|
-
class _JSException {
|
|
332
|
-
constructor(name, message, payload) {
|
|
333
|
-
this.name = name;
|
|
334
|
-
this.message = message;
|
|
335
|
-
this.payload = payload;
|
|
336
|
-
this._id = 25;
|
|
337
|
-
}
|
|
338
|
-
encode(writer) {
|
|
339
|
-
return writer.uint(25) &&
|
|
340
|
-
writer.string(this.name) &&
|
|
341
|
-
writer.string(this.message) &&
|
|
342
|
-
writer.string(this.payload);
|
|
343
|
-
}
|
|
344
|
-
}
|
|
345
|
-
export const JSException = bindNew(_JSException);
|
|
346
|
-
classes.set(25, JSException);
|
|
347
|
-
class _RawCustomEvent {
|
|
348
|
-
constructor(name, payload) {
|
|
349
|
-
this.name = name;
|
|
350
|
-
this.payload = payload;
|
|
351
|
-
this._id = 27;
|
|
352
|
-
}
|
|
353
|
-
encode(writer) {
|
|
354
|
-
return writer.uint(27) &&
|
|
355
|
-
writer.string(this.name) &&
|
|
356
|
-
writer.string(this.payload);
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
export const RawCustomEvent = bindNew(_RawCustomEvent);
|
|
360
|
-
classes.set(27, RawCustomEvent);
|
|
361
|
-
class _UserID {
|
|
362
|
-
constructor(id) {
|
|
363
|
-
this.id = id;
|
|
364
|
-
this._id = 28;
|
|
365
|
-
}
|
|
366
|
-
encode(writer) {
|
|
367
|
-
return writer.uint(28) &&
|
|
368
|
-
writer.string(this.id);
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
export const UserID = bindNew(_UserID);
|
|
372
|
-
classes.set(28, UserID);
|
|
373
|
-
class _UserAnonymousID {
|
|
374
|
-
constructor(id) {
|
|
375
|
-
this.id = id;
|
|
376
|
-
this._id = 29;
|
|
377
|
-
}
|
|
378
|
-
encode(writer) {
|
|
379
|
-
return writer.uint(29) &&
|
|
380
|
-
writer.string(this.id);
|
|
381
|
-
}
|
|
382
|
-
}
|
|
383
|
-
export const UserAnonymousID = bindNew(_UserAnonymousID);
|
|
384
|
-
classes.set(29, UserAnonymousID);
|
|
385
|
-
class _Metadata {
|
|
386
|
-
constructor(key, value) {
|
|
387
|
-
this.key = key;
|
|
388
|
-
this.value = value;
|
|
389
|
-
this._id = 30;
|
|
390
|
-
}
|
|
391
|
-
encode(writer) {
|
|
392
|
-
return writer.uint(30) &&
|
|
393
|
-
writer.string(this.key) &&
|
|
394
|
-
writer.string(this.value);
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
export const Metadata = bindNew(_Metadata);
|
|
398
|
-
classes.set(30, Metadata);
|
|
399
|
-
class _CSSInsertRule {
|
|
400
|
-
constructor(id, rule, index) {
|
|
401
|
-
this.id = id;
|
|
402
|
-
this.rule = rule;
|
|
403
|
-
this.index = index;
|
|
404
|
-
this._id = 37;
|
|
405
|
-
}
|
|
406
|
-
encode(writer) {
|
|
407
|
-
return writer.uint(37) &&
|
|
408
|
-
writer.uint(this.id) &&
|
|
409
|
-
writer.string(this.rule) &&
|
|
410
|
-
writer.uint(this.index);
|
|
411
|
-
}
|
|
412
|
-
}
|
|
413
|
-
export const CSSInsertRule = bindNew(_CSSInsertRule);
|
|
414
|
-
classes.set(37, CSSInsertRule);
|
|
415
|
-
class _CSSDeleteRule {
|
|
416
|
-
constructor(id, index) {
|
|
417
|
-
this.id = id;
|
|
418
|
-
this.index = index;
|
|
419
|
-
this._id = 38;
|
|
420
|
-
}
|
|
421
|
-
encode(writer) {
|
|
422
|
-
return writer.uint(38) &&
|
|
423
|
-
writer.uint(this.id) &&
|
|
424
|
-
writer.uint(this.index);
|
|
425
|
-
}
|
|
426
|
-
}
|
|
427
|
-
export const CSSDeleteRule = bindNew(_CSSDeleteRule);
|
|
428
|
-
classes.set(38, CSSDeleteRule);
|
|
429
|
-
class _Fetch {
|
|
430
|
-
constructor(method, url, request, response, status, timestamp, duration) {
|
|
431
|
-
this.method = method;
|
|
432
|
-
this.url = url;
|
|
433
|
-
this.request = request;
|
|
434
|
-
this.response = response;
|
|
435
|
-
this.status = status;
|
|
436
|
-
this.timestamp = timestamp;
|
|
437
|
-
this.duration = duration;
|
|
438
|
-
this._id = 39;
|
|
439
|
-
}
|
|
440
|
-
encode(writer) {
|
|
441
|
-
return writer.uint(39) &&
|
|
442
|
-
writer.string(this.method) &&
|
|
443
|
-
writer.string(this.url) &&
|
|
444
|
-
writer.string(this.request) &&
|
|
445
|
-
writer.string(this.response) &&
|
|
446
|
-
writer.uint(this.status) &&
|
|
447
|
-
writer.uint(this.timestamp) &&
|
|
448
|
-
writer.uint(this.duration);
|
|
449
|
-
}
|
|
450
|
-
}
|
|
451
|
-
export const Fetch = bindNew(_Fetch);
|
|
452
|
-
classes.set(39, Fetch);
|
|
453
|
-
class _Profiler {
|
|
454
|
-
constructor(name, duration, args, result) {
|
|
455
|
-
this.name = name;
|
|
456
|
-
this.duration = duration;
|
|
457
|
-
this.args = args;
|
|
458
|
-
this.result = result;
|
|
459
|
-
this._id = 40;
|
|
460
|
-
}
|
|
461
|
-
encode(writer) {
|
|
462
|
-
return writer.uint(40) &&
|
|
463
|
-
writer.string(this.name) &&
|
|
464
|
-
writer.uint(this.duration) &&
|
|
465
|
-
writer.string(this.args) &&
|
|
466
|
-
writer.string(this.result);
|
|
467
|
-
}
|
|
468
|
-
}
|
|
469
|
-
export const Profiler = bindNew(_Profiler);
|
|
470
|
-
classes.set(40, Profiler);
|
|
471
|
-
class _OTable {
|
|
472
|
-
constructor(key, value) {
|
|
473
|
-
this.key = key;
|
|
474
|
-
this.value = value;
|
|
475
|
-
this._id = 41;
|
|
476
|
-
}
|
|
477
|
-
encode(writer) {
|
|
478
|
-
return writer.uint(41) &&
|
|
479
|
-
writer.string(this.key) &&
|
|
480
|
-
writer.string(this.value);
|
|
481
|
-
}
|
|
482
|
-
}
|
|
483
|
-
export const OTable = bindNew(_OTable);
|
|
484
|
-
classes.set(41, OTable);
|
|
485
|
-
class _StateAction {
|
|
486
|
-
constructor(type) {
|
|
487
|
-
this.type = type;
|
|
488
|
-
this._id = 42;
|
|
489
|
-
}
|
|
490
|
-
encode(writer) {
|
|
491
|
-
return writer.uint(42) &&
|
|
492
|
-
writer.string(this.type);
|
|
493
|
-
}
|
|
494
|
-
}
|
|
495
|
-
export const StateAction = bindNew(_StateAction);
|
|
496
|
-
classes.set(42, StateAction);
|
|
497
|
-
class _Redux {
|
|
498
|
-
constructor(action, state, duration) {
|
|
499
|
-
this.action = action;
|
|
500
|
-
this.state = state;
|
|
501
|
-
this.duration = duration;
|
|
502
|
-
this._id = 44;
|
|
503
|
-
}
|
|
504
|
-
encode(writer) {
|
|
505
|
-
return writer.uint(44) &&
|
|
506
|
-
writer.string(this.action) &&
|
|
507
|
-
writer.string(this.state) &&
|
|
508
|
-
writer.uint(this.duration);
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
export const Redux = bindNew(_Redux);
|
|
512
|
-
classes.set(44, Redux);
|
|
513
|
-
class _Vuex {
|
|
514
|
-
constructor(mutation, state) {
|
|
515
|
-
this.mutation = mutation;
|
|
516
|
-
this.state = state;
|
|
517
|
-
this._id = 45;
|
|
518
|
-
}
|
|
519
|
-
encode(writer) {
|
|
520
|
-
return writer.uint(45) &&
|
|
521
|
-
writer.string(this.mutation) &&
|
|
522
|
-
writer.string(this.state);
|
|
523
|
-
}
|
|
524
|
-
}
|
|
525
|
-
export const Vuex = bindNew(_Vuex);
|
|
526
|
-
classes.set(45, Vuex);
|
|
527
|
-
class _MobX {
|
|
528
|
-
constructor(type, payload) {
|
|
529
|
-
this.type = type;
|
|
530
|
-
this.payload = payload;
|
|
531
|
-
this._id = 46;
|
|
532
|
-
}
|
|
533
|
-
encode(writer) {
|
|
534
|
-
return writer.uint(46) &&
|
|
535
|
-
writer.string(this.type) &&
|
|
536
|
-
writer.string(this.payload);
|
|
537
|
-
}
|
|
538
|
-
}
|
|
539
|
-
export const MobX = bindNew(_MobX);
|
|
540
|
-
classes.set(46, MobX);
|
|
541
|
-
class _NgRx {
|
|
542
|
-
constructor(action, state, duration) {
|
|
543
|
-
this.action = action;
|
|
544
|
-
this.state = state;
|
|
545
|
-
this.duration = duration;
|
|
546
|
-
this._id = 47;
|
|
547
|
-
}
|
|
548
|
-
encode(writer) {
|
|
549
|
-
return writer.uint(47) &&
|
|
550
|
-
writer.string(this.action) &&
|
|
551
|
-
writer.string(this.state) &&
|
|
552
|
-
writer.uint(this.duration);
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
|
-
export const NgRx = bindNew(_NgRx);
|
|
556
|
-
classes.set(47, NgRx);
|
|
557
|
-
class _GraphQL {
|
|
558
|
-
constructor(operationKind, operationName, variables, response) {
|
|
559
|
-
this.operationKind = operationKind;
|
|
560
|
-
this.operationName = operationName;
|
|
561
|
-
this.variables = variables;
|
|
562
|
-
this.response = response;
|
|
563
|
-
this._id = 48;
|
|
564
|
-
}
|
|
565
|
-
encode(writer) {
|
|
566
|
-
return writer.uint(48) &&
|
|
567
|
-
writer.string(this.operationKind) &&
|
|
568
|
-
writer.string(this.operationName) &&
|
|
569
|
-
writer.string(this.variables) &&
|
|
570
|
-
writer.string(this.response);
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
export const GraphQL = bindNew(_GraphQL);
|
|
574
|
-
classes.set(48, GraphQL);
|
|
575
|
-
class _PerformanceTrack {
|
|
576
|
-
constructor(frames, ticks, totalJSHeapSize, usedJSHeapSize) {
|
|
577
|
-
this.frames = frames;
|
|
578
|
-
this.ticks = ticks;
|
|
579
|
-
this.totalJSHeapSize = totalJSHeapSize;
|
|
580
|
-
this.usedJSHeapSize = usedJSHeapSize;
|
|
581
|
-
this._id = 49;
|
|
582
|
-
}
|
|
583
|
-
encode(writer) {
|
|
584
|
-
return writer.uint(49) &&
|
|
585
|
-
writer.int(this.frames) &&
|
|
586
|
-
writer.int(this.ticks) &&
|
|
587
|
-
writer.uint(this.totalJSHeapSize) &&
|
|
588
|
-
writer.uint(this.usedJSHeapSize);
|
|
589
|
-
}
|
|
590
|
-
}
|
|
591
|
-
export const PerformanceTrack = bindNew(_PerformanceTrack);
|
|
592
|
-
classes.set(49, PerformanceTrack);
|
|
593
|
-
class _ResourceTiming {
|
|
594
|
-
constructor(timestamp, duration, ttfb, headerSize, encodedBodySize, decodedBodySize, url, initiator) {
|
|
595
|
-
this.timestamp = timestamp;
|
|
596
|
-
this.duration = duration;
|
|
597
|
-
this.ttfb = ttfb;
|
|
598
|
-
this.headerSize = headerSize;
|
|
599
|
-
this.encodedBodySize = encodedBodySize;
|
|
600
|
-
this.decodedBodySize = decodedBodySize;
|
|
601
|
-
this.url = url;
|
|
602
|
-
this.initiator = initiator;
|
|
603
|
-
this._id = 53;
|
|
604
|
-
}
|
|
605
|
-
encode(writer) {
|
|
606
|
-
return writer.uint(53) &&
|
|
607
|
-
writer.uint(this.timestamp) &&
|
|
608
|
-
writer.uint(this.duration) &&
|
|
609
|
-
writer.uint(this.ttfb) &&
|
|
610
|
-
writer.uint(this.headerSize) &&
|
|
611
|
-
writer.uint(this.encodedBodySize) &&
|
|
612
|
-
writer.uint(this.decodedBodySize) &&
|
|
613
|
-
writer.string(this.url) &&
|
|
614
|
-
writer.string(this.initiator);
|
|
615
|
-
}
|
|
616
|
-
}
|
|
617
|
-
export const ResourceTiming = bindNew(_ResourceTiming);
|
|
618
|
-
classes.set(53, ResourceTiming);
|
|
619
|
-
class _ConnectionInformation {
|
|
620
|
-
constructor(downlink, type) {
|
|
621
|
-
this.downlink = downlink;
|
|
622
|
-
this.type = type;
|
|
623
|
-
this._id = 54;
|
|
624
|
-
}
|
|
625
|
-
encode(writer) {
|
|
626
|
-
return writer.uint(54) &&
|
|
627
|
-
writer.uint(this.downlink) &&
|
|
628
|
-
writer.string(this.type);
|
|
629
|
-
}
|
|
630
|
-
}
|
|
631
|
-
export const ConnectionInformation = bindNew(_ConnectionInformation);
|
|
632
|
-
classes.set(54, ConnectionInformation);
|
|
633
|
-
class _SetPageVisibility {
|
|
634
|
-
constructor(hidden) {
|
|
635
|
-
this.hidden = hidden;
|
|
636
|
-
this._id = 55;
|
|
637
|
-
}
|
|
638
|
-
encode(writer) {
|
|
639
|
-
return writer.uint(55) &&
|
|
640
|
-
writer.boolean(this.hidden);
|
|
641
|
-
}
|
|
642
|
-
}
|
|
643
|
-
export const SetPageVisibility = bindNew(_SetPageVisibility);
|
|
644
|
-
classes.set(55, SetPageVisibility);
|
|
645
|
-
class _LongTask {
|
|
646
|
-
constructor(timestamp, duration, context, containerType, containerSrc, containerId, containerName) {
|
|
647
|
-
this.timestamp = timestamp;
|
|
648
|
-
this.duration = duration;
|
|
649
|
-
this.context = context;
|
|
650
|
-
this.containerType = containerType;
|
|
651
|
-
this.containerSrc = containerSrc;
|
|
652
|
-
this.containerId = containerId;
|
|
653
|
-
this.containerName = containerName;
|
|
654
|
-
this._id = 59;
|
|
655
|
-
}
|
|
656
|
-
encode(writer) {
|
|
657
|
-
return writer.uint(59) &&
|
|
658
|
-
writer.uint(this.timestamp) &&
|
|
659
|
-
writer.uint(this.duration) &&
|
|
660
|
-
writer.uint(this.context) &&
|
|
661
|
-
writer.uint(this.containerType) &&
|
|
662
|
-
writer.string(this.containerSrc) &&
|
|
663
|
-
writer.string(this.containerId) &&
|
|
664
|
-
writer.string(this.containerName);
|
|
665
|
-
}
|
|
666
|
-
}
|
|
667
|
-
export const LongTask = bindNew(_LongTask);
|
|
668
|
-
classes.set(59, LongTask);
|
|
669
|
-
class _SetNodeAttributeURLBased {
|
|
670
|
-
constructor(id, name, value, baseURL) {
|
|
671
|
-
this.id = id;
|
|
672
|
-
this.name = name;
|
|
673
|
-
this.value = value;
|
|
674
|
-
this.baseURL = baseURL;
|
|
675
|
-
this._id = 60;
|
|
676
|
-
}
|
|
677
|
-
encode(writer) {
|
|
678
|
-
return writer.uint(60) &&
|
|
679
|
-
writer.uint(this.id) &&
|
|
680
|
-
writer.string(this.name) &&
|
|
681
|
-
writer.string(this.value) &&
|
|
682
|
-
writer.string(this.baseURL);
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
export const SetNodeAttributeURLBased = bindNew(_SetNodeAttributeURLBased);
|
|
686
|
-
classes.set(60, SetNodeAttributeURLBased);
|
|
687
|
-
class _SetCSSDataURLBased {
|
|
688
|
-
constructor(id, data, baseURL) {
|
|
689
|
-
this.id = id;
|
|
690
|
-
this.data = data;
|
|
691
|
-
this.baseURL = baseURL;
|
|
692
|
-
this._id = 61;
|
|
693
|
-
}
|
|
694
|
-
encode(writer) {
|
|
695
|
-
return writer.uint(61) &&
|
|
696
|
-
writer.uint(this.id) &&
|
|
697
|
-
writer.string(this.data) &&
|
|
698
|
-
writer.string(this.baseURL);
|
|
699
|
-
}
|
|
700
|
-
}
|
|
701
|
-
export const SetCSSDataURLBased = bindNew(_SetCSSDataURLBased);
|
|
702
|
-
classes.set(61, SetCSSDataURLBased);
|
|
703
|
-
class _TechnicalInfo {
|
|
704
|
-
constructor(type, value) {
|
|
705
|
-
this.type = type;
|
|
706
|
-
this.value = value;
|
|
707
|
-
this._id = 63;
|
|
708
|
-
}
|
|
709
|
-
encode(writer) {
|
|
710
|
-
return writer.uint(63) &&
|
|
711
|
-
writer.string(this.type) &&
|
|
712
|
-
writer.string(this.value);
|
|
713
|
-
}
|
|
714
|
-
}
|
|
715
|
-
export const TechnicalInfo = bindNew(_TechnicalInfo);
|
|
716
|
-
classes.set(63, TechnicalInfo);
|
|
717
|
-
class _CustomIssue {
|
|
718
|
-
constructor(name, payload) {
|
|
719
|
-
this.name = name;
|
|
720
|
-
this.payload = payload;
|
|
721
|
-
this._id = 64;
|
|
722
|
-
}
|
|
723
|
-
encode(writer) {
|
|
724
|
-
return writer.uint(64) &&
|
|
725
|
-
writer.string(this.name) &&
|
|
726
|
-
writer.string(this.payload);
|
|
727
|
-
}
|
|
728
|
-
}
|
|
729
|
-
export const CustomIssue = bindNew(_CustomIssue);
|
|
730
|
-
classes.set(64, CustomIssue);
|
|
731
|
-
class _PageClose {
|
|
732
|
-
constructor() {
|
|
733
|
-
this._id = 65;
|
|
734
|
-
}
|
|
735
|
-
encode(writer) {
|
|
736
|
-
return writer.uint(65);
|
|
737
|
-
}
|
|
738
|
-
}
|
|
739
|
-
export const PageClose = bindNew(_PageClose);
|
|
740
|
-
classes.set(65, PageClose);
|
|
741
|
-
class _CSSInsertRuleURLBased {
|
|
742
|
-
constructor(id, rule, index, baseURL) {
|
|
743
|
-
this.id = id;
|
|
744
|
-
this.rule = rule;
|
|
745
|
-
this.index = index;
|
|
746
|
-
this.baseURL = baseURL;
|
|
747
|
-
this._id = 67;
|
|
748
|
-
}
|
|
749
|
-
encode(writer) {
|
|
750
|
-
return writer.uint(67) &&
|
|
751
|
-
writer.uint(this.id) &&
|
|
752
|
-
writer.string(this.rule) &&
|
|
753
|
-
writer.uint(this.index) &&
|
|
754
|
-
writer.string(this.baseURL);
|
|
755
|
-
}
|
|
756
|
-
}
|
|
757
|
-
export const CSSInsertRuleURLBased = bindNew(_CSSInsertRuleURLBased);
|
|
758
|
-
classes.set(67, CSSInsertRuleURLBased);
|
|
759
|
-
class _MouseClick {
|
|
760
|
-
constructor(id, hesitationTime, label, selector) {
|
|
761
|
-
this.id = id;
|
|
762
|
-
this.hesitationTime = hesitationTime;
|
|
763
|
-
this.label = label;
|
|
764
|
-
this.selector = selector;
|
|
765
|
-
this._id = 69;
|
|
766
|
-
}
|
|
767
|
-
encode(writer) {
|
|
768
|
-
return writer.uint(69) &&
|
|
769
|
-
writer.uint(this.id) &&
|
|
770
|
-
writer.uint(this.hesitationTime) &&
|
|
771
|
-
writer.string(this.label) &&
|
|
772
|
-
writer.string(this.selector);
|
|
773
|
-
}
|
|
774
|
-
}
|
|
775
|
-
export const MouseClick = bindNew(_MouseClick);
|
|
776
|
-
classes.set(69, MouseClick);
|
|
777
|
-
class _CreateIFrameDocument {
|
|
778
|
-
constructor(frameID, id) {
|
|
779
|
-
this.frameID = frameID;
|
|
780
|
-
this.id = id;
|
|
781
|
-
this._id = 70;
|
|
782
|
-
}
|
|
783
|
-
encode(writer) {
|
|
784
|
-
return writer.uint(70) &&
|
|
785
|
-
writer.uint(this.frameID) &&
|
|
786
|
-
writer.uint(this.id);
|
|
787
|
-
}
|
|
788
|
-
}
|
|
789
|
-
export const CreateIFrameDocument = bindNew(_CreateIFrameDocument);
|
|
790
|
-
classes.set(70, CreateIFrameDocument);
|