updates docs

This commit is contained in:
Christian Beutel
2025-02-11 19:08:00 +01:00
parent d8890982de
commit e25875b525
7 changed files with 89 additions and 13 deletions

View File

@@ -2,7 +2,7 @@ import { z, ZodType } from "zod";
import type { Integration } from "../integration";
const StravaSchema = z.object({
clientId: z.number({ coerce: true }).int().positive(),
clientId: z.number({ coerce: true }).int().nonnegative(),
clientSecret: z.string().length(40).optional().or(z.literal('')),
routes: z.boolean(),
activities: z.boolean(),