@openreplay/tracker 18.0.8-beta.5 → 18.0.8
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/dist/cjs/common/interaction.d.ts +4 -1
- package/dist/cjs/entry.js +11 -8
- package/dist/cjs/entry.js.map +1 -1
- package/dist/cjs/index.js +11 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/lib/common/interaction.d.ts +4 -1
- package/dist/lib/entry.js +11 -8
- package/dist/lib/entry.js.map +1 -1
- package/dist/lib/index.js +11 -8
- package/dist/lib/index.js.map +1 -1
- package/dist/types/common/interaction.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Message from './messages.gen.js';
|
|
2
|
-
export type DataType = 'player' | 'assets' | 'devtools' | 'analytics';
|
|
2
|
+
export type DataType = 'player' | 'assets' | 'devtools' | 'analytics' | 'visual';
|
|
3
3
|
export interface Options {
|
|
4
4
|
connAttemptCount?: number;
|
|
5
5
|
connAttemptGap?: number;
|
|
@@ -23,10 +23,12 @@ export type ToWorkerData = null | 'stop' | Start | Auth | Array<Message> | {
|
|
|
23
23
|
type: 'compressed';
|
|
24
24
|
batch: Uint8Array;
|
|
25
25
|
dataType: DataType;
|
|
26
|
+
split?: number;
|
|
26
27
|
} | {
|
|
27
28
|
type: 'uncompressed';
|
|
28
29
|
batch: Uint8Array;
|
|
29
30
|
dataType: DataType;
|
|
31
|
+
split?: number;
|
|
30
32
|
} | 'forceFlushBatch' | 'closing' | 'check_queue';
|
|
31
33
|
type Failure = {
|
|
32
34
|
type: 'failure';
|
|
@@ -44,5 +46,6 @@ export type FromWorkerData = 'a_stop' | 'a_start' | Failure | 'not_init' | {
|
|
|
44
46
|
type: 'compress';
|
|
45
47
|
batch: Uint8Array;
|
|
46
48
|
dataType: DataType;
|
|
49
|
+
split?: number;
|
|
47
50
|
} | QEmpty | LocalSave;
|
|
48
51
|
export {};
|