v0.9.63 updated for mobile

This commit is contained in:
2026-03-17 21:17:07 -04:00
parent 85fc75dd19
commit 4602c2e586
12 changed files with 641 additions and 21 deletions

View File

@@ -114,7 +114,7 @@ export const api = {
return req('GET', `/schedule${qs ? '?' + qs : ''}`);
},
getEvent: (id) => req('GET', `/schedule/${id}`),
createEvent: (body) => req('POST', '/schedule', body),
createEvent: (body) => req('POST', '/schedule', body), // body may include recurrenceRule: {freq,interval,byDay,ends,endDate,endCount}
updateEvent: (id, body) => req('PATCH', `/schedule/${id}`, body),
deleteEvent: (id) => req('DELETE', `/schedule/${id}`),
setAvailability: (id, response) => req('PUT', `/schedule/${id}/availability`, { response }),