@sentry/api 0.196.0 → 0.198.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/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.ZodArray<z.ZodObject<{
12486
- id: z.ZodOptional<z.ZodString>;
12487
- project_id: z.ZodOptional<z.ZodString>;
12488
- trace_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12489
- error_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12490
- environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12491
- tags: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodUnknown, "many">]>>;
12492
- user: z.ZodOptional<z.ZodObject<{
12493
- id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12494
- username: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12495
- email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12496
- ip: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12497
- display_name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12498
- geo: z.ZodOptional<z.ZodObject<{
12499
- city: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12500
- country_code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12501
- region: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12502
- subdivision: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
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
- city?: string | null | undefined;
12505
- country_code?: string | null | undefined;
12506
- region?: string | null | undefined;
12507
- subdivision?: string | null | undefined;
12554
+ name?: string | null | undefined;
12555
+ version?: string | null | undefined;
12508
12556
  }, {
12509
- city?: string | null | undefined;
12510
- country_code?: string | null | undefined;
12511
- region?: string | null | undefined;
12512
- subdivision?: string | null | undefined;
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
- id?: string | null | undefined;
12516
- username?: string | null | undefined;
12517
- email?: string | null | undefined;
12518
- geo?: {
12519
- city?: string | null | undefined;
12520
- country_code?: string | null | undefined;
12521
- region?: string | null | undefined;
12522
- subdivision?: string | null | undefined;
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
- ip?: string | null | undefined;
12525
- display_name?: string | null | undefined;
12526
- }, {
12527
- id?: string | null | undefined;
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
- ip?: string | null | undefined;
12537
- display_name?: string | null | undefined;
12538
- }>>;
12539
- sdk: z.ZodOptional<z.ZodObject<{
12540
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12541
- version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12542
- }, "strip", z.ZodTypeAny, {
12543
- name?: string | null | undefined;
12544
- version?: string | null | undefined;
12545
- }, {
12546
- name?: string | null | undefined;
12547
- version?: string | null | undefined;
12548
- }>>;
12549
- os: z.ZodOptional<z.ZodObject<{
12550
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12551
- version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12552
- }, "strip", z.ZodTypeAny, {
12553
- name?: string | null | undefined;
12554
- version?: string | null | undefined;
12555
- }, {
12556
- name?: string | null | undefined;
12557
- version?: string | null | undefined;
12558
- }>>;
12559
- browser: z.ZodOptional<z.ZodObject<{
12560
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12561
- version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12562
- }, "strip", z.ZodTypeAny, {
12563
- name?: string | null | undefined;
12564
- version?: string | null | undefined;
12565
- }, {
12566
- name?: string | null | undefined;
12567
- version?: string | null | undefined;
12568
- }>>;
12569
- device: z.ZodOptional<z.ZodObject<{
12570
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12571
- brand: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12572
- model: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12573
- family: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12574
- }, "strip", z.ZodTypeAny, {
12575
- name?: string | null | undefined;
12576
- brand?: string | null | undefined;
12577
- model?: string | null | undefined;
12578
- family?: string | null | undefined;
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
- name?: string | null | undefined;
12581
- brand?: string | null | undefined;
12582
- model?: string | null | undefined;
12583
- family?: string | null | undefined;
12584
- }>>;
12585
- ota_updates: z.ZodOptional<z.ZodObject<{
12586
- channel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12587
- runtime_version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12588
- update_id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12589
- }, "strip", z.ZodTypeAny, {
12590
- channel?: string | null | undefined;
12591
- runtime_version?: string | null | undefined;
12592
- update_id?: string | null | undefined;
12593
- }, {
12594
- channel?: string | null | undefined;
12595
- runtime_version?: string | null | undefined;
12596
- update_id?: string | null | undefined;
12597
- }>>;
12598
- is_archived: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
12599
- urls: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
12600
- clicks: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
12601
- count_dead_clicks: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
12602
- count_rage_clicks: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
12603
- count_errors: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
12604
- duration: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
12605
- finished_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12606
- started_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12607
- activity: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
12608
- count_urls: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
12609
- replay_type: z.ZodOptional<z.ZodString>;
12610
- count_segments: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
12611
- platform: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12612
- releases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12613
- dist: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12614
- count_warnings: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
12615
- count_infos: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
12616
- has_viewed: z.ZodOptional<z.ZodBoolean>;
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
- user?: {
12619
- id?: string | null | undefined;
12620
- username?: string | null | undefined;
12621
- email?: string | null | undefined;
12622
- geo?: {
12623
- city?: string | null | undefined;
12624
- country_code?: string | null | undefined;
12625
- region?: string | null | undefined;
12626
- subdivision?: string | null | undefined;
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
- ip?: string | null | undefined;
12629
- display_name?: string | null | undefined;
12630
- } | undefined;
12631
- activity?: number | null | undefined;
12632
- browser?: {
12633
- name?: string | null | undefined;
12634
- version?: string | null | undefined;
12635
- } | undefined;
12636
- count_dead_clicks?: number | null | undefined;
12637
- count_errors?: number | null | undefined;
12638
- count_rage_clicks?: number | null | undefined;
12639
- count_segments?: number | null | undefined;
12640
- count_urls?: number | null | undefined;
12641
- device?: {
12642
- name?: string | null | undefined;
12643
- brand?: string | null | undefined;
12644
- model?: string | null | undefined;
12645
- family?: string | null | undefined;
12646
- } | undefined;
12647
- dist?: string | null | undefined;
12648
- duration?: number | null | undefined;
12649
- environment?: string | null | undefined;
12650
- error_ids?: string[] | undefined;
12651
- finished_at?: string | null | undefined;
12652
- id?: string | undefined;
12653
- is_archived?: boolean | null | undefined;
12654
- os?: {
12655
- name?: string | null | undefined;
12656
- version?: string | null | undefined;
12657
- } | undefined;
12658
- platform?: string | null | undefined;
12659
- project_id?: string | undefined;
12660
- releases?: string[] | undefined;
12661
- sdk?: {
12662
- name?: string | null | undefined;
12663
- version?: string | null | undefined;
12664
- } | undefined;
12665
- started_at?: string | null | undefined;
12666
- tags?: unknown[] | Record<string, string[]> | undefined;
12667
- trace_ids?: string[] | undefined;
12668
- urls?: string[] | null | undefined;
12669
- clicks?: Record<string, unknown>[] | undefined;
12670
- count_warnings?: number | null | undefined;
12671
- count_infos?: number | null | undefined;
12672
- has_viewed?: boolean | undefined;
12673
- ota_updates?: {
12674
- channel?: string | null | undefined;
12675
- runtime_version?: string | null | undefined;
12676
- update_id?: string | null | undefined;
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
- user?: {
12681
- id?: string | null | undefined;
12682
- username?: string | null | undefined;
12683
- email?: string | null | undefined;
12684
- geo?: {
12685
- city?: string | null | undefined;
12686
- country_code?: string | null | undefined;
12687
- region?: string | null | undefined;
12688
- subdivision?: string | null | undefined;
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
- ip?: string | null | undefined;
12691
- display_name?: string | null | undefined;
12692
- } | undefined;
12693
- activity?: number | null | undefined;
12694
- browser?: {
12695
- name?: string | null | undefined;
12696
- version?: string | null | undefined;
12697
- } | undefined;
12698
- count_dead_clicks?: number | null | undefined;
12699
- count_errors?: number | null | undefined;
12700
- count_rage_clicks?: number | null | undefined;
12701
- count_segments?: number | null | undefined;
12702
- count_urls?: number | null | undefined;
12703
- device?: {
12704
- name?: string | null | undefined;
12705
- brand?: string | null | undefined;
12706
- model?: string | null | undefined;
12707
- family?: string | null | undefined;
12708
- } | undefined;
12709
- dist?: string | null | undefined;
12710
- duration?: number | null | undefined;
12711
- environment?: string | null | undefined;
12712
- error_ids?: string[] | undefined;
12713
- finished_at?: string | null | undefined;
12714
- id?: string | undefined;
12715
- is_archived?: boolean | null | undefined;
12716
- os?: {
12717
- name?: string | null | undefined;
12718
- version?: string | null | undefined;
12719
- } | undefined;
12720
- platform?: string | null | undefined;
12721
- project_id?: string | undefined;
12722
- releases?: string[] | undefined;
12723
- sdk?: {
12724
- name?: string | null | undefined;
12725
- version?: string | null | undefined;
12726
- } | undefined;
12727
- started_at?: string | null | undefined;
12728
- tags?: unknown[] | Record<string, string[]> | undefined;
12729
- trace_ids?: string[] | undefined;
12730
- urls?: string[] | null | undefined;
12731
- clicks?: Record<string, unknown>[] | undefined;
12732
- count_warnings?: number | null | undefined;
12733
- count_infos?: number | null | undefined;
12734
- has_viewed?: boolean | undefined;
12735
- ota_updates?: {
12736
- channel?: string | null | undefined;
12737
- runtime_version?: string | null | undefined;
12738
- update_id?: string | null | undefined;
12739
- } | undefined;
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.ZodArray<z.ZodObject<{
46921
- id: z.ZodOptional<z.ZodString>;
46922
- project_id: z.ZodOptional<z.ZodString>;
46923
- trace_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
46924
- error_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
46925
- environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46926
- tags: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodUnknown, "many">]>>;
46927
- user: z.ZodOptional<z.ZodObject<{
46928
- id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46929
- username: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46930
- email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46931
- ip: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46932
- display_name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46933
- geo: z.ZodOptional<z.ZodObject<{
46934
- city: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46935
- country_code: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46936
- region: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46937
- subdivision: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
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
- city?: string | null | undefined;
46940
- country_code?: string | null | undefined;
46941
- region?: string | null | undefined;
46942
- subdivision?: string | null | undefined;
47119
+ name?: string | null | undefined;
47120
+ version?: string | null | undefined;
46943
47121
  }, {
46944
- city?: string | null | undefined;
46945
- country_code?: string | null | undefined;
46946
- region?: string | null | undefined;
46947
- subdivision?: string | null | undefined;
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
- id?: string | null | undefined;
46951
- username?: string | null | undefined;
46952
- email?: string | null | undefined;
46953
- geo?: {
46954
- city?: string | null | undefined;
46955
- country_code?: string | null | undefined;
46956
- region?: string | null | undefined;
46957
- subdivision?: string | null | undefined;
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
- ip?: string | null | undefined;
46960
- display_name?: string | null | undefined;
46961
- }, {
46962
- id?: string | null | undefined;
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
- ip?: string | null | undefined;
46972
- display_name?: string | null | undefined;
46973
- }>>;
46974
- sdk: z.ZodOptional<z.ZodObject<{
46975
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46976
- version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46977
- }, "strip", z.ZodTypeAny, {
46978
- name?: string | null | undefined;
46979
- version?: string | null | undefined;
46980
- }, {
46981
- name?: string | null | undefined;
46982
- version?: string | null | undefined;
46983
- }>>;
46984
- os: z.ZodOptional<z.ZodObject<{
46985
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46986
- version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46987
- }, "strip", z.ZodTypeAny, {
46988
- name?: string | null | undefined;
46989
- version?: string | null | undefined;
46990
- }, {
46991
- name?: string | null | undefined;
46992
- version?: string | null | undefined;
46993
- }>>;
46994
- browser: z.ZodOptional<z.ZodObject<{
46995
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46996
- version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
46997
- }, "strip", z.ZodTypeAny, {
46998
- name?: string | null | undefined;
46999
- version?: string | null | undefined;
47000
- }, {
47001
- name?: string | null | undefined;
47002
- version?: string | null | undefined;
47003
- }>>;
47004
- device: z.ZodOptional<z.ZodObject<{
47005
- name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47006
- brand: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47007
- model: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47008
- family: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47009
- }, "strip", z.ZodTypeAny, {
47010
- name?: string | null | undefined;
47011
- brand?: string | null | undefined;
47012
- model?: string | null | undefined;
47013
- family?: string | null | undefined;
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
- name?: string | null | undefined;
47016
- brand?: string | null | undefined;
47017
- model?: string | null | undefined;
47018
- family?: string | null | undefined;
47019
- }>>;
47020
- ota_updates: z.ZodOptional<z.ZodObject<{
47021
- channel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47022
- runtime_version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47023
- update_id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47024
- }, "strip", z.ZodTypeAny, {
47025
- channel?: string | null | undefined;
47026
- runtime_version?: string | null | undefined;
47027
- update_id?: string | null | undefined;
47028
- }, {
47029
- channel?: string | null | undefined;
47030
- runtime_version?: string | null | undefined;
47031
- update_id?: string | null | undefined;
47032
- }>>;
47033
- is_archived: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
47034
- urls: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
47035
- clicks: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
47036
- count_dead_clicks: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
47037
- count_rage_clicks: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
47038
- count_errors: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
47039
- duration: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
47040
- finished_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47041
- started_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47042
- activity: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
47043
- count_urls: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
47044
- replay_type: z.ZodOptional<z.ZodString>;
47045
- count_segments: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
47046
- platform: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47047
- releases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
47048
- dist: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47049
- count_warnings: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
47050
- count_infos: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
47051
- has_viewed: z.ZodOptional<z.ZodBoolean>;
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
- user?: {
47054
- id?: string | null | undefined;
47055
- username?: string | null | undefined;
47056
- email?: string | null | undefined;
47057
- geo?: {
47058
- city?: string | null | undefined;
47059
- country_code?: string | null | undefined;
47060
- region?: string | null | undefined;
47061
- subdivision?: string | null | undefined;
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
- ip?: string | null | undefined;
47064
- display_name?: string | null | undefined;
47065
- } | undefined;
47066
- activity?: number | null | undefined;
47067
- browser?: {
47068
- name?: string | null | undefined;
47069
- version?: string | null | undefined;
47070
- } | undefined;
47071
- count_dead_clicks?: number | null | undefined;
47072
- count_errors?: number | null | undefined;
47073
- count_rage_clicks?: number | null | undefined;
47074
- count_segments?: number | null | undefined;
47075
- count_urls?: number | null | undefined;
47076
- device?: {
47077
- name?: string | null | undefined;
47078
- brand?: string | null | undefined;
47079
- model?: string | null | undefined;
47080
- family?: string | null | undefined;
47081
- } | undefined;
47082
- dist?: string | null | undefined;
47083
- duration?: number | null | undefined;
47084
- environment?: string | null | undefined;
47085
- error_ids?: string[] | undefined;
47086
- finished_at?: string | null | undefined;
47087
- id?: string | undefined;
47088
- is_archived?: boolean | null | undefined;
47089
- os?: {
47090
- name?: string | null | undefined;
47091
- version?: string | null | undefined;
47092
- } | undefined;
47093
- platform?: string | null | undefined;
47094
- project_id?: string | undefined;
47095
- releases?: string[] | undefined;
47096
- sdk?: {
47097
- name?: string | null | undefined;
47098
- version?: string | null | undefined;
47099
- } | undefined;
47100
- started_at?: string | null | undefined;
47101
- tags?: unknown[] | Record<string, string[]> | undefined;
47102
- trace_ids?: string[] | undefined;
47103
- urls?: string[] | null | undefined;
47104
- clicks?: Record<string, unknown>[] | undefined;
47105
- count_warnings?: number | null | undefined;
47106
- count_infos?: number | null | undefined;
47107
- has_viewed?: boolean | undefined;
47108
- ota_updates?: {
47109
- channel?: string | null | undefined;
47110
- runtime_version?: string | null | undefined;
47111
- update_id?: string | null | undefined;
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
- user?: {
47116
- id?: string | null | undefined;
47117
- username?: string | null | undefined;
47118
- email?: string | null | undefined;
47119
- geo?: {
47120
- city?: string | null | undefined;
47121
- country_code?: string | null | undefined;
47122
- region?: string | null | undefined;
47123
- subdivision?: string | null | undefined;
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
- ip?: string | null | undefined;
47126
- display_name?: string | null | undefined;
47127
- } | undefined;
47128
- activity?: number | null | undefined;
47129
- browser?: {
47130
- name?: string | null | undefined;
47131
- version?: string | null | undefined;
47132
- } | undefined;
47133
- count_dead_clicks?: number | null | undefined;
47134
- count_errors?: number | null | undefined;
47135
- count_rage_clicks?: number | null | undefined;
47136
- count_segments?: number | null | undefined;
47137
- count_urls?: number | null | undefined;
47138
- device?: {
47139
- name?: string | null | undefined;
47140
- brand?: string | null | undefined;
47141
- model?: string | null | undefined;
47142
- family?: string | null | undefined;
47143
- } | undefined;
47144
- dist?: string | null | undefined;
47145
- duration?: number | null | undefined;
47146
- environment?: string | null | undefined;
47147
- error_ids?: string[] | undefined;
47148
- finished_at?: string | null | undefined;
47149
- id?: string | undefined;
47150
- is_archived?: boolean | null | undefined;
47151
- os?: {
47152
- name?: string | null | undefined;
47153
- version?: string | null | undefined;
47154
- } | undefined;
47155
- platform?: string | null | undefined;
47156
- project_id?: string | undefined;
47157
- releases?: string[] | undefined;
47158
- sdk?: {
47159
- name?: string | null | undefined;
47160
- version?: string | null | undefined;
47161
- } | undefined;
47162
- started_at?: string | null | undefined;
47163
- tags?: unknown[] | Record<string, string[]> | undefined;
47164
- trace_ids?: string[] | undefined;
47165
- urls?: string[] | null | undefined;
47166
- clicks?: Record<string, unknown>[] | undefined;
47167
- count_warnings?: number | null | undefined;
47168
- count_infos?: number | null | undefined;
47169
- has_viewed?: boolean | undefined;
47170
- ota_updates?: {
47171
- channel?: string | null | undefined;
47172
- runtime_version?: string | null | undefined;
47173
- update_id?: string | null | undefined;
47174
- } | undefined;
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<{