rategame-shared 1.1.221 → 1.1.222
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/moderation.d.ts +1 -2
- package/dist/schemas/moderation.d.ts +3636 -132
- package/dist/schemas/moderation.js +4 -12
- package/package.json +1 -1
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { banUserSchema, unbanUserSchema, banInfoSchema,
|
|
2
|
+
import { banUserSchema, unbanUserSchema, banInfoSchema, bannedUserSchema, bannedUsersResponseSchema, banActionResponseSchema, banStatusResponseSchema } from "../schemas/moderation";
|
|
3
3
|
export type BanUser = z.infer<typeof banUserSchema>;
|
|
4
4
|
export type UnbanUser = z.infer<typeof unbanUserSchema>;
|
|
5
5
|
export type BanInfo = z.infer<typeof banInfoSchema>;
|
|
6
|
-
export type ModerationUserStats = z.infer<typeof moderationUserStatsSchema>;
|
|
7
6
|
export type BannedUser = z.infer<typeof bannedUserSchema>;
|
|
8
7
|
export type BannedUsersResponse = z.infer<typeof bannedUsersResponseSchema>;
|
|
9
8
|
export type BanActionResponse = z.infer<typeof banActionResponseSchema>;
|