* feat: split atoms endpoints and add public event type endpoint * Update ConnectedDestinationCalendars import path across platform/atoms components * refactor: update BookingResponse import path from platform-libraries to features/bookings * Move AvailableSlotsType to util.ts and update imports to use GetAvailableSlotsResponse * Refactor import path for RecurringBookingCreateBody type from libraries to types * Fix import path for getBookingForReschedule type from platform-libraries to features * Refactor PublicEventType export location and update import references * Remove @calcom/platform-libraries dependency from atoms package.json * chore(deps): update yarn.lock dependencies * Remove console.log statements and fix indentation in event type hooks * Migrate event type transformers from platform/libraries to api/v2 directory * Remove console.log * Update BookerPlatformWrapper.tsx * Add script to populate empty team slugs with slugified team names * Remove vitest imports * reset platform libraries version * Remove unused orgId comment from useAtomGetPublicEvent hook params * Update useApiV2AvailableSlots.ts * refactor: remove unused exports from lib package index file * Undo: @SomayChauhan Add script to populate empty team slugs with slugified team names * Update booking.tsx * chore: upgrade @calcom/platform-libraries from 0.0.202 to 0.0.205 * chore: bump @calcom/platform-libraries from 0.0.205 to 0.0.206 * chore: configure babel and jest for node module transpilation in api v2 * fix: type errors * Revert "chore: configure babel and jest for node module transpilation in api v2" This reverts commit b2cf172a84fe8953f9497bf6e43874f476fbc04b. * Update calendars.service.ts * chore: bump @calcom/platform-libraries from 0.0.208 to 0.0.209 * fix: add proper type definition for calendar busy times to resolve ts-expect-error * refactor: deprecate v2 old availability endpoints (#21075) Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> * chore: publish platform librareis * feat: add delegation credential fields to calendar service mock * chore: update @calcom/platform-libraries from 0.0.211 to 0.0.213 * fix: skip failing calendar integration test * chore: bump @calcom/platform-libraries from 0.0.213 to 0.0.214 * fix: api/v2 build error * fix: e2e tests --------- Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Co-authored-by: supalarry <laurisskraucis@gmail.com> Co-authored-by: Lauris Skraucis <lauris.skraucis@gmail.com>
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import { useQuery } from "@tanstack/react-query";
|
|
|
|
import { SUCCESS_STATUS } from "@calcom/platform-constants";
|
|
import type {
|
|
GetAvailableSlotsInput_2024_04_15,
|
|
ApiResponse,
|
|
ApiSuccessResponse,
|
|
} from "@calcom/platform-types";
|
|
import type { GetAvailableSlotsResponse } from "@calcom/trpc/server/routers/viewer/slots/util";
|
|
|
|
import http from "../lib/http";
|
|
|
|
export const QUERY_KEY = "get-available-slots";
|
|
|
|
export const useAvailableSlots = ({
|
|
enabled,
|
|
...rest
|
|
}: GetAvailableSlotsInput_2024_04_15 & { enabled: boolean }) => {
|
|
const availableSlots = useQuery({
|
|
queryKey: [
|
|
QUERY_KEY,
|
|
rest.startTime,
|
|
rest.endTime,
|
|
rest.eventTypeId,
|
|
rest.eventTypeSlug,
|
|
rest.isTeamEvent ?? false,
|
|
rest.teamId ?? false,
|
|
rest.usernameList,
|
|
rest.routedTeamMemberIds,
|
|
rest.skipContactOwner,
|
|
rest._shouldServeCache,
|
|
rest.teamMemberEmail,
|
|
],
|
|
queryFn: () => {
|
|
return http
|
|
.get<ApiResponse<GetAvailableSlotsResponse>>("/slots/available", {
|
|
params: rest,
|
|
})
|
|
.then((res) => {
|
|
if (res.data.status === SUCCESS_STATUS) {
|
|
return (res.data as ApiSuccessResponse<GetAvailableSlotsResponse>).data;
|
|
}
|
|
throw new Error(res.data.error.message);
|
|
});
|
|
},
|
|
enabled: enabled,
|
|
});
|
|
return availableSlots;
|
|
};
|