rategame-shared 1.1.164 → 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.
@@ -3234,9 +3234,11 @@ 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;
3241
+ season: import("zod").ZodOptional<import("zod").ZodString>;
3240
3242
  earliestDate: import("zod").ZodOptional<import("zod").ZodNumber>;
3241
3243
  latestDate: import("zod").ZodOptional<import("zod").ZodNumber>;
3242
3244
  }, "strip", import("zod").ZodTypeAny, {
@@ -3244,13 +3246,17 @@ export declare const roundStatsSchema: import("zod").ZodObject<{
3244
3246
  ratings: number;
3245
3247
  average: string;
3246
3248
  totalGames: number;
3249
+ season?: string | undefined;
3247
3250
  earliestDate?: number | undefined;
3248
3251
  latestDate?: number | undefined;
3252
+ originalRoundName?: string | undefined;
3249
3253
  }, {
3250
3254
  round: string;
3251
3255
  ratings: number;
3252
3256
  average: string;
3253
3257
  totalGames: number;
3258
+ season?: string | undefined;
3254
3259
  earliestDate?: number | undefined;
3255
3260
  latestDate?: number | undefined;
3261
+ originalRoundName?: string | undefined;
3256
3262
  }>;
@@ -147,9 +147,11 @@ 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)(),
154
+ season: (0, zod_1.string)().optional(),
153
155
  earliestDate: (0, zod_1.number)().optional(),
154
156
  latestDate: (0, zod_1.number)().optional(),
155
157
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.164",
3
+ "version": "1.1.166",
4
4
  "description": "This package contains shared resources for the Rate Game project.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",