rategame-shared 1.1.165 → 1.1.166
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
|
@@ -3234,6 +3234,7 @@ export declare const seasonGroupStatsSchema: import("zod").ZodObject<{
|
|
|
3234
3234
|
}>;
|
|
3235
3235
|
export declare const roundStatsSchema: import("zod").ZodObject<{
|
|
3236
3236
|
round: import("zod").ZodString;
|
|
3237
|
+
originalRoundName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3237
3238
|
ratings: import("zod").ZodNumber;
|
|
3238
3239
|
average: import("zod").ZodString;
|
|
3239
3240
|
totalGames: import("zod").ZodNumber;
|
|
@@ -3248,6 +3249,7 @@ export declare const roundStatsSchema: import("zod").ZodObject<{
|
|
|
3248
3249
|
season?: string | undefined;
|
|
3249
3250
|
earliestDate?: number | undefined;
|
|
3250
3251
|
latestDate?: number | undefined;
|
|
3252
|
+
originalRoundName?: string | undefined;
|
|
3251
3253
|
}, {
|
|
3252
3254
|
round: string;
|
|
3253
3255
|
ratings: number;
|
|
@@ -3256,4 +3258,5 @@ export declare const roundStatsSchema: import("zod").ZodObject<{
|
|
|
3256
3258
|
season?: string | undefined;
|
|
3257
3259
|
earliestDate?: number | undefined;
|
|
3258
3260
|
latestDate?: number | undefined;
|
|
3261
|
+
originalRoundName?: string | undefined;
|
|
3259
3262
|
}>;
|
package/dist/schemas/rating.js
CHANGED
|
@@ -147,6 +147,7 @@ exports.seasonGroupStatsSchema = (0, zod_1.object)({
|
|
|
147
147
|
});
|
|
148
148
|
exports.roundStatsSchema = (0, zod_1.object)({
|
|
149
149
|
round: (0, zod_1.string)(),
|
|
150
|
+
originalRoundName: (0, zod_1.string)().optional(),
|
|
150
151
|
ratings: (0, zod_1.number)(),
|
|
151
152
|
average: (0, zod_1.string)(),
|
|
152
153
|
totalGames: (0, zod_1.number)(),
|