@atlaskit/react-ufo 2.3.2 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +22 -47
- package/dist/cjs/vc/index.js +3 -4
- package/dist/cjs/vc/vc-observer/index.js +6 -0
- 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 +5 -31
- package/dist/es2019/vc/index.js +3 -4
- package/dist/es2019/vc/vc-observer/index.js +3 -0
- 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 +7 -32
- package/dist/esm/vc/index.js +3 -4
- package/dist/esm/vc/vc-observer/index.js +6 -0
- package/dist/types/common/constants.d.ts +1 -1
- package/dist/types/common/vc/types.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 +144 -144
- package/dist/types/interaction-context/index.d.ts +1 -1
- package/dist/types/vc/index.d.ts +3 -0
- package/dist/types/vc/vc-observer/index.d.ts +2 -1
- package/dist/types-ts4.5/common/constants.d.ts +1 -1
- package/dist/types-ts4.5/common/vc/types.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 +144 -144
- package/dist/types-ts4.5/interaction-context/index.d.ts +1 -1
- package/dist/types-ts4.5/vc/index.d.ts +3 -0
- package/dist/types-ts4.5/vc/vc-observer/index.d.ts +2 -1
- package/package.json +4 -1
|
@@ -42,7 +42,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
42
42
|
isPreviousInteractionAborted: boolean;
|
|
43
43
|
abortedByInteractionName: string | undefined;
|
|
44
44
|
apdex: {
|
|
45
|
-
labelStack?: {
|
|
45
|
+
labelStack?: string | {
|
|
46
46
|
s?: string | undefined;
|
|
47
47
|
n: string;
|
|
48
48
|
}[] | undefined;
|
|
@@ -52,14 +52,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
52
52
|
}[];
|
|
53
53
|
end: number;
|
|
54
54
|
start: number;
|
|
55
|
-
segments: {
|
|
56
|
-
labelStack: {
|
|
55
|
+
segments: import("./common/utils").SegmentTree | {
|
|
56
|
+
labelStack: string | {
|
|
57
57
|
s?: string | undefined;
|
|
58
58
|
n: string;
|
|
59
59
|
}[];
|
|
60
60
|
}[];
|
|
61
61
|
marks: {
|
|
62
|
-
labelStack: {
|
|
62
|
+
labelStack: string | {
|
|
63
63
|
s?: string | undefined;
|
|
64
64
|
n: string;
|
|
65
65
|
}[] | null;
|
|
@@ -118,7 +118,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
118
118
|
isPreviousInteractionAborted: boolean;
|
|
119
119
|
abortedByInteractionName: string | undefined;
|
|
120
120
|
apdex: {
|
|
121
|
-
labelStack?: {
|
|
121
|
+
labelStack?: string | {
|
|
122
122
|
s?: string | undefined;
|
|
123
123
|
n: string;
|
|
124
124
|
}[] | undefined;
|
|
@@ -128,14 +128,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
128
128
|
}[];
|
|
129
129
|
end: number;
|
|
130
130
|
start: number;
|
|
131
|
-
segments: {
|
|
132
|
-
labelStack: {
|
|
131
|
+
segments: import("./common/utils").SegmentTree | {
|
|
132
|
+
labelStack: string | {
|
|
133
133
|
s?: string | undefined;
|
|
134
134
|
n: string;
|
|
135
135
|
}[];
|
|
136
136
|
}[];
|
|
137
137
|
marks: {
|
|
138
|
-
labelStack: {
|
|
138
|
+
labelStack: string | {
|
|
139
139
|
s?: string | undefined;
|
|
140
140
|
n: string;
|
|
141
141
|
}[] | null;
|
|
@@ -184,7 +184,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
184
184
|
isPreviousInteractionAborted: boolean;
|
|
185
185
|
abortedByInteractionName: string | undefined;
|
|
186
186
|
apdex: {
|
|
187
|
-
labelStack?: {
|
|
187
|
+
labelStack?: string | {
|
|
188
188
|
s?: string | undefined;
|
|
189
189
|
n: string;
|
|
190
190
|
}[] | undefined;
|
|
@@ -194,14 +194,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
194
194
|
}[];
|
|
195
195
|
end: number;
|
|
196
196
|
start: number;
|
|
197
|
-
segments: {
|
|
198
|
-
labelStack: {
|
|
197
|
+
segments: import("./common/utils").SegmentTree | {
|
|
198
|
+
labelStack: string | {
|
|
199
199
|
s?: string | undefined;
|
|
200
200
|
n: string;
|
|
201
201
|
}[];
|
|
202
202
|
}[];
|
|
203
203
|
marks: {
|
|
204
|
-
labelStack: {
|
|
204
|
+
labelStack: string | {
|
|
205
205
|
s?: string | undefined;
|
|
206
206
|
n: string;
|
|
207
207
|
}[] | null;
|
|
@@ -266,7 +266,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
266
266
|
isPreviousInteractionAborted: boolean;
|
|
267
267
|
abortedByInteractionName: string | undefined;
|
|
268
268
|
apdex: {
|
|
269
|
-
labelStack?: {
|
|
269
|
+
labelStack?: string | {
|
|
270
270
|
s?: string | undefined;
|
|
271
271
|
n: string;
|
|
272
272
|
}[] | undefined;
|
|
@@ -276,14 +276,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
276
276
|
}[];
|
|
277
277
|
end: number;
|
|
278
278
|
start: number;
|
|
279
|
-
segments: {
|
|
280
|
-
labelStack: {
|
|
279
|
+
segments: import("./common/utils").SegmentTree | {
|
|
280
|
+
labelStack: string | {
|
|
281
281
|
s?: string | undefined;
|
|
282
282
|
n: string;
|
|
283
283
|
}[];
|
|
284
284
|
}[];
|
|
285
285
|
marks: {
|
|
286
|
-
labelStack: {
|
|
286
|
+
labelStack: string | {
|
|
287
287
|
s?: string | undefined;
|
|
288
288
|
n: string;
|
|
289
289
|
}[] | null;
|
|
@@ -298,7 +298,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
298
298
|
initialPageLoadExtraTimings?: undefined;
|
|
299
299
|
SSRTimings?: undefined;
|
|
300
300
|
errors: {
|
|
301
|
-
labelStack: {
|
|
301
|
+
labelStack: string | {
|
|
302
302
|
s?: string | undefined;
|
|
303
303
|
n: string;
|
|
304
304
|
}[] | null;
|
|
@@ -359,7 +359,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
359
359
|
isPreviousInteractionAborted: boolean;
|
|
360
360
|
abortedByInteractionName: string | undefined;
|
|
361
361
|
apdex: {
|
|
362
|
-
labelStack?: {
|
|
362
|
+
labelStack?: string | {
|
|
363
363
|
s?: string | undefined;
|
|
364
364
|
n: string;
|
|
365
365
|
}[] | undefined;
|
|
@@ -369,14 +369,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
369
369
|
}[];
|
|
370
370
|
end: number;
|
|
371
371
|
start: number;
|
|
372
|
-
segments: {
|
|
373
|
-
labelStack: {
|
|
372
|
+
segments: import("./common/utils").SegmentTree | {
|
|
373
|
+
labelStack: string | {
|
|
374
374
|
s?: string | undefined;
|
|
375
375
|
n: string;
|
|
376
376
|
}[];
|
|
377
377
|
}[];
|
|
378
378
|
marks: {
|
|
379
|
-
labelStack: {
|
|
379
|
+
labelStack: string | {
|
|
380
380
|
s?: string | undefined;
|
|
381
381
|
n: string;
|
|
382
382
|
}[] | null;
|
|
@@ -407,7 +407,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
407
407
|
initialPageLoadExtraTimings?: undefined;
|
|
408
408
|
SSRTimings?: undefined;
|
|
409
409
|
errors: {
|
|
410
|
-
labelStack: {
|
|
410
|
+
labelStack: string | {
|
|
411
411
|
s?: string | undefined;
|
|
412
412
|
n: string;
|
|
413
413
|
}[] | null;
|
|
@@ -468,7 +468,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
468
468
|
isPreviousInteractionAborted: boolean;
|
|
469
469
|
abortedByInteractionName: string | undefined;
|
|
470
470
|
apdex: {
|
|
471
|
-
labelStack?: {
|
|
471
|
+
labelStack?: string | {
|
|
472
472
|
s?: string | undefined;
|
|
473
473
|
n: string;
|
|
474
474
|
}[] | undefined;
|
|
@@ -478,14 +478,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
478
478
|
}[];
|
|
479
479
|
end: number;
|
|
480
480
|
start: number;
|
|
481
|
-
segments: {
|
|
482
|
-
labelStack: {
|
|
481
|
+
segments: import("./common/utils").SegmentTree | {
|
|
482
|
+
labelStack: string | {
|
|
483
483
|
s?: string | undefined;
|
|
484
484
|
n: string;
|
|
485
485
|
}[];
|
|
486
486
|
}[];
|
|
487
487
|
marks: {
|
|
488
|
-
labelStack: {
|
|
488
|
+
labelStack: string | {
|
|
489
489
|
s?: string | undefined;
|
|
490
490
|
n: string;
|
|
491
491
|
}[] | null;
|
|
@@ -506,7 +506,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
506
506
|
data: any;
|
|
507
507
|
}[];
|
|
508
508
|
errors: {
|
|
509
|
-
labelStack: {
|
|
509
|
+
labelStack: string | {
|
|
510
510
|
s?: string | undefined;
|
|
511
511
|
n: string;
|
|
512
512
|
}[] | null;
|
|
@@ -567,7 +567,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
567
567
|
isPreviousInteractionAborted: boolean;
|
|
568
568
|
abortedByInteractionName: string | undefined;
|
|
569
569
|
apdex: {
|
|
570
|
-
labelStack?: {
|
|
570
|
+
labelStack?: string | {
|
|
571
571
|
s?: string | undefined;
|
|
572
572
|
n: string;
|
|
573
573
|
}[] | undefined;
|
|
@@ -577,14 +577,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
577
577
|
}[];
|
|
578
578
|
end: number;
|
|
579
579
|
start: number;
|
|
580
|
-
segments: {
|
|
581
|
-
labelStack: {
|
|
580
|
+
segments: import("./common/utils").SegmentTree | {
|
|
581
|
+
labelStack: string | {
|
|
582
582
|
s?: string | undefined;
|
|
583
583
|
n: string;
|
|
584
584
|
}[];
|
|
585
585
|
}[];
|
|
586
586
|
marks: {
|
|
587
|
-
labelStack: {
|
|
587
|
+
labelStack: string | {
|
|
588
588
|
s?: string | undefined;
|
|
589
589
|
n: string;
|
|
590
590
|
}[] | null;
|
|
@@ -621,7 +621,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
621
621
|
data: any;
|
|
622
622
|
}[];
|
|
623
623
|
errors: {
|
|
624
|
-
labelStack: {
|
|
624
|
+
labelStack: string | {
|
|
625
625
|
s?: string | undefined;
|
|
626
626
|
n: string;
|
|
627
627
|
}[] | null;
|
|
@@ -682,7 +682,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
682
682
|
isPreviousInteractionAborted: boolean;
|
|
683
683
|
abortedByInteractionName: string | undefined;
|
|
684
684
|
apdex: {
|
|
685
|
-
labelStack?: {
|
|
685
|
+
labelStack?: string | {
|
|
686
686
|
s?: string | undefined;
|
|
687
687
|
n: string;
|
|
688
688
|
}[] | undefined;
|
|
@@ -692,14 +692,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
692
692
|
}[];
|
|
693
693
|
end: number;
|
|
694
694
|
start: number;
|
|
695
|
-
segments: {
|
|
696
|
-
labelStack: {
|
|
695
|
+
segments: import("./common/utils").SegmentTree | {
|
|
696
|
+
labelStack: string | {
|
|
697
697
|
s?: string | undefined;
|
|
698
698
|
n: string;
|
|
699
699
|
}[];
|
|
700
700
|
}[];
|
|
701
701
|
marks: {
|
|
702
|
-
labelStack: {
|
|
702
|
+
labelStack: string | {
|
|
703
703
|
s?: string | undefined;
|
|
704
704
|
n: string;
|
|
705
705
|
}[] | null;
|
|
@@ -770,7 +770,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
770
770
|
isPreviousInteractionAborted: boolean;
|
|
771
771
|
abortedByInteractionName: string | undefined;
|
|
772
772
|
apdex: {
|
|
773
|
-
labelStack?: {
|
|
773
|
+
labelStack?: string | {
|
|
774
774
|
s?: string | undefined;
|
|
775
775
|
n: string;
|
|
776
776
|
}[] | undefined;
|
|
@@ -780,14 +780,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
780
780
|
}[];
|
|
781
781
|
end: number;
|
|
782
782
|
start: number;
|
|
783
|
-
segments: {
|
|
784
|
-
labelStack: {
|
|
783
|
+
segments: import("./common/utils").SegmentTree | {
|
|
784
|
+
labelStack: string | {
|
|
785
785
|
s?: string | undefined;
|
|
786
786
|
n: string;
|
|
787
787
|
}[];
|
|
788
788
|
}[];
|
|
789
789
|
marks: {
|
|
790
|
-
labelStack: {
|
|
790
|
+
labelStack: string | {
|
|
791
791
|
s?: string | undefined;
|
|
792
792
|
n: string;
|
|
793
793
|
}[] | null;
|
|
@@ -846,7 +846,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
846
846
|
isPreviousInteractionAborted: boolean;
|
|
847
847
|
abortedByInteractionName: string | undefined;
|
|
848
848
|
apdex: {
|
|
849
|
-
labelStack?: {
|
|
849
|
+
labelStack?: string | {
|
|
850
850
|
s?: string | undefined;
|
|
851
851
|
n: string;
|
|
852
852
|
}[] | undefined;
|
|
@@ -856,14 +856,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
856
856
|
}[];
|
|
857
857
|
end: number;
|
|
858
858
|
start: number;
|
|
859
|
-
segments: {
|
|
860
|
-
labelStack: {
|
|
859
|
+
segments: import("./common/utils").SegmentTree | {
|
|
860
|
+
labelStack: string | {
|
|
861
861
|
s?: string | undefined;
|
|
862
862
|
n: string;
|
|
863
863
|
}[];
|
|
864
864
|
}[];
|
|
865
865
|
marks: {
|
|
866
|
-
labelStack: {
|
|
866
|
+
labelStack: string | {
|
|
867
867
|
s?: string | undefined;
|
|
868
868
|
n: string;
|
|
869
869
|
}[] | null;
|
|
@@ -912,7 +912,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
912
912
|
isPreviousInteractionAborted: boolean;
|
|
913
913
|
abortedByInteractionName: string | undefined;
|
|
914
914
|
apdex: {
|
|
915
|
-
labelStack?: {
|
|
915
|
+
labelStack?: string | {
|
|
916
916
|
s?: string | undefined;
|
|
917
917
|
n: string;
|
|
918
918
|
}[] | undefined;
|
|
@@ -922,14 +922,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
922
922
|
}[];
|
|
923
923
|
end: number;
|
|
924
924
|
start: number;
|
|
925
|
-
segments: {
|
|
926
|
-
labelStack: {
|
|
925
|
+
segments: import("./common/utils").SegmentTree | {
|
|
926
|
+
labelStack: string | {
|
|
927
927
|
s?: string | undefined;
|
|
928
928
|
n: string;
|
|
929
929
|
}[];
|
|
930
930
|
}[];
|
|
931
931
|
marks: {
|
|
932
|
-
labelStack: {
|
|
932
|
+
labelStack: string | {
|
|
933
933
|
s?: string | undefined;
|
|
934
934
|
n: string;
|
|
935
935
|
}[] | null;
|
|
@@ -994,7 +994,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
994
994
|
isPreviousInteractionAborted: boolean;
|
|
995
995
|
abortedByInteractionName: string | undefined;
|
|
996
996
|
apdex: {
|
|
997
|
-
labelStack?: {
|
|
997
|
+
labelStack?: string | {
|
|
998
998
|
s?: string | undefined;
|
|
999
999
|
n: string;
|
|
1000
1000
|
}[] | undefined;
|
|
@@ -1004,14 +1004,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1004
1004
|
}[];
|
|
1005
1005
|
end: number;
|
|
1006
1006
|
start: number;
|
|
1007
|
-
segments: {
|
|
1008
|
-
labelStack: {
|
|
1007
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1008
|
+
labelStack: string | {
|
|
1009
1009
|
s?: string | undefined;
|
|
1010
1010
|
n: string;
|
|
1011
1011
|
}[];
|
|
1012
1012
|
}[];
|
|
1013
1013
|
marks: {
|
|
1014
|
-
labelStack: {
|
|
1014
|
+
labelStack: string | {
|
|
1015
1015
|
s?: string | undefined;
|
|
1016
1016
|
n: string;
|
|
1017
1017
|
}[] | null;
|
|
@@ -1026,7 +1026,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1026
1026
|
initialPageLoadExtraTimings?: undefined;
|
|
1027
1027
|
SSRTimings?: undefined;
|
|
1028
1028
|
errors: {
|
|
1029
|
-
labelStack: {
|
|
1029
|
+
labelStack: string | {
|
|
1030
1030
|
s?: string | undefined;
|
|
1031
1031
|
n: string;
|
|
1032
1032
|
}[] | null;
|
|
@@ -1087,7 +1087,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1087
1087
|
isPreviousInteractionAborted: boolean;
|
|
1088
1088
|
abortedByInteractionName: string | undefined;
|
|
1089
1089
|
apdex: {
|
|
1090
|
-
labelStack?: {
|
|
1090
|
+
labelStack?: string | {
|
|
1091
1091
|
s?: string | undefined;
|
|
1092
1092
|
n: string;
|
|
1093
1093
|
}[] | undefined;
|
|
@@ -1097,14 +1097,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1097
1097
|
}[];
|
|
1098
1098
|
end: number;
|
|
1099
1099
|
start: number;
|
|
1100
|
-
segments: {
|
|
1101
|
-
labelStack: {
|
|
1100
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1101
|
+
labelStack: string | {
|
|
1102
1102
|
s?: string | undefined;
|
|
1103
1103
|
n: string;
|
|
1104
1104
|
}[];
|
|
1105
1105
|
}[];
|
|
1106
1106
|
marks: {
|
|
1107
|
-
labelStack: {
|
|
1107
|
+
labelStack: string | {
|
|
1108
1108
|
s?: string | undefined;
|
|
1109
1109
|
n: string;
|
|
1110
1110
|
}[] | null;
|
|
@@ -1135,7 +1135,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1135
1135
|
initialPageLoadExtraTimings?: undefined;
|
|
1136
1136
|
SSRTimings?: undefined;
|
|
1137
1137
|
errors: {
|
|
1138
|
-
labelStack: {
|
|
1138
|
+
labelStack: string | {
|
|
1139
1139
|
s?: string | undefined;
|
|
1140
1140
|
n: string;
|
|
1141
1141
|
}[] | null;
|
|
@@ -1196,7 +1196,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1196
1196
|
isPreviousInteractionAborted: boolean;
|
|
1197
1197
|
abortedByInteractionName: string | undefined;
|
|
1198
1198
|
apdex: {
|
|
1199
|
-
labelStack?: {
|
|
1199
|
+
labelStack?: string | {
|
|
1200
1200
|
s?: string | undefined;
|
|
1201
1201
|
n: string;
|
|
1202
1202
|
}[] | undefined;
|
|
@@ -1206,14 +1206,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1206
1206
|
}[];
|
|
1207
1207
|
end: number;
|
|
1208
1208
|
start: number;
|
|
1209
|
-
segments: {
|
|
1210
|
-
labelStack: {
|
|
1209
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1210
|
+
labelStack: string | {
|
|
1211
1211
|
s?: string | undefined;
|
|
1212
1212
|
n: string;
|
|
1213
1213
|
}[];
|
|
1214
1214
|
}[];
|
|
1215
1215
|
marks: {
|
|
1216
|
-
labelStack: {
|
|
1216
|
+
labelStack: string | {
|
|
1217
1217
|
s?: string | undefined;
|
|
1218
1218
|
n: string;
|
|
1219
1219
|
}[] | null;
|
|
@@ -1234,7 +1234,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1234
1234
|
data: any;
|
|
1235
1235
|
}[];
|
|
1236
1236
|
errors: {
|
|
1237
|
-
labelStack: {
|
|
1237
|
+
labelStack: string | {
|
|
1238
1238
|
s?: string | undefined;
|
|
1239
1239
|
n: string;
|
|
1240
1240
|
}[] | null;
|
|
@@ -1295,7 +1295,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1295
1295
|
isPreviousInteractionAborted: boolean;
|
|
1296
1296
|
abortedByInteractionName: string | undefined;
|
|
1297
1297
|
apdex: {
|
|
1298
|
-
labelStack?: {
|
|
1298
|
+
labelStack?: string | {
|
|
1299
1299
|
s?: string | undefined;
|
|
1300
1300
|
n: string;
|
|
1301
1301
|
}[] | undefined;
|
|
@@ -1305,14 +1305,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1305
1305
|
}[];
|
|
1306
1306
|
end: number;
|
|
1307
1307
|
start: number;
|
|
1308
|
-
segments: {
|
|
1309
|
-
labelStack: {
|
|
1308
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1309
|
+
labelStack: string | {
|
|
1310
1310
|
s?: string | undefined;
|
|
1311
1311
|
n: string;
|
|
1312
1312
|
}[];
|
|
1313
1313
|
}[];
|
|
1314
1314
|
marks: {
|
|
1315
|
-
labelStack: {
|
|
1315
|
+
labelStack: string | {
|
|
1316
1316
|
s?: string | undefined;
|
|
1317
1317
|
n: string;
|
|
1318
1318
|
}[] | null;
|
|
@@ -1349,7 +1349,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1349
1349
|
data: any;
|
|
1350
1350
|
}[];
|
|
1351
1351
|
errors: {
|
|
1352
|
-
labelStack: {
|
|
1352
|
+
labelStack: string | {
|
|
1353
1353
|
s?: string | undefined;
|
|
1354
1354
|
n: string;
|
|
1355
1355
|
}[] | null;
|
|
@@ -1410,7 +1410,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1410
1410
|
isPreviousInteractionAborted: boolean;
|
|
1411
1411
|
abortedByInteractionName: string | undefined;
|
|
1412
1412
|
apdex: {
|
|
1413
|
-
labelStack?: {
|
|
1413
|
+
labelStack?: string | {
|
|
1414
1414
|
s?: string | undefined;
|
|
1415
1415
|
n: string;
|
|
1416
1416
|
}[] | undefined;
|
|
@@ -1420,14 +1420,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1420
1420
|
}[];
|
|
1421
1421
|
end: number;
|
|
1422
1422
|
start: number;
|
|
1423
|
-
segments: {
|
|
1424
|
-
labelStack: {
|
|
1423
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1424
|
+
labelStack: string | {
|
|
1425
1425
|
s?: string | undefined;
|
|
1426
1426
|
n: string;
|
|
1427
1427
|
}[];
|
|
1428
1428
|
}[];
|
|
1429
1429
|
marks: {
|
|
1430
|
-
labelStack: {
|
|
1430
|
+
labelStack: string | {
|
|
1431
1431
|
s?: string | undefined;
|
|
1432
1432
|
n: string;
|
|
1433
1433
|
}[] | null;
|
|
@@ -1519,7 +1519,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1519
1519
|
isPreviousInteractionAborted: boolean;
|
|
1520
1520
|
abortedByInteractionName: string | undefined;
|
|
1521
1521
|
apdex: {
|
|
1522
|
-
labelStack?: {
|
|
1522
|
+
labelStack?: string | {
|
|
1523
1523
|
s?: string | undefined;
|
|
1524
1524
|
n: string;
|
|
1525
1525
|
}[] | undefined;
|
|
@@ -1529,14 +1529,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1529
1529
|
}[];
|
|
1530
1530
|
end: number;
|
|
1531
1531
|
start: number;
|
|
1532
|
-
segments: {
|
|
1533
|
-
labelStack: {
|
|
1532
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1533
|
+
labelStack: string | {
|
|
1534
1534
|
s?: string | undefined;
|
|
1535
1535
|
n: string;
|
|
1536
1536
|
}[];
|
|
1537
1537
|
}[];
|
|
1538
1538
|
marks: {
|
|
1539
|
-
labelStack: {
|
|
1539
|
+
labelStack: string | {
|
|
1540
1540
|
s?: string | undefined;
|
|
1541
1541
|
n: string;
|
|
1542
1542
|
}[] | null;
|
|
@@ -1595,7 +1595,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1595
1595
|
isPreviousInteractionAborted: boolean;
|
|
1596
1596
|
abortedByInteractionName: string | undefined;
|
|
1597
1597
|
apdex: {
|
|
1598
|
-
labelStack?: {
|
|
1598
|
+
labelStack?: string | {
|
|
1599
1599
|
s?: string | undefined;
|
|
1600
1600
|
n: string;
|
|
1601
1601
|
}[] | undefined;
|
|
@@ -1605,14 +1605,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1605
1605
|
}[];
|
|
1606
1606
|
end: number;
|
|
1607
1607
|
start: number;
|
|
1608
|
-
segments: {
|
|
1609
|
-
labelStack: {
|
|
1608
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1609
|
+
labelStack: string | {
|
|
1610
1610
|
s?: string | undefined;
|
|
1611
1611
|
n: string;
|
|
1612
1612
|
}[];
|
|
1613
1613
|
}[];
|
|
1614
1614
|
marks: {
|
|
1615
|
-
labelStack: {
|
|
1615
|
+
labelStack: string | {
|
|
1616
1616
|
s?: string | undefined;
|
|
1617
1617
|
n: string;
|
|
1618
1618
|
}[] | null;
|
|
@@ -1661,7 +1661,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1661
1661
|
isPreviousInteractionAborted: boolean;
|
|
1662
1662
|
abortedByInteractionName: string | undefined;
|
|
1663
1663
|
apdex: {
|
|
1664
|
-
labelStack?: {
|
|
1664
|
+
labelStack?: string | {
|
|
1665
1665
|
s?: string | undefined;
|
|
1666
1666
|
n: string;
|
|
1667
1667
|
}[] | undefined;
|
|
@@ -1671,14 +1671,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1671
1671
|
}[];
|
|
1672
1672
|
end: number;
|
|
1673
1673
|
start: number;
|
|
1674
|
-
segments: {
|
|
1675
|
-
labelStack: {
|
|
1674
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1675
|
+
labelStack: string | {
|
|
1676
1676
|
s?: string | undefined;
|
|
1677
1677
|
n: string;
|
|
1678
1678
|
}[];
|
|
1679
1679
|
}[];
|
|
1680
1680
|
marks: {
|
|
1681
|
-
labelStack: {
|
|
1681
|
+
labelStack: string | {
|
|
1682
1682
|
s?: string | undefined;
|
|
1683
1683
|
n: string;
|
|
1684
1684
|
}[] | null;
|
|
@@ -1743,7 +1743,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1743
1743
|
isPreviousInteractionAborted: boolean;
|
|
1744
1744
|
abortedByInteractionName: string | undefined;
|
|
1745
1745
|
apdex: {
|
|
1746
|
-
labelStack?: {
|
|
1746
|
+
labelStack?: string | {
|
|
1747
1747
|
s?: string | undefined;
|
|
1748
1748
|
n: string;
|
|
1749
1749
|
}[] | undefined;
|
|
@@ -1753,14 +1753,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1753
1753
|
}[];
|
|
1754
1754
|
end: number;
|
|
1755
1755
|
start: number;
|
|
1756
|
-
segments: {
|
|
1757
|
-
labelStack: {
|
|
1756
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1757
|
+
labelStack: string | {
|
|
1758
1758
|
s?: string | undefined;
|
|
1759
1759
|
n: string;
|
|
1760
1760
|
}[];
|
|
1761
1761
|
}[];
|
|
1762
1762
|
marks: {
|
|
1763
|
-
labelStack: {
|
|
1763
|
+
labelStack: string | {
|
|
1764
1764
|
s?: string | undefined;
|
|
1765
1765
|
n: string;
|
|
1766
1766
|
}[] | null;
|
|
@@ -1775,7 +1775,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1775
1775
|
initialPageLoadExtraTimings?: undefined;
|
|
1776
1776
|
SSRTimings?: undefined;
|
|
1777
1777
|
errors: {
|
|
1778
|
-
labelStack: {
|
|
1778
|
+
labelStack: string | {
|
|
1779
1779
|
s?: string | undefined;
|
|
1780
1780
|
n: string;
|
|
1781
1781
|
}[] | null;
|
|
@@ -1836,7 +1836,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1836
1836
|
isPreviousInteractionAborted: boolean;
|
|
1837
1837
|
abortedByInteractionName: string | undefined;
|
|
1838
1838
|
apdex: {
|
|
1839
|
-
labelStack?: {
|
|
1839
|
+
labelStack?: string | {
|
|
1840
1840
|
s?: string | undefined;
|
|
1841
1841
|
n: string;
|
|
1842
1842
|
}[] | undefined;
|
|
@@ -1846,14 +1846,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1846
1846
|
}[];
|
|
1847
1847
|
end: number;
|
|
1848
1848
|
start: number;
|
|
1849
|
-
segments: {
|
|
1850
|
-
labelStack: {
|
|
1849
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1850
|
+
labelStack: string | {
|
|
1851
1851
|
s?: string | undefined;
|
|
1852
1852
|
n: string;
|
|
1853
1853
|
}[];
|
|
1854
1854
|
}[];
|
|
1855
1855
|
marks: {
|
|
1856
|
-
labelStack: {
|
|
1856
|
+
labelStack: string | {
|
|
1857
1857
|
s?: string | undefined;
|
|
1858
1858
|
n: string;
|
|
1859
1859
|
}[] | null;
|
|
@@ -1884,7 +1884,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1884
1884
|
initialPageLoadExtraTimings?: undefined;
|
|
1885
1885
|
SSRTimings?: undefined;
|
|
1886
1886
|
errors: {
|
|
1887
|
-
labelStack: {
|
|
1887
|
+
labelStack: string | {
|
|
1888
1888
|
s?: string | undefined;
|
|
1889
1889
|
n: string;
|
|
1890
1890
|
}[] | null;
|
|
@@ -1945,7 +1945,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1945
1945
|
isPreviousInteractionAborted: boolean;
|
|
1946
1946
|
abortedByInteractionName: string | undefined;
|
|
1947
1947
|
apdex: {
|
|
1948
|
-
labelStack?: {
|
|
1948
|
+
labelStack?: string | {
|
|
1949
1949
|
s?: string | undefined;
|
|
1950
1950
|
n: string;
|
|
1951
1951
|
}[] | undefined;
|
|
@@ -1955,14 +1955,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1955
1955
|
}[];
|
|
1956
1956
|
end: number;
|
|
1957
1957
|
start: number;
|
|
1958
|
-
segments: {
|
|
1959
|
-
labelStack: {
|
|
1958
|
+
segments: import("./common/utils").SegmentTree | {
|
|
1959
|
+
labelStack: string | {
|
|
1960
1960
|
s?: string | undefined;
|
|
1961
1961
|
n: string;
|
|
1962
1962
|
}[];
|
|
1963
1963
|
}[];
|
|
1964
1964
|
marks: {
|
|
1965
|
-
labelStack: {
|
|
1965
|
+
labelStack: string | {
|
|
1966
1966
|
s?: string | undefined;
|
|
1967
1967
|
n: string;
|
|
1968
1968
|
}[] | null;
|
|
@@ -1983,7 +1983,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
1983
1983
|
data: any;
|
|
1984
1984
|
}[];
|
|
1985
1985
|
errors: {
|
|
1986
|
-
labelStack: {
|
|
1986
|
+
labelStack: string | {
|
|
1987
1987
|
s?: string | undefined;
|
|
1988
1988
|
n: string;
|
|
1989
1989
|
}[] | null;
|
|
@@ -2044,7 +2044,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2044
2044
|
isPreviousInteractionAborted: boolean;
|
|
2045
2045
|
abortedByInteractionName: string | undefined;
|
|
2046
2046
|
apdex: {
|
|
2047
|
-
labelStack?: {
|
|
2047
|
+
labelStack?: string | {
|
|
2048
2048
|
s?: string | undefined;
|
|
2049
2049
|
n: string;
|
|
2050
2050
|
}[] | undefined;
|
|
@@ -2054,14 +2054,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2054
2054
|
}[];
|
|
2055
2055
|
end: number;
|
|
2056
2056
|
start: number;
|
|
2057
|
-
segments: {
|
|
2058
|
-
labelStack: {
|
|
2057
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2058
|
+
labelStack: string | {
|
|
2059
2059
|
s?: string | undefined;
|
|
2060
2060
|
n: string;
|
|
2061
2061
|
}[];
|
|
2062
2062
|
}[];
|
|
2063
2063
|
marks: {
|
|
2064
|
-
labelStack: {
|
|
2064
|
+
labelStack: string | {
|
|
2065
2065
|
s?: string | undefined;
|
|
2066
2066
|
n: string;
|
|
2067
2067
|
}[] | null;
|
|
@@ -2098,7 +2098,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2098
2098
|
data: any;
|
|
2099
2099
|
}[];
|
|
2100
2100
|
errors: {
|
|
2101
|
-
labelStack: {
|
|
2101
|
+
labelStack: string | {
|
|
2102
2102
|
s?: string | undefined;
|
|
2103
2103
|
n: string;
|
|
2104
2104
|
}[] | null;
|
|
@@ -2159,7 +2159,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2159
2159
|
isPreviousInteractionAborted: boolean;
|
|
2160
2160
|
abortedByInteractionName: string | undefined;
|
|
2161
2161
|
apdex: {
|
|
2162
|
-
labelStack?: {
|
|
2162
|
+
labelStack?: string | {
|
|
2163
2163
|
s?: string | undefined;
|
|
2164
2164
|
n: string;
|
|
2165
2165
|
}[] | undefined;
|
|
@@ -2169,14 +2169,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2169
2169
|
}[];
|
|
2170
2170
|
end: number;
|
|
2171
2171
|
start: number;
|
|
2172
|
-
segments: {
|
|
2173
|
-
labelStack: {
|
|
2172
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2173
|
+
labelStack: string | {
|
|
2174
2174
|
s?: string | undefined;
|
|
2175
2175
|
n: string;
|
|
2176
2176
|
}[];
|
|
2177
2177
|
}[];
|
|
2178
2178
|
marks: {
|
|
2179
|
-
labelStack: {
|
|
2179
|
+
labelStack: string | {
|
|
2180
2180
|
s?: string | undefined;
|
|
2181
2181
|
n: string;
|
|
2182
2182
|
}[] | null;
|
|
@@ -2250,7 +2250,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2250
2250
|
isPreviousInteractionAborted: boolean;
|
|
2251
2251
|
abortedByInteractionName: string | undefined;
|
|
2252
2252
|
apdex: {
|
|
2253
|
-
labelStack?: {
|
|
2253
|
+
labelStack?: string | {
|
|
2254
2254
|
s?: string | undefined;
|
|
2255
2255
|
n: string;
|
|
2256
2256
|
}[] | undefined;
|
|
@@ -2260,14 +2260,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2260
2260
|
}[];
|
|
2261
2261
|
end: number;
|
|
2262
2262
|
start: number;
|
|
2263
|
-
segments: {
|
|
2264
|
-
labelStack: {
|
|
2263
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2264
|
+
labelStack: string | {
|
|
2265
2265
|
s?: string | undefined;
|
|
2266
2266
|
n: string;
|
|
2267
2267
|
}[];
|
|
2268
2268
|
}[];
|
|
2269
2269
|
marks: {
|
|
2270
|
-
labelStack: {
|
|
2270
|
+
labelStack: string | {
|
|
2271
2271
|
s?: string | undefined;
|
|
2272
2272
|
n: string;
|
|
2273
2273
|
}[] | null;
|
|
@@ -2326,7 +2326,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2326
2326
|
isPreviousInteractionAborted: boolean;
|
|
2327
2327
|
abortedByInteractionName: string | undefined;
|
|
2328
2328
|
apdex: {
|
|
2329
|
-
labelStack?: {
|
|
2329
|
+
labelStack?: string | {
|
|
2330
2330
|
s?: string | undefined;
|
|
2331
2331
|
n: string;
|
|
2332
2332
|
}[] | undefined;
|
|
@@ -2336,14 +2336,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2336
2336
|
}[];
|
|
2337
2337
|
end: number;
|
|
2338
2338
|
start: number;
|
|
2339
|
-
segments: {
|
|
2340
|
-
labelStack: {
|
|
2339
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2340
|
+
labelStack: string | {
|
|
2341
2341
|
s?: string | undefined;
|
|
2342
2342
|
n: string;
|
|
2343
2343
|
}[];
|
|
2344
2344
|
}[];
|
|
2345
2345
|
marks: {
|
|
2346
|
-
labelStack: {
|
|
2346
|
+
labelStack: string | {
|
|
2347
2347
|
s?: string | undefined;
|
|
2348
2348
|
n: string;
|
|
2349
2349
|
}[] | null;
|
|
@@ -2392,7 +2392,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2392
2392
|
isPreviousInteractionAborted: boolean;
|
|
2393
2393
|
abortedByInteractionName: string | undefined;
|
|
2394
2394
|
apdex: {
|
|
2395
|
-
labelStack?: {
|
|
2395
|
+
labelStack?: string | {
|
|
2396
2396
|
s?: string | undefined;
|
|
2397
2397
|
n: string;
|
|
2398
2398
|
}[] | undefined;
|
|
@@ -2402,14 +2402,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2402
2402
|
}[];
|
|
2403
2403
|
end: number;
|
|
2404
2404
|
start: number;
|
|
2405
|
-
segments: {
|
|
2406
|
-
labelStack: {
|
|
2405
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2406
|
+
labelStack: string | {
|
|
2407
2407
|
s?: string | undefined;
|
|
2408
2408
|
n: string;
|
|
2409
2409
|
}[];
|
|
2410
2410
|
}[];
|
|
2411
2411
|
marks: {
|
|
2412
|
-
labelStack: {
|
|
2412
|
+
labelStack: string | {
|
|
2413
2413
|
s?: string | undefined;
|
|
2414
2414
|
n: string;
|
|
2415
2415
|
}[] | null;
|
|
@@ -2474,7 +2474,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2474
2474
|
isPreviousInteractionAborted: boolean;
|
|
2475
2475
|
abortedByInteractionName: string | undefined;
|
|
2476
2476
|
apdex: {
|
|
2477
|
-
labelStack?: {
|
|
2477
|
+
labelStack?: string | {
|
|
2478
2478
|
s?: string | undefined;
|
|
2479
2479
|
n: string;
|
|
2480
2480
|
}[] | undefined;
|
|
@@ -2484,14 +2484,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2484
2484
|
}[];
|
|
2485
2485
|
end: number;
|
|
2486
2486
|
start: number;
|
|
2487
|
-
segments: {
|
|
2488
|
-
labelStack: {
|
|
2487
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2488
|
+
labelStack: string | {
|
|
2489
2489
|
s?: string | undefined;
|
|
2490
2490
|
n: string;
|
|
2491
2491
|
}[];
|
|
2492
2492
|
}[];
|
|
2493
2493
|
marks: {
|
|
2494
|
-
labelStack: {
|
|
2494
|
+
labelStack: string | {
|
|
2495
2495
|
s?: string | undefined;
|
|
2496
2496
|
n: string;
|
|
2497
2497
|
}[] | null;
|
|
@@ -2506,7 +2506,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2506
2506
|
initialPageLoadExtraTimings?: undefined;
|
|
2507
2507
|
SSRTimings?: undefined;
|
|
2508
2508
|
errors: {
|
|
2509
|
-
labelStack: {
|
|
2509
|
+
labelStack: string | {
|
|
2510
2510
|
s?: string | undefined;
|
|
2511
2511
|
n: string;
|
|
2512
2512
|
}[] | null;
|
|
@@ -2567,7 +2567,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2567
2567
|
isPreviousInteractionAborted: boolean;
|
|
2568
2568
|
abortedByInteractionName: string | undefined;
|
|
2569
2569
|
apdex: {
|
|
2570
|
-
labelStack?: {
|
|
2570
|
+
labelStack?: string | {
|
|
2571
2571
|
s?: string | undefined;
|
|
2572
2572
|
n: string;
|
|
2573
2573
|
}[] | undefined;
|
|
@@ -2577,14 +2577,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2577
2577
|
}[];
|
|
2578
2578
|
end: number;
|
|
2579
2579
|
start: number;
|
|
2580
|
-
segments: {
|
|
2581
|
-
labelStack: {
|
|
2580
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2581
|
+
labelStack: string | {
|
|
2582
2582
|
s?: string | undefined;
|
|
2583
2583
|
n: string;
|
|
2584
2584
|
}[];
|
|
2585
2585
|
}[];
|
|
2586
2586
|
marks: {
|
|
2587
|
-
labelStack: {
|
|
2587
|
+
labelStack: string | {
|
|
2588
2588
|
s?: string | undefined;
|
|
2589
2589
|
n: string;
|
|
2590
2590
|
}[] | null;
|
|
@@ -2615,7 +2615,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2615
2615
|
initialPageLoadExtraTimings?: undefined;
|
|
2616
2616
|
SSRTimings?: undefined;
|
|
2617
2617
|
errors: {
|
|
2618
|
-
labelStack: {
|
|
2618
|
+
labelStack: string | {
|
|
2619
2619
|
s?: string | undefined;
|
|
2620
2620
|
n: string;
|
|
2621
2621
|
}[] | null;
|
|
@@ -2676,7 +2676,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2676
2676
|
isPreviousInteractionAborted: boolean;
|
|
2677
2677
|
abortedByInteractionName: string | undefined;
|
|
2678
2678
|
apdex: {
|
|
2679
|
-
labelStack?: {
|
|
2679
|
+
labelStack?: string | {
|
|
2680
2680
|
s?: string | undefined;
|
|
2681
2681
|
n: string;
|
|
2682
2682
|
}[] | undefined;
|
|
@@ -2686,14 +2686,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2686
2686
|
}[];
|
|
2687
2687
|
end: number;
|
|
2688
2688
|
start: number;
|
|
2689
|
-
segments: {
|
|
2690
|
-
labelStack: {
|
|
2689
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2690
|
+
labelStack: string | {
|
|
2691
2691
|
s?: string | undefined;
|
|
2692
2692
|
n: string;
|
|
2693
2693
|
}[];
|
|
2694
2694
|
}[];
|
|
2695
2695
|
marks: {
|
|
2696
|
-
labelStack: {
|
|
2696
|
+
labelStack: string | {
|
|
2697
2697
|
s?: string | undefined;
|
|
2698
2698
|
n: string;
|
|
2699
2699
|
}[] | null;
|
|
@@ -2714,7 +2714,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2714
2714
|
data: any;
|
|
2715
2715
|
}[];
|
|
2716
2716
|
errors: {
|
|
2717
|
-
labelStack: {
|
|
2717
|
+
labelStack: string | {
|
|
2718
2718
|
s?: string | undefined;
|
|
2719
2719
|
n: string;
|
|
2720
2720
|
}[] | null;
|
|
@@ -2775,7 +2775,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2775
2775
|
isPreviousInteractionAborted: boolean;
|
|
2776
2776
|
abortedByInteractionName: string | undefined;
|
|
2777
2777
|
apdex: {
|
|
2778
|
-
labelStack?: {
|
|
2778
|
+
labelStack?: string | {
|
|
2779
2779
|
s?: string | undefined;
|
|
2780
2780
|
n: string;
|
|
2781
2781
|
}[] | undefined;
|
|
@@ -2785,14 +2785,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2785
2785
|
}[];
|
|
2786
2786
|
end: number;
|
|
2787
2787
|
start: number;
|
|
2788
|
-
segments: {
|
|
2789
|
-
labelStack: {
|
|
2788
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2789
|
+
labelStack: string | {
|
|
2790
2790
|
s?: string | undefined;
|
|
2791
2791
|
n: string;
|
|
2792
2792
|
}[];
|
|
2793
2793
|
}[];
|
|
2794
2794
|
marks: {
|
|
2795
|
-
labelStack: {
|
|
2795
|
+
labelStack: string | {
|
|
2796
2796
|
s?: string | undefined;
|
|
2797
2797
|
n: string;
|
|
2798
2798
|
}[] | null;
|
|
@@ -2829,7 +2829,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2829
2829
|
data: any;
|
|
2830
2830
|
}[];
|
|
2831
2831
|
errors: {
|
|
2832
|
-
labelStack: {
|
|
2832
|
+
labelStack: string | {
|
|
2833
2833
|
s?: string | undefined;
|
|
2834
2834
|
n: string;
|
|
2835
2835
|
}[] | null;
|
|
@@ -2890,7 +2890,7 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2890
2890
|
isPreviousInteractionAborted: boolean;
|
|
2891
2891
|
abortedByInteractionName: string | undefined;
|
|
2892
2892
|
apdex: {
|
|
2893
|
-
labelStack?: {
|
|
2893
|
+
labelStack?: string | {
|
|
2894
2894
|
s?: string | undefined;
|
|
2895
2895
|
n: string;
|
|
2896
2896
|
}[] | undefined;
|
|
@@ -2900,14 +2900,14 @@ export declare function createPayloads(interactionId: string, interaction: Inter
|
|
|
2900
2900
|
}[];
|
|
2901
2901
|
end: number;
|
|
2902
2902
|
start: number;
|
|
2903
|
-
segments: {
|
|
2904
|
-
labelStack: {
|
|
2903
|
+
segments: import("./common/utils").SegmentTree | {
|
|
2904
|
+
labelStack: string | {
|
|
2905
2905
|
s?: string | undefined;
|
|
2906
2906
|
n: string;
|
|
2907
2907
|
}[];
|
|
2908
2908
|
}[];
|
|
2909
2909
|
marks: {
|
|
2910
|
-
labelStack: {
|
|
2910
|
+
labelStack: string | {
|
|
2911
2911
|
s?: string | undefined;
|
|
2912
2912
|
n: string;
|
|
2913
2913
|
}[] | null;
|