rategame-shared 1.1.86 → 1.1.87

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.
@@ -520,6 +520,7 @@ export declare const gameSchema: z.ZodObject<{
520
520
  };
521
521
  } | undefined;
522
522
  }>>;
523
+ quarter: z.ZodOptional<z.ZodString>;
523
524
  }, "strip", z.ZodTypeAny, {
524
525
  round: number;
525
526
  status: "live" | "scheduled" | "final";
@@ -561,6 +562,7 @@ export declare const gameSchema: z.ZodObject<{
561
562
  periodType: "quarter" | "half";
562
563
  periodDuration: number;
563
564
  id?: string | undefined;
565
+ quarter?: string | undefined;
564
566
  isClosed?: boolean | undefined;
565
567
  ratingWindowClosedAt?: number | undefined;
566
568
  seriesInfo?: {
@@ -648,6 +650,7 @@ export declare const gameSchema: z.ZodObject<{
648
650
  periodType: "quarter" | "half";
649
651
  periodDuration: number;
650
652
  id?: string | undefined;
653
+ quarter?: string | undefined;
651
654
  isClosed?: boolean | undefined;
652
655
  ratingWindowClosedAt?: number | undefined;
653
656
  seriesInfo?: {
@@ -78,6 +78,7 @@ exports.gameSchema = zod_1.z.object({
78
78
  weightedRating: exports.weightedRatingAggregateSchema.optional(),
79
79
  })
80
80
  .optional(),
81
+ quarter: zod_1.z.string().optional(),
81
82
  });
82
83
  exports.commonGameSchema = zod_1.z.object({
83
84
  id: zod_1.z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.86",
3
+ "version": "1.1.87",
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",