@debugbundle/shared-types 2.0.0 → 2.1.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/README.md +1 -0
- package/dist/alert-notification-policy.d.ts +71 -0
- package/dist/alert-notification-policy.d.ts.map +1 -0
- package/dist/alert-notification-policy.js +54 -0
- package/dist/alert-notification-policy.js.map +1 -0
- package/dist/analytics-product.d.ts +16 -16
- package/dist/analytics.d.ts +46 -46
- package/dist/browser-recovery.d.ts +13 -0
- package/dist/browser-recovery.d.ts.map +1 -0
- package/dist/browser-recovery.js +42 -0
- package/dist/browser-recovery.js.map +1 -0
- package/dist/browser-resource-context.d.ts +66 -0
- package/dist/browser-resource-context.d.ts.map +1 -1
- package/dist/browser-resource-context.js +20 -1
- package/dist/browser-resource-context.js.map +1 -1
- package/dist/browser-resource-suggestions.d.ts.map +1 -1
- package/dist/browser-resource-suggestions.js +51 -1
- package/dist/browser-resource-suggestions.js.map +1 -1
- package/dist/browser-resource.d.ts +8 -0
- package/dist/browser-resource.d.ts.map +1 -1
- package/dist/browser-resource.js +24 -0
- package/dist/browser-resource.js.map +1 -1
- package/dist/capture-policy.d.ts +16 -16
- package/dist/capture-rule-evaluation.d.ts +71 -12
- package/dist/capture-rule-evaluation.d.ts.map +1 -1
- package/dist/capture-rule-evaluation.js +98 -3
- package/dist/capture-rule-evaluation.js.map +1 -1
- package/dist/capture-rule-schemas.d.ts +1080 -210
- package/dist/capture-rule-schemas.d.ts.map +1 -1
- package/dist/capture-rule-schemas.js +56 -0
- package/dist/capture-rule-schemas.js.map +1 -1
- package/dist/capture-rule-suggestions.d.ts +398 -97
- package/dist/capture-rule-suggestions.d.ts.map +1 -1
- package/dist/event-envelope.d.ts +276 -276
- package/dist/frontend-severity.d.ts.map +1 -1
- package/dist/frontend-severity.js +3 -0
- package/dist/frontend-severity.js.map +1 -1
- package/dist/index.d.ts +293 -171
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/event-envelope.d.ts
CHANGED
|
@@ -202,14 +202,14 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
202
202
|
}, "strip", z.ZodTypeAny, {
|
|
203
203
|
path: string;
|
|
204
204
|
query: Record<string, unknown>;
|
|
205
|
-
headers: Record<string, unknown>;
|
|
206
205
|
method: string;
|
|
206
|
+
headers: Record<string, unknown>;
|
|
207
207
|
body?: unknown;
|
|
208
208
|
}, {
|
|
209
209
|
path: string;
|
|
210
210
|
query: Record<string, unknown>;
|
|
211
|
-
headers: Record<string, unknown>;
|
|
212
211
|
method: string;
|
|
212
|
+
headers: Record<string, unknown>;
|
|
213
213
|
body?: unknown;
|
|
214
214
|
}>;
|
|
215
215
|
response: z.ZodObject<{
|
|
@@ -300,32 +300,32 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
300
300
|
timestamp: z.ZodString;
|
|
301
301
|
activation_id: z.ZodNullable<z.ZodString>;
|
|
302
302
|
}, "strict", z.ZodTypeAny, {
|
|
303
|
-
data: Record<string, unknown>;
|
|
304
303
|
label: string;
|
|
304
|
+
data: Record<string, unknown>;
|
|
305
305
|
timestamp: string;
|
|
306
306
|
activation_id: string | null;
|
|
307
307
|
}, {
|
|
308
|
-
data: Record<string, unknown>;
|
|
309
308
|
label: string;
|
|
309
|
+
data: Record<string, unknown>;
|
|
310
310
|
timestamp: string;
|
|
311
311
|
activation_id: string | null;
|
|
312
312
|
}>, "many">;
|
|
313
313
|
}, "strict", z.ZodTypeAny, {
|
|
314
|
+
version: 1;
|
|
314
315
|
items: {
|
|
315
|
-
data: Record<string, unknown>;
|
|
316
316
|
label: string;
|
|
317
|
+
data: Record<string, unknown>;
|
|
317
318
|
timestamp: string;
|
|
318
319
|
activation_id: string | null;
|
|
319
320
|
}[];
|
|
320
|
-
version: 1;
|
|
321
321
|
}, {
|
|
322
|
+
version: 1;
|
|
322
323
|
items: {
|
|
323
|
-
data: Record<string, unknown>;
|
|
324
324
|
label: string;
|
|
325
|
+
data: Record<string, unknown>;
|
|
325
326
|
timestamp: string;
|
|
326
327
|
activation_id: string | null;
|
|
327
328
|
}[];
|
|
328
|
-
version: 1;
|
|
329
329
|
}>>;
|
|
330
330
|
}, "strict", z.ZodTypeAny, {
|
|
331
331
|
message: string;
|
|
@@ -349,11 +349,13 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
349
349
|
} | null | undefined;
|
|
350
350
|
framework_extras?: Record<string, unknown> | null | undefined;
|
|
351
351
|
};
|
|
352
|
+
stack: string;
|
|
353
|
+
handled: boolean;
|
|
352
354
|
request: {
|
|
353
355
|
path: string;
|
|
354
356
|
query: Record<string, unknown>;
|
|
355
|
-
headers: Record<string, unknown>;
|
|
356
357
|
method: string;
|
|
358
|
+
headers: Record<string, unknown>;
|
|
357
359
|
body?: unknown;
|
|
358
360
|
};
|
|
359
361
|
response: {
|
|
@@ -361,16 +363,14 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
361
363
|
body?: unknown;
|
|
362
364
|
headers?: Record<string, unknown> | undefined;
|
|
363
365
|
};
|
|
364
|
-
stack: string;
|
|
365
|
-
handled: boolean;
|
|
366
366
|
probe_data?: {
|
|
367
|
+
version: 1;
|
|
367
368
|
items: {
|
|
368
|
-
data: Record<string, unknown>;
|
|
369
369
|
label: string;
|
|
370
|
+
data: Record<string, unknown>;
|
|
370
371
|
timestamp: string;
|
|
371
372
|
activation_id: string | null;
|
|
372
373
|
}[];
|
|
373
|
-
version: 1;
|
|
374
374
|
} | undefined;
|
|
375
375
|
}, {
|
|
376
376
|
message: string;
|
|
@@ -394,11 +394,13 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
394
394
|
} | null | undefined;
|
|
395
395
|
framework_extras?: Record<string, unknown> | null | undefined;
|
|
396
396
|
};
|
|
397
|
+
stack: string;
|
|
398
|
+
handled: boolean;
|
|
397
399
|
request: {
|
|
398
400
|
path: string;
|
|
399
401
|
query: Record<string, unknown>;
|
|
400
|
-
headers: Record<string, unknown>;
|
|
401
402
|
method: string;
|
|
403
|
+
headers: Record<string, unknown>;
|
|
402
404
|
body?: unknown;
|
|
403
405
|
};
|
|
404
406
|
response: {
|
|
@@ -406,16 +408,14 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
406
408
|
body?: unknown;
|
|
407
409
|
headers?: Record<string, unknown> | undefined;
|
|
408
410
|
};
|
|
409
|
-
stack: string;
|
|
410
|
-
handled: boolean;
|
|
411
411
|
probe_data?: {
|
|
412
|
+
version: 1;
|
|
412
413
|
items: {
|
|
413
|
-
data: Record<string, unknown>;
|
|
414
414
|
label: string;
|
|
415
|
+
data: Record<string, unknown>;
|
|
415
416
|
timestamp: string;
|
|
416
417
|
activation_id: string | null;
|
|
417
418
|
}[];
|
|
418
|
-
version: 1;
|
|
419
419
|
} | undefined;
|
|
420
420
|
}>;
|
|
421
421
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -453,11 +453,13 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
453
453
|
} | null | undefined;
|
|
454
454
|
framework_extras?: Record<string, unknown> | null | undefined;
|
|
455
455
|
};
|
|
456
|
+
stack: string;
|
|
457
|
+
handled: boolean;
|
|
456
458
|
request: {
|
|
457
459
|
path: string;
|
|
458
460
|
query: Record<string, unknown>;
|
|
459
|
-
headers: Record<string, unknown>;
|
|
460
461
|
method: string;
|
|
462
|
+
headers: Record<string, unknown>;
|
|
461
463
|
body?: unknown;
|
|
462
464
|
};
|
|
463
465
|
response: {
|
|
@@ -465,16 +467,14 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
465
467
|
body?: unknown;
|
|
466
468
|
headers?: Record<string, unknown> | undefined;
|
|
467
469
|
};
|
|
468
|
-
stack: string;
|
|
469
|
-
handled: boolean;
|
|
470
470
|
probe_data?: {
|
|
471
|
+
version: 1;
|
|
471
472
|
items: {
|
|
472
|
-
data: Record<string, unknown>;
|
|
473
473
|
label: string;
|
|
474
|
+
data: Record<string, unknown>;
|
|
474
475
|
timestamp: string;
|
|
475
476
|
activation_id: string | null;
|
|
476
477
|
}[];
|
|
477
|
-
version: 1;
|
|
478
478
|
} | undefined;
|
|
479
479
|
};
|
|
480
480
|
project_id?: string | null | undefined;
|
|
@@ -521,11 +521,13 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
521
521
|
} | null | undefined;
|
|
522
522
|
framework_extras?: Record<string, unknown> | null | undefined;
|
|
523
523
|
};
|
|
524
|
+
stack: string;
|
|
525
|
+
handled: boolean;
|
|
524
526
|
request: {
|
|
525
527
|
path: string;
|
|
526
528
|
query: Record<string, unknown>;
|
|
527
|
-
headers: Record<string, unknown>;
|
|
528
529
|
method: string;
|
|
530
|
+
headers: Record<string, unknown>;
|
|
529
531
|
body?: unknown;
|
|
530
532
|
};
|
|
531
533
|
response: {
|
|
@@ -533,16 +535,14 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
533
535
|
body?: unknown;
|
|
534
536
|
headers?: Record<string, unknown> | undefined;
|
|
535
537
|
};
|
|
536
|
-
stack: string;
|
|
537
|
-
handled: boolean;
|
|
538
538
|
probe_data?: {
|
|
539
|
+
version: 1;
|
|
539
540
|
items: {
|
|
540
|
-
data: Record<string, unknown>;
|
|
541
541
|
label: string;
|
|
542
|
+
data: Record<string, unknown>;
|
|
542
543
|
timestamp: string;
|
|
543
544
|
activation_id: string | null;
|
|
544
545
|
}[];
|
|
545
|
-
version: 1;
|
|
546
546
|
} | undefined;
|
|
547
547
|
};
|
|
548
548
|
project_id?: string | null | undefined;
|
|
@@ -622,9 +622,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
622
622
|
path: string;
|
|
623
623
|
duration_ms: number;
|
|
624
624
|
query: Record<string, unknown>;
|
|
625
|
+
method: string;
|
|
625
626
|
headers: Record<string, unknown>;
|
|
626
627
|
response_status: number;
|
|
627
|
-
method: string;
|
|
628
628
|
body?: unknown;
|
|
629
629
|
route_template?: string | null | undefined;
|
|
630
630
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -633,9 +633,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
633
633
|
path: string;
|
|
634
634
|
duration_ms: number;
|
|
635
635
|
query: Record<string, unknown>;
|
|
636
|
+
method: string;
|
|
636
637
|
headers: Record<string, unknown>;
|
|
637
638
|
response_status: number;
|
|
638
|
-
method: string;
|
|
639
639
|
body?: unknown;
|
|
640
640
|
route_template?: string | null | undefined;
|
|
641
641
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -770,6 +770,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
770
770
|
path: string;
|
|
771
771
|
duration_ms: number;
|
|
772
772
|
query: Record<string, unknown>;
|
|
773
|
+
method: string;
|
|
774
|
+
headers: Record<string, unknown>;
|
|
775
|
+
response_status: number;
|
|
773
776
|
device: {
|
|
774
777
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
775
778
|
language: string | null;
|
|
@@ -803,9 +806,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
803
806
|
free_memory_bytes?: number | null | undefined;
|
|
804
807
|
jailbroken?: boolean | null | undefined;
|
|
805
808
|
};
|
|
806
|
-
headers: Record<string, unknown>;
|
|
807
|
-
response_status: number;
|
|
808
|
-
method: string;
|
|
809
809
|
body?: unknown;
|
|
810
810
|
route_template?: string | null | undefined;
|
|
811
811
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -814,6 +814,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
814
814
|
path: string;
|
|
815
815
|
duration_ms: number;
|
|
816
816
|
query: Record<string, unknown>;
|
|
817
|
+
method: string;
|
|
818
|
+
headers: Record<string, unknown>;
|
|
819
|
+
response_status: number;
|
|
817
820
|
device: {
|
|
818
821
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
819
822
|
language: string | null;
|
|
@@ -847,9 +850,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
847
850
|
free_memory_bytes?: number | null | undefined;
|
|
848
851
|
jailbroken?: boolean | null | undefined;
|
|
849
852
|
};
|
|
850
|
-
headers: Record<string, unknown>;
|
|
851
|
-
response_status: number;
|
|
852
|
-
method: string;
|
|
853
853
|
body?: unknown;
|
|
854
854
|
route_template?: string | null | undefined;
|
|
855
855
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -872,9 +872,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
872
872
|
path: string;
|
|
873
873
|
duration_ms: number;
|
|
874
874
|
query: Record<string, unknown>;
|
|
875
|
+
method: string;
|
|
875
876
|
headers: Record<string, unknown>;
|
|
876
877
|
response_status: number;
|
|
877
|
-
method: string;
|
|
878
878
|
body?: unknown;
|
|
879
879
|
route_template?: string | null | undefined;
|
|
880
880
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -883,6 +883,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
883
883
|
path: string;
|
|
884
884
|
duration_ms: number;
|
|
885
885
|
query: Record<string, unknown>;
|
|
886
|
+
method: string;
|
|
887
|
+
headers: Record<string, unknown>;
|
|
888
|
+
response_status: number;
|
|
886
889
|
device: {
|
|
887
890
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
888
891
|
language: string | null;
|
|
@@ -916,9 +919,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
916
919
|
free_memory_bytes?: number | null | undefined;
|
|
917
920
|
jailbroken?: boolean | null | undefined;
|
|
918
921
|
};
|
|
919
|
-
headers: Record<string, unknown>;
|
|
920
|
-
response_status: number;
|
|
921
|
-
method: string;
|
|
922
922
|
body?: unknown;
|
|
923
923
|
route_template?: string | null | undefined;
|
|
924
924
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -950,9 +950,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
950
950
|
path: string;
|
|
951
951
|
duration_ms: number;
|
|
952
952
|
query: Record<string, unknown>;
|
|
953
|
+
method: string;
|
|
953
954
|
headers: Record<string, unknown>;
|
|
954
955
|
response_status: number;
|
|
955
|
-
method: string;
|
|
956
956
|
body?: unknown;
|
|
957
957
|
route_template?: string | null | undefined;
|
|
958
958
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -961,6 +961,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
961
961
|
path: string;
|
|
962
962
|
duration_ms: number;
|
|
963
963
|
query: Record<string, unknown>;
|
|
964
|
+
method: string;
|
|
965
|
+
headers: Record<string, unknown>;
|
|
966
|
+
response_status: number;
|
|
964
967
|
device: {
|
|
965
968
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
966
969
|
language: string | null;
|
|
@@ -994,9 +997,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
994
997
|
free_memory_bytes?: number | null | undefined;
|
|
995
998
|
jailbroken?: boolean | null | undefined;
|
|
996
999
|
};
|
|
997
|
-
headers: Record<string, unknown>;
|
|
998
|
-
response_status: number;
|
|
999
|
-
method: string;
|
|
1000
1000
|
body?: unknown;
|
|
1001
1001
|
route_template?: string | null | undefined;
|
|
1002
1002
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -1456,12 +1456,12 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
1456
1456
|
route: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1457
1457
|
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1458
1458
|
}, "strict", z.ZodTypeAny, {
|
|
1459
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
1460
1459
|
data: Record<string, unknown>;
|
|
1460
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
1461
1461
|
route?: string | null | undefined;
|
|
1462
1462
|
}, {
|
|
1463
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
1464
1463
|
data: Record<string, unknown>;
|
|
1464
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
1465
1465
|
route?: string | null | undefined;
|
|
1466
1466
|
}>, z.ZodObject<{
|
|
1467
1467
|
breadcrumb_type: z.ZodString;
|
|
@@ -1583,6 +1583,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
1583
1583
|
jailbroken?: boolean | null | undefined;
|
|
1584
1584
|
}>;
|
|
1585
1585
|
}, "strict", z.ZodTypeAny, {
|
|
1586
|
+
data: Record<string, unknown>;
|
|
1586
1587
|
device: {
|
|
1587
1588
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
1588
1589
|
language: string | null;
|
|
@@ -1617,9 +1618,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
1617
1618
|
jailbroken?: boolean | null | undefined;
|
|
1618
1619
|
};
|
|
1619
1620
|
breadcrumb_type: string;
|
|
1620
|
-
data: Record<string, unknown>;
|
|
1621
1621
|
route?: string | null | undefined;
|
|
1622
1622
|
}, {
|
|
1623
|
+
data: Record<string, unknown>;
|
|
1623
1624
|
device: {
|
|
1624
1625
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
1625
1626
|
language: string | null;
|
|
@@ -1654,7 +1655,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
1654
1655
|
jailbroken?: boolean | null | undefined;
|
|
1655
1656
|
};
|
|
1656
1657
|
breadcrumb_type: string;
|
|
1657
|
-
data: Record<string, unknown>;
|
|
1658
1658
|
route?: string | null | undefined;
|
|
1659
1659
|
}>]>;
|
|
1660
1660
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1671,10 +1671,11 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
1671
1671
|
sdk_name: string;
|
|
1672
1672
|
sdk_version: string;
|
|
1673
1673
|
payload: {
|
|
1674
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
1675
1674
|
data: Record<string, unknown>;
|
|
1675
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
1676
1676
|
route?: string | null | undefined;
|
|
1677
1677
|
} | {
|
|
1678
|
+
data: Record<string, unknown>;
|
|
1678
1679
|
device: {
|
|
1679
1680
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
1680
1681
|
language: string | null;
|
|
@@ -1709,7 +1710,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
1709
1710
|
jailbroken?: boolean | null | undefined;
|
|
1710
1711
|
};
|
|
1711
1712
|
breadcrumb_type: string;
|
|
1712
|
-
data: Record<string, unknown>;
|
|
1713
1713
|
route?: string | null | undefined;
|
|
1714
1714
|
};
|
|
1715
1715
|
project_id?: string | null | undefined;
|
|
@@ -1735,10 +1735,11 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
1735
1735
|
sdk_name: string;
|
|
1736
1736
|
sdk_version: string;
|
|
1737
1737
|
payload: {
|
|
1738
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
1739
1738
|
data: Record<string, unknown>;
|
|
1739
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
1740
1740
|
route?: string | null | undefined;
|
|
1741
1741
|
} | {
|
|
1742
|
+
data: Record<string, unknown>;
|
|
1742
1743
|
device: {
|
|
1743
1744
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
1744
1745
|
language: string | null;
|
|
@@ -1773,7 +1774,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
1773
1774
|
jailbroken?: boolean | null | undefined;
|
|
1774
1775
|
};
|
|
1775
1776
|
breadcrumb_type: string;
|
|
1776
|
-
data: Record<string, unknown>;
|
|
1777
1777
|
route?: string | null | undefined;
|
|
1778
1778
|
};
|
|
1779
1779
|
project_id?: string | null | undefined;
|
|
@@ -1859,13 +1859,13 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
1859
1859
|
route: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1860
1860
|
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1861
1861
|
}, "strict", z.ZodTypeAny, {
|
|
1862
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
1863
1862
|
data: Record<string, unknown>;
|
|
1863
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
1864
1864
|
ts: string;
|
|
1865
1865
|
route?: string | null | undefined;
|
|
1866
1866
|
}, {
|
|
1867
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
1868
1867
|
data: Record<string, unknown>;
|
|
1868
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
1869
1869
|
ts: string;
|
|
1870
1870
|
route?: string | null | undefined;
|
|
1871
1871
|
}>, z.ZodObject<{
|
|
@@ -1874,13 +1874,13 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
1874
1874
|
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1875
1875
|
ts: z.ZodString;
|
|
1876
1876
|
}, "strict", z.ZodTypeAny, {
|
|
1877
|
-
breadcrumb_type: string;
|
|
1878
1877
|
data: Record<string, unknown>;
|
|
1878
|
+
breadcrumb_type: string;
|
|
1879
1879
|
ts: string;
|
|
1880
1880
|
route?: string | null | undefined;
|
|
1881
1881
|
}, {
|
|
1882
|
-
breadcrumb_type: string;
|
|
1883
1882
|
data: Record<string, unknown>;
|
|
1883
|
+
breadcrumb_type: string;
|
|
1884
1884
|
ts: string;
|
|
1885
1885
|
route?: string | null | undefined;
|
|
1886
1886
|
}>]>, "many">>;
|
|
@@ -2115,8 +2115,8 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2115
2115
|
integrity_present?: boolean | undefined;
|
|
2116
2116
|
}>>;
|
|
2117
2117
|
}, "strict", z.ZodTypeAny, {
|
|
2118
|
-
source_url: string | null;
|
|
2119
2118
|
tag_name: string | null;
|
|
2119
|
+
source_url: string | null;
|
|
2120
2120
|
attributes?: {
|
|
2121
2121
|
type?: string | undefined;
|
|
2122
2122
|
rel?: string | undefined;
|
|
@@ -2128,8 +2128,8 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2128
2128
|
integrity_present?: boolean | undefined;
|
|
2129
2129
|
} | undefined;
|
|
2130
2130
|
}, {
|
|
2131
|
-
source_url: string | null;
|
|
2132
2131
|
tag_name: string | null;
|
|
2132
|
+
source_url: string | null;
|
|
2133
2133
|
attributes?: {
|
|
2134
2134
|
type?: string | undefined;
|
|
2135
2135
|
rel?: string | undefined;
|
|
@@ -2160,10 +2160,13 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2160
2160
|
opaque: z.ZodBoolean;
|
|
2161
2161
|
}, "strict", z.ZodTypeAny, {
|
|
2162
2162
|
message: string | null;
|
|
2163
|
-
kind: "
|
|
2163
|
+
kind: "window_error" | "resource_error";
|
|
2164
|
+
file_name: string | null;
|
|
2165
|
+
line_number: number | null;
|
|
2166
|
+
column_number: number | null;
|
|
2164
2167
|
target: {
|
|
2165
|
-
source_url: string | null;
|
|
2166
2168
|
tag_name: string | null;
|
|
2169
|
+
source_url: string | null;
|
|
2167
2170
|
attributes?: {
|
|
2168
2171
|
type?: string | undefined;
|
|
2169
2172
|
rel?: string | undefined;
|
|
@@ -2175,10 +2178,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2175
2178
|
integrity_present?: boolean | undefined;
|
|
2176
2179
|
} | undefined;
|
|
2177
2180
|
} | null;
|
|
2178
|
-
file_name: string | null;
|
|
2179
2181
|
opaque: boolean;
|
|
2180
|
-
line_number: number | null;
|
|
2181
|
-
column_number: number | null;
|
|
2182
2182
|
page?: {
|
|
2183
2183
|
url: string | null;
|
|
2184
2184
|
referrer: string | null;
|
|
@@ -2187,10 +2187,13 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2187
2187
|
} | undefined;
|
|
2188
2188
|
}, {
|
|
2189
2189
|
message: string | null;
|
|
2190
|
-
kind: "
|
|
2190
|
+
kind: "window_error" | "resource_error";
|
|
2191
|
+
file_name: string | null;
|
|
2192
|
+
line_number: number | null;
|
|
2193
|
+
column_number: number | null;
|
|
2191
2194
|
target: {
|
|
2192
|
-
source_url: string | null;
|
|
2193
2195
|
tag_name: string | null;
|
|
2196
|
+
source_url: string | null;
|
|
2194
2197
|
attributes?: {
|
|
2195
2198
|
type?: string | undefined;
|
|
2196
2199
|
rel?: string | undefined;
|
|
@@ -2202,10 +2205,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2202
2205
|
integrity_present?: boolean | undefined;
|
|
2203
2206
|
} | undefined;
|
|
2204
2207
|
} | null;
|
|
2205
|
-
file_name: string | null;
|
|
2206
2208
|
opaque: boolean;
|
|
2207
|
-
line_number: number | null;
|
|
2208
|
-
column_number: number | null;
|
|
2209
2209
|
page?: {
|
|
2210
2210
|
url: string | null;
|
|
2211
2211
|
referrer: string | null;
|
|
@@ -2247,32 +2247,32 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2247
2247
|
timestamp: z.ZodString;
|
|
2248
2248
|
activation_id: z.ZodNullable<z.ZodString>;
|
|
2249
2249
|
}, "strict", z.ZodTypeAny, {
|
|
2250
|
-
data: Record<string, unknown>;
|
|
2251
2250
|
label: string;
|
|
2251
|
+
data: Record<string, unknown>;
|
|
2252
2252
|
timestamp: string;
|
|
2253
2253
|
activation_id: string | null;
|
|
2254
2254
|
}, {
|
|
2255
|
-
data: Record<string, unknown>;
|
|
2256
2255
|
label: string;
|
|
2256
|
+
data: Record<string, unknown>;
|
|
2257
2257
|
timestamp: string;
|
|
2258
2258
|
activation_id: string | null;
|
|
2259
2259
|
}>, "many">;
|
|
2260
2260
|
}, "strict", z.ZodTypeAny, {
|
|
2261
|
+
version: 1;
|
|
2261
2262
|
items: {
|
|
2262
|
-
data: Record<string, unknown>;
|
|
2263
2263
|
label: string;
|
|
2264
|
+
data: Record<string, unknown>;
|
|
2264
2265
|
timestamp: string;
|
|
2265
2266
|
activation_id: string | null;
|
|
2266
2267
|
}[];
|
|
2267
|
-
version: 1;
|
|
2268
2268
|
}, {
|
|
2269
|
+
version: 1;
|
|
2269
2270
|
items: {
|
|
2270
|
-
data: Record<string, unknown>;
|
|
2271
2271
|
label: string;
|
|
2272
|
+
data: Record<string, unknown>;
|
|
2272
2273
|
timestamp: string;
|
|
2273
2274
|
activation_id: string | null;
|
|
2274
2275
|
}[];
|
|
2275
|
-
version: 1;
|
|
2276
2276
|
}>>;
|
|
2277
2277
|
}, "strict", z.ZodTypeAny, {
|
|
2278
2278
|
message: string;
|
|
@@ -2283,6 +2283,15 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2283
2283
|
name: string;
|
|
2284
2284
|
version: string;
|
|
2285
2285
|
} | undefined;
|
|
2286
|
+
probe_data?: {
|
|
2287
|
+
version: 1;
|
|
2288
|
+
items: {
|
|
2289
|
+
label: string;
|
|
2290
|
+
data: Record<string, unknown>;
|
|
2291
|
+
timestamp: string;
|
|
2292
|
+
activation_id: string | null;
|
|
2293
|
+
}[];
|
|
2294
|
+
} | undefined;
|
|
2286
2295
|
device?: {
|
|
2287
2296
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
2288
2297
|
language: string | null;
|
|
@@ -2336,12 +2345,26 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2336
2345
|
connection_type: string | null;
|
|
2337
2346
|
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
2338
2347
|
} | null | undefined;
|
|
2348
|
+
breadcrumbs?: ({
|
|
2349
|
+
data: Record<string, unknown>;
|
|
2350
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
2351
|
+
ts: string;
|
|
2352
|
+
route?: string | null | undefined;
|
|
2353
|
+
} | {
|
|
2354
|
+
data: Record<string, unknown>;
|
|
2355
|
+
breadcrumb_type: string;
|
|
2356
|
+
ts: string;
|
|
2357
|
+
route?: string | null | undefined;
|
|
2358
|
+
})[] | undefined;
|
|
2339
2359
|
browser_event?: {
|
|
2340
2360
|
message: string | null;
|
|
2341
|
-
kind: "
|
|
2361
|
+
kind: "window_error" | "resource_error";
|
|
2362
|
+
file_name: string | null;
|
|
2363
|
+
line_number: number | null;
|
|
2364
|
+
column_number: number | null;
|
|
2342
2365
|
target: {
|
|
2343
|
-
source_url: string | null;
|
|
2344
2366
|
tag_name: string | null;
|
|
2367
|
+
source_url: string | null;
|
|
2345
2368
|
attributes?: {
|
|
2346
2369
|
type?: string | undefined;
|
|
2347
2370
|
rel?: string | undefined;
|
|
@@ -2353,10 +2376,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2353
2376
|
integrity_present?: boolean | undefined;
|
|
2354
2377
|
} | undefined;
|
|
2355
2378
|
} | null;
|
|
2356
|
-
file_name: string | null;
|
|
2357
2379
|
opaque: boolean;
|
|
2358
|
-
line_number: number | null;
|
|
2359
|
-
column_number: number | null;
|
|
2360
2380
|
page?: {
|
|
2361
2381
|
url: string | null;
|
|
2362
2382
|
referrer: string | null;
|
|
@@ -2364,26 +2384,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2364
2384
|
visibility_state: "visible" | "hidden" | "prerender" | "unloaded" | null;
|
|
2365
2385
|
} | undefined;
|
|
2366
2386
|
} | undefined;
|
|
2367
|
-
probe_data?: {
|
|
2368
|
-
items: {
|
|
2369
|
-
data: Record<string, unknown>;
|
|
2370
|
-
label: string;
|
|
2371
|
-
timestamp: string;
|
|
2372
|
-
activation_id: string | null;
|
|
2373
|
-
}[];
|
|
2374
|
-
version: 1;
|
|
2375
|
-
} | undefined;
|
|
2376
|
-
breadcrumbs?: ({
|
|
2377
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
2378
|
-
data: Record<string, unknown>;
|
|
2379
|
-
ts: string;
|
|
2380
|
-
route?: string | null | undefined;
|
|
2381
|
-
} | {
|
|
2382
|
-
breadcrumb_type: string;
|
|
2383
|
-
data: Record<string, unknown>;
|
|
2384
|
-
ts: string;
|
|
2385
|
-
route?: string | null | undefined;
|
|
2386
|
-
})[] | undefined;
|
|
2387
2387
|
rejection_reason?: {
|
|
2388
2388
|
kind: "string" | "undefined" | "object" | "null" | "unknown" | "error";
|
|
2389
2389
|
message?: string | undefined;
|
|
@@ -2403,6 +2403,15 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2403
2403
|
name: string;
|
|
2404
2404
|
version: string;
|
|
2405
2405
|
} | undefined;
|
|
2406
|
+
probe_data?: {
|
|
2407
|
+
version: 1;
|
|
2408
|
+
items: {
|
|
2409
|
+
label: string;
|
|
2410
|
+
data: Record<string, unknown>;
|
|
2411
|
+
timestamp: string;
|
|
2412
|
+
activation_id: string | null;
|
|
2413
|
+
}[];
|
|
2414
|
+
} | undefined;
|
|
2406
2415
|
device?: {
|
|
2407
2416
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
2408
2417
|
language: string | null;
|
|
@@ -2456,12 +2465,26 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2456
2465
|
connection_type: string | null;
|
|
2457
2466
|
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
2458
2467
|
} | null | undefined;
|
|
2468
|
+
breadcrumbs?: ({
|
|
2469
|
+
data: Record<string, unknown>;
|
|
2470
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
2471
|
+
ts: string;
|
|
2472
|
+
route?: string | null | undefined;
|
|
2473
|
+
} | {
|
|
2474
|
+
data: Record<string, unknown>;
|
|
2475
|
+
breadcrumb_type: string;
|
|
2476
|
+
ts: string;
|
|
2477
|
+
route?: string | null | undefined;
|
|
2478
|
+
})[] | undefined;
|
|
2459
2479
|
browser_event?: {
|
|
2460
2480
|
message: string | null;
|
|
2461
|
-
kind: "
|
|
2481
|
+
kind: "window_error" | "resource_error";
|
|
2482
|
+
file_name: string | null;
|
|
2483
|
+
line_number: number | null;
|
|
2484
|
+
column_number: number | null;
|
|
2462
2485
|
target: {
|
|
2463
|
-
source_url: string | null;
|
|
2464
2486
|
tag_name: string | null;
|
|
2487
|
+
source_url: string | null;
|
|
2465
2488
|
attributes?: {
|
|
2466
2489
|
type?: string | undefined;
|
|
2467
2490
|
rel?: string | undefined;
|
|
@@ -2473,10 +2496,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2473
2496
|
integrity_present?: boolean | undefined;
|
|
2474
2497
|
} | undefined;
|
|
2475
2498
|
} | null;
|
|
2476
|
-
file_name: string | null;
|
|
2477
2499
|
opaque: boolean;
|
|
2478
|
-
line_number: number | null;
|
|
2479
|
-
column_number: number | null;
|
|
2480
2500
|
page?: {
|
|
2481
2501
|
url: string | null;
|
|
2482
2502
|
referrer: string | null;
|
|
@@ -2484,26 +2504,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2484
2504
|
visibility_state: "visible" | "hidden" | "prerender" | "unloaded" | null;
|
|
2485
2505
|
} | undefined;
|
|
2486
2506
|
} | undefined;
|
|
2487
|
-
probe_data?: {
|
|
2488
|
-
items: {
|
|
2489
|
-
data: Record<string, unknown>;
|
|
2490
|
-
label: string;
|
|
2491
|
-
timestamp: string;
|
|
2492
|
-
activation_id: string | null;
|
|
2493
|
-
}[];
|
|
2494
|
-
version: 1;
|
|
2495
|
-
} | undefined;
|
|
2496
|
-
breadcrumbs?: ({
|
|
2497
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
2498
|
-
data: Record<string, unknown>;
|
|
2499
|
-
ts: string;
|
|
2500
|
-
route?: string | null | undefined;
|
|
2501
|
-
} | {
|
|
2502
|
-
breadcrumb_type: string;
|
|
2503
|
-
data: Record<string, unknown>;
|
|
2504
|
-
ts: string;
|
|
2505
|
-
route?: string | null | undefined;
|
|
2506
|
-
})[] | undefined;
|
|
2507
2507
|
rejection_reason?: {
|
|
2508
2508
|
kind: "string" | "undefined" | "object" | "null" | "unknown" | "error";
|
|
2509
2509
|
message?: string | undefined;
|
|
@@ -2537,6 +2537,15 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2537
2537
|
name: string;
|
|
2538
2538
|
version: string;
|
|
2539
2539
|
} | undefined;
|
|
2540
|
+
probe_data?: {
|
|
2541
|
+
version: 1;
|
|
2542
|
+
items: {
|
|
2543
|
+
label: string;
|
|
2544
|
+
data: Record<string, unknown>;
|
|
2545
|
+
timestamp: string;
|
|
2546
|
+
activation_id: string | null;
|
|
2547
|
+
}[];
|
|
2548
|
+
} | undefined;
|
|
2540
2549
|
device?: {
|
|
2541
2550
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
2542
2551
|
language: string | null;
|
|
@@ -2590,12 +2599,26 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2590
2599
|
connection_type: string | null;
|
|
2591
2600
|
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
2592
2601
|
} | null | undefined;
|
|
2602
|
+
breadcrumbs?: ({
|
|
2603
|
+
data: Record<string, unknown>;
|
|
2604
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
2605
|
+
ts: string;
|
|
2606
|
+
route?: string | null | undefined;
|
|
2607
|
+
} | {
|
|
2608
|
+
data: Record<string, unknown>;
|
|
2609
|
+
breadcrumb_type: string;
|
|
2610
|
+
ts: string;
|
|
2611
|
+
route?: string | null | undefined;
|
|
2612
|
+
})[] | undefined;
|
|
2593
2613
|
browser_event?: {
|
|
2594
2614
|
message: string | null;
|
|
2595
|
-
kind: "
|
|
2615
|
+
kind: "window_error" | "resource_error";
|
|
2616
|
+
file_name: string | null;
|
|
2617
|
+
line_number: number | null;
|
|
2618
|
+
column_number: number | null;
|
|
2596
2619
|
target: {
|
|
2597
|
-
source_url: string | null;
|
|
2598
2620
|
tag_name: string | null;
|
|
2621
|
+
source_url: string | null;
|
|
2599
2622
|
attributes?: {
|
|
2600
2623
|
type?: string | undefined;
|
|
2601
2624
|
rel?: string | undefined;
|
|
@@ -2607,10 +2630,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2607
2630
|
integrity_present?: boolean | undefined;
|
|
2608
2631
|
} | undefined;
|
|
2609
2632
|
} | null;
|
|
2610
|
-
file_name: string | null;
|
|
2611
2633
|
opaque: boolean;
|
|
2612
|
-
line_number: number | null;
|
|
2613
|
-
column_number: number | null;
|
|
2614
2634
|
page?: {
|
|
2615
2635
|
url: string | null;
|
|
2616
2636
|
referrer: string | null;
|
|
@@ -2618,26 +2638,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2618
2638
|
visibility_state: "visible" | "hidden" | "prerender" | "unloaded" | null;
|
|
2619
2639
|
} | undefined;
|
|
2620
2640
|
} | undefined;
|
|
2621
|
-
probe_data?: {
|
|
2622
|
-
items: {
|
|
2623
|
-
data: Record<string, unknown>;
|
|
2624
|
-
label: string;
|
|
2625
|
-
timestamp: string;
|
|
2626
|
-
activation_id: string | null;
|
|
2627
|
-
}[];
|
|
2628
|
-
version: 1;
|
|
2629
|
-
} | undefined;
|
|
2630
|
-
breadcrumbs?: ({
|
|
2631
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
2632
|
-
data: Record<string, unknown>;
|
|
2633
|
-
ts: string;
|
|
2634
|
-
route?: string | null | undefined;
|
|
2635
|
-
} | {
|
|
2636
|
-
breadcrumb_type: string;
|
|
2637
|
-
data: Record<string, unknown>;
|
|
2638
|
-
ts: string;
|
|
2639
|
-
route?: string | null | undefined;
|
|
2640
|
-
})[] | undefined;
|
|
2641
2641
|
rejection_reason?: {
|
|
2642
2642
|
kind: "string" | "undefined" | "object" | "null" | "unknown" | "error";
|
|
2643
2643
|
message?: string | undefined;
|
|
@@ -2680,6 +2680,15 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2680
2680
|
name: string;
|
|
2681
2681
|
version: string;
|
|
2682
2682
|
} | undefined;
|
|
2683
|
+
probe_data?: {
|
|
2684
|
+
version: 1;
|
|
2685
|
+
items: {
|
|
2686
|
+
label: string;
|
|
2687
|
+
data: Record<string, unknown>;
|
|
2688
|
+
timestamp: string;
|
|
2689
|
+
activation_id: string | null;
|
|
2690
|
+
}[];
|
|
2691
|
+
} | undefined;
|
|
2683
2692
|
device?: {
|
|
2684
2693
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
2685
2694
|
language: string | null;
|
|
@@ -2733,12 +2742,26 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2733
2742
|
connection_type: string | null;
|
|
2734
2743
|
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
2735
2744
|
} | null | undefined;
|
|
2745
|
+
breadcrumbs?: ({
|
|
2746
|
+
data: Record<string, unknown>;
|
|
2747
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
2748
|
+
ts: string;
|
|
2749
|
+
route?: string | null | undefined;
|
|
2750
|
+
} | {
|
|
2751
|
+
data: Record<string, unknown>;
|
|
2752
|
+
breadcrumb_type: string;
|
|
2753
|
+
ts: string;
|
|
2754
|
+
route?: string | null | undefined;
|
|
2755
|
+
})[] | undefined;
|
|
2736
2756
|
browser_event?: {
|
|
2737
2757
|
message: string | null;
|
|
2738
|
-
kind: "
|
|
2758
|
+
kind: "window_error" | "resource_error";
|
|
2759
|
+
file_name: string | null;
|
|
2760
|
+
line_number: number | null;
|
|
2761
|
+
column_number: number | null;
|
|
2739
2762
|
target: {
|
|
2740
|
-
source_url: string | null;
|
|
2741
2763
|
tag_name: string | null;
|
|
2764
|
+
source_url: string | null;
|
|
2742
2765
|
attributes?: {
|
|
2743
2766
|
type?: string | undefined;
|
|
2744
2767
|
rel?: string | undefined;
|
|
@@ -2750,10 +2773,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2750
2773
|
integrity_present?: boolean | undefined;
|
|
2751
2774
|
} | undefined;
|
|
2752
2775
|
} | null;
|
|
2753
|
-
file_name: string | null;
|
|
2754
2776
|
opaque: boolean;
|
|
2755
|
-
line_number: number | null;
|
|
2756
|
-
column_number: number | null;
|
|
2757
2777
|
page?: {
|
|
2758
2778
|
url: string | null;
|
|
2759
2779
|
referrer: string | null;
|
|
@@ -2761,26 +2781,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
2761
2781
|
visibility_state: "visible" | "hidden" | "prerender" | "unloaded" | null;
|
|
2762
2782
|
} | undefined;
|
|
2763
2783
|
} | undefined;
|
|
2764
|
-
probe_data?: {
|
|
2765
|
-
items: {
|
|
2766
|
-
data: Record<string, unknown>;
|
|
2767
|
-
label: string;
|
|
2768
|
-
timestamp: string;
|
|
2769
|
-
activation_id: string | null;
|
|
2770
|
-
}[];
|
|
2771
|
-
version: 1;
|
|
2772
|
-
} | undefined;
|
|
2773
|
-
breadcrumbs?: ({
|
|
2774
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
2775
|
-
data: Record<string, unknown>;
|
|
2776
|
-
ts: string;
|
|
2777
|
-
route?: string | null | undefined;
|
|
2778
|
-
} | {
|
|
2779
|
-
breadcrumb_type: string;
|
|
2780
|
-
data: Record<string, unknown>;
|
|
2781
|
-
ts: string;
|
|
2782
|
-
route?: string | null | undefined;
|
|
2783
|
-
})[] | undefined;
|
|
2784
2784
|
rejection_reason?: {
|
|
2785
2785
|
kind: "string" | "undefined" | "object" | "null" | "unknown" | "error";
|
|
2786
2786
|
message?: string | undefined;
|
|
@@ -3124,7 +3124,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3124
3124
|
first_seen: z.ZodString;
|
|
3125
3125
|
last_seen: z.ZodString;
|
|
3126
3126
|
}, "strict", z.ZodTypeAny, {
|
|
3127
|
-
fingerprint: string;
|
|
3128
3127
|
device: {
|
|
3129
3128
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
3130
3129
|
language: string | null;
|
|
@@ -3158,12 +3157,12 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3158
3157
|
free_memory_bytes?: number | null | undefined;
|
|
3159
3158
|
jailbroken?: boolean | null | undefined;
|
|
3160
3159
|
};
|
|
3160
|
+
fingerprint: string;
|
|
3161
3161
|
suppressed_count: number;
|
|
3162
3162
|
window_seconds: number;
|
|
3163
3163
|
first_seen: string;
|
|
3164
3164
|
last_seen: string;
|
|
3165
3165
|
}, {
|
|
3166
|
-
fingerprint: string;
|
|
3167
3166
|
device: {
|
|
3168
3167
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
3169
3168
|
language: string | null;
|
|
@@ -3197,6 +3196,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3197
3196
|
free_memory_bytes?: number | null | undefined;
|
|
3198
3197
|
jailbroken?: boolean | null | undefined;
|
|
3199
3198
|
};
|
|
3199
|
+
fingerprint: string;
|
|
3200
3200
|
suppressed_count: number;
|
|
3201
3201
|
window_seconds: number;
|
|
3202
3202
|
first_seen: string;
|
|
@@ -3222,7 +3222,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3222
3222
|
first_seen: string;
|
|
3223
3223
|
last_seen: string;
|
|
3224
3224
|
} | {
|
|
3225
|
-
fingerprint: string;
|
|
3226
3225
|
device: {
|
|
3227
3226
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
3228
3227
|
language: string | null;
|
|
@@ -3256,6 +3255,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3256
3255
|
free_memory_bytes?: number | null | undefined;
|
|
3257
3256
|
jailbroken?: boolean | null | undefined;
|
|
3258
3257
|
};
|
|
3258
|
+
fingerprint: string;
|
|
3259
3259
|
suppressed_count: number;
|
|
3260
3260
|
window_seconds: number;
|
|
3261
3261
|
first_seen: string;
|
|
@@ -3290,7 +3290,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3290
3290
|
first_seen: string;
|
|
3291
3291
|
last_seen: string;
|
|
3292
3292
|
} | {
|
|
3293
|
-
fingerprint: string;
|
|
3294
3293
|
device: {
|
|
3295
3294
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
3296
3295
|
language: string | null;
|
|
@@ -3324,6 +3323,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3324
3323
|
free_memory_bytes?: number | null | undefined;
|
|
3325
3324
|
jailbroken?: boolean | null | undefined;
|
|
3326
3325
|
};
|
|
3326
|
+
fingerprint: string;
|
|
3327
3327
|
suppressed_count: number;
|
|
3328
3328
|
window_seconds: number;
|
|
3329
3329
|
first_seen: string;
|
|
@@ -3397,13 +3397,13 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3397
3397
|
activation_id: z.ZodNullable<z.ZodString>;
|
|
3398
3398
|
probe_label_pattern: z.ZodString;
|
|
3399
3399
|
}, "strict", z.ZodTypeAny, {
|
|
3400
|
-
data: Record<string, unknown>;
|
|
3401
3400
|
label: string;
|
|
3401
|
+
data: Record<string, unknown>;
|
|
3402
3402
|
activation_id: string | null;
|
|
3403
3403
|
probe_label_pattern: string;
|
|
3404
3404
|
}, {
|
|
3405
|
-
data: Record<string, unknown>;
|
|
3406
3405
|
label: string;
|
|
3406
|
+
data: Record<string, unknown>;
|
|
3407
3407
|
activation_id: string | null;
|
|
3408
3408
|
probe_label_pattern: string;
|
|
3409
3409
|
}>, z.ZodObject<{
|
|
@@ -3527,6 +3527,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3527
3527
|
activation_id: z.ZodNullable<z.ZodString>;
|
|
3528
3528
|
probe_label_pattern: z.ZodString;
|
|
3529
3529
|
}, "strict", z.ZodTypeAny, {
|
|
3530
|
+
label: string;
|
|
3531
|
+
data: Record<string, unknown>;
|
|
3532
|
+
activation_id: string | null;
|
|
3530
3533
|
device: {
|
|
3531
3534
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
3532
3535
|
language: string | null;
|
|
@@ -3560,11 +3563,11 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3560
3563
|
free_memory_bytes?: number | null | undefined;
|
|
3561
3564
|
jailbroken?: boolean | null | undefined;
|
|
3562
3565
|
};
|
|
3563
|
-
data: Record<string, unknown>;
|
|
3564
|
-
label: string;
|
|
3565
|
-
activation_id: string | null;
|
|
3566
3566
|
probe_label_pattern: string;
|
|
3567
3567
|
}, {
|
|
3568
|
+
label: string;
|
|
3569
|
+
data: Record<string, unknown>;
|
|
3570
|
+
activation_id: string | null;
|
|
3568
3571
|
device: {
|
|
3569
3572
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
3570
3573
|
language: string | null;
|
|
@@ -3598,9 +3601,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3598
3601
|
free_memory_bytes?: number | null | undefined;
|
|
3599
3602
|
jailbroken?: boolean | null | undefined;
|
|
3600
3603
|
};
|
|
3601
|
-
data: Record<string, unknown>;
|
|
3602
|
-
label: string;
|
|
3603
|
-
activation_id: string | null;
|
|
3604
3604
|
probe_label_pattern: string;
|
|
3605
3605
|
}>]>;
|
|
3606
3606
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3617,11 +3617,14 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3617
3617
|
sdk_name: string;
|
|
3618
3618
|
sdk_version: string;
|
|
3619
3619
|
payload: {
|
|
3620
|
-
data: Record<string, unknown>;
|
|
3621
3620
|
label: string;
|
|
3621
|
+
data: Record<string, unknown>;
|
|
3622
3622
|
activation_id: string | null;
|
|
3623
3623
|
probe_label_pattern: string;
|
|
3624
3624
|
} | {
|
|
3625
|
+
label: string;
|
|
3626
|
+
data: Record<string, unknown>;
|
|
3627
|
+
activation_id: string | null;
|
|
3625
3628
|
device: {
|
|
3626
3629
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
3627
3630
|
language: string | null;
|
|
@@ -3655,9 +3658,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3655
3658
|
free_memory_bytes?: number | null | undefined;
|
|
3656
3659
|
jailbroken?: boolean | null | undefined;
|
|
3657
3660
|
};
|
|
3658
|
-
data: Record<string, unknown>;
|
|
3659
|
-
label: string;
|
|
3660
|
-
activation_id: string | null;
|
|
3661
3661
|
probe_label_pattern: string;
|
|
3662
3662
|
};
|
|
3663
3663
|
project_id?: string | null | undefined;
|
|
@@ -3683,11 +3683,14 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3683
3683
|
sdk_name: string;
|
|
3684
3684
|
sdk_version: string;
|
|
3685
3685
|
payload: {
|
|
3686
|
-
data: Record<string, unknown>;
|
|
3687
3686
|
label: string;
|
|
3687
|
+
data: Record<string, unknown>;
|
|
3688
3688
|
activation_id: string | null;
|
|
3689
3689
|
probe_label_pattern: string;
|
|
3690
3690
|
} | {
|
|
3691
|
+
label: string;
|
|
3692
|
+
data: Record<string, unknown>;
|
|
3693
|
+
activation_id: string | null;
|
|
3691
3694
|
device: {
|
|
3692
3695
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
3693
3696
|
language: string | null;
|
|
@@ -3721,9 +3724,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3721
3724
|
free_memory_bytes?: number | null | undefined;
|
|
3722
3725
|
jailbroken?: boolean | null | undefined;
|
|
3723
3726
|
};
|
|
3724
|
-
data: Record<string, unknown>;
|
|
3725
|
-
label: string;
|
|
3726
|
-
activation_id: string | null;
|
|
3727
3727
|
probe_label_pattern: string;
|
|
3728
3728
|
};
|
|
3729
3729
|
project_id?: string | null | undefined;
|
|
@@ -3770,11 +3770,13 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3770
3770
|
} | null | undefined;
|
|
3771
3771
|
framework_extras?: Record<string, unknown> | null | undefined;
|
|
3772
3772
|
};
|
|
3773
|
+
stack: string;
|
|
3774
|
+
handled: boolean;
|
|
3773
3775
|
request: {
|
|
3774
3776
|
path: string;
|
|
3775
3777
|
query: Record<string, unknown>;
|
|
3776
|
-
headers: Record<string, unknown>;
|
|
3777
3778
|
method: string;
|
|
3779
|
+
headers: Record<string, unknown>;
|
|
3778
3780
|
body?: unknown;
|
|
3779
3781
|
};
|
|
3780
3782
|
response: {
|
|
@@ -3782,16 +3784,14 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3782
3784
|
body?: unknown;
|
|
3783
3785
|
headers?: Record<string, unknown> | undefined;
|
|
3784
3786
|
};
|
|
3785
|
-
stack: string;
|
|
3786
|
-
handled: boolean;
|
|
3787
3787
|
probe_data?: {
|
|
3788
|
+
version: 1;
|
|
3788
3789
|
items: {
|
|
3789
|
-
data: Record<string, unknown>;
|
|
3790
3790
|
label: string;
|
|
3791
|
+
data: Record<string, unknown>;
|
|
3791
3792
|
timestamp: string;
|
|
3792
3793
|
activation_id: string | null;
|
|
3793
3794
|
}[];
|
|
3794
|
-
version: 1;
|
|
3795
3795
|
} | undefined;
|
|
3796
3796
|
};
|
|
3797
3797
|
project_id?: string | null | undefined;
|
|
@@ -3820,9 +3820,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3820
3820
|
path: string;
|
|
3821
3821
|
duration_ms: number;
|
|
3822
3822
|
query: Record<string, unknown>;
|
|
3823
|
+
method: string;
|
|
3823
3824
|
headers: Record<string, unknown>;
|
|
3824
3825
|
response_status: number;
|
|
3825
|
-
method: string;
|
|
3826
3826
|
body?: unknown;
|
|
3827
3827
|
route_template?: string | null | undefined;
|
|
3828
3828
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -3831,6 +3831,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3831
3831
|
path: string;
|
|
3832
3832
|
duration_ms: number;
|
|
3833
3833
|
query: Record<string, unknown>;
|
|
3834
|
+
method: string;
|
|
3835
|
+
headers: Record<string, unknown>;
|
|
3836
|
+
response_status: number;
|
|
3834
3837
|
device: {
|
|
3835
3838
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
3836
3839
|
language: string | null;
|
|
@@ -3864,9 +3867,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3864
3867
|
free_memory_bytes?: number | null | undefined;
|
|
3865
3868
|
jailbroken?: boolean | null | undefined;
|
|
3866
3869
|
};
|
|
3867
|
-
headers: Record<string, unknown>;
|
|
3868
|
-
response_status: number;
|
|
3869
|
-
method: string;
|
|
3870
3870
|
body?: unknown;
|
|
3871
3871
|
route_template?: string | null | undefined;
|
|
3872
3872
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -3959,10 +3959,11 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3959
3959
|
sdk_name: string;
|
|
3960
3960
|
sdk_version: string;
|
|
3961
3961
|
payload: {
|
|
3962
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
3963
3962
|
data: Record<string, unknown>;
|
|
3963
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
3964
3964
|
route?: string | null | undefined;
|
|
3965
3965
|
} | {
|
|
3966
|
+
data: Record<string, unknown>;
|
|
3966
3967
|
device: {
|
|
3967
3968
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
3968
3969
|
language: string | null;
|
|
@@ -3997,7 +3998,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
3997
3998
|
jailbroken?: boolean | null | undefined;
|
|
3998
3999
|
};
|
|
3999
4000
|
breadcrumb_type: string;
|
|
4000
|
-
data: Record<string, unknown>;
|
|
4001
4001
|
route?: string | null | undefined;
|
|
4002
4002
|
};
|
|
4003
4003
|
project_id?: string | null | undefined;
|
|
@@ -4031,6 +4031,15 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4031
4031
|
name: string;
|
|
4032
4032
|
version: string;
|
|
4033
4033
|
} | undefined;
|
|
4034
|
+
probe_data?: {
|
|
4035
|
+
version: 1;
|
|
4036
|
+
items: {
|
|
4037
|
+
label: string;
|
|
4038
|
+
data: Record<string, unknown>;
|
|
4039
|
+
timestamp: string;
|
|
4040
|
+
activation_id: string | null;
|
|
4041
|
+
}[];
|
|
4042
|
+
} | undefined;
|
|
4034
4043
|
device?: {
|
|
4035
4044
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
4036
4045
|
language: string | null;
|
|
@@ -4084,12 +4093,26 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4084
4093
|
connection_type: string | null;
|
|
4085
4094
|
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
4086
4095
|
} | null | undefined;
|
|
4096
|
+
breadcrumbs?: ({
|
|
4097
|
+
data: Record<string, unknown>;
|
|
4098
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
4099
|
+
ts: string;
|
|
4100
|
+
route?: string | null | undefined;
|
|
4101
|
+
} | {
|
|
4102
|
+
data: Record<string, unknown>;
|
|
4103
|
+
breadcrumb_type: string;
|
|
4104
|
+
ts: string;
|
|
4105
|
+
route?: string | null | undefined;
|
|
4106
|
+
})[] | undefined;
|
|
4087
4107
|
browser_event?: {
|
|
4088
4108
|
message: string | null;
|
|
4089
|
-
kind: "
|
|
4109
|
+
kind: "window_error" | "resource_error";
|
|
4110
|
+
file_name: string | null;
|
|
4111
|
+
line_number: number | null;
|
|
4112
|
+
column_number: number | null;
|
|
4090
4113
|
target: {
|
|
4091
|
-
source_url: string | null;
|
|
4092
4114
|
tag_name: string | null;
|
|
4115
|
+
source_url: string | null;
|
|
4093
4116
|
attributes?: {
|
|
4094
4117
|
type?: string | undefined;
|
|
4095
4118
|
rel?: string | undefined;
|
|
@@ -4101,10 +4124,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4101
4124
|
integrity_present?: boolean | undefined;
|
|
4102
4125
|
} | undefined;
|
|
4103
4126
|
} | null;
|
|
4104
|
-
file_name: string | null;
|
|
4105
4127
|
opaque: boolean;
|
|
4106
|
-
line_number: number | null;
|
|
4107
|
-
column_number: number | null;
|
|
4108
4128
|
page?: {
|
|
4109
4129
|
url: string | null;
|
|
4110
4130
|
referrer: string | null;
|
|
@@ -4112,26 +4132,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4112
4132
|
visibility_state: "visible" | "hidden" | "prerender" | "unloaded" | null;
|
|
4113
4133
|
} | undefined;
|
|
4114
4134
|
} | undefined;
|
|
4115
|
-
probe_data?: {
|
|
4116
|
-
items: {
|
|
4117
|
-
data: Record<string, unknown>;
|
|
4118
|
-
label: string;
|
|
4119
|
-
timestamp: string;
|
|
4120
|
-
activation_id: string | null;
|
|
4121
|
-
}[];
|
|
4122
|
-
version: 1;
|
|
4123
|
-
} | undefined;
|
|
4124
|
-
breadcrumbs?: ({
|
|
4125
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
4126
|
-
data: Record<string, unknown>;
|
|
4127
|
-
ts: string;
|
|
4128
|
-
route?: string | null | undefined;
|
|
4129
|
-
} | {
|
|
4130
|
-
breadcrumb_type: string;
|
|
4131
|
-
data: Record<string, unknown>;
|
|
4132
|
-
ts: string;
|
|
4133
|
-
route?: string | null | undefined;
|
|
4134
|
-
})[] | undefined;
|
|
4135
4135
|
rejection_reason?: {
|
|
4136
4136
|
kind: "string" | "undefined" | "object" | "null" | "unknown" | "error";
|
|
4137
4137
|
message?: string | undefined;
|
|
@@ -4201,7 +4201,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4201
4201
|
first_seen: string;
|
|
4202
4202
|
last_seen: string;
|
|
4203
4203
|
} | {
|
|
4204
|
-
fingerprint: string;
|
|
4205
4204
|
device: {
|
|
4206
4205
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
4207
4206
|
language: string | null;
|
|
@@ -4235,6 +4234,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4235
4234
|
free_memory_bytes?: number | null | undefined;
|
|
4236
4235
|
jailbroken?: boolean | null | undefined;
|
|
4237
4236
|
};
|
|
4237
|
+
fingerprint: string;
|
|
4238
4238
|
suppressed_count: number;
|
|
4239
4239
|
window_seconds: number;
|
|
4240
4240
|
first_seen: string;
|
|
@@ -4263,11 +4263,14 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4263
4263
|
sdk_name: string;
|
|
4264
4264
|
sdk_version: string;
|
|
4265
4265
|
payload: {
|
|
4266
|
-
data: Record<string, unknown>;
|
|
4267
4266
|
label: string;
|
|
4267
|
+
data: Record<string, unknown>;
|
|
4268
4268
|
activation_id: string | null;
|
|
4269
4269
|
probe_label_pattern: string;
|
|
4270
4270
|
} | {
|
|
4271
|
+
label: string;
|
|
4272
|
+
data: Record<string, unknown>;
|
|
4273
|
+
activation_id: string | null;
|
|
4271
4274
|
device: {
|
|
4272
4275
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
4273
4276
|
language: string | null;
|
|
@@ -4301,9 +4304,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4301
4304
|
free_memory_bytes?: number | null | undefined;
|
|
4302
4305
|
jailbroken?: boolean | null | undefined;
|
|
4303
4306
|
};
|
|
4304
|
-
data: Record<string, unknown>;
|
|
4305
|
-
label: string;
|
|
4306
|
-
activation_id: string | null;
|
|
4307
4307
|
probe_label_pattern: string;
|
|
4308
4308
|
};
|
|
4309
4309
|
project_id?: string | null | undefined;
|
|
@@ -4350,11 +4350,13 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4350
4350
|
} | null | undefined;
|
|
4351
4351
|
framework_extras?: Record<string, unknown> | null | undefined;
|
|
4352
4352
|
};
|
|
4353
|
+
stack: string;
|
|
4354
|
+
handled: boolean;
|
|
4353
4355
|
request: {
|
|
4354
4356
|
path: string;
|
|
4355
4357
|
query: Record<string, unknown>;
|
|
4356
|
-
headers: Record<string, unknown>;
|
|
4357
4358
|
method: string;
|
|
4359
|
+
headers: Record<string, unknown>;
|
|
4358
4360
|
body?: unknown;
|
|
4359
4361
|
};
|
|
4360
4362
|
response: {
|
|
@@ -4362,16 +4364,14 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4362
4364
|
body?: unknown;
|
|
4363
4365
|
headers?: Record<string, unknown> | undefined;
|
|
4364
4366
|
};
|
|
4365
|
-
stack: string;
|
|
4366
|
-
handled: boolean;
|
|
4367
4367
|
probe_data?: {
|
|
4368
|
+
version: 1;
|
|
4368
4369
|
items: {
|
|
4369
|
-
data: Record<string, unknown>;
|
|
4370
4370
|
label: string;
|
|
4371
|
+
data: Record<string, unknown>;
|
|
4371
4372
|
timestamp: string;
|
|
4372
4373
|
activation_id: string | null;
|
|
4373
4374
|
}[];
|
|
4374
|
-
version: 1;
|
|
4375
4375
|
} | undefined;
|
|
4376
4376
|
};
|
|
4377
4377
|
project_id?: string | null | undefined;
|
|
@@ -4400,9 +4400,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4400
4400
|
path: string;
|
|
4401
4401
|
duration_ms: number;
|
|
4402
4402
|
query: Record<string, unknown>;
|
|
4403
|
+
method: string;
|
|
4403
4404
|
headers: Record<string, unknown>;
|
|
4404
4405
|
response_status: number;
|
|
4405
|
-
method: string;
|
|
4406
4406
|
body?: unknown;
|
|
4407
4407
|
route_template?: string | null | undefined;
|
|
4408
4408
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -4411,6 +4411,9 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4411
4411
|
path: string;
|
|
4412
4412
|
duration_ms: number;
|
|
4413
4413
|
query: Record<string, unknown>;
|
|
4414
|
+
method: string;
|
|
4415
|
+
headers: Record<string, unknown>;
|
|
4416
|
+
response_status: number;
|
|
4414
4417
|
device: {
|
|
4415
4418
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
4416
4419
|
language: string | null;
|
|
@@ -4444,9 +4447,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4444
4447
|
free_memory_bytes?: number | null | undefined;
|
|
4445
4448
|
jailbroken?: boolean | null | undefined;
|
|
4446
4449
|
};
|
|
4447
|
-
headers: Record<string, unknown>;
|
|
4448
|
-
response_status: number;
|
|
4449
|
-
method: string;
|
|
4450
4450
|
body?: unknown;
|
|
4451
4451
|
route_template?: string | null | undefined;
|
|
4452
4452
|
response_headers?: Record<string, unknown> | undefined;
|
|
@@ -4539,10 +4539,11 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4539
4539
|
sdk_name: string;
|
|
4540
4540
|
sdk_version: string;
|
|
4541
4541
|
payload: {
|
|
4542
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
4543
4542
|
data: Record<string, unknown>;
|
|
4543
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
4544
4544
|
route?: string | null | undefined;
|
|
4545
4545
|
} | {
|
|
4546
|
+
data: Record<string, unknown>;
|
|
4546
4547
|
device: {
|
|
4547
4548
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
4548
4549
|
language: string | null;
|
|
@@ -4577,7 +4578,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4577
4578
|
jailbroken?: boolean | null | undefined;
|
|
4578
4579
|
};
|
|
4579
4580
|
breadcrumb_type: string;
|
|
4580
|
-
data: Record<string, unknown>;
|
|
4581
4581
|
route?: string | null | undefined;
|
|
4582
4582
|
};
|
|
4583
4583
|
project_id?: string | null | undefined;
|
|
@@ -4611,6 +4611,15 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4611
4611
|
name: string;
|
|
4612
4612
|
version: string;
|
|
4613
4613
|
} | undefined;
|
|
4614
|
+
probe_data?: {
|
|
4615
|
+
version: 1;
|
|
4616
|
+
items: {
|
|
4617
|
+
label: string;
|
|
4618
|
+
data: Record<string, unknown>;
|
|
4619
|
+
timestamp: string;
|
|
4620
|
+
activation_id: string | null;
|
|
4621
|
+
}[];
|
|
4622
|
+
} | undefined;
|
|
4614
4623
|
device?: {
|
|
4615
4624
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
4616
4625
|
language: string | null;
|
|
@@ -4664,12 +4673,26 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4664
4673
|
connection_type: string | null;
|
|
4665
4674
|
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
4666
4675
|
} | null | undefined;
|
|
4676
|
+
breadcrumbs?: ({
|
|
4677
|
+
data: Record<string, unknown>;
|
|
4678
|
+
breadcrumb_type: "route_change" | "click" | "form_submit" | "console_log" | "network_request";
|
|
4679
|
+
ts: string;
|
|
4680
|
+
route?: string | null | undefined;
|
|
4681
|
+
} | {
|
|
4682
|
+
data: Record<string, unknown>;
|
|
4683
|
+
breadcrumb_type: string;
|
|
4684
|
+
ts: string;
|
|
4685
|
+
route?: string | null | undefined;
|
|
4686
|
+
})[] | undefined;
|
|
4667
4687
|
browser_event?: {
|
|
4668
4688
|
message: string | null;
|
|
4669
|
-
kind: "
|
|
4689
|
+
kind: "window_error" | "resource_error";
|
|
4690
|
+
file_name: string | null;
|
|
4691
|
+
line_number: number | null;
|
|
4692
|
+
column_number: number | null;
|
|
4670
4693
|
target: {
|
|
4671
|
-
source_url: string | null;
|
|
4672
4694
|
tag_name: string | null;
|
|
4695
|
+
source_url: string | null;
|
|
4673
4696
|
attributes?: {
|
|
4674
4697
|
type?: string | undefined;
|
|
4675
4698
|
rel?: string | undefined;
|
|
@@ -4681,10 +4704,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4681
4704
|
integrity_present?: boolean | undefined;
|
|
4682
4705
|
} | undefined;
|
|
4683
4706
|
} | null;
|
|
4684
|
-
file_name: string | null;
|
|
4685
4707
|
opaque: boolean;
|
|
4686
|
-
line_number: number | null;
|
|
4687
|
-
column_number: number | null;
|
|
4688
4708
|
page?: {
|
|
4689
4709
|
url: string | null;
|
|
4690
4710
|
referrer: string | null;
|
|
@@ -4692,26 +4712,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4692
4712
|
visibility_state: "visible" | "hidden" | "prerender" | "unloaded" | null;
|
|
4693
4713
|
} | undefined;
|
|
4694
4714
|
} | undefined;
|
|
4695
|
-
probe_data?: {
|
|
4696
|
-
items: {
|
|
4697
|
-
data: Record<string, unknown>;
|
|
4698
|
-
label: string;
|
|
4699
|
-
timestamp: string;
|
|
4700
|
-
activation_id: string | null;
|
|
4701
|
-
}[];
|
|
4702
|
-
version: 1;
|
|
4703
|
-
} | undefined;
|
|
4704
|
-
breadcrumbs?: ({
|
|
4705
|
-
breadcrumb_type: "route_change" | "network_request" | "click" | "form_submit" | "console_log";
|
|
4706
|
-
data: Record<string, unknown>;
|
|
4707
|
-
ts: string;
|
|
4708
|
-
route?: string | null | undefined;
|
|
4709
|
-
} | {
|
|
4710
|
-
breadcrumb_type: string;
|
|
4711
|
-
data: Record<string, unknown>;
|
|
4712
|
-
ts: string;
|
|
4713
|
-
route?: string | null | undefined;
|
|
4714
|
-
})[] | undefined;
|
|
4715
4715
|
rejection_reason?: {
|
|
4716
4716
|
kind: "string" | "undefined" | "object" | "null" | "unknown" | "error";
|
|
4717
4717
|
message?: string | undefined;
|
|
@@ -4781,7 +4781,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4781
4781
|
first_seen: string;
|
|
4782
4782
|
last_seen: string;
|
|
4783
4783
|
} | {
|
|
4784
|
-
fingerprint: string;
|
|
4785
4784
|
device: {
|
|
4786
4785
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
4787
4786
|
language: string | null;
|
|
@@ -4815,6 +4814,7 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4815
4814
|
free_memory_bytes?: number | null | undefined;
|
|
4816
4815
|
jailbroken?: boolean | null | undefined;
|
|
4817
4816
|
};
|
|
4817
|
+
fingerprint: string;
|
|
4818
4818
|
suppressed_count: number;
|
|
4819
4819
|
window_seconds: number;
|
|
4820
4820
|
first_seen: string;
|
|
@@ -4843,11 +4843,14 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4843
4843
|
sdk_name: string;
|
|
4844
4844
|
sdk_version: string;
|
|
4845
4845
|
payload: {
|
|
4846
|
-
data: Record<string, unknown>;
|
|
4847
4846
|
label: string;
|
|
4847
|
+
data: Record<string, unknown>;
|
|
4848
4848
|
activation_id: string | null;
|
|
4849
4849
|
probe_label_pattern: string;
|
|
4850
4850
|
} | {
|
|
4851
|
+
label: string;
|
|
4852
|
+
data: Record<string, unknown>;
|
|
4853
|
+
activation_id: string | null;
|
|
4851
4854
|
device: {
|
|
4852
4855
|
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
4853
4856
|
language: string | null;
|
|
@@ -4881,9 +4884,6 @@ export declare const EventEnvelopeSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
4881
4884
|
free_memory_bytes?: number | null | undefined;
|
|
4882
4885
|
jailbroken?: boolean | null | undefined;
|
|
4883
4886
|
};
|
|
4884
|
-
data: Record<string, unknown>;
|
|
4885
|
-
label: string;
|
|
4886
|
-
activation_id: string | null;
|
|
4887
4887
|
probe_label_pattern: string;
|
|
4888
4888
|
};
|
|
4889
4889
|
project_id?: string | null | undefined;
|