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.
- package/dist/schemas/game.d.ts +3 -0
- package/dist/schemas/game.js +1 -0
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -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?: {
|
package/dist/schemas/game.js
CHANGED