rategame-shared 1.1.166 → 1.1.168
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,7 +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
|
-
|
|
3237
|
+
originalRoundNames: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
3238
3238
|
ratings: import("zod").ZodNumber;
|
|
3239
3239
|
average: import("zod").ZodString;
|
|
3240
3240
|
totalGames: import("zod").ZodNumber;
|
|
@@ -3249,7 +3249,7 @@ export declare const roundStatsSchema: import("zod").ZodObject<{
|
|
|
3249
3249
|
season?: string | undefined;
|
|
3250
3250
|
earliestDate?: number | undefined;
|
|
3251
3251
|
latestDate?: number | undefined;
|
|
3252
|
-
|
|
3252
|
+
originalRoundNames?: string[] | undefined;
|
|
3253
3253
|
}, {
|
|
3254
3254
|
round: string;
|
|
3255
3255
|
ratings: number;
|
|
@@ -3258,5 +3258,5 @@ export declare const roundStatsSchema: import("zod").ZodObject<{
|
|
|
3258
3258
|
season?: string | undefined;
|
|
3259
3259
|
earliestDate?: number | undefined;
|
|
3260
3260
|
latestDate?: number | undefined;
|
|
3261
|
-
|
|
3261
|
+
originalRoundNames?: string[] | undefined;
|
|
3262
3262
|
}>;
|
package/dist/schemas/rating.js
CHANGED
|
@@ -147,7 +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
|
-
|
|
150
|
+
originalRoundNames: (0, zod_1.array)((0, zod_1.string)()).optional(),
|
|
151
151
|
ratings: (0, zod_1.number)(),
|
|
152
152
|
average: (0, zod_1.string)(),
|
|
153
153
|
totalGames: (0, zod_1.number)(),
|