rategame-shared 1.1.266 → 1.1.267

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.
@@ -83,6 +83,7 @@ export declare const stadiumSchema: z.ZodObject<{
83
83
  options: Record<number, number>;
84
84
  };
85
85
  }>>;
86
+ specialEvent: z.ZodOptional<z.ZodBoolean>;
86
87
  }, "strip", z.ZodTypeAny, {
87
88
  city: string;
88
89
  venueName: string;
@@ -106,6 +107,7 @@ export declare const stadiumSchema: z.ZodObject<{
106
107
  } | undefined;
107
108
  teamIds?: string[] | undefined;
108
109
  teamLeagues?: string[] | undefined;
110
+ specialEvent?: boolean | undefined;
109
111
  }, {
110
112
  city: string;
111
113
  venueName: string;
@@ -129,6 +131,7 @@ export declare const stadiumSchema: z.ZodObject<{
129
131
  } | undefined;
130
132
  teamIds?: string[] | undefined;
131
133
  teamLeagues?: string[] | undefined;
134
+ specialEvent?: boolean | undefined;
132
135
  }>;
133
136
  export declare const stadiumRatingSchema: z.ZodObject<{
134
137
  id: z.ZodString;
@@ -1128,6 +1131,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
1128
1131
  options: Record<number, number>;
1129
1132
  };
1130
1133
  }>>;
1134
+ specialEvent: z.ZodOptional<z.ZodBoolean>;
1131
1135
  }, "strip", z.ZodTypeAny, {
1132
1136
  city: string;
1133
1137
  venueName: string;
@@ -1151,6 +1155,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
1151
1155
  } | undefined;
1152
1156
  teamIds?: string[] | undefined;
1153
1157
  teamLeagues?: string[] | undefined;
1158
+ specialEvent?: boolean | undefined;
1154
1159
  }, {
1155
1160
  city: string;
1156
1161
  venueName: string;
@@ -1174,6 +1179,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
1174
1179
  } | undefined;
1175
1180
  teamIds?: string[] | undefined;
1176
1181
  teamLeagues?: string[] | undefined;
1182
+ specialEvent?: boolean | undefined;
1177
1183
  }>;
1178
1184
  gamesAttended: z.ZodOptional<z.ZodNumber>;
1179
1185
  type: z.ZodUnion<[z.ZodLiteral<"stadium">, z.ZodLiteral<"game">]>;
@@ -1415,6 +1421,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
1415
1421
  } | undefined;
1416
1422
  teamIds?: string[] | undefined;
1417
1423
  teamLeagues?: string[] | undefined;
1424
+ specialEvent?: boolean | undefined;
1418
1425
  };
1419
1426
  updatedAt?: number | undefined;
1420
1427
  comment?: string | undefined;
@@ -1502,6 +1509,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
1502
1509
  } | undefined;
1503
1510
  teamIds?: string[] | undefined;
1504
1511
  teamLeagues?: string[] | undefined;
1512
+ specialEvent?: boolean | undefined;
1505
1513
  };
1506
1514
  updatedAt?: number | undefined;
1507
1515
  comment?: string | undefined;
@@ -2575,6 +2583,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<Omit<{
2575
2583
  options: Record<number, number>;
2576
2584
  };
2577
2585
  }>>;
2586
+ specialEvent: z.ZodOptional<z.ZodBoolean>;
2578
2587
  }, "strip", z.ZodTypeAny, {
2579
2588
  city: string;
2580
2589
  venueName: string;
@@ -2598,6 +2607,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<Omit<{
2598
2607
  } | undefined;
2599
2608
  teamIds?: string[] | undefined;
2600
2609
  teamLeagues?: string[] | undefined;
2610
+ specialEvent?: boolean | undefined;
2601
2611
  }, {
2602
2612
  city: string;
2603
2613
  venueName: string;
@@ -2621,6 +2631,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<Omit<{
2621
2631
  } | undefined;
2622
2632
  teamIds?: string[] | undefined;
2623
2633
  teamLeagues?: string[] | undefined;
2634
+ specialEvent?: boolean | undefined;
2624
2635
  }>;
2625
2636
  gamesAttended: z.ZodOptional<z.ZodNumber>;
2626
2637
  type: z.ZodUnion<[z.ZodLiteral<"stadium">, z.ZodLiteral<"game">]>;
@@ -2861,6 +2872,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<Omit<{
2861
2872
  } | undefined;
2862
2873
  teamIds?: string[] | undefined;
2863
2874
  teamLeagues?: string[] | undefined;
2875
+ specialEvent?: boolean | undefined;
2864
2876
  };
2865
2877
  updatedAt?: number | undefined;
2866
2878
  comment?: string | undefined;
@@ -2947,6 +2959,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<Omit<{
2947
2959
  } | undefined;
2948
2960
  teamIds?: string[] | undefined;
2949
2961
  teamLeagues?: string[] | undefined;
2962
+ specialEvent?: boolean | undefined;
2950
2963
  };
2951
2964
  updatedAt?: number | undefined;
2952
2965
  comment?: string | undefined;
@@ -43,6 +43,7 @@ exports.stadiumSchema = zod_1.z.object({
43
43
  teamIds: zod_1.z.array(zod_1.z.string()).optional(),
44
44
  teamLeagues: zod_1.z.array(zod_1.z.string()).optional(),
45
45
  rating: exports.stadiumRatingAggregateSchema.optional(),
46
+ specialEvent: zod_1.z.boolean().optional(),
46
47
  });
47
48
  exports.stadiumRatingSchema = zod_1.z.object({
48
49
  id: zod_1.z.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.266",
3
+ "version": "1.1.267",
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",