* perf: Move OOO-related tRPC procedures to new routers * Moved test file * push fix for import path in tests * fix trpc response url that we wait for --------- Co-authored-by: sean-brydon <sean@cal.com> Co-authored-by: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com> Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
39 lines
570 B
TypeScript
39 lines
570 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",
|
|
"ooo",
|
|
"payments",
|
|
"public",
|
|
"timezones",
|
|
"saml",
|
|
"slots",
|
|
"teams",
|
|
"organizations",
|
|
"travelSchedules",
|
|
"users",
|
|
"viewer",
|
|
"webhook",
|
|
"workflows",
|
|
"googleWorkspace",
|
|
"oAuth",
|
|
"attributes",
|
|
"delegationCredential",
|
|
"routingForms",
|
|
] as const;
|