* perf: Slim down loggedInViewer some more * Move locationOptions to apps router * Moved calVideo related handlers to separate router * Moved calendar related handlers to separate router * Rename * Moved deleteCredential to new router * Moved updateProfile to me router * fix unit test * fix e2e test * tweak * missing --------- Co-authored-by: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com> Co-authored-by: unknown <adhabal2002@gmail.com>
8 lines
205 B
TypeScript
8 lines
205 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ZLocationOptionsInputSchema = z.object({
|
|
teamId: z.number().optional(),
|
|
});
|
|
|
|
export type TLocationOptionsInputSchema = z.infer<typeof ZLocationOptionsInputSchema>;
|