Files
calendar/packages/trpc/server/routers/loggedInViewer/_router.tsx
T
Keith WilliamsGitHubDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>keith@cal.com <keith@cal.com>Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>keith@cal.com <keith@cal.com>keith@cal.com <keith@cal.com>keith@cal.com <keith@cal.com>devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com>keith@cal.com <keith@cal.com>
6615b885d1 chore: Make app compatible with Fluid Compute (#19841)
* chore: Make app compatible with Fluid Compute

* Removed isCold from me api endpoint

* chore: Remove handler caching for Fluid Compute compatibility (#20692)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: keith@cal.com <keith@cal.com>

* fix client_id issue

* chore: Remove UNSTABLE_HANDLER_CACHE for Fluid Compute compatibility (#20694)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: keith@cal.com <keith@cal.com>

* Fixing types

* Fixing type issues

* chore: Remove importHandler references for Fluid Compute compatibility

Co-Authored-By: keith@cal.com <keith@cal.com>

* chore: Remove importHandler references from attributes router for Fluid Compute compatibility

Co-Authored-By: keith@cal.com <keith@cal.com>

---------

Co-authored-by: devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: keith@cal.com <keith@cal.com>
2025-04-14 18:27:59 -04:00

82 lines
4.3 KiB
TypeScript

import authedProcedure from "../../procedures/authedProcedure";
import { router } from "../../trpc";
import { ZAddNotificationsSubscriptionInputSchema } from "./addNotificationsSubscription.schema";
import { ZAddSecondaryEmailInputSchema } from "./addSecondaryEmail.schema";
import { ZConnectAndJoinInputSchema } from "./connectAndJoin.schema";
import { ZEventTypeOrderInputSchema } from "./eventTypeOrder.schema";
import { ZNoShowInputSchema } from "./markNoShow.schema";
import { teamsAndUserProfilesQuery } from "./procedures/teamsAndUserProfilesQuery";
import { ZRemoveNotificationsSubscriptionInputSchema } from "./removeNotificationsSubscription.schema";
import { ZRoutingFormOrderInputSchema } from "./routingFormOrder.schema";
import { ZSubmitFeedbackInputSchema } from "./submitFeedback.schema";
type AppsRouterHandlerCache = {
stripeCustomer?: typeof import("./stripeCustomer.handler").stripeCustomerHandler;
eventTypeOrder?: typeof import("./eventTypeOrder.handler").eventTypeOrderHandler;
routingFormOrder?: typeof import("./routingFormOrder.handler").routingFormOrderHandler;
submitFeedback?: typeof import("./submitFeedback.handler").submitFeedbackHandler;
teamsAndUserProfilesQuery?: typeof import("./teamsAndUserProfilesQuery.handler").teamsAndUserProfilesQuery;
connectAndJoin?: typeof import("./connectAndJoin.handler").Handler;
addSecondaryEmail?: typeof import("./addSecondaryEmail.handler").addSecondaryEmailHandler;
addNotificationsSubscription?: typeof import("./addNotificationsSubscription.handler").addNotificationsSubscriptionHandler;
removeNotificationsSubscription?: typeof import("./removeNotificationsSubscription.handler").removeNotificationsSubscriptionHandler;
markNoShow?: typeof import("./markNoShow.handler").markNoShow;
};
export const loggedInViewerRouter = router({
stripeCustomer: authedProcedure.query(async ({ ctx }) => {
const { stripeCustomerHandler } = await import("./stripeCustomer.handler");
return stripeCustomerHandler({ ctx });
}),
unlinkConnectedAccount: authedProcedure.mutation(async (opts) => {
const unlinkConnectedAccountHandler = await import("./unlinkConnectedAccount.handler").then(
(mod) => mod.default
);
return unlinkConnectedAccountHandler(opts);
}),
eventTypeOrder: authedProcedure.input(ZEventTypeOrderInputSchema).mutation(async ({ ctx, input }) => {
const { eventTypeOrderHandler } = await import("./eventTypeOrder.handler");
return eventTypeOrderHandler({ ctx, input });
}),
routingFormOrder: authedProcedure.input(ZRoutingFormOrderInputSchema).mutation(async ({ ctx, input }) => {
const { routingFormOrderHandler } = await import("./routingFormOrder.handler");
return routingFormOrderHandler({ ctx, input });
}),
//Comment for PR: eventTypePosition is not used anywhere
submitFeedback: authedProcedure.input(ZSubmitFeedbackInputSchema).mutation(async ({ ctx, input }) => {
const { submitFeedbackHandler } = await import("./submitFeedback.handler");
return submitFeedbackHandler({ ctx, input });
}),
teamsAndUserProfilesQuery,
connectAndJoin: authedProcedure.input(ZConnectAndJoinInputSchema).mutation(async ({ ctx, input }) => {
const { Handler } = await import("./connectAndJoin.handler");
return Handler({ ctx, input });
}),
addSecondaryEmail: authedProcedure.input(ZAddSecondaryEmailInputSchema).mutation(async ({ ctx, input }) => {
const { addSecondaryEmailHandler } = await import("./addSecondaryEmail.handler");
return addSecondaryEmailHandler({ ctx, input });
}),
addNotificationsSubscription: authedProcedure
.input(ZAddNotificationsSubscriptionInputSchema)
.mutation(async ({ ctx, input }) => {
const { addNotificationsSubscriptionHandler } = await import("./addNotificationsSubscription.handler");
return addNotificationsSubscriptionHandler({ ctx, input });
}),
removeNotificationsSubscription: authedProcedure
.input(ZRemoveNotificationsSubscriptionInputSchema)
.mutation(async ({ ctx, input }) => {
const { removeNotificationsSubscriptionHandler } = await import(
"./removeNotificationsSubscription.handler"
);
return removeNotificationsSubscriptionHandler({ ctx, input });
}),
markNoShow: authedProcedure.input(ZNoShowInputSchema).mutation(async (opts) => {
const { markNoShow } = await import("./markNoShow.handler");
return markNoShow(opts);
}),
});