* perf: Slim down loggedInViewer tRPC router * Fixed trpc client calls for new routes * Moved bookingUnconfirmedCount * Moved getUserTopBanners to me router * Moved shouldVerifyEmail to me router * Moved i18n from public to its own router * fix ssrInit * fix ssrInit usage * fix type check * better naming * fix * fix * Fix types * Removed used of importHandler * perf: Move apps procedures off of loggedInViewer * Moved 2 more apps-related procedures --------- Co-authored-by: hbjORbj <sldisek783@gmail.com>
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ZUpdateUserDefaultConferencingAppInputSchema = z.object({
|
|
appSlug: z.string().optional(),
|
|
appLink: z.string().optional(),
|
|
});
|
|
|
|
export type TUpdateUserDefaultConferencingAppInputSchema = z.infer<
|
|
typeof ZUpdateUserDefaultConferencingAppInputSchema
|
|
>;
|