rategame-shared 1.1.235 → 1.1.236

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.
@@ -702,12 +702,12 @@ export declare const listSchema: z.ZodObject<{
702
702
  longest: z.ZodNumber;
703
703
  updatedAt: z.ZodNumber;
704
704
  }, "strip", z.ZodTypeAny, {
705
- updatedAt: number;
706
705
  current: number;
706
+ updatedAt: number;
707
707
  longest: number;
708
708
  }, {
709
- updatedAt: number;
710
709
  current: number;
710
+ updatedAt: number;
711
711
  longest: number;
712
712
  }>>;
713
713
  milestones: z.ZodOptional<z.ZodObject<{
@@ -814,6 +814,22 @@ export declare const listSchema: z.ZodObject<{
814
814
  };
815
815
  }>>;
816
816
  currentTier: z.ZodOptional<z.ZodNumber>;
817
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
818
+ current: z.ZodNumber;
819
+ target: z.ZodNumber;
820
+ label: z.ZodOptional<z.ZodString>;
821
+ context: z.ZodOptional<z.ZodString>;
822
+ }, "strip", z.ZodTypeAny, {
823
+ target: number;
824
+ current: number;
825
+ label?: string | undefined;
826
+ context?: string | undefined;
827
+ }, {
828
+ target: number;
829
+ current: number;
830
+ label?: string | undefined;
831
+ context?: string | undefined;
832
+ }>>>;
817
833
  seen: z.ZodOptional<z.ZodBoolean>;
818
834
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
819
835
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
@@ -839,6 +855,12 @@ export declare const listSchema: z.ZodObject<{
839
855
  };
840
856
  } | undefined;
841
857
  currentTier?: number | undefined;
858
+ oneTimeProgress?: Record<string, {
859
+ target: number;
860
+ current: number;
861
+ label?: string | undefined;
862
+ context?: string | undefined;
863
+ }> | undefined;
842
864
  seen?: boolean | undefined;
843
865
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
844
866
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -863,6 +885,12 @@ export declare const listSchema: z.ZodObject<{
863
885
  };
864
886
  } | undefined;
865
887
  currentTier?: number | undefined;
888
+ oneTimeProgress?: Record<string, {
889
+ target: number;
890
+ current: number;
891
+ label?: string | undefined;
892
+ context?: string | undefined;
893
+ }> | undefined;
866
894
  seen?: boolean | undefined;
867
895
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
868
896
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -1633,12 +1661,12 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
1633
1661
  longest: z.ZodNumber;
1634
1662
  updatedAt: z.ZodNumber;
1635
1663
  }, "strip", z.ZodTypeAny, {
1636
- updatedAt: number;
1637
1664
  current: number;
1665
+ updatedAt: number;
1638
1666
  longest: number;
1639
1667
  }, {
1640
- updatedAt: number;
1641
1668
  current: number;
1669
+ updatedAt: number;
1642
1670
  longest: number;
1643
1671
  }>>;
1644
1672
  milestones: z.ZodOptional<z.ZodObject<{
@@ -1745,6 +1773,22 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
1745
1773
  };
1746
1774
  }>>;
1747
1775
  currentTier: z.ZodOptional<z.ZodNumber>;
1776
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1777
+ current: z.ZodNumber;
1778
+ target: z.ZodNumber;
1779
+ label: z.ZodOptional<z.ZodString>;
1780
+ context: z.ZodOptional<z.ZodString>;
1781
+ }, "strip", z.ZodTypeAny, {
1782
+ target: number;
1783
+ current: number;
1784
+ label?: string | undefined;
1785
+ context?: string | undefined;
1786
+ }, {
1787
+ target: number;
1788
+ current: number;
1789
+ label?: string | undefined;
1790
+ context?: string | undefined;
1791
+ }>>>;
1748
1792
  seen: z.ZodOptional<z.ZodBoolean>;
1749
1793
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
1750
1794
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
@@ -1770,6 +1814,12 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
1770
1814
  };
1771
1815
  } | undefined;
1772
1816
  currentTier?: number | undefined;
1817
+ oneTimeProgress?: Record<string, {
1818
+ target: number;
1819
+ current: number;
1820
+ label?: string | undefined;
1821
+ context?: string | undefined;
1822
+ }> | undefined;
1773
1823
  seen?: boolean | undefined;
1774
1824
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
1775
1825
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -1794,6 +1844,12 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
1794
1844
  };
1795
1845
  } | undefined;
1796
1846
  currentTier?: number | undefined;
