rategame-shared 1.1.164 → 1.1.165
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
|
@@ -3237,6 +3237,7 @@ export declare const roundStatsSchema: import("zod").ZodObject<{
|
|
|
3237
3237
|
ratings: import("zod").ZodNumber;
|
|
3238
3238
|
average: import("zod").ZodString;
|
|
3239
3239
|
totalGames: import("zod").ZodNumber;
|
|
3240
|
+
season: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3240
3241
|
earliestDate: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3241
3242
|
latestDate: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3242
3243
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -3244,6 +3245,7 @@ export declare const roundStatsSchema: import("zod").ZodObject<{
|
|
|
3244
3245
|
ratings: number;
|
|
3245
3246
|
average: string;
|
|
3246
3247
|
totalGames: number;
|
|
3248
|
+
season?: string | undefined;
|
|
3247
3249
|
earliestDate?: number | undefined;
|
|
3248
3250
|
latestDate?: number | undefined;
|
|
3249
3251
|
}, {
|
|
@@ -3251,6 +3253,7 @@ export declare const roundStatsSchema: import("zod").ZodObject<{
|
|
|
3251
3253
|
ratings: number;
|
|
3252
3254
|
average: string;
|
|
3253
3255
|
totalGames: number;
|
|
3256
|
+
season?: string | undefined;
|
|
3254
3257
|
earliestDate?: number | undefined;
|
|
3255
3258
|
latestDate?: number | undefined;
|
|
3256
3259
|
}>;
|
package/dist/schemas/rating.js
CHANGED
|
@@ -150,6 +150,7 @@ exports.roundStatsSchema = (0, zod_1.object)({
|
|
|
150
150
|
ratings: (0, zod_1.number)(),
|
|
151
151
|
average: (0, zod_1.string)(),
|
|
152
152
|
totalGames: (0, zod_1.number)(),
|
|
153
|
+
season: (0, zod_1.string)().optional(),
|
|
153
154
|
earliestDate: (0, zod_1.number)().optional(),
|
|
154
155
|
latestDate: (0, zod_1.number)().optional(),
|
|
155
156
|
});
|