rategame-shared 1.1.284 → 1.1.285
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/list.d.ts +3 -3
- package/dist/schemas/list.js +1 -1
- package/package.json +1 -1
package/dist/schemas/list.d.ts
CHANGED
|
@@ -5268,10 +5268,10 @@ export declare const searchListSchema: z.ZodObject<{
|
|
|
5268
5268
|
limit: z.ZodOptional<z.ZodString>;
|
|
5269
5269
|
userId: z.ZodOptional<z.ZodString>;
|
|
5270
5270
|
showPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
5271
|
-
type: z.ZodOptional<z.ZodEnum<["game", "rating"]>>;
|
|
5271
|
+
type: z.ZodOptional<z.ZodEnum<["game", "rating", "stadium"]>>;
|
|
5272
5272
|
profileId: z.ZodOptional<z.ZodString>;
|
|
5273
5273
|
}, "strip", z.ZodTypeAny, {
|
|
5274
|
-
type?: "rating" | "game" | undefined;
|
|
5274
|
+
type?: "rating" | "stadium" | "game" | undefined;
|
|
5275
5275
|
offset?: string | undefined;
|
|
5276
5276
|
q?: string | undefined;
|
|
5277
5277
|
limit?: string | undefined;
|
|
@@ -5280,7 +5280,7 @@ export declare const searchListSchema: z.ZodObject<{
|
|
|
5280
5280
|
showPrivate?: boolean | undefined;
|
|
5281
5281
|
profileId?: string | undefined;
|
|
5282
5282
|
}, {
|
|
5283
|
-
type?: "rating" | "game" | undefined;
|
|
5283
|
+
type?: "rating" | "stadium" | "game" | undefined;
|
|
5284
5284
|
offset?: string | undefined;
|
|
5285
5285
|
q?: string | undefined;
|
|
5286
5286
|
limit?: string | undefined;
|
package/dist/schemas/list.js
CHANGED
|
@@ -48,6 +48,6 @@ exports.searchListSchema = zod_1.z.object({
|
|
|
48
48
|
limit: zod_1.z.string().optional(),
|
|
49
49
|
userId: zod_1.z.string().optional(),
|
|
50
50
|
showPrivate: zod_1.z.boolean().optional(),
|
|
51
|
-
type: zod_1.z.enum(["game", "rating"]).optional(),
|
|
51
|
+
type: zod_1.z.enum(["game", "rating", "stadium"]).optional(),
|
|
52
52
|
profileId: zod_1.z.string().optional(),
|
|
53
53
|
});
|