rategame-shared 1.1.315 → 1.1.316
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/chat.d.ts +25 -0
- package/dist/schemas/game.d.ts +100 -0
- package/dist/schemas/list.d.ts +25 -0
- package/dist/schemas/moderation.d.ts +20 -0
- package/dist/schemas/rating.d.ts +15 -0
- package/dist/schemas/stadium.d.ts +20 -0
- package/dist/schemas/user.d.ts +27 -0
- package/dist/schemas/user.js +1 -0
- package/dist/schemas/userEvent.d.ts +15 -0
- package/dist/schemas/voting.d.ts +45 -0
- package/package.json +1 -1
package/dist/schemas/list.d.ts
CHANGED
|
@@ -913,6 +913,7 @@ export declare const listSchema: z.ZodObject<{
|
|
|
913
913
|
context: z.ZodOptional<z.ZodString>;
|
|
914
914
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
915
915
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
916
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
916
917
|
}, "strip", z.ZodTypeAny, {
|
|
917
918
|
target: number;
|
|
918
919
|
current: number;
|
|
@@ -920,6 +921,7 @@ export declare const listSchema: z.ZodObject<{
|
|
|
920
921
|
context?: string | undefined;
|
|
921
922
|
achievedAt?: number | undefined;
|
|
922
923
|
seen?: boolean | undefined;
|
|
924
|
+
isOngoing?: boolean | undefined;
|
|
923
925
|
}, {
|
|
924
926
|
target: number;
|
|
925
927
|
current: number;
|
|
@@ -927,6 +929,7 @@ export declare const listSchema: z.ZodObject<{
|
|
|
927
929
|
context?: string | undefined;
|
|
928
930
|
achievedAt?: number | undefined;
|
|
929
931
|
seen?: boolean | undefined;
|
|
932
|
+
isOngoing?: boolean | undefined;
|
|
930
933
|
}>>>;
|
|
931
934
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
932
935
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -962,6 +965,7 @@ export declare const listSchema: z.ZodObject<{
|
|
|
962
965
|
context?: string | undefined;
|
|
963
966
|
achievedAt?: number | undefined;
|
|
964
967
|
seen?: boolean | undefined;
|
|
968
|
+
isOngoing?: boolean | undefined;
|
|
965
969
|
}> | undefined;
|
|
966
970
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
967
971
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -995,6 +999,7 @@ export declare const listSchema: z.ZodObject<{
|
|
|
995
999
|
context?: string | undefined;
|
|
996
1000
|
achievedAt?: number | undefined;
|
|
997
1001
|
seen?: boolean | undefined;
|
|
1002
|
+
isOngoing?: boolean | undefined;
|
|
998
1003
|
}> | undefined;
|
|
999
1004
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1000
1005
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2054,6 +2059,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2054
2059
|
context: z.ZodOptional<z.ZodString>;
|
|
2055
2060
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2056
2061
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2062
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
2057
2063
|
}, "strip", z.ZodTypeAny, {
|
|
2058
2064
|
target: number;
|
|
2059
2065
|
current: number;
|
|
@@ -2061,6 +2067,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2061
2067
|
context?: string | undefined;
|
|
2062
2068
|
achievedAt?: number | undefined;
|
|
2063
2069
|
seen?: boolean | undefined;
|
|
2070
|
+
isOngoing?: boolean | undefined;
|
|
2064
2071
|
}, {
|
|
2065
2072
|
target: number;
|
|
2066
2073
|
current: number;
|
|
@@ -2068,6 +2075,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2068
2075
|
context?: string | undefined;
|
|
2069
2076
|
achievedAt?: number | undefined;
|
|
2070
2077
|
seen?: boolean | undefined;
|
|
2078
|
+
isOngoing?: boolean | undefined;
|
|
2071
2079
|
}>>>;
|
|
2072
2080
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2073
2081
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -2103,6 +2111,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2103
2111
|
context?: string | undefined;
|
|
2104
2112
|
achievedAt?: number | undefined;
|
|
2105
2113
|
seen?: boolean | undefined;
|
|
2114
|
+
isOngoing?: boolean | undefined;
|
|
2106
2115
|
}> | undefined;
|
|
2107
2116
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2108
2117
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2136,6 +2145,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2136
2145
|
context?: string | undefined;
|
|
2137
2146
|
achievedAt?: number | undefined;
|
|
2138
2147
|
seen?: boolean | undefined;
|
|
2148
|
+
isOngoing?: boolean | undefined;
|
|
2139
2149
|
}> | undefined;
|
|
2140
2150
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2141
2151
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3187,6 +3197,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3187
3197
|
context: z.ZodOptional<z.ZodString>;
|
|
3188
3198
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
3189
3199
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3200
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
3190
3201
|
}, "strip", z.ZodTypeAny, {
|
|
3191
3202
|
target: number;
|
|
3192
3203
|
current: number;
|
|
@@ -3194,6 +3205,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3194
3205
|
context?: string | undefined;
|
|
3195
3206
|
achievedAt?: number | undefined;
|
|
3196
3207
|
seen?: boolean | undefined;
|
|
3208
|
+
isOngoing?: boolean | undefined;
|
|
3197
3209
|
}, {
|
|
3198
3210
|
target: number;
|
|
3199
3211
|
current: number;
|
|
@@ -3201,6 +3213,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3201
3213
|
context?: string | undefined;
|
|
3202
3214
|
achievedAt?: number | undefined;
|
|
3203
3215
|
seen?: boolean | undefined;
|
|
3216
|
+
isOngoing?: boolean | undefined;
|
|
3204
3217
|
}>>>;
|
|
3205
3218
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3206
3219
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -3236,6 +3249,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3236
3249
|
context?: string | undefined;
|
|
3237
3250
|
achievedAt?: number | undefined;
|
|
3238
3251
|
seen?: boolean | undefined;
|
|
3252
|
+
isOngoing?: boolean | undefined;
|
|
3239
3253
|
}> | undefined;
|
|
3240
3254
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3241
3255
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3269,6 +3283,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3269
3283
|
context?: string | undefined;
|
|
3270
3284
|
achievedAt?: number | undefined;
|
|
3271
3285
|
seen?: boolean | undefined;
|
|
3286
|
+
isOngoing?: boolean | undefined;
|
|
3272
3287
|
}> | undefined;
|
|
3273
3288
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3274
3289
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4280,6 +4295,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4280
4295
|
context: z.ZodOptional<z.ZodString>;
|
|
4281
4296
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4282
4297
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4298
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4283
4299
|
}, "strip", z.ZodTypeAny, {
|
|
4284
4300
|
target: number;
|
|
4285
4301
|
current: number;
|
|
@@ -4287,6 +4303,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4287
4303
|
context?: string | undefined;
|
|
4288
4304
|
achievedAt?: number | undefined;
|
|
4289
4305
|
seen?: boolean | undefined;
|
|
4306
|
+
isOngoing?: boolean | undefined;
|
|
4290
4307
|
}, {
|
|
4291
4308
|
target: number;
|
|
4292
4309
|
current: number;
|
|
@@ -4294,6 +4311,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4294
4311
|
context?: string | undefined;
|
|
4295
4312
|
achievedAt?: number | undefined;
|
|
4296
4313
|
seen?: boolean | undefined;
|
|
4314
|
+
isOngoing?: boolean | undefined;
|
|
4297
4315
|
}>>>;
|
|
4298
4316
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4299
4317
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4329,6 +4347,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4329
4347
|
context?: string | undefined;
|
|
4330
4348
|
achievedAt?: number | undefined;
|
|
4331
4349
|
seen?: boolean | undefined;
|
|
4350
|
+
isOngoing?: boolean | undefined;
|
|
4332
4351
|
}> | undefined;
|
|
4333
4352
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4334
4353
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4362,6 +4381,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4362
4381
|
context?: string | undefined;
|
|
4363
4382
|
achievedAt?: number | undefined;
|
|
4364
4383
|
seen?: boolean | undefined;
|
|
4384
|
+
isOngoing?: boolean | undefined;
|
|
4365
4385
|
}> | undefined;
|
|
4366
4386
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4367
4387
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5418,6 +5438,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5418
5438
|
context: z.ZodOptional<z.ZodString>;
|
|
5419
5439
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
5420
5440
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5441
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
5421
5442
|
}, "strip", z.ZodTypeAny, {
|
|
5422
5443
|
target: number;
|
|
5423
5444
|
current: number;
|
|
@@ -5425,6 +5446,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5425
5446
|
context?: string | undefined;
|
|
5426
5447
|
achievedAt?: number | undefined;
|
|
5427
5448
|
seen?: boolean | undefined;
|
|
5449
|
+
isOngoing?: boolean | undefined;
|
|
5428
5450
|
}, {
|
|
5429
5451
|
target: number;
|
|
5430
5452
|
current: number;
|
|
@@ -5432,6 +5454,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5432
5454
|
context?: string | undefined;
|
|
5433
5455
|
achievedAt?: number | undefined;
|
|
5434
5456
|
seen?: boolean | undefined;
|
|
5457
|
+
isOngoing?: boolean | undefined;
|
|
5435
5458
|
}>>>;
|
|
5436
5459
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5437
5460
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -5467,6 +5490,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5467
5490
|
context?: string | undefined;
|
|
5468
5491
|
achievedAt?: number | undefined;
|
|
5469
5492
|
seen?: boolean | undefined;
|
|
5493
|
+
isOngoing?: boolean | undefined;
|
|
5470
5494
|
}> | undefined;
|
|
5471
5495
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5472
5496
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5500,6 +5524,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5500
5524
|
context?: string | undefined;
|
|
5501
5525
|
achievedAt?: number | undefined;
|
|
5502
5526
|
seen?: boolean | undefined;
|
|
5527
|
+
isOngoing?: boolean | undefined;
|
|
5503
5528
|
}> | undefined;
|
|
5504
5529
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5505
5530
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -926,6 +926,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
926
926
|
context: z.ZodOptional<z.ZodString>;
|
|
927
927
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
928
928
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
929
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
929
930
|
}, "strip", z.ZodTypeAny, {
|
|
930
931
|
target: number;
|
|
931
932
|
current: number;
|
|
@@ -933,6 +934,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
933
934
|
context?: string | undefined;
|
|
934
935
|
achievedAt?: number | undefined;
|
|
935
936
|
seen?: boolean | undefined;
|
|
937
|
+
isOngoing?: boolean | undefined;
|
|
936
938
|
}, {
|
|
937
939
|
target: number;
|
|
938
940
|
current: number;
|
|
@@ -940,6 +942,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
940
942
|
context?: string | undefined;
|
|
941
943
|
achievedAt?: number | undefined;
|
|
942
944
|
seen?: boolean | undefined;
|
|
945
|
+
isOngoing?: boolean | undefined;
|
|
943
946
|
}>>>;
|
|
944
947
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
945
948
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -975,6 +978,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
975
978
|
context?: string | undefined;
|
|
976
979
|
achievedAt?: number | undefined;
|
|
977
980
|
seen?: boolean | undefined;
|
|
981
|
+
isOngoing?: boolean | undefined;
|
|
978
982
|
}> | undefined;
|
|
979
983
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
980
984
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1008,6 +1012,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
1008
1012
|
context?: string | undefined;
|
|
1009
1013
|
achievedAt?: number | undefined;
|
|
1010
1014
|
seen?: boolean | undefined;
|
|
1015
|
+
isOngoing?: boolean | undefined;
|
|
1011
1016
|
}> | undefined;
|
|
1012
1017
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1013
1018
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2046,6 +2051,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2046
2051
|
context: z.ZodOptional<z.ZodString>;
|
|
2047
2052
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2048
2053
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2054
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
2049
2055
|
}, "strip", z.ZodTypeAny, {
|
|
2050
2056
|
target: number;
|
|
2051
2057
|
current: number;
|
|
@@ -2053,6 +2059,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2053
2059
|
context?: string | undefined;
|
|
2054
2060
|
achievedAt?: number | undefined;
|
|
2055
2061
|
seen?: boolean | undefined;
|
|
2062
|
+
isOngoing?: boolean | undefined;
|
|
2056
2063
|
}, {
|
|
2057
2064
|
target: number;
|
|
2058
2065
|
current: number;
|
|
@@ -2060,6 +2067,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2060
2067
|
context?: string | undefined;
|
|
2061
2068
|
achievedAt?: number | undefined;
|
|
2062
2069
|
seen?: boolean | undefined;
|
|
2070
|
+
isOngoing?: boolean | undefined;
|
|
2063
2071
|
}>>>;
|
|
2064
2072
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2065
2073
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -2095,6 +2103,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2095
2103
|
context?: string | undefined;
|
|
2096
2104
|
achievedAt?: number | undefined;
|
|
2097
2105
|
seen?: boolean | undefined;
|
|
2106
|
+
isOngoing?: boolean | undefined;
|
|
2098
2107
|
}> | undefined;
|
|
2099
2108
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2100
2109
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2128,6 +2137,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2128
2137
|
context?: string | undefined;
|
|
2129
2138
|
achievedAt?: number | undefined;
|
|
2130
2139
|
seen?: boolean | undefined;
|
|
2140
|
+
isOngoing?: boolean | undefined;
|
|
2131
2141
|
}> | undefined;
|
|
2132
2142
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2133
2143
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3202,6 +3212,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3202
3212
|
context: z.ZodOptional<z.ZodString>;
|
|
3203
3213
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
3204
3214
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3215
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
3205
3216
|
}, "strip", z.ZodTypeAny, {
|
|
3206
3217
|
target: number;
|
|
3207
3218
|
current: number;
|
|
@@ -3209,6 +3220,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3209
3220
|
context?: string | undefined;
|
|
3210
3221
|
achievedAt?: number | undefined;
|
|
3211
3222
|
seen?: boolean | undefined;
|
|
3223
|
+
isOngoing?: boolean | undefined;
|
|
3212
3224
|
}, {
|
|
3213
3225
|
target: number;
|
|
3214
3226
|
current: number;
|
|
@@ -3216,6 +3228,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3216
3228
|
context?: string | undefined;
|
|
3217
3229
|
achievedAt?: number | undefined;
|
|
3218
3230
|
seen?: boolean | undefined;
|
|
3231
|
+
isOngoing?: boolean | undefined;
|
|
3219
3232
|
}>>>;
|
|
3220
3233
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3221
3234
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -3251,6 +3264,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3251
3264
|
context?: string | undefined;
|
|
3252
3265
|
achievedAt?: number | undefined;
|
|
3253
3266
|
seen?: boolean | undefined;
|
|
3267
|
+
isOngoing?: boolean | undefined;
|
|
3254
3268
|
}> | undefined;
|
|
3255
3269
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3256
3270
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3284,6 +3298,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3284
3298
|
context?: string | undefined;
|
|
3285
3299
|
achievedAt?: number | undefined;
|
|
3286
3300
|
seen?: boolean | undefined;
|
|
3301
|
+
isOngoing?: boolean | undefined;
|
|
3287
3302
|
}> | undefined;
|
|
3288
3303
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3289
3304
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4402,6 +4417,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4402
4417
|
context: z.ZodOptional<z.ZodString>;
|
|
4403
4418
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4404
4419
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4420
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4405
4421
|
}, "strip", z.ZodTypeAny, {
|
|
4406
4422
|
target: number;
|
|
4407
4423
|
current: number;
|
|
@@ -4409,6 +4425,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4409
4425
|
context?: string | undefined;
|
|
4410
4426
|
achievedAt?: number | undefined;
|
|
4411
4427
|
seen?: boolean | undefined;
|
|
4428
|
+
isOngoing?: boolean | undefined;
|
|
4412
4429
|
}, {
|
|
4413
4430
|
target: number;
|
|
4414
4431
|
current: number;
|
|
@@ -4416,6 +4433,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4416
4433
|
context?: string | undefined;
|
|
4417
4434
|
achievedAt?: number | undefined;
|
|
4418
4435
|
seen?: boolean | undefined;
|
|
4436
|
+
isOngoing?: boolean | undefined;
|
|
4419
4437
|
}>>>;
|
|
4420
4438
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4421
4439
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4451,6 +4469,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4451
4469
|
context?: string | undefined;
|
|
4452
4470
|
achievedAt?: number | undefined;
|
|
4453
4471
|
seen?: boolean | undefined;
|
|
4472
|
+
isOngoing?: boolean | undefined;
|
|
4454
4473
|
}> | undefined;
|
|
4455
4474
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4456
4475
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4484,6 +4503,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4484
4503
|
context?: string | undefined;
|
|
4485
4504
|
achievedAt?: number | undefined;
|
|
4486
4505
|
seen?: boolean | undefined;
|
|
4506
|
+
isOngoing?: boolean | undefined;
|
|
4487
4507
|
}> | undefined;
|
|
4488
4508
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4489
4509
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -1842,6 +1842,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1842
1842
|
context: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1843
1843
|
achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1844
1844
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1845
|
+
isOngoing: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1845
1846
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1846
1847
|
target: number;
|
|
1847
1848
|
current: number;
|
|
@@ -1849,6 +1850,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1849
1850
|
context?: string | undefined;
|
|
1850
1851
|
achievedAt?: number | undefined;
|
|
1851
1852
|
seen?: boolean | undefined;
|
|
1853
|
+
isOngoing?: boolean | undefined;
|
|
1852
1854
|
}, {
|
|
1853
1855
|
target: number;
|
|
1854
1856
|
current: number;
|
|
@@ -1856,6 +1858,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1856
1858
|
context?: string | undefined;
|
|
1857
1859
|
achievedAt?: number | undefined;
|
|
1858
1860
|
seen?: boolean | undefined;
|
|
1861
|
+
isOngoing?: boolean | undefined;
|
|
1859
1862
|
}>>>;
|
|
1860
1863
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1861
1864
|
type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"global">, import("zod").ZodLiteral<"sport">, import("zod").ZodLiteral<"league">]>>;
|
|
@@ -1891,6 +1894,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1891
1894
|
context?: string | undefined;
|
|
1892
1895
|
achievedAt?: number | undefined;
|
|
1893
1896
|
seen?: boolean | undefined;
|
|
1897
|
+
isOngoing?: boolean | undefined;
|
|
1894
1898
|
}> | undefined;
|
|
1895
1899
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1896
1900
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1924,6 +1928,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1924
1928
|
context?: string | undefined;
|
|
1925
1929
|
achievedAt?: number | undefined;
|
|
1926
1930
|
seen?: boolean | undefined;
|
|
1931
|
+
isOngoing?: boolean | undefined;
|
|
1927
1932
|
}> | undefined;
|
|
1928
1933
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1929
1934
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2935,6 +2940,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2935
2940
|
context: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2936
2941
|
achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2937
2942
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2943
|
+
isOngoing: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2938
2944
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2939
2945
|
target: number;
|
|
2940
2946
|
current: number;
|
|
@@ -2942,6 +2948,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2942
2948
|
context?: string | undefined;
|
|
2943
2949
|
achievedAt?: number | undefined;
|
|
2944
2950
|
seen?: boolean | undefined;
|
|
2951
|
+
isOngoing?: boolean | undefined;
|
|
2945
2952
|
}, {
|
|
2946
2953
|
target: number;
|
|
2947
2954
|
current: number;
|
|
@@ -2949,6 +2956,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2949
2956
|
context?: string | undefined;
|
|
2950
2957
|
achievedAt?: number | undefined;
|
|
2951
2958
|
seen?: boolean | undefined;
|
|
2959
|
+
isOngoing?: boolean | undefined;
|
|
2952
2960
|
}>>>;
|
|
2953
2961
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2954
2962
|
type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"global">, import("zod").ZodLiteral<"sport">, import("zod").ZodLiteral<"league">]>>;
|
|
@@ -2984,6 +2992,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2984
2992
|
context?: string | undefined;
|
|
2985
2993
|
achievedAt?: number | undefined;
|
|
2986
2994
|
seen?: boolean | undefined;
|
|
2995
|
+
isOngoing?: boolean | undefined;
|
|
2987
2996
|
}> | undefined;
|
|
2988
2997
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2989
2998
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3017,6 +3026,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
3017
3026
|
context?: string | undefined;
|
|
3018
3027
|
achievedAt?: number | undefined;
|
|
3019
3028
|
seen?: boolean | undefined;
|
|
3029
|
+
isOngoing?: boolean | undefined;
|
|
3020
3030
|
}> | undefined;
|
|
3021
3031
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3022
3032
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4099,6 +4109,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
4099
4109
|
context: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4100
4110
|
achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4101
4111
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4112
|
+
isOngoing: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4102
4113
|
}, "strip", import("zod").ZodTypeAny, {
|
|
4103
4114
|
target: number;
|
|
4104
4115
|
current: number;
|
|
@@ -4106,6 +4117,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
4106
4117
|
context?: string | undefined;
|
|
4107
4118
|
achievedAt?: number | undefined;
|
|
4108
4119
|
seen?: boolean | undefined;
|
|
4120
|
+
isOngoing?: boolean | undefined;
|
|
4109
4121
|
}, {
|
|
4110
4122
|
target: number;
|
|
4111
4123
|
current: number;
|
|
@@ -4113,6 +4125,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
4113
4125
|
context?: string | undefined;
|
|
4114
4126
|
achievedAt?: number | undefined;
|
|
4115
4127
|
seen?: boolean | undefined;
|
|
4128
|
+
isOngoing?: boolean | undefined;
|
|
4116
4129
|
}>>>;
|
|
4117
4130
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4118
4131
|
type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"global">, import("zod").ZodLiteral<"sport">, import("zod").ZodLiteral<"league">]>>;
|
|
@@ -4148,6 +4161,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
4148
4161
|
context?: string | undefined;
|
|
4149
4162
|
achievedAt?: number | undefined;
|
|
4150
4163
|
seen?: boolean | undefined;
|
|
4164
|
+
isOngoing?: boolean | undefined;
|
|
4151
4165
|
}> | undefined;
|
|
4152
4166
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4153
4167
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4181,6 +4195,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
4181
4195
|
context?: string | undefined;
|
|
4182
4196
|
achievedAt?: number | undefined;
|
|
4183
4197
|
seen?: boolean | undefined;
|
|
4198
|
+
isOngoing?: boolean | undefined;
|
|
4184
4199
|
}> | undefined;
|
|
4185
4200
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4186
4201
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1163,6 +1163,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1163
1163
|
context: z.ZodOptional<z.ZodString>;
|
|
1164
1164
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
1165
1165
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1166
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
1166
1167
|
}, "strip", z.ZodTypeAny, {
|
|
1167
1168
|
target: number;
|
|
1168
1169
|
current: number;
|
|
@@ -1170,6 +1171,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1170
1171
|
context?: string | undefined;
|
|
1171
1172
|
achievedAt?: number | undefined;
|
|
1172
1173
|
seen?: boolean | undefined;
|
|
1174
|
+
isOngoing?: boolean | undefined;
|
|
1173
1175
|
}, {
|
|
1174
1176
|
target: number;
|
|
1175
1177
|
current: number;
|
|
@@ -1177,6 +1179,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1177
1179
|
context?: string | undefined;
|
|
1178
1180
|
achievedAt?: number | undefined;
|
|
1179
1181
|
seen?: boolean | undefined;
|
|
1182
|
+
isOngoing?: boolean | undefined;
|
|
1180
1183
|
}>>>;
|
|
1181
1184
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1182
1185
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -1212,6 +1215,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1212
1215
|
context?: string | undefined;
|
|
1213
1216
|
achievedAt?: number | undefined;
|
|
1214
1217
|
seen?: boolean | undefined;
|
|
1218
|
+
isOngoing?: boolean | undefined;
|
|
1215
1219
|
}> | undefined;
|
|
1216
1220
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1217
1221
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1245,6 +1249,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1245
1249
|
context?: string | undefined;
|
|
1246
1250
|
achievedAt?: number | undefined;
|
|
1247
1251
|
seen?: boolean | undefined;
|
|
1252
|
+
isOngoing?: boolean | undefined;
|
|
1248
1253
|
}> | undefined;
|
|
1249
1254
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1250
1255
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2797,6 +2802,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2797
2802
|
context: z.ZodOptional<z.ZodString>;
|
|
2798
2803
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2799
2804
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2805
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
2800
2806
|
}, "strip", z.ZodTypeAny, {
|
|
2801
2807
|
target: number;
|
|
2802
2808
|
current: number;
|
|
@@ -2804,6 +2810,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2804
2810
|
context?: string | undefined;
|
|
2805
2811
|
achievedAt?: number | undefined;
|
|
2806
2812
|
seen?: boolean | undefined;
|
|
2813
|
+
isOngoing?: boolean | undefined;
|
|
2807
2814
|
}, {
|
|
2808
2815
|
target: number;
|
|
2809
2816
|
current: number;
|
|
@@ -2811,6 +2818,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2811
2818
|
context?: string | undefined;
|
|
2812
2819
|
achievedAt?: number | undefined;
|
|
2813
2820
|
seen?: boolean | undefined;
|
|
2821
|
+
isOngoing?: boolean | undefined;
|
|
2814
2822
|
}>>>;
|
|
2815
2823
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2816
2824
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -2846,6 +2854,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2846
2854
|
context?: string | undefined;
|
|
2847
2855
|
achievedAt?: number | undefined;
|
|
2848
2856
|
seen?: boolean | undefined;
|
|
2857
|
+
isOngoing?: boolean | undefined;
|
|
2849
2858
|
}> | undefined;
|
|
2850
2859
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2851
2860
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2879,6 +2888,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2879
2888
|
context?: string | undefined;
|
|
2880
2889
|
achievedAt?: number | undefined;
|
|
2881
2890
|
seen?: boolean | undefined;
|
|
2891
|
+
isOngoing?: boolean | undefined;
|
|
2882
2892
|
}> | undefined;
|
|
2883
2893
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2884
2894
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4490,6 +4500,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4490
4500
|
context: z.ZodOptional<z.ZodString>;
|
|
4491
4501
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4492
4502
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4503
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4493
4504
|
}, "strip", z.ZodTypeAny, {
|
|
4494
4505
|
target: number;
|
|
4495
4506
|
current: number;
|
|
@@ -4497,6 +4508,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4497
4508
|
context?: string | undefined;
|
|
4498
4509
|
achievedAt?: number | undefined;
|
|
4499
4510
|
seen?: boolean | undefined;
|
|
4511
|
+
isOngoing?: boolean | undefined;
|
|
4500
4512
|
}, {
|
|
4501
4513
|
target: number;
|
|
4502
4514
|
current: number;
|
|
@@ -4504,6 +4516,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4504
4516
|
context?: string | undefined;
|
|
4505
4517
|
achievedAt?: number | undefined;
|
|
4506
4518
|
seen?: boolean | undefined;
|
|
4519
|
+
isOngoing?: boolean | undefined;
|
|
4507
4520
|
}>>>;
|
|
4508
4521
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4509
4522
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4539,6 +4552,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4539
4552
|
context?: string | undefined;
|
|
4540
4553
|
achievedAt?: number | undefined;
|
|
4541
4554
|
seen?: boolean | undefined;
|
|
4555
|
+
isOngoing?: boolean | undefined;
|
|
4542
4556
|
}> | undefined;
|
|
4543
4557
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4544
4558
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4572,6 +4586,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4572
4586
|
context?: string | undefined;
|
|
4573
4587
|
achievedAt?: number | undefined;
|
|
4574
4588
|
seen?: boolean | undefined;
|
|
4589
|
+
isOngoing?: boolean | undefined;
|
|
4575
4590
|
}> | undefined;
|
|
4576
4591
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4577
4592
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5583,6 +5598,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5583
5598
|
context: z.ZodOptional<z.ZodString>;
|
|
5584
5599
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
5585
5600
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5601
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
5586
5602
|
}, "strip", z.ZodTypeAny, {
|
|
5587
5603
|
target: number;
|
|
5588
5604
|
current: number;
|
|
@@ -5590,6 +5606,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5590
5606
|
context?: string | undefined;
|
|
5591
5607
|
achievedAt?: number | undefined;
|
|
5592
5608
|
seen?: boolean | undefined;
|
|
5609
|
+
isOngoing?: boolean | undefined;
|
|
5593
5610
|
}, {
|
|
5594
5611
|
target: number;
|
|
5595
5612
|
current: number;
|
|
@@ -5597,6 +5614,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5597
5614
|
context?: string | undefined;
|
|
5598
5615
|
achievedAt?: number | undefined;
|
|
5599
5616
|
seen?: boolean | undefined;
|
|
5617
|
+
isOngoing?: boolean | undefined;
|
|
5600
5618
|
}>>>;
|
|
5601
5619
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5602
5620
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -5632,6 +5650,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5632
5650
|
context?: string | undefined;
|
|
5633
5651
|
achievedAt?: number | undefined;
|
|
5634
5652
|
seen?: boolean | undefined;
|
|
5653
|
+
isOngoing?: boolean | undefined;
|
|
5635
5654
|
}> | undefined;
|
|
5636
5655
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5637
5656
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5665,6 +5684,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5665
5684
|
context?: string | undefined;
|
|
5666
5685
|
achievedAt?: number | undefined;
|
|
5667
5686
|
seen?: boolean | undefined;
|
|
5687
|
+
isOngoing?: boolean | undefined;
|
|
5668
5688
|
}> | undefined;
|
|
5669
5689
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5670
5690
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|