rategame-shared 1.1.263 → 1.1.265
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/models/stadium.d.ts +2 -1
- package/dist/schemas/stadium.d.ts +1540 -0
- package/dist/schemas/stadium.js +12 -1
- package/package.json +1 -1
package/dist/models/stadium.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { stadiumSchema, stadiumRatingSchema, searchStadiumRatingSchema } from "../schemas/stadium";
|
|
2
|
+
import { stadiumSchema, stadiumRatingSchema, searchStadiumRatingSchema, createStadiumRatingSchema } from "../schemas/stadium";
|
|
3
3
|
export type Stadium = z.infer<typeof stadiumSchema>;
|
|
4
4
|
export type StadiumRating = z.infer<typeof stadiumRatingSchema>;
|
|
5
5
|
export type SearchStadiumRating = z.infer<typeof searchStadiumRatingSchema>;
|
|
6
|
+
export type CreateStadiumRating = z.infer<typeof createStadiumRatingSchema>;
|