* 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>
43 lines
636 B
TypeScript
43 lines
636 B
TypeScript
export * from "@trpc/react-query/shared";
|
|
|
|
export const ENDPOINTS = [
|
|
"admin",
|
|
"apiKeys",
|
|
"appRoutingForms",
|
|
"apps",
|
|
"auth",
|
|
"availability",
|
|
"appBasecamp3",
|
|
"bookings",
|
|
"calendars",
|
|
"calVideo",
|
|
"credentials",
|
|
"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",
|
|
"filterSegments",
|
|
] as const;
|