1847
+ oneTimeProgress?: Record<string, {
1848
+ target: number;
1849
+ current: number;
1850
+ label?: string | undefined;
1851
+ context?: string | undefined;
1852
+ }> | undefined;
1797
1853
  seen?: boolean | undefined;
1798
1854
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
1799
1855
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -2556,12 +2612,12 @@ export declare const listCommentSchema: z.ZodObject<{
2556
2612
  longest: z.ZodNumber;
2557
2613
  updatedAt: z.ZodNumber;
2558
2614
  }, "strip", z.ZodTypeAny, {
2559
- updatedAt: number;
2560
2615
  current: number;
2616
+ updatedAt: number;
2561
2617
  longest: number;
2562
2618
  }, {
2563
- updatedAt: number;
2564
2619
  current: number;
2620
+ updatedAt: number;
2565
2621
  longest: number;
2566
2622
  }>>;
2567
2623
  milestones: z.ZodOptional<z.ZodObject<{
@@ -2668,6 +2724,22 @@ export declare const listCommentSchema: z.ZodObject<{
2668
2724
  };
2669
2725
  }>>;
2670
2726
  currentTier: z.ZodOptional<z.ZodNumber>;
2727
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2728
+ current: z.ZodNumber;
2729
+ target: z.ZodNumber;
2730
+ label: z.ZodOptional<z.ZodString>;
2731
+ context: z.ZodOptional<z.ZodString>;
2732
+ }, "strip", z.ZodTypeAny, {
2733
+ target: number;
2734
+ current: number;
2735
+ label?: string | undefined;
2736
+ context?: string | undefined;
2737
+ }, {
2738
+ target: number;
2739
+ current: number;
2740
+ label?: string | undefined;
2741
+ context?: string | undefined;
2742
+ }>>>;
2671
2743
  seen: z.ZodOptional<z.ZodBoolean>;
2672
2744
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
2673
2745
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
@@ -2693,6 +2765,12 @@ export declare const listCommentSchema: z.ZodObject<{
2693
2765
  };
2694
2766
  } | undefined;
2695
2767
  currentTier?: number | undefined;
2768
+ oneTimeProgress?: Record<string, {
2769
+ target: number;
2770
+ current: number;
2771
+ label?: string | undefined;
2772
+ context?: string | undefined;
2773
+ }> | undefined;
2696
2774
  seen?: boolean | undefined;
2697
2775
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2698
2776
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -2717,6 +2795,12 @@ export declare const listCommentSchema: z.ZodObject<{
2717
2795
  };
2718
2796
  } | undefined;
2719
2797
  currentTier?: number | undefined;
2798
+ oneTimeProgress?: Record<string, {
2799
+ target: number;
2800
+ current: number;
2801
+ label?: string | undefined;
2802
+ context?: string | undefined;
2803
+ }> | undefined;
2720
2804
  seen?: boolean | undefined;
2721
2805
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2722
2806
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -3439,12 +3523,12 @@ export declare const listCommentSchema: z.ZodObject<{
3439
3523
  longest: z.ZodNumber;
3440
3524
  updatedAt: z.ZodNumber;
3441
3525
  }, "strip", z.ZodTypeAny, {
3442
- updatedAt: number;
3443
3526
  current: number;
3527
+ updatedAt: number;
3444
3528
  longest: number;
3445
3529
  }, {
3446
- updatedAt: number;
3447
3530
  current: number;
3531
+ updatedAt: number;
3448
3532
  longest: number;
3449
3533
  }>>;
3450
3534
  milestones: z.ZodOptional<z.ZodObject<{
@@ -3551,6 +3635,22 @@ export declare const listCommentSchema: z.ZodObject<{
3551
3635
  };
3552
3636
  }>>;
3553
3637
  currentTier: z.ZodOptional<z.ZodNumber>;
3638
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3639
+ current: z.ZodNumber;
3640
+ target: z.ZodNumber;
3641
+ label: z.ZodOptional<z.ZodString>;
3642
+ context: z.ZodOptional<z.ZodString>;
3643
+ }, "strip", z.ZodTypeAny, {
3644
+ target: number;
3645
+ current: number;
3646
+ label?: string | undefined;
3647
+ context?: string | undefined;
3648
+ }, {
3649
+ target: number;
3650
+ current: number;
3651
+ label?: string | undefined;
3652
+ context?: string | undefined;
3653
+ }>>>;
3554
3654
  seen: z.ZodOptional<z.ZodBoolean>;
3555
3655
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
3556
3656
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
@@ -3576,6 +3676,12 @@ export declare const listCommentSchema: z.ZodObject<{
3576
3676
  };
