futbol-in-core 1.0.36 → 1.0.37
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.
|
@@ -4,14 +4,16 @@ export declare const crearIncidenciaSchema: z.ZodObject<{
|
|
|
4
4
|
spotId: z.ZodString;
|
|
5
5
|
texto: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6
6
|
}, z.core.$strip>;
|
|
7
|
-
export type
|
|
7
|
+
export type CrearIncidenciaBody = z.infer<typeof crearIncidenciaSchema>;
|
|
8
8
|
export declare const incidenciaIdParamsSchema: z.ZodObject<{
|
|
9
9
|
id: z.ZodString;
|
|
10
10
|
}, z.core.$strip>;
|
|
11
|
+
export type IncidenciaIdParam = z.infer<typeof incidenciaIdParamsSchema>;
|
|
11
12
|
export declare const spotIdParamsSchema: z.ZodObject<{
|
|
12
13
|
spotId: z.ZodString;
|
|
13
14
|
}, z.core.$strip>;
|
|
15
|
+
export type SpotIdParam = z.infer<typeof spotIdParamsSchema>;
|
|
14
16
|
export declare const resolverIncidenciaSchema: z.ZodObject<{
|
|
15
17
|
resuelto: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16
18
|
}, z.core.$strip>;
|
|
17
|
-
export type
|
|
19
|
+
export type ResolverIncidenciaBody = z.infer<typeof resolverIncidenciaSchema>;
|