* move away from merging twice * move to use loggedIn Router directly * fix router outputs types * fix mocks in create button with teasm tests --------- Co-authored-by: Alex van Andel <me@alexvanandel.com>
45 lines
675 B
TypeScript
45 lines
675 B
TypeScript
export * from "@trpc/react-query/shared";
|
|
|
|
export const ENDPOINTS = [
|
|
"loggedInViewerRouter",
|
|
"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",
|
|
"credits",
|
|
"filterSegments",
|
|
] as const;
|