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.
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -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").
|
|
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
|
|
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
|
|
876
|
+
teamIds?: string | undefined;
|
|
877
877
|
multiTeamSearch?: string | undefined;
|
|
878
878
|
}>;
|
|
879
879
|
export declare const ratingLikeSchema: import("zod").ZodObject<{
|
package/dist/schemas/rating.js
CHANGED
|
@@ -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.
|
|
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)({
|