rategame-shared 1.0.45 → 1.0.46
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
|
@@ -199,6 +199,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
199
199
|
limit: import("zod").ZodOptional<import("zod").ZodString>;
|
|
200
200
|
offset: import("zod").ZodOptional<import("zod").ZodString>;
|
|
201
201
|
gameId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
202
|
+
showComments: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
202
203
|
}, "strip", import("zod").ZodTypeAny, {
|
|
203
204
|
q?: string | undefined;
|
|
204
205
|
teamId?: string | undefined;
|
|
@@ -208,6 +209,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
208
209
|
limit?: string | undefined;
|
|
209
210
|
offset?: string | undefined;
|
|
210
211
|
gameId?: string | undefined;
|
|
212
|
+
showComments?: boolean | undefined;
|
|
211
213
|
}, {
|
|
212
214
|
q?: string | undefined;
|
|
213
215
|
teamId?: string | undefined;
|
|
@@ -217,6 +219,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
217
219
|
limit?: string | undefined;
|
|
218
220
|
offset?: string | undefined;
|
|
219
221
|
gameId?: string | undefined;
|
|
222
|
+
showComments?: boolean | undefined;
|
|
220
223
|
}>;
|
|
221
224
|
export declare const ratingLikeSchema: import("zod").ZodObject<{
|
|
222
225
|
ratingId: import("zod").ZodString;
|
package/dist/schemas/rating.js
CHANGED
|
@@ -41,6 +41,7 @@ exports.searchRatingSchema = (0, zod_1.object)({
|
|
|
41
41
|
limit: (0, zod_1.string)().optional(),
|
|
42
42
|
offset: (0, zod_1.string)().optional(),
|
|
43
43
|
gameId: (0, zod_1.string)().optional(),
|
|
44
|
+
showComments: (0, zod_1.boolean)().optional(),
|
|
44
45
|
});
|
|
45
46
|
exports.ratingLikeSchema = (0, zod_1.object)({
|
|
46
47
|
ratingId: (0, zod_1.string)(),
|