rategame-shared 1.1.234 → 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.
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/models/userEvent.d.ts +3 -0
- package/dist/models/userEvent.js +2 -0
- package/dist/schemas/chat.d.ts +150 -10
- package/dist/schemas/game.d.ts +600 -40
- package/dist/schemas/list.d.ts +150 -10
- package/dist/schemas/moderation.d.ts +120 -8
- package/dist/schemas/rating.d.ts +90 -6
- package/dist/schemas/user.d.ts +171 -10
- package/dist/schemas/user.js +10 -1
- package/dist/schemas/userEvent.d.ts +83 -0
- package/dist/schemas/userEvent.js +24 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from "./schemas/chat";
|
|
|
7
7
|
export * from "./schemas/feedback";
|
|
8
8
|
export * from "./schemas/list";
|
|
9
9
|
export * from "./schemas/moderation";
|
|
10
|
+
export * from "./schemas/userEvent";
|
|
10
11
|
export * from "./models/user";
|
|
11
12
|
export * from "./models/rating";
|
|
12
13
|
export * from "./models/game";
|
|
@@ -16,4 +17,5 @@ export * from "./models/chat";
|
|
|
16
17
|
export * from "./models/feedback";
|
|
17
18
|
export * from "./models/list";
|
|
18
19
|
export * from "./models/moderation";
|
|
20
|
+
export * from "./models/userEvent";
|
|
19
21
|
export * from "./helpers/index";
|
package/dist/index.js
CHANGED
|
@@ -23,6 +23,7 @@ __exportStar(require("./schemas/chat"), exports);
|
|
|
23
23
|
__exportStar(require("./schemas/feedback"), exports);
|
|
24
24
|
__exportStar(require("./schemas/list"), exports);
|
|
25
25
|
__exportStar(require("./schemas/moderation"), exports);
|
|
26
|
+
__exportStar(require("./schemas/userEvent"), exports);
|
|
26
27
|
__exportStar(require("./models/user"), exports);
|
|
27
28
|
__exportStar(require("./models/rating"), exports);
|
|
28
29
|
__exportStar(require("./models/game"), exports);
|
|
@@ -32,4 +33,5 @@ __exportStar(require("./models/chat"), exports);
|
|
|
32
33
|
__exportStar(require("./models/feedback"), exports);
|
|
33
34
|
__exportStar(require("./models/list"), exports);
|
|
34
35
|
__exportStar(require("./models/moderation"), exports);
|
|
36
|
+
__exportStar(require("./models/userEvent"), exports);
|
|
35
37
|
__exportStar(require("./helpers/index"), exports);
|
package/dist/schemas/chat.d.ts
CHANGED
|
@@ -702,12 +702,12 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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;
|
|
@@ -1588,12 +1616,12 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1588
1616
|
longest: z.ZodNumber;
|
|
1589
1617
|
updatedAt: z.ZodNumber;
|
|
1590
1618
|
}, "strip", z.ZodTypeAny, {
|
|
1591
|
-
updatedAt: number;
|
|
1592
1619
|
current: number;
|
|
1620
|
+
updatedAt: number;
|
|
1593
1621
|
longest: number;
|
|
1594
1622
|
}, {
|
|
1595
|
-
updatedAt: number;
|
|
1596
1623
|
current: number;
|
|
1624
|
+
updatedAt: number;
|
|
1597
1625
|
longest: number;
|
|
1598
1626
|
}>>;
|
|
1599
1627
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -1700,6 +1728,22 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1700
1728
|
};
|
|
1701
1729
|
}>>;
|
|
1702
1730
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
1731
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1732
|
+
current: z.ZodNumber;
|
|
1733
|
+
target: z.ZodNumber;
|
|
1734
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1735
|
+
context: z.ZodOptional<z.ZodString>;
|
|
1736
|
+
}, "strip", z.ZodTypeAny, {
|
|
1737
|
+
target: number;
|
|
1738
|
+
current: number;
|
|
1739
|
+
label?: string | undefined;
|
|
1740
|
+
context?: string | undefined;
|
|
1741
|
+
}, {
|
|
1742
|
+
target: number;
|
|
1743
|
+
current: number;
|
|
1744
|
+
label?: string | undefined;
|
|
1745
|
+
context?: string | undefined;
|
|
1746
|
+
}>>>;
|
|
1703
1747
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1704
1748
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
1705
1749
|
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">]>>;
|
|
@@ -1725,6 +1769,12 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1725
1769
|
};
|
|
1726
1770
|
} | undefined;
|
|
1727
1771
|
currentTier?: number | undefined;
|
|
1772
|
+
oneTimeProgress?: Record<string, {
|
|
1773
|
+
target: number;
|
|
1774
|
+
current: number;
|
|
1775
|
+
label?: string | undefined;
|
|
1776
|
+
context?: string | undefined;
|
|
1777
|
+
}> | undefined;
|
|
1728
1778
|
seen?: boolean | undefined;
|
|
1729
1779
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1730
1780
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1749,6 +1799,12 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1749
1799
|
};
|
|
1750
1800
|
} | undefined;
|
|
1751
1801
|
currentTier?: number | undefined;
|
|
1802
|
+
oneTimeProgress?: Record<string, {
|
|
1803
|
+
target: number;
|
|
1804
|
+
current: number;
|
|
1805
|
+
label?: string | undefined;
|
|
1806
|
+
context?: string | undefined;
|
|
1807
|
+
}> | undefined;
|
|
1752
1808
|
seen?: boolean | undefined;
|
|
1753
1809
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1754
1810
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2530,12 +2586,12 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2530
2586
|
longest: z.ZodNumber;
|
|
2531
2587
|
updatedAt: z.ZodNumber;
|
|
2532
2588
|
}, "strip", z.ZodTypeAny, {
|
|
2533
|
-
updatedAt: number;
|
|
2534
2589
|
current: number;
|
|
2590
|
+
updatedAt: number;
|
|
2535
2591
|
longest: number;
|
|
2536
2592
|
}, {
|
|
2537
|
-
updatedAt: number;
|
|
2538
2593
|
current: number;
|
|
2594
|
+
updatedAt: number;
|
|
2539
2595
|
longest: number;
|
|
2540
2596
|
}>>;
|
|
2541
2597
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -2642,6 +2698,22 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2642
2698
|
};
|
|
2643
2699
|
}>>;
|
|
2644
2700
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
2701
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2702
|
+
current: z.ZodNumber;
|
|
2703
|
+
target: z.ZodNumber;
|
|
2704
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2705
|
+
context: z.ZodOptional<z.ZodString>;
|
|
2706
|
+
}, "strip", z.ZodTypeAny, {
|
|
2707
|
+
target: number;
|
|
2708
|
+
current: number;
|
|
2709
|
+
label?: string | undefined;
|
|
2710
|
+
context?: string | undefined;
|
|
2711
|
+
}, {
|
|
2712
|
+
target: number;
|
|
2713
|
+
current: number;
|
|
2714
|
+
label?: string | undefined;
|
|
2715
|
+
context?: string | undefined;
|
|
2716
|
+
}>>>;
|
|
2645
2717
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2646
2718
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
2647
2719
|
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">]>>;
|
|
@@ -2667,6 +2739,12 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2667
2739
|
};
|
|
2668
2740
|
} | undefined;
|
|
2669
2741
|
currentTier?: number | undefined;
|
|
2742
|
+
oneTimeProgress?: Record<string, {
|
|
2743
|
+
target: number;
|
|
2744
|
+
current: number;
|
|
2745
|
+
label?: string | undefined;
|
|
2746
|
+
context?: string | undefined;
|
|
2747
|
+
}> | undefined;
|
|
2670
2748
|
seen?: boolean | undefined;
|
|
2671
2749
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2672
2750
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2691,6 +2769,12 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2691
2769
|
};
|
|
2692
2770
|
} | undefined;
|
|
2693
2771
|
currentTier?: number | undefined;
|
|
2772
|
+
oneTimeProgress?: Record<string, {
|
|
2773
|
+
target: number;
|
|
2774
|
+
current: number;
|
|
2775
|
+
label?: string | undefined;
|
|
2776
|
+
context?: string | undefined;
|
|
2777
|
+
}> | undefined;
|
|
2694
2778
|
seen?: boolean | undefined;
|
|
2695
2779
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2696
2780
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3415,12 +3499,12 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3415
3499
|
longest: z.ZodNumber;
|
|
3416
3500
|
updatedAt: z.ZodNumber;
|
|
3417
3501
|
}, "strip", z.ZodTypeAny, {
|
|
3418
|
-
updatedAt: number;
|
|
3419
3502
|
current: number;
|
|
3503
|
+
updatedAt: number;
|
|
3420
3504
|
longest: number;
|
|
3421
3505
|
}, {
|
|
3422
|
-
updatedAt: number;
|
|
3423
3506
|
current: number;
|
|
3507
|
+
updatedAt: number;
|
|
3424
3508
|
longest: number;
|
|
3425
3509
|
}>>;
|
|
3426
3510
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -3527,6 +3611,22 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3527
3611
|
};
|
|
3528
3612
|
}>>;
|
|
3529
3613
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
3614
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3615
|
+
current: z.ZodNumber;
|
|
3616
|
+
target: z.ZodNumber;
|
|
3617
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3618
|
+
context: z.ZodOptional<z.ZodString>;
|
|
3619
|
+
}, "strip", z.ZodTypeAny, {
|
|
3620
|
+
target: number;
|
|
3621
|
+
current: number;
|
|
3622
|
+
label?: string | undefined;
|
|
3623
|
+
context?: string | undefined;
|
|
3624
|
+
}, {
|
|
3625
|
+
target: number;
|
|
3626
|
+
current: number;
|
|
3627
|
+
label?: string | undefined;
|
|
3628
|
+
context?: string | undefined;
|
|
3629
|
+
}>>>;
|
|
3530
3630
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3531
3631
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
3532
3632
|
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">]>>;
|
|
@@ -3552,6 +3652,12 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3552
3652
|
};
|
|
3553
3653
|
} | undefined;
|
|
3554
3654
|
currentTier?: number | undefined;
|
|
3655
|
+
oneTimeProgress?: Record<string, {
|
|
3656
|
+
target: number;
|
|
3657
|
+
current: number;
|
|
3658
|
+
label?: string | undefined;
|
|
3659
|
+
context?: string | undefined;
|
|
3660
|
+
}> | undefined;
|
|
3555
3661
|
seen?: boolean | undefined;
|
|
3556
3662
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3557
3663
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3576,6 +3682,12 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3576
3682
|
};
|
|
3577
3683
|
} | undefined;
|
|
3578
3684
|
currentTier?: number | undefined;
|
|
3685
|
+
oneTimeProgress?: Record<string, {
|
|
3686
|
+
target: number;
|
|
3687
|
+
current: number;
|
|
3688
|
+
label?: string | undefined;
|
|
3689
|
+
context?: string | undefined;
|
|
3690
|
+
}> | undefined;
|
|
3579
3691
|
seen?: boolean | undefined;
|
|
3580
3692
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3581
3693
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4352,12 +4464,12 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
4352
4464
|
longest: z.ZodNumber;
|
|
4353
4465
|
updatedAt: z.ZodNumber;
|
|
4354
4466
|
}, "strip", z.ZodTypeAny, {
|
|
4355
|
-
updatedAt: number;
|
|
4356
4467
|
current: number;
|
|
4468
|
+
updatedAt: number;
|
|
4357
4469
|
longest: number;
|
|
4358
4470
|
}, {
|
|
4359
|
-
updatedAt: number;
|
|
4360
4471
|
current: number;
|
|
4472
|
+
updatedAt: number;
|
|
4361
4473
|
longest: number;
|
|
4362
4474
|
}>>;
|
|
4363
4475
|
milestones: z.ZodOptional<z.ZodObject<{
|
|
@@ -4464,6 +4576,22 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
4464
4576
|
};
|
|
4465
4577
|
}>>;
|
|
4466
4578
|
currentTier: z.ZodOptional<z.ZodNumber>;
|
|
4579
|
+
oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4580
|
+
current: z.ZodNumber;
|
|
4581
|
+
target: z.ZodNumber;
|
|
4582
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4583
|
+
context: z.ZodOptional<z.ZodString>;
|
|
4584
|
+
}, "strip", z.ZodTypeAny, {
|
|
4585
|
+
target: number;
|
|
4586
|
+
current: number;
|
|
4587
|
+
label?: string | undefined;
|
|
4588
|
+
context?: string | undefined;
|
|
4589
|
+
}, {
|
|
4590
|
+
target: number;
|
|
4591
|
+
current: number;
|
|
4592
|
+
label?: string | undefined;
|
|
4593
|
+
context?: string | undefined;
|
|
4594
|
+
}>>>;
|
|
4467
4595
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4468
4596
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
4469
4597
|
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">]>>;
|
|
@@ -4489,6 +4617,12 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
4489
4617
|
};
|
|
4490
4618
|
} | undefined;
|
|
4491
4619
|
currentTier?: number | undefined;
|
|
4620
|
+
oneTimeProgress?: Record<string, {
|
|
4621
|
+
target: number;
|
|
4622
|
+
current: number;
|
|
4623
|
+
label?: string | undefined;
|
|
4624
|
+
context?: string | undefined;
|
|
4625
|
+
}> | undefined;
|
|
4492
4626
|
seen?: boolean | undefined;
|
|
4493
4627
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4494
4628
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4513,6 +4647,12 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
4513
4647
|
};
|
|
4514
4648
|
} | undefined;
|
|
4515
4649
|
currentTier?: number | undefined;
|
|
4650
|
+
oneTimeProgress?: Record<string, {
|
|
4651
|
+
target: number;
|
|
4652
|
+
current: number;
|
|
4653
|
+
label?: string | undefined;
|
|
4654
|
+
context?: string | undefined;
|
|
4655
|
+
}> | undefined;
|
|
4516
4656
|
seen?: boolean | undefined;
|
|
4517
4657
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4518
4658
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|