rhythia-api 158.0.0 → 159.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.
@@ -19,6 +19,7 @@ export const Schema = {
19
19
  mapHash: z.string(),
20
20
  speed: z.number(),
21
21
  mods: z.array(z.string()),
22
+ additionalData: z.record(z.string(), z.any()),
22
23
  }),
23
24
  }),
24
25
  output: z.object({
@@ -69,6 +70,7 @@ export async function handler({
69
70
  mapHash: data.mapHash,
70
71
  speed: data.speed,
71
72
  mods: data.mods,
73
+ additionalData: data.additionalData,
72
74
  })
73
75
  ) {
74
76
  return NextResponse.json(
package/index.ts CHANGED
@@ -686,6 +686,7 @@ export const Schema = {
686
686
  mapHash: z.string(),
687
687
  speed: z.number(),
688
688
  mods: z.array(z.string()),
689
+ additionalData: z.record(z.string(), z.any()),
689
690
  }),
690
691
  }),
691
692
  output: z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rhythia-api",
3
- "version": "158.0.0",
3
+ "version": "159.0.0",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "update": "bun ./scripts/update.ts",