rategame-shared 1.1.162 → 1.1.163
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/rating.d.ts
CHANGED
|
@@ -3212,6 +3212,7 @@ export declare const seasonGroupStatsSchema: import("zod").ZodObject<{
|
|
|
3212
3212
|
ratings: import("zod").ZodNumber;
|
|
3213
3213
|
average: import("zod").ZodString;
|
|
3214
3214
|
type: import("zod").ZodUnion<[import("zod").ZodLiteral<"combined">, import("zod").ZodLiteral<"regularSeason">, import("zod").ZodLiteral<"playoffs">]>;
|
|
3215
|
+
totalGames: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3215
3216
|
earliestDate: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3216
3217
|
latestDate: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3217
3218
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -3219,6 +3220,7 @@ export declare const seasonGroupStatsSchema: import("zod").ZodObject<{
|
|
|
3219
3220
|
ratings: number;
|
|
3220
3221
|
season: string;
|
|
3221
3222
|
average: string;
|
|
3223
|
+
totalGames?: number | undefined;
|
|
3222
3224
|
earliestDate?: number | undefined;
|
|
3223
3225
|
latestDate?: number | undefined;
|
|
3224
3226
|
}, {
|
|
@@ -3226,6 +3228,7 @@ export declare const seasonGroupStatsSchema: import("zod").ZodObject<{
|
|
|
3226
3228
|
ratings: number;
|
|
3227
3229
|
season: string;
|
|
3228
3230
|
average: string;
|
|
3231
|
+
totalGames?: number | undefined;
|
|
3229
3232
|
earliestDate?: number | undefined;
|
|
3230
3233
|
latestDate?: number | undefined;
|
|
3231
3234
|
}>;
|
package/dist/schemas/rating.js
CHANGED
|
@@ -141,6 +141,7 @@ exports.seasonGroupStatsSchema = (0, zod_1.object)({
|
|
|
141
141
|
ratings: (0, zod_1.number)(),
|
|
142
142
|
average: (0, zod_1.string)(),
|
|
143
143
|
type: sharedTypes_1.seasonGroupingSchema,
|
|
144
|
+
totalGames: (0, zod_1.number)().optional(),
|
|
144
145
|
earliestDate: (0, zod_1.number)().optional(),
|
|
145
146
|
latestDate: (0, zod_1.number)().optional(),
|
|
146
147
|
});
|