rategame-shared 1.1.212 → 1.1.213
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 -0
- package/dist/schemas/list.js +1 -0
- package/package.json +1 -1
package/dist/schemas/list.d.ts
CHANGED
|
@@ -4284,6 +4284,7 @@ export declare const searchListSchema: z.ZodObject<{
|
|
|
4284
4284
|
userId: z.ZodOptional<z.ZodString>;
|
|
4285
4285
|
showPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
4286
4286
|
type: z.ZodOptional<z.ZodEnum<["game", "rating"]>>;
|
|
4287
|
+
profileId: z.ZodOptional<z.ZodString>;
|
|
4287
4288
|
}, "strip", z.ZodTypeAny, {
|
|
4288
4289
|
type?: "rating" | "game" | undefined;
|
|
4289
4290
|
offset?: string | undefined;
|
|
@@ -4292,6 +4293,7 @@ export declare const searchListSchema: z.ZodObject<{
|
|
|
4292
4293
|
sortBy?: string | undefined;
|
|
4293
4294
|
userId?: string | undefined;
|
|
4294
4295
|
showPrivate?: boolean | undefined;
|
|
4296
|
+
profileId?: string | undefined;
|
|
4295
4297
|
}, {
|
|
4296
4298
|
type?: "rating" | "game" | undefined;
|
|
4297
4299
|
offset?: string | undefined;
|
|
@@ -4300,4 +4302,5 @@ export declare const searchListSchema: z.ZodObject<{
|
|
|
4300
4302
|
sortBy?: string | undefined;
|
|
4301
4303
|
userId?: string | undefined;
|
|
4302
4304
|
showPrivate?: boolean | undefined;
|
|
4305
|
+
profileId?: string | undefined;
|
|
4303
4306
|
}>;
|
package/dist/schemas/list.js
CHANGED