rategame-shared 1.1.375 → 1.1.376

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.
@@ -37038,6 +37038,7 @@ export declare const searchGameSchema: z.ZodObject<{
37038
37038
  ratingMax: z.ZodOptional<z.ZodString>;
37039
37039
  customDateFrom: z.ZodOptional<z.ZodString>;
37040
37040
  customDateTo: z.ZodOptional<z.ZodString>;
37041
+ roundName: z.ZodOptional<z.ZodString>;
37041
37042
  }, "strip", z.ZodTypeAny, {
37042
37043
  offset?: string | undefined;
37043
37044
  round?: string | undefined;
@@ -37047,6 +37048,7 @@ export declare const searchGameSchema: z.ZodObject<{
37047
37048
  limit?: string | undefined;
37048
37049
  customDateFrom?: string | undefined;
37049
37050
  customDateTo?: string | undefined;
37051
+ roundName?: string | undefined;
37050
37052
  season?: string | undefined;
37051
37053
  teamId?: string | undefined;
37052
37054
  feedType?: "newest" | "forYou" | undefined;
@@ -37069,6 +37071,7 @@ export declare const searchGameSchema: z.ZodObject<{
37069
37071
  limit?: string | undefined;
37070
37072
  customDateFrom?: string | undefined;
37071
37073
  customDateTo?: string | undefined;
37074
+ roundName?: string | undefined;
37072
37075
  season?: string | undefined;
37073
37076
  teamId?: string | undefined;
37074
37077
  feedType?: "newest" | "forYou" | undefined;
@@ -338,6 +338,7 @@ exports.searchGameSchema = zod_1.z.object({
338
338
  ratingMax: zod_1.z.string().optional(),
339
339
  customDateFrom: zod_1.z.string().optional(),
340
340
  customDateTo: zod_1.z.string().optional(),
341
+ roundName: zod_1.z.string().optional(),
341
342
  });
342
343
  exports.creatorPickSchema = zod_1.z.object({
343
344
  game: exports.unionGameSchema,
@@ -742,6 +742,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
742
742
  q: import("zod").ZodOptional<import("zod").ZodString>;
743
743
  teamId: import("zod").ZodOptional<import("zod").ZodString>;
744
744
  round: import("zod").ZodOptional<import("zod").ZodString>;
745
+ roundName: import("zod").ZodOptional<import("zod").ZodString>;
745
746
  league: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodUnion<[import("zod").ZodLiteral<"global">, import("zod").ZodString]>]>, import("zod").ZodString]>>;
746
747
  createdAt: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"2025">, import("zod").ZodLiteral<"2024">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
747
748
  sortBy: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">, import("zod").ZodLiteral<"game.startedAt:desc">]>>;
@@ -775,6 +776,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
775
776
  limit?: string | undefined;
776
777
  customDateFrom?: string | undefined;
777
778
  customDateTo?: string | undefined;
779
+ roundName?: string | undefined;
778
780
  comment?: string | undefined;
779
781
  teamId?: string | undefined;
780
782
  sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | "game.startedAt:desc" | undefined;
@@ -801,6 +803,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
801
803
  limit?: string | undefined;
802
804
  customDateFrom?: string | undefined;
803
805
  customDateTo?: string | undefined;
806
+ roundName?: string | undefined;
804
807
  comment?: string | undefined;
805
808
  teamId?: string | undefined;
806
809
  sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | "game.startedAt:desc" | undefined;
@@ -87,6 +87,7 @@ exports.searchRatingSchema = (0, zod_1.object)({
87
87
  q: (0, zod_1.string)().optional(),
88
88
  teamId: (0, zod_1.string)().optional(),
89
89
  round: (0, zod_1.string)().optional(),
90
+ roundName: (0, zod_1.string)().optional(),
90
91
  league: sharedTypes_1.leagueSlug.or((0, zod_1.string)()).optional(),
91
92
  createdAt: sharedTypes_1.timeFilterSchema.optional(),
92
93
  sortBy: sharedTypes_1.ratingSortSchema.optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.375",
3
+ "version": "1.1.376",
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",