43 lines
2.0 KiB
TypeScript
43 lines
2.0 KiB
TypeScript
import { z } from 'zod';
|
|
export declare const updateMapSettingsSchema: z.ZodObject<{
|
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
zoom: z.ZodOptional<z.ZodNumber>;
|
|
walkSheetTitle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
walkSheetSubtitle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
walkSheetFooter: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
qrCode1Url: z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>;
|
|
qrCode1Label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
qrCode2Url: z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>;
|
|
qrCode2Label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
qrCode3Url: z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>;
|
|
qrCode3Label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
}, "strip", z.ZodTypeAny, {
|
|
latitude?: number | undefined;
|
|
longitude?: number | undefined;
|
|
zoom?: number | undefined;
|
|
walkSheetTitle?: string | null | undefined;
|
|
walkSheetSubtitle?: string | null | undefined;
|
|
walkSheetFooter?: string | null | undefined;
|
|
qrCode1Url?: string | null | undefined;
|
|
qrCode1Label?: string | null | undefined;
|
|
qrCode2Url?: string | null | undefined;
|
|
qrCode2Label?: string | null | undefined;
|
|
qrCode3Url?: string | null | undefined;
|
|
qrCode3Label?: string | null | undefined;
|
|
}, {
|
|
latitude?: number | undefined;
|
|
longitude?: number | undefined;
|
|
zoom?: number | undefined;
|
|
walkSheetTitle?: string | null | undefined;
|
|
walkSheetSubtitle?: string | null | undefined;
|
|
walkSheetFooter?: string | null | undefined;
|
|
qrCode1Url?: string | null | undefined;
|
|
qrCode1Label?: string | null | undefined;
|
|
qrCode2Url?: string | null | undefined;
|
|
qrCode2Label?: string | null | undefined;
|
|
qrCode3Url?: string | null | undefined;
|
|
qrCode3Label?: string | null | undefined;
|
|
}>;
|
|
export type UpdateMapSettingsInput = z.infer<typeof updateMapSettingsSchema>;
|
|
//# sourceMappingURL=settings.schemas.d.ts.map
|