This commit is contained in:
MartinBraquet
2025-10-30 18:01:49 +01:00
parent e41bc64b0c
commit cae4b15bbb
8 changed files with 59 additions and 31 deletions

View File

@@ -733,6 +733,17 @@ export const API = (_apiTypeCheck = {
summary: 'Delete a bookmarked search by ID',
tag: 'Searches',
},
'auth-google': {
method: 'GET',
authed: false,
rateLimited: true,
returns: {} as any,
props: z.object({
code: z.string(),
}),
summary: 'Google Auth',
tag: 'Authentication',
},
} as const)
export type APIPath = keyof typeof API