rhythia-api 195.0.0 → 196.0.0

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.
@@ -28,6 +28,7 @@ export const Schema = {
28
28
  skill_points: z.number().nullable(),
29
29
  spin_skill_points: z.number().nullable(),
30
30
  total_score: z.number().nullable(),
31
+ verified: z.boolean().nullable(),
31
32
  clans: z
32
33
  .object({
33
34
  id: z.number(),
@@ -131,6 +132,7 @@ export async function getLeaderboard(
131
132
  total_score: user.total_score,
132
133
  username: user.username,
133
134
  clans: user.clans as any,
135
+ verified: user.verified,
134
136
  })),
135
137
  };
136
138
  }
package/index.ts CHANGED
@@ -743,6 +743,7 @@ export const Schema = {
743
743
  skill_points: z.number().nullable(),
744
744
  spin_skill_points: z.number().nullable(),
745
745
  total_score: z.number().nullable(),
746
+ verified: z.boolean().nullable(),
746
747
  clans: z
747
748
  .object({
748
749
  id: z.number(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rhythia-api",
3
- "version": "195.0.0",
3
+ "version": "196.0.0",
4
4
  "main": "index.ts",
5
5
  "author": "online-contributors-cunev",
6
6
  "scripts": {