rategame-shared 1.1.85 → 1.1.86
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 -3
- package/dist/schemas/game.js +1 -1
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -7863,7 +7863,7 @@ export declare const searchGameSchema: z.ZodObject<{
|
|
|
7863
7863
|
sortBy: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating.avg:asc">, z.ZodLiteral<"rating.avg:desc">, z.ZodLiteral<"startedAt:asc">, z.ZodLiteral<"startedAt:desc">, z.ZodLiteral<"ratings.weightedRating.avg:asc">, z.ZodLiteral<"ratings.weightedRating.avg:desc">]>>;
|
|
7864
7864
|
limit: z.ZodOptional<z.ZodString>;
|
|
7865
7865
|
offset: z.ZodOptional<z.ZodString>;
|
|
7866
|
-
filterNoRatingAvg: z.ZodOptional<z.
|
|
7866
|
+
filterNoRatingAvg: z.ZodOptional<z.ZodString>;
|
|
7867
7867
|
}, "strip", z.ZodTypeAny, {
|
|
7868
7868
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "mls" | "cbb" | "cfb" | "epl";
|
|
7869
7869
|
offset?: string | undefined;
|
|
@@ -7873,7 +7873,7 @@ export declare const searchGameSchema: z.ZodObject<{
|
|
|
7873
7873
|
teamId?: string | undefined;
|
|
7874
7874
|
sortBy?: "rating.avg:asc" | "rating.avg:desc" | "startedAt:asc" | "startedAt:desc" | "ratings.weightedRating.avg:asc" | "ratings.weightedRating.avg:desc" | undefined;
|
|
7875
7875
|
limit?: string | undefined;
|
|
7876
|
-
filterNoRatingAvg?:
|
|
7876
|
+
filterNoRatingAvg?: string | undefined;
|
|
7877
7877
|
}, {
|
|
7878
7878
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "mls" | "cbb" | "cfb" | "epl";
|
|
7879
7879
|
offset?: string | undefined;
|
|
@@ -7883,5 +7883,5 @@ export declare const searchGameSchema: z.ZodObject<{
|
|
|
7883
7883
|
teamId?: string | undefined;
|
|
7884
7884
|
sortBy?: "rating.avg:asc" | "rating.avg:desc" | "startedAt:asc" | "startedAt:desc" | "ratings.weightedRating.avg:asc" | "ratings.weightedRating.avg:desc" | undefined;
|
|
7885
7885
|
limit?: string | undefined;
|
|
7886
|
-
filterNoRatingAvg?:
|
|
7886
|
+
filterNoRatingAvg?: string | undefined;
|
|
7887
7887
|
}>;
|
package/dist/schemas/game.js
CHANGED