3577
3677
  } | undefined;
3578
3678
  currentTier?: number | undefined;
3679
+ oneTimeProgress?: Record<string, {
3680
+ target: number;
3681
+ current: number;
3682
+ label?: string | undefined;
3683
+ context?: string | undefined;
3684
+ }> | undefined;
3579
3685
  seen?: boolean | undefined;
3580
3686
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
3581
3687
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -3600,6 +3706,12 @@ export declare const listCommentSchema: z.ZodObject<{
3600
3706
  };
3601
3707
  } | undefined;
3602
3708
  currentTier?: number | undefined;
3709
+ oneTimeProgress?: Record<string, {
3710
+ target: number;
3711
+ current: number;
3712
+ label?: string | undefined;
3713
+ context?: string | undefined;
3714
+ }> | undefined;
3603
3715
  seen?: boolean | undefined;
3604
3716
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
3605
3717
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -4367,12 +4479,12 @@ export declare const listCommentLikeSchema: z.ZodObject<{
4367
4479
  longest: z.ZodNumber;
4368
4480
  updatedAt: z.ZodNumber;
4369
4481
  }, "strip", z.ZodTypeAny, {
4370
- updatedAt: number;
4371
4482
  current: number;
4483
+ updatedAt: number;
4372
4484
  longest: number;
4373
4485
  }, {
4374
- updatedAt: number;
4375
4486
  current: number;
4487
+ updatedAt: number;
4376
4488
  longest: number;
4377
4489
  }>>;
4378
4490
  milestones: z.ZodOptional<z.ZodObject<{
@@ -4479,6 +4591,22 @@ export declare const listCommentLikeSchema: z.ZodObject<{
4479
4591
  };
4480
4592
  }>>;
4481
4593
  currentTier: z.ZodOptional<z.ZodNumber>;
4594
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
4595
+ current: z.ZodNumber;
4596
+ target: z.ZodNumber;
4597
+ label: z.ZodOptional<z.ZodString>;
4598
+ context: z.ZodOptional<z.ZodString>;
4599
+ }, "strip", z.ZodTypeAny, {
4600
+ target: number;
4601
+ current: number;
4602
+ label?: string | undefined;
4603
+ context?: string | undefined;
4604
+ }, {
4605
+ target: number;
4606
+ current: number;
4607
+ label?: string | undefined;
4608
+ context?: string | undefined;
4609
+ }>>>;
4482
4610
  seen: z.ZodOptional<z.ZodBoolean>;
4483
4611
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
4484
4612
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
@@ -4504,6 +4632,12 @@ export declare const listCommentLikeSchema: z.ZodObject<{
4504
4632
  };
4505
4633
  } | undefined;
4506
4634
  currentTier?: number | undefined;
4635
+ oneTimeProgress?: Record<string, {
4636
+ target: number;
4637
+ current: number;
4638
+ label?: string | undefined;
4639
+ context?: string | undefined;
4640
+ }> | undefined;
4507
4641
  seen?: boolean | undefined;
4508
4642
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4509
4643
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -4528,6 +4662,12 @@ export declare const listCommentLikeSchema: z.ZodObject<{
4528
4662
  };
4529
4663
  } | undefined;
4530
4664
  currentTier?: number | undefined;
4665
+ oneTimeProgress?: Record<string, {
4666
+ target: number;
4667
+ current: number;
4668
+ label?: string | undefined;
4669
+ context?: string | undefined;
4670
+ }> | undefined;
4531
4671
  seen?: boolean | undefined;
4532
4672
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4533
4673
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -715,12 +715,12 @@ export declare const banInfoSchema: z.ZodObject<{
715
715
  longest: z.ZodNumber;
716
716
  updatedAt: z.ZodNumber;
717
717
  }, "strip", z.ZodTypeAny, {
718
- updatedAt: number;
719
718
  current: number;
719
+ updatedAt: number;
720
720
  longest: number;
721
721
  }, {
722
- updatedAt: number;
723
722
  current: number;
723
+ updatedAt: number;
724
724
  longest: number;
725
725
  }>>;
726
726
  milestones: z.ZodOptional<z.ZodObject<{
@@ -827,6 +827,22 @@ export declare const banInfoSchema: z.ZodObject<{
827
827
  };
828
828
  }>>;
829
829
  currentTier: z.ZodOptional<z.ZodNumber>;
830
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
831
+ current: z.ZodNumber;
832
+ target: z.ZodNumber;
833
+ label: z.ZodOptional<z.ZodString>;
834
+ context: z.ZodOptional<z.ZodString>;
835
+ }, "strip", z.ZodTypeAny, {
836
+ target: number;
837
+ current: number;
838
+ label?: string | undefined;
839
+ context?: string | undefined;
840
+ }, {
841
+ target: number;
842
+ current: number;
843
+ label?: string | undefined;
844
+ context?: string | undefined;
845
+ }>>>;
830
846
  seen: z.ZodOptional<z.ZodBoolean>;
831
847
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
832
848
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
@@ -852,6 +868,12 @@ export declare const banInfoSchema: z.ZodObject<{
852
868
  };
853
869
  } | undefined;
854
870
  currentTier?: number | undefined;
871
+ oneTimeProgress?: Record<string, {
872
+ target: number;
873
+ current: number;
874
+ label?: string | undefined;
875
+ context?: string | undefined;
876
+ }> | undefined;
855
877
  seen?: boolean | undefined;
856
878
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
857
879
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -876,6 +898,12 @@ export declare const banInfoSchema: z.ZodObject<{
876
898
  };
877
899
  } | undefined;
878
900
  currentTier?: number | undefined;
901
+ oneTimeProgress?: Record<string, {
902
+ target: number;
903
+ current: number;
904
+ label?: string | undefined;
905
+ context?: string | undefined;
906
+ }> | undefined;
879
907
  seen?: boolean | undefined;
880
908
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
881
909
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -1625,12 +1653,12 @@ export declare const bannedUserSchema: z.ZodObject<{
1625
1653
  longest: z.ZodNumber;
1626
1654
  updatedAt: z.ZodNumber;
1627
1655
  }, "strip", z.ZodTypeAny, {
1628
- updatedAt: number;
1629
1656
  current: number;
1657
+ updatedAt: number;
1630
1658
  longest: number;
1631
1659
  }, {
1632
- updatedAt: number;
1633
1660
  current: number;
1661
+ updatedAt: number;
1634
1662
  longest: number;
1635
1663
  }>>;
1636
1664
  milestones: z.ZodOptional<z.ZodObject<{
@@ -1737,6 +1765,22 @@ export declare const bannedUserSchema: z.ZodObject<{
1737
1765
  };
1738
1766
  }>>;
1739
1767
  currentTier: z.ZodOptional<z.ZodNumber>;
1768
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1769
+ current: z.ZodNumber;
1770
+ target: z.ZodNumber;
1771
+ label: z.ZodOptional<z.ZodString>;
1772
+ context: z.ZodOptional<z.ZodString>;
1773
+ }, "strip", z.ZodTypeAny, {
1774
+ target: number;
1775
+ current: number;
1776
+ label?: string | undefined;
1777
+ context?: string | undefined;
1778
+ }, {
1779
+ target: number;
1780
+ current: number;
1781
+ label?: string | undefined;
1782
+ context?: string | undefined;
1783
+ }>>>;
1740
1784
  seen: z.ZodOptional<z.ZodBoolean>;
1741
1785
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
1742
1786
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
@@ -1762,6 +1806,12 @@ export declare const bannedUserSchema: z.ZodObject<{
1762
1806
  };
1763
1807
  } | undefined;
1764
1808
  currentTier?: number | undefined;
1809
+ oneTimeProgress?: Record<string, {
1810
+ target: number;
1811
+ current: number;
1812
+ label?: string | undefined;
1813
+ context?: string | undefined;
1814
+ }> | undefined;
1765
1815
  seen?: boolean | undefined;
1766
1816
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
1767
1817
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -1786,6 +1836,12 @@ export declare const bannedUserSchema: z.ZodObject<{
1786
1836
  };
1787
1837
  } | undefined;
1788
1838
  currentTier?: number | undefined;
1839
+ oneTimeProgress?: Record<string, {
1840
+ target: number;
1841
+ current: number;
1842
+ label?: string | undefined;
1843
+ context?: string | undefined;
1844
+ }> | undefined;
1789
1845
  seen?: boolean | undefined;
1790
1846
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
1791
1847
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -2571,12 +2627,12 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
2571
2627
  longest: z.ZodNumber;
2572
2628
  updatedAt: z.ZodNumber;
2573
2629
  }, "strip", z.ZodTypeAny, {
2574
- updatedAt: number;
2575
2630
  current: number;
2631
+ updatedAt: number;
2576
2632
  longest: number;
2577
2633
  }, {
2578
- updatedAt: number;
2579
2634
  current: number;
2635
+ updatedAt: number;
2580
2636
  longest: number;
2581
2637
  }>>;
2582
2638
  milestones: z.ZodOptional<z.ZodObject<{
@@ -2683,6 +2739,22 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
2683
2739
  };
2684
2740
  }>>;
2685
2741
  currentTier: z.ZodOptional<z.ZodNumber>;
2742
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2743
+ current: z.ZodNumber;
2744
+ target: z.ZodNumber;
2745
+ label: z.ZodOptional<z.ZodString>;
2746
+ context: z.ZodOptional<z.ZodString>;
2747
+ }, "strip", z.ZodTypeAny, {
2748
+ target: number;
2749
+ current: number;
2750
+ label?: string | undefined;
2751
+ context?: string | undefined;
2752
+ }, {
2753
+ target: number;
2754
+ current: number;
2755
+ label?: string | undefined;
2756
+ context?: string | undefined;
2757
+ }>>>;
2686
2758
  seen: z.ZodOptional<z.ZodBoolean>;
2687
2759
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
2688
2760
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
@@ -2708,6 +2780,12 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
2708
2780
  };
2709
2781
  } | undefined;
2710
2782
  currentTier?: number | undefined;
2783
+ oneTimeProgress?: Record<string, {
2784
+ target: number;
2785
+ current: number;
2786
+ label?: string | undefined;
2787
+ context?: string | undefined;
2788
+ }> | undefined;
2711
2789
  seen?: boolean | undefined;
2712
2790
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2713
2791
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -2732,6 +2810,12 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
2732
2810
  };
2733
2811
  } | undefined;
2734
2812
  currentTier?: number | undefined;
2813
+ oneTimeProgress?: Record<string, {
2814
+ target: number;
2815
+ current: number;
2816
+ label?: string | undefined;
2817
+ context?: string | undefined;
2818
+ }> | undefined;
2735
2819
  seen?: boolean | undefined;
2736
2820
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2737
2821
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -3561,12 +3645,12 @@ export declare const banStatusResponseSchema: z.ZodObject<{
3561
3645
  longest: z.ZodNumber;
3562
3646
  updatedAt: z.ZodNumber;
3563
3647
  }, "strip", z.ZodTypeAny, {
3564
- updatedAt: number;
3565
3648
  current: number;
3649
+ updatedAt: number;
3566
3650
  longest: number;
3567
3651
  }, {
3568
- updatedAt: number;
3569
3652
  current: number;
3653
+ updatedAt: number;
3570
3654
  longest: number;
3571
3655
  }>>;
3572
3656
  milestones: z.ZodOptional<z.ZodObject<{
@@ -3673,6 +3757,22 @@ export declare const banStatusResponseSchema: z.ZodObject<{
3673
3757
  };
3674
3758
  }>>;
3675
3759
  currentTier: z.ZodOptional<z.ZodNumber>;
3760
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3761
+ current: z.ZodNumber;
3762
+ target: z.ZodNumber;
3763
+ label: z.ZodOptional<z.ZodString>;
3764
+ context: z.ZodOptional<z.ZodString>;
3765
+ }, "strip", z.ZodTypeAny, {
3766
+ target: number;
3767
+ current: number;
3768
+ label?: string | undefined;
3769
+ context?: string | undefined;
3770
+ }, {
3771
+ target: number;
3772
+ current: number;
3773
+ label?: string | undefined;
3774
+ context?: string | undefined;
3775
+ }>>>;
3676
3776
  seen: z.ZodOptional<z.ZodBoolean>;
3677
3777
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
3678
3778
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
@@ -3698,6 +3798,12 @@ export declare const banStatusResponseSchema: z.ZodObject<{
3698
3798
  };
3699
3799
  } | undefined;
3700
3800
  currentTier?: number | undefined;
3801
+ oneTimeProgress?: Record<string, {
3802
+ target: number;
3803
+ current: number;
3804
+ label?: string | undefined;
3805
+ context?: string | undefined;
3806
+ }> | undefined;
3701
3807
  seen?: boolean | undefined;
3702
3808
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
3703
3809
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -3722,6 +3828,12 @@ export declare const banStatusResponseSchema: z.ZodObject<{
3722
3828
  };
3723
3829
  } | undefined;
3724
3830
  currentTier?: number | undefined;
3831
+ oneTimeProgress?: Record<string, {
3832
+ target: number;
3833
+ current: number;
3834
+ label?: string | undefined;
3835
+ context?: string | undefined;
3836
+ }> | undefined;
3725
3837
  seen?: boolean | undefined;
3726
3838
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
3727
3839
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;