bulltrackers-module 1.0.691 → 1.0.692
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.
|
@@ -40,7 +40,7 @@ const watchlistSubscribeSchema = z.object({
|
|
|
40
40
|
|
|
41
41
|
const dynamicMatchesSchema = z.object({
|
|
42
42
|
computationName: z.string().min(1).max(200),
|
|
43
|
-
parameters: z.record(z.
|
|
43
|
+
parameters: z.record(z.string(), z.union([z.number(), z.string(), z.boolean()])).optional(), // Flexible parameters object for thresholds
|
|
44
44
|
timeRange: z.enum(['today', 'last_7_days', 'last_30_days']).optional(),
|
|
45
45
|
limit: z.number().int().min(1).max(500).optional()
|
|
46
46
|
});
|