* 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 --------- Co-authored-by: hbjORbj <sldisek783@gmail.com>
39 lines
582 B
TypeScript
39 lines
582 B
TypeScript
export * from "@trpc/react-query/shared";
|
|
|
|
export const ENDPOINTS = [
|
|
"admin",
|
|
"apiKeys",
|
|
"appRoutingForms",
|
|
"apps",
|
|
"auth",
|
|
"availability",
|
|
"appBasecamp3",
|
|
"bookings",
|
|
"deploymentSetup",
|
|
"dsync",
|
|
"eventTypes",
|
|
"features",
|
|
"highPerf",
|
|
"i18n",
|
|
"insights",
|
|
"me",
|
|
"payments",
|
|
"public",
|
|
"timezones",
|
|
"saml",
|
|
"slots",
|
|
"teams",
|
|
"organizations",
|
|
"users",
|
|
"viewer",
|
|
"webhook",
|
|
"workflows",
|
|
"appsRouter",
|
|
"googleWorkspace",
|
|
"oAuth",
|
|
"attributes",
|
|
"delegationCredential",
|
|
"routingForms",
|
|
"delegationCredential",
|
|
] as const;
|