rategame-shared 1.1.421 → 1.1.423
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/models/advertisement.d.ts +3 -4
- package/dist/models/pick.d.ts +6 -1
- package/dist/models/standings.d.ts +5 -0
- package/dist/models/standings.js +2 -0
- package/dist/schemas/advertisement.d.ts +16 -50
- package/dist/schemas/advertisement.js +11 -9
- package/dist/schemas/game.d.ts +11 -0
- package/dist/schemas/game.js +2 -0
- package/dist/schemas/pick.d.ts +23498 -0
- package/dist/schemas/pick.js +37 -1
- package/dist/schemas/scorePrediction.d.ts +24 -0
- package/dist/schemas/standings.d.ts +306 -0
- package/dist/schemas/standings.js +35 -0
- package/dist/schemas/voting.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from "./schemas/season";
|
|
|
23
23
|
export * from "./schemas/trivia";
|
|
24
24
|
export * from "./schemas/scorePrediction";
|
|
25
25
|
export * from "./schemas/reactivation";
|
|
26
|
+
export * from "./schemas/standings";
|
|
26
27
|
export * from "./models/user";
|
|
27
28
|
export * from "./models/rating";
|
|
28
29
|
export * from "./models/game";
|
|
@@ -48,4 +49,5 @@ export * from "./models/season";
|
|
|
48
49
|
export * from "./models/trivia";
|
|
49
50
|
export * from "./models/scorePrediction";
|
|
50
51
|
export * from "./models/reactivation";
|
|
52
|
+
export * from "./models/standings";
|
|
51
53
|
export * from "./constants";
|
package/dist/index.js
CHANGED
|
@@ -39,6 +39,7 @@ __exportStar(require("./schemas/season"), exports);
|
|
|
39
39
|
__exportStar(require("./schemas/trivia"), exports);
|
|
40
40
|
__exportStar(require("./schemas/scorePrediction"), exports);
|
|
41
41
|
__exportStar(require("./schemas/reactivation"), exports);
|
|
42
|
+
__exportStar(require("./schemas/standings"), exports);
|
|
42
43
|
__exportStar(require("./models/user"), exports);
|
|
43
44
|
__exportStar(require("./models/rating"), exports);
|
|
44
45
|
__exportStar(require("./models/game"), exports);
|
|
@@ -64,4 +65,5 @@ __exportStar(require("./models/season"), exports);
|
|
|
64
65
|
__exportStar(require("./models/trivia"), exports);
|
|
65
66
|
__exportStar(require("./models/scorePrediction"), exports);
|
|
66
67
|
__exportStar(require("./models/reactivation"), exports);
|
|
68
|
+
__exportStar(require("./models/standings"), exports);
|
|
67
69
|
__exportStar(require("./constants"), exports);
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { advertisementSchema,
|
|
2
|
+
import { advertisementSchema, createAdvertisementInputSchema, updateAdvertisementInputSchema } from "../schemas/advertisement";
|
|
3
3
|
export type Advertisement = z.infer<typeof advertisementSchema>;
|
|
4
|
-
export type
|
|
5
|
-
export type
|
|
6
|
-
export type UpdateAdvertisementScheduleInput = z.infer<typeof updateAdvertisementScheduleInputSchema>;
|
|
4
|
+
export type CreateAdvertisementInput = z.infer<typeof createAdvertisementInputSchema>;
|
|
5
|
+
export type UpdateAdvertisementInput = z.infer<typeof updateAdvertisementInputSchema>;
|
package/dist/models/pick.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { pickSchema, miniPickSchema, pickSubmissionDtoSchema, pickSubmissionResponseDtoSchema, pickUpdateDtoSchema, pickDeleteDtoSchema, pickDeleteResponseDtoSchema, gamePickStatsResponseDtoSchema, userPickResponseDtoSchema, userPicksLeagueStatsSchema, userPicksStatsResponseDtoSchema, userPicksTeamStatsSchema, userPicksByTeamResponseDtoSchema, gamePickUsersResponseDtoSchema, gamePickUsersPaginatedResponseDtoSchema, marchMadnessRoundStatsSchema, marchMadnessPicksResponseDtoSchema, marchMadnessLeaderboardEntrySchema, marchMadnessLeaderboardResponseDtoSchema } from "../schemas/pick";
|
|
2
|
+
import { pickSchema, miniPickSchema, pickSubmissionDtoSchema, pickSubmissionResponseDtoSchema, pickUpdateDtoSchema, pickDeleteDtoSchema, pickDeleteResponseDtoSchema, gamePickStatsResponseDtoSchema, userPickResponseDtoSchema, userPicksLeagueStatsSchema, userPicksStatsResponseDtoSchema, userPicksTeamStatsSchema, userPicksByTeamResponseDtoSchema, gamePickUsersResponseDtoSchema, gamePickUsersPaginatedResponseDtoSchema, marchMadnessRoundStatsSchema, marchMadnessPicksResponseDtoSchema, marchMadnessLeaderboardEntrySchema, marchMadnessLeaderboardResponseDtoSchema, fifaPickEmRoundTypeSchema, fifaPickEmRoundStatsSchema, fifaPickEmPicksResponseDtoSchema, fifaPickEmLeaderboardEntrySchema, fifaPickEmLeaderboardResponseDtoSchema } from "../schemas/pick";
|
|
3
3
|
export type Pick = z.infer<typeof pickSchema>;
|
|
4
4
|
export type MiniPick = z.infer<typeof miniPickSchema>;
|
|
5
5
|
export type PickSubmissionDto = z.infer<typeof pickSubmissionDtoSchema>;
|
|
@@ -19,3 +19,8 @@ export type MarchMadnessRoundStats = z.infer<typeof marchMadnessRoundStatsSchema
|
|
|
19
19
|
export type MarchMadnessPicksResponseDto = z.infer<typeof marchMadnessPicksResponseDtoSchema>;
|
|
20
20
|
export type MarchMadnessLeaderboardEntry = z.infer<typeof marchMadnessLeaderboardEntrySchema>;
|
|
21
21
|
export type MarchMadnessLeaderboardResponseDto = z.infer<typeof marchMadnessLeaderboardResponseDtoSchema>;
|
|
22
|
+
export type FifaPickEmRoundType = z.infer<typeof fifaPickEmRoundTypeSchema>;
|
|
23
|
+
export type FifaPickEmRoundStats = z.infer<typeof fifaPickEmRoundStatsSchema>;
|
|
24
|
+
export type FifaPickEmPicksResponseDto = z.infer<typeof fifaPickEmPicksResponseDtoSchema>;
|
|
25
|
+
export type FifaPickEmLeaderboardEntry = z.infer<typeof fifaPickEmLeaderboardEntrySchema>;
|
|
26
|
+
export type FifaPickEmLeaderboardResponseDto = z.infer<typeof fifaPickEmLeaderboardResponseDtoSchema>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { fifaStandingsTeamSchema, fifaStandingsGroupSchema, fifaStandingsResponseDtoSchema } from "../schemas/standings";
|
|
3
|
+
export type FifaStandingsTeam = z.infer<typeof fifaStandingsTeamSchema>;
|
|
4
|
+
export type FifaStandingsGroup = z.infer<typeof fifaStandingsGroupSchema>;
|
|
5
|
+
export type FifaStandingsResponseDto = z.infer<typeof fifaStandingsResponseDtoSchema>;
|
|
@@ -5,10 +5,18 @@ export declare const advertisementSchema: import("zod").ZodObject<{
|
|
|
5
5
|
imageUrl: import("zod").ZodString;
|
|
6
6
|
ctaUrl: import("zod").ZodString;
|
|
7
7
|
ctaLabel: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8
|
+
startsAt: import("zod").ZodNumber;
|
|
9
|
+
endsAt: import("zod").ZodNumber;
|
|
10
|
+
createdAt: import("zod").ZodNumber;
|
|
11
|
+
updatedAt: import("zod").ZodNumber;
|
|
8
12
|
}, "strip", import("zod").ZodTypeAny, {
|
|
9
13
|
id: string;
|
|
10
14
|
title: string;
|
|
11
15
|
description: string;
|
|
16
|
+
createdAt: number;
|
|
17
|
+
updatedAt: number;
|
|
18
|
+
startsAt: number;
|
|
19
|
+
endsAt: number;
|
|
12
20
|
imageUrl: string;
|
|
13
21
|
ctaUrl: string;
|
|
14
22
|
ctaLabel?: string | undefined;
|
|
@@ -16,22 +24,23 @@ export declare const advertisementSchema: import("zod").ZodObject<{
|
|
|
16
24
|
id: string;
|
|
17
25
|
title: string;
|
|
18
26
|
description: string;
|
|
27
|
+
createdAt: number;
|
|
28
|
+
updatedAt: number;
|
|
29
|
+
startsAt: number;
|
|
30
|
+
endsAt: number;
|
|
19
31
|
imageUrl: string;
|
|
20
32
|
ctaUrl: string;
|
|
21
33
|
ctaLabel?: string | undefined;
|
|
22
34
|
}>;
|
|
23
|
-
export declare const
|
|
24
|
-
id: import("zod").ZodString;
|
|
35
|
+
export declare const createAdvertisementInputSchema: import("zod").ZodObject<{
|
|
25
36
|
title: import("zod").ZodString;
|
|
26
37
|
description: import("zod").ZodString;
|
|
27
38
|
imageUrl: import("zod").ZodString;
|
|
28
39
|
ctaUrl: import("zod").ZodString;
|
|
29
40
|
ctaLabel: import("zod").ZodOptional<import("zod").ZodString>;
|
|
30
|
-
}, {
|
|
31
41
|
startsAt: import("zod").ZodNumber;
|
|
32
42
|
endsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
33
|
-
}
|
|
34
|
-
id: string;
|
|
43
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
35
44
|
title: string;
|
|
36
45
|
description: string;
|
|
37
46
|
startsAt: number;
|
|
@@ -40,7 +49,6 @@ export declare const createAdvertisementScheduleInputSchema: import("zod").ZodOb
|
|
|
40
49
|
endsAt?: number | undefined;
|
|
41
50
|
ctaLabel?: string | undefined;
|
|
42
51
|
}, {
|
|
43
|
-
id: string;
|
|
44
52
|
title: string;
|
|
45
53
|
description: string;
|
|
46
54
|
startsAt: number;
|
|
@@ -49,18 +57,15 @@ export declare const createAdvertisementScheduleInputSchema: import("zod").ZodOb
|
|
|
49
57
|
endsAt?: number | undefined;
|
|
50
58
|
ctaLabel?: string | undefined;
|
|
51
59
|
}>;
|
|
52
|
-
export declare const
|
|
53
|
-
id: import("zod").ZodString;
|
|
60
|
+
export declare const updateAdvertisementInputSchema: import("zod").ZodObject<{
|
|
54
61
|
title: import("zod").ZodString;
|
|
55
62
|
description: import("zod").ZodString;
|
|
56
63
|
imageUrl: import("zod").ZodString;
|
|
57
64
|
ctaUrl: import("zod").ZodString;
|
|
58
65
|
ctaLabel: import("zod").ZodOptional<import("zod").ZodString>;
|
|
59
|
-
}, {
|
|
60
66
|
startsAt: import("zod").ZodNumber;
|
|
61
67
|
endsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
62
|
-
}
|
|
63
|
-
id: string;
|
|
68
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
64
69
|
title: string;
|
|
65
70
|
description: string;
|
|
66
71
|
startsAt: number;
|
|
@@ -69,7 +74,6 @@ export declare const updateAdvertisementScheduleInputSchema: import("zod").ZodOb
|
|
|
69
74
|
endsAt?: number | undefined;
|
|
70
75
|
ctaLabel?: string | undefined;
|
|
71
76
|
}, {
|
|
72
|
-
id: string;
|
|
73
77
|
title: string;
|
|
74
78
|
description: string;
|
|
75
79
|
startsAt: number;
|
|
@@ -78,41 +82,3 @@ export declare const updateAdvertisementScheduleInputSchema: import("zod").ZodOb
|
|
|
78
82
|
endsAt?: number | undefined;
|
|
79
83
|
ctaLabel?: string | undefined;
|
|
80
84
|
}>;
|
|
81
|
-
export declare const advertisementScheduleSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
82
|
-
id: import("zod").ZodString;
|
|
83
|
-
title: import("zod").ZodString;
|
|
84
|
-
description: import("zod").ZodString;
|
|
85
|
-
imageUrl: import("zod").ZodString;
|
|
86
|
-
ctaUrl: import("zod").ZodString;
|
|
87
|
-
ctaLabel: import("zod").ZodOptional<import("zod").ZodString>;
|
|
88
|
-
}, {
|
|
89
|
-
scheduleId: import("zod").ZodString;
|
|
90
|
-
startsAt: import("zod").ZodNumber;
|
|
91
|
-
endsAt: import("zod").ZodNumber;
|
|
92
|
-
createdAt: import("zod").ZodNumber;
|
|
93
|
-
updatedAt: import("zod").ZodNumber;
|
|
94
|
-
}>, "strip", import("zod").ZodTypeAny, {
|
|
95
|
-
id: string;
|
|
96
|
-
title: string;
|
|
97
|
-
description: string;
|
|
98
|
-
createdAt: number;
|
|
99
|
-
updatedAt: number;
|
|
100
|
-
startsAt: number;
|
|
101
|
-
endsAt: number;
|
|
102
|
-
scheduleId: string;
|
|
103
|
-
imageUrl: string;
|
|
104
|
-
ctaUrl: string;
|
|
105
|
-
ctaLabel?: string | undefined;
|
|
106
|
-
}, {
|
|
107
|
-
id: string;
|
|
108
|
-
title: string;
|
|
109
|
-
description: string;
|
|
110
|
-
createdAt: number;
|
|
111
|
-
updatedAt: number;
|
|
112
|
-
startsAt: number;
|
|
113
|
-
endsAt: number;
|
|
114
|
-
scheduleId: string;
|
|
115
|
-
imageUrl: string;
|
|
116
|
-
ctaUrl: string;
|
|
117
|
-
ctaLabel?: string | undefined;
|
|
118
|
-
}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.updateAdvertisementInputSchema = exports.createAdvertisementInputSchema = exports.advertisementSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
exports.advertisementSchema = (0, zod_1.object)({
|
|
6
6
|
id: (0, zod_1.string)(),
|
|
@@ -9,16 +9,18 @@ exports.advertisementSchema = (0, zod_1.object)({
|
|
|
9
9
|
imageUrl: (0, zod_1.string)(),
|
|
10
10
|
ctaUrl: (0, zod_1.string)(),
|
|
11
11
|
ctaLabel: (0, zod_1.string)().optional(),
|
|
12
|
-
});
|
|
13
|
-
exports.createAdvertisementScheduleInputSchema = exports.advertisementSchema.extend({
|
|
14
|
-
startsAt: (0, zod_1.number)(),
|
|
15
|
-
endsAt: (0, zod_1.number)().optional(),
|
|
16
|
-
});
|
|
17
|
-
exports.updateAdvertisementScheduleInputSchema = exports.createAdvertisementScheduleInputSchema;
|
|
18
|
-
exports.advertisementScheduleSchema = exports.advertisementSchema.extend({
|
|
19
|
-
scheduleId: (0, zod_1.string)(),
|
|
20
12
|
startsAt: (0, zod_1.number)(),
|
|
21
13
|
endsAt: (0, zod_1.number)(),
|
|
22
14
|
createdAt: (0, zod_1.number)(),
|
|
23
15
|
updatedAt: (0, zod_1.number)(),
|
|
24
16
|
});
|
|
17
|
+
exports.createAdvertisementInputSchema = (0, zod_1.object)({
|
|
18
|
+
title: (0, zod_1.string)(),
|
|
19
|
+
description: (0, zod_1.string)(),
|
|
20
|
+
imageUrl: (0, zod_1.string)(),
|
|
21
|
+
ctaUrl: (0, zod_1.string)(),
|
|
22
|
+
ctaLabel: (0, zod_1.string)().optional(),
|
|
23
|
+
startsAt: (0, zod_1.number)(),
|
|
24
|
+
endsAt: (0, zod_1.number)().optional(),
|
|
25
|
+
});
|
|
26
|
+
exports.updateAdvertisementInputSchema = exports.createAdvertisementInputSchema;
|
package/dist/schemas/game.d.ts
CHANGED
|
@@ -12798,6 +12798,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12798
12798
|
venueType: z.ZodString;
|
|
12799
12799
|
attendance: z.ZodNumber;
|
|
12800
12800
|
aggregateScore: z.ZodString;
|
|
12801
|
+
group: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12801
12802
|
homeTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
12802
12803
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12803
12804
|
apiTeamId: z.ZodNullable<z.ZodNumber>;
|
|
@@ -12977,6 +12978,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12977
12978
|
aggregateScore: string;
|
|
12978
12979
|
hadExtraTime: boolean;
|
|
12979
12980
|
id?: string | undefined;
|
|
12981
|
+
group?: string | null | undefined;
|
|
12980
12982
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
12981
12983
|
league?: string | undefined;
|
|
12982
12984
|
createdAt?: number | undefined;
|
|
@@ -13188,6 +13190,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13188
13190
|
aggregateScore: string;
|
|
13189
13191
|
hadExtraTime: boolean;
|
|
13190
13192
|
id?: string | undefined;
|
|
13193
|
+
group?: string | null | undefined;
|
|
13191
13194
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
13192
13195
|
league?: string | undefined;
|
|
13193
13196
|
createdAt?: number | undefined;
|
|
@@ -29537,6 +29540,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29537
29540
|
venueType: z.ZodString;
|
|
29538
29541
|
attendance: z.ZodNumber;
|
|
29539
29542
|
aggregateScore: z.ZodString;
|
|
29543
|
+
group: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29540
29544
|
homeTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
29541
29545
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
29542
29546
|
apiTeamId: z.ZodNullable<z.ZodNumber>;
|
|
@@ -29716,6 +29720,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29716
29720
|
aggregateScore: string;
|
|
29717
29721
|
hadExtraTime: boolean;
|
|
29718
29722
|
id?: string | undefined;
|
|
29723
|
+
group?: string | null | undefined;
|
|
29719
29724
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
29720
29725
|
league?: string | undefined;
|
|
29721
29726
|
createdAt?: number | undefined;
|
|
@@ -29927,6 +29932,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29927
29932
|
aggregateScore: string;
|
|
29928
29933
|
hadExtraTime: boolean;
|
|
29929
29934
|
id?: string | undefined;
|
|
29935
|
+
group?: string | null | undefined;
|
|
29930
29936
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
29931
29937
|
league?: string | undefined;
|
|
29932
29938
|
createdAt?: number | undefined;
|
|
@@ -46347,6 +46353,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46347
46353
|
venueType: z.ZodString;
|
|
46348
46354
|
attendance: z.ZodNumber;
|
|
46349
46355
|
aggregateScore: z.ZodString;
|
|
46356
|
+
group: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
46350
46357
|
homeTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
46351
46358
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46352
46359
|
apiTeamId: z.ZodNullable<z.ZodNumber>;
|
|
@@ -46526,6 +46533,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46526
46533
|
aggregateScore: string;
|
|
46527
46534
|
hadExtraTime: boolean;
|
|
46528
46535
|
id?: string | undefined;
|
|
46536
|
+
group?: string | null | undefined;
|
|
46529
46537
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
46530
46538
|
league?: string | undefined;
|
|
46531
46539
|
createdAt?: number | undefined;
|
|
@@ -46737,6 +46745,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46737
46745
|
aggregateScore: string;
|
|
46738
46746
|
hadExtraTime: boolean;
|
|
46739
46747
|
id?: string | undefined;
|
|
46748
|
+
group?: string | null | undefined;
|
|
46740
46749
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
46741
46750
|
league?: string | undefined;
|
|
46742
46751
|
createdAt?: number | undefined;
|
|
@@ -56913,6 +56922,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
56913
56922
|
aggregateScore: string;
|
|
56914
56923
|
hadExtraTime: boolean;
|
|
56915
56924
|
id?: string | undefined;
|
|
56925
|
+
group?: string | null | undefined;
|
|
56916
56926
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
56917
56927
|
league?: string | undefined;
|
|
56918
56928
|
createdAt?: number | undefined;
|
|
@@ -58209,6 +58219,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
58209
58219
|
aggregateScore: string;
|
|
58210
58220
|
hadExtraTime: boolean;
|
|
58211
58221
|
id?: string | undefined;
|
|
58222
|
+
group?: string | null | undefined;
|
|
58212
58223
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
58213
58224
|
league?: string | undefined;
|
|
58214
58225
|
createdAt?: number | undefined;
|
package/dist/schemas/game.js
CHANGED
|
@@ -216,6 +216,8 @@ exports.footballGameSchema = exports.commonGameSchema.extend({
|
|
|
216
216
|
venueType: zod_1.z.string(),
|
|
217
217
|
attendance: zod_1.z.number(),
|
|
218
218
|
aggregateScore: zod_1.z.string(),
|
|
219
|
+
// Group label from sportsdata (e.g. "Group A") for FIFA/CWC group-stage games
|
|
220
|
+
group: zod_1.z.string().nullable().optional(),
|
|
219
221
|
homeTeam: exports.gameTeamSchema.extend({
|
|
220
222
|
scorePeriod1: zod_1.z.number(),
|
|
221
223
|
scorePeriod2: zod_1.z.number(),
|