rategame-shared 1.1.193 → 1.1.195
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/helpers/index.d.ts +1 -1
- package/dist/helpers/index.js +1 -0
- package/dist/schemas/game.d.ts +89 -0
- package/dist/schemas/game.js +1 -0
- package/dist/schemas/list.d.ts +5 -0
- package/dist/schemas/notification.d.ts +5 -0
- package/dist/schemas/rating.d.ts +9 -0
- package/dist/schemas/rating.js +1 -0
- package/dist/schemas/user.d.ts +7 -0
- package/dist/schemas/user.js +1 -0
- package/package.json +1 -1
package/dist/helpers/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { timeFilterSchema } from "../schemas/sharedTypes";
|
|
|
4
4
|
import { Achievement } from "../models/user";
|
|
5
5
|
import { achievementId } from "../schemas/user";
|
|
6
6
|
export declare const firestoreTimestampSchema: z.ZodType<Timestamp, z.ZodTypeDef, Timestamp>;
|
|
7
|
-
type LeagueSlug = "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "mls" | "cbb" | "cfb" | "epl";
|
|
7
|
+
type LeagueSlug = "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "mls" | "cbb" | "cfb" | "epl" | "wnba";
|
|
8
8
|
export declare const urlPrefixMap: Record<LeagueSlug, string>;
|
|
9
9
|
export type TimeFilter = z.infer<typeof timeFilterSchema>;
|
|
10
10
|
export type MilestoneType = "streaks" | "ratings";
|
package/dist/helpers/index.js
CHANGED
package/dist/schemas/game.d.ts
CHANGED
|
@@ -4020,6 +4020,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4020
4020
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
4021
4021
|
}>>>;
|
|
4022
4022
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
4023
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
4023
4024
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4024
4025
|
id: string;
|
|
4025
4026
|
email: string;
|
|
@@ -4058,6 +4059,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4058
4059
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
4059
4060
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
4060
4061
|
allCities: z.ZodOptional<z.ZodString>;
|
|
4062
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
4061
4063
|
}, "strip", z.ZodTypeAny, {
|
|
4062
4064
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
4063
4065
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -4235,6 +4237,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4235
4237
|
allTeams?: string | undefined;
|
|
4236
4238
|
allSchools?: string | undefined;
|
|
4237
4239
|
allCities?: string | undefined;
|
|
4240
|
+
listCount?: number | undefined;
|
|
4238
4241
|
}, {
|
|
4239
4242
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
4240
4243
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -4412,6 +4415,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4412
4415
|
allTeams?: string | undefined;
|
|
4413
4416
|
allSchools?: string | undefined;
|
|
4414
4417
|
allCities?: string | undefined;
|
|
4418
|
+
listCount?: number | undefined;
|
|
4415
4419
|
}>;
|
|
4416
4420
|
export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
4417
4421
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6230,6 +6234,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6230
6234
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
6231
6235
|
}>>>;
|
|
6232
6236
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
6237
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
6233
6238
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
6234
6239
|
id: string;
|
|
6235
6240
|
email: string;
|
|
@@ -6268,6 +6273,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6268
6273
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
6269
6274
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
6270
6275
|
allCities: z.ZodOptional<z.ZodString>;
|
|
6276
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
6271
6277
|
}, {
|
|
6272
6278
|
round: z.ZodNumber;
|
|
6273
6279
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -6478,6 +6484,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6478
6484
|
allTeams?: string | undefined;
|
|
6479
6485
|
allSchools?: string | undefined;
|
|
6480
6486
|
allCities?: string | undefined;
|
|
6487
|
+
listCount?: number | undefined;
|
|
6481
6488
|
totalMinutesRemaining?: number | undefined;
|
|
6482
6489
|
period?: string | undefined;
|
|
6483
6490
|
}, {
|
|
@@ -6668,6 +6675,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6668
6675
|
allTeams?: string | undefined;
|
|
6669
6676
|
allSchools?: string | undefined;
|
|
6670
6677
|
allCities?: string | undefined;
|
|
6678
|
+
listCount?: number | undefined;
|
|
6671
6679
|
totalMinutesRemaining?: number | undefined;
|
|
6672
6680
|
period?: string | undefined;
|
|
6673
6681
|
}>;
|
|
@@ -8501,6 +8509,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8501
8509
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
8502
8510
|
}>>>;
|
|
8503
8511
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
8512
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
8504
8513
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
8505
8514
|
id: string;
|
|
8506
8515
|
email: string;
|
|
@@ -8539,6 +8548,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8539
8548
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
8540
8549
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
8541
8550
|
allCities: z.ZodOptional<z.ZodString>;
|
|
8551
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
8542
8552
|
}, {
|
|
8543
8553
|
totalInningsRemaining: z.ZodNumber;
|
|
8544
8554
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -8759,6 +8769,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8759
8769
|
allTeams?: string | undefined;
|
|
8760
8770
|
allSchools?: string | undefined;
|
|
8761
8771
|
allCities?: string | undefined;
|
|
8772
|
+
listCount?: number | undefined;
|
|
8762
8773
|
inningHalf?: "T" | "B" | undefined;
|
|
8763
8774
|
savingPitcher?: string | undefined;
|
|
8764
8775
|
outs?: number | undefined;
|
|
@@ -8956,6 +8967,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8956
8967
|
allTeams?: string | undefined;
|
|
8957
8968
|
allSchools?: string | undefined;
|
|
8958
8969
|
allCities?: string | undefined;
|
|
8970
|
+
listCount?: number | undefined;
|
|
8959
8971
|
inningHalf?: "T" | "B" | undefined;
|
|
8960
8972
|
savingPitcher?: string | undefined;
|
|
8961
8973
|
outs?: number | undefined;
|
|
@@ -10780,6 +10792,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10780
10792
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
10781
10793
|
}>>>;
|
|
10782
10794
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
10795
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
10783
10796
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
10784
10797
|
id: string;
|
|
10785
10798
|
email: string;
|
|
@@ -10818,6 +10831,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10818
10831
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
10819
10832
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
10820
10833
|
allCities: z.ZodOptional<z.ZodString>;
|
|
10834
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
10821
10835
|
}, {
|
|
10822
10836
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
10823
10837
|
week: z.ZodNumber;
|
|
@@ -11131,6 +11145,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11131
11145
|
allTeams?: string | undefined;
|
|
11132
11146
|
allSchools?: string | undefined;
|
|
11133
11147
|
allCities?: string | undefined;
|
|
11148
|
+
listCount?: number | undefined;
|
|
11134
11149
|
}, {
|
|
11135
11150
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
11136
11151
|
week: number;
|
|
@@ -11323,6 +11338,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11323
11338
|
allTeams?: string | undefined;
|
|
11324
11339
|
allSchools?: string | undefined;
|
|
11325
11340
|
allCities?: string | undefined;
|
|
11341
|
+
listCount?: number | undefined;
|
|
11326
11342
|
}>;
|
|
11327
11343
|
export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
11328
11344
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13141,6 +13157,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13141
13157
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
13142
13158
|
}>>>;
|
|
13143
13159
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
13160
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
13144
13161
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
13145
13162
|
id: string;
|
|
13146
13163
|
email: string;
|
|
@@ -13179,6 +13196,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13179
13196
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
13180
13197
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
13181
13198
|
allCities: z.ZodOptional<z.ZodString>;
|
|
13199
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
13182
13200
|
}, {
|
|
13183
13201
|
possession: z.ZodNullable<z.ZodString>;
|
|
13184
13202
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -13436,6 +13454,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13436
13454
|
allTeams?: string | undefined;
|
|
13437
13455
|
allSchools?: string | undefined;
|
|
13438
13456
|
allCities?: string | undefined;
|
|
13457
|
+
listCount?: number | undefined;
|
|
13439
13458
|
stadium?: {
|
|
13440
13459
|
StadiumID: number;
|
|
13441
13460
|
Name: string;
|
|
@@ -13646,6 +13665,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13646
13665
|
allTeams?: string | undefined;
|
|
13647
13666
|
allSchools?: string | undefined;
|
|
13648
13667
|
allCities?: string | undefined;
|
|
13668
|
+
listCount?: number | undefined;
|
|
13649
13669
|
stadium?: {
|
|
13650
13670
|
StadiumID: number;
|
|
13651
13671
|
Name: string;
|
|
@@ -15476,6 +15496,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15476
15496
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
15477
15497
|
}>>>;
|
|
15478
15498
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
15499
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
15479
15500
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
15480
15501
|
id: string;
|
|
15481
15502
|
email: string;
|
|
@@ -15514,6 +15535,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15514
15535
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
15515
15536
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
15516
15537
|
allCities: z.ZodOptional<z.ZodString>;
|
|
15538
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
15517
15539
|
}, {
|
|
15518
15540
|
possession: z.ZodNullable<z.ZodString>;
|
|
15519
15541
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -15762,6 +15784,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15762
15784
|
allTeams?: string | undefined;
|
|
15763
15785
|
allSchools?: string | undefined;
|
|
15764
15786
|
allCities?: string | undefined;
|
|
15787
|
+
listCount?: number | undefined;
|
|
15765
15788
|
stadium?: {
|
|
15766
15789
|
StadiumID: number;
|
|
15767
15790
|
Name: string;
|
|
@@ -15965,6 +15988,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15965
15988
|
allTeams?: string | undefined;
|
|
15966
15989
|
allSchools?: string | undefined;
|
|
15967
15990
|
allCities?: string | undefined;
|
|
15991
|
+
listCount?: number | undefined;
|
|
15968
15992
|
stadium?: {
|
|
15969
15993
|
StadiumID: number;
|
|
15970
15994
|
Name: string;
|
|
@@ -17793,6 +17817,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17793
17817
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
17794
17818
|
}>>>;
|
|
17795
17819
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
17820
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
17796
17821
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
17797
17822
|
id: string;
|
|
17798
17823
|
email: string;
|
|
@@ -17831,6 +17856,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17831
17856
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
17832
17857
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
17833
17858
|
allCities: z.ZodOptional<z.ZodString>;
|
|
17859
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
17834
17860
|
}, {
|
|
17835
17861
|
seasonType: z.ZodNumber;
|
|
17836
17862
|
season: z.ZodString;
|
|
@@ -18022,6 +18048,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18022
18048
|
allTeams?: string | undefined;
|
|
18023
18049
|
allSchools?: string | undefined;
|
|
18024
18050
|
allCities?: string | undefined;
|
|
18051
|
+
listCount?: number | undefined;
|
|
18025
18052
|
}, {
|
|
18026
18053
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
18027
18054
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -18205,6 +18232,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18205
18232
|
allTeams?: string | undefined;
|
|
18206
18233
|
allSchools?: string | undefined;
|
|
18207
18234
|
allCities?: string | undefined;
|
|
18235
|
+
listCount?: number | undefined;
|
|
18208
18236
|
}>;
|
|
18209
18237
|
export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
18210
18238
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -20023,6 +20051,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20023
20051
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
20024
20052
|
}>>>;
|
|
20025
20053
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
20054
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
20026
20055
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
20027
20056
|
id: string;
|
|
20028
20057
|
email: string;
|
|
@@ -20061,6 +20090,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20061
20090
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
20062
20091
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
20063
20092
|
allCities: z.ZodOptional<z.ZodString>;
|
|
20093
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
20064
20094
|
}, {
|
|
20065
20095
|
round: z.ZodNumber;
|
|
20066
20096
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -20271,6 +20301,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20271
20301
|
allTeams?: string | undefined;
|
|
20272
20302
|
allSchools?: string | undefined;
|
|
20273
20303
|
allCities?: string | undefined;
|
|
20304
|
+
listCount?: number | undefined;
|
|
20274
20305
|
totalMinutesRemaining?: number | undefined;
|
|
20275
20306
|
period?: string | undefined;
|
|
20276
20307
|
}, {
|
|
@@ -20461,6 +20492,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20461
20492
|
allTeams?: string | undefined;
|
|
20462
20493
|
allSchools?: string | undefined;
|
|
20463
20494
|
allCities?: string | undefined;
|
|
20495
|
+
listCount?: number | undefined;
|
|
20464
20496
|
totalMinutesRemaining?: number | undefined;
|
|
20465
20497
|
period?: string | undefined;
|
|
20466
20498
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -22280,6 +22312,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22280
22312
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
22281
22313
|
}>>>;
|
|
22282
22314
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
22315
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
22283
22316
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
22284
22317
|
id: string;
|
|
22285
22318
|
email: string;
|
|
@@ -22318,6 +22351,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22318
22351
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
22319
22352
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
22320
22353
|
allCities: z.ZodOptional<z.ZodString>;
|
|
22354
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
22321
22355
|
}, {
|
|
22322
22356
|
totalInningsRemaining: z.ZodNumber;
|
|
22323
22357
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -22538,6 +22572,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22538
22572
|
allTeams?: string | undefined;
|
|
22539
22573
|
allSchools?: string | undefined;
|
|
22540
22574
|
allCities?: string | undefined;
|
|
22575
|
+
listCount?: number | undefined;
|
|
22541
22576
|
inningHalf?: "T" | "B" | undefined;
|
|
22542
22577
|
savingPitcher?: string | undefined;
|
|
22543
22578
|
outs?: number | undefined;
|
|
@@ -22735,6 +22770,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22735
22770
|
allTeams?: string | undefined;
|
|
22736
22771
|
allSchools?: string | undefined;
|
|
22737
22772
|
allCities?: string | undefined;
|
|
22773
|
+
listCount?: number | undefined;
|
|
22738
22774
|
inningHalf?: "T" | "B" | undefined;
|
|
22739
22775
|
savingPitcher?: string | undefined;
|
|
22740
22776
|
outs?: number | undefined;
|
|
@@ -24558,6 +24594,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24558
24594
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
24559
24595
|
}>>>;
|
|
24560
24596
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
24597
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
24561
24598
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
24562
24599
|
id: string;
|
|
24563
24600
|
email: string;
|
|
@@ -24596,6 +24633,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24596
24633
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
24597
24634
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
24598
24635
|
allCities: z.ZodOptional<z.ZodString>;
|
|
24636
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
24599
24637
|
}, {
|
|
24600
24638
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
24601
24639
|
week: z.ZodNumber;
|
|
@@ -24909,6 +24947,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24909
24947
|
allTeams?: string | undefined;
|
|
24910
24948
|
allSchools?: string | undefined;
|
|
24911
24949
|
allCities?: string | undefined;
|
|
24950
|
+
listCount?: number | undefined;
|
|
24912
24951
|
}, {
|
|
24913
24952
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
24914
24953
|
week: number;
|
|
@@ -25101,6 +25140,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25101
25140
|
allTeams?: string | undefined;
|
|
25102
25141
|
allSchools?: string | undefined;
|
|
25103
25142
|
allCities?: string | undefined;
|
|
25143
|
+
listCount?: number | undefined;
|
|
25104
25144
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
25105
25145
|
id: z.ZodOptional<z.ZodString>;
|
|
25106
25146
|
status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">, z.ZodLiteral<"postponed">, z.ZodLiteral<"canceled">]>;
|
|
@@ -26918,6 +26958,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26918
26958
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
26919
26959
|
}>>>;
|
|
26920
26960
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
26961
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
26921
26962
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
26922
26963
|
id: string;
|
|
26923
26964
|
email: string;
|
|
@@ -26956,6 +26997,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26956
26997
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
26957
26998
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
26958
26999
|
allCities: z.ZodOptional<z.ZodString>;
|
|
27000
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
26959
27001
|
}, {
|
|
26960
27002
|
possession: z.ZodNullable<z.ZodString>;
|
|
26961
27003
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -27213,6 +27255,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27213
27255
|
allTeams?: string | undefined;
|
|
27214
27256
|
allSchools?: string | undefined;
|
|
27215
27257
|
allCities?: string | undefined;
|
|
27258
|
+
listCount?: number | undefined;
|
|
27216
27259
|
stadium?: {
|
|
27217
27260
|
StadiumID: number;
|
|
27218
27261
|
Name: string;
|
|
@@ -27423,6 +27466,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27423
27466
|
allTeams?: string | undefined;
|
|
27424
27467
|
allSchools?: string | undefined;
|
|
27425
27468
|
allCities?: string | undefined;
|
|
27469
|
+
listCount?: number | undefined;
|
|
27426
27470
|
stadium?: {
|
|
27427
27471
|
StadiumID: number;
|
|
27428
27472
|
Name: string;
|
|
@@ -29252,6 +29296,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29252
29296
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
29253
29297
|
}>>>;
|
|
29254
29298
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
29299
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
29255
29300
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
29256
29301
|
id: string;
|
|
29257
29302
|
email: string;
|
|
@@ -29290,6 +29335,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29290
29335
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
29291
29336
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
29292
29337
|
allCities: z.ZodOptional<z.ZodString>;
|
|
29338
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
29293
29339
|
}, {
|
|
29294
29340
|
possession: z.ZodNullable<z.ZodString>;
|
|
29295
29341
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -29538,6 +29584,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29538
29584
|
allTeams?: string | undefined;
|
|
29539
29585
|
allSchools?: string | undefined;
|
|
29540
29586
|
allCities?: string | undefined;
|
|
29587
|
+
listCount?: number | undefined;
|
|
29541
29588
|
stadium?: {
|
|
29542
29589
|
StadiumID: number;
|
|
29543
29590
|
Name: string;
|
|
@@ -29741,6 +29788,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29741
29788
|
allTeams?: string | undefined;
|
|
29742
29789
|
allSchools?: string | undefined;
|
|
29743
29790
|
allCities?: string | undefined;
|
|
29791
|
+
listCount?: number | undefined;
|
|
29744
29792
|
stadium?: {
|
|
29745
29793
|
StadiumID: number;
|
|
29746
29794
|
Name: string;
|
|
@@ -31568,6 +31616,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31568
31616
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
31569
31617
|
}>>>;
|
|
31570
31618
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
31619
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
31571
31620
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
31572
31621
|
id: string;
|
|
31573
31622
|
email: string;
|
|
@@ -31606,6 +31655,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31606
31655
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
31607
31656
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
31608
31657
|
allCities: z.ZodOptional<z.ZodString>;
|
|
31658
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
31609
31659
|
}, {
|
|
31610
31660
|
seasonType: z.ZodNumber;
|
|
31611
31661
|
season: z.ZodString;
|
|
@@ -31797,6 +31847,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31797
31847
|
allTeams?: string | undefined;
|
|
31798
31848
|
allSchools?: string | undefined;
|
|
31799
31849
|
allCities?: string | undefined;
|
|
31850
|
+
listCount?: number | undefined;
|
|
31800
31851
|
}, {
|
|
31801
31852
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
31802
31853
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -31980,6 +32031,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31980
32031
|
allTeams?: string | undefined;
|
|
31981
32032
|
allSchools?: string | undefined;
|
|
31982
32033
|
allCities?: string | undefined;
|
|
32034
|
+
listCount?: number | undefined;
|
|
31983
32035
|
}>]>;
|
|
31984
32036
|
export declare const searchGameSchema: z.ZodObject<{
|
|
31985
32037
|
q: z.ZodOptional<z.ZodString>;
|
|
@@ -33842,6 +33894,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33842
33894
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
33843
33895
|
}>>>;
|
|
33844
33896
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
33897
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
33845
33898
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
33846
33899
|
id: string;
|
|
33847
33900
|
email: string;
|
|
@@ -33880,6 +33933,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33880
33933
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
33881
33934
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
33882
33935
|
allCities: z.ZodOptional<z.ZodString>;
|
|
33936
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
33883
33937
|
}, {
|
|
33884
33938
|
round: z.ZodNumber;
|
|
33885
33939
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -34090,6 +34144,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34090
34144
|
allTeams?: string | undefined;
|
|
34091
34145
|
allSchools?: string | undefined;
|
|
34092
34146
|
allCities?: string | undefined;
|
|
34147
|
+
listCount?: number | undefined;
|
|
34093
34148
|
totalMinutesRemaining?: number | undefined;
|
|
34094
34149
|
period?: string | undefined;
|
|
34095
34150
|
}, {
|
|
@@ -34280,6 +34335,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34280
34335
|
allTeams?: string | undefined;
|
|
34281
34336
|
allSchools?: string | undefined;
|
|
34282
34337
|
allCities?: string | undefined;
|
|
34338
|
+
listCount?: number | undefined;
|
|
34283
34339
|
totalMinutesRemaining?: number | undefined;
|
|
34284
34340
|
period?: string | undefined;
|
|
34285
34341
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -36099,6 +36155,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36099
36155
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
36100
36156
|
}>>>;
|
|
36101
36157
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
36158
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
36102
36159
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
36103
36160
|
id: string;
|
|
36104
36161
|
email: string;
|
|
@@ -36137,6 +36194,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36137
36194
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
36138
36195
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
36139
36196
|
allCities: z.ZodOptional<z.ZodString>;
|
|
36197
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
36140
36198
|
}, {
|
|
36141
36199
|
totalInningsRemaining: z.ZodNumber;
|
|
36142
36200
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -36357,6 +36415,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36357
36415
|
allTeams?: string | undefined;
|
|
36358
36416
|
allSchools?: string | undefined;
|
|
36359
36417
|
allCities?: string | undefined;
|
|
36418
|
+
listCount?: number | undefined;
|
|
36360
36419
|
inningHalf?: "T" | "B" | undefined;
|
|
36361
36420
|
savingPitcher?: string | undefined;
|
|
36362
36421
|
outs?: number | undefined;
|
|
@@ -36554,6 +36613,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36554
36613
|
allTeams?: string | undefined;
|
|
36555
36614
|
allSchools?: string | undefined;
|
|
36556
36615
|
allCities?: string | undefined;
|
|
36616
|
+
listCount?: number | undefined;
|
|
36557
36617
|
inningHalf?: "T" | "B" | undefined;
|
|
36558
36618
|
savingPitcher?: string | undefined;
|
|
36559
36619
|
outs?: number | undefined;
|
|
@@ -38377,6 +38437,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38377
38437
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
38378
38438
|
}>>>;
|
|
38379
38439
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
38440
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
38380
38441
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
38381
38442
|
id: string;
|
|
38382
38443
|
email: string;
|
|
@@ -38415,6 +38476,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38415
38476
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
38416
38477
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
38417
38478
|
allCities: z.ZodOptional<z.ZodString>;
|
|
38479
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
38418
38480
|
}, {
|
|
38419
38481
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
38420
38482
|
week: z.ZodNumber;
|
|
@@ -38728,6 +38790,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38728
38790
|
allTeams?: string | undefined;
|
|
38729
38791
|
allSchools?: string | undefined;
|
|
38730
38792
|
allCities?: string | undefined;
|
|
38793
|
+
listCount?: number | undefined;
|
|
38731
38794
|
}, {
|
|
38732
38795
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
38733
38796
|
week: number;
|
|
@@ -38920,6 +38983,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38920
38983
|
allTeams?: string | undefined;
|
|
38921
38984
|
allSchools?: string | undefined;
|
|
38922
38985
|
allCities?: string | undefined;
|
|
38986
|
+
listCount?: number | undefined;
|
|
38923
38987
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
38924
38988
|
id: z.ZodOptional<z.ZodString>;
|
|
38925
38989
|
status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">, z.ZodLiteral<"postponed">, z.ZodLiteral<"canceled">]>;
|
|
@@ -40737,6 +40801,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40737
40801
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
40738
40802
|
}>>>;
|
|
40739
40803
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
40804
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
40740
40805
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
40741
40806
|
id: string;
|
|
40742
40807
|
email: string;
|
|
@@ -40775,6 +40840,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40775
40840
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
40776
40841
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
40777
40842
|
allCities: z.ZodOptional<z.ZodString>;
|
|
40843
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
40778
40844
|
}, {
|
|
40779
40845
|
possession: z.ZodNullable<z.ZodString>;
|
|
40780
40846
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -41032,6 +41098,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41032
41098
|
allTeams?: string | undefined;
|
|
41033
41099
|
allSchools?: string | undefined;
|
|
41034
41100
|
allCities?: string | undefined;
|
|
41101
|
+
listCount?: number | undefined;
|
|
41035
41102
|
stadium?: {
|
|
41036
41103
|
StadiumID: number;
|
|
41037
41104
|
Name: string;
|
|
@@ -41242,6 +41309,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41242
41309
|
allTeams?: string | undefined;
|
|
41243
41310
|
allSchools?: string | undefined;
|
|
41244
41311
|
allCities?: string | undefined;
|
|
41312
|
+
listCount?: number | undefined;
|
|
41245
41313
|
stadium?: {
|
|
41246
41314
|
StadiumID: number;
|
|
41247
41315
|
Name: string;
|
|
@@ -43071,6 +43139,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43071
43139
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
43072
43140
|
}>>>;
|
|
43073
43141
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
43142
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
43074
43143
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
43075
43144
|
id: string;
|
|
43076
43145
|
email: string;
|
|
@@ -43109,6 +43178,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43109
43178
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
43110
43179
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
43111
43180
|
allCities: z.ZodOptional<z.ZodString>;
|
|
43181
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
43112
43182
|
}, {
|
|
43113
43183
|
possession: z.ZodNullable<z.ZodString>;
|
|
43114
43184
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -43357,6 +43427,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43357
43427
|
allTeams?: string | undefined;
|
|
43358
43428
|
allSchools?: string | undefined;
|
|
43359
43429
|
allCities?: string | undefined;
|
|
43430
|
+
listCount?: number | undefined;
|
|
43360
43431
|
stadium?: {
|
|
43361
43432
|
StadiumID: number;
|
|
43362
43433
|
Name: string;
|
|
@@ -43560,6 +43631,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43560
43631
|
allTeams?: string | undefined;
|
|
43561
43632
|
allSchools?: string | undefined;
|
|
43562
43633
|
allCities?: string | undefined;
|
|
43634
|
+
listCount?: number | undefined;
|
|
43563
43635
|
stadium?: {
|
|
43564
43636
|
StadiumID: number;
|
|
43565
43637
|
Name: string;
|
|
@@ -45387,6 +45459,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45387
45459
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
45388
45460
|
}>>>;
|
|
45389
45461
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
45462
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
45390
45463
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
45391
45464
|
id: string;
|
|
45392
45465
|
email: string;
|
|
@@ -45425,6 +45498,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45425
45498
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
45426
45499
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
45427
45500
|
allCities: z.ZodOptional<z.ZodString>;
|
|
45501
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
45428
45502
|
}, {
|
|
45429
45503
|
seasonType: z.ZodNumber;
|
|
45430
45504
|
season: z.ZodString;
|
|
@@ -45616,6 +45690,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45616
45690
|
allTeams?: string | undefined;
|
|
45617
45691
|
allSchools?: string | undefined;
|
|
45618
45692
|
allCities?: string | undefined;
|
|
45693
|
+
listCount?: number | undefined;
|
|
45619
45694
|
}, {
|
|
45620
45695
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
45621
45696
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -45799,6 +45874,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45799
45874
|
allTeams?: string | undefined;
|
|
45800
45875
|
allSchools?: string | undefined;
|
|
45801
45876
|
allCities?: string | undefined;
|
|
45877
|
+
listCount?: number | undefined;
|
|
45802
45878
|
}>]>;
|
|
45803
45879
|
user: z.ZodObject<Pick<{
|
|
45804
45880
|
id: z.ZodString;
|
|
@@ -46548,6 +46624,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46548
46624
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
46549
46625
|
}>>>;
|
|
46550
46626
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
46627
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
46551
46628
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
46552
46629
|
id: string;
|
|
46553
46630
|
email: string;
|
|
@@ -46759,6 +46836,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46759
46836
|
allTeams?: string | undefined;
|
|
46760
46837
|
allSchools?: string | undefined;
|
|
46761
46838
|
allCities?: string | undefined;
|
|
46839
|
+
listCount?: number | undefined;
|
|
46762
46840
|
totalMinutesRemaining?: number | undefined;
|
|
46763
46841
|
period?: string | undefined;
|
|
46764
46842
|
} | {
|
|
@@ -46952,6 +47030,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46952
47030
|
allTeams?: string | undefined;
|
|
46953
47031
|
allSchools?: string | undefined;
|
|
46954
47032
|
allCities?: string | undefined;
|
|
47033
|
+
listCount?: number | undefined;
|
|
46955
47034
|
inningHalf?: "T" | "B" | undefined;
|
|
46956
47035
|
savingPitcher?: string | undefined;
|
|
46957
47036
|
outs?: number | undefined;
|
|
@@ -47150,6 +47229,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47150
47229
|
allTeams?: string | undefined;
|
|
47151
47230
|
allSchools?: string | undefined;
|
|
47152
47231
|
allCities?: string | undefined;
|
|
47232
|
+
listCount?: number | undefined;
|
|
47153
47233
|
} | {
|
|
47154
47234
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
47155
47235
|
quarter: string | null;
|
|
@@ -47348,6 +47428,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47348
47428
|
allTeams?: string | undefined;
|
|
47349
47429
|
allSchools?: string | undefined;
|
|
47350
47430
|
allCities?: string | undefined;
|
|
47431
|
+
listCount?: number | undefined;
|
|
47351
47432
|
stadium?: {
|
|
47352
47433
|
StadiumID: number;
|
|
47353
47434
|
Name: string;
|
|
@@ -47553,6 +47634,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47553
47634
|
allTeams?: string | undefined;
|
|
47554
47635
|
allSchools?: string | undefined;
|
|
47555
47636
|
allCities?: string | undefined;
|
|
47637
|
+
listCount?: number | undefined;
|
|
47556
47638
|
stadium?: {
|
|
47557
47639
|
StadiumID: number;
|
|
47558
47640
|
Name: string;
|
|
@@ -47746,6 +47828,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47746
47828
|
allTeams?: string | undefined;
|
|
47747
47829
|
allSchools?: string | undefined;
|
|
47748
47830
|
allCities?: string | undefined;
|
|
47831
|
+
listCount?: number | undefined;
|
|
47749
47832
|
};
|
|
47750
47833
|
createdAt?: number | undefined;
|
|
47751
47834
|
comment?: string | undefined;
|
|
@@ -47945,6 +48028,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47945
48028
|
allTeams?: string | undefined;
|
|
47946
48029
|
allSchools?: string | undefined;
|
|
47947
48030
|
allCities?: string | undefined;
|
|
48031
|
+
listCount?: number | undefined;
|
|
47948
48032
|
totalMinutesRemaining?: number | undefined;
|
|
47949
48033
|
period?: string | undefined;
|
|
47950
48034
|
} | {
|
|
@@ -48138,6 +48222,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48138
48222
|
allTeams?: string | undefined;
|
|
48139
48223
|
allSchools?: string | undefined;
|
|
48140
48224
|
allCities?: string | undefined;
|
|
48225
|
+
listCount?: number | undefined;
|
|
48141
48226
|
inningHalf?: "T" | "B" | undefined;
|
|
48142
48227
|
savingPitcher?: string | undefined;
|
|
48143
48228
|
outs?: number | undefined;
|
|
@@ -48336,6 +48421,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48336
48421
|
allTeams?: string | undefined;
|
|
48337
48422
|
allSchools?: string | undefined;
|
|
48338
48423
|
allCities?: string | undefined;
|
|
48424
|
+
listCount?: number | undefined;
|
|
48339
48425
|
} | {
|
|
48340
48426
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
48341
48427
|
quarter: string | null;
|
|
@@ -48534,6 +48620,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48534
48620
|
allTeams?: string | undefined;
|
|
48535
48621
|
allSchools?: string | undefined;
|
|
48536
48622
|
allCities?: string | undefined;
|
|
48623
|
+
listCount?: number | undefined;
|
|
48537
48624
|
stadium?: {
|
|
48538
48625
|
StadiumID: number;
|
|
48539
48626
|
Name: string;
|
|
@@ -48739,6 +48826,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48739
48826
|
allTeams?: string | undefined;
|
|
48740
48827
|
allSchools?: string | undefined;
|
|
48741
48828
|
allCities?: string | undefined;
|
|
48829
|
+
listCount?: number | undefined;
|
|
48742
48830
|
stadium?: {
|
|
48743
48831
|
StadiumID: number;
|
|
48744
48832
|
Name: string;
|
|
@@ -48932,6 +49020,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48932
49020
|
allTeams?: string | undefined;
|
|
48933
49021
|
allSchools?: string | undefined;
|
|
48934
49022
|
allCities?: string | undefined;
|
|
49023
|
+
listCount?: number | undefined;
|
|
48935
49024
|
};
|
|
48936
49025
|
createdAt?: number | undefined;
|
|
48937
49026
|
comment?: string | undefined;
|
package/dist/schemas/game.js
CHANGED
|
@@ -140,6 +140,7 @@ exports.commonGameSchema = zod_1.z.object({
|
|
|
140
140
|
allTeams: zod_1.z.string().optional(),
|
|
141
141
|
allSchools: zod_1.z.string().optional(),
|
|
142
142
|
allCities: zod_1.z.string().optional(),
|
|
143
|
+
listCount: zod_1.z.number().optional(),
|
|
143
144
|
});
|
|
144
145
|
exports.basketballGameSchema = exports.commonGameSchema.extend({
|
|
145
146
|
round: zod_1.z.number(),
|
package/dist/schemas/list.d.ts
CHANGED
|
@@ -753,6 +753,7 @@ export declare const listSchema: z.ZodObject<{
|
|
|
753
753
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
754
754
|
}>>>;
|
|
755
755
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
756
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
756
757
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
757
758
|
id: string;
|
|
758
759
|
email: string;
|
|
@@ -1565,6 +1566,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
1565
1566
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
1566
1567
|
}>>>;
|
|
1567
1568
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
1569
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
1568
1570
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1569
1571
|
id: string;
|
|
1570
1572
|
email: string;
|
|
@@ -2369,6 +2371,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
2369
2371
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
2370
2372
|
}>>>;
|
|
2371
2373
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
2374
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
2372
2375
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
2373
2376
|
id: string;
|
|
2374
2377
|
email: string;
|
|
@@ -3133,6 +3136,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3133
3136
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
3134
3137
|
}>>>;
|
|
3135
3138
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
3139
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
3136
3140
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
3137
3141
|
id: string;
|
|
3138
3142
|
email: string;
|
|
@@ -3942,6 +3946,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
3942
3946
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
3943
3947
|
}>>>;
|
|
3944
3948
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
3949
|
+
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
3945
3950
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
3946
3951
|
id: string;
|
|
3947
3952
|
email: string;
|
|
@@ -256,6 +256,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
256
256
|
weightedRating: z.ZodOptional<z.ZodNumber>;
|
|
257
257
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
258
258
|
fanCategory: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"winningTeam">, z.ZodLiteral<"losingTeam">, z.ZodLiteral<"neutral">, z.ZodLiteral<"homeTeam">, z.ZodLiteral<"awayTeam">]>>;
|
|
259
|
+
listCount: z.ZodOptional<z.ZodNumber>;
|
|
259
260
|
}, "strip", z.ZodTypeAny, {
|
|
260
261
|
id: string;
|
|
261
262
|
user: {
|
|
@@ -314,6 +315,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
314
315
|
};
|
|
315
316
|
weightedRating?: number | undefined;
|
|
316
317
|
comment?: string | undefined;
|
|
318
|
+
listCount?: number | undefined;
|
|
317
319
|
userLikes?: number | undefined;
|
|
318
320
|
isInitialWindowRating?: boolean | undefined;
|
|
319
321
|
weight?: number | undefined;
|
|
@@ -376,6 +378,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
376
378
|
};
|
|
377
379
|
weightedRating?: number | undefined;
|
|
378
380
|
comment?: string | undefined;
|
|
381
|
+
listCount?: number | undefined;
|
|
379
382
|
userLikes?: number | undefined;
|
|
380
383
|
isInitialWindowRating?: boolean | undefined;
|
|
381
384
|
weight?: number | undefined;
|
|
@@ -455,6 +458,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
455
458
|
};
|
|
456
459
|
weightedRating?: number | undefined;
|
|
457
460
|
comment?: string | undefined;
|
|
461
|
+
listCount?: number | undefined;
|
|
458
462
|
userLikes?: number | undefined;
|
|
459
463
|
isInitialWindowRating?: boolean | undefined;
|
|
460
464
|
weight?: number | undefined;
|
|
@@ -535,6 +539,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
535
539
|
};
|
|
536
540
|
weightedRating?: number | undefined;
|
|
537
541
|
comment?: string | undefined;
|
|
542
|
+
listCount?: number | undefined;
|
|
538
543
|
userLikes?: number | undefined;
|
|
539
544
|
isInitialWindowRating?: boolean | undefined;
|
|
540
545
|
weight?: number | undefined;
|
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -226,6 +226,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
226
226
|
weightedRating: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
227
227
|
weight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
228
228
|
fanCategory: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"winningTeam">, import("zod").ZodLiteral<"losingTeam">, import("zod").ZodLiteral<"neutral">, import("zod").ZodLiteral<"homeTeam">, import("zod").ZodLiteral<"awayTeam">]>>;
|
|
229
|
+
listCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
229
230
|
}, "strip", import("zod").ZodTypeAny, {
|
|
230
231
|
id: string;
|
|
231
232
|
user: {
|
|
@@ -284,6 +285,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
284
285
|
};
|
|
285
286
|
weightedRating?: number | undefined;
|
|
286
287
|
comment?: string | undefined;
|
|
288
|
+
listCount?: number | undefined;
|
|
287
289
|
userLikes?: number | undefined;
|
|
288
290
|
isInitialWindowRating?: boolean | undefined;
|
|
289
291
|
weight?: number | undefined;
|
|
@@ -346,6 +348,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
346
348
|
};
|
|
347
349
|
weightedRating?: number | undefined;
|
|
348
350
|
comment?: string | undefined;
|
|
351
|
+
listCount?: number | undefined;
|
|
349
352
|
userLikes?: number | undefined;
|
|
350
353
|
isInitialWindowRating?: boolean | undefined;
|
|
351
354
|
weight?: number | undefined;
|
|
@@ -700,6 +703,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
700
703
|
weightedRating: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
701
704
|
weight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
702
705
|
fanCategory: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"winningTeam">, import("zod").ZodLiteral<"losingTeam">, import("zod").ZodLiteral<"neutral">, import("zod").ZodLiteral<"homeTeam">, import("zod").ZodLiteral<"awayTeam">]>>;
|
|
706
|
+
listCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
703
707
|
}, "id" | "user" | "createdAt">, {
|
|
704
708
|
game: import("zod").ZodObject<Omit<{
|
|
705
709
|
id: import("zod").ZodString;
|
|
@@ -852,6 +856,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
852
856
|
id?: string | undefined;
|
|
853
857
|
weightedRating?: number | undefined;
|
|
854
858
|
comment?: string | undefined;
|
|
859
|
+
listCount?: number | undefined;
|
|
855
860
|
userLikes?: number | undefined;
|
|
856
861
|
isInitialWindowRating?: boolean | undefined;
|
|
857
862
|
weight?: number | undefined;
|
|
@@ -873,6 +878,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
873
878
|
id?: string | undefined;
|
|
874
879
|
weightedRating?: number | undefined;
|
|
875
880
|
comment?: string | undefined;
|
|
881
|
+
listCount?: number | undefined;
|
|
876
882
|
userLikes?: number | undefined;
|
|
877
883
|
isInitialWindowRating?: boolean | undefined;
|
|
878
884
|
weight?: number | undefined;
|
|
@@ -1630,6 +1636,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1630
1636
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
1631
1637
|
}>>>;
|
|
1632
1638
|
repliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1639
|
+
listRepliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1633
1640
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
1634
1641
|
id: string;
|
|
1635
1642
|
email: string;
|
|
@@ -2394,6 +2401,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2394
2401
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
2395
2402
|
}>>>;
|
|
2396
2403
|
repliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2404
|
+
listRepliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2397
2405
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
2398
2406
|
id: string;
|
|
2399
2407
|
email: string;
|
|
@@ -3224,6 +3232,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
3224
3232
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
3225
3233
|
}>>>;
|
|
3226
3234
|
repliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3235
|
+
listRepliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3227
3236
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
3228
3237
|
id: string;
|
|
3229
3238
|
email: string;
|
package/dist/schemas/rating.js
CHANGED
|
@@ -40,6 +40,7 @@ exports.ratingSchema = (0, zod_1.object)({
|
|
|
40
40
|
(0, zod_1.literal)("homeTeam"),
|
|
41
41
|
(0, zod_1.literal)("awayTeam"),
|
|
42
42
|
]).optional(),
|
|
43
|
+
listCount: (0, zod_1.number)().optional(),
|
|
43
44
|
});
|
|
44
45
|
exports.searchRatingSchema = (0, zod_1.object)({
|
|
45
46
|
q: (0, zod_1.string)().optional(),
|
package/dist/schemas/user.d.ts
CHANGED
|
@@ -897,6 +897,7 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
897
897
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
898
898
|
}>>>;
|
|
899
899
|
repliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
900
|
+
listRepliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
900
901
|
}, "strip", import("zod").ZodTypeAny, {
|
|
901
902
|
id: string;
|
|
902
903
|
email: string;
|
|
@@ -1077,6 +1078,7 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
1077
1078
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
1078
1079
|
}>> | undefined;
|
|
1079
1080
|
repliesLeft?: number | undefined;
|
|
1081
|
+
listRepliesLeft?: number | undefined;
|
|
1080
1082
|
}, {
|
|
1081
1083
|
id: string;
|
|
1082
1084
|
email: string;
|
|
@@ -1257,6 +1259,7 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
1257
1259
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
1258
1260
|
}>> | undefined;
|
|
1259
1261
|
repliesLeft?: number | undefined;
|
|
1262
|
+
listRepliesLeft?: number | undefined;
|
|
1260
1263
|
}>;
|
|
1261
1264
|
export declare const createUserSchema: import("zod").ZodObject<Omit<{
|
|
1262
1265
|
id: import("zod").ZodString;
|
|
@@ -2006,6 +2009,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
|
|
|
2006
2009
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
2007
2010
|
}>>>;
|
|
2008
2011
|
repliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2012
|
+
listRepliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2009
2013
|
}, "id" | "totalRatedGames" | "avgRating" | "createdAt" | "updatedAt" | "deviceTokens" | "askedForPushNotifications" | "acceptedPushNotifications">, "strip", import("zod").ZodTypeAny, {
|
|
2010
2014
|
email: string;
|
|
2011
2015
|
username: string;
|
|
@@ -2175,6 +2179,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
|
|
|
2175
2179
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
2176
2180
|
}>> | undefined;
|
|
2177
2181
|
repliesLeft?: number | undefined;
|
|
2182
|
+
listRepliesLeft?: number | undefined;
|
|
2178
2183
|
}, {
|
|
2179
2184
|
email: string;
|
|
2180
2185
|
username: string;
|
|
@@ -2344,6 +2349,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
|
|
|
2344
2349
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
2345
2350
|
}>> | undefined;
|
|
2346
2351
|
repliesLeft?: number | undefined;
|
|
2352
|
+
listRepliesLeft?: number | undefined;
|
|
2347
2353
|
}>;
|
|
2348
2354
|
export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
|
|
2349
2355
|
id: import("zod").ZodString;
|
|
@@ -3093,6 +3099,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
|
|
|
3093
3099
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | undefined;
|
|
3094
3100
|
}>>>;
|
|
3095
3101
|
repliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3102
|
+
listRepliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3096
3103
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
3097
3104
|
id: string;
|
|
3098
3105
|
email: string;
|
package/dist/schemas/user.js
CHANGED
|
@@ -182,6 +182,7 @@ exports.userSchema = (0, zod_1.object)({
|
|
|
182
182
|
}).optional(),
|
|
183
183
|
achievements: (0, zod_1.record)(exports.achievementId, exports.achievementSchema).optional(),
|
|
184
184
|
repliesLeft: (0, zod_1.number)().optional(),
|
|
185
|
+
listRepliesLeft: (0, zod_1.number)().optional(),
|
|
185
186
|
});
|
|
186
187
|
exports.createUserSchema = exports.userSchema.omit({
|
|
187
188
|
id: true,
|