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.
@@ -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
  }>;
@@ -49,4 +49,5 @@ exports.searchListSchema = zod_1.z.object({
49
49
  userId: zod_1.z.string().optional(),
50
50
  showPrivate: zod_1.z.boolean().optional(),
51
51
  type: zod_1.z.enum(["game", "rating"]).optional(),
52
+ profileId: zod_1.z.string().optional(),
52
53
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.212",
3
+ "version": "1.1.213",
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",