@atlaskit/react-ufo 2.3.3 → 2.4.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/CHANGELOG.md +16 -0
- package/dist/cjs/common/constants.js +2 -1
- package/dist/cjs/create-payload/common/utils/index.js +61 -2
- package/dist/cjs/create-payload/index.js +68 -50
- package/dist/cjs/global-error-handler/index.js +7 -1
- package/dist/cjs/interaction-metrics-init/index.js +0 -7
- package/dist/es2019/common/constants.js +2 -1
- package/dist/es2019/create-payload/common/utils/index.js +53 -2
- package/dist/es2019/create-payload/index.js +49 -31
- package/dist/es2019/global-error-handler/index.js +4 -0
- package/dist/es2019/interaction-metrics-init/index.js +0 -7
- package/dist/esm/common/constants.js +2 -1
- package/dist/esm/create-payload/common/utils/index.js +57 -2
- package/dist/esm/create-payload/index.js +53 -35
- package/dist/esm/global-error-handler/index.js +6 -0
- package/dist/esm/interaction-metrics-init/index.js +0 -7
- package/dist/types/common/constants.d.ts +1 -1
- package/dist/types/create-payload/common/types.d.ts +1 -1
- package/dist/types/create-payload/common/utils/index.d.ts +15 -1
- package/dist/types/create-payload/index.d.ts +3217 -145
- package/dist/types/global-error-handler/index.d.ts +1 -0
- package/dist/types/interaction-context/index.d.ts +1 -1
- package/dist/types-ts4.5/common/constants.d.ts +1 -1
- package/dist/types-ts4.5/create-payload/common/types.d.ts +1 -1
- package/dist/types-ts4.5/create-payload/common/utils/index.d.ts +15 -1
- package/dist/types-ts4.5/create-payload/index.d.ts +3217 -145
- package/dist/types-ts4.5/global-error-handler/index.d.ts +1 -0
- package/dist/types-ts4.5/interaction-context/index.d.ts +1 -1
- package/package.json +7 -1
|
@@ -9,6 +9,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
9
9
|
tags: string[];
|
|
10
10
|
attributes: {
|
|
11
11
|
properties: {
|
|
12
|
+
errorCount: number;
|
|
12
13
|
interactionMetrics: {
|
|
13
14
|
legacyMetrics?: undefined;
|
|
14
15
|
initialPageLoadExtraTimings?: undefined;
|
|
@@ -42,7 +43,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
42
43
|
isPreviousInteractionAborted: boolean;
|
|
43
44
|
abortedByInteractionName: string | undefined;
|
|
44
45
|
apdex: {
|
|
45
|
-
labelStack?: {
|
|
46
|
+
labelStack?: string | {
|
|
46
47
|
s?: string | undefined;
|
|
47
48
|
n: string;
|
|
48
49
|
}[] | undefined;
|
|
@@ -52,14 +53,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
52
53
|
}[];
|
|
53
54
|
end: number;
|
|
54
55
|
start: number;
|
|
55
|
-
segments: {
|
|
56
|
-
labelStack: {
|
|
56
|
+
segments: import("./common/utils").SegmentTree | {
|
|
57
|
+
labelStack: string | {
|
|
57
58
|
s?: string | undefined;
|
|
58
59
|
n: string;
|
|
59
60
|
}[];
|
|
60
61
|
}[];
|
|
61
62
|
marks: {
|
|
62
|
-
labelStack: {
|
|
63
|
+
labelStack: string | {
|
|
63
64
|
s?: string | undefined;
|
|
64
65
|
n: string;
|
|
65
66
|
}[] | null;
|
|
@@ -69,6 +70,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
69
70
|
}[];
|
|
70
71
|
customData: any[];
|
|
71
72
|
reactProfilerTimings: any[];
|
|
73
|
+
errorCount: number;
|
|
72
74
|
} | {
|
|
73
75
|
legacyMetrics: {
|
|
74
76
|
key: string;
|
|
@@ -118,7 +120,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
118
120
|
isPreviousInteractionAborted: boolean;
|
|
119
121
|
abortedByInteractionName: string | undefined;
|
|
120
122
|
apdex: {
|
|
121
|
-
labelStack?: {
|
|
123
|
+
labelStack?: string | {
|
|
122
124
|
s?: string | undefined;
|
|
123
125
|
n: string;
|
|
124
126
|
}[] | undefined;
|
|
@@ -128,14 +130,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
128
130
|
}[];
|
|
129
131
|
end: number;
|
|
130
132
|
start: number;
|
|
131
|
-
segments: {
|
|
132
|
-
labelStack: {
|
|
133
|
+
segments: import("./common/utils").SegmentTree | {
|
|
134
|
+
labelStack: string | {
|
|
133
135
|
s?: string | undefined;
|
|
134
136
|
n: string;
|
|
135
137
|
}[];
|
|
136
138
|
}[];
|
|
137
139
|
marks: {
|
|
138
|
-
labelStack: {
|
|
140
|
+
labelStack: string | {
|
|
139
141
|
s?: string | undefined;
|
|
140
142
|
n: string;
|
|
141
143
|
}[] | null;
|
|
@@ -145,6 +147,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
145
147
|
}[];
|
|
146
148
|
customData: any[];
|
|
147
149
|
reactProfilerTimings: any[];
|
|
150
|
+
errorCount: number;
|
|
148
151
|
} | {
|
|
149
152
|
legacyMetrics?: undefined;
|
|
150
153
|
initialPageLoadExtraTimings: {
|
|
@@ -184,7 +187,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
184
187
|
isPreviousInteractionAborted: boolean;
|
|
185
188
|
abortedByInteractionName: string | undefined;
|
|
186
189
|
apdex: {
|
|
187
|
-
labelStack?: {
|
|
190
|
+
labelStack?: string | {
|
|
188
191
|
s?: string | undefined;
|
|
189
192
|
n: string;
|
|
190
193
|
}[] | undefined;
|
|
@@ -194,14 +197,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
194
197
|
}[];
|
|
195
198
|
end: number;
|
|
196
199
|
start: number;
|
|
197
|
-
segments: {
|
|
198
|
-
labelStack: {
|
|
200
|
+
segments: import("./common/utils").SegmentTree | {
|
|
201
|
+
labelStack: string | {
|
|
199
202
|
s?: string | undefined;
|
|
200
203
|
n: string;
|
|
201
204
|
}[];
|
|
202
205
|
}[];
|
|
203
206
|
marks: {
|
|
204
|
-
labelStack: {
|
|
207
|
+
labelStack: string | {
|
|
205
208
|
s?: string | undefined;
|
|
206
209
|
n: string;
|
|
207
210
|
}[] | null;
|
|
@@ -211,6 +214,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
211
214
|
}[];
|
|
212
215
|
customData: any[];
|
|
213
216
|
reactProfilerTimings: any[];
|
|
217
|
+
errorCount: number;
|
|
214
218
|
} | {
|
|
215
219
|
legacyMetrics: {
|
|
216
220
|
key: string;
|
|
@@ -266,7 +270,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
266
270
|
isPreviousInteractionAborted: boolean;
|
|
267
271
|
abortedByInteractionName: string | undefined;
|
|
268
272
|
apdex: {
|
|
269
|
-
labelStack?: {
|
|
273
|
+
labelStack?: string | {
|
|
270
274
|
s?: string | undefined;
|
|
271
275
|
n: string;
|
|
272
276
|
}[] | undefined;
|
|
@@ -276,14 +280,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
276
280
|
}[];
|
|
277
281
|
end: number;
|
|
278
282
|
start: number;
|
|
279
|
-
segments: {
|
|
280
|
-
labelStack: {
|
|
283
|
+
segments: import("./common/utils").SegmentTree | {
|
|
284
|
+
labelStack: string | {
|
|
281
285
|
s?: string | undefined;
|
|
282
286
|
n: string;
|
|
283
287
|
}[];
|
|
284
288
|
}[];
|
|
285
289
|
marks: {
|
|
286
|
-
labelStack: {
|
|
290
|
+
labelStack: string | {
|
|
287
291
|
s?: string | undefined;
|
|
288
292
|
n: string;
|
|
289
293
|
}[] | null;
|
|
@@ -293,12 +297,13 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
293
297
|
}[];
|
|
294
298
|
customData: any[];
|
|
295
299
|
reactProfilerTimings: any[];
|
|
300
|
+
errorCount: number;
|
|
296
301
|
} | {
|
|
297
302
|
legacyMetrics?: undefined;
|
|
298
303
|
initialPageLoadExtraTimings?: undefined;
|
|
299
304
|
SSRTimings?: undefined;
|
|
300
305
|
errors: {
|
|
301
|
-
labelStack: {
|
|
306
|
+
labelStack: string | {
|
|
302
307
|
s?: string | undefined;
|
|
303
308
|
n: string;
|
|
304
309
|
}[] | null;
|
|
@@ -359,7 +364,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
359
364
|
isPreviousInteractionAborted: boolean;
|
|
360
365
|
abortedByInteractionName: string | undefined;
|
|
361
366
|
apdex: {
|
|
362
|
-
labelStack?: {
|
|
367
|
+
labelStack?: string | {
|
|
363
368
|
s?: string | undefined;
|
|
364
369
|
n: string;
|
|
365
370
|
}[] | undefined;
|
|
@@ -369,14 +374,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
369
374
|
}[];
|
|
370
375
|
end: number;
|
|
371
376
|
start: number;
|
|
372
|
-
segments: {
|
|
373
|
-
labelStack: {
|
|
377
|
+
segments: import("./common/utils").SegmentTree | {
|
|
378
|
+
labelStack: string | {
|
|
374
379
|
s?: string | undefined;
|
|
375
380
|
n: string;
|
|
376
381
|
}[];
|
|
377
382
|
}[];
|
|
378
383
|
marks: {
|
|
379
|
-
labelStack: {
|
|
384
|
+
labelStack: string | {
|
|
380
385
|
s?: string | undefined;
|
|
381
386
|
n: string;
|
|
382
387
|
}[] | null;
|
|
@@ -386,6 +391,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
386
391
|
}[];
|
|
387
392
|
customData: any[];
|
|
388
393
|
reactProfilerTimings: any[];
|
|
394
|
+
errorCount: number;
|
|
389
395
|
} | {
|
|
390
396
|
legacyMetrics: {
|
|
391
397
|
key: string;
|
|
@@ -407,7 +413,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
407
413
|
initialPageLoadExtraTimings?: undefined;
|
|
408
414
|
SSRTimings?: undefined;
|
|
409
415
|
errors: {
|
|
410
|
-
labelStack: {
|
|
416
|
+
labelStack: string | {
|
|
411
417
|
s?: string | undefined;
|
|
412
418
|
n: string;
|
|
413
419
|
}[] | null;
|
|
@@ -468,7 +474,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
468
474
|
isPreviousInteractionAborted: boolean;
|
|
469
475
|
abortedByInteractionName: string | undefined;
|
|
470
476
|
apdex: {
|
|
471
|
-
labelStack?: {
|
|
477
|
+
labelStack?: string | {
|
|
472
478
|
s?: string | undefined;
|
|
473
479
|
n: string;
|
|
474
480
|
}[] | undefined;
|
|
@@ -478,14 +484,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
478
484
|
}[];
|
|
479
485
|
end: number;
|
|
480
486
|
start: number;
|
|
481
|
-
segments: {
|
|
482
|
-
labelStack: {
|
|
487
|
+
segments: import("./common/utils").SegmentTree | {
|
|
488
|
+
labelStack: string | {
|
|
483
489
|
s?: string | undefined;
|
|
484
490
|
n: string;
|
|
485
491
|
}[];
|
|
486
492
|
}[];
|
|
487
493
|
marks: {
|
|
488
|
-
labelStack: {
|
|
494
|
+
labelStack: string | {
|
|
489
495
|
s?: string | undefined;
|
|
490
496
|
n: string;
|
|
491
497
|
}[] | null;
|
|
@@ -495,6 +501,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
495
501
|
}[];
|
|
496
502
|
customData: any[];
|
|
497
503
|
reactProfilerTimings: any[];
|
|
504
|
+
errorCount: number;
|
|
498
505
|
} | {
|
|
499
506
|
legacyMetrics?: undefined;
|
|
500
507
|
initialPageLoadExtraTimings: {
|
|
@@ -506,7 +513,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
506
513
|
data: any;
|
|
507
514
|
}[];
|
|
508
515
|
errors: {
|
|
509
|
-
labelStack: {
|
|
516
|
+
labelStack: string | {
|
|
510
517
|
s?: string | undefined;
|
|
511
518
|
n: string;
|
|
512
519
|
}[] | null;
|
|
@@ -567,7 +574,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
567
574
|
isPreviousInteractionAborted: boolean;
|
|
568
575
|
abortedByInteractionName: string | undefined;
|
|
569
576
|
apdex: {
|
|
570
|
-
labelStack?: {
|
|
577
|
+
labelStack?: string | {
|
|
571
578
|
s?: string | undefined;
|
|
572
579
|
n: string;
|
|
573
580
|
}[] | undefined;
|
|
@@ -577,14 +584,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
577
584
|
}[];
|
|
578
585
|
end: number;
|
|
579
586
|
start: number;
|
|
580
|
-
segments: {
|
|
581
|
-
labelStack: {
|
|
587
|
+
segments: import("./common/utils").SegmentTree | {
|
|
588
|
+
labelStack: string | {
|
|
582
589
|
s?: string | undefined;
|
|
583
590
|
n: string;
|
|
584
591
|
}[];
|
|
585
592
|
}[];
|
|
586
593
|
marks: {
|
|
587
|
-
labelStack: {
|
|
594
|
+
labelStack: string | {
|
|
588
595
|
s?: string | undefined;
|
|
589
596
|
n: string;
|
|
590
597
|
}[] | null;
|
|
@@ -594,6 +601,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
594
601
|
}[];
|
|
595
602
|
customData: any[];
|
|
596
603
|
reactProfilerTimings: any[];
|
|
604
|
+
errorCount: number;
|
|
597
605
|
} | {
|
|
598
606
|
legacyMetrics: {
|
|
599
607
|
key: string;
|
|
@@ -621,7 +629,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
621
629
|
data: any;
|
|
622
630
|
}[];
|
|
623
631
|
errors: {
|
|
624
|
-
labelStack: {
|
|
632
|
+
labelStack: string | {
|
|
625
633
|
s?: string | undefined;
|
|
626
634
|
n: string;
|
|
627
635
|
}[] | null;
|
|
@@ -682,7 +690,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
682
690
|
isPreviousInteractionAborted: boolean;
|
|
683
691
|
abortedByInteractionName: string | undefined;
|
|
684
692
|
apdex: {
|
|
685
|
-
labelStack?: {
|
|
693
|
+
labelStack?: string | {
|
|
686
694
|
s?: string | undefined;
|
|
687
695
|
n: string;
|
|
688
696
|
}[] | undefined;
|
|
@@ -692,14 +700,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
692
700
|
}[];
|
|
693
701
|
end: number;
|
|
694
702
|
start: number;
|
|
695
|
-
segments: {
|
|
696
|
-
labelStack: {
|
|
703
|
+
segments: import("./common/utils").SegmentTree | {
|
|
704
|
+
labelStack: string | {
|
|
697
705
|
s?: string | undefined;
|
|
698
706
|
n: string;
|
|
699
707
|
}[];
|
|
700
708
|
}[];
|
|
701
709
|
marks: {
|
|
702
|
-
labelStack: {
|
|
710
|
+
labelStack: string | {
|
|
703
711
|
s?: string | undefined;
|
|
704
712
|
n: string;
|
|
705
713
|
}[] | null;
|
|
@@ -709,8 +717,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
709
717
|
}[];
|
|
710
718
|
customData: any[];
|
|
711
719
|
reactProfilerTimings: any[];
|
|
720
|
+
errorCount: number;
|
|
712
721
|
};
|
|
713
722
|
'ufo:payloadTime': number;
|
|
723
|
+
stylesheets?: undefined;
|
|
724
|
+
styleElements?: undefined;
|
|
725
|
+
styleProps?: undefined;
|
|
726
|
+
styleDeclarations?: undefined;
|
|
727
|
+
cssrules?: undefined;
|
|
714
728
|
'metrics:navigation'?: undefined;
|
|
715
729
|
'ssr:success': boolean | undefined;
|
|
716
730
|
'ssr:featureFlags': ssr.SSRFeatureFlags | undefined;
|
|
@@ -737,6 +751,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
737
751
|
'experience:key': string;
|
|
738
752
|
'experience:name': string;
|
|
739
753
|
} | {
|
|
754
|
+
errorCount: number;
|
|
740
755
|
interactionMetrics: {
|
|
741
756
|
legacyMetrics?: undefined;
|
|
742
757
|
initialPageLoadExtraTimings?: undefined;
|
|
@@ -770,7 +785,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
770
785
|
isPreviousInteractionAborted: boolean;
|
|
771
786
|
abortedByInteractionName: string | undefined;
|
|
772
787
|
apdex: {
|
|
773
|
-
labelStack?: {
|
|
788
|
+
labelStack?: string | {
|
|
774
789
|
s?: string | undefined;
|
|
775
790
|
n: string;
|
|
776
791
|
}[] | undefined;
|
|
@@ -780,14 +795,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
780
795
|
}[];
|
|
781
796
|
end: number;
|
|
782
797
|
start: number;
|
|
783
|
-
segments: {
|
|
784
|
-
labelStack: {
|
|
798
|
+
segments: import("./common/utils").SegmentTree | {
|
|
799
|
+
labelStack: string | {
|
|
785
800
|
s?: string | undefined;
|
|
786
801
|
n: string;
|
|
787
802
|
}[];
|
|
788
803
|
}[];
|
|
789
804
|
marks: {
|
|
790
|
-
labelStack: {
|
|
805
|
+
labelStack: string | {
|
|
791
806
|
s?: string | undefined;
|
|
792
807
|
n: string;
|
|
793
808
|
}[] | null;
|
|
@@ -797,6 +812,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
797
812
|
}[];
|
|
798
813
|
customData: any[];
|
|
799
814
|
reactProfilerTimings: any[];
|
|
815
|
+
errorCount: number;
|
|
800
816
|
} | {
|
|
801
817
|
legacyMetrics: {
|
|
802
818
|
key: string;
|
|
@@ -846,7 +862,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
846
862
|
isPreviousInteractionAborted: boolean;
|
|
847
863
|
abortedByInteractionName: string | undefined;
|
|
848
864
|
apdex: {
|
|
849
|
-
labelStack?: {
|
|
865
|
+
labelStack?: string | {
|
|
850
866
|
s?: string | undefined;
|
|
851
867
|
n: string;
|
|
852
868
|
}[] | undefined;
|
|
@@ -856,14 +872,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
856
872
|
}[];
|
|
857
873
|
end: number;
|
|
858
874
|
start: number;
|
|
859
|
-
segments: {
|
|
860
|
-
labelStack: {
|
|
875
|
+
segments: import("./common/utils").SegmentTree | {
|
|
876
|
+
labelStack: string | {
|
|
861
877
|
s?: string | undefined;
|
|
862
878
|
n: string;
|
|
863
879
|
}[];
|
|
864
880
|
}[];
|
|
865
881
|
marks: {
|
|
866
|
-
labelStack: {
|
|
882
|
+
labelStack: string | {
|
|
867
883
|
s?: string | undefined;
|
|
868
884
|
n: string;
|
|
869
885
|
}[] | null;
|
|
@@ -873,6 +889,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
873
889
|
}[];
|
|
874
890
|
customData: any[];
|
|
875
891
|
reactProfilerTimings: any[];
|
|
892
|
+
errorCount: number;
|
|
876
893
|
} | {
|
|
877
894
|
legacyMetrics?: undefined;
|
|
878
895
|
initialPageLoadExtraTimings: {
|
|
@@ -912,7 +929,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
912
929
|
isPreviousInteractionAborted: boolean;
|
|
913
930
|
abortedByInteractionName: string | undefined;
|
|
914
931
|
apdex: {
|
|
915
|
-
labelStack?: {
|
|
932
|
+
labelStack?: string | {
|
|
916
933
|
s?: string | undefined;
|
|
917
934
|
n: string;
|
|
918
935
|
}[] | undefined;
|
|
@@ -922,14 +939,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
922
939
|
}[];
|
|
923
940
|
end: number;
|
|
924
941
|
start: number;
|
|
925
|
-
segments: {
|
|
926
|
-
labelStack: {
|
|
942
|
+
segments: import("./common/utils").SegmentTree | {
|
|
943
|
+
labelStack: string | {
|
|
927
944
|
s?: string | undefined;
|
|
928
945
|
n: string;
|
|
929
946
|
}[];
|
|
930
947
|
}[];
|
|
931
948
|
marks: {
|
|
932
|
-
labelStack: {
|
|
949
|
+
labelStack: string | {
|
|
933
950
|
s?: string | undefined;
|
|
934
951
|
n: string;
|
|
935
952
|
}[] | null;
|
|
@@ -939,6 +956,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
939
956
|
}[];
|
|
940
957
|
customData: any[];
|
|
941
958
|
reactProfilerTimings: any[];
|
|
959
|
+
errorCount: number;
|
|
942
960
|
} | {
|
|
943
961
|
legacyMetrics: {
|
|
944
962
|
key: string;
|
|
@@ -994,7 +1012,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
994
1012
|
isPreviousInteractionAborted: boolean;
|
|
995
1013
|
abortedByInteractionName: string | undefined;
|
|
996
1014
|
apdex: {
|
|
997
|
-
labelStack?: {
|
|
1015
|
+
labelStack?: string | {
|
|
998
1016
|
s?: string | undefined;
|
|
999
1017
|
n: string;
|
|
1000
1018
|
}[] | undefined;
|
|
@@ -1004,14 +1022,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1004
1022
|
}[];
|
|
1005
1023
|
end: number;
|
|
1006
1024
|
start: number;
|
|
1007
|
-
segments: {
|
|
1008
|
-
labelStack: {
|
|
1025
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1026
|
+
labelStack: string | {
|
|
1009
1027
|
s?: string | undefined;
|
|
1010
1028
|
n: string;
|
|
1011
1029
|
}[];
|
|
1012
1030
|
}[];
|
|
1013
1031
|
marks: {
|
|
1014
|
-
labelStack: {
|
|
1032
|
+
labelStack: string | {
|
|
1015
1033
|
s?: string | undefined;
|
|
1016
1034
|
n: string;
|
|
1017
1035
|
}[] | null;
|
|
@@ -1021,12 +1039,13 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1021
1039
|
}[];
|
|
1022
1040
|
customData: any[];
|
|
1023
1041
|
reactProfilerTimings: any[];
|
|
1042
|
+
errorCount: number;
|
|
1024
1043
|
} | {
|
|
1025
1044
|
legacyMetrics?: undefined;
|
|
1026
1045
|
initialPageLoadExtraTimings?: undefined;
|
|
1027
1046
|
SSRTimings?: undefined;
|
|
1028
1047
|
errors: {
|
|
1029
|
-
labelStack: {
|
|
1048
|
+
labelStack: string | {
|
|
1030
1049
|
s?: string | undefined;
|
|
1031
1050
|
n: string;
|
|
1032
1051
|
}[] | null;
|
|
@@ -1087,7 +1106,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1087
1106
|
isPreviousInteractionAborted: boolean;
|
|
1088
1107
|
abortedByInteractionName: string | undefined;
|
|
1089
1108
|
apdex: {
|
|
1090
|
-
labelStack?: {
|
|
1109
|
+
labelStack?: string | {
|
|
1091
1110
|
s?: string | undefined;
|
|
1092
1111
|
n: string;
|
|
1093
1112
|
}[] | undefined;
|
|
@@ -1097,14 +1116,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1097
1116
|
}[];
|
|
1098
1117
|
end: number;
|
|
1099
1118
|
start: number;
|
|
1100
|
-
segments: {
|
|
1101
|
-
labelStack: {
|
|
1119
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1120
|
+
labelStack: string | {
|
|
1102
1121
|
s?: string | undefined;
|
|
1103
1122
|
n: string;
|
|
1104
1123
|
}[];
|
|
1105
1124
|
}[];
|
|
1106
1125
|
marks: {
|
|
1107
|
-
labelStack: {
|
|
1126
|
+
labelStack: string | {
|
|
1108
1127
|
s?: string | undefined;
|
|
1109
1128
|
n: string;
|
|
1110
1129
|
}[] | null;
|
|
@@ -1114,6 +1133,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1114
1133
|
}[];
|
|
1115
1134
|
customData: any[];
|
|
1116
1135
|
reactProfilerTimings: any[];
|
|
1136
|
+
errorCount: number;
|
|
1117
1137
|
} | {
|
|
1118
1138
|
legacyMetrics: {
|
|
1119
1139
|
key: string;
|
|
@@ -1135,7 +1155,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1135
1155
|
initialPageLoadExtraTimings?: undefined;
|
|
1136
1156
|
SSRTimings?: undefined;
|
|
1137
1157
|
errors: {
|
|
1138
|
-
labelStack: {
|
|
1158
|
+
labelStack: string | {
|
|
1139
1159
|
s?: string | undefined;
|
|
1140
1160
|
n: string;
|
|
1141
1161
|
}[] | null;
|
|
@@ -1196,7 +1216,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1196
1216
|
isPreviousInteractionAborted: boolean;
|
|
1197
1217
|
abortedByInteractionName: string | undefined;
|
|
1198
1218
|
apdex: {
|
|
1199
|
-
labelStack?: {
|
|
1219
|
+
labelStack?: string | {
|
|
1200
1220
|
s?: string | undefined;
|
|
1201
1221
|
n: string;
|
|
1202
1222
|
}[] | undefined;
|
|
@@ -1206,14 +1226,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1206
1226
|
}[];
|
|
1207
1227
|
end: number;
|
|
1208
1228
|
start: number;
|
|
1209
|
-
segments: {
|
|
1210
|
-
labelStack: {
|
|
1229
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1230
|
+
labelStack: string | {
|
|
1211
1231
|
s?: string | undefined;
|
|
1212
1232
|
n: string;
|
|
1213
1233
|
}[];
|
|
1214
1234
|
}[];
|
|
1215
1235
|
marks: {
|
|
1216
|
-
labelStack: {
|
|
1236
|
+
labelStack: string | {
|
|
1217
1237
|
s?: string | undefined;
|
|
1218
1238
|
n: string;
|
|
1219
1239
|
}[] | null;
|
|
@@ -1223,6 +1243,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1223
1243
|
}[];
|
|
1224
1244
|
customData: any[];
|
|
1225
1245
|
reactProfilerTimings: any[];
|
|
1246
|
+
errorCount: number;
|
|
1226
1247
|
} | {
|
|
1227
1248
|
legacyMetrics?: undefined;
|
|
1228
1249
|
initialPageLoadExtraTimings: {
|
|
@@ -1234,7 +1255,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1234
1255
|
data: any;
|
|
1235
1256
|
}[];
|
|
1236
1257
|
errors: {
|
|
1237
|
-
labelStack: {
|
|
1258
|
+
labelStack: string | {
|
|
1238
1259
|
s?: string | undefined;
|
|
1239
1260
|
n: string;
|
|
1240
1261
|
}[] | null;
|
|
@@ -1295,7 +1316,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1295
1316
|
isPreviousInteractionAborted: boolean;
|
|
1296
1317
|
abortedByInteractionName: string | undefined;
|
|
1297
1318
|
apdex: {
|
|
1298
|
-
labelStack?: {
|
|
1319
|
+
labelStack?: string | {
|
|
1299
1320
|
s?: string | undefined;
|
|
1300
1321
|
n: string;
|
|
1301
1322
|
}[] | undefined;
|
|
@@ -1305,14 +1326,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1305
1326
|
}[];
|
|
1306
1327
|
end: number;
|
|
1307
1328
|
start: number;
|
|
1308
|
-
segments: {
|
|
1309
|
-
labelStack: {
|
|
1329
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1330
|
+
labelStack: string | {
|
|
1310
1331
|
s?: string | undefined;
|
|
1311
1332
|
n: string;
|
|
1312
1333
|
}[];
|
|
1313
1334
|
}[];
|
|
1314
1335
|
marks: {
|
|
1315
|
-
labelStack: {
|
|
1336
|
+
labelStack: string | {
|
|
1316
1337
|
s?: string | undefined;
|
|
1317
1338
|
n: string;
|
|
1318
1339
|
}[] | null;
|
|
@@ -1322,6 +1343,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1322
1343
|
}[];
|
|
1323
1344
|
customData: any[];
|
|
1324
1345
|
reactProfilerTimings: any[];
|
|
1346
|
+
errorCount: number;
|
|
1325
1347
|
} | {
|
|
1326
1348
|
legacyMetrics: {
|
|
1327
1349
|
key: string;
|
|
@@ -1349,7 +1371,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1349
1371
|
data: any;
|
|
1350
1372
|
}[];
|
|
1351
1373
|
errors: {
|
|
1352
|
-
labelStack: {
|
|
1374
|
+
labelStack: string | {
|
|
1353
1375
|
s?: string | undefined;
|
|
1354
1376
|
n: string;
|
|
1355
1377
|
}[] | null;
|
|
@@ -1410,7 +1432,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1410
1432
|
isPreviousInteractionAborted: boolean;
|
|
1411
1433
|
abortedByInteractionName: string | undefined;
|
|
1412
1434
|
apdex: {
|
|
1413
|
-
labelStack?: {
|
|
1435
|
+
labelStack?: string | {
|
|
1414
1436
|
s?: string | undefined;
|
|
1415
1437
|
n: string;
|
|
1416
1438
|
}[] | undefined;
|
|
@@ -1420,14 +1442,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1420
1442
|
}[];
|
|
1421
1443
|
end: number;
|
|
1422
1444
|
start: number;
|
|
1423
|
-
segments: {
|
|
1424
|
-
labelStack: {
|
|
1445
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1446
|
+
labelStack: string | {
|
|
1425
1447
|
s?: string | undefined;
|
|
1426
1448
|
n: string;
|
|
1427
1449
|
}[];
|
|
1428
1450
|
}[];
|
|
1429
1451
|
marks: {
|
|
1430
|
-
labelStack: {
|
|
1452
|
+
labelStack: string | {
|
|
1431
1453
|
s?: string | undefined;
|
|
1432
1454
|
n: string;
|
|
1433
1455
|
}[] | null;
|
|
@@ -1437,8 +1459,1519 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1437
1459
|
}[];
|
|
1438
1460
|
customData: any[];
|
|
1439
1461
|
reactProfilerTimings: any[];
|
|
1462
|
+
errorCount: number;
|
|
1440
1463
|
};
|
|
1441
1464
|
'ufo:payloadTime': number;
|
|
1465
|
+
stylesheets: number;
|
|
1466
|
+
styleElements: number;
|
|
1467
|
+
styleProps: number;
|
|
1468
|
+
styleDeclarations: number;
|
|
1469
|
+
cssrules: number;
|
|
1470
|
+
'metrics:navigation'?: undefined;
|
|
1471
|
+
'ssr:success': boolean | undefined;
|
|
1472
|
+
'ssr:featureFlags': ssr.SSRFeatureFlags | undefined;
|
|
1473
|
+
'event:browser:name'?: string | undefined;
|
|
1474
|
+
'event:browser:version'?: string | undefined;
|
|
1475
|
+
'event:cpus'?: number | undefined;
|
|
1476
|
+
'event:memory'?: number | undefined;
|
|
1477
|
+
'event:network:effectiveType'?: string | undefined;
|
|
1478
|
+
'event:network:rtt'?: number | undefined;
|
|
1479
|
+
'event:network:downlink'?: number | undefined;
|
|
1480
|
+
'event:localHour'?: number | undefined;
|
|
1481
|
+
'event:localDayOfWeek'?: number | undefined;
|
|
1482
|
+
'event:localTimezoneOffset'?: number | undefined;
|
|
1483
|
+
'event:hostname': string;
|
|
1484
|
+
'event:product': string;
|
|
1485
|
+
'event:schema': string;
|
|
1486
|
+
'event:sizeInKb': number;
|
|
1487
|
+
'event:source': {
|
|
1488
|
+
name: string;
|
|
1489
|
+
version: string;
|
|
1490
|
+
payloadSource: string;
|
|
1491
|
+
};
|
|
1492
|
+
'event:region': string;
|
|
1493
|
+
'experience:key': string;
|
|
1494
|
+
'experience:name': string;
|
|
1495
|
+
} | {
|
|
1496
|
+
errorCount: number;
|
|
1497
|
+
interactionMetrics: {
|
|
1498
|
+
legacyMetrics?: undefined;
|
|
1499
|
+
initialPageLoadExtraTimings?: undefined;
|
|
1500
|
+
SSRTimings?: undefined;
|
|
1501
|
+
errors?: undefined;
|
|
1502
|
+
holdActive?: undefined;
|
|
1503
|
+
redirects?: undefined;
|
|
1504
|
+
holdInfo?: undefined;
|
|
1505
|
+
spans?: undefined;
|
|
1506
|
+
requestInfo?: undefined;
|
|
1507
|
+
customTimings?: undefined;
|
|
1508
|
+
bundleEvalTimings?: undefined;
|
|
1509
|
+
resourceTimings?: undefined;
|
|
1510
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
1511
|
+
namePrefix: string;
|
|
1512
|
+
segmentPrefix: string;
|
|
1513
|
+
interactionId: string;
|
|
1514
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
1515
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
1516
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
1517
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
1518
|
+
rate: number;
|
|
1519
|
+
routeName: string | null;
|
|
1520
|
+
type: InteractionType;
|
|
1521
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
1522
|
+
featureFlags: {
|
|
1523
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
1524
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
1525
|
+
} | undefined;
|
|
1526
|
+
previousInteractionName: string | undefined;
|
|
1527
|
+
isPreviousInteractionAborted: boolean;
|
|
1528
|
+
abortedByInteractionName: string | undefined;
|
|
1529
|
+
apdex: {
|
|
1530
|
+
labelStack?: string | {
|
|
1531
|
+
s?: string | undefined;
|
|
1532
|
+
n: string;
|
|
1533
|
+
}[] | undefined;
|
|
1534
|
+
stopTime: number;
|
|
1535
|
+
key: string;
|
|
1536
|
+
startTime?: number | undefined;
|
|
1537
|
+
}[];
|
|
1538
|
+
end: number;
|
|
1539
|
+
start: number;
|
|
1540
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1541
|
+
labelStack: string | {
|
|
1542
|
+
s?: string | undefined;
|
|
1543
|
+
n: string;
|
|
1544
|
+
}[];
|
|
1545
|
+
}[];
|
|
1546
|
+
marks: {
|
|
1547
|
+
labelStack: string | {
|
|
1548
|
+
s?: string | undefined;
|
|
1549
|
+
n: string;
|
|
1550
|
+
}[] | null;
|
|
1551
|
+
time: number;
|
|
1552
|
+
type: import("../common").MarkType;
|
|
1553
|
+
name: string;
|
|
1554
|
+
}[];
|
|
1555
|
+
customData: any[];
|
|
1556
|
+
reactProfilerTimings: any[];
|
|
1557
|
+
errorCount: number;
|
|
1558
|
+
} | {
|
|
1559
|
+
legacyMetrics: {
|
|
1560
|
+
key: string;
|
|
1561
|
+
startTime: number | null;
|
|
1562
|
+
stopTime: number | null;
|
|
1563
|
+
type: string;
|
|
1564
|
+
reactUFOName: string | undefined;
|
|
1565
|
+
fmp: number | null;
|
|
1566
|
+
source: string;
|
|
1567
|
+
timings: {
|
|
1568
|
+
[key: string]: {
|
|
1569
|
+
startTime: number;
|
|
1570
|
+
endTime: number;
|
|
1571
|
+
};
|
|
1572
|
+
};
|
|
1573
|
+
submetrics: any;
|
|
1574
|
+
pageVisibleState: string | undefined;
|
|
1575
|
+
}[];
|
|
1576
|
+
initialPageLoadExtraTimings?: undefined;
|
|
1577
|
+
SSRTimings?: undefined;
|
|
1578
|
+
errors?: undefined;
|
|
1579
|
+
holdActive?: undefined;
|
|
1580
|
+
redirects?: undefined;
|
|
1581
|
+
holdInfo?: undefined;
|
|
1582
|
+
spans?: undefined;
|
|
1583
|
+
requestInfo?: undefined;
|
|
1584
|
+
customTimings?: undefined;
|
|
1585
|
+
bundleEvalTimings?: undefined;
|
|
1586
|
+
resourceTimings?: undefined;
|
|
1587
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
1588
|
+
namePrefix: string;
|
|
1589
|
+
segmentPrefix: string;
|
|
1590
|
+
interactionId: string;
|
|
1591
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
1592
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
1593
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
1594
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
1595
|
+
rate: number;
|
|
1596
|
+
routeName: string | null;
|
|
1597
|
+
type: InteractionType;
|
|
1598
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
1599
|
+
featureFlags: {
|
|
1600
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
1601
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
1602
|
+
} | undefined;
|
|
1603
|
+
previousInteractionName: string | undefined;
|
|
1604
|
+
isPreviousInteractionAborted: boolean;
|
|
1605
|
+
abortedByInteractionName: string | undefined;
|
|
1606
|
+
apdex: {
|
|
1607
|
+
labelStack?: string | {
|
|
1608
|
+
s?: string | undefined;
|
|
1609
|
+
n: string;
|
|
1610
|
+
}[] | undefined;
|
|
1611
|
+
stopTime: number;
|
|
1612
|
+
key: string;
|
|
1613
|
+
startTime?: number | undefined;
|
|
1614
|
+
}[];
|
|
1615
|
+
end: number;
|
|
1616
|
+
start: number;
|
|
1617
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1618
|
+
labelStack: string | {
|
|
1619
|
+
s?: string | undefined;
|
|
1620
|
+
n: string;
|
|
1621
|
+
}[];
|
|
1622
|
+
}[];
|
|
1623
|
+
marks: {
|
|
1624
|
+
labelStack: string | {
|
|
1625
|
+
s?: string | undefined;
|
|
1626
|
+
n: string;
|
|
1627
|
+
}[] | null;
|
|
1628
|
+
time: number;
|
|
1629
|
+
type: import("../common").MarkType;
|
|
1630
|
+
name: string;
|
|
1631
|
+
}[];
|
|
1632
|
+
customData: any[];
|
|
1633
|
+
reactProfilerTimings: any[];
|
|
1634
|
+
errorCount: number;
|
|
1635
|
+
} | {
|
|
1636
|
+
legacyMetrics?: undefined;
|
|
1637
|
+
initialPageLoadExtraTimings: {
|
|
1638
|
+
label: string;
|
|
1639
|
+
data: any;
|
|
1640
|
+
}[];
|
|
1641
|
+
SSRTimings: {
|
|
1642
|
+
label: string;
|
|
1643
|
+
data: any;
|
|
1644
|
+
}[];
|
|
1645
|
+
errors?: undefined;
|
|
1646
|
+
holdActive?: undefined;
|
|
1647
|
+
redirects?: undefined;
|
|
1648
|
+
holdInfo?: undefined;
|
|
1649
|
+
spans?: undefined;
|
|
1650
|
+
requestInfo?: undefined;
|
|
1651
|
+
customTimings?: undefined;
|
|
1652
|
+
bundleEvalTimings?: undefined;
|
|
1653
|
+
resourceTimings?: undefined;
|
|
1654
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
1655
|
+
namePrefix: string;
|
|
1656
|
+
segmentPrefix: string;
|
|
1657
|
+
interactionId: string;
|
|
1658
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
1659
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
1660
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
1661
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
1662
|
+
rate: number;
|
|
1663
|
+
routeName: string | null;
|
|
1664
|
+
type: InteractionType;
|
|
1665
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
1666
|
+
featureFlags: {
|
|
1667
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
1668
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
1669
|
+
} | undefined;
|
|
1670
|
+
previousInteractionName: string | undefined;
|
|
1671
|
+
isPreviousInteractionAborted: boolean;
|
|
1672
|
+
abortedByInteractionName: string | undefined;
|
|
1673
|
+
apdex: {
|
|
1674
|
+
labelStack?: string | {
|
|
1675
|
+
s?: string | undefined;
|
|
1676
|
+
n: string;
|
|
1677
|
+
}[] | undefined;
|
|
1678
|
+
stopTime: number;
|
|
1679
|
+
key: string;
|
|
1680
|
+
startTime?: number | undefined;
|
|
1681
|
+
}[];
|
|
1682
|
+
end: number;
|
|
1683
|
+
start: number;
|
|
1684
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1685
|
+
labelStack: string | {
|
|
1686
|
+
s?: string | undefined;
|
|
1687
|
+
n: string;
|
|
1688
|
+
}[];
|
|
1689
|
+
}[];
|
|
1690
|
+
marks: {
|
|
1691
|
+
labelStack: string | {
|
|
1692
|
+
s?: string | undefined;
|
|
1693
|
+
n: string;
|
|
1694
|
+
}[] | null;
|
|
1695
|
+
time: number;
|
|
1696
|
+
type: import("../common").MarkType;
|
|
1697
|
+
name: string;
|
|
1698
|
+
}[];
|
|
1699
|
+
customData: any[];
|
|
1700
|
+
reactProfilerTimings: any[];
|
|
1701
|
+
errorCount: number;
|
|
1702
|
+
} | {
|
|
1703
|
+
legacyMetrics: {
|
|
1704
|
+
key: string;
|
|
1705
|
+
startTime: number | null;
|
|
1706
|
+
stopTime: number | null;
|
|
1707
|
+
type: string;
|
|
1708
|
+
reactUFOName: string | undefined;
|
|
1709
|
+
fmp: number | null;
|
|
1710
|
+
source: string;
|
|
1711
|
+
timings: {
|
|
1712
|
+
[key: string]: {
|
|
1713
|
+
startTime: number;
|
|
1714
|
+
endTime: number;
|
|
1715
|
+
};
|
|
1716
|
+
};
|
|
1717
|
+
submetrics: any;
|
|
1718
|
+
pageVisibleState: string | undefined;
|
|
1719
|
+
}[];
|
|
1720
|
+
initialPageLoadExtraTimings: {
|
|
1721
|
+
label: string;
|
|
1722
|
+
data: any;
|
|
1723
|
+
}[];
|
|
1724
|
+
SSRTimings: {
|
|
1725
|
+
label: string;
|
|
1726
|
+
data: any;
|
|
1727
|
+
}[];
|
|
1728
|
+
errors?: undefined;
|
|
1729
|
+
holdActive?: undefined;
|
|
1730
|
+
redirects?: undefined;
|
|
1731
|
+
holdInfo?: undefined;
|
|
1732
|
+
spans?: undefined;
|
|
1733
|
+
requestInfo?: undefined;
|
|
1734
|
+
customTimings?: undefined;
|
|
1735
|
+
bundleEvalTimings?: undefined;
|
|
1736
|
+
resourceTimings?: undefined;
|
|
1737
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
1738
|
+
namePrefix: string;
|
|
1739
|
+
segmentPrefix: string;
|
|
1740
|
+
interactionId: string;
|
|
1741
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
1742
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
1743
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
1744
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
1745
|
+
rate: number;
|
|
1746
|
+
routeName: string | null;
|
|
1747
|
+
type: InteractionType;
|
|
1748
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
1749
|
+
featureFlags: {
|
|
1750
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
1751
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
1752
|
+
} | undefined;
|
|
1753
|
+
previousInteractionName: string | undefined;
|
|
1754
|
+
isPreviousInteractionAborted: boolean;
|
|
1755
|
+
abortedByInteractionName: string | undefined;
|
|
1756
|
+
apdex: {
|
|
1757
|
+
labelStack?: string | {
|
|
1758
|
+
s?: string | undefined;
|
|
1759
|
+
n: string;
|
|
1760
|
+
}[] | undefined;
|
|
1761
|
+
stopTime: number;
|
|
1762
|
+
key: string;
|
|
1763
|
+
startTime?: number | undefined;
|
|
1764
|
+
}[];
|
|
1765
|
+
end: number;
|
|
1766
|
+
start: number;
|
|
1767
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1768
|
+
labelStack: string | {
|
|
1769
|
+
s?: string | undefined;
|
|
1770
|
+
n: string;
|
|
1771
|
+
}[];
|
|
1772
|
+
}[];
|
|
1773
|
+
marks: {
|
|
1774
|
+
labelStack: string | {
|
|
1775
|
+
s?: string | undefined;
|
|
1776
|
+
n: string;
|
|
1777
|
+
}[] | null;
|
|
1778
|
+
time: number;
|
|
1779
|
+
type: import("../common").MarkType;
|
|
1780
|
+
name: string;
|
|
1781
|
+
}[];
|
|
1782
|
+
customData: any[];
|
|
1783
|
+
reactProfilerTimings: any[];
|
|
1784
|
+
errorCount: number;
|
|
1785
|
+
} | {
|
|
1786
|
+
legacyMetrics?: undefined;
|
|
1787
|
+
initialPageLoadExtraTimings?: undefined;
|
|
1788
|
+
SSRTimings?: undefined;
|
|
1789
|
+
errors: {
|
|
1790
|
+
labelStack: string | {
|
|
1791
|
+
s?: string | undefined;
|
|
1792
|
+
n: string;
|
|
1793
|
+
}[] | null;
|
|
1794
|
+
name: string;
|
|
1795
|
+
errorType: string;
|
|
1796
|
+
errorMessage: string;
|
|
1797
|
+
errorStack?: string | undefined;
|
|
1798
|
+
forcedError?: boolean | undefined;
|
|
1799
|
+
}[];
|
|
1800
|
+
holdActive: import("../common").HoldActive[];
|
|
1801
|
+
redirects: {
|
|
1802
|
+
labelStack: OptimizedLabelStack;
|
|
1803
|
+
startTime: number;
|
|
1804
|
+
endTime: number;
|
|
1805
|
+
}[];
|
|
1806
|
+
holdInfo: any[];
|
|
1807
|
+
spans: {
|
|
1808
|
+
labelStack: OptimizedLabelStack;
|
|
1809
|
+
startTime: number;
|
|
1810
|
+
endTime: number;
|
|
1811
|
+
type: string;
|
|
1812
|
+
}[];
|
|
1813
|
+
requestInfo: {
|
|
1814
|
+
labelStack: OptimizedLabelStack;
|
|
1815
|
+
startTime: number;
|
|
1816
|
+
endTime: number;
|
|
1817
|
+
}[];
|
|
1818
|
+
customTimings: {
|
|
1819
|
+
labelStack: OptimizedLabelStack;
|
|
1820
|
+
startTime: number;
|
|
1821
|
+
endTime: number;
|
|
1822
|
+
}[];
|
|
1823
|
+
bundleEvalTimings: {
|
|
1824
|
+
label: string;
|
|
1825
|
+
data: any;
|
|
1826
|
+
}[];
|
|
1827
|
+
resourceTimings: {
|
|
1828
|
+
label: string;
|
|
1829
|
+
data: any;
|
|
1830
|
+
}[];
|
|
1831
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
1832
|
+
namePrefix: string;
|
|
1833
|
+
segmentPrefix: string;
|
|
1834
|
+
interactionId: string;
|
|
1835
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
1836
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
1837
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
1838
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
1839
|
+
rate: number;
|
|
1840
|
+
routeName: string | null;
|
|
1841
|
+
type: InteractionType;
|
|
1842
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
1843
|
+
featureFlags: {
|
|
1844
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
1845
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
1846
|
+
} | undefined;
|
|
1847
|
+
previousInteractionName: string | undefined;
|
|
1848
|
+
isPreviousInteractionAborted: boolean;
|
|
1849
|
+
abortedByInteractionName: string | undefined;
|
|
1850
|
+
apdex: {
|
|
1851
|
+
labelStack?: string | {
|
|
1852
|
+
s?: string | undefined;
|
|
1853
|
+
n: string;
|
|
1854
|
+
}[] | undefined;
|
|
1855
|
+
stopTime: number;
|
|
1856
|
+
key: string;
|
|
1857
|
+
startTime?: number | undefined;
|
|
1858
|
+
}[];
|
|
1859
|
+
end: number;
|
|
1860
|
+
start: number;
|
|
1861
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1862
|
+
labelStack: string | {
|
|
1863
|
+
s?: string | undefined;
|
|
1864
|
+
n: string;
|
|
1865
|
+
}[];
|
|
1866
|
+
}[];
|
|
1867
|
+
marks: {
|
|
1868
|
+
labelStack: string | {
|
|
1869
|
+
s?: string | undefined;
|
|
1870
|
+
n: string;
|
|
1871
|
+
}[] | null;
|
|
1872
|
+
time: number;
|
|
1873
|
+
type: import("../common").MarkType;
|
|
1874
|
+
name: string;
|
|
1875
|
+
}[];
|
|
1876
|
+
customData: any[];
|
|
1877
|
+
reactProfilerTimings: any[];
|
|
1878
|
+
errorCount: number;
|
|
1879
|
+
} | {
|
|
1880
|
+
legacyMetrics: {
|
|
1881
|
+
key: string;
|
|
1882
|
+
startTime: number | null;
|
|
1883
|
+
stopTime: number | null;
|
|
1884
|
+
type: string;
|
|
1885
|
+
reactUFOName: string | undefined;
|
|
1886
|
+
fmp: number | null;
|
|
1887
|
+
source: string;
|
|
1888
|
+
timings: {
|
|
1889
|
+
[key: string]: {
|
|
1890
|
+
startTime: number;
|
|
1891
|
+
endTime: number;
|
|
1892
|
+
};
|
|
1893
|
+
};
|
|
1894
|
+
submetrics: any;
|
|
1895
|
+
pageVisibleState: string | undefined;
|
|
1896
|
+
}[];
|
|
1897
|
+
initialPageLoadExtraTimings?: undefined;
|
|
1898
|
+
SSRTimings?: undefined;
|
|
1899
|
+
errors: {
|
|
1900
|
+
labelStack: string | {
|
|
1901
|
+
s?: string | undefined;
|
|
1902
|
+
n: string;
|
|
1903
|
+
}[] | null;
|
|
1904
|
+
name: string;
|
|
1905
|
+
errorType: string;
|
|
1906
|
+
errorMessage: string;
|
|
1907
|
+
errorStack?: string | undefined;
|
|
1908
|
+
forcedError?: boolean | undefined;
|
|
1909
|
+
}[];
|
|
1910
|
+
holdActive: import("../common").HoldActive[];
|
|
1911
|
+
redirects: {
|
|
1912
|
+
labelStack: OptimizedLabelStack;
|
|
1913
|
+
startTime: number;
|
|
1914
|
+
endTime: number;
|
|
1915
|
+
}[];
|
|
1916
|
+
holdInfo: any[];
|
|
1917
|
+
spans: {
|
|
1918
|
+
labelStack: OptimizedLabelStack;
|
|
1919
|
+
startTime: number;
|
|
1920
|
+
endTime: number;
|
|
1921
|
+
type: string;
|
|
1922
|
+
}[];
|
|
1923
|
+
requestInfo: {
|
|
1924
|
+
labelStack: OptimizedLabelStack;
|
|
1925
|
+
startTime: number;
|
|
1926
|
+
endTime: number;
|
|
1927
|
+
}[];
|
|
1928
|
+
customTimings: {
|
|
1929
|
+
labelStack: OptimizedLabelStack;
|
|
1930
|
+
startTime: number;
|
|
1931
|
+
endTime: number;
|
|
1932
|
+
}[];
|
|
1933
|
+
bundleEvalTimings: {
|
|
1934
|
+
label: string;
|
|
1935
|
+
data: any;
|
|
1936
|
+
}[];
|
|
1937
|
+
resourceTimings: {
|
|
1938
|
+
label: string;
|
|
1939
|
+
data: any;
|
|
1940
|
+
}[];
|
|
1941
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
1942
|
+
namePrefix: string;
|
|
1943
|
+
segmentPrefix: string;
|
|
1944
|
+
interactionId: string;
|
|
1945
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
1946
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
1947
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
1948
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
1949
|
+
rate: number;
|
|
1950
|
+
routeName: string | null;
|
|
1951
|
+
type: InteractionType;
|
|
1952
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
1953
|
+
featureFlags: {
|
|
1954
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
1955
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
1956
|
+
} | undefined;
|
|
1957
|
+
previousInteractionName: string | undefined;
|
|
1958
|
+
isPreviousInteractionAborted: boolean;
|
|
1959
|
+
abortedByInteractionName: string | undefined;
|
|
1960
|
+
apdex: {
|
|
1961
|
+
labelStack?: string | {
|
|
1962
|
+
s?: string | undefined;
|
|
1963
|
+
n: string;
|
|
1964
|
+
}[] | undefined;
|
|
1965
|
+
stopTime: number;
|
|
1966
|
+
key: string;
|
|
1967
|
+
startTime?: number | undefined;
|
|
1968
|
+
}[];
|
|
1969
|
+
end: number;
|
|
1970
|
+
start: number;
|
|
1971
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1972
|
+
labelStack: string | {
|
|
1973
|
+
s?: string | undefined;
|
|
1974
|
+
n: string;
|
|
1975
|
+
}[];
|
|
1976
|
+
}[];
|
|
1977
|
+
marks: {
|
|
1978
|
+
labelStack: string | {
|
|
1979
|
+
s?: string | undefined;
|
|
1980
|
+
n: string;
|
|
1981
|
+
}[] | null;
|
|
1982
|
+
time: number;
|
|
1983
|
+
type: import("../common").MarkType;
|
|
1984
|
+
name: string;
|
|
1985
|
+
}[];
|
|
1986
|
+
customData: any[];
|
|
1987
|
+
reactProfilerTimings: any[];
|
|
1988
|
+
errorCount: number;
|
|
1989
|
+
} | {
|
|
1990
|
+
legacyMetrics?: undefined;
|
|
1991
|
+
initialPageLoadExtraTimings: {
|
|
1992
|
+
label: string;
|
|
1993
|
+
data: any;
|
|
1994
|
+
}[];
|
|
1995
|
+
SSRTimings: {
|
|
1996
|
+
label: string;
|
|
1997
|
+
data: any;
|
|
1998
|
+
}[];
|
|
1999
|
+
errors: {
|
|
2000
|
+
labelStack: string | {
|
|
2001
|
+
s?: string | undefined;
|
|
2002
|
+
n: string;
|
|
2003
|
+
}[] | null;
|
|
2004
|
+
name: string;
|
|
2005
|
+
errorType: string;
|
|
2006
|
+
errorMessage: string;
|
|
2007
|
+
errorStack?: string | undefined;
|
|
2008
|
+
forcedError?: boolean | undefined;
|
|
2009
|
+
}[];
|
|
2010
|
+
holdActive: import("../common").HoldActive[];
|
|
2011
|
+
redirects: {
|
|
2012
|
+
labelStack: OptimizedLabelStack;
|
|
2013
|
+
startTime: number;
|
|
2014
|
+
endTime: number;
|
|
2015
|
+
}[];
|
|
2016
|
+
holdInfo: any[];
|
|
2017
|
+
spans: {
|
|
2018
|
+
labelStack: OptimizedLabelStack;
|
|
2019
|
+
startTime: number;
|
|
2020
|
+
endTime: number;
|
|
2021
|
+
type: string;
|
|
2022
|
+
}[];
|
|
2023
|
+
requestInfo: {
|
|
2024
|
+
labelStack: OptimizedLabelStack;
|
|
2025
|
+
startTime: number;
|
|
2026
|
+
endTime: number;
|
|
2027
|
+
}[];
|
|
2028
|
+
customTimings: {
|
|
2029
|
+
labelStack: OptimizedLabelStack;
|
|
2030
|
+
startTime: number;
|
|
2031
|
+
endTime: number;
|
|
2032
|
+
}[];
|
|
2033
|
+
bundleEvalTimings: {
|
|
2034
|
+
label: string;
|
|
2035
|
+
data: any;
|
|
2036
|
+
}[];
|
|
2037
|
+
resourceTimings: {
|
|
2038
|
+
label: string;
|
|
2039
|
+
data: any;
|
|
2040
|
+
}[];
|
|
2041
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
2042
|
+
namePrefix: string;
|
|
2043
|
+
segmentPrefix: string;
|
|
2044
|
+
interactionId: string;
|
|
2045
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
2046
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
2047
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
2048
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
2049
|
+
rate: number;
|
|
2050
|
+
routeName: string | null;
|
|
2051
|
+
type: InteractionType;
|
|
2052
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
2053
|
+
featureFlags: {
|
|
2054
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
2055
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
2056
|
+
} | undefined;
|
|
2057
|
+
previousInteractionName: string | undefined;
|
|
2058
|
+
isPreviousInteractionAborted: boolean;
|
|
2059
|
+
abortedByInteractionName: string | undefined;
|
|
2060
|
+
apdex: {
|
|
2061
|
+
labelStack?: string | {
|
|
2062
|
+
s?: string | undefined;
|
|
2063
|
+
n: string;
|
|
2064
|
+
}[] | undefined;
|
|
2065
|
+
stopTime: number;
|
|
2066
|
+
key: string;
|
|
2067
|
+
startTime?: number | undefined;
|
|
2068
|
+
}[];
|
|
2069
|
+
end: number;
|
|
2070
|
+
start: number;
|
|
2071
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2072
|
+
labelStack: string | {
|
|
2073
|
+
s?: string | undefined;
|
|
2074
|
+
n: string;
|
|
2075
|
+
}[];
|
|
2076
|
+
}[];
|
|
2077
|
+
marks: {
|
|
2078
|
+
labelStack: string | {
|
|
2079
|
+
s?: string | undefined;
|
|
2080
|
+
n: string;
|
|
2081
|
+
}[] | null;
|
|
2082
|
+
time: number;
|
|
2083
|
+
type: import("../common").MarkType;
|
|
2084
|
+
name: string;
|
|
2085
|
+
}[];
|
|
2086
|
+
customData: any[];
|
|
2087
|
+
reactProfilerTimings: any[];
|
|
2088
|
+
errorCount: number;
|
|
2089
|
+
} | {
|
|
2090
|
+
legacyMetrics: {
|
|
2091
|
+
key: string;
|
|
2092
|
+
startTime: number | null;
|
|
2093
|
+
stopTime: number | null;
|
|
2094
|
+
type: string;
|
|
2095
|
+
reactUFOName: string | undefined;
|
|
2096
|
+
fmp: number | null;
|
|
2097
|
+
source: string;
|
|
2098
|
+
timings: {
|
|
2099
|
+
[key: string]: {
|
|
2100
|
+
startTime: number;
|
|
2101
|
+
endTime: number;
|
|
2102
|
+
};
|
|
2103
|
+
};
|
|
2104
|
+
submetrics: any;
|
|
2105
|
+
pageVisibleState: string | undefined;
|
|
2106
|
+
}[];
|
|
2107
|
+
initialPageLoadExtraTimings: {
|
|
2108
|
+
label: string;
|
|
2109
|
+
data: any;
|
|
2110
|
+
}[];
|
|
2111
|
+
SSRTimings: {
|
|
2112
|
+
label: string;
|
|
2113
|
+
data: any;
|
|
2114
|
+
}[];
|
|
2115
|
+
errors: {
|
|
2116
|
+
labelStack: string | {
|
|
2117
|
+
s?: string | undefined;
|
|
2118
|
+
n: string;
|
|
2119
|
+
}[] | null;
|
|
2120
|
+
name: string;
|
|
2121
|
+
errorType: string;
|
|
2122
|
+
errorMessage: string;
|
|
2123
|
+
errorStack?: string | undefined;
|
|
2124
|
+
forcedError?: boolean | undefined;
|
|
2125
|
+
}[];
|
|
2126
|
+
holdActive: import("../common").HoldActive[];
|
|
2127
|
+
redirects: {
|
|
2128
|
+
labelStack: OptimizedLabelStack;
|
|
2129
|
+
startTime: number;
|
|
2130
|
+
endTime: number;
|
|
2131
|
+
}[];
|
|
2132
|
+
holdInfo: any[];
|
|
2133
|
+
spans: {
|
|
2134
|
+
labelStack: OptimizedLabelStack;
|
|
2135
|
+
startTime: number;
|
|
2136
|
+
endTime: number;
|
|
2137
|
+
type: string;
|
|
2138
|
+
}[];
|
|
2139
|
+
requestInfo: {
|
|
2140
|
+
labelStack: OptimizedLabelStack;
|
|
2141
|
+
startTime: number;
|
|
2142
|
+
endTime: number;
|
|
2143
|
+
}[];
|
|
2144
|
+
customTimings: {
|
|
2145
|
+
labelStack: OptimizedLabelStack;
|
|
2146
|
+
startTime: number;
|
|
2147
|
+
endTime: number;
|
|
2148
|
+
}[];
|
|
2149
|
+
bundleEvalTimings: {
|
|
2150
|
+
label: string;
|
|
2151
|
+
data: any;
|
|
2152
|
+
}[];
|
|
2153
|
+
resourceTimings: {
|
|
2154
|
+
label: string;
|
|
2155
|
+
data: any;
|
|
2156
|
+
}[];
|
|
2157
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
2158
|
+
namePrefix: string;
|
|
2159
|
+
segmentPrefix: string;
|
|
2160
|
+
interactionId: string;
|
|
2161
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
2162
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
2163
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
2164
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
2165
|
+
rate: number;
|
|
2166
|
+
routeName: string | null;
|
|
2167
|
+
type: InteractionType;
|
|
2168
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
2169
|
+
featureFlags: {
|
|
2170
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
2171
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
2172
|
+
} | undefined;
|
|
2173
|
+
previousInteractionName: string | undefined;
|
|
2174
|
+
isPreviousInteractionAborted: boolean;
|
|
2175
|
+
abortedByInteractionName: string | undefined;
|
|
2176
|
+
apdex: {
|
|
2177
|
+
labelStack?: string | {
|
|
2178
|
+
s?: string | undefined;
|
|
2179
|
+
n: string;
|
|
2180
|
+
}[] | undefined;
|
|
2181
|
+
stopTime: number;
|
|
2182
|
+
key: string;
|
|
2183
|
+
startTime?: number | undefined;
|
|
2184
|
+
}[];
|
|
2185
|
+
end: number;
|
|
2186
|
+
start: number;
|
|
2187
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2188
|
+
labelStack: string | {
|
|
2189
|
+
s?: string | undefined;
|
|
2190
|
+
n: string;
|
|
2191
|
+
}[];
|
|
2192
|
+
}[];
|
|
2193
|
+
marks: {
|
|
2194
|
+
labelStack: string | {
|
|
2195
|
+
s?: string | undefined;
|
|
2196
|
+
n: string;
|
|
2197
|
+
}[] | null;
|
|
2198
|
+
time: number;
|
|
2199
|
+
type: import("../common").MarkType;
|
|
2200
|
+
name: string;
|
|
2201
|
+
}[];
|
|
2202
|
+
customData: any[];
|
|
2203
|
+
reactProfilerTimings: any[];
|
|
2204
|
+
errorCount: number;
|
|
2205
|
+
};
|
|
2206
|
+
'ufo:payloadTime': number;
|
|
2207
|
+
stylesheets?: undefined;
|
|
2208
|
+
styleElements?: undefined;
|
|
2209
|
+
styleProps?: undefined;
|
|
2210
|
+
styleDeclarations?: undefined;
|
|
2211
|
+
cssrules?: undefined;
|
|
2212
|
+
'metrics:navigation': {
|
|
2213
|
+
redirectStart: number;
|
|
2214
|
+
redirectEnd: number;
|
|
2215
|
+
fetchStart: number;
|
|
2216
|
+
domainLookupStart: number;
|
|
2217
|
+
domainLookupEnd: number;
|
|
2218
|
+
connectStart: number;
|
|
2219
|
+
connectEnd: number;
|
|
2220
|
+
secureConnectionStart: number;
|
|
2221
|
+
requestStart: number;
|
|
2222
|
+
responseStart: number;
|
|
2223
|
+
responseEnd: number;
|
|
2224
|
+
encodedBodySize: number;
|
|
2225
|
+
decodedBodySize: number;
|
|
2226
|
+
transferSize: number;
|
|
2227
|
+
redirectCount: number;
|
|
2228
|
+
type: NavigationTimingType;
|
|
2229
|
+
unloadEventEnd: number;
|
|
2230
|
+
unloadEventStart: number;
|
|
2231
|
+
workerStart: number;
|
|
2232
|
+
nextHopProtocol: string;
|
|
2233
|
+
};
|
|
2234
|
+
'ssr:success': boolean | undefined;
|
|
2235
|
+
'ssr:featureFlags': ssr.SSRFeatureFlags | undefined;
|
|
2236
|
+
'event:browser:name'?: string | undefined;
|
|
2237
|
+
'event:browser:version'?: string | undefined;
|
|
2238
|
+
'event:cpus'?: number | undefined;
|
|
2239
|
+
'event:memory'?: number | undefined;
|
|
2240
|
+
'event:network:effectiveType'?: string | undefined;
|
|
2241
|
+
'event:network:rtt'?: number | undefined;
|
|
2242
|
+
'event:network:downlink'?: number | undefined;
|
|
2243
|
+
'event:localHour'?: number | undefined;
|
|
2244
|
+
'event:localDayOfWeek'?: number | undefined;
|
|
2245
|
+
'event:localTimezoneOffset'?: number | undefined;
|
|
2246
|
+
'event:hostname': string;
|
|
2247
|
+
'event:product': string;
|
|
2248
|
+
'event:schema': string;
|
|
2249
|
+
'event:sizeInKb': number;
|
|
2250
|
+
'event:source': {
|
|
2251
|
+
name: string;
|
|
2252
|
+
version: string;
|
|
2253
|
+
payloadSource: string;
|
|
2254
|
+
};
|
|
2255
|
+
'event:region': string;
|
|
2256
|
+
'experience:key': string;
|
|
2257
|
+
'experience:name': string;
|
|
2258
|
+
} | {
|
|
2259
|
+
errorCount: number;
|
|
2260
|
+
interactionMetrics: {
|
|
2261
|
+
legacyMetrics?: undefined;
|
|
2262
|
+
initialPageLoadExtraTimings?: undefined;
|
|
2263
|
+
SSRTimings?: undefined;
|
|
2264
|
+
errors?: undefined;
|
|
2265
|
+
holdActive?: undefined;
|
|
2266
|
+
redirects?: undefined;
|
|
2267
|
+
holdInfo?: undefined;
|
|
2268
|
+
spans?: undefined;
|
|
2269
|
+
requestInfo?: undefined;
|
|
2270
|
+
customTimings?: undefined;
|
|
2271
|
+
bundleEvalTimings?: undefined;
|
|
2272
|
+
resourceTimings?: undefined;
|
|
2273
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
2274
|
+
namePrefix: string;
|
|
2275
|
+
segmentPrefix: string;
|
|
2276
|
+
interactionId: string;
|
|
2277
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
2278
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
2279
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
2280
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
2281
|
+
rate: number;
|
|
2282
|
+
routeName: string | null;
|
|
2283
|
+
type: InteractionType;
|
|
2284
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
2285
|
+
featureFlags: {
|
|
2286
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
2287
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
2288
|
+
} | undefined;
|
|
2289
|
+
previousInteractionName: string | undefined;
|
|
2290
|
+
isPreviousInteractionAborted: boolean;
|
|
2291
|
+
abortedByInteractionName: string | undefined;
|
|
2292
|
+
apdex: {
|
|
2293
|
+
labelStack?: string | {
|
|
2294
|
+
s?: string | undefined;
|
|
2295
|
+
n: string;
|
|
2296
|
+
}[] | undefined;
|
|
2297
|
+
stopTime: number;
|
|
2298
|
+
key: string;
|
|
2299
|
+
startTime?: number | undefined;
|
|
2300
|
+
}[];
|
|
2301
|
+
end: number;
|
|
2302
|
+
start: number;
|
|
2303
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2304
|
+
labelStack: string | {
|
|
2305
|
+
s?: string | undefined;
|
|
2306
|
+
n: string;
|
|
2307
|
+
}[];
|
|
2308
|
+
}[];
|
|
2309
|
+
marks: {
|
|
2310
|
+
labelStack: string | {
|
|
2311
|
+
s?: string | undefined;
|
|
2312
|
+
n: string;
|
|
2313
|
+
}[] | null;
|
|
2314
|
+
time: number;
|
|
2315
|
+
type: import("../common").MarkType;
|
|
2316
|
+
name: string;
|
|
2317
|
+
}[];
|
|
2318
|
+
customData: any[];
|
|
2319
|
+
reactProfilerTimings: any[];
|
|
2320
|
+
errorCount: number;
|
|
2321
|
+
} | {
|
|
2322
|
+
legacyMetrics: {
|
|
2323
|
+
key: string;
|
|
2324
|
+
startTime: number | null;
|
|
2325
|
+
stopTime: number | null;
|
|
2326
|
+
type: string;
|
|
2327
|
+
reactUFOName: string | undefined;
|
|
2328
|
+
fmp: number | null;
|
|
2329
|
+
source: string;
|
|
2330
|
+
timings: {
|
|
2331
|
+
[key: string]: {
|
|
2332
|
+
startTime: number;
|
|
2333
|
+
endTime: number;
|
|
2334
|
+
};
|
|
2335
|
+
};
|
|
2336
|
+
submetrics: any;
|
|
2337
|
+
pageVisibleState: string | undefined;
|
|
2338
|
+
}[];
|
|
2339
|
+
initialPageLoadExtraTimings?: undefined;
|
|
2340
|
+
SSRTimings?: undefined;
|
|
2341
|
+
errors?: undefined;
|
|
2342
|
+
holdActive?: undefined;
|
|
2343
|
+
redirects?: undefined;
|
|
2344
|
+
holdInfo?: undefined;
|
|
2345
|
+
spans?: undefined;
|
|
2346
|
+
requestInfo?: undefined;
|
|
2347
|
+
customTimings?: undefined;
|
|
2348
|
+
bundleEvalTimings?: undefined;
|
|
2349
|
+
resourceTimings?: undefined;
|
|
2350
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
2351
|
+
namePrefix: string;
|
|
2352
|
+
segmentPrefix: string;
|
|
2353
|
+
interactionId: string;
|
|
2354
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
2355
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
2356
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
2357
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
2358
|
+
rate: number;
|
|
2359
|
+
routeName: string | null;
|
|
2360
|
+
type: InteractionType;
|
|
2361
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
2362
|
+
featureFlags: {
|
|
2363
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
2364
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
2365
|
+
} | undefined;
|
|
2366
|
+
previousInteractionName: string | undefined;
|
|
2367
|
+
isPreviousInteractionAborted: boolean;
|
|
2368
|
+
abortedByInteractionName: string | undefined;
|
|
2369
|
+
apdex: {
|
|
2370
|
+
labelStack?: string | {
|
|
2371
|
+
s?: string | undefined;
|
|
2372
|
+
n: string;
|
|
2373
|
+
}[] | undefined;
|
|
2374
|
+
stopTime: number;
|
|
2375
|
+
key: string;
|
|
2376
|
+
startTime?: number | undefined;
|
|
2377
|
+
}[];
|
|
2378
|
+
end: number;
|
|
2379
|
+
start: number;
|
|
2380
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2381
|
+
labelStack: string | {
|
|
2382
|
+
s?: string | undefined;
|
|
2383
|
+
n: string;
|
|
2384
|
+
}[];
|
|
2385
|
+
}[];
|
|
2386
|
+
marks: {
|
|
2387
|
+
labelStack: string | {
|
|
2388
|
+
s?: string | undefined;
|
|
2389
|
+
n: string;
|
|
2390
|
+
}[] | null;
|
|
2391
|
+
time: number;
|
|
2392
|
+
type: import("../common").MarkType;
|
|
2393
|
+
name: string;
|
|
2394
|
+
}[];
|
|
2395
|
+
customData: any[];
|
|
2396
|
+
reactProfilerTimings: any[];
|
|
2397
|
+
errorCount: number;
|
|
2398
|
+
} | {
|
|
2399
|
+
legacyMetrics?: undefined;
|
|
2400
|
+
initialPageLoadExtraTimings: {
|
|
2401
|
+
label: string;
|
|
2402
|
+
data: any;
|
|
2403
|
+
}[];
|
|
2404
|
+
SSRTimings: {
|
|
2405
|
+
label: string;
|
|
2406
|
+
data: any;
|
|
2407
|
+
}[];
|
|
2408
|
+
errors?: undefined;
|
|
2409
|
+
holdActive?: undefined;
|
|
2410
|
+
redirects?: undefined;
|
|
2411
|
+
holdInfo?: undefined;
|
|
2412
|
+
spans?: undefined;
|
|
2413
|
+
requestInfo?: undefined;
|
|
2414
|
+
customTimings?: undefined;
|
|
2415
|
+
bundleEvalTimings?: undefined;
|
|
2416
|
+
resourceTimings?: undefined;
|
|
2417
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
2418
|
+
namePrefix: string;
|
|
2419
|
+
segmentPrefix: string;
|
|
2420
|
+
interactionId: string;
|
|
2421
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
2422
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
2423
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
2424
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
2425
|
+
rate: number;
|
|
2426
|
+
routeName: string | null;
|
|
2427
|
+
type: InteractionType;
|
|
2428
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
2429
|
+
featureFlags: {
|
|
2430
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
2431
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
2432
|
+
} | undefined;
|
|
2433
|
+
previousInteractionName: string | undefined;
|
|
2434
|
+
isPreviousInteractionAborted: boolean;
|
|
2435
|
+
abortedByInteractionName: string | undefined;
|
|
2436
|
+
apdex: {
|
|
2437
|
+
labelStack?: string | {
|
|
2438
|
+
s?: string | undefined;
|
|
2439
|
+
n: string;
|
|
2440
|
+
}[] | undefined;
|
|
2441
|
+
stopTime: number;
|
|
2442
|
+
key: string;
|
|
2443
|
+
startTime?: number | undefined;
|
|
2444
|
+
}[];
|
|
2445
|
+
end: number;
|
|
2446
|
+
start: number;
|
|
2447
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2448
|
+
labelStack: string | {
|
|
2449
|
+
s?: string | undefined;
|
|
2450
|
+
n: string;
|
|
2451
|
+
}[];
|
|
2452
|
+
}[];
|
|
2453
|
+
marks: {
|
|
2454
|
+
labelStack: string | {
|
|
2455
|
+
s?: string | undefined;
|
|
2456
|
+
n: string;
|
|
2457
|
+
}[] | null;
|
|
2458
|
+
time: number;
|
|
2459
|
+
type: import("../common").MarkType;
|
|
2460
|
+
name: string;
|
|
2461
|
+
}[];
|
|
2462
|
+
customData: any[];
|
|
2463
|
+
reactProfilerTimings: any[];
|
|
2464
|
+
errorCount: number;
|
|
2465
|
+
} | {
|
|
2466
|
+
legacyMetrics: {
|
|
2467
|
+
key: string;
|
|
2468
|
+
startTime: number | null;
|
|
2469
|
+
stopTime: number | null;
|
|
2470
|
+
type: string;
|
|
2471
|
+
reactUFOName: string | undefined;
|
|
2472
|
+
fmp: number | null;
|
|
2473
|
+
source: string;
|
|
2474
|
+
timings: {
|
|
2475
|
+
[key: string]: {
|
|
2476
|
+
startTime: number;
|
|
2477
|
+
endTime: number;
|
|
2478
|
+
};
|
|
2479
|
+
};
|
|
2480
|
+
submetrics: any;
|
|
2481
|
+
pageVisibleState: string | undefined;
|
|
2482
|
+
}[];
|
|
2483
|
+
initialPageLoadExtraTimings: {
|
|
2484
|
+
label: string;
|
|
2485
|
+
data: any;
|
|
2486
|
+
}[];
|
|
2487
|
+
SSRTimings: {
|
|
2488
|
+
label: string;
|
|
2489
|
+
data: any;
|
|
2490
|
+
}[];
|
|
2491
|
+
errors?: undefined;
|
|
2492
|
+
holdActive?: undefined;
|
|
2493
|
+
redirects?: undefined;
|
|
2494
|
+
holdInfo?: undefined;
|
|
2495
|
+
spans?: undefined;
|
|
2496
|
+
requestInfo?: undefined;
|
|
2497
|
+
customTimings?: undefined;
|
|
2498
|
+
bundleEvalTimings?: undefined;
|
|
2499
|
+
resourceTimings?: undefined;
|
|
2500
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
2501
|
+
namePrefix: string;
|
|
2502
|
+
segmentPrefix: string;
|
|
2503
|
+
interactionId: string;
|
|
2504
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
2505
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
2506
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
2507
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
2508
|
+
rate: number;
|
|
2509
|
+
routeName: string | null;
|
|
2510
|
+
type: InteractionType;
|
|
2511
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
2512
|
+
featureFlags: {
|
|
2513
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
2514
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
2515
|
+
} | undefined;
|
|
2516
|
+
previousInteractionName: string | undefined;
|
|
2517
|
+
isPreviousInteractionAborted: boolean;
|
|
2518
|
+
abortedByInteractionName: string | undefined;
|
|
2519
|
+
apdex: {
|
|
2520
|
+
labelStack?: string | {
|
|
2521
|
+
s?: string | undefined;
|
|
2522
|
+
n: string;
|
|
2523
|
+
}[] | undefined;
|
|
2524
|
+
stopTime: number;
|
|
2525
|
+
key: string;
|
|
2526
|
+
startTime?: number | undefined;
|
|
2527
|
+
}[];
|
|
2528
|
+
end: number;
|
|
2529
|
+
start: number;
|
|
2530
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2531
|
+
labelStack: string | {
|
|
2532
|
+
s?: string | undefined;
|
|
2533
|
+
n: string;
|
|
2534
|
+
}[];
|
|
2535
|
+
}[];
|
|
2536
|
+
marks: {
|
|
2537
|
+
labelStack: string | {
|
|
2538
|
+
s?: string | undefined;
|
|
2539
|
+
n: string;
|
|
2540
|
+
}[] | null;
|
|
2541
|
+
time: number;
|
|
2542
|
+
type: import("../common").MarkType;
|
|
2543
|
+
name: string;
|
|
2544
|
+
}[];
|
|
2545
|
+
customData: any[];
|
|
2546
|
+
reactProfilerTimings: any[];
|
|
2547
|
+
errorCount: number;
|
|
2548
|
+
} | {
|
|
2549
|
+
legacyMetrics?: undefined;
|
|
2550
|
+
initialPageLoadExtraTimings?: undefined;
|
|
2551
|
+
SSRTimings?: undefined;
|
|
2552
|
+
errors: {
|
|
2553
|
+
labelStack: string | {
|
|
2554
|
+
s?: string | undefined;
|
|
2555
|
+
n: string;
|
|
2556
|
+
}[] | null;
|
|
2557
|
+
name: string;
|
|
2558
|
+
errorType: string;
|
|
2559
|
+
errorMessage: string;
|
|
2560
|
+
errorStack?: string | undefined;
|
|
2561
|
+
forcedError?: boolean | undefined;
|
|
2562
|
+
}[];
|
|
2563
|
+
holdActive: import("../common").HoldActive[];
|
|
2564
|
+
redirects: {
|
|
2565
|
+
labelStack: OptimizedLabelStack;
|
|
2566
|
+
startTime: number;
|
|
2567
|
+
endTime: number;
|
|
2568
|
+
}[];
|
|
2569
|
+
holdInfo: any[];
|
|
2570
|
+
spans: {
|
|
2571
|
+
labelStack: OptimizedLabelStack;
|
|
2572
|
+
startTime: number;
|
|
2573
|
+
endTime: number;
|
|
2574
|
+
type: string;
|
|
2575
|
+
}[];
|
|
2576
|
+
requestInfo: {
|
|
2577
|
+
labelStack: OptimizedLabelStack;
|
|
2578
|
+
startTime: number;
|
|
2579
|
+
endTime: number;
|
|
2580
|
+
}[];
|
|
2581
|
+
customTimings: {
|
|
2582
|
+
labelStack: OptimizedLabelStack;
|
|
2583
|
+
startTime: number;
|
|
2584
|
+
endTime: number;
|
|
2585
|
+
}[];
|
|
2586
|
+
bundleEvalTimings: {
|
|
2587
|
+
label: string;
|
|
2588
|
+
data: any;
|
|
2589
|
+
}[];
|
|
2590
|
+
resourceTimings: {
|
|
2591
|
+
label: string;
|
|
2592
|
+
data: any;
|
|
2593
|
+
}[];
|
|
2594
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
2595
|
+
namePrefix: string;
|
|
2596
|
+
segmentPrefix: string;
|
|
2597
|
+
interactionId: string;
|
|
2598
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
2599
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
2600
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
2601
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
2602
|
+
rate: number;
|
|
2603
|
+
routeName: string | null;
|
|
2604
|
+
type: InteractionType;
|
|
2605
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
2606
|
+
featureFlags: {
|
|
2607
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
2608
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
2609
|
+
} | undefined;
|
|
2610
|
+
previousInteractionName: string | undefined;
|
|
2611
|
+
isPreviousInteractionAborted: boolean;
|
|
2612
|
+
abortedByInteractionName: string | undefined;
|
|
2613
|
+
apdex: {
|
|
2614
|
+
labelStack?: string | {
|
|
2615
|
+
s?: string | undefined;
|
|
2616
|
+
n: string;
|
|
2617
|
+
}[] | undefined;
|
|
2618
|
+
stopTime: number;
|
|
2619
|
+
key: string;
|
|
2620
|
+
startTime?: number | undefined;
|
|
2621
|
+
}[];
|
|
2622
|
+
end: number;
|
|
2623
|
+
start: number;
|
|
2624
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2625
|
+
labelStack: string | {
|
|
2626
|
+
s?: string | undefined;
|
|
2627
|
+
n: string;
|
|
2628
|
+
}[];
|
|
2629
|
+
}[];
|
|
2630
|
+
marks: {
|
|
2631
|
+
labelStack: string | {
|
|
2632
|
+
s?: string | undefined;
|
|
2633
|
+
n: string;
|
|
2634
|
+
}[] | null;
|
|
2635
|
+
time: number;
|
|
2636
|
+
type: import("../common").MarkType;
|
|
2637
|
+
name: string;
|
|
2638
|
+
}[];
|
|
2639
|
+
customData: any[];
|
|
2640
|
+
reactProfilerTimings: any[];
|
|
2641
|
+
errorCount: number;
|
|
2642
|
+
} | {
|
|
2643
|
+
legacyMetrics: {
|
|
2644
|
+
key: string;
|
|
2645
|
+
startTime: number | null;
|
|
2646
|
+
stopTime: number | null;
|
|
2647
|
+
type: string;
|
|
2648
|
+
reactUFOName: string | undefined;
|
|
2649
|
+
fmp: number | null;
|
|
2650
|
+
source: string;
|
|
2651
|
+
timings: {
|
|
2652
|
+
[key: string]: {
|
|
2653
|
+
startTime: number;
|
|
2654
|
+
endTime: number;
|
|
2655
|
+
};
|
|
2656
|
+
};
|
|
2657
|
+
submetrics: any;
|
|
2658
|
+
pageVisibleState: string | undefined;
|
|
2659
|
+
}[];
|
|
2660
|
+
initialPageLoadExtraTimings?: undefined;
|
|
2661
|
+
SSRTimings?: undefined;
|
|
2662
|
+
errors: {
|
|
2663
|
+
labelStack: string | {
|
|
2664
|
+
s?: string | undefined;
|
|
2665
|
+
n: string;
|
|
2666
|
+
}[] | null;
|
|
2667
|
+
name: string;
|
|
2668
|
+
errorType: string;
|
|
2669
|
+
errorMessage: string;
|
|
2670
|
+
errorStack?: string | undefined;
|
|
2671
|
+
forcedError?: boolean | undefined;
|
|
2672
|
+
}[];
|
|
2673
|
+
holdActive: import("../common").HoldActive[];
|
|
2674
|
+
redirects: {
|
|
2675
|
+
labelStack: OptimizedLabelStack;
|
|
2676
|
+
startTime: number;
|
|
2677
|
+
endTime: number;
|
|
2678
|
+
}[];
|
|
2679
|
+
holdInfo: any[];
|
|
2680
|
+
spans: {
|
|
2681
|
+
labelStack: OptimizedLabelStack;
|
|
2682
|
+
startTime: number;
|
|
2683
|
+
endTime: number;
|
|
2684
|
+
type: string;
|
|
2685
|
+
}[];
|
|
2686
|
+
requestInfo: {
|
|
2687
|
+
labelStack: OptimizedLabelStack;
|
|
2688
|
+
startTime: number;
|
|
2689
|
+
endTime: number;
|
|
2690
|
+
}[];
|
|
2691
|
+
customTimings: {
|
|
2692
|
+
labelStack: OptimizedLabelStack;
|
|
2693
|
+
startTime: number;
|
|
2694
|
+
endTime: number;
|
|
2695
|
+
}[];
|
|
2696
|
+
bundleEvalTimings: {
|
|
2697
|
+
label: string;
|
|
2698
|
+
data: any;
|
|
2699
|
+
}[];
|
|
2700
|
+
resourceTimings: {
|
|
2701
|
+
label: string;
|
|
2702
|
+
data: any;
|
|
2703
|
+
}[];
|
|
2704
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
2705
|
+
namePrefix: string;
|
|
2706
|
+
segmentPrefix: string;
|
|
2707
|
+
interactionId: string;
|
|
2708
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
2709
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
2710
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
2711
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
2712
|
+
rate: number;
|
|
2713
|
+
routeName: string | null;
|
|
2714
|
+
type: InteractionType;
|
|
2715
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
2716
|
+
featureFlags: {
|
|
2717
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
2718
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
2719
|
+
} | undefined;
|
|
2720
|
+
previousInteractionName: string | undefined;
|
|
2721
|
+
isPreviousInteractionAborted: boolean;
|
|
2722
|
+
abortedByInteractionName: string | undefined;
|
|
2723
|
+
apdex: {
|
|
2724
|
+
labelStack?: string | {
|
|
2725
|
+
s?: string | undefined;
|
|
2726
|
+
n: string;
|
|
2727
|
+
}[] | undefined;
|
|
2728
|
+
stopTime: number;
|
|
2729
|
+
key: string;
|
|
2730
|
+
startTime?: number | undefined;
|
|
2731
|
+
}[];
|
|
2732
|
+
end: number;
|
|
2733
|
+
start: number;
|
|
2734
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2735
|
+
labelStack: string | {
|
|
2736
|
+
s?: string | undefined;
|
|
2737
|
+
n: string;
|
|
2738
|
+
}[];
|
|
2739
|
+
}[];
|
|
2740
|
+
marks: {
|
|
2741
|
+
labelStack: string | {
|
|
2742
|
+
s?: string | undefined;
|
|
2743
|
+
n: string;
|
|
2744
|
+
}[] | null;
|
|
2745
|
+
time: number;
|
|
2746
|
+
type: import("../common").MarkType;
|
|
2747
|
+
name: string;
|
|
2748
|
+
}[];
|
|
2749
|
+
customData: any[];
|
|
2750
|
+
reactProfilerTimings: any[];
|
|
2751
|
+
errorCount: number;
|
|
2752
|
+
} | {
|
|
2753
|
+
legacyMetrics?: undefined;
|
|
2754
|
+
initialPageLoadExtraTimings: {
|
|
2755
|
+
label: string;
|
|
2756
|
+
data: any;
|
|
2757
|
+
}[];
|
|
2758
|
+
SSRTimings: {
|
|
2759
|
+
label: string;
|
|
2760
|
+
data: any;
|
|
2761
|
+
}[];
|
|
2762
|
+
errors: {
|
|
2763
|
+
labelStack: string | {
|
|
2764
|
+
s?: string | undefined;
|
|
2765
|
+
n: string;
|
|
2766
|
+
}[] | null;
|
|
2767
|
+
name: string;
|
|
2768
|
+
errorType: string;
|
|
2769
|
+
errorMessage: string;
|
|
2770
|
+
errorStack?: string | undefined;
|
|
2771
|
+
forcedError?: boolean | undefined;
|
|
2772
|
+
}[];
|
|
2773
|
+
holdActive: import("../common").HoldActive[];
|
|
2774
|
+
redirects: {
|
|
2775
|
+
labelStack: OptimizedLabelStack;
|
|
2776
|
+
startTime: number;
|
|
2777
|
+
endTime: number;
|
|
2778
|
+
}[];
|
|
2779
|
+
holdInfo: any[];
|
|
2780
|
+
spans: {
|
|
2781
|
+
labelStack: OptimizedLabelStack;
|
|
2782
|
+
startTime: number;
|
|
2783
|
+
endTime: number;
|
|
2784
|
+
type: string;
|
|
2785
|
+
}[];
|
|
2786
|
+
requestInfo: {
|
|
2787
|
+
labelStack: OptimizedLabelStack;
|
|
2788
|
+
startTime: number;
|
|
2789
|
+
endTime: number;
|
|
2790
|
+
}[];
|
|
2791
|
+
customTimings: {
|
|
2792
|
+
labelStack: OptimizedLabelStack;
|
|
2793
|
+
startTime: number;
|
|
2794
|
+
endTime: number;
|
|
2795
|
+
}[];
|
|
2796
|
+
bundleEvalTimings: {
|
|
2797
|
+
label: string;
|
|
2798
|
+
data: any;
|
|
2799
|
+
}[];
|
|
2800
|
+
resourceTimings: {
|
|
2801
|
+
label: string;
|
|
2802
|
+
data: any;
|
|
2803
|
+
}[];
|
|
2804
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
2805
|
+
namePrefix: string;
|
|
2806
|
+
segmentPrefix: string;
|
|
2807
|
+
interactionId: string;
|
|
2808
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
2809
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
2810
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
2811
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
2812
|
+
rate: number;
|
|
2813
|
+
routeName: string | null;
|
|
2814
|
+
type: InteractionType;
|
|
2815
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
2816
|
+
featureFlags: {
|
|
2817
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
2818
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
2819
|
+
} | undefined;
|
|
2820
|
+
previousInteractionName: string | undefined;
|
|
2821
|
+
isPreviousInteractionAborted: boolean;
|
|
2822
|
+
abortedByInteractionName: string | undefined;
|
|
2823
|
+
apdex: {
|
|
2824
|
+
labelStack?: string | {
|
|
2825
|
+
s?: string | undefined;
|
|
2826
|
+
n: string;
|
|
2827
|
+
}[] | undefined;
|
|
2828
|
+
stopTime: number;
|
|
2829
|
+
key: string;
|
|
2830
|
+
startTime?: number | undefined;
|
|
2831
|
+
}[];
|
|
2832
|
+
end: number;
|
|
2833
|
+
start: number;
|
|
2834
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2835
|
+
labelStack: string | {
|
|
2836
|
+
s?: string | undefined;
|
|
2837
|
+
n: string;
|
|
2838
|
+
}[];
|
|
2839
|
+
}[];
|
|
2840
|
+
marks: {
|
|
2841
|
+
labelStack: string | {
|
|
2842
|
+
s?: string | undefined;
|
|
2843
|
+
n: string;
|
|
2844
|
+
}[] | null;
|
|
2845
|
+
time: number;
|
|
2846
|
+
type: import("../common").MarkType;
|
|
2847
|
+
name: string;
|
|
2848
|
+
}[];
|
|
2849
|
+
customData: any[];
|
|
2850
|
+
reactProfilerTimings: any[];
|
|
2851
|
+
errorCount: number;
|
|
2852
|
+
} | {
|
|
2853
|
+
legacyMetrics: {
|
|
2854
|
+
key: string;
|
|
2855
|
+
startTime: number | null;
|
|
2856
|
+
stopTime: number | null;
|
|
2857
|
+
type: string;
|
|
2858
|
+
reactUFOName: string | undefined;
|
|
2859
|
+
fmp: number | null;
|
|
2860
|
+
source: string;
|
|
2861
|
+
timings: {
|
|
2862
|
+
[key: string]: {
|
|
2863
|
+
startTime: number;
|
|
2864
|
+
endTime: number;
|
|
2865
|
+
};
|
|
2866
|
+
};
|
|
2867
|
+
submetrics: any;
|
|
2868
|
+
pageVisibleState: string | undefined;
|
|
2869
|
+
}[];
|
|
2870
|
+
initialPageLoadExtraTimings: {
|
|
2871
|
+
label: string;
|
|
2872
|
+
data: any;
|
|
2873
|
+
}[];
|
|
2874
|
+
SSRTimings: {
|
|
2875
|
+
label: string;
|
|
2876
|
+
data: any;
|
|
2877
|
+
}[];
|
|
2878
|
+
errors: {
|
|
2879
|
+
labelStack: string | {
|
|
2880
|
+
s?: string | undefined;
|
|
2881
|
+
n: string;
|
|
2882
|
+
}[] | null;
|
|
2883
|
+
name: string;
|
|
2884
|
+
errorType: string;
|
|
2885
|
+
errorMessage: string;
|
|
2886
|
+
errorStack?: string | undefined;
|
|
2887
|
+
forcedError?: boolean | undefined;
|
|
2888
|
+
}[];
|
|
2889
|
+
holdActive: import("../common").HoldActive[];
|
|
2890
|
+
redirects: {
|
|
2891
|
+
labelStack: OptimizedLabelStack;
|
|
2892
|
+
startTime: number;
|
|
2893
|
+
endTime: number;
|
|
2894
|
+
}[];
|
|
2895
|
+
holdInfo: any[];
|
|
2896
|
+
spans: {
|
|
2897
|
+
labelStack: OptimizedLabelStack;
|
|
2898
|
+
startTime: number;
|
|
2899
|
+
endTime: number;
|
|
2900
|
+
type: string;
|
|
2901
|
+
}[];
|
|
2902
|
+
requestInfo: {
|
|
2903
|
+
labelStack: OptimizedLabelStack;
|
|
2904
|
+
startTime: number;
|
|
2905
|
+
endTime: number;
|
|
2906
|
+
}[];
|
|
2907
|
+
customTimings: {
|
|
2908
|
+
labelStack: OptimizedLabelStack;
|
|
2909
|
+
startTime: number;
|
|
2910
|
+
endTime: number;
|
|
2911
|
+
}[];
|
|
2912
|
+
bundleEvalTimings: {
|
|
2913
|
+
label: string;
|
|
2914
|
+
data: any;
|
|
2915
|
+
}[];
|
|
2916
|
+
resourceTimings: {
|
|
2917
|
+
label: string;
|
|
2918
|
+
data: any;
|
|
2919
|
+
}[];
|
|
2920
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
2921
|
+
namePrefix: string;
|
|
2922
|
+
segmentPrefix: string;
|
|
2923
|
+
interactionId: string;
|
|
2924
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
2925
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
2926
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
2927
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
2928
|
+
rate: number;
|
|
2929
|
+
routeName: string | null;
|
|
2930
|
+
type: InteractionType;
|
|
2931
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
2932
|
+
featureFlags: {
|
|
2933
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
2934
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
2935
|
+
} | undefined;
|
|
2936
|
+
previousInteractionName: string | undefined;
|
|
2937
|
+
isPreviousInteractionAborted: boolean;
|
|
2938
|
+
abortedByInteractionName: string | undefined;
|
|
2939
|
+
apdex: {
|
|
2940
|
+
labelStack?: string | {
|
|
2941
|
+
s?: string | undefined;
|
|
2942
|
+
n: string;
|
|
2943
|
+
}[] | undefined;
|
|
2944
|
+
stopTime: number;
|
|
2945
|
+
key: string;
|
|
2946
|
+
startTime?: number | undefined;
|
|
2947
|
+
}[];
|
|
2948
|
+
end: number;
|
|
2949
|
+
start: number;
|
|
2950
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2951
|
+
labelStack: string | {
|
|
2952
|
+
s?: string | undefined;
|
|
2953
|
+
n: string;
|
|
2954
|
+
}[];
|
|
2955
|
+
}[];
|
|
2956
|
+
marks: {
|
|
2957
|
+
labelStack: string | {
|
|
2958
|
+
s?: string | undefined;
|
|
2959
|
+
n: string;
|
|
2960
|
+
}[] | null;
|
|
2961
|
+
time: number;
|
|
2962
|
+
type: import("../common").MarkType;
|
|
2963
|
+
name: string;
|
|
2964
|
+
}[];
|
|
2965
|
+
customData: any[];
|
|
2966
|
+
reactProfilerTimings: any[];
|
|
2967
|
+
errorCount: number;
|
|
2968
|
+
};
|
|
2969
|
+
'ufo:payloadTime': number;
|
|
2970
|
+
stylesheets: number;
|
|
2971
|
+
styleElements: number;
|
|
2972
|
+
styleProps: number;
|
|
2973
|
+
styleDeclarations: number;
|
|
2974
|
+
cssrules: number;
|
|
1442
2975
|
'metrics:navigation': {
|
|
1443
2976
|
redirectStart: number;
|
|
1444
2977
|
redirectEnd: number;
|
|
@@ -1486,6 +3019,1497 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1486
3019
|
'experience:key': string;
|
|
1487
3020
|
'experience:name': string;
|
|
1488
3021
|
} | {
|
|
3022
|
+
errorCount: number;
|
|
3023
|
+
interactionMetrics: {
|
|
3024
|
+
legacyMetrics?: undefined;
|
|
3025
|
+
initialPageLoadExtraTimings?: undefined;
|
|
3026
|
+
SSRTimings?: undefined;
|
|
3027
|
+
errors?: undefined;
|
|
3028
|
+
holdActive?: undefined;
|
|
3029
|
+
redirects?: undefined;
|
|
3030
|
+
holdInfo?: undefined;
|
|
3031
|
+
spans?: undefined;
|
|
3032
|
+
requestInfo?: undefined;
|
|
3033
|
+
customTimings?: undefined;
|
|
3034
|
+
bundleEvalTimings?: undefined;
|
|
3035
|
+
resourceTimings?: undefined;
|
|
3036
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
3037
|
+
namePrefix: string;
|
|
3038
|
+
segmentPrefix: string;
|
|
3039
|
+
interactionId: string;
|
|
3040
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
3041
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
3042
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
3043
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
3044
|
+
rate: number;
|
|
3045
|
+
routeName: string | null;
|
|
3046
|
+
type: InteractionType;
|
|
3047
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
3048
|
+
featureFlags: {
|
|
3049
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
3050
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
3051
|
+
} | undefined;
|
|
3052
|
+
previousInteractionName: string | undefined;
|
|
3053
|
+
isPreviousInteractionAborted: boolean;
|
|
3054
|
+
abortedByInteractionName: string | undefined;
|
|
3055
|
+
apdex: {
|
|
3056
|
+
labelStack?: string | {
|
|
3057
|
+
s?: string | undefined;
|
|
3058
|
+
n: string;
|
|
3059
|
+
}[] | undefined;
|
|
3060
|
+
stopTime: number;
|
|
3061
|
+
key: string;
|
|
3062
|
+
startTime?: number | undefined;
|
|
3063
|
+
}[];
|
|
3064
|
+
end: number;
|
|
3065
|
+
start: number;
|
|
3066
|
+
segments: import("./common/utils").SegmentTree | {
|
|
3067
|
+
labelStack: string | {
|
|
3068
|
+
s?: string | undefined;
|
|
3069
|
+
n: string;
|
|
3070
|
+
}[];
|
|
3071
|
+
}[];
|
|
3072
|
+
marks: {
|
|
3073
|
+
labelStack: string | {
|
|
3074
|
+
s?: string | undefined;
|
|
3075
|
+
n: string;
|
|
3076
|
+
}[] | null;
|
|
3077
|
+
time: number;
|
|
3078
|
+
type: import("../common").MarkType;
|
|
3079
|
+
name: string;
|
|
3080
|
+
}[];
|
|
3081
|
+
customData: any[];
|
|
3082
|
+
reactProfilerTimings: any[];
|
|
3083
|
+
errorCount: number;
|
|
3084
|
+
} | {
|
|
3085
|
+
legacyMetrics: {
|
|
3086
|
+
key: string;
|
|
3087
|
+
startTime: number | null;
|
|
3088
|
+
stopTime: number | null;
|
|
3089
|
+
type: string;
|
|
3090
|
+
reactUFOName: string | undefined;
|
|
3091
|
+
fmp: number | null;
|
|
3092
|
+
source: string;
|
|
3093
|
+
timings: {
|
|
3094
|
+
[key: string]: {
|
|
3095
|
+
startTime: number;
|
|
3096
|
+
endTime: number;
|
|
3097
|
+
};
|
|
3098
|
+
};
|
|
3099
|
+
submetrics: any;
|
|
3100
|
+
pageVisibleState: string | undefined;
|
|
3101
|
+
}[];
|
|
3102
|
+
initialPageLoadExtraTimings?: undefined;
|
|
3103
|
+
SSRTimings?: undefined;
|
|
3104
|
+
errors?: undefined;
|
|
3105
|
+
holdActive?: undefined;
|
|
3106
|
+
redirects?: undefined;
|
|
3107
|
+
holdInfo?: undefined;
|
|
3108
|
+
spans?: undefined;
|
|
3109
|
+
requestInfo?: undefined;
|
|
3110
|
+
customTimings?: undefined;
|
|
3111
|
+
bundleEvalTimings?: undefined;
|
|
3112
|
+
resourceTimings?: undefined;
|
|
3113
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
3114
|
+
namePrefix: string;
|
|
3115
|
+
segmentPrefix: string;
|
|
3116
|
+
interactionId: string;
|
|
3117
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
3118
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
3119
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
3120
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
3121
|
+
rate: number;
|
|
3122
|
+
routeName: string | null;
|
|
3123
|
+
type: InteractionType;
|
|
3124
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
3125
|
+
featureFlags: {
|
|
3126
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
3127
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
3128
|
+
} | undefined;
|
|
3129
|
+
previousInteractionName: string | undefined;
|
|
3130
|
+
isPreviousInteractionAborted: boolean;
|
|
3131
|
+
abortedByInteractionName: string | undefined;
|
|
3132
|
+
apdex: {
|
|
3133
|
+
labelStack?: string | {
|
|
3134
|
+
s?: string | undefined;
|
|
3135
|
+
n: string;
|
|
3136
|
+
}[] | undefined;
|
|
3137
|
+
stopTime: number;
|
|
3138
|
+
key: string;
|
|
3139
|
+
startTime?: number | undefined;
|
|
3140
|
+
}[];
|
|
3141
|
+
end: number;
|
|
3142
|
+
start: number;
|
|
3143
|
+
segments: import("./common/utils").SegmentTree | {
|
|
3144
|
+
labelStack: string | {
|
|
3145
|
+
s?: string | undefined;
|
|
3146
|
+
n: string;
|
|
3147
|
+
}[];
|
|
3148
|
+
}[];
|
|
3149
|
+
marks: {
|
|
3150
|
+
labelStack: string | {
|
|
3151
|
+
s?: string | undefined;
|
|
3152
|
+
n: string;
|
|
3153
|
+
}[] | null;
|
|
3154
|
+
time: number;
|
|
3155
|
+
type: import("../common").MarkType;
|
|
3156
|
+
name: string;
|
|
3157
|
+
}[];
|
|
3158
|
+
customData: any[];
|
|
3159
|
+
reactProfilerTimings: any[];
|
|
3160
|
+
errorCount: number;
|
|
3161
|
+
} | {
|
|
3162
|
+
legacyMetrics?: undefined;
|
|
3163
|
+
initialPageLoadExtraTimings: {
|
|
3164
|
+
label: string;
|
|
3165
|
+
data: any;
|
|
3166
|
+
}[];
|
|
3167
|
+
SSRTimings: {
|
|
3168
|
+
label: string;
|
|
3169
|
+
data: any;
|
|
3170
|
+
}[];
|
|
3171
|
+
errors?: undefined;
|
|
3172
|
+
holdActive?: undefined;
|
|
3173
|
+
redirects?: undefined;
|
|
3174
|
+
holdInfo?: undefined;
|
|
3175
|
+
spans?: undefined;
|
|
3176
|
+
requestInfo?: undefined;
|
|
3177
|
+
customTimings?: undefined;
|
|
3178
|
+
bundleEvalTimings?: undefined;
|
|
3179
|
+
resourceTimings?: undefined;
|
|
3180
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
3181
|
+
namePrefix: string;
|
|
3182
|
+
segmentPrefix: string;
|
|
3183
|
+
interactionId: string;
|
|
3184
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
3185
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
3186
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
3187
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
3188
|
+
rate: number;
|
|
3189
|
+
routeName: string | null;
|
|
3190
|
+
type: InteractionType;
|
|
3191
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
3192
|
+
featureFlags: {
|
|
3193
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
3194
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
3195
|
+
} | undefined;
|
|
3196
|
+
previousInteractionName: string | undefined;
|
|
3197
|
+
isPreviousInteractionAborted: boolean;
|
|
3198
|
+
abortedByInteractionName: string | undefined;
|
|
3199
|
+
apdex: {
|
|
3200
|
+
labelStack?: string | {
|
|
3201
|
+
s?: string | undefined;
|
|
3202
|
+
n: string;
|
|
3203
|
+
}[] | undefined;
|
|
3204
|
+
stopTime: number;
|
|
3205
|
+
key: string;
|
|
3206
|
+
startTime?: number | undefined;
|
|
3207
|
+
}[];
|
|
3208
|
+
end: number;
|
|
3209
|
+
start: number;
|
|
3210
|
+
segments: import("./common/utils").SegmentTree | {
|
|
3211
|
+
labelStack: string | {
|
|
3212
|
+
s?: string | undefined;
|
|
3213
|
+
n: string;
|
|
3214
|
+
}[];
|
|
3215
|
+
}[];
|
|
3216
|
+
marks: {
|
|
3217
|
+
labelStack: string | {
|
|
3218
|
+
s?: string | undefined;
|
|
3219
|
+
n: string;
|
|
3220
|
+
}[] | null;
|
|
3221
|
+
time: number;
|
|
3222
|
+
type: import("../common").MarkType;
|
|
3223
|
+
name: string;
|
|
3224
|
+
}[];
|
|
3225
|
+
customData: any[];
|
|
3226
|
+
reactProfilerTimings: any[];
|
|
3227
|
+
errorCount: number;
|
|
3228
|
+
} | {
|
|
3229
|
+
legacyMetrics: {
|
|
3230
|
+
key: string;
|
|
3231
|
+
startTime: number | null;
|
|
3232
|
+
stopTime: number | null;
|
|
3233
|
+
type: string;
|
|
3234
|
+
reactUFOName: string | undefined;
|
|
3235
|
+
fmp: number | null;
|
|
3236
|
+
source: string;
|
|
3237
|
+
timings: {
|
|
3238
|
+
[key: string]: {
|
|
3239
|
+
startTime: number;
|
|
3240
|
+
endTime: number;
|
|
3241
|
+
};
|
|
3242
|
+
};
|
|
3243
|
+
submetrics: any;
|
|
3244
|
+
pageVisibleState: string | undefined;
|
|
3245
|
+
}[];
|
|
3246
|
+
initialPageLoadExtraTimings: {
|
|
3247
|
+
label: string;
|
|
3248
|
+
data: any;
|
|
3249
|
+
}[];
|
|
3250
|
+
SSRTimings: {
|
|
3251
|
+
label: string;
|
|
3252
|
+
data: any;
|
|
3253
|
+
}[];
|
|
3254
|
+
errors?: undefined;
|
|
3255
|
+
holdActive?: undefined;
|
|
3256
|
+
redirects?: undefined;
|
|
3257
|
+
holdInfo?: undefined;
|
|
3258
|
+
spans?: undefined;
|
|
3259
|
+
requestInfo?: undefined;
|
|
3260
|
+
customTimings?: undefined;
|
|
3261
|
+
bundleEvalTimings?: undefined;
|
|
3262
|
+
resourceTimings?: undefined;
|
|
3263
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
3264
|
+
namePrefix: string;
|
|
3265
|
+
segmentPrefix: string;
|
|
3266
|
+
interactionId: string;
|
|
3267
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
3268
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
3269
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
3270
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
3271
|
+
rate: number;
|
|
3272
|
+
routeName: string | null;
|
|
3273
|
+
type: InteractionType;
|
|
3274
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
3275
|
+
featureFlags: {
|
|
3276
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
3277
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
3278
|
+
} | undefined;
|
|
3279
|
+
previousInteractionName: string | undefined;
|
|
3280
|
+
isPreviousInteractionAborted: boolean;
|
|
3281
|
+
abortedByInteractionName: string | undefined;
|
|
3282
|
+
apdex: {
|
|
3283
|
+
labelStack?: string | {
|
|
3284
|
+
s?: string | undefined;
|
|
3285
|
+
n: string;
|
|
3286
|
+
}[] | undefined;
|
|
3287
|
+
stopTime: number;
|
|
3288
|
+
key: string;
|
|
3289
|
+
startTime?: number | undefined;
|
|
3290
|
+
}[];
|
|
3291
|
+
end: number;
|
|
3292
|
+
start: number;
|
|
3293
|
+
segments: import("./common/utils").SegmentTree | {
|
|
3294
|
+
labelStack: string | {
|
|
3295
|
+
s?: string | undefined;
|
|
3296
|
+
n: string;
|
|
3297
|
+
}[];
|
|
3298
|
+
}[];
|
|
3299
|
+
marks: {
|
|
3300
|
+
labelStack: string | {
|
|
3301
|
+
s?: string | undefined;
|
|
3302
|
+
n: string;
|
|
3303
|
+
}[] | null;
|
|
3304
|
+
time: number;
|
|
3305
|
+
type: import("../common").MarkType;
|
|
3306
|
+
name: string;
|
|
3307
|
+
}[];
|
|
3308
|
+
customData: any[];
|
|
3309
|
+
reactProfilerTimings: any[];
|
|
3310
|
+
errorCount: number;
|
|
3311
|
+
} | {
|
|
3312
|
+
legacyMetrics?: undefined;
|
|
3313
|
+
initialPageLoadExtraTimings?: undefined;
|
|
3314
|
+
SSRTimings?: undefined;
|
|
3315
|
+
errors: {
|
|
3316
|
+
labelStack: string | {
|
|
3317
|
+
s?: string | undefined;
|
|
3318
|
+
n: string;
|
|
3319
|
+
}[] | null;
|
|
3320
|
+
name: string;
|
|
3321
|
+
errorType: string;
|
|
3322
|
+
errorMessage: string;
|
|
3323
|
+
errorStack?: string | undefined;
|
|
3324
|
+
forcedError?: boolean | undefined;
|
|
3325
|
+
}[];
|
|
3326
|
+
holdActive: import("../common").HoldActive[];
|
|
3327
|
+
redirects: {
|
|
3328
|
+
labelStack: OptimizedLabelStack;
|
|
3329
|
+
startTime: number;
|
|
3330
|
+
endTime: number;
|
|
3331
|
+
}[];
|
|
3332
|
+
holdInfo: any[];
|
|
3333
|
+
spans: {
|
|
3334
|
+
labelStack: OptimizedLabelStack;
|
|
3335
|
+
startTime: number;
|
|
3336
|
+
endTime: number;
|
|
3337
|
+
type: string;
|
|
3338
|
+
}[];
|
|
3339
|
+
requestInfo: {
|
|
3340
|
+
labelStack: OptimizedLabelStack;
|
|
3341
|
+
startTime: number;
|
|
3342
|
+
endTime: number;
|
|
3343
|
+
}[];
|
|
3344
|
+
customTimings: {
|
|
3345
|
+
labelStack: OptimizedLabelStack;
|
|
3346
|
+
startTime: number;
|
|
3347
|
+
endTime: number;
|
|
3348
|
+
}[];
|
|
3349
|
+
bundleEvalTimings: {
|
|
3350
|
+
label: string;
|
|
3351
|
+
data: any;
|
|
3352
|
+
}[];
|
|
3353
|
+
resourceTimings: {
|
|
3354
|
+
label: string;
|
|
3355
|
+
data: any;
|
|
3356
|
+
}[];
|
|
3357
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
3358
|
+
namePrefix: string;
|
|
3359
|
+
segmentPrefix: string;
|
|
3360
|
+
interactionId: string;
|
|
3361
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
3362
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
3363
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
3364
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
3365
|
+
rate: number;
|
|
3366
|
+
routeName: string | null;
|
|
3367
|
+
type: InteractionType;
|
|
3368
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
3369
|
+
featureFlags: {
|
|
3370
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
3371
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
3372
|
+
} | undefined;
|
|
3373
|
+
previousInteractionName: string | undefined;
|
|
3374
|
+
isPreviousInteractionAborted: boolean;
|
|
3375
|
+
abortedByInteractionName: string | undefined;
|
|
3376
|
+
apdex: {
|
|
3377
|
+
labelStack?: string | {
|
|
3378
|
+
s?: string | undefined;
|
|
3379
|
+
n: string;
|
|
3380
|
+
}[] | undefined;
|
|
3381
|
+
stopTime: number;
|
|
3382
|
+
key: string;
|
|
3383
|
+
startTime?: number | undefined;
|
|
3384
|
+
}[];
|
|
3385
|
+
end: number;
|
|
3386
|
+
start: number;
|
|
3387
|
+
segments: import("./common/utils").SegmentTree | {
|
|
3388
|
+
labelStack: string | {
|
|
3389
|
+
s?: string | undefined;
|
|
3390
|
+
n: string;
|
|
3391
|
+
}[];
|
|
3392
|
+
}[];
|
|
3393
|
+
marks: {
|
|
3394
|
+
labelStack: string | {
|
|
3395
|
+
s?: string | undefined;
|
|
3396
|
+
n: string;
|
|
3397
|
+
}[] | null;
|
|
3398
|
+
time: number;
|
|
3399
|
+
type: import("../common").MarkType;
|
|
3400
|
+
name: string;
|
|
3401
|
+
}[];
|
|
3402
|
+
customData: any[];
|
|
3403
|
+
reactProfilerTimings: any[];
|
|
3404
|
+
errorCount: number;
|
|
3405
|
+
} | {
|
|
3406
|
+
legacyMetrics: {
|
|
3407
|
+
key: string;
|
|
3408
|
+
startTime: number | null;
|
|
3409
|
+
stopTime: number | null;
|
|
3410
|
+
type: string;
|
|
3411
|
+
reactUFOName: string | undefined;
|
|
3412
|
+
fmp: number | null;
|
|
3413
|
+
source: string;
|
|
3414
|
+
timings: {
|
|
3415
|
+
[key: string]: {
|
|
3416
|
+
startTime: number;
|
|
3417
|
+
endTime: number;
|
|
3418
|
+
};
|
|
3419
|
+
};
|
|
3420
|
+
submetrics: any;
|
|
3421
|
+
pageVisibleState: string | undefined;
|
|
3422
|
+
}[];
|
|
3423
|
+
initialPageLoadExtraTimings?: undefined;
|
|
3424
|
+
SSRTimings?: undefined;
|
|
3425
|
+
errors: {
|
|
3426
|
+
labelStack: string | {
|
|
3427
|
+
s?: string | undefined;
|
|
3428
|
+
n: string;
|
|
3429
|
+
}[] | null;
|
|
3430
|
+
name: string;
|
|
3431
|
+
errorType: string;
|
|
3432
|
+
errorMessage: string;
|
|
3433
|
+
errorStack?: string | undefined;
|
|
3434
|
+
forcedError?: boolean | undefined;
|
|
3435
|
+
}[];
|
|
3436
|
+
holdActive: import("../common").HoldActive[];
|
|
3437
|
+
redirects: {
|
|
3438
|
+
labelStack: OptimizedLabelStack;
|
|
3439
|
+
startTime: number;
|
|
3440
|
+
endTime: number;
|
|
3441
|
+
}[];
|
|
3442
|
+
holdInfo: any[];
|
|
3443
|
+
spans: {
|
|
3444
|
+
labelStack: OptimizedLabelStack;
|
|
3445
|
+
startTime: number;
|
|
3446
|
+
endTime: number;
|
|
3447
|
+
type: string;
|
|
3448
|
+
}[];
|
|
3449
|
+
requestInfo: {
|
|
3450
|
+
labelStack: OptimizedLabelStack;
|
|
3451
|
+
startTime: number;
|
|
3452
|
+
endTime: number;
|
|
3453
|
+
}[];
|
|
3454
|
+
customTimings: {
|
|
3455
|
+
labelStack: OptimizedLabelStack;
|
|
3456
|
+
startTime: number;
|
|
3457
|
+
endTime: number;
|
|
3458
|
+
}[];
|
|
3459
|
+
bundleEvalTimings: {
|
|
3460
|
+
label: string;
|
|
3461
|
+
data: any;
|
|
3462
|
+
}[];
|
|
3463
|
+
resourceTimings: {
|
|
3464
|
+
label: string;
|
|
3465
|
+
data: any;
|
|
3466
|
+
}[];
|
|
3467
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
3468
|
+
namePrefix: string;
|
|
3469
|
+
segmentPrefix: string;
|
|
3470
|
+
interactionId: string;
|
|
3471
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
3472
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
3473
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
3474
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
3475
|
+
rate: number;
|
|
3476
|
+
routeName: string | null;
|
|
3477
|
+
type: InteractionType;
|
|
3478
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
3479
|
+
featureFlags: {
|
|
3480
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
3481
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
3482
|
+
} | undefined;
|
|
3483
|
+
previousInteractionName: string | undefined;
|
|
3484
|
+
isPreviousInteractionAborted: boolean;
|
|
3485
|
+
abortedByInteractionName: string | undefined;
|
|
3486
|
+
apdex: {
|
|
3487
|
+
labelStack?: string | {
|
|
3488
|
+
s?: string | undefined;
|
|
3489
|
+
n: string;
|
|
3490
|
+
}[] | undefined;
|
|
3491
|
+
stopTime: number;
|
|
3492
|
+
key: string;
|
|
3493
|
+
startTime?: number | undefined;
|
|
3494
|
+
}[];
|
|
3495
|
+
end: number;
|
|
3496
|
+
start: number;
|
|
3497
|
+
segments: import("./common/utils").SegmentTree | {
|
|
3498
|
+
labelStack: string | {
|
|
3499
|
+
s?: string | undefined;
|
|
3500
|
+
n: string;
|
|
3501
|
+
}[];
|
|
3502
|
+
}[];
|
|
3503
|
+
marks: {
|
|
3504
|
+
labelStack: string | {
|
|
3505
|
+
s?: string | undefined;
|
|
3506
|
+
n: string;
|
|
3507
|
+
}[] | null;
|
|
3508
|
+
time: number;
|
|
3509
|
+
type: import("../common").MarkType;
|
|
3510
|
+
name: string;
|
|
3511
|
+
}[];
|
|
3512
|
+
customData: any[];
|
|
3513
|
+
reactProfilerTimings: any[];
|
|
3514
|
+
errorCount: number;
|
|
3515
|
+
} | {
|
|
3516
|
+
legacyMetrics?: undefined;
|
|
3517
|
+
initialPageLoadExtraTimings: {
|
|
3518
|
+
label: string;
|
|
3519
|
+
data: any;
|
|
3520
|
+
}[];
|
|
3521
|
+
SSRTimings: {
|
|
3522
|
+
label: string;
|
|
3523
|
+
data: any;
|
|
3524
|
+
}[];
|
|
3525
|
+
errors: {
|
|
3526
|
+
labelStack: string | {
|
|
3527
|
+
s?: string | undefined;
|
|
3528
|
+
n: string;
|
|
3529
|
+
}[] | null;
|
|
3530
|
+
name: string;
|
|
3531
|
+
errorType: string;
|
|
3532
|
+
errorMessage: string;
|
|
3533
|
+
errorStack?: string | undefined;
|
|
3534
|
+
forcedError?: boolean | undefined;
|
|
3535
|
+
}[];
|
|
3536
|
+
holdActive: import("../common").HoldActive[];
|
|
3537
|
+
redirects: {
|
|
3538
|
+
labelStack: OptimizedLabelStack;
|
|
3539
|
+
startTime: number;
|
|
3540
|
+
endTime: number;
|
|
3541
|
+
}[];
|
|
3542
|
+
holdInfo: any[];
|
|
3543
|
+
spans: {
|
|
3544
|
+
labelStack: OptimizedLabelStack;
|
|
3545
|
+
startTime: number;
|
|
3546
|
+
endTime: number;
|
|
3547
|
+
type: string;
|
|
3548
|
+
}[];
|
|
3549
|
+
requestInfo: {
|
|
3550
|
+
labelStack: OptimizedLabelStack;
|
|
3551
|
+
startTime: number;
|
|
3552
|
+
endTime: number;
|
|
3553
|
+
}[];
|
|
3554
|
+
customTimings: {
|
|
3555
|
+
labelStack: OptimizedLabelStack;
|
|
3556
|
+
startTime: number;
|
|
3557
|
+
endTime: number;
|
|
3558
|
+
}[];
|
|
3559
|
+
bundleEvalTimings: {
|
|
3560
|
+
label: string;
|
|
3561
|
+
data: any;
|
|
3562
|
+
}[];
|
|
3563
|
+
resourceTimings: {
|
|
3564
|
+
label: string;
|
|
3565
|
+
data: any;
|
|
3566
|
+
}[];
|
|
3567
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
3568
|
+
namePrefix: string;
|
|
3569
|
+
segmentPrefix: string;
|
|
3570
|
+
interactionId: string;
|
|
3571
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
3572
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
3573
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
3574
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
3575
|
+
rate: number;
|
|
3576
|
+
routeName: string | null;
|
|
3577
|
+
type: InteractionType;
|
|
3578
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
3579
|
+
featureFlags: {
|
|
3580
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
3581
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
3582
|
+
} | undefined;
|
|
3583
|
+
previousInteractionName: string | undefined;
|
|
3584
|
+
isPreviousInteractionAborted: boolean;
|
|
3585
|
+
abortedByInteractionName: string | undefined;
|
|
3586
|
+
apdex: {
|
|
3587
|
+
labelStack?: string | {
|
|
3588
|
+
s?: string | undefined;
|
|
3589
|
+
n: string;
|
|
3590
|
+
}[] | undefined;
|
|
3591
|
+
stopTime: number;
|
|
3592
|
+
key: string;
|
|
3593
|
+
startTime?: number | undefined;
|
|
3594
|
+
}[];
|
|
3595
|
+
end: number;
|
|
3596
|
+
start: number;
|
|
3597
|
+
segments: import("./common/utils").SegmentTree | {
|
|
3598
|
+
labelStack: string | {
|
|
3599
|
+
s?: string | undefined;
|
|
3600
|
+
n: string;
|
|
3601
|
+
}[];
|
|
3602
|
+
}[];
|
|
3603
|
+
marks: {
|
|
3604
|
+
labelStack: string | {
|
|
3605
|
+
s?: string | undefined;
|
|
3606
|
+
n: string;
|
|
3607
|
+
}[] | null;
|
|
3608
|
+
time: number;
|
|
3609
|
+
type: import("../common").MarkType;
|
|
3610
|
+
name: string;
|
|
3611
|
+
}[];
|
|
3612
|
+
customData: any[];
|
|
3613
|
+
reactProfilerTimings: any[];
|
|
3614
|
+
errorCount: number;
|
|
3615
|
+
} | {
|
|
3616
|
+
legacyMetrics: {
|
|
3617
|
+
key: string;
|
|
3618
|
+
startTime: number | null;
|
|
3619
|
+
stopTime: number | null;
|
|
3620
|
+
type: string;
|
|
3621
|
+
reactUFOName: string | undefined;
|
|
3622
|
+
fmp: number | null;
|
|
3623
|
+
source: string;
|
|
3624
|
+
timings: {
|
|
3625
|
+
[key: string]: {
|
|
3626
|
+
startTime: number;
|
|
3627
|
+
endTime: number;
|
|
3628
|
+
};
|
|
3629
|
+
};
|
|
3630
|
+
submetrics: any;
|
|
3631
|
+
pageVisibleState: string | undefined;
|
|
3632
|
+
}[];
|
|
3633
|
+
initialPageLoadExtraTimings: {
|
|
3634
|
+
label: string;
|
|
3635
|
+
data: any;
|
|
3636
|
+
}[];
|
|
3637
|
+
SSRTimings: {
|
|
3638
|
+
label: string;
|
|
3639
|
+
data: any;
|
|
3640
|
+
}[];
|
|
3641
|
+
errors: {
|
|
3642
|
+
labelStack: string | {
|
|
3643
|
+
s?: string | undefined;
|
|
3644
|
+
n: string;
|
|
3645
|
+
}[] | null;
|
|
3646
|
+
name: string;
|
|
3647
|
+
errorType: string;
|
|
3648
|
+
errorMessage: string;
|
|
3649
|
+
errorStack?: string | undefined;
|
|
3650
|
+
forcedError?: boolean | undefined;
|
|
3651
|
+
}[];
|
|
3652
|
+
holdActive: import("../common").HoldActive[];
|
|
3653
|
+
redirects: {
|
|
3654
|
+
labelStack: OptimizedLabelStack;
|
|
3655
|
+
startTime: number;
|
|
3656
|
+
endTime: number;
|
|
3657
|
+
}[];
|
|
3658
|
+
holdInfo: any[];
|
|
3659
|
+
spans: {
|
|
3660
|
+
labelStack: OptimizedLabelStack;
|
|
3661
|
+
startTime: number;
|
|
3662
|
+
endTime: number;
|
|
3663
|
+
type: string;
|
|
3664
|
+
}[];
|
|
3665
|
+
requestInfo: {
|
|
3666
|
+
labelStack: OptimizedLabelStack;
|
|
3667
|
+
startTime: number;
|
|
3668
|
+
endTime: number;
|
|
3669
|
+
}[];
|
|
3670
|
+
customTimings: {
|
|
3671
|
+
labelStack: OptimizedLabelStack;
|
|
3672
|
+
startTime: number;
|
|
3673
|
+
endTime: number;
|
|
3674
|
+
}[];
|
|
3675
|
+
bundleEvalTimings: {
|
|
3676
|
+
label: string;
|
|
3677
|
+
data: any;
|
|
3678
|
+
}[];
|
|
3679
|
+
resourceTimings: {
|
|
3680
|
+
label: string;
|
|
3681
|
+
data: any;
|
|
3682
|
+
}[];
|
|
3683
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
3684
|
+
namePrefix: string;
|
|
3685
|
+
segmentPrefix: string;
|
|
3686
|
+
interactionId: string;
|
|
3687
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
3688
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
3689
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
3690
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
3691
|
+
rate: number;
|
|
3692
|
+
routeName: string | null;
|
|
3693
|
+
type: InteractionType;
|
|
3694
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
3695
|
+
featureFlags: {
|
|
3696
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
3697
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
3698
|
+
} | undefined;
|
|
3699
|
+
previousInteractionName: string | undefined;
|
|
3700
|
+
isPreviousInteractionAborted: boolean;
|
|
3701
|
+
abortedByInteractionName: string | undefined;
|
|
3702
|
+
apdex: {
|
|
3703
|
+
labelStack?: string | {
|
|
3704
|
+
s?: string | undefined;
|
|
3705
|
+
n: string;
|
|
3706
|
+
}[] | undefined;
|
|
3707
|
+
stopTime: number;
|
|
3708
|
+
key: string;
|
|
3709
|
+
startTime?: number | undefined;
|
|
3710
|
+
}[];
|
|
3711
|
+
end: number;
|
|
3712
|
+
start: number;
|
|
3713
|
+
segments: import("./common/utils").SegmentTree | {
|
|
3714
|
+
labelStack: string | {
|
|
3715
|
+
s?: string | undefined;
|
|
3716
|
+
n: string;
|
|
3717
|
+
}[];
|
|
3718
|
+
}[];
|
|
3719
|
+
marks: {
|
|
3720
|
+
labelStack: string | {
|
|
3721
|
+
s?: string | undefined;
|
|
3722
|
+
n: string;
|
|
3723
|
+
}[] | null;
|
|
3724
|
+
time: number;
|
|
3725
|
+
type: import("../common").MarkType;
|
|
3726
|
+
name: string;
|
|
3727
|
+
}[];
|
|
3728
|
+
customData: any[];
|
|
3729
|
+
reactProfilerTimings: any[];
|
|
3730
|
+
errorCount: number;
|
|
3731
|
+
};
|
|
3732
|
+
'ufo:payloadTime': number;
|
|
3733
|
+
stylesheets?: undefined;
|
|
3734
|
+
styleElements?: undefined;
|
|
3735
|
+
styleProps?: undefined;
|
|
3736
|
+
styleDeclarations?: undefined;
|
|
3737
|
+
cssrules?: undefined;
|
|
3738
|
+
'metrics:navigation'?: undefined;
|
|
3739
|
+
'metrics@ttai': {
|
|
3740
|
+
[key: string]: number;
|
|
3741
|
+
} | null;
|
|
3742
|
+
'ssr:success': boolean | undefined;
|
|
3743
|
+
'ssr:featureFlags': ssr.SSRFeatureFlags | undefined;
|
|
3744
|
+
'event:browser:name'?: string | undefined;
|
|
3745
|
+
'event:browser:version'?: string | undefined;
|
|
3746
|
+
'event:cpus'?: number | undefined;
|
|
3747
|
+
'event:memory'?: number | undefined;
|
|
3748
|
+
'event:network:effectiveType'?: string | undefined;
|
|
3749
|
+
'event:network:rtt'?: number | undefined;
|
|
3750
|
+
'event:network:downlink'?: number | undefined;
|
|
3751
|
+
'event:localHour'?: number | undefined;
|
|
3752
|
+
'event:localDayOfWeek'?: number | undefined;
|
|
3753
|
+
'event:localTimezoneOffset'?: number | undefined;
|
|
3754
|
+
'event:hostname': string;
|
|
3755
|
+
'event:product': string;
|
|
3756
|
+
'event:schema': string;
|
|
3757
|
+
'event:sizeInKb': number;
|
|
3758
|
+
'event:source': {
|
|
3759
|
+
name: string;
|
|
3760
|
+
version: string;
|
|
3761
|
+
payloadSource: string;
|
|
3762
|
+
};
|
|
3763
|
+
'event:region': string;
|
|
3764
|
+
'experience:key': string;
|
|
3765
|
+
'experience:name': string;
|
|
3766
|
+
} | {
|
|
3767
|
+
errorCount: number;
|
|
3768
|
+
interactionMetrics: {
|
|
3769
|
+
legacyMetrics?: undefined;
|
|
3770
|
+
initialPageLoadExtraTimings?: undefined;
|
|
3771
|
+
SSRTimings?: undefined;
|
|
3772
|
+
errors?: undefined;
|
|
3773
|
+
holdActive?: undefined;
|
|
3774
|
+
redirects?: undefined;
|
|
3775
|
+
holdInfo?: undefined;
|
|
3776
|
+
spans?: undefined;
|
|
3777
|
+
requestInfo?: undefined;
|
|
3778
|
+
customTimings?: undefined;
|
|
3779
|
+
bundleEvalTimings?: undefined;
|
|
3780
|
+
resourceTimings?: undefined;
|
|
3781
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
3782
|
+
namePrefix: string;
|
|
3783
|
+
segmentPrefix: string;
|
|
3784
|
+
interactionId: string;
|
|
3785
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
3786
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
3787
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
3788
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
3789
|
+
rate: number;
|
|
3790
|
+
routeName: string | null;
|
|
3791
|
+
type: InteractionType;
|
|
3792
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
3793
|
+
featureFlags: {
|
|
3794
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
3795
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
3796
|
+
} | undefined;
|
|
3797
|
+
previousInteractionName: string | undefined;
|
|
3798
|
+
isPreviousInteractionAborted: boolean;
|
|
3799
|
+
abortedByInteractionName: string | undefined;
|
|
3800
|
+
apdex: {
|
|
3801
|
+
labelStack?: string | {
|
|
3802
|
+
s?: string | undefined;
|
|
3803
|
+
n: string;
|
|
3804
|
+
}[] | undefined;
|
|
3805
|
+
stopTime: number;
|
|
3806
|
+
key: string;
|
|
3807
|
+
startTime?: number | undefined;
|
|
3808
|
+
}[];
|
|
3809
|
+
end: number;
|
|
3810
|
+
start: number;
|
|
3811
|
+
segments: import("./common/utils").SegmentTree | {
|
|
3812
|
+
labelStack: string | {
|
|
3813
|
+
s?: string | undefined;
|
|
3814
|
+
n: string;
|
|
3815
|
+
}[];
|
|
3816
|
+
}[];
|
|
3817
|
+
marks: {
|
|
3818
|
+
labelStack: string | {
|
|
3819
|
+
s?: string | undefined;
|
|
3820
|
+
n: string;
|
|
3821
|
+
}[] | null;
|
|
3822
|
+
time: number;
|
|
3823
|
+
type: import("../common").MarkType;
|
|
3824
|
+
name: string;
|
|
3825
|
+
}[];
|
|
3826
|
+
customData: any[];
|
|
3827
|
+
reactProfilerTimings: any[];
|
|
3828
|
+
errorCount: number;
|
|
3829
|
+
} | {
|
|
3830
|
+
legacyMetrics: {
|
|
3831
|
+
key: string;
|
|
3832
|
+
startTime: number | null;
|
|
3833
|
+
stopTime: number | null;
|
|
3834
|
+
type: string;
|
|
3835
|
+
reactUFOName: string | undefined;
|
|
3836
|
+
fmp: number | null;
|
|
3837
|
+
source: string;
|
|
3838
|
+
timings: {
|
|
3839
|
+
[key: string]: {
|
|
3840
|
+
startTime: number;
|
|
3841
|
+
endTime: number;
|
|
3842
|
+
};
|
|
3843
|
+
};
|
|
3844
|
+
submetrics: any;
|
|
3845
|
+
pageVisibleState: string | undefined;
|
|
3846
|
+
}[];
|
|
3847
|
+
initialPageLoadExtraTimings?: undefined;
|
|
3848
|
+
SSRTimings?: undefined;
|
|
3849
|
+
errors?: undefined;
|
|
3850
|
+
holdActive?: undefined;
|
|
3851
|
+
redirects?: undefined;
|
|
3852
|
+
holdInfo?: undefined;
|
|
3853
|
+
spans?: undefined;
|
|
3854
|
+
requestInfo?: undefined;
|
|
3855
|
+
customTimings?: undefined;
|
|
3856
|
+
bundleEvalTimings?: undefined;
|
|
3857
|
+
resourceTimings?: undefined;
|
|
3858
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
3859
|
+
namePrefix: string;
|
|
3860
|
+
segmentPrefix: string;
|
|
3861
|
+
interactionId: string;
|
|
3862
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
3863
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
3864
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
3865
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
3866
|
+
rate: number;
|
|
3867
|
+
routeName: string | null;
|
|
3868
|
+
type: InteractionType;
|
|
3869
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
3870
|
+
featureFlags: {
|
|
3871
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
3872
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
3873
|
+
} | undefined;
|
|
3874
|
+
previousInteractionName: string | undefined;
|
|
3875
|
+
isPreviousInteractionAborted: boolean;
|
|
3876
|
+
abortedByInteractionName: string | undefined;
|
|
3877
|
+
apdex: {
|
|
3878
|
+
labelStack?: string | {
|
|
3879
|
+
s?: string | undefined;
|
|
3880
|
+
n: string;
|
|
3881
|
+
}[] | undefined;
|
|
3882
|
+
stopTime: number;
|
|
3883
|
+
key: string;
|
|
3884
|
+
startTime?: number | undefined;
|
|
3885
|
+
}[];
|
|
3886
|
+
end: number;
|
|
3887
|
+
start: number;
|
|
3888
|
+
segments: import("./common/utils").SegmentTree | {
|
|
3889
|
+
labelStack: string | {
|
|
3890
|
+
s?: string | undefined;
|
|
3891
|
+
n: string;
|
|
3892
|
+
}[];
|
|
3893
|
+
}[];
|
|
3894
|
+
marks: {
|
|
3895
|
+
labelStack: string | {
|
|
3896
|
+
s?: string | undefined;
|
|
3897
|
+
n: string;
|
|
3898
|
+
}[] | null;
|
|
3899
|
+
time: number;
|
|
3900
|
+
type: import("../common").MarkType;
|
|
3901
|
+
name: string;
|
|
3902
|
+
}[];
|
|
3903
|
+
customData: any[];
|
|
3904
|
+
reactProfilerTimings: any[];
|
|
3905
|
+
errorCount: number;
|
|
3906
|
+
} | {
|
|
3907
|
+
legacyMetrics?: undefined;
|
|
3908
|
+
initialPageLoadExtraTimings: {
|
|
3909
|
+
label: string;
|
|
3910
|
+
data: any;
|
|
3911
|
+
}[];
|
|
3912
|
+
SSRTimings: {
|
|
3913
|
+
label: string;
|
|
3914
|
+
data: any;
|
|
3915
|
+
}[];
|
|
3916
|
+
errors?: undefined;
|
|
3917
|
+
holdActive?: undefined;
|
|
3918
|
+
redirects?: undefined;
|
|
3919
|
+
holdInfo?: undefined;
|
|
3920
|
+
spans?: undefined;
|
|
3921
|
+
requestInfo?: undefined;
|
|
3922
|
+
customTimings?: undefined;
|
|
3923
|
+
bundleEvalTimings?: undefined;
|
|
3924
|
+
resourceTimings?: undefined;
|
|
3925
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
3926
|
+
namePrefix: string;
|
|
3927
|
+
segmentPrefix: string;
|
|
3928
|
+
interactionId: string;
|
|
3929
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
3930
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
3931
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
3932
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
3933
|
+
rate: number;
|
|
3934
|
+
routeName: string | null;
|
|
3935
|
+
type: InteractionType;
|
|
3936
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
3937
|
+
featureFlags: {
|
|
3938
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
3939
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
3940
|
+
} | undefined;
|
|
3941
|
+
previousInteractionName: string | undefined;
|
|
3942
|
+
isPreviousInteractionAborted: boolean;
|
|
3943
|
+
abortedByInteractionName: string | undefined;
|
|
3944
|
+
apdex: {
|
|
3945
|
+
labelStack?: string | {
|
|
3946
|
+
s?: string | undefined;
|
|
3947
|
+
n: string;
|
|
3948
|
+
}[] | undefined;
|
|
3949
|
+
stopTime: number;
|
|
3950
|
+
key: string;
|
|
3951
|
+
startTime?: number | undefined;
|
|
3952
|
+
}[];
|
|
3953
|
+
end: number;
|
|
3954
|
+
start: number;
|
|
3955
|
+
segments: import("./common/utils").SegmentTree | {
|
|
3956
|
+
labelStack: string | {
|
|
3957
|
+
s?: string | undefined;
|
|
3958
|
+
n: string;
|
|
3959
|
+
}[];
|
|
3960
|
+
}[];
|
|
3961
|
+
marks: {
|
|
3962
|
+
labelStack: string | {
|
|
3963
|
+
s?: string | undefined;
|
|
3964
|
+
n: string;
|
|
3965
|
+
}[] | null;
|
|
3966
|
+
time: number;
|
|
3967
|
+
type: import("../common").MarkType;
|
|
3968
|
+
name: string;
|
|
3969
|
+
}[];
|
|
3970
|
+
customData: any[];
|
|
3971
|
+
reactProfilerTimings: any[];
|
|
3972
|
+
errorCount: number;
|
|
3973
|
+
} | {
|
|
3974
|
+
legacyMetrics: {
|
|
3975
|
+
key: string;
|
|
3976
|
+
startTime: number | null;
|
|
3977
|
+
stopTime: number | null;
|
|
3978
|
+
type: string;
|
|
3979
|
+
reactUFOName: string | undefined;
|
|
3980
|
+
fmp: number | null;
|
|
3981
|
+
source: string;
|
|
3982
|
+
timings: {
|
|
3983
|
+
[key: string]: {
|
|
3984
|
+
startTime: number;
|
|
3985
|
+
endTime: number;
|
|
3986
|
+
};
|
|
3987
|
+
};
|
|
3988
|
+
submetrics: any;
|
|
3989
|
+
pageVisibleState: string | undefined;
|
|
3990
|
+
}[];
|
|
3991
|
+
initialPageLoadExtraTimings: {
|
|
3992
|
+
label: string;
|
|
3993
|
+
data: any;
|
|
3994
|
+
}[];
|
|
3995
|
+
SSRTimings: {
|
|
3996
|
+
label: string;
|
|
3997
|
+
data: any;
|
|
3998
|
+
}[];
|
|
3999
|
+
errors?: undefined;
|
|
4000
|
+
holdActive?: undefined;
|
|
4001
|
+
redirects?: undefined;
|
|
4002
|
+
holdInfo?: undefined;
|
|
4003
|
+
spans?: undefined;
|
|
4004
|
+
requestInfo?: undefined;
|
|
4005
|
+
customTimings?: undefined;
|
|
4006
|
+
bundleEvalTimings?: undefined;
|
|
4007
|
+
resourceTimings?: undefined;
|
|
4008
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
4009
|
+
namePrefix: string;
|
|
4010
|
+
segmentPrefix: string;
|
|
4011
|
+
interactionId: string;
|
|
4012
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
4013
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
4014
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
4015
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
4016
|
+
rate: number;
|
|
4017
|
+
routeName: string | null;
|
|
4018
|
+
type: InteractionType;
|
|
4019
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
4020
|
+
featureFlags: {
|
|
4021
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
4022
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
4023
|
+
} | undefined;
|
|
4024
|
+
previousInteractionName: string | undefined;
|
|
4025
|
+
isPreviousInteractionAborted: boolean;
|
|
4026
|
+
abortedByInteractionName: string | undefined;
|
|
4027
|
+
apdex: {
|
|
4028
|
+
labelStack?: string | {
|
|
4029
|
+
s?: string | undefined;
|
|
4030
|
+
n: string;
|
|
4031
|
+
}[] | undefined;
|
|
4032
|
+
stopTime: number;
|
|
4033
|
+
key: string;
|
|
4034
|
+
startTime?: number | undefined;
|
|
4035
|
+
}[];
|
|
4036
|
+
end: number;
|
|
4037
|
+
start: number;
|
|
4038
|
+
segments: import("./common/utils").SegmentTree | {
|
|
4039
|
+
labelStack: string | {
|
|
4040
|
+
s?: string | undefined;
|
|
4041
|
+
n: string;
|
|
4042
|
+
}[];
|
|
4043
|
+
}[];
|
|
4044
|
+
marks: {
|
|
4045
|
+
labelStack: string | {
|
|
4046
|
+
s?: string | undefined;
|
|
4047
|
+
n: string;
|
|
4048
|
+
}[] | null;
|
|
4049
|
+
time: number;
|
|
4050
|
+
type: import("../common").MarkType;
|
|
4051
|
+
name: string;
|
|
4052
|
+
}[];
|
|
4053
|
+
customData: any[];
|
|
4054
|
+
reactProfilerTimings: any[];
|
|
4055
|
+
errorCount: number;
|
|
4056
|
+
} | {
|
|
4057
|
+
legacyMetrics?: undefined;
|
|
4058
|
+
initialPageLoadExtraTimings?: undefined;
|
|
4059
|
+
SSRTimings?: undefined;
|
|
4060
|
+
errors: {
|
|
4061
|
+
labelStack: string | {
|
|
4062
|
+
s?: string | undefined;
|
|
4063
|
+
n: string;
|
|
4064
|
+
}[] | null;
|
|
4065
|
+
name: string;
|
|
4066
|
+
errorType: string;
|
|
4067
|
+
errorMessage: string;
|
|
4068
|
+
errorStack?: string | undefined;
|
|
4069
|
+
forcedError?: boolean | undefined;
|
|
4070
|
+
}[];
|
|
4071
|
+
holdActive: import("../common").HoldActive[];
|
|
4072
|
+
redirects: {
|
|
4073
|
+
labelStack: OptimizedLabelStack;
|
|
4074
|
+
startTime: number;
|
|
4075
|
+
endTime: number;
|
|
4076
|
+
}[];
|
|
4077
|
+
holdInfo: any[];
|
|
4078
|
+
spans: {
|
|
4079
|
+
labelStack: OptimizedLabelStack;
|
|
4080
|
+
startTime: number;
|
|
4081
|
+
endTime: number;
|
|
4082
|
+
type: string;
|
|
4083
|
+
}[];
|
|
4084
|
+
requestInfo: {
|
|
4085
|
+
labelStack: OptimizedLabelStack;
|
|
4086
|
+
startTime: number;
|
|
4087
|
+
endTime: number;
|
|
4088
|
+
}[];
|
|
4089
|
+
customTimings: {
|
|
4090
|
+
labelStack: OptimizedLabelStack;
|
|
4091
|
+
startTime: number;
|
|
4092
|
+
endTime: number;
|
|
4093
|
+
}[];
|
|
4094
|
+
bundleEvalTimings: {
|
|
4095
|
+
label: string;
|
|
4096
|
+
data: any;
|
|
4097
|
+
}[];
|
|
4098
|
+
resourceTimings: {
|
|
4099
|
+
label: string;
|
|
4100
|
+
data: any;
|
|
4101
|
+
}[];
|
|
4102
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
4103
|
+
namePrefix: string;
|
|
4104
|
+
segmentPrefix: string;
|
|
4105
|
+
interactionId: string;
|
|
4106
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
4107
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
4108
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
4109
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
4110
|
+
rate: number;
|
|
4111
|
+
routeName: string | null;
|
|
4112
|
+
type: InteractionType;
|
|
4113
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
4114
|
+
featureFlags: {
|
|
4115
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
4116
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
4117
|
+
} | undefined;
|
|
4118
|
+
previousInteractionName: string | undefined;
|
|
4119
|
+
isPreviousInteractionAborted: boolean;
|
|
4120
|
+
abortedByInteractionName: string | undefined;
|
|
4121
|
+
apdex: {
|
|
4122
|
+
labelStack?: string | {
|
|
4123
|
+
s?: string | undefined;
|
|
4124
|
+
n: string;
|
|
4125
|
+
}[] | undefined;
|
|
4126
|
+
stopTime: number;
|
|
4127
|
+
key: string;
|
|
4128
|
+
startTime?: number | undefined;
|
|
4129
|
+
}[];
|
|
4130
|
+
end: number;
|
|
4131
|
+
start: number;
|
|
4132
|
+
segments: import("./common/utils").SegmentTree | {
|
|
4133
|
+
labelStack: string | {
|
|
4134
|
+
s?: string | undefined;
|
|
4135
|
+
n: string;
|
|
4136
|
+
}[];
|
|
4137
|
+
}[];
|
|
4138
|
+
marks: {
|
|
4139
|
+
labelStack: string | {
|
|
4140
|
+
s?: string | undefined;
|
|
4141
|
+
n: string;
|
|
4142
|
+
}[] | null;
|
|
4143
|
+
time: number;
|
|
4144
|
+
type: import("../common").MarkType;
|
|
4145
|
+
name: string;
|
|
4146
|
+
}[];
|
|
4147
|
+
customData: any[];
|
|
4148
|
+
reactProfilerTimings: any[];
|
|
4149
|
+
errorCount: number;
|
|
4150
|
+
} | {
|
|
4151
|
+
legacyMetrics: {
|
|
4152
|
+
key: string;
|
|
4153
|
+
startTime: number | null;
|
|
4154
|
+
stopTime: number | null;
|
|
4155
|
+
type: string;
|
|
4156
|
+
reactUFOName: string | undefined;
|
|
4157
|
+
fmp: number | null;
|
|
4158
|
+
source: string;
|
|
4159
|
+
timings: {
|
|
4160
|
+
[key: string]: {
|
|
4161
|
+
startTime: number;
|
|
4162
|
+
endTime: number;
|
|
4163
|
+
};
|
|
4164
|
+
};
|
|
4165
|
+
submetrics: any;
|
|
4166
|
+
pageVisibleState: string | undefined;
|
|
4167
|
+
}[];
|
|
4168
|
+
initialPageLoadExtraTimings?: undefined;
|
|
4169
|
+
SSRTimings?: undefined;
|
|
4170
|
+
errors: {
|
|
4171
|
+
labelStack: string | {
|
|
4172
|
+
s?: string | undefined;
|
|
4173
|
+
n: string;
|
|
4174
|
+
}[] | null;
|
|
4175
|
+
name: string;
|
|
4176
|
+
errorType: string;
|
|
4177
|
+
errorMessage: string;
|
|
4178
|
+
errorStack?: string | undefined;
|
|
4179
|
+
forcedError?: boolean | undefined;
|
|
4180
|
+
}[];
|
|
4181
|
+
holdActive: import("../common").HoldActive[];
|
|
4182
|
+
redirects: {
|
|
4183
|
+
labelStack: OptimizedLabelStack;
|
|
4184
|
+
startTime: number;
|
|
4185
|
+
endTime: number;
|
|
4186
|
+
}[];
|
|
4187
|
+
holdInfo: any[];
|
|
4188
|
+
spans: {
|
|
4189
|
+
labelStack: OptimizedLabelStack;
|
|
4190
|
+
startTime: number;
|
|
4191
|
+
endTime: number;
|
|
4192
|
+
type: string;
|
|
4193
|
+
}[];
|
|
4194
|
+
requestInfo: {
|
|
4195
|
+
labelStack: OptimizedLabelStack;
|
|
4196
|
+
startTime: number;
|
|
4197
|
+
endTime: number;
|
|
4198
|
+
}[];
|
|
4199
|
+
customTimings: {
|
|
4200
|
+
labelStack: OptimizedLabelStack;
|
|
4201
|
+
startTime: number;
|
|
4202
|
+
endTime: number;
|
|
4203
|
+
}[];
|
|
4204
|
+
bundleEvalTimings: {
|
|
4205
|
+
label: string;
|
|
4206
|
+
data: any;
|
|
4207
|
+
}[];
|
|
4208
|
+
resourceTimings: {
|
|
4209
|
+
label: string;
|
|
4210
|
+
data: any;
|
|
4211
|
+
}[];
|
|
4212
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
4213
|
+
namePrefix: string;
|
|
4214
|
+
segmentPrefix: string;
|
|
4215
|
+
interactionId: string;
|
|
4216
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
4217
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
4218
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
4219
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
4220
|
+
rate: number;
|
|
4221
|
+
routeName: string | null;
|
|
4222
|
+
type: InteractionType;
|
|
4223
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
4224
|
+
featureFlags: {
|
|
4225
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
4226
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
4227
|
+
} | undefined;
|
|
4228
|
+
previousInteractionName: string | undefined;
|
|
4229
|
+
isPreviousInteractionAborted: boolean;
|
|
4230
|
+
abortedByInteractionName: string | undefined;
|
|
4231
|
+
apdex: {
|
|
4232
|
+
labelStack?: string | {
|
|
4233
|
+
s?: string | undefined;
|
|
4234
|
+
n: string;
|
|
4235
|
+
}[] | undefined;
|
|
4236
|
+
stopTime: number;
|
|
4237
|
+
key: string;
|
|
4238
|
+
startTime?: number | undefined;
|
|
4239
|
+
}[];
|
|
4240
|
+
end: number;
|
|
4241
|
+
start: number;
|
|
4242
|
+
segments: import("./common/utils").SegmentTree | {
|
|
4243
|
+
labelStack: string | {
|
|
4244
|
+
s?: string | undefined;
|
|
4245
|
+
n: string;
|
|
4246
|
+
}[];
|
|
4247
|
+
}[];
|
|
4248
|
+
marks: {
|
|
4249
|
+
labelStack: string | {
|
|
4250
|
+
s?: string | undefined;
|
|
4251
|
+
n: string;
|
|
4252
|
+
}[] | null;
|
|
4253
|
+
time: number;
|
|
4254
|
+
type: import("../common").MarkType;
|
|
4255
|
+
name: string;
|
|
4256
|
+
}[];
|
|
4257
|
+
customData: any[];
|
|
4258
|
+
reactProfilerTimings: any[];
|
|
4259
|
+
errorCount: number;
|
|
4260
|
+
} | {
|
|
4261
|
+
legacyMetrics?: undefined;
|
|
4262
|
+
initialPageLoadExtraTimings: {
|
|
4263
|
+
label: string;
|
|
4264
|
+
data: any;
|
|
4265
|
+
}[];
|
|
4266
|
+
SSRTimings: {
|
|
4267
|
+
label: string;
|
|
4268
|
+
data: any;
|
|
4269
|
+
}[];
|
|
4270
|
+
errors: {
|
|
4271
|
+
labelStack: string | {
|
|
4272
|
+
s?: string | undefined;
|
|
4273
|
+
n: string;
|
|
4274
|
+
}[] | null;
|
|
4275
|
+
name: string;
|
|
4276
|
+
errorType: string;
|
|
4277
|
+
errorMessage: string;
|
|
4278
|
+
errorStack?: string | undefined;
|
|
4279
|
+
forcedError?: boolean | undefined;
|
|
4280
|
+
}[];
|
|
4281
|
+
holdActive: import("../common").HoldActive[];
|
|
4282
|
+
redirects: {
|
|
4283
|
+
labelStack: OptimizedLabelStack;
|
|
4284
|
+
startTime: number;
|
|
4285
|
+
endTime: number;
|
|
4286
|
+
}[];
|
|
4287
|
+
holdInfo: any[];
|
|
4288
|
+
spans: {
|
|
4289
|
+
labelStack: OptimizedLabelStack;
|
|
4290
|
+
startTime: number;
|
|
4291
|
+
endTime: number;
|
|
4292
|
+
type: string;
|
|
4293
|
+
}[];
|
|
4294
|
+
requestInfo: {
|
|
4295
|
+
labelStack: OptimizedLabelStack;
|
|
4296
|
+
startTime: number;
|
|
4297
|
+
endTime: number;
|
|
4298
|
+
}[];
|
|
4299
|
+
customTimings: {
|
|
4300
|
+
labelStack: OptimizedLabelStack;
|
|
4301
|
+
startTime: number;
|
|
4302
|
+
endTime: number;
|
|
4303
|
+
}[];
|
|
4304
|
+
bundleEvalTimings: {
|
|
4305
|
+
label: string;
|
|
4306
|
+
data: any;
|
|
4307
|
+
}[];
|
|
4308
|
+
resourceTimings: {
|
|
4309
|
+
label: string;
|
|
4310
|
+
data: any;
|
|
4311
|
+
}[];
|
|
4312
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
4313
|
+
namePrefix: string;
|
|
4314
|
+
segmentPrefix: string;
|
|
4315
|
+
interactionId: string;
|
|
4316
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
4317
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
4318
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
4319
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
4320
|
+
rate: number;
|
|
4321
|
+
routeName: string | null;
|
|
4322
|
+
type: InteractionType;
|
|
4323
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
4324
|
+
featureFlags: {
|
|
4325
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
4326
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
4327
|
+
} | undefined;
|
|
4328
|
+
previousInteractionName: string | undefined;
|
|
4329
|
+
isPreviousInteractionAborted: boolean;
|
|
4330
|
+
abortedByInteractionName: string | undefined;
|
|
4331
|
+
apdex: {
|
|
4332
|
+
labelStack?: string | {
|
|
4333
|
+
s?: string | undefined;
|
|
4334
|
+
n: string;
|
|
4335
|
+
}[] | undefined;
|
|
4336
|
+
stopTime: number;
|
|
4337
|
+
key: string;
|
|
4338
|
+
startTime?: number | undefined;
|
|
4339
|
+
}[];
|
|
4340
|
+
end: number;
|
|
4341
|
+
start: number;
|
|
4342
|
+
segments: import("./common/utils").SegmentTree | {
|
|
4343
|
+
labelStack: string | {
|
|
4344
|
+
s?: string | undefined;
|
|
4345
|
+
n: string;
|
|
4346
|
+
}[];
|
|
4347
|
+
}[];
|
|
4348
|
+
marks: {
|
|
4349
|
+
labelStack: string | {
|
|
4350
|
+
s?: string | undefined;
|
|
4351
|
+
n: string;
|
|
4352
|
+
}[] | null;
|
|
4353
|
+
time: number;
|
|
4354
|
+
type: import("../common").MarkType;
|
|
4355
|
+
name: string;
|
|
4356
|
+
}[];
|
|
4357
|
+
customData: any[];
|
|
4358
|
+
reactProfilerTimings: any[];
|
|
4359
|
+
errorCount: number;
|
|
4360
|
+
} | {
|
|
4361
|
+
legacyMetrics: {
|
|
4362
|
+
key: string;
|
|
4363
|
+
startTime: number | null;
|
|
4364
|
+
stopTime: number | null;
|
|
4365
|
+
type: string;
|
|
4366
|
+
reactUFOName: string | undefined;
|
|
4367
|
+
fmp: number | null;
|
|
4368
|
+
source: string;
|
|
4369
|
+
timings: {
|
|
4370
|
+
[key: string]: {
|
|
4371
|
+
startTime: number;
|
|
4372
|
+
endTime: number;
|
|
4373
|
+
};
|
|
4374
|
+
};
|
|
4375
|
+
submetrics: any;
|
|
4376
|
+
pageVisibleState: string | undefined;
|
|
4377
|
+
}[];
|
|
4378
|
+
initialPageLoadExtraTimings: {
|
|
4379
|
+
label: string;
|
|
4380
|
+
data: any;
|
|
4381
|
+
}[];
|
|
4382
|
+
SSRTimings: {
|
|
4383
|
+
label: string;
|
|
4384
|
+
data: any;
|
|
4385
|
+
}[];
|
|
4386
|
+
errors: {
|
|
4387
|
+
labelStack: string | {
|
|
4388
|
+
s?: string | undefined;
|
|
4389
|
+
n: string;
|
|
4390
|
+
}[] | null;
|
|
4391
|
+
name: string;
|
|
4392
|
+
errorType: string;
|
|
4393
|
+
errorMessage: string;
|
|
4394
|
+
errorStack?: string | undefined;
|
|
4395
|
+
forcedError?: boolean | undefined;
|
|
4396
|
+
}[];
|
|
4397
|
+
holdActive: import("../common").HoldActive[];
|
|
4398
|
+
redirects: {
|
|
4399
|
+
labelStack: OptimizedLabelStack;
|
|
4400
|
+
startTime: number;
|
|
4401
|
+
endTime: number;
|
|
4402
|
+
}[];
|
|
4403
|
+
holdInfo: any[];
|
|
4404
|
+
spans: {
|
|
4405
|
+
labelStack: OptimizedLabelStack;
|
|
4406
|
+
startTime: number;
|
|
4407
|
+
endTime: number;
|
|
4408
|
+
type: string;
|
|
4409
|
+
}[];
|
|
4410
|
+
requestInfo: {
|
|
4411
|
+
labelStack: OptimizedLabelStack;
|
|
4412
|
+
startTime: number;
|
|
4413
|
+
endTime: number;
|
|
4414
|
+
}[];
|
|
4415
|
+
customTimings: {
|
|
4416
|
+
labelStack: OptimizedLabelStack;
|
|
4417
|
+
startTime: number;
|
|
4418
|
+
endTime: number;
|
|
4419
|
+
}[];
|
|
4420
|
+
bundleEvalTimings: {
|
|
4421
|
+
label: string;
|
|
4422
|
+
data: any;
|
|
4423
|
+
}[];
|
|
4424
|
+
resourceTimings: {
|
|
4425
|
+
label: string;
|
|
4426
|
+
data: any;
|
|
4427
|
+
}[];
|
|
4428
|
+
labelStack?: OptimizedLabelStack | undefined;
|
|
4429
|
+
namePrefix: string;
|
|
4430
|
+
segmentPrefix: string;
|
|
4431
|
+
interactionId: string;
|
|
4432
|
+
pageVisibilityAtTTI: import("../hidden-timing").PageVisibility;
|
|
4433
|
+
pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility;
|
|
4434
|
+
experimental__pageVisibilityAtTTI: import("../hidden-timing").PageVisibility | null;
|
|
4435
|
+
experimental__pageVisibilityAtTTAI: import("../hidden-timing").PageVisibility | null;
|
|
4436
|
+
rate: number;
|
|
4437
|
+
routeName: string | null;
|
|
4438
|
+
type: InteractionType;
|
|
4439
|
+
abortReason: import("../common").AbortReasonType | undefined;
|
|
4440
|
+
featureFlags: {
|
|
4441
|
+
prior: Record<string, string | number | boolean | Record<any, any>>;
|
|
4442
|
+
during: Record<string, string | number | boolean | Record<any, any>>;
|
|
4443
|
+
} | undefined;
|
|
4444
|
+
previousInteractionName: string | undefined;
|
|
4445
|
+
isPreviousInteractionAborted: boolean;
|
|
4446
|
+
abortedByInteractionName: string | undefined;
|
|
4447
|
+
apdex: {
|
|
4448
|
+
labelStack?: string | {
|
|
4449
|
+
s?: string | undefined;
|
|
4450
|
+
n: string;
|
|
4451
|
+
}[] | undefined;
|
|
4452
|
+
stopTime: number;
|
|
4453
|
+
key: string;
|
|
4454
|
+
startTime?: number | undefined;
|
|
4455
|
+
}[];
|
|
4456
|
+
end: number;
|
|
4457
|
+
start: number;
|
|
4458
|
+
segments: import("./common/utils").SegmentTree | {
|
|
4459
|
+
labelStack: string | {
|
|
4460
|
+
s?: string | undefined;
|
|
4461
|
+
n: string;
|
|
4462
|
+
}[];
|
|
4463
|
+
}[];
|
|
4464
|
+
marks: {
|
|
4465
|
+
labelStack: string | {
|
|
4466
|
+
s?: string | undefined;
|
|
4467
|
+
n: string;
|
|
4468
|
+
}[] | null;
|
|
4469
|
+
time: number;
|
|
4470
|
+
type: import("../common").MarkType;
|
|
4471
|
+
name: string;
|
|
4472
|
+
}[];
|
|
4473
|
+
customData: any[];
|
|
4474
|
+
reactProfilerTimings: any[];
|
|
4475
|
+
errorCount: number;
|
|
4476
|
+
};
|
|
4477
|
+
'ufo:payloadTime': number;
|
|
4478
|
+
stylesheets: number;
|
|
4479
|
+
styleElements: number;
|
|
4480
|
+
styleProps: number;
|
|
4481
|
+
styleDeclarations: number;
|
|
4482
|
+
cssrules: number;
|
|
4483
|
+
'metrics:navigation'?: undefined;
|
|
4484
|
+
'metrics@ttai': {
|
|
4485
|
+
[key: string]: number;
|
|
4486
|
+
} | null;
|
|
4487
|
+
'ssr:success': boolean | undefined;
|
|
4488
|
+
'ssr:featureFlags': ssr.SSRFeatureFlags | undefined;
|
|
4489
|
+
'event:browser:name'?: string | undefined;
|
|
4490
|
+
'event:browser:version'?: string | undefined;
|
|
4491
|
+
'event:cpus'?: number | undefined;
|
|
4492
|
+
'event:memory'?: number | undefined;
|
|
4493
|
+
'event:network:effectiveType'?: string | undefined;
|
|
4494
|
+
'event:network:rtt'?: number | undefined;
|
|
4495
|
+
'event:network:downlink'?: number | undefined;
|
|
4496
|
+
'event:localHour'?: number | undefined;
|
|
4497
|
+
'event:localDayOfWeek'?: number | undefined;
|
|
4498
|
+
'event:localTimezoneOffset'?: number | undefined;
|
|
4499
|
+
'event:hostname': string;
|
|
4500
|
+
'event:product': string;
|
|
4501
|
+
'event:schema': string;
|
|
4502
|
+
'event:sizeInKb': number;
|
|
4503
|
+
'event:source': {
|
|
4504
|
+
name: string;
|
|
4505
|
+
version: string;
|
|
4506
|
+
payloadSource: string;
|
|
4507
|
+
};
|
|
4508
|
+
'event:region': string;
|
|
4509
|
+
'experience:key': string;
|
|
4510
|
+
'experience:name': string;
|
|
4511
|
+
} | {
|
|
4512
|
+
errorCount: number;
|
|
1489
4513
|
interactionMetrics: {
|
|
1490
4514
|
legacyMetrics?: undefined;
|
|
1491
4515
|
initialPageLoadExtraTimings?: undefined;
|
|
@@ -1519,7 +4543,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1519
4543
|
isPreviousInteractionAborted: boolean;
|
|
1520
4544
|
abortedByInteractionName: string | undefined;
|
|
1521
4545
|
apdex: {
|
|
1522
|
-
labelStack?: {
|
|
4546
|
+
labelStack?: string | {
|
|
1523
4547
|
s?: string | undefined;
|
|
1524
4548
|
n: string;
|
|
1525
4549
|
}[] | undefined;
|
|
@@ -1529,14 +4553,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1529
4553
|
}[];
|
|
1530
4554
|
end: number;
|
|
1531
4555
|
start: number;
|
|
1532
|
-
segments: {
|
|
1533
|
-
labelStack: {
|
|
4556
|
+
segments: import("./common/utils").SegmentTree | {
|
|
4557
|
+
labelStack: string | {
|
|
1534
4558
|
s?: string | undefined;
|
|
1535
4559
|
n: string;
|
|
1536
4560
|
}[];
|
|
1537
4561
|
}[];
|
|
1538
4562
|
marks: {
|
|
1539
|
-
labelStack: {
|
|
4563
|
+
labelStack: string | {
|
|
1540
4564
|
s?: string | undefined;
|
|
1541
4565
|
n: string;
|
|
1542
4566
|
}[] | null;
|
|
@@ -1546,6 +4570,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1546
4570
|
}[];
|
|
1547
4571
|
customData: any[];
|
|
1548
4572
|
reactProfilerTimings: any[];
|
|
4573
|
+
errorCount: number;
|
|
1549
4574
|
} | {
|
|
1550
4575
|
legacyMetrics: {
|
|
1551
4576
|
key: string;
|
|
@@ -1595,7 +4620,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1595
4620
|
isPreviousInteractionAborted: boolean;
|
|
1596
4621
|
abortedByInteractionName: string | undefined;
|
|
1597
4622
|
apdex: {
|
|
1598
|
-
labelStack?: {
|
|
4623
|
+
labelStack?: string | {
|
|
1599
4624
|
s?: string | undefined;
|
|
1600
4625
|
n: string;
|
|
1601
4626
|
}[] | undefined;
|
|
@@ -1605,14 +4630,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1605
4630
|
}[];
|
|
1606
4631
|
end: number;
|
|
1607
4632
|
start: number;
|
|
1608
|
-
segments: {
|
|
1609
|
-
labelStack: {
|
|
4633
|
+
segments: import("./common/utils").SegmentTree | {
|
|
4634
|
+
labelStack: string | {
|
|
1610
4635
|
s?: string | undefined;
|
|
1611
4636
|
n: string;
|
|
1612
4637
|
}[];
|
|
1613
4638
|
}[];
|
|
1614
4639
|
marks: {
|
|
1615
|
-
labelStack: {
|
|
4640
|
+
labelStack: string | {
|
|
1616
4641
|
s?: string | undefined;
|
|
1617
4642
|
n: string;
|
|
1618
4643
|
}[] | null;
|
|
@@ -1622,6 +4647,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1622
4647
|
}[];
|
|
1623
4648
|
customData: any[];
|
|
1624
4649
|
reactProfilerTimings: any[];
|
|
4650
|
+
errorCount: number;
|
|
1625
4651
|
} | {
|
|
1626
4652
|
legacyMetrics?: undefined;
|
|
1627
4653
|
initialPageLoadExtraTimings: {
|
|
@@ -1661,7 +4687,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1661
4687
|
isPreviousInteractionAborted: boolean;
|
|
1662
4688
|
abortedByInteractionName: string | undefined;
|
|
1663
4689
|
apdex: {
|
|
1664
|
-
labelStack?: {
|
|
4690
|
+
labelStack?: string | {
|
|
1665
4691
|
s?: string | undefined;
|
|
1666
4692
|
n: string;
|
|
1667
4693
|
}[] | undefined;
|
|
@@ -1671,14 +4697,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1671
4697
|
}[];
|
|
1672
4698
|
end: number;
|
|
1673
4699
|
start: number;
|
|
1674
|
-
segments: {
|
|
1675
|
-
labelStack: {
|
|
4700
|
+
segments: import("./common/utils").SegmentTree | {
|
|
4701
|
+
labelStack: string | {
|
|
1676
4702
|
s?: string | undefined;
|
|
1677
4703
|
n: string;
|
|
1678
4704
|
}[];
|
|
1679
4705
|
}[];
|
|
1680
4706
|
marks: {
|
|
1681
|
-
labelStack: {
|
|
4707
|
+
labelStack: string | {
|
|
1682
4708
|
s?: string | undefined;
|
|
1683
4709
|
n: string;
|
|
1684
4710
|
}[] | null;
|
|
@@ -1688,6 +4714,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1688
4714
|
}[];
|
|
1689
4715
|
customData: any[];
|
|
1690
4716
|
reactProfilerTimings: any[];
|
|
4717
|
+
errorCount: number;
|
|
1691
4718
|
} | {
|
|
1692
4719
|
legacyMetrics: {
|
|
1693
4720
|
key: string;
|
|
@@ -1743,7 +4770,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1743
4770
|
isPreviousInteractionAborted: boolean;
|
|
1744
4771
|
abortedByInteractionName: string | undefined;
|
|
1745
4772
|
apdex: {
|
|
1746
|
-
labelStack?: {
|
|
4773
|
+
labelStack?: string | {
|
|
1747
4774
|
s?: string | undefined;
|
|
1748
4775
|
n: string;
|
|
1749
4776
|
}[] | undefined;
|
|
@@ -1753,14 +4780,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1753
4780
|
}[];
|
|
1754
4781
|
end: number;
|
|
1755
4782
|
start: number;
|
|
1756
|
-
segments: {
|
|
1757
|
-
labelStack: {
|
|
4783
|
+
segments: import("./common/utils").SegmentTree | {
|
|
4784
|
+
labelStack: string | {
|
|
1758
4785
|
s?: string | undefined;
|
|
1759
4786
|
n: string;
|
|
1760
4787
|
}[];
|
|
1761
4788
|
}[];
|
|
1762
4789
|
marks: {
|
|
1763
|
-
labelStack: {
|
|
4790
|
+
labelStack: string | {
|
|
1764
4791
|
s?: string | undefined;
|
|
1765
4792
|
n: string;
|
|
1766
4793
|
}[] | null;
|
|
@@ -1770,12 +4797,13 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1770
4797
|
}[];
|
|
1771
4798
|
customData: any[];
|
|
1772
4799
|
reactProfilerTimings: any[];
|
|
4800
|
+
errorCount: number;
|
|
1773
4801
|
} | {
|
|
1774
4802
|
legacyMetrics?: undefined;
|
|
1775
4803
|
initialPageLoadExtraTimings?: undefined;
|
|
1776
4804
|
SSRTimings?: undefined;
|
|
1777
4805
|
errors: {
|
|
1778
|
-
labelStack: {
|
|
4806
|
+
labelStack: string | {
|
|
1779
4807
|
s?: string | undefined;
|
|
1780
4808
|
n: string;
|
|
1781
4809
|
}[] | null;
|
|
@@ -1836,7 +4864,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1836
4864
|
isPreviousInteractionAborted: boolean;
|
|
1837
4865
|
abortedByInteractionName: string | undefined;
|
|
1838
4866
|
apdex: {
|
|
1839
|
-
labelStack?: {
|
|
4867
|
+
labelStack?: string | {
|
|
1840
4868
|
s?: string | undefined;
|
|
1841
4869
|
n: string;
|
|
1842
4870
|
}[] | undefined;
|
|
@@ -1846,14 +4874,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1846
4874
|
}[];
|
|
1847
4875
|
end: number;
|
|
1848
4876
|
start: number;
|
|
1849
|
-
segments: {
|
|
1850
|
-
labelStack: {
|
|
4877
|
+
segments: import("./common/utils").SegmentTree | {
|
|
4878
|
+
labelStack: string | {
|
|
1851
4879
|
s?: string | undefined;
|
|
1852
4880
|
n: string;
|
|
1853
4881
|
}[];
|
|
1854
4882
|
}[];
|
|
1855
4883
|
marks: {
|
|
1856
|
-
labelStack: {
|
|
4884
|
+
labelStack: string | {
|
|
1857
4885
|
s?: string | undefined;
|
|
1858
4886
|
n: string;
|
|
1859
4887
|
}[] | null;
|
|
@@ -1863,6 +4891,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1863
4891
|
}[];
|
|
1864
4892
|
customData: any[];
|
|
1865
4893
|
reactProfilerTimings: any[];
|
|
4894
|
+
errorCount: number;
|
|
1866
4895
|
} | {
|
|
1867
4896
|
legacyMetrics: {
|
|
1868
4897
|
key: string;
|
|
@@ -1884,7 +4913,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1884
4913
|
initialPageLoadExtraTimings?: undefined;
|
|
1885
4914
|
SSRTimings?: undefined;
|
|
1886
4915
|
errors: {
|
|
1887
|
-
labelStack: {
|
|
4916
|
+
labelStack: string | {
|
|
1888
4917
|
s?: string | undefined;
|
|
1889
4918
|
n: string;
|
|
1890
4919
|
}[] | null;
|
|
@@ -1945,7 +4974,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1945
4974
|
isPreviousInteractionAborted: boolean;
|
|
1946
4975
|
abortedByInteractionName: string | undefined;
|
|
1947
4976
|
apdex: {
|
|
1948
|
-
labelStack?: {
|
|
4977
|
+
labelStack?: string | {
|
|
1949
4978
|
s?: string | undefined;
|
|
1950
4979
|
n: string;
|
|
1951
4980
|
}[] | undefined;
|
|
@@ -1955,14 +4984,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1955
4984
|
}[];
|
|
1956
4985
|
end: number;
|
|
1957
4986
|
start: number;
|
|
1958
|
-
segments: {
|
|
1959
|
-
labelStack: {
|
|
4987
|
+
segments: import("./common/utils").SegmentTree | {
|
|
4988
|
+
labelStack: string | {
|
|
1960
4989
|
s?: string | undefined;
|
|
1961
4990
|
n: string;
|
|
1962
4991
|
}[];
|
|
1963
4992
|
}[];
|
|
1964
4993
|
marks: {
|
|
1965
|
-
labelStack: {
|
|
4994
|
+
labelStack: string | {
|
|
1966
4995
|
s?: string | undefined;
|
|
1967
4996
|
n: string;
|
|
1968
4997
|
}[] | null;
|
|
@@ -1972,6 +5001,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1972
5001
|
}[];
|
|
1973
5002
|
customData: any[];
|
|
1974
5003
|
reactProfilerTimings: any[];
|
|
5004
|
+
errorCount: number;
|
|
1975
5005
|
} | {
|
|
1976
5006
|
legacyMetrics?: undefined;
|
|
1977
5007
|
initialPageLoadExtraTimings: {
|
|
@@ -1983,7 +5013,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1983
5013
|
data: any;
|
|
1984
5014
|
}[];
|
|
1985
5015
|
errors: {
|
|
1986
|
-
labelStack: {
|
|
5016
|
+
labelStack: string | {
|
|
1987
5017
|
s?: string | undefined;
|
|
1988
5018
|
n: string;
|
|
1989
5019
|
}[] | null;
|
|
@@ -2044,7 +5074,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2044
5074
|
isPreviousInteractionAborted: boolean;
|
|
2045
5075
|
abortedByInteractionName: string | undefined;
|
|
2046
5076
|
apdex: {
|
|
2047
|
-
labelStack?: {
|
|
5077
|
+
labelStack?: string | {
|
|
2048
5078
|
s?: string | undefined;
|
|
2049
5079
|
n: string;
|
|
2050
5080
|
}[] | undefined;
|
|
@@ -2054,14 +5084,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2054
5084
|
}[];
|
|
2055
5085
|
end: number;
|
|
2056
5086
|
start: number;
|
|
2057
|
-
segments: {
|
|
2058
|
-
labelStack: {
|
|
5087
|
+
segments: import("./common/utils").SegmentTree | {
|
|
5088
|
+
labelStack: string | {
|
|
2059
5089
|
s?: string | undefined;
|
|
2060
5090
|
n: string;
|
|
2061
5091
|
}[];
|
|
2062
5092
|
}[];
|
|
2063
5093
|
marks: {
|
|
2064
|
-
labelStack: {
|
|
5094
|
+
labelStack: string | {
|
|
2065
5095
|
s?: string | undefined;
|
|
2066
5096
|
n: string;
|
|
2067
5097
|
}[] | null;
|
|
@@ -2071,6 +5101,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2071
5101
|
}[];
|
|
2072
5102
|
customData: any[];
|
|
2073
5103
|
reactProfilerTimings: any[];
|
|
5104
|
+
errorCount: number;
|
|
2074
5105
|
} | {
|
|
2075
5106
|
legacyMetrics: {
|
|
2076
5107
|
key: string;
|
|
@@ -2098,7 +5129,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2098
5129
|
data: any;
|
|
2099
5130
|
}[];
|
|
2100
5131
|
errors: {
|
|
2101
|
-
labelStack: {
|
|
5132
|
+
labelStack: string | {
|
|
2102
5133
|
s?: string | undefined;
|
|
2103
5134
|
n: string;
|
|
2104
5135
|
}[] | null;
|
|
@@ -2159,7 +5190,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2159
5190
|
isPreviousInteractionAborted: boolean;
|
|
2160
5191
|
abortedByInteractionName: string | undefined;
|
|
2161
5192
|
apdex: {
|
|
2162
|
-
labelStack?: {
|
|
5193
|
+
labelStack?: string | {
|
|
2163
5194
|
s?: string | undefined;
|
|
2164
5195
|
n: string;
|
|
2165
5196
|
}[] | undefined;
|
|
@@ -2169,14 +5200,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2169
5200
|
}[];
|
|
2170
5201
|
end: number;
|
|
2171
5202
|
start: number;
|
|
2172
|
-
segments: {
|
|
2173
|
-
labelStack: {
|
|
5203
|
+
segments: import("./common/utils").SegmentTree | {
|
|
5204
|
+
labelStack: string | {
|
|
2174
5205
|
s?: string | undefined;
|
|
2175
5206
|
n: string;
|
|
2176
5207
|
}[];
|
|
2177
5208
|
}[];
|
|
2178
5209
|
marks: {
|
|
2179
|
-
labelStack: {
|
|
5210
|
+
labelStack: string | {
|
|
2180
5211
|
s?: string | undefined;
|
|
2181
5212
|
n: string;
|
|
2182
5213
|
}[] | null;
|
|
@@ -2186,9 +5217,36 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2186
5217
|
}[];
|
|
2187
5218
|
customData: any[];
|
|
2188
5219
|
reactProfilerTimings: any[];
|
|
5220
|
+
errorCount: number;
|
|
2189
5221
|
};
|
|
2190
5222
|
'ufo:payloadTime': number;
|
|
2191
|
-
|
|
5223
|
+
stylesheets?: undefined;
|
|
5224
|
+
styleElements?: undefined;
|
|
5225
|
+
styleProps?: undefined;
|
|
5226
|
+
styleDeclarations?: undefined;
|
|
5227
|
+
cssrules?: undefined;
|
|
5228
|
+
'metrics:navigation': {
|
|
5229
|
+
redirectStart: number;
|
|
5230
|
+
redirectEnd: number;
|
|
5231
|
+
fetchStart: number;
|
|
5232
|
+
domainLookupStart: number;
|
|
5233
|
+
domainLookupEnd: number;
|
|
5234
|
+
connectStart: number;
|
|
5235
|
+
connectEnd: number;
|
|
5236
|
+
secureConnectionStart: number;
|
|
5237
|
+
requestStart: number;
|
|
5238
|
+
responseStart: number;
|
|
5239
|
+
responseEnd: number;
|
|
5240
|
+
encodedBodySize: number;
|
|
5241
|
+
decodedBodySize: number;
|
|
5242
|
+
transferSize: number;
|
|
5243
|
+
redirectCount: number;
|
|
5244
|
+
type: NavigationTimingType;
|
|
5245
|
+
unloadEventEnd: number;
|
|
5246
|
+
unloadEventStart: number;
|
|
5247
|
+
workerStart: number;
|
|
5248
|
+
nextHopProtocol: string;
|
|
5249
|
+
};
|
|
2192
5250
|
'metrics@ttai': {
|
|
2193
5251
|
[key: string]: number;
|
|
2194
5252
|
} | null;
|
|
@@ -2217,6 +5275,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2217
5275
|
'experience:key': string;
|
|
2218
5276
|
'experience:name': string;
|
|
2219
5277
|
} | {
|
|
5278
|
+
errorCount: number;
|
|
2220
5279
|
interactionMetrics: {
|
|
2221
5280
|
legacyMetrics?: undefined;
|
|
2222
5281
|
initialPageLoadExtraTimings?: undefined;
|
|
@@ -2250,7 +5309,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2250
5309
|
isPreviousInteractionAborted: boolean;
|
|
2251
5310
|
abortedByInteractionName: string | undefined;
|
|
2252
5311
|
apdex: {
|
|
2253
|
-
labelStack?: {
|
|
5312
|
+
labelStack?: string | {
|
|
2254
5313
|
s?: string | undefined;
|
|
2255
5314
|
n: string;
|
|
2256
5315
|
}[] | undefined;
|
|
@@ -2260,14 +5319,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2260
5319
|
}[];
|
|
2261
5320
|
end: number;
|
|
2262
5321
|
start: number;
|
|
2263
|
-
segments: {
|
|
2264
|
-
labelStack: {
|
|
5322
|
+
segments: import("./common/utils").SegmentTree | {
|
|
5323
|
+
labelStack: string | {
|
|
2265
5324
|
s?: string | undefined;
|
|
2266
5325
|
n: string;
|
|
2267
5326
|
}[];
|
|
2268
5327
|
}[];
|
|
2269
5328
|
marks: {
|
|
2270
|
-
labelStack: {
|
|
5329
|
+
labelStack: string | {
|
|
2271
5330
|
s?: string | undefined;
|
|
2272
5331
|
n: string;
|
|
2273
5332
|
}[] | null;
|
|
@@ -2277,6 +5336,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2277
5336
|
}[];
|
|
2278
5337
|
customData: any[];
|
|
2279
5338
|
reactProfilerTimings: any[];
|
|
5339
|
+
errorCount: number;
|
|
2280
5340
|
} | {
|
|
2281
5341
|
legacyMetrics: {
|
|
2282
5342
|
key: string;
|
|
@@ -2326,7 +5386,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2326
5386
|
isPreviousInteractionAborted: boolean;
|
|
2327
5387
|
abortedByInteractionName: string | undefined;
|
|
2328
5388
|
apdex: {
|
|
2329
|
-
labelStack?: {
|
|
5389
|
+
labelStack?: string | {
|
|
2330
5390
|
s?: string | undefined;
|
|
2331
5391
|
n: string;
|
|
2332
5392
|
}[] | undefined;
|
|
@@ -2336,14 +5396,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2336
5396
|
}[];
|
|
2337
5397
|
end: number;
|
|
2338
5398
|
start: number;
|
|
2339
|
-
segments: {
|
|
2340
|
-
labelStack: {
|
|
5399
|
+
segments: import("./common/utils").SegmentTree | {
|
|
5400
|
+
labelStack: string | {
|
|
2341
5401
|
s?: string | undefined;
|
|
2342
5402
|
n: string;
|
|
2343
5403
|
}[];
|
|
2344
5404
|
}[];
|
|
2345
5405
|
marks: {
|
|
2346
|
-
labelStack: {
|
|
5406
|
+
labelStack: string | {
|
|
2347
5407
|
s?: string | undefined;
|
|
2348
5408
|
n: string;
|
|
2349
5409
|
}[] | null;
|
|
@@ -2353,6 +5413,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2353
5413
|
}[];
|
|
2354
5414
|
customData: any[];
|
|
2355
5415
|
reactProfilerTimings: any[];
|
|
5416
|
+
errorCount: number;
|
|
2356
5417
|
} | {
|
|
2357
5418
|
legacyMetrics?: undefined;
|
|
2358
5419
|
initialPageLoadExtraTimings: {
|
|
@@ -2392,7 +5453,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2392
5453
|
isPreviousInteractionAborted: boolean;
|
|
2393
5454
|
abortedByInteractionName: string | undefined;
|
|
2394
5455
|
apdex: {
|
|
2395
|
-
labelStack?: {
|
|
5456
|
+
labelStack?: string | {
|
|
2396
5457
|
s?: string | undefined;
|
|
2397
5458
|
n: string;
|
|
2398
5459
|
}[] | undefined;
|
|
@@ -2402,14 +5463,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2402
5463
|
}[];
|
|
2403
5464
|
end: number;
|
|
2404
5465
|
start: number;
|
|
2405
|
-
segments: {
|
|
2406
|
-
labelStack: {
|
|
5466
|
+
segments: import("./common/utils").SegmentTree | {
|
|
5467
|
+
labelStack: string | {
|
|
2407
5468
|
s?: string | undefined;
|
|
2408
5469
|
n: string;
|
|
2409
5470
|
}[];
|
|
2410
5471
|
}[];
|
|
2411
5472
|
marks: {
|
|
2412
|
-
labelStack: {
|
|
5473
|
+
labelStack: string | {
|
|
2413
5474
|
s?: string | undefined;
|
|
2414
5475
|
n: string;
|
|
2415
5476
|
}[] | null;
|
|
@@ -2419,6 +5480,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2419
5480
|
}[];
|
|
2420
5481
|
customData: any[];
|
|
2421
5482
|
reactProfilerTimings: any[];
|
|
5483
|
+
errorCount: number;
|
|
2422
5484
|
} | {
|
|
2423
5485
|
legacyMetrics: {
|
|
2424
5486
|
key: string;
|
|
@@ -2474,7 +5536,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2474
5536
|
isPreviousInteractionAborted: boolean;
|
|
2475
5537
|
abortedByInteractionName: string | undefined;
|
|
2476
5538
|
apdex: {
|
|
2477
|
-
labelStack?: {
|
|
5539
|
+
labelStack?: string | {
|
|
2478
5540
|
s?: string | undefined;
|
|
2479
5541
|
n: string;
|
|
2480
5542
|
}[] | undefined;
|
|
@@ -2484,14 +5546,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2484
5546
|
}[];
|
|
2485
5547
|
end: number;
|
|
2486
5548
|
start: number;
|
|
2487
|
-
segments: {
|
|
2488
|
-
labelStack: {
|
|
5549
|
+
segments: import("./common/utils").SegmentTree | {
|
|
5550
|
+
labelStack: string | {
|
|
2489
5551
|
s?: string | undefined;
|
|
2490
5552
|
n: string;
|
|
2491
5553
|
}[];
|
|
2492
5554
|
}[];
|
|
2493
5555
|
marks: {
|
|
2494
|
-
labelStack: {
|
|
5556
|
+
labelStack: string | {
|
|
2495
5557
|
s?: string | undefined;
|
|
2496
5558
|
n: string;
|
|
2497
5559
|
}[] | null;
|
|
@@ -2501,12 +5563,13 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2501
5563
|
}[];
|
|
2502
5564
|
customData: any[];
|
|
2503
5565
|
reactProfilerTimings: any[];
|
|
5566
|
+
errorCount: number;
|
|
2504
5567
|
} | {
|
|
2505
5568
|
legacyMetrics?: undefined;
|
|
2506
5569
|
initialPageLoadExtraTimings?: undefined;
|
|
2507
5570
|
SSRTimings?: undefined;
|
|
2508
5571
|
errors: {
|
|
2509
|
-
labelStack: {
|
|
5572
|
+
labelStack: string | {
|
|
2510
5573
|
s?: string | undefined;
|
|
2511
5574
|
n: string;
|
|
2512
5575
|
}[] | null;
|
|
@@ -2567,7 +5630,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2567
5630
|
isPreviousInteractionAborted: boolean;
|
|
2568
5631
|
abortedByInteractionName: string | undefined;
|
|
2569
5632
|
apdex: {
|
|
2570
|
-
labelStack?: {
|
|
5633
|
+
labelStack?: string | {
|
|
2571
5634
|
s?: string | undefined;
|
|
2572
5635
|
n: string;
|
|
2573
5636
|
}[] | undefined;
|
|
@@ -2577,14 +5640,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2577
5640
|
}[];
|
|
2578
5641
|
end: number;
|
|
2579
5642
|
start: number;
|
|
2580
|
-
segments: {
|
|
2581
|
-
labelStack: {
|
|
5643
|
+
segments: import("./common/utils").SegmentTree | {
|
|
5644
|
+
labelStack: string | {
|
|
2582
5645
|
s?: string | undefined;
|
|
2583
5646
|
n: string;
|
|
2584
5647
|
}[];
|
|
2585
5648
|
}[];
|
|
2586
5649
|
marks: {
|
|
2587
|
-
labelStack: {
|
|
5650
|
+
labelStack: string | {
|
|
2588
5651
|
s?: string | undefined;
|
|
2589
5652
|
n: string;
|
|
2590
5653
|
}[] | null;
|
|
@@ -2594,6 +5657,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2594
5657
|
}[];
|
|
2595
5658
|
customData: any[];
|
|
2596
5659
|
reactProfilerTimings: any[];
|
|
5660
|
+
errorCount: number;
|
|
2597
5661
|
} | {
|
|
2598
5662
|
legacyMetrics: {
|
|
2599
5663
|
key: string;
|
|
@@ -2615,7 +5679,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2615
5679
|
initialPageLoadExtraTimings?: undefined;
|
|
2616
5680
|
SSRTimings?: undefined;
|
|
2617
5681
|
errors: {
|
|
2618
|
-
labelStack: {
|
|
5682
|
+
labelStack: string | {
|
|
2619
5683
|
s?: string | undefined;
|
|
2620
5684
|
n: string;
|
|
2621
5685
|
}[] | null;
|
|
@@ -2676,7 +5740,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2676
5740
|
isPreviousInteractionAborted: boolean;
|
|
2677
5741
|
abortedByInteractionName: string | undefined;
|
|
2678
5742
|
apdex: {
|
|
2679
|
-
labelStack?: {
|
|
5743
|
+
labelStack?: string | {
|
|
2680
5744
|
s?: string | undefined;
|
|
2681
5745
|
n: string;
|
|
2682
5746
|
}[] | undefined;
|
|
@@ -2686,14 +5750,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2686
5750
|
}[];
|
|
2687
5751
|
end: number;
|
|
2688
5752
|
start: number;
|
|
2689
|
-
segments: {
|
|
2690
|
-
labelStack: {
|
|
5753
|
+
segments: import("./common/utils").SegmentTree | {
|
|
5754
|
+
labelStack: string | {
|
|
2691
5755
|
s?: string | undefined;
|
|
2692
5756
|
n: string;
|
|
2693
5757
|
}[];
|
|
2694
5758
|
}[];
|
|
2695
5759
|
marks: {
|
|
2696
|
-
labelStack: {
|
|
5760
|
+
labelStack: string | {
|
|
2697
5761
|
s?: string | undefined;
|
|
2698
5762
|
n: string;
|
|
2699
5763
|
}[] | null;
|
|
@@ -2703,6 +5767,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2703
5767
|
}[];
|
|
2704
5768
|
customData: any[];
|
|
2705
5769
|
reactProfilerTimings: any[];
|
|
5770
|
+
errorCount: number;
|
|
2706
5771
|
} | {
|
|
2707
5772
|
legacyMetrics?: undefined;
|
|
2708
5773
|
initialPageLoadExtraTimings: {
|
|
@@ -2714,7 +5779,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2714
5779
|
data: any;
|
|
2715
5780
|
}[];
|
|
2716
5781
|
errors: {
|
|
2717
|
-
labelStack: {
|
|
5782
|
+
labelStack: string | {
|
|
2718
5783
|
s?: string | undefined;
|
|
2719
5784
|
n: string;
|
|
2720
5785
|
}[] | null;
|
|
@@ -2775,7 +5840,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2775
5840
|
isPreviousInteractionAborted: boolean;
|
|
2776
5841
|
abortedByInteractionName: string | undefined;
|
|
2777
5842
|
apdex: {
|
|
2778
|
-
labelStack?: {
|
|
5843
|
+
labelStack?: string | {
|
|
2779
5844
|
s?: string | undefined;
|
|
2780
5845
|
n: string;
|
|
2781
5846
|
}[] | undefined;
|
|
@@ -2785,14 +5850,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2785
5850
|
}[];
|
|
2786
5851
|
end: number;
|
|
2787
5852
|
start: number;
|
|
2788
|
-
segments: {
|
|
2789
|
-
labelStack: {
|
|
5853
|
+
segments: import("./common/utils").SegmentTree | {
|
|
5854
|
+
labelStack: string | {
|
|
2790
5855
|
s?: string | undefined;
|
|
2791
5856
|
n: string;
|
|
2792
5857
|
}[];
|
|
2793
5858
|
}[];
|
|
2794
5859
|
marks: {
|
|
2795
|
-
labelStack: {
|
|
5860
|
+
labelStack: string | {
|
|
2796
5861
|
s?: string | undefined;
|
|
2797
5862
|
n: string;
|
|
2798
5863
|
}[] | null;
|
|
@@ -2802,6 +5867,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2802
5867
|
}[];
|
|
2803
5868
|
customData: any[];
|
|
2804
5869
|
reactProfilerTimings: any[];
|
|
5870
|
+
errorCount: number;
|
|
2805
5871
|
} | {
|
|
2806
5872
|
legacyMetrics: {
|
|
2807
5873
|
key: string;
|
|
@@ -2829,7 +5895,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2829
5895
|
data: any;
|
|
2830
5896
|
}[];
|
|
2831
5897
|
errors: {
|
|
2832
|
-
labelStack: {
|
|
5898
|
+
labelStack: string | {
|
|
2833
5899
|
s?: string | undefined;
|
|
2834
5900
|
n: string;
|
|
2835
5901
|
}[] | null;
|
|
@@ -2890,7 +5956,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2890
5956
|
isPreviousInteractionAborted: boolean;
|
|
2891
5957
|
abortedByInteractionName: string | undefined;
|
|
2892
5958
|
apdex: {
|
|
2893
|
-
labelStack?: {
|
|
5959
|
+
labelStack?: string | {
|
|
2894
5960
|
s?: string | undefined;
|
|
2895
5961
|
n: string;
|
|
2896
5962
|
}[] | undefined;
|
|
@@ -2900,14 +5966,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2900
5966
|
}[];
|
|
2901
5967
|
end: number;
|
|
2902
5968
|
start: number;
|
|
2903
|
-
segments: {
|
|
2904
|
-
labelStack: {
|
|
5969
|
+
segments: import("./common/utils").SegmentTree | {
|
|
5970
|
+
labelStack: string | {
|
|
2905
5971
|
s?: string | undefined;
|
|
2906
5972
|
n: string;
|
|
2907
5973
|
}[];
|
|
2908
5974
|
}[];
|
|
2909
5975
|
marks: {
|
|
2910
|
-
labelStack: {
|
|
5976
|
+
labelStack: string | {
|
|
2911
5977
|
s?: string | undefined;
|
|
2912
5978
|
n: string;
|
|
2913
5979
|
}[] | null;
|
|
@@ -2917,8 +5983,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2917
5983
|
}[];
|
|
2918
5984
|
customData: any[];
|
|
2919
5985
|
reactProfilerTimings: any[];
|
|
5986
|
+
errorCount: number;
|
|
2920
5987
|
};
|
|
2921
5988
|
'ufo:payloadTime': number;
|
|
5989
|
+
stylesheets: number;
|
|
5990
|
+
styleElements: number;
|
|
5991
|
+
styleProps: number;
|
|
5992
|
+
styleDeclarations: number;
|
|
5993
|
+
cssrules: number;
|
|
2922
5994
|
'metrics:navigation': {
|
|
2923
5995
|
redirectStart: number;
|
|
2924
5996
|
redirectEnd: number;
|