discogs-mcp-server 0.4.0 → 0.4.2

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/index.js CHANGED
@@ -4,7 +4,7 @@ import dotenv from 'dotenv';
4
4
  import { z } from 'zod';
5
5
 
6
6
  // src/version.ts
7
- var VERSION = "0.4.0";
7
+ var VERSION = "0.4.2";
8
8
 
9
9
  // src/config.ts
10
10
  dotenv.config();
@@ -177,8 +177,8 @@ var ImageSchema = z.object({
177
177
  });
178
178
  var FilteredResponseSchema = z.object({
179
179
  filters: z.object({
180
- applied: z.record(z.array(z.any())).default({}),
181
- available: z.record(z.record(z.number().int())).default({})
180
+ applied: z.record(z.string(), z.array(z.any())).default({}),
181
+ available: z.record(z.string(), z.record(z.string(), z.number().int())).default({})
182
182
  }),
183
183
  filter_facets: z.array(
184
184
  z.object({