normalize project structure: src/client + src/server + src/shared, standardize biome to lineWidth 80
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { z } from "zod"
|
||||
|
||||
export const steamConfigSchema = z.object({
|
||||
apiKey: z.string().min(1, "API key is required"),
|
||||
steamId: z.string().min(1, "Steam ID is required"),
|
||||
})
|
||||
export type SteamConfig = z.infer<typeof steamConfigSchema>
|
||||
|
||||
export const gogConfigSchema = z.object({
|
||||
accessToken: z.string(),
|
||||
refreshToken: z.string(),
|
||||
userId: z.string(),
|
||||
})
|
||||
export type GogConfig = z.infer<typeof gogConfigSchema>
|
||||
Reference in New Issue
Block a user