rategame-shared 1.1.454 → 1.1.455

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.
@@ -814,6 +814,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
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
816
  teamIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
817
+ multiTeamSearch: import("zod").ZodOptional<import("zod").ZodString>;
817
818
  }, "strip", import("zod").ZodTypeAny, {
818
819
  offset?: string | undefined;
819
820
  round?: string | undefined;
@@ -843,6 +844,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
843
844
  mlbTeamLeague?: string | undefined;
844
845
  division?: string | undefined;
845
846
  teamIds?: string[] | undefined;
847
+ multiTeamSearch?: string | undefined;
846
848
  }, {
847
849
  offset?: string | undefined;
848
850
  round?: string | undefined;
@@ -872,6 +874,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
872
874
  mlbTeamLeague?: string | undefined;
873
875
  division?: string | undefined;
874
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;
@@ -135,6 +135,7 @@ exports.searchRatingSchema = (0, zod_1.object)({
135
135
  customDateTo: (0, zod_1.string)().optional(),
136
136
  seasonGroup: sharedTypes_1.seasonGroupingSchema.optional(),
137
137
  teamIds: (0, zod_1.array)((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.455",
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",