rategame-shared 1.1.455 → 1.1.456

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.
@@ -813,7 +813,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
813
813
  customDateFrom: import("zod").ZodOptional<import("zod").ZodString>;
814
814
  customDateTo: import("zod").ZodOptional<import("zod").ZodString>;
815
815
  seasonGroup: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"combined">, import("zod").ZodLiteral<"regularSeason">, import("zod").ZodLiteral<"playoffs">]>>;
816
- teamIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
816
+ teamIds: import("zod").ZodOptional<import("zod").ZodString>;
817
817
  multiTeamSearch: import("zod").ZodOptional<import("zod").ZodString>;
818
818
  }, "strip", import("zod").ZodTypeAny, {
819
819
  offset?: string | undefined;
@@ -843,7 +843,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
843
843
  showEmptyRatings?: string | undefined;
844
844
  mlbTeamLeague?: string | undefined;
845
845
  division?: string | undefined;
846
- teamIds?: string[] | undefined;
846
+ teamIds?: string | undefined;
847
847
  multiTeamSearch?: string | undefined;
848
848
  }, {
849
849
  offset?: string | undefined;
@@ -873,7 +873,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
873
873
  showEmptyRatings?: string | undefined;
874
874
  mlbTeamLeague?: string | undefined;
875
875
  division?: string | undefined;
876
- teamIds?: string[] | undefined;
876
+ teamIds?: string | undefined;
877
877
  multiTeamSearch?: string | undefined;
878
878
  }>;
879
879
  export declare const ratingLikeSchema: import("zod").ZodObject<{
@@ -134,7 +134,7 @@ exports.searchRatingSchema = (0, zod_1.object)({
134
134
  customDateFrom: (0, zod_1.string)().optional(),
135
135
  customDateTo: (0, zod_1.string)().optional(),
136
136
  seasonGroup: sharedTypes_1.seasonGroupingSchema.optional(),
137
- teamIds: (0, zod_1.array)((0, zod_1.string)()).optional(),
137
+ teamIds: (0, zod_1.string)().optional(),
138
138
  multiTeamSearch: (0, zod_1.string)().optional(),
139
139
  });
140
140
  exports.ratingLikeSchema = (0, zod_1.object)({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.455",
3
+ "version": "1.1.456",
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",