rategame-shared 1.1.454 → 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,8 @@ 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
+ multiTeamSearch: import("zod").ZodOptional<import("zod").ZodString>;
817
818
  }, "strip", import("zod").ZodTypeAny, {
818
819
  offset?: string | undefined;
819
820
  round?: string | undefined;
@@ -842,7 +843,8 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
842
843
  showEmptyRatings?: string | undefined;
843
844
  mlbTeamLeague?: string | undefined;
844
845
  division?: string | undefined;
845
- teamIds?: string[] | undefined;
846
+ teamIds?: string | undefined;
847
+ multiTeamSearch?: string | undefined;
846
848
  }, {
847
849
  offset?: string | undefined;
848
850
  round?: string | undefined;
@@ -871,7 +873,8 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
871
873
  showEmptyRatings?: string | undefined;
872
874
  mlbTeamLeague?: string | undefined;
873
875
  division?: string | undefined;
874
- teamIds?: string[] | undefined;
876
+ teamIds?: string | undefined;
877
+ multiTeamSearch?: string | undefined;
875
878
  }>;
876
879
  export declare const ratingLikeSchema: import("zod").ZodObject<{
877
880
  ratingId: import("zod").ZodString;
@@ -134,7 +134,8 @@ 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
+ multiTeamSearch: (0, zod_1.string)().optional(),
138
139
  });
139
140
  exports.ratingLikeSchema = (0, zod_1.object)({
140
141
  ratingId: (0, zod_1.string)(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.454",
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",