* refactor: group endpoints by tags * refactor: remove swagger header * feat: managed users docs * feat: gcal docs * feat: provider docs * feat: managed users docs * fix: event-types locations docs * refactor: schedules remove forAtom logic - return just for atoms * feat: schedules docs * feat: schedules docs * fix: me tests * fix: schedules tests * feat: me docs * feat: calendar busy times docs * feat: calendar connected and destination calendars docs * feat: some docs for bookings endpoints * fix: add OAuth id when updating user email + disallow updating username * fix: creating user with same e-mail results in 500 * fix: me e2e tests * fix: event-types e2e tests * fix: oauth-client-users e2e tests * fix: some bookings e2e * revert: re-add name for create update user * fix: schedule create isDefault required * lock file from main * lock file from main * comment broken bookings tests * fix: connected calendars output type * fix: connected calendars output type
80 lines
3.9 KiB
TypeScript
80 lines
3.9 KiB
TypeScript
import { getBookingForReschedule } from "@calcom/features/bookings/lib/get-booking";
|
|
import getBookingInfo from "@calcom/features/bookings/lib/getBookingInfo";
|
|
import handleCancelBooking from "@calcom/features/bookings/lib/handleCancelBooking";
|
|
import * as newBookingMethods from "@calcom/features/bookings/lib/handleNewBooking";
|
|
import { getPublicEvent } from "@calcom/features/eventtypes/lib/getPublicEvent";
|
|
import * as instantMeetingMethods from "@calcom/features/instant-meeting/handleInstantMeeting";
|
|
import getAllUserBookings from "@calcom/lib/bookings/getAllUserBookings";
|
|
import { updateHandler as updateScheduleHandler } from "@calcom/trpc/server/routers/viewer/availability/schedule/update.handler";
|
|
import { getAvailableSlots } from "@calcom/trpc/server/routers/viewer/slots/util";
|
|
import { createNewUsersConnectToOrgIfExists } from "@calcom/trpc/server/routers/viewer/teams/inviteMember/utils";
|
|
|
|
export { slugify } from "@calcom/lib/slugify";
|
|
export { getBookingForReschedule };
|
|
export { updateScheduleHandler };
|
|
export type UpdateScheduleOutputType = Awaited<
|
|
ReturnType<
|
|
typeof import("@calcom/trpc/server/routers/viewer/availability/schedule/update.handler").updateHandler
|
|
>
|
|
>;
|
|
export { getEventTypeById } from "@calcom/lib/event-types/getEventTypeById";
|
|
export { getEventTypesByViewer } from "@calcom/lib/event-types/getEventTypesByViewer";
|
|
export { getEventTypesPublic } from "@calcom/lib/event-types/getEventTypesPublic";
|
|
export { createHandler as createEventType } from "@calcom/trpc/server/routers/viewer/eventTypes/create.handler";
|
|
export { updateHandler as updateEventType } from "@calcom/trpc/server/routers/viewer/eventTypes/update.handler";
|
|
|
|
export { SchedulingType, PeriodType } from "@calcom/prisma/enums";
|
|
|
|
export type { EventType } from "@calcom/lib/event-types/getEventTypeById";
|
|
export type { EventTypesByViewer } from "@calcom/lib/event-types/getEventTypesByViewer";
|
|
export type { EventTypesPublic } from "@calcom/lib/event-types/getEventTypesPublic";
|
|
export type { UpdateEventTypeReturn } from "@calcom/trpc/server/routers/viewer/eventTypes/update.handler";
|
|
|
|
export type PublicEventType = Awaited<ReturnType<typeof getPublicEvent>>;
|
|
export { getPublicEvent };
|
|
export { getUsernameList } from "@calcom/lib/defaultEvents";
|
|
|
|
const handleNewBooking = newBookingMethods.default;
|
|
export { handleNewBooking };
|
|
const handleInstantMeeting = instantMeetingMethods.default;
|
|
export { handleInstantMeeting };
|
|
|
|
export { getAvailableSlots };
|
|
export type AvailableSlotsType = Awaited<ReturnType<typeof getAvailableSlots>>;
|
|
export { handleNewRecurringBooking } from "@calcom/features/bookings/lib/handleNewRecurringBooking";
|
|
|
|
export { getConnectedDestinationCalendars } from "@calcom/lib/getConnectedDestinationCalendars";
|
|
export type { ConnectedDestinationCalendars } from "@calcom/lib/getConnectedDestinationCalendars";
|
|
export { getBusyCalendarTimes } from "@calcom/core/CalendarManager";
|
|
|
|
export {
|
|
transformWorkingHoursForClient,
|
|
transformAvailabilityForClient,
|
|
transformDateOverridesForClient,
|
|
} from "@calcom/lib/schedules/client/transformers";
|
|
export type {
|
|
ScheduleWithAvailabilities,
|
|
ScheduleWithAvailabilitiesForWeb,
|
|
} from "@calcom/lib/schedules/client/transformers";
|
|
export type {
|
|
BookingCreateBody,
|
|
BookingResponse,
|
|
RecurringBookingCreateBody,
|
|
} from "@calcom/features/bookings/types";
|
|
export { HttpError } from "@calcom/lib/http-error";
|
|
export type { AppsStatus } from "@calcom/types/Calendar";
|
|
|
|
export { MINUTES_TO_BOOK } from "@calcom/lib/constants";
|
|
|
|
export { cityTimezonesHandler } from "@calcom/lib/cityTimezonesHandler";
|
|
export type { CityTimezones } from "@calcom/lib/cityTimezonesHandler";
|
|
|
|
export { TRPCError } from "@trpc/server";
|
|
export type { TUpdateInputSchema } from "@calcom/trpc/server/routers/viewer/availability/schedule/update.schema";
|
|
|
|
export { createNewUsersConnectToOrgIfExists };
|
|
|
|
export { getAllUserBookings };
|
|
export { getBookingInfo };
|
|
export { handleCancelBooking };
|