@sentry/api 0.196.0 → 0.197.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/dist/index.js +0 -4
- package/dist/pagination.gen.d.ts +0 -11
- package/dist/types.gen.d.ts +134 -130
- package/dist/zod.gen.d.ts +752 -492
- package/dist/zod.js +282 -278
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -12482,263 +12482,393 @@ export declare const zListReplayDeletionJobs: z.ZodObject<{
|
|
|
12482
12482
|
}[];
|
|
12483
12483
|
}>;
|
|
12484
12484
|
export declare const zListReplayRecordingSegments: z.ZodArray<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">, "many">;
|
|
12485
|
-
export declare const zListReplays: z.
|
|
12486
|
-
|
|
12487
|
-
|
|
12488
|
-
|
|
12489
|
-
|
|
12490
|
-
|
|
12491
|
-
|
|
12492
|
-
|
|
12493
|
-
|
|
12494
|
-
|
|
12495
|
-
|
|
12496
|
-
|
|
12497
|
-
|
|
12498
|
-
|
|
12499
|
-
|
|
12500
|
-
|
|
12501
|
-
|
|
12502
|
-
|
|
12485
|
+
export declare const zListReplays: z.ZodObject<{
|
|
12486
|
+
data: z.ZodArray<z.ZodObject<{
|
|
12487
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12488
|
+
project_id: z.ZodOptional<z.ZodString>;
|
|
12489
|
+
trace_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12490
|
+
error_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12491
|
+
environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12492
|
+
tags: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodUnknown, "many">]>>;
|
|
12493
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
12494
|
+
id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12495
|
+
username: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12496
|
+
email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12497
|
+
ip: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12498
|
+
display_name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12499
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
12500
|
+
city: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12501
|
+
country_code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12502
|
+
region: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12503
|
+
subdivision: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12504
|
+
}, "strip", z.ZodTypeAny, {
|
|
12505
|
+
city?: string | null | undefined;
|
|
12506
|
+
country_code?: string | null | undefined;
|
|
12507
|
+
region?: string | null | undefined;
|
|
12508
|
+
subdivision?: string | null | undefined;
|
|
12509
|
+
}, {
|
|
12510
|
+
city?: string | null | undefined;
|
|
12511
|
+
country_code?: string | null | undefined;
|
|
12512
|
+
region?: string | null | undefined;
|
|
12513
|
+
subdivision?: string | null | undefined;
|
|
12514
|
+
}>>;
|
|
12515
|
+
}, "strip", z.ZodTypeAny, {
|
|
12516
|
+
id?: string | null | undefined;
|
|
12517
|
+
username?: string | null | undefined;
|
|
12518
|
+
email?: string | null | undefined;
|
|
12519
|
+
geo?: {
|
|
12520
|
+
city?: string | null | undefined;
|
|
12521
|
+
country_code?: string | null | undefined;
|
|
12522
|
+
region?: string | null | undefined;
|
|
12523
|
+
subdivision?: string | null | undefined;
|
|
12524
|
+
} | undefined;
|
|
12525
|
+
ip?: string | null | undefined;
|
|
12526
|
+
display_name?: string | null | undefined;
|
|
12527
|
+
}, {
|
|
12528
|
+
id?: string | null | undefined;
|
|
12529
|
+
username?: string | null | undefined;
|
|
12530
|
+
email?: string | null | undefined;
|
|
12531
|
+
geo?: {
|
|
12532
|
+
city?: string | null | undefined;
|
|
12533
|
+
country_code?: string | null | undefined;
|
|
12534
|
+
region?: string | null | undefined;
|
|
12535
|
+
subdivision?: string | null | undefined;
|
|
12536
|
+
} | undefined;
|
|
12537
|
+
ip?: string | null | undefined;
|
|
12538
|
+
display_name?: string | null | undefined;
|
|
12539
|
+
}>>;
|
|
12540
|
+
sdk: z.ZodOptional<z.ZodObject<{
|
|
12541
|
+
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12542
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12543
|
+
}, "strip", z.ZodTypeAny, {
|
|
12544
|
+
name?: string | null | undefined;
|
|
12545
|
+
version?: string | null | undefined;
|
|
12546
|
+
}, {
|
|
12547
|
+
name?: string | null | undefined;
|
|
12548
|
+
version?: string | null | undefined;
|
|
12549
|
+
}>>;
|
|
12550
|
+
os: z.ZodOptional<z.ZodObject<{
|
|
12551
|
+
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12552
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12503
12553
|
}, "strip", z.ZodTypeAny, {
|
|
12504
|
-
|
|
12505
|
-
|
|
12506
|
-
region?: string | null | undefined;
|
|
12507
|
-
subdivision?: string | null | undefined;
|
|
12554
|
+
name?: string | null | undefined;
|
|
12555
|
+
version?: string | null | undefined;
|
|
12508
12556
|
}, {
|
|
12509
|
-
|
|
12510
|
-
|
|
12511
|
-
|
|
12512
|
-
|
|
12557
|
+
name?: string | null | undefined;
|
|
12558
|
+
version?: string | null | undefined;
|
|
12559
|
+
}>>;
|
|
12560
|
+
browser: z.ZodOptional<z.ZodObject<{
|
|
12561
|
+
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12562
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12563
|
+
}, "strip", z.ZodTypeAny, {
|
|
12564
|
+
name?: string | null | undefined;
|
|
12565
|
+
version?: string | null | undefined;
|
|
12566
|
+
}, {
|
|
12567
|
+
name?: string | null | undefined;
|
|
12568
|
+
version?: string | null | undefined;
|
|
12569
|
+
}>>;
|
|
12570
|
+
device: z.ZodOptional<z.ZodObject<{
|
|
12571
|
+
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12572
|
+
brand: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12573
|
+
model: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12574
|
+
family: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12575
|
+
}, "strip", z.ZodTypeAny, {
|
|
12576
|
+
name?: string | null | undefined;
|
|
12577
|
+
brand?: string | null | undefined;
|
|
12578
|
+
model?: string | null | undefined;
|
|
12579
|
+
family?: string | null | undefined;
|
|
12580
|
+
}, {
|
|
12581
|
+
name?: string | null | undefined;
|
|
12582
|
+
brand?: string | null | undefined;
|
|
12583
|
+
model?: string | null | undefined;
|
|
12584
|
+
family?: string | null | undefined;
|
|
12585
|
+
}>>;
|
|
12586
|
+
ota_updates: z.ZodOptional<z.ZodObject<{
|
|
12587
|
+
channel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12588
|
+
runtime_version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12589
|
+
update_id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12590
|
+
}, "strip", z.ZodTypeAny, {
|
|
12591
|
+
channel?: string | null | undefined;
|
|
12592
|
+
runtime_version?: string | null | undefined;
|
|
12593
|
+
update_id?: string | null | undefined;
|
|
12594
|
+
}, {
|
|
12595
|
+
channel?: string | null | undefined;
|
|
12596
|
+
runtime_version?: string | null | undefined;
|
|
12597
|
+
update_id?: string | null | undefined;
|
|
12513
12598
|
}>>;
|
|
12599
|
+
is_archived: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
12600
|
+
urls: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
12601
|
+
clicks: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
12602
|
+
count_dead_clicks: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
12603
|
+
count_rage_clicks: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
12604
|
+
count_errors: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
12605
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
12606
|
+
finished_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12607
|
+
started_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12608
|
+
activity: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
12609
|
+
count_urls: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
12610
|
+
replay_type: z.ZodOptional<z.ZodString>;
|
|
12611
|
+
count_segments: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
12612
|
+
platform: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12613
|
+
releases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12614
|
+
dist: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12615
|
+
count_warnings: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
12616
|
+
count_infos: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
12617
|
+
has_viewed: z.ZodOptional<z.ZodBoolean>;
|
|
12514
12618
|
}, "strip", z.ZodTypeAny, {
|
|
12515
|
-
|
|
12516
|
-
|
|
12517
|
-
|
|
12518
|
-
|
|
12519
|
-
|
|
12520
|
-
|
|
12521
|
-
|
|
12522
|
-
|
|
12619
|
+
user?: {
|
|
12620
|
+
id?: string | null | undefined;
|
|
12621
|
+
username?: string | null | undefined;
|
|
12622
|
+
email?: string | null | undefined;
|
|
12623
|
+
geo?: {
|
|
12624
|
+
city?: string | null | undefined;
|
|
12625
|
+
country_code?: string | null | undefined;
|
|
12626
|
+
region?: string | null | undefined;
|
|
12627
|
+
subdivision?: string | null | undefined;
|
|
12628
|
+
} | undefined;
|
|
12629
|
+
ip?: string | null | undefined;
|
|
12630
|
+
display_name?: string | null | undefined;
|
|
12523
12631
|
} | undefined;
|
|
12524
|
-
|
|
12525
|
-
|
|
12526
|
-
|
|
12527
|
-
|
|
12528
|
-
username?: string | null | undefined;
|
|
12529
|
-
email?: string | null | undefined;
|
|
12530
|
-
geo?: {
|
|
12531
|
-
city?: string | null | undefined;
|
|
12532
|
-
country_code?: string | null | undefined;
|
|
12533
|
-
region?: string | null | undefined;
|
|
12534
|
-
subdivision?: string | null | undefined;
|
|
12632
|
+
activity?: number | null | undefined;
|
|
12633
|
+
browser?: {
|
|
12634
|
+
name?: string | null | undefined;
|
|
12635
|
+
version?: string | null | undefined;
|
|
12535
12636
|
} | undefined;
|
|
12536
|
-
|
|
12537
|
-
|
|
12538
|
-
|
|
12539
|
-
|
|
12540
|
-
|
|
12541
|
-
|
|
12542
|
-
|
|
12543
|
-
|
|
12544
|
-
|
|
12545
|
-
|
|
12546
|
-
|
|
12547
|
-
|
|
12548
|
-
|
|
12549
|
-
|
|
12550
|
-
|
|
12551
|
-
|
|
12552
|
-
|
|
12553
|
-
|
|
12554
|
-
|
|
12555
|
-
|
|
12556
|
-
|
|
12557
|
-
|
|
12558
|
-
|
|
12559
|
-
|
|
12560
|
-
|
|
12561
|
-
|
|
12562
|
-
|
|
12563
|
-
|
|
12564
|
-
|
|
12565
|
-
|
|
12566
|
-
|
|
12567
|
-
|
|
12568
|
-
|
|
12569
|
-
|
|
12570
|
-
|
|
12571
|
-
|
|
12572
|
-
|
|
12573
|
-
|
|
12574
|
-
|
|
12575
|
-
|
|
12576
|
-
|
|
12577
|
-
|
|
12578
|
-
|
|
12637
|
+
count_dead_clicks?: number | null | undefined;
|
|
12638
|
+
count_errors?: number | null | undefined;
|
|
12639
|
+
count_rage_clicks?: number | null | undefined;
|
|
12640
|
+
count_segments?: number | null | undefined;
|
|
12641
|
+
count_urls?: number | null | undefined;
|
|
12642
|
+
device?: {
|
|
12643
|
+
name?: string | null | undefined;
|
|
12644
|
+
brand?: string | null | undefined;
|
|
12645
|
+
model?: string | null | undefined;
|
|
12646
|
+
family?: string | null | undefined;
|
|
12647
|
+
} | undefined;
|
|
12648
|
+
dist?: string | null | undefined;
|
|
12649
|
+
duration?: number | null | undefined;
|
|
12650
|
+
environment?: string | null | undefined;
|
|
12651
|
+
error_ids?: string[] | undefined;
|
|
12652
|
+
finished_at?: string | null | undefined;
|
|
12653
|
+
id?: string | undefined;
|
|
12654
|
+
is_archived?: boolean | null | undefined;
|
|
12655
|
+
os?: {
|
|
12656
|
+
name?: string | null | undefined;
|
|
12657
|
+
version?: string | null | undefined;
|
|
12658
|
+
} | undefined;
|
|
12659
|
+
platform?: string | null | undefined;
|
|
12660
|
+
project_id?: string | undefined;
|
|
12661
|
+
releases?: string[] | undefined;
|
|
12662
|
+
sdk?: {
|
|
12663
|
+
name?: string | null | undefined;
|
|
12664
|
+
version?: string | null | undefined;
|
|
12665
|
+
} | undefined;
|
|
12666
|
+
started_at?: string | null | undefined;
|
|
12667
|
+
tags?: unknown[] | Record<string, string[]> | undefined;
|
|
12668
|
+
trace_ids?: string[] | undefined;
|
|
12669
|
+
urls?: string[] | null | undefined;
|
|
12670
|
+
clicks?: Record<string, unknown>[] | undefined;
|
|
12671
|
+
count_warnings?: number | null | undefined;
|
|
12672
|
+
count_infos?: number | null | undefined;
|
|
12673
|
+
has_viewed?: boolean | undefined;
|
|
12674
|
+
ota_updates?: {
|
|
12675
|
+
channel?: string | null | undefined;
|
|
12676
|
+
runtime_version?: string | null | undefined;
|
|
12677
|
+
update_id?: string | null | undefined;
|
|
12678
|
+
} | undefined;
|
|
12679
|
+
replay_type?: string | undefined;
|
|
12579
12680
|
}, {
|
|
12580
|
-
|
|
12581
|
-
|
|
12582
|
-
|
|
12583
|
-
|
|
12584
|
-
|
|
12585
|
-
|
|
12586
|
-
|
|
12587
|
-
|
|
12588
|
-
|
|
12589
|
-
|
|
12590
|
-
|
|
12591
|
-
|
|
12592
|
-
|
|
12593
|
-
|
|
12594
|
-
|
|
12595
|
-
|
|
12596
|
-
|
|
12597
|
-
|
|
12598
|
-
|
|
12599
|
-
|
|
12600
|
-
|
|
12601
|
-
|
|
12602
|
-
|
|
12603
|
-
|
|
12604
|
-
|
|
12605
|
-
|
|
12606
|
-
|
|
12607
|
-
|
|
12608
|
-
|
|
12609
|
-
|
|
12610
|
-
|
|
12611
|
-
|
|
12612
|
-
|
|
12613
|
-
|
|
12614
|
-
|
|
12615
|
-
|
|
12616
|
-
|
|
12681
|
+
user?: {
|
|
12682
|
+
id?: string | null | undefined;
|
|
12683
|
+
username?: string | null | undefined;
|
|
12684
|
+
email?: string | null | undefined;
|
|
12685
|
+
geo?: {
|
|
12686
|
+
city?: string | null | undefined;
|
|
12687
|
+
country_code?: string | null | undefined;
|
|
12688
|
+
region?: string | null | undefined;
|
|
12689
|
+
subdivision?: string | null | undefined;
|
|
12690
|
+
} | undefined;
|
|
12691
|
+
ip?: string | null | undefined;
|
|
12692
|
+
display_name?: string | null | undefined;
|
|
12693
|
+
} | undefined;
|
|
12694
|
+
activity?: number | null | undefined;
|
|
12695
|
+
browser?: {
|
|
12696
|
+
name?: string | null | undefined;
|
|
12697
|
+
version?: string | null | undefined;
|
|
12698
|
+
} | undefined;
|
|
12699
|
+
count_dead_clicks?: number | null | undefined;
|
|
12700
|
+
count_errors?: number | null | undefined;
|
|
12701
|
+
count_rage_clicks?: number | null | undefined;
|
|
12702
|
+
count_segments?: number | null | undefined;
|
|
12703
|
+
count_urls?: number | null | undefined;
|
|
12704
|
+
device?: {
|
|
12705
|
+
name?: string | null | undefined;
|
|
12706
|
+
brand?: string | null | undefined;
|
|
12707
|
+
model?: string | null | undefined;
|
|
12708
|
+
family?: string | null | undefined;
|
|
12709
|
+
} | undefined;
|
|
12710
|
+
dist?: string | null | undefined;
|
|
12711
|
+
duration?: number | null | undefined;
|
|
12712
|
+
environment?: string | null | undefined;
|
|
12713
|
+
error_ids?: string[] | undefined;
|
|
12714
|
+
finished_at?: string | null | undefined;
|
|
12715
|
+
id?: string | undefined;
|
|
12716
|
+
is_archived?: boolean | null | undefined;
|
|
12717
|
+
os?: {
|
|
12718
|
+
name?: string | null | undefined;
|
|
12719
|
+
version?: string | null | undefined;
|
|
12720
|
+
} | undefined;
|
|
12721
|
+
platform?: string | null | undefined;
|
|
12722
|
+
project_id?: string | undefined;
|
|
12723
|
+
releases?: string[] | undefined;
|
|
12724
|
+
sdk?: {
|
|
12725
|
+
name?: string | null | undefined;
|
|
12726
|
+
version?: string | null | undefined;
|
|
12727
|
+
} | undefined;
|
|
12728
|
+
started_at?: string | null | undefined;
|
|
12729
|
+
tags?: unknown[] | Record<string, string[]> | undefined;
|
|
12730
|
+
trace_ids?: string[] | undefined;
|
|
12731
|
+
urls?: string[] | null | undefined;
|
|
12732
|
+
clicks?: Record<string, unknown>[] | undefined;
|
|
12733
|
+
count_warnings?: number | null | undefined;
|
|
12734
|
+
count_infos?: number | null | undefined;
|
|
12735
|
+
has_viewed?: boolean | undefined;
|
|
12736
|
+
ota_updates?: {
|
|
12737
|
+
channel?: string | null | undefined;
|
|
12738
|
+
runtime_version?: string | null | undefined;
|
|
12739
|
+
update_id?: string | null | undefined;
|
|
12740
|
+
} | undefined;
|
|
12741
|
+
replay_type?: string | undefined;
|
|
12742
|
+
}>, "many">;
|
|
12617
12743
|
}, "strip", z.ZodTypeAny, {
|
|
12618
|
-
|
|
12619
|
-
|
|
12620
|
-
|
|
12621
|
-
|
|
12622
|
-
|
|
12623
|
-
|
|
12624
|
-
|
|
12625
|
-
|
|
12626
|
-
|
|
12744
|
+
data: {
|
|
12745
|
+
user?: {
|
|
12746
|
+
id?: string | null | undefined;
|
|
12747
|
+
username?: string | null | undefined;
|
|
12748
|
+
email?: string | null | undefined;
|
|
12749
|
+
geo?: {
|
|
12750
|
+
city?: string | null | undefined;
|
|
12751
|
+
country_code?: string | null | undefined;
|
|
12752
|
+
region?: string | null | undefined;
|
|
12753
|
+
subdivision?: string | null | undefined;
|
|
12754
|
+
} | undefined;
|
|
12755
|
+
ip?: string | null | undefined;
|
|
12756
|
+
display_name?: string | null | undefined;
|
|
12627
12757
|
} | undefined;
|
|
12628
|
-
|
|
12629
|
-
|
|
12630
|
-
|
|
12631
|
-
|
|
12632
|
-
|
|
12633
|
-
|
|
12634
|
-
|
|
12635
|
-
|
|
12636
|
-
|
|
12637
|
-
|
|
12638
|
-
|
|
12639
|
-
|
|
12640
|
-
|
|
12641
|
-
|
|
12642
|
-
|
|
12643
|
-
|
|
12644
|
-
|
|
12645
|
-
|
|
12646
|
-
|
|
12647
|
-
|
|
12648
|
-
|
|
12649
|
-
|
|
12650
|
-
|
|
12651
|
-
|
|
12652
|
-
|
|
12653
|
-
|
|
12654
|
-
|
|
12655
|
-
|
|
12656
|
-
|
|
12657
|
-
|
|
12658
|
-
|
|
12659
|
-
|
|
12660
|
-
|
|
12661
|
-
|
|
12662
|
-
|
|
12663
|
-
|
|
12664
|
-
|
|
12665
|
-
|
|
12666
|
-
|
|
12667
|
-
|
|
12668
|
-
|
|
12669
|
-
|
|
12670
|
-
|
|
12671
|
-
|
|
12672
|
-
|
|
12673
|
-
|
|
12674
|
-
|
|
12675
|
-
|
|
12676
|
-
|
|
12677
|
-
} | undefined;
|
|
12678
|
-
replay_type?: string | undefined;
|
|
12758
|
+
activity?: number | null | undefined;
|
|
12759
|
+
browser?: {
|
|
12760
|
+
name?: string | null | undefined;
|
|
12761
|
+
version?: string | null | undefined;
|
|
12762
|
+
} | undefined;
|
|
12763
|
+
count_dead_clicks?: number | null | undefined;
|
|
12764
|
+
count_errors?: number | null | undefined;
|
|
12765
|
+
count_rage_clicks?: number | null | undefined;
|
|
12766
|
+
count_segments?: number | null | undefined;
|
|
12767
|
+
count_urls?: number | null | undefined;
|
|
12768
|
+
device?: {
|
|
12769
|
+
name?: string | null | undefined;
|
|
12770
|
+
brand?: string | null | undefined;
|
|
12771
|
+
model?: string | null | undefined;
|
|
12772
|
+
family?: string | null | undefined;
|
|
12773
|
+
} | undefined;
|
|
12774
|
+
dist?: string | null | undefined;
|
|
12775
|
+
duration?: number | null | undefined;
|
|
12776
|
+
environment?: string | null | undefined;
|
|
12777
|
+
error_ids?: string[] | undefined;
|
|
12778
|
+
finished_at?: string | null | undefined;
|
|
12779
|
+
id?: string | undefined;
|
|
12780
|
+
is_archived?: boolean | null | undefined;
|
|
12781
|
+
os?: {
|
|
12782
|
+
name?: string | null | undefined;
|
|
12783
|
+
version?: string | null | undefined;
|
|
12784
|
+
} | undefined;
|
|
12785
|
+
platform?: string | null | undefined;
|
|
12786
|
+
project_id?: string | undefined;
|
|
12787
|
+
releases?: string[] | undefined;
|
|
12788
|
+
sdk?: {
|
|
12789
|
+
name?: string | null | undefined;
|
|
12790
|
+
version?: string | null | undefined;
|
|
12791
|
+
} | undefined;
|
|
12792
|
+
started_at?: string | null | undefined;
|
|
12793
|
+
tags?: unknown[] | Record<string, string[]> | undefined;
|
|
12794
|
+
trace_ids?: string[] | undefined;
|
|
12795
|
+
urls?: string[] | null | undefined;
|
|
12796
|
+
clicks?: Record<string, unknown>[] | undefined;
|
|
12797
|
+
count_warnings?: number | null | undefined;
|
|
12798
|
+
count_infos?: number | null | undefined;
|
|
12799
|
+
has_viewed?: boolean | undefined;
|
|
12800
|
+
ota_updates?: {
|
|
12801
|
+
channel?: string | null | undefined;
|
|
12802
|
+
runtime_version?: string | null | undefined;
|
|
12803
|
+
update_id?: string | null | undefined;
|
|
12804
|
+
} | undefined;
|
|
12805
|
+
replay_type?: string | undefined;
|
|
12806
|
+
}[];
|
|
12679
12807
|
}, {
|
|
12680
|
-
|
|
12681
|
-
|
|
12682
|
-
|
|
12683
|
-
|
|
12684
|
-
|
|
12685
|
-
|
|
12686
|
-
|
|
12687
|
-
|
|
12688
|
-
|
|
12808
|
+
data: {
|
|
12809
|
+
user?: {
|
|
12810
|
+
id?: string | null | undefined;
|
|
12811
|
+
username?: string | null | undefined;
|
|
12812
|
+
email?: string | null | undefined;
|
|
12813
|
+
geo?: {
|
|
12814
|
+
city?: string | null | undefined;
|
|
12815
|
+
country_code?: string | null | undefined;
|
|
12816
|
+
region?: string | null | undefined;
|
|
12817
|
+
subdivision?: string | null | undefined;
|
|
12818
|
+
} | undefined;
|
|
12819
|
+
ip?: string | null | undefined;
|
|
12820
|
+
display_name?: string | null | undefined;
|
|
12689
12821
|
} | undefined;
|
|
12690
|
-
|
|
12691
|
-
|
|
12692
|
-
|
|
12693
|
-
|
|
12694
|
-
|
|
12695
|
-
|
|
12696
|
-
|
|
12697
|
-
|
|
12698
|
-
|
|
12699
|
-
|
|
12700
|
-
|
|
12701
|
-
|
|
12702
|
-
|
|
12703
|
-
|
|
12704
|
-
|
|
12705
|
-
|
|
12706
|
-
|
|
12707
|
-
|
|
12708
|
-
|
|
12709
|
-
|
|
12710
|
-
|
|
12711
|
-
|
|
12712
|
-
|
|
12713
|
-
|
|
12714
|
-
|
|
12715
|
-
|
|
12716
|
-
|
|
12717
|
-
|
|
12718
|
-
|
|
12719
|
-
|
|
12720
|
-
|
|
12721
|
-
|
|
12722
|
-
|
|
12723
|
-
|
|
12724
|
-
|
|
12725
|
-
|
|
12726
|
-
|
|
12727
|
-
|
|
12728
|
-
|
|
12729
|
-
|
|
12730
|
-
|
|
12731
|
-
|
|
12732
|
-
|
|
12733
|
-
|
|
12734
|
-
|
|
12735
|
-
|
|
12736
|
-
|
|
12737
|
-
|
|
12738
|
-
|
|
12739
|
-
|
|
12740
|
-
replay_type?: string | undefined;
|
|
12741
|
-
}>, "many">;
|
|
12822
|
+
activity?: number | null | undefined;
|
|
12823
|
+
browser?: {
|
|
12824
|
+
name?: string | null | undefined;
|
|
12825
|
+
version?: string | null | undefined;
|
|
12826
|
+
} | undefined;
|
|
12827
|
+
count_dead_clicks?: number | null | undefined;
|
|
12828
|
+
count_errors?: number | null | undefined;
|
|
12829
|
+
count_rage_clicks?: number | null | undefined;
|
|
12830
|
+
count_segments?: number | null | undefined;
|
|
12831
|
+
count_urls?: number | null | undefined;
|
|
12832
|
+
device?: {
|
|
12833
|
+
name?: string | null | undefined;
|
|
12834
|
+
brand?: string | null | undefined;
|
|
12835
|
+
model?: string | null | undefined;
|
|
12836
|
+
family?: string | null | undefined;
|
|
12837
|
+
} | undefined;
|
|
12838
|
+
dist?: string | null | undefined;
|
|
12839
|
+
duration?: number | null | undefined;
|
|
12840
|
+
environment?: string | null | undefined;
|
|
12841
|
+
error_ids?: string[] | undefined;
|
|
12842
|
+
finished_at?: string | null | undefined;
|
|
12843
|
+
id?: string | undefined;
|
|
12844
|
+
is_archived?: boolean | null | undefined;
|
|
12845
|
+
os?: {
|
|
12846
|
+
name?: string | null | undefined;
|
|
12847
|
+
version?: string | null | undefined;
|
|
12848
|
+
} | undefined;
|
|
12849
|
+
platform?: string | null | undefined;
|
|
12850
|
+
project_id?: string | undefined;
|
|
12851
|
+
releases?: string[] | undefined;
|
|
12852
|
+
sdk?: {
|
|
12853
|
+
name?: string | null | undefined;
|
|
12854
|
+
version?: string | null | undefined;
|
|
12855
|
+
} | undefined;
|
|
12856
|
+
started_at?: string | null | undefined;
|
|
12857
|
+
tags?: unknown[] | Record<string, string[]> | undefined;
|
|
12858
|
+
trace_ids?: string[] | undefined;
|
|
12859
|
+
urls?: string[] | null | undefined;
|
|
12860
|
+
clicks?: Record<string, unknown>[] | undefined;
|
|
12861
|
+
count_warnings?: number | null | undefined;
|
|
12862
|
+
count_infos?: number | null | undefined;
|
|
12863
|
+
has_viewed?: boolean | undefined;
|
|
12864
|
+
ota_updates?: {
|
|
12865
|
+
channel?: string | null | undefined;
|
|
12866
|
+
runtime_version?: string | null | undefined;
|
|
12867
|
+
update_id?: string | null | undefined;
|
|
12868
|
+
} | undefined;
|
|
12869
|
+
replay_type?: string | undefined;
|
|
12870
|
+
}[];
|
|
12871
|
+
}>;
|
|
12742
12872
|
export declare const zListSelectors: z.ZodObject<{
|
|
12743
12873
|
data: z.ZodArray<z.ZodObject<{
|
|
12744
12874
|
count_dead_clicks: z.ZodOptional<z.ZodNumber>;
|
|
@@ -46917,263 +47047,393 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
46917
47047
|
} | undefined;
|
|
46918
47048
|
body?: undefined;
|
|
46919
47049
|
}>;
|
|
46920
|
-
export declare const zListOrganizationReplaysResponse: z.
|
|
46921
|
-
|
|
46922
|
-
|
|
46923
|
-
|
|
46924
|
-
|
|
46925
|
-
|
|
46926
|
-
|
|
46927
|
-
|
|
46928
|
-
|
|
46929
|
-
|
|
46930
|
-
|
|
46931
|
-
|
|
46932
|
-
|
|
46933
|
-
|
|
46934
|
-
|
|
46935
|
-
|
|
46936
|
-
|
|
46937
|
-
|
|
47050
|
+
export declare const zListOrganizationReplaysResponse: z.ZodObject<{
|
|
47051
|
+
data: z.ZodArray<z.ZodObject<{
|
|
47052
|
+
id: z.ZodOptional<z.ZodString>;
|
|
47053
|
+
project_id: z.ZodOptional<z.ZodString>;
|
|
47054
|
+
trace_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
47055
|
+
error_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
47056
|
+
environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47057
|
+
tags: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodUnknown, "many">]>>;
|
|
47058
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
47059
|
+
id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47060
|
+
username: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47061
|
+
email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47062
|
+
ip: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47063
|
+
display_name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47064
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
47065
|
+
city: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47066
|
+
country_code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47067
|
+
region: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47068
|
+
subdivision: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47069
|
+
}, "strip", z.ZodTypeAny, {
|
|
47070
|
+
city?: string | null | undefined;
|
|
47071
|
+
country_code?: string | null | undefined;
|
|
47072
|
+
region?: string | null | undefined;
|
|
47073
|
+
subdivision?: string | null | undefined;
|
|
47074
|
+
}, {
|
|
47075
|
+
city?: string | null | undefined;
|
|
47076
|
+
country_code?: string | null | undefined;
|
|
47077
|
+
region?: string | null | undefined;
|
|
47078
|
+
subdivision?: string | null | undefined;
|
|
47079
|
+
}>>;
|
|
47080
|
+
}, "strip", z.ZodTypeAny, {
|
|
47081
|
+
id?: string | null | undefined;
|
|
47082
|
+
username?: string | null | undefined;
|
|
47083
|
+
email?: string | null | undefined;
|
|
47084
|
+
geo?: {
|
|
47085
|
+
city?: string | null | undefined;
|
|
47086
|
+
country_code?: string | null | undefined;
|
|
47087
|
+
region?: string | null | undefined;
|
|
47088
|
+
subdivision?: string | null | undefined;
|
|
47089
|
+
} | undefined;
|
|
47090
|
+
ip?: string | null | undefined;
|
|
47091
|
+
display_name?: string | null | undefined;
|
|
47092
|
+
}, {
|
|
47093
|
+
id?: string | null | undefined;
|
|
47094
|
+
username?: string | null | undefined;
|
|
47095
|
+
email?: string | null | undefined;
|
|
47096
|
+
geo?: {
|
|
47097
|
+
city?: string | null | undefined;
|
|
47098
|
+
country_code?: string | null | undefined;
|
|
47099
|
+
region?: string | null | undefined;
|
|
47100
|
+
subdivision?: string | null | undefined;
|
|
47101
|
+
} | undefined;
|
|
47102
|
+
ip?: string | null | undefined;
|
|
47103
|
+
display_name?: string | null | undefined;
|
|
47104
|
+
}>>;
|
|
47105
|
+
sdk: z.ZodOptional<z.ZodObject<{
|
|
47106
|
+
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47107
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47108
|
+
}, "strip", z.ZodTypeAny, {
|
|
47109
|
+
name?: string | null | undefined;
|
|
47110
|
+
version?: string | null | undefined;
|
|
47111
|
+
}, {
|
|
47112
|
+
name?: string | null | undefined;
|
|
47113
|
+
version?: string | null | undefined;
|
|
47114
|
+
}>>;
|
|
47115
|
+
os: z.ZodOptional<z.ZodObject<{
|
|
47116
|
+
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47117
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
46938
47118
|
}, "strip", z.ZodTypeAny, {
|
|
46939
|
-
|
|
46940
|
-
|
|
46941
|
-
region?: string | null | undefined;
|
|
46942
|
-
subdivision?: string | null | undefined;
|
|
47119
|
+
name?: string | null | undefined;
|
|
47120
|
+
version?: string | null | undefined;
|
|
46943
47121
|
}, {
|
|
46944
|
-
|
|
46945
|
-
|
|
46946
|
-
|
|
46947
|
-
|
|
47122
|
+
name?: string | null | undefined;
|
|
47123
|
+
version?: string | null | undefined;
|
|
47124
|
+
}>>;
|
|
47125
|
+
browser: z.ZodOptional<z.ZodObject<{
|
|
47126
|
+
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47127
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47128
|
+
}, "strip", z.ZodTypeAny, {
|
|
47129
|
+
name?: string | null | undefined;
|
|
47130
|
+
version?: string | null | undefined;
|
|
47131
|
+
}, {
|
|
47132
|
+
name?: string | null | undefined;
|
|
47133
|
+
version?: string | null | undefined;
|
|
47134
|
+
}>>;
|
|
47135
|
+
device: z.ZodOptional<z.ZodObject<{
|
|
47136
|
+
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47137
|
+
brand: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47138
|
+
model: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47139
|
+
family: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47140
|
+
}, "strip", z.ZodTypeAny, {
|
|
47141
|
+
name?: string | null | undefined;
|
|
47142
|
+
brand?: string | null | undefined;
|
|
47143
|
+
model?: string | null | undefined;
|
|
47144
|
+
family?: string | null | undefined;
|
|
47145
|
+
}, {
|
|
47146
|
+
name?: string | null | undefined;
|
|
47147
|
+
brand?: string | null | undefined;
|
|
47148
|
+
model?: string | null | undefined;
|
|
47149
|
+
family?: string | null | undefined;
|
|
47150
|
+
}>>;
|
|
47151
|
+
ota_updates: z.ZodOptional<z.ZodObject<{
|
|
47152
|
+
channel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47153
|
+
runtime_version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47154
|
+
update_id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47155
|
+
}, "strip", z.ZodTypeAny, {
|
|
47156
|
+
channel?: string | null | undefined;
|
|
47157
|
+
runtime_version?: string | null | undefined;
|
|
47158
|
+
update_id?: string | null | undefined;
|
|
47159
|
+
}, {
|
|
47160
|
+
channel?: string | null | undefined;
|
|
47161
|
+
runtime_version?: string | null | undefined;
|
|
47162
|
+
update_id?: string | null | undefined;
|
|
46948
47163
|
}>>;
|
|
47164
|
+
is_archived: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
47165
|
+
urls: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
47166
|
+
clicks: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
47167
|
+
count_dead_clicks: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
47168
|
+
count_rage_clicks: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
47169
|
+
count_errors: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
47170
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
47171
|
+
finished_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47172
|
+
started_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47173
|
+
activity: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
47174
|
+
count_urls: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
47175
|
+
replay_type: z.ZodOptional<z.ZodString>;
|
|
47176
|
+
count_segments: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
47177
|
+
platform: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47178
|
+
releases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
47179
|
+
dist: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47180
|
+
count_warnings: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
47181
|
+
count_infos: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
47182
|
+
has_viewed: z.ZodOptional<z.ZodBoolean>;
|
|
46949
47183
|
}, "strip", z.ZodTypeAny, {
|
|
46950
|
-
|
|
46951
|
-
|
|
46952
|
-
|
|
46953
|
-
|
|
46954
|
-
|
|
46955
|
-
|
|
46956
|
-
|
|
46957
|
-
|
|
47184
|
+
user?: {
|
|
47185
|
+
id?: string | null | undefined;
|
|
47186
|
+
username?: string | null | undefined;
|
|
47187
|
+
email?: string | null | undefined;
|
|
47188
|
+
geo?: {
|
|
47189
|
+
city?: string | null | undefined;
|
|
47190
|
+
country_code?: string | null | undefined;
|
|
47191
|
+
region?: string | null | undefined;
|
|
47192
|
+
subdivision?: string | null | undefined;
|
|
47193
|
+
} | undefined;
|
|
47194
|
+
ip?: string | null | undefined;
|
|
47195
|
+
display_name?: string | null | undefined;
|
|
46958
47196
|
} | undefined;
|
|
46959
|
-
|
|
46960
|
-
|
|
46961
|
-
|
|
46962
|
-
|
|
46963
|
-
username?: string | null | undefined;
|
|
46964
|
-
email?: string | null | undefined;
|
|
46965
|
-
geo?: {
|
|
46966
|
-
city?: string | null | undefined;
|
|
46967
|
-
country_code?: string | null | undefined;
|
|
46968
|
-
region?: string | null | undefined;
|
|
46969
|
-
subdivision?: string | null | undefined;
|
|
47197
|
+
activity?: number | null | undefined;
|
|
47198
|
+
browser?: {
|
|
47199
|
+
name?: string | null | undefined;
|
|
47200
|
+
version?: string | null | undefined;
|
|
46970
47201
|
} | undefined;
|
|
46971
|
-
|
|
46972
|
-
|
|
46973
|
-
|
|
46974
|
-
|
|
46975
|
-
|
|
46976
|
-
|
|
46977
|
-
|
|
46978
|
-
|
|
46979
|
-
|
|
46980
|
-
|
|
46981
|
-
|
|
46982
|
-
|
|
46983
|
-
|
|
46984
|
-
|
|
46985
|
-
|
|
46986
|
-
|
|
46987
|
-
|
|
46988
|
-
|
|
46989
|
-
|
|
46990
|
-
|
|
46991
|
-
|
|
46992
|
-
|
|
46993
|
-
|
|
46994
|
-
|
|
46995
|
-
|
|
46996
|
-
|
|
46997
|
-
|
|
46998
|
-
|
|
46999
|
-
|
|
47000
|
-
|
|
47001
|
-
|
|
47002
|
-
|
|
47003
|
-
|
|
47004
|
-
|
|
47005
|
-
|
|
47006
|
-
|
|
47007
|
-
|
|
47008
|
-
|
|
47009
|
-
|
|
47010
|
-
|
|
47011
|
-
|
|
47012
|
-
|
|
47013
|
-
|
|
47202
|
+
count_dead_clicks?: number | null | undefined;
|
|
47203
|
+
count_errors?: number | null | undefined;
|
|
47204
|
+
count_rage_clicks?: number | null | undefined;
|
|
47205
|
+
count_segments?: number | null | undefined;
|
|
47206
|
+
count_urls?: number | null | undefined;
|
|
47207
|
+
device?: {
|
|
47208
|
+
name?: string | null | undefined;
|
|
47209
|
+
brand?: string | null | undefined;
|
|
47210
|
+
model?: string | null | undefined;
|
|
47211
|
+
family?: string | null | undefined;
|
|
47212
|
+
} | undefined;
|
|
47213
|
+
dist?: string | null | undefined;
|
|
47214
|
+
duration?: number | null | undefined;
|
|
47215
|
+
environment?: string | null | undefined;
|
|
47216
|
+
error_ids?: string[] | undefined;
|
|
47217
|
+
finished_at?: string | null | undefined;
|
|
47218
|
+
id?: string | undefined;
|
|
47219
|
+
is_archived?: boolean | null | undefined;
|
|
47220
|
+
os?: {
|
|
47221
|
+
name?: string | null | undefined;
|
|
47222
|
+
version?: string | null | undefined;
|
|
47223
|
+
} | undefined;
|
|
47224
|
+
platform?: string | null | undefined;
|
|
47225
|
+
project_id?: string | undefined;
|
|
47226
|
+
releases?: string[] | undefined;
|
|
47227
|
+
sdk?: {
|
|
47228
|
+
name?: string | null | undefined;
|
|
47229
|
+
version?: string | null | undefined;
|
|
47230
|
+
} | undefined;
|
|
47231
|
+
started_at?: string | null | undefined;
|
|
47232
|
+
tags?: unknown[] | Record<string, string[]> | undefined;
|
|
47233
|
+
trace_ids?: string[] | undefined;
|
|
47234
|
+
urls?: string[] | null | undefined;
|
|
47235
|
+
clicks?: Record<string, unknown>[] | undefined;
|
|
47236
|
+
count_warnings?: number | null | undefined;
|
|
47237
|
+
count_infos?: number | null | undefined;
|
|
47238
|
+
has_viewed?: boolean | undefined;
|
|
47239
|
+
ota_updates?: {
|
|
47240
|
+
channel?: string | null | undefined;
|
|
47241
|
+
runtime_version?: string | null | undefined;
|
|
47242
|
+
update_id?: string | null | undefined;
|
|
47243
|
+
} | undefined;
|
|
47244
|
+
replay_type?: string | undefined;
|
|
47014
47245
|
}, {
|
|
47015
|
-
|
|
47016
|
-
|
|
47017
|
-
|
|
47018
|
-
|
|
47019
|
-
|
|
47020
|
-
|
|
47021
|
-
|
|
47022
|
-
|
|
47023
|
-
|
|
47024
|
-
|
|
47025
|
-
|
|
47026
|
-
|
|
47027
|
-
|
|
47028
|
-
|
|
47029
|
-
|
|
47030
|
-
|
|
47031
|
-
|
|
47032
|
-
|
|
47033
|
-
|
|
47034
|
-
|
|
47035
|
-
|
|
47036
|
-
|
|
47037
|
-
|
|
47038
|
-
|
|
47039
|
-
|
|
47040
|
-
|
|
47041
|
-
|
|
47042
|
-
|
|
47043
|
-
|
|
47044
|
-
|
|
47045
|
-
|
|
47046
|
-
|
|
47047
|
-
|
|
47048
|
-
|
|
47049
|
-
|
|
47050
|
-
|
|
47051
|
-
|
|
47246
|
+
user?: {
|
|
47247
|
+
id?: string | null | undefined;
|
|
47248
|
+
username?: string | null | undefined;
|
|
47249
|
+
email?: string | null | undefined;
|
|
47250
|
+
geo?: {
|
|
47251
|
+
city?: string | null | undefined;
|
|
47252
|
+
country_code?: string | null | undefined;
|
|
47253
|
+
region?: string | null | undefined;
|
|
47254
|
+
subdivision?: string | null | undefined;
|
|
47255
|
+
} | undefined;
|
|
47256
|
+
ip?: string | null | undefined;
|
|
47257
|
+
display_name?: string | null | undefined;
|
|
47258
|
+
} | undefined;
|
|
47259
|
+
activity?: number | null | undefined;
|
|
47260
|
+
browser?: {
|
|
47261
|
+
name?: string | null | undefined;
|
|
47262
|
+
version?: string | null | undefined;
|
|
47263
|
+
} | undefined;
|
|
47264
|
+
count_dead_clicks?: number | null | undefined;
|
|
47265
|
+
count_errors?: number | null | undefined;
|
|
47266
|
+
count_rage_clicks?: number | null | undefined;
|
|
47267
|
+
count_segments?: number | null | undefined;
|
|
47268
|
+
count_urls?: number | null | undefined;
|
|
47269
|
+
device?: {
|
|
47270
|
+
name?: string | null | undefined;
|
|
47271
|
+
brand?: string | null | undefined;
|
|
47272
|
+
model?: string | null | undefined;
|
|
47273
|
+
family?: string | null | undefined;
|
|
47274
|
+
} | undefined;
|
|
47275
|
+
dist?: string | null | undefined;
|
|
47276
|
+
duration?: number | null | undefined;
|
|
47277
|
+
environment?: string | null | undefined;
|
|
47278
|
+
error_ids?: string[] | undefined;
|
|
47279
|
+
finished_at?: string | null | undefined;
|
|
47280
|
+
id?: string | undefined;
|
|
47281
|
+
is_archived?: boolean | null | undefined;
|
|
47282
|
+
os?: {
|
|
47283
|
+
name?: string | null | undefined;
|
|
47284
|
+
version?: string | null | undefined;
|
|
47285
|
+
} | undefined;
|
|
47286
|
+
platform?: string | null | undefined;
|
|
47287
|
+
project_id?: string | undefined;
|
|
47288
|
+
releases?: string[] | undefined;
|
|
47289
|
+
sdk?: {
|
|
47290
|
+
name?: string | null | undefined;
|
|
47291
|
+
version?: string | null | undefined;
|
|
47292
|
+
} | undefined;
|
|
47293
|
+
started_at?: string | null | undefined;
|
|
47294
|
+
tags?: unknown[] | Record<string, string[]> | undefined;
|
|
47295
|
+
trace_ids?: string[] | undefined;
|
|
47296
|
+
urls?: string[] | null | undefined;
|
|
47297
|
+
clicks?: Record<string, unknown>[] | undefined;
|
|
47298
|
+
count_warnings?: number | null | undefined;
|
|
47299
|
+
count_infos?: number | null | undefined;
|
|
47300
|
+
has_viewed?: boolean | undefined;
|
|
47301
|
+
ota_updates?: {
|
|
47302
|
+
channel?: string | null | undefined;
|
|
47303
|
+
runtime_version?: string | null | undefined;
|
|
47304
|
+
update_id?: string | null | undefined;
|
|
47305
|
+
} | undefined;
|
|
47306
|
+
replay_type?: string | undefined;
|
|
47307
|
+
}>, "many">;
|
|
47052
47308
|
}, "strip", z.ZodTypeAny, {
|
|
47053
|
-
|
|
47054
|
-
|
|
47055
|
-
|
|
47056
|
-
|
|
47057
|
-
|
|
47058
|
-
|
|
47059
|
-
|
|
47060
|
-
|
|
47061
|
-
|
|
47309
|
+
data: {
|
|
47310
|
+
user?: {
|
|
47311
|
+
id?: string | null | undefined;
|
|
47312
|
+
username?: string | null | undefined;
|
|
47313
|
+
email?: string | null | undefined;
|
|
47314
|
+
geo?: {
|
|
47315
|
+
city?: string | null | undefined;
|
|
47316
|
+
country_code?: string | null | undefined;
|
|
47317
|
+
region?: string | null | undefined;
|
|
47318
|
+
subdivision?: string | null | undefined;
|
|
47319
|
+
} | undefined;
|
|
47320
|
+
ip?: string | null | undefined;
|
|
47321
|
+
display_name?: string | null | undefined;
|
|
47062
47322
|
} | undefined;
|
|
47063
|
-
|
|
47064
|
-
|
|
47065
|
-
|
|
47066
|
-
|
|
47067
|
-
|
|
47068
|
-
|
|
47069
|
-
|
|
47070
|
-
|
|
47071
|
-
|
|
47072
|
-
|
|
47073
|
-
|
|
47074
|
-
|
|
47075
|
-
|
|
47076
|
-
|
|
47077
|
-
|
|
47078
|
-
|
|
47079
|
-
|
|
47080
|
-
|
|
47081
|
-
|
|
47082
|
-
|
|
47083
|
-
|
|
47084
|
-
|
|
47085
|
-
|
|
47086
|
-
|
|
47087
|
-
|
|
47088
|
-
|
|
47089
|
-
|
|
47090
|
-
|
|
47091
|
-
|
|
47092
|
-
|
|
47093
|
-
|
|
47094
|
-
|
|
47095
|
-
|
|
47096
|
-
|
|
47097
|
-
|
|
47098
|
-
|
|
47099
|
-
|
|
47100
|
-
|
|
47101
|
-
|
|
47102
|
-
|
|
47103
|
-
|
|
47104
|
-
|
|
47105
|
-
|
|
47106
|
-
|
|
47107
|
-
|
|
47108
|
-
|
|
47109
|
-
|
|
47110
|
-
|
|
47111
|
-
|
|
47112
|
-
} | undefined;
|
|
47113
|
-
replay_type?: string | undefined;
|
|
47323
|
+
activity?: number | null | undefined;
|
|
47324
|
+
browser?: {
|
|
47325
|
+
name?: string | null | undefined;
|
|
47326
|
+
version?: string | null | undefined;
|
|
47327
|
+
} | undefined;
|
|
47328
|
+
count_dead_clicks?: number | null | undefined;
|
|
47329
|
+
count_errors?: number | null | undefined;
|
|
47330
|
+
count_rage_clicks?: number | null | undefined;
|
|
47331
|
+
count_segments?: number | null | undefined;
|
|
47332
|
+
count_urls?: number | null | undefined;
|
|
47333
|
+
device?: {
|
|
47334
|
+
name?: string | null | undefined;
|
|
47335
|
+
brand?: string | null | undefined;
|
|
47336
|
+
model?: string | null | undefined;
|
|
47337
|
+
family?: string | null | undefined;
|
|
47338
|
+
} | undefined;
|
|
47339
|
+
dist?: string | null | undefined;
|
|
47340
|
+
duration?: number | null | undefined;
|
|
47341
|
+
environment?: string | null | undefined;
|
|
47342
|
+
error_ids?: string[] | undefined;
|
|
47343
|
+
finished_at?: string | null | undefined;
|
|
47344
|
+
id?: string | undefined;
|
|
47345
|
+
is_archived?: boolean | null | undefined;
|
|
47346
|
+
os?: {
|
|
47347
|
+
name?: string | null | undefined;
|
|
47348
|
+
version?: string | null | undefined;
|
|
47349
|
+
} | undefined;
|
|
47350
|
+
platform?: string | null | undefined;
|
|
47351
|
+
project_id?: string | undefined;
|
|
47352
|
+
releases?: string[] | undefined;
|
|
47353
|
+
sdk?: {
|
|
47354
|
+
name?: string | null | undefined;
|
|
47355
|
+
version?: string | null | undefined;
|
|
47356
|
+
} | undefined;
|
|
47357
|
+
started_at?: string | null | undefined;
|
|
47358
|
+
tags?: unknown[] | Record<string, string[]> | undefined;
|
|
47359
|
+
trace_ids?: string[] | undefined;
|
|
47360
|
+
urls?: string[] | null | undefined;
|
|
47361
|
+
clicks?: Record<string, unknown>[] | undefined;
|
|
47362
|
+
count_warnings?: number | null | undefined;
|
|
47363
|
+
count_infos?: number | null | undefined;
|
|
47364
|
+
has_viewed?: boolean | undefined;
|
|
47365
|
+
ota_updates?: {
|
|
47366
|
+
channel?: string | null | undefined;
|
|
47367
|
+
runtime_version?: string | null | undefined;
|
|
47368
|
+
update_id?: string | null | undefined;
|
|
47369
|
+
} | undefined;
|
|
47370
|
+
replay_type?: string | undefined;
|
|
47371
|
+
}[];
|
|
47114
47372
|
}, {
|
|
47115
|
-
|
|
47116
|
-
|
|
47117
|
-
|
|
47118
|
-
|
|
47119
|
-
|
|
47120
|
-
|
|
47121
|
-
|
|
47122
|
-
|
|
47123
|
-
|
|
47373
|
+
data: {
|
|
47374
|
+
user?: {
|
|
47375
|
+
id?: string | null | undefined;
|
|
47376
|
+
username?: string | null | undefined;
|
|
47377
|
+
email?: string | null | undefined;
|
|
47378
|
+
geo?: {
|
|
47379
|
+
city?: string | null | undefined;
|
|
47380
|
+
country_code?: string | null | undefined;
|
|
47381
|
+
region?: string | null | undefined;
|
|
47382
|
+
subdivision?: string | null | undefined;
|
|
47383
|
+
} | undefined;
|
|
47384
|
+
ip?: string | null | undefined;
|
|
47385
|
+
display_name?: string | null | undefined;
|
|
47124
47386
|
} | undefined;
|
|
47125
|
-
|
|
47126
|
-
|
|
47127
|
-
|
|
47128
|
-
|
|
47129
|
-
|
|
47130
|
-
|
|
47131
|
-
|
|
47132
|
-
|
|
47133
|
-
|
|
47134
|
-
|
|
47135
|
-
|
|
47136
|
-
|
|
47137
|
-
|
|
47138
|
-
|
|
47139
|
-
|
|
47140
|
-
|
|
47141
|
-
|
|
47142
|
-
|
|
47143
|
-
|
|
47144
|
-
|
|
47145
|
-
|
|
47146
|
-
|
|
47147
|
-
|
|
47148
|
-
|
|
47149
|
-
|
|
47150
|
-
|
|
47151
|
-
|
|
47152
|
-
|
|
47153
|
-
|
|
47154
|
-
|
|
47155
|
-
|
|
47156
|
-
|
|
47157
|
-
|
|
47158
|
-
|
|
47159
|
-
|
|
47160
|
-
|
|
47161
|
-
|
|
47162
|
-
|
|
47163
|
-
|
|
47164
|
-
|
|
47165
|
-
|
|
47166
|
-
|
|
47167
|
-
|
|
47168
|
-
|
|
47169
|
-
|
|
47170
|
-
|
|
47171
|
-
|
|
47172
|
-
|
|
47173
|
-
|
|
47174
|
-
|
|
47175
|
-
replay_type?: string | undefined;
|
|
47176
|
-
}>, "many">;
|
|
47387
|
+
activity?: number | null | undefined;
|
|
47388
|
+
browser?: {
|
|
47389
|
+
name?: string | null | undefined;
|
|
47390
|
+
version?: string | null | undefined;
|
|
47391
|
+
} | undefined;
|
|
47392
|
+
count_dead_clicks?: number | null | undefined;
|
|
47393
|
+
count_errors?: number | null | undefined;
|
|
47394
|
+
count_rage_clicks?: number | null | undefined;
|
|
47395
|
+
count_segments?: number | null | undefined;
|
|
47396
|
+
count_urls?: number | null | undefined;
|
|
47397
|
+
device?: {
|
|
47398
|
+
name?: string | null | undefined;
|
|
47399
|
+
brand?: string | null | undefined;
|
|
47400
|
+
model?: string | null | undefined;
|
|
47401
|
+
family?: string | null | undefined;
|
|
47402
|
+
} | undefined;
|
|
47403
|
+
dist?: string | null | undefined;
|
|
47404
|
+
duration?: number | null | undefined;
|
|
47405
|
+
environment?: string | null | undefined;
|
|
47406
|
+
error_ids?: string[] | undefined;
|
|
47407
|
+
finished_at?: string | null | undefined;
|
|
47408
|
+
id?: string | undefined;
|
|
47409
|
+
is_archived?: boolean | null | undefined;
|
|
47410
|
+
os?: {
|
|
47411
|
+
name?: string | null | undefined;
|
|
47412
|
+
version?: string | null | undefined;
|
|
47413
|
+
} | undefined;
|
|
47414
|
+
platform?: string | null | undefined;
|
|
47415
|
+
project_id?: string | undefined;
|
|
47416
|
+
releases?: string[] | undefined;
|
|
47417
|
+
sdk?: {
|
|
47418
|
+
name?: string | null | undefined;
|
|
47419
|
+
version?: string | null | undefined;
|
|
47420
|
+
} | undefined;
|
|
47421
|
+
started_at?: string | null | undefined;
|
|
47422
|
+
tags?: unknown[] | Record<string, string[]> | undefined;
|
|
47423
|
+
trace_ids?: string[] | undefined;
|
|
47424
|
+
urls?: string[] | null | undefined;
|
|
47425
|
+
clicks?: Record<string, unknown>[] | undefined;
|
|
47426
|
+
count_warnings?: number | null | undefined;
|
|
47427
|
+
count_infos?: number | null | undefined;
|
|
47428
|
+
has_viewed?: boolean | undefined;
|
|
47429
|
+
ota_updates?: {
|
|
47430
|
+
channel?: string | null | undefined;
|
|
47431
|
+
runtime_version?: string | null | undefined;
|
|
47432
|
+
update_id?: string | null | undefined;
|
|
47433
|
+
} | undefined;
|
|
47434
|
+
replay_type?: string | undefined;
|
|
47435
|
+
}[];
|
|
47436
|
+
}>;
|
|
47177
47437
|
export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
47178
47438
|
body: z.ZodOptional<z.ZodNever>;
|
|
47179
47439
|
path: z.ZodObject<{
|