refactor: remove central validation export to improve typescript performance (#2810)
* refactor: remove central validation export to improve typescript performance * fix: missing package exports change in validation package * chore: address pull request feedback
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
import { weatherWidgetSchemas } from "./weather";
|
||||
|
||||
export const widgetSchemas = {
|
||||
weather: weatherWidgetSchemas,
|
||||
};
|
||||
12
packages/validation/src/widgets/media-request.ts
Normal file
12
packages/validation/src/widgets/media-request.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { z } from "zod";
|
||||
|
||||
export const mediaRequestOptionsSchema = z.object({
|
||||
mediaId: z.number(),
|
||||
mediaType: z.enum(["tv", "movie"]),
|
||||
});
|
||||
|
||||
export const mediaRequestRequestSchema = z.object({
|
||||
mediaType: z.enum(["tv", "movie"]),
|
||||
mediaId: z.number(),
|
||||
seasons: z.array(z.number().min(0)).optional(),
|
||||
});
|
||||
@@ -1,29 +0,0 @@
|
||||
import { z } from "zod";
|
||||
|
||||
export const atLocationInput = z.object({
|
||||
longitude: z.number(),
|
||||
latitude: z.number(),
|
||||
});
|
||||
|
||||
export const atLocationOutput = z.object({
|
||||
current_weather: z.object({
|
||||
weathercode: z.number(),
|
||||
temperature: z.number(),
|
||||
windspeed: z.number(),
|
||||
}),
|
||||
daily: z.object({
|
||||
time: z.array(z.string()),
|
||||
weathercode: z.array(z.number()),
|
||||
temperature_2m_max: z.array(z.number()),
|
||||
temperature_2m_min: z.array(z.number()),
|
||||
sunrise: z.array(z.string()),
|
||||
sunset: z.array(z.string()),
|
||||
wind_speed_10m_max: z.array(z.number()),
|
||||
wind_gusts_10m_max: z.array(z.number()),
|
||||
}),
|
||||
});
|
||||
|
||||
export const weatherWidgetSchemas = {
|
||||
atLocationInput,
|
||||
atLocationOutput,
|
||||
};
|
||||
Reference in New Issue
Block a user