Peter
04/03/2023, 5:01 PMMykhailo Sheremet
04/03/2023, 6:25 PMDom
04/03/2023, 7:01 PM/api/trpc/viewer.public.slots.getSchedule
for all sorts of issues related to the schedule, e.g. faulty calendar connections or case sensitive event type slugs. Not only on our own API calls, but on the booking page as well.
Self-hosted, going to send a link to a test case in our private channel (#C048ERC1X0W)Ben Hybert
04/03/2023, 8:00 PMBen Hybert
04/03/2023, 8:00 PMTomiwa Ademidun
04/04/2023, 6:49 AMCal("on", {
action: "ANY_ACTION_NAME",
callback: (e)=>{
// `data` is properties for the event.
// `type` is the name of the action(You can also call it type of the action.) This would be same as "ANY_ACTION_NAME" except when ANY_ACTION_NAME="*" which listens to all the events.
// `namespace` tells you the Cal namespace for which the event is fired/
const {data, type, namespace} = e.detail;
}
})
The codesandbox snippet shows the following which I can;t use because I am not using the latest calcom but instead using "@calcom/embed-react": "^1.0.2"
, which is compatible with React 17
const Cal = await getCalApi();
Cal("on", {
action: "*",
callback: (e) => {
console.log(e.detail);
}
});
Evandro Caruso
04/04/2023, 1:17 PMDean Zimberg
04/04/2023, 3:00 PMDean Zimberg
04/04/2023, 3:00 PMMars Robertson
04/04/2023, 4:41 PMParl Johnson
04/04/2023, 7:27 PMParl Johnson
04/04/2023, 7:28 PMHunter Peress
04/04/2023, 9:08 PMMattias Wihlner
04/05/2023, 5:29 AMMattias Wihlner
04/05/2023, 5:36 AMMattias Wihlner
04/05/2023, 5:42 AMMattias Wihlner
04/05/2023, 5:45 AMMattias Wihlner
04/05/2023, 6:14 AMMattias Wihlner
04/05/2023, 6:15 AMMattias Wihlner
04/05/2023, 6:15 AMDavid Asabina
04/05/2023, 7:43 AMBen Hybert
04/05/2023, 3:24 PMArpan Patel
04/05/2023, 6:52 PMtanmay kejriwal
04/05/2023, 7:54 PMJosh
04/06/2023, 12:03 AMJosh
04/06/2023, 12:04 AMАртем Нізельник
04/06/2023, 9:51 AMNicole
04/06/2023, 1:40 PMTim Joehnk
04/06/2023, 6:48 PMSylvio Petipermon
04/07/2023, 11:10 PM