rategame-shared 1.1.280 → 1.1.281

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.
@@ -1022,13 +1022,13 @@ export declare const listSchema: z.ZodObject<{
1022
1022
  badge?: string | undefined;
1023
1023
  }>;
1024
1024
  itemIds: z.ZodArray<z.ZodString, "many">;
1025
- type: z.ZodEnum<["game", "rating"]>;
1025
+ type: z.ZodEnum<["game", "rating", "stadium"]>;
1026
1026
  league: z.ZodOptional<z.ZodString>;
1027
1027
  season: z.ZodOptional<z.ZodString>;
1028
1028
  public: z.ZodBoolean;
1029
1029
  likesCount: z.ZodOptional<z.ZodNumber>;
1030
1030
  }, "strip", z.ZodTypeAny, {
1031
- type: "rating" | "game";
1031
+ type: "rating" | "stadium" | "game";
1032
1032
  id: string;
1033
1033
  name: string;
1034
1034
  public: boolean;
@@ -1047,7 +1047,7 @@ export declare const listSchema: z.ZodObject<{
1047
1047
  season?: string | undefined;
1048
1048
  likesCount?: number | undefined;
1049
1049
  }, {
1050
- type: "rating" | "game";
1050
+ type: "rating" | "stadium" | "game";
1051
1051
  id: string;
1052
1052
  name: string;
1053
1053
  public: boolean;
@@ -2089,13 +2089,13 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
2089
2089
  badge?: string | undefined;
2090
2090
  }>;
2091
2091
  itemIds: z.ZodArray<z.ZodString, "many">;
2092
- type: z.ZodEnum<["game", "rating"]>;
2092
+ type: z.ZodEnum<["game", "rating", "stadium"]>;
2093
2093
  league: z.ZodOptional<z.ZodString>;
2094
2094
  season: z.ZodOptional<z.ZodString>;
2095
2095
  public: z.ZodBoolean;
2096
2096
  likesCount: z.ZodOptional<z.ZodNumber>;
2097
2097
  }, "id" | "createdAt" | "updatedAt">, "strip", z.ZodTypeAny, {
2098
- type: "rating" | "game";
2098
+ type: "rating" | "stadium" | "game";
2099
2099
  name: string;
2100
2100
  public: boolean;
2101
2101
  user: {
@@ -2111,7 +2111,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
2111
2111
  season?: string | undefined;
2112
2112
  likesCount?: number | undefined;
2113
2113
  }, {
2114
- type: "rating" | "game";
2114
+ type: "rating" | "stadium" | "game";
2115
2115
  name: string;
2116
2116
  public: boolean;
2117
2117
  user: {
@@ -11,7 +11,7 @@ exports.listSchema = zod_1.z.object({
11
11
  updatedAt: zod_1.z.number().optional(),
12
12
  user: user_1.reducedUserSchema,
13
13
  itemIds: zod_1.z.array(zod_1.z.string()),
14
- type: zod_1.z.enum(["game", "rating"]),
14
+ type: zod_1.z.enum(["game", "rating", "stadium"]),
15
15
  league: zod_1.z.string().optional(),
16
16
  season: zod_1.z.string().optional(),
17
17
  public: zod_1.z.boolean(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.280",
3
+ "version": "1.1.281",
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",