// For a party of 4const { slots } = await getAvailability({ orgSlug: 'restaurant', serviceSlug: 'dinner-reservation', from: '2025-12-03T00:00:00Z', to: '2025-12-03T23:59:59Z', partySize: 4});// Only slots with enough capacity are returned
const { slots } = await getAvailability({...});if (slots.length === 0) { showMessage({ type: 'info', title: 'No availability', message: 'No times available for this period. Try a different date.' }); return;}