rategame-shared 1.1.456 → 1.1.458
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/schemas/achievementUnlockSource.d.ts +20 -0
- package/dist/schemas/achievementUnlockSource.js +23 -0
- package/dist/schemas/article.d.ts +5 -0
- package/dist/schemas/chat.d.ts +5 -0
- package/dist/schemas/experience.d.ts +4 -0
- package/dist/schemas/game.d.ts +20 -0
- package/dist/schemas/list.d.ts +5 -0
- package/dist/schemas/moderation.d.ts +4 -0
- package/dist/schemas/notification.d.ts +5 -0
- package/dist/schemas/pick.d.ts +38 -0
- package/dist/schemas/poll.d.ts +16 -0
- package/dist/schemas/rating.d.ts +9 -0
- package/dist/schemas/rating.js +1 -0
- package/dist/schemas/scorePrediction.d.ts +27 -0
- package/dist/schemas/stadium.d.ts +4 -0
- package/dist/schemas/trivia.d.ts +5 -0
- package/dist/schemas/user.d.ts +7 -0
- package/dist/schemas/user.js +1 -0
- package/dist/schemas/userEvent.d.ts +41 -0
- package/dist/schemas/userEvent.js +28 -0
- package/dist/schemas/voting.d.ts +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const achievementUnlockSourceTypeSchema: z.ZodUnion<[z.ZodLiteral<"rating">, z.ZodLiteral<"stadium_rating">, z.ZodLiteral<"experience_rating">, z.ZodLiteral<"list">, z.ZodLiteral<"pick">, z.ZodLiteral<"player_vote">, z.ZodLiteral<"comment">, z.ZodLiteral<"profile">, z.ZodLiteral<"follower">, z.ZodLiteral<"games">, z.ZodLiteral<"none">]>;
|
|
3
|
+
export declare const achievementUnlockSourceSchema: z.ZodObject<{
|
|
4
|
+
type: z.ZodUnion<[z.ZodLiteral<"rating">, z.ZodLiteral<"stadium_rating">, z.ZodLiteral<"experience_rating">, z.ZodLiteral<"list">, z.ZodLiteral<"pick">, z.ZodLiteral<"player_vote">, z.ZodLiteral<"comment">, z.ZodLiteral<"profile">, z.ZodLiteral<"follower">, z.ZodLiteral<"games">, z.ZodLiteral<"none">]>;
|
|
5
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6
|
+
gameId: z.ZodOptional<z.ZodString>;
|
|
7
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
type: "none" | "pick" | "rating" | "comment" | "games" | "profile" | "list" | "stadium_rating" | "experience_rating" | "player_vote" | "follower";
|
|
10
|
+
id?: string | undefined;
|
|
11
|
+
metadata?: Record<string, unknown> | undefined;
|
|
12
|
+
gameId?: string | undefined;
|
|
13
|
+
}, {
|
|
14
|
+
type: "none" | "pick" | "rating" | "comment" | "games" | "profile" | "list" | "stadium_rating" | "experience_rating" | "player_vote" | "follower";
|
|
15
|
+
id?: string | undefined;
|
|
16
|
+
metadata?: Record<string, unknown> | undefined;
|
|
17
|
+
gameId?: string | undefined;
|
|
18
|
+
}>;
|
|
19
|
+
export type AchievementUnlockSourceType = z.infer<typeof achievementUnlockSourceTypeSchema>;
|
|
20
|
+
export type AchievementUnlockSource = z.infer<typeof achievementUnlockSourceSchema>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.achievementUnlockSourceSchema = exports.achievementUnlockSourceTypeSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
exports.achievementUnlockSourceTypeSchema = (0, zod_1.union)([
|
|
6
|
+
(0, zod_1.literal)("rating"),
|
|
7
|
+
(0, zod_1.literal)("stadium_rating"),
|
|
8
|
+
(0, zod_1.literal)("experience_rating"),
|
|
9
|
+
(0, zod_1.literal)("list"),
|
|
10
|
+
(0, zod_1.literal)("pick"),
|
|
11
|
+
(0, zod_1.literal)("player_vote"),
|
|
12
|
+
(0, zod_1.literal)("comment"),
|
|
13
|
+
(0, zod_1.literal)("profile"),
|
|
14
|
+
(0, zod_1.literal)("follower"),
|
|
15
|
+
(0, zod_1.literal)("games"),
|
|
16
|
+
(0, zod_1.literal)("none"),
|
|
17
|
+
]);
|
|
18
|
+
exports.achievementUnlockSourceSchema = (0, zod_1.object)({
|
|
19
|
+
type: exports.achievementUnlockSourceTypeSchema,
|
|
20
|
+
id: (0, zod_1.string)().optional(),
|
|
21
|
+
gameId: (0, zod_1.string)().optional(),
|
|
22
|
+
metadata: (0, zod_1.record)((0, zod_1.string)(), zod_1.z.unknown()).optional(),
|
|
23
|
+
});
|
|
@@ -1294,6 +1294,7 @@ export declare const articleSchema: z.ZodObject<{
|
|
|
1294
1294
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1295
1295
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
1296
1296
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
1297
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
1297
1298
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1298
1299
|
id: string;
|
|
1299
1300
|
email: string;
|
|
@@ -2612,6 +2613,7 @@ export declare const createArticleSchema: z.ZodObject<{
|
|
|
2612
2613
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
2613
2614
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
2614
2615
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
2616
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
2615
2617
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
2616
2618
|
id: string;
|
|
2617
2619
|
email: string;
|
|
@@ -3984,6 +3986,7 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
3984
3986
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3985
3987
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
3986
3988
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
3989
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
3987
3990
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
3988
3991
|
id: string;
|
|
3989
3992
|
email: string;
|
|
@@ -5170,6 +5173,7 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
5170
5173
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
5171
5174
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
5172
5175
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
5176
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
5173
5177
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
5174
5178
|
id: string;
|
|
5175
5179
|
email: string;
|
|
@@ -6408,6 +6412,7 @@ export declare const articleThreadCommentLikeSchema: z.ZodObject<{
|
|
|
6408
6412
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
6409
6413
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
6410
6414
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
6415
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
6411
6416
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
6412
6417
|
id: string;
|
|
6413
6418
|
email: string;
|
package/dist/schemas/chat.d.ts
CHANGED
|
@@ -1173,6 +1173,7 @@ export declare const chatMessageSchema: z.ZodObject<{
|
|
|
1173
1173
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1174
1174
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
1175
1175
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
1176
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
1176
1177
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1177
1178
|
id: string;
|
|
1178
1179
|
email: string;
|
|
@@ -2361,6 +2362,7 @@ export declare const chatMessageSchema: z.ZodObject<{
|
|
|
2361
2362
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
2362
2363
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
2363
2364
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
2365
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
2364
2366
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
2365
2367
|
id: string;
|
|
2366
2368
|
email: string;
|
|
@@ -3608,6 +3610,7 @@ export declare const communityChatMessageSchema: z.ZodObject<{
|
|
|
3608
3610
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3609
3611
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
3610
3612
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
3613
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
3611
3614
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
3612
3615
|
id: string;
|
|
3613
3616
|
email: string;
|
|
@@ -4795,6 +4798,7 @@ export declare const communityChatMessageSchema: z.ZodObject<{
|
|
|
4795
4798
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
4796
4799
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
4797
4800
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
4801
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
4798
4802
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4799
4803
|
id: string;
|
|
4800
4804
|
email: string;
|
|
@@ -6036,6 +6040,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
6036
6040
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
6037
6041
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
6038
6042
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
6043
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
6039
6044
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
6040
6045
|
id: string;
|
|
6041
6046
|
email: string;
|
|
@@ -1312,6 +1312,7 @@ export declare const experienceRatingSchema: z.ZodObject<{
|
|
|
1312
1312
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1313
1313
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
1314
1314
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
1315
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
1315
1316
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1316
1317
|
id: string;
|
|
1317
1318
|
email: string;
|
|
@@ -2755,6 +2756,7 @@ export declare const createExperienceRatingSchema: z.ZodObject<{
|
|
|
2755
2756
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
2756
2757
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
2757
2758
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
2759
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
2758
2760
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
2759
2761
|
id: string;
|
|
2760
2762
|
email: string;
|
|
@@ -4131,6 +4133,7 @@ export declare const experienceThreadCommentSchema: z.ZodObject<{
|
|
|
4131
4133
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
4132
4134
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
4133
4135
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
4136
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
4134
4137
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4135
4138
|
id: string;
|
|
4136
4139
|
email: string;
|
|
@@ -5314,6 +5317,7 @@ export declare const experienceThreadCommentSchema: z.ZodObject<{
|
|
|
5314
5317
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
5315
5318
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
5316
5319
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
5320
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
5317
5321
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
5318
5322
|
id: string;
|
|
5319
5323
|
email: string;
|
package/dist/schemas/game.d.ts
CHANGED
|
@@ -4493,6 +4493,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4493
4493
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
4494
4494
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
4495
4495
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
4496
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
4496
4497
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4497
4498
|
id: string;
|
|
4498
4499
|
email: string;
|
|
@@ -7196,6 +7197,7 @@ export declare const basketballGameSchema: z.ZodObject<{
|
|
|
7196
7197
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
7197
7198
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
7198
7199
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
7200
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
7199
7201
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
7200
7202
|
id: string;
|
|
7201
7203
|
email: string;
|
|
@@ -9960,6 +9962,7 @@ export declare const mlbGameSchema: z.ZodObject<{
|
|
|
9960
9962
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
9961
9963
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
9962
9964
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
9965
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
9963
9966
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
9964
9967
|
id: string;
|
|
9965
9968
|
email: string;
|
|
@@ -12633,6 +12636,7 @@ export declare const footballGameSchema: z.ZodObject<{
|
|
|
12633
12636
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
12634
12637
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
12635
12638
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
12639
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
12636
12640
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
12637
12641
|
id: string;
|
|
12638
12642
|
email: string;
|
|
@@ -15499,6 +15503,7 @@ export declare const nflGameSchema: z.ZodObject<{
|
|
|
15499
15503
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
15500
15504
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
15501
15505
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
15506
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
15502
15507
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
15503
15508
|
id: string;
|
|
15504
15509
|
email: string;
|
|
@@ -18325,6 +18330,7 @@ export declare const cfbGameSchema: z.ZodObject<{
|
|
|
18325
18330
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
18326
18331
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
18327
18332
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
18333
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
18328
18334
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
18329
18335
|
id: string;
|
|
18330
18336
|
email: string;
|
|
@@ -21134,6 +21140,7 @@ export declare const nhlGameSchema: z.ZodObject<{
|
|
|
21134
21140
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
21135
21141
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
21136
21142
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
21143
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
21137
21144
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
21138
21145
|
id: string;
|
|
21139
21146
|
email: string;
|
|
@@ -23857,6 +23864,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23857
23864
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
23858
23865
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
23859
23866
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
23867
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
23860
23868
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
23861
23869
|
id: string;
|
|
23862
23870
|
email: string;
|
|
@@ -26607,6 +26615,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26607
26615
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
26608
26616
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
26609
26617
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
26618
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
26610
26619
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
26611
26620
|
id: string;
|
|
26612
26621
|
email: string;
|
|
@@ -29279,6 +29288,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
29279
29288
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
29280
29289
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
29281
29290
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
29291
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
29282
29292
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
29283
29293
|
id: string;
|
|
29284
29294
|
email: string;
|
|
@@ -32144,6 +32154,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
32144
32154
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
32145
32155
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
32146
32156
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
32157
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
32147
32158
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
32148
32159
|
id: string;
|
|
32149
32160
|
email: string;
|
|
@@ -34969,6 +34980,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
34969
34980
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
34970
34981
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
34971
34982
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
34983
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
34972
34984
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
34973
34985
|
id: string;
|
|
34974
34986
|
email: string;
|
|
@@ -37777,6 +37789,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
37777
37789
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
37778
37790
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
37779
37791
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
37792
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
37780
37793
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
37781
37794
|
id: string;
|
|
37782
37795
|
email: string;
|
|
@@ -40574,6 +40587,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40574
40587
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
40575
40588
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
40576
40589
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
40590
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
40577
40591
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
40578
40592
|
id: string;
|
|
40579
40593
|
email: string;
|
|
@@ -43324,6 +43338,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43324
43338
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
43325
43339
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
43326
43340
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
43341
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
43327
43342
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
43328
43343
|
id: string;
|
|
43329
43344
|
email: string;
|
|
@@ -45996,6 +46011,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45996
46011
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
45997
46012
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
45998
46013
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
46014
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
45999
46015
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
46000
46016
|
id: string;
|
|
46001
46017
|
email: string;
|
|
@@ -48861,6 +48877,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48861
48877
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
48862
48878
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
48863
48879
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
48880
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
48864
48881
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
48865
48882
|
id: string;
|
|
48866
48883
|
email: string;
|
|
@@ -51686,6 +51703,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51686
51703
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
51687
51704
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
51688
51705
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
51706
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
51689
51707
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
51690
51708
|
id: string;
|
|
51691
51709
|
email: string;
|
|
@@ -54494,6 +54512,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54494
54512
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
54495
54513
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
54496
54514
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
54515
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
54497
54516
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
54498
54517
|
id: string;
|
|
54499
54518
|
email: string;
|
|
@@ -56136,6 +56155,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
56136
56155
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
56137
56156
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
56138
56157
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
56158
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
56139
56159
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
56140
56160
|
id: string;
|
|
56141
56161
|
email: string;
|
package/dist/schemas/list.d.ts
CHANGED
|
@@ -1173,6 +1173,7 @@ export declare const listSchema: z.ZodObject<{
|
|
|
1173
1173
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1174
1174
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
1175
1175
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
1176
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
1176
1177
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1177
1178
|
id: string;
|
|
1178
1179
|
email: string;
|
|
@@ -2407,6 +2408,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2407
2408
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
2408
2409
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
2409
2410
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
2411
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
2410
2412
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
2411
2413
|
id: string;
|
|
2412
2414
|
email: string;
|
|
@@ -3632,6 +3634,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3632
3634
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3633
3635
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
3634
3636
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
3637
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
3635
3638
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
3636
3639
|
id: string;
|
|
3637
3640
|
email: string;
|
|
@@ -4815,6 +4818,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4815
4818
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
4816
4819
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
4817
4820
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
4821
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
4818
4822
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4819
4823
|
id: string;
|
|
4820
4824
|
email: string;
|
|
@@ -6043,6 +6047,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
6043
6047
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
6044
6048
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
6045
6049
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
6050
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
6046
6051
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
6047
6052
|
id: string;
|
|
6048
6053
|
email: string;
|
|
@@ -1185,6 +1185,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
1185
1185
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1186
1186
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
1187
1187
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
1188
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
1188
1189
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1189
1190
|
id: string;
|
|
1190
1191
|
email: string;
|
|
@@ -2395,6 +2396,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2395
2396
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
2396
2397
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
2397
2398
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
2399
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
2398
2400
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
2399
2401
|
id: string;
|
|
2400
2402
|
email: string;
|
|
@@ -3641,6 +3643,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3641
3643
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3642
3644
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
3643
3645
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
3646
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
3644
3647
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
3645
3648
|
id: string;
|
|
3646
3649
|
email: string;
|
|
@@ -4931,6 +4934,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4931
4934
|
reactivationNotificationsSent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
4932
4935
|
initialTab: z.ZodOptional<z.ZodString>;
|
|
4933
4936
|
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
4937
|
+
worldCupRatingsListCreated: z.ZodOptional<z.ZodBoolean>;
|
|
4934
4938
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4935
4939
|
id: string;
|
|
4936
4940
|
email: string;
|
|
@@ -290,6 +290,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
290
290
|
edited: z.ZodOptional<z.ZodBoolean>;
|
|
291
291
|
category: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"watched">, z.ZodLiteral<"attended">, z.ZodLiteral<"highlights">, z.ZodLiteral<"listened">, z.ZodLiteral<"partiallyWatched">]>>;
|
|
292
292
|
userLocation: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
293
|
+
locationVerified: z.ZodOptional<z.ZodBoolean>;
|
|
293
294
|
pick: z.ZodOptional<z.ZodObject<{
|
|
294
295
|
id: z.ZodString;
|
|
295
296
|
team: z.ZodObject<{
|
|
@@ -521,6 +522,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
521
522
|
edited?: boolean | undefined;
|
|
522
523
|
category?: "watched" | "attended" | "highlights" | "listened" | "partiallyWatched" | undefined;
|
|
523
524
|
userLocation?: string | null | undefined;
|
|
525
|
+
locationVerified?: boolean | undefined;
|
|
524
526
|
events?: {
|
|
525
527
|
id: string;
|
|
526
528
|
eventType: "streak" | "achievement" | "rating_milestone";
|
|
@@ -630,6 +632,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
630
632
|
edited?: boolean | undefined;
|
|
631
633
|
category?: "watched" | "attended" | "highlights" | "listened" | "partiallyWatched" | undefined;
|
|
632
634
|
userLocation?: string | null | undefined;
|
|
635
|
+
locationVerified?: boolean | undefined;
|
|
633
636
|
events?: {
|
|
634
637
|
id: string;
|
|
635
638
|
eventType: "streak" | "achievement" | "rating_milestone";
|
|
@@ -756,6 +759,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
756
759
|
edited?: boolean | undefined;
|
|
757
760
|
category?: "watched" | "attended" | "highlights" | "listened" | "partiallyWatched" | undefined;
|
|
758
761
|
userLocation?: string | null | undefined;
|
|
762
|
+
locationVerified?: boolean | undefined;
|
|
759
763
|
events?: {
|
|
760
764
|
id: string;
|
|
761
765
|
eventType: "streak" | "achievement" | "rating_milestone";
|
|
@@ -883,6 +887,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
883
887
|
edited?: boolean | undefined;
|
|
884
888
|
category?: "watched" | "attended" | "highlights" | "listened" | "partiallyWatched" | undefined;
|
|
885
889
|
userLocation?: string | null | undefined;
|
|
890
|
+
locationVerified?: boolean | undefined;
|
|
886
891
|
events?: {
|
|
887
892
|
id: string;
|
|
888
893
|
eventType: "streak" | "achievement" | "rating_milestone";
|