UNPKG

event-app-api

Version:

Package for easy access to Event App API

14 lines (13 loc) 1.48 kB
import { EventMeetingStatisticsItem, MeetingItem } from "./types"; export declare const _fetchMeetings: (basePath: string, token: string) => Promise<MeetingItem[]>; export declare const _fetchArrangedMeetings: (basePath: string, token: string, eventId: string) => Promise<MeetingItem[]>; export declare const _fetchLocation: (basePath: string, token: string, locationId: string) => Promise<Response>; export declare const _cancelMeeting: (basePath: string, token: string, meetingId: string) => Promise<MeetingItem>; export declare const _declineMeeting: (basePath: string, token: string, meetingId: string) => Promise<MeetingItem>; export declare const _confirmMeeting: (basePath: string, token: string, meetingId: string) => Promise<MeetingItem>; export declare const _rateMeeting: (basePath: string, token: string, meetingId: string, rate: string) => Promise<Response>; export declare const _deliverMeeting: (basePath: string, token: string, meetingId: string) => Promise<Response>; export declare const _createMeeting: (basePath: string, token: string, body: MeetingItem) => Promise<MeetingItem>; export declare const _createArrangedMeeting: (basePath: string, token: string, body: MeetingItem) => Promise<MeetingItem>; export declare const _editMeeting: (basePath: string, token: string, body: MeetingItem) => Promise<MeetingItem>; export declare const _fetchEventMeetingsStatistics: (basePath: string, token: string, eventId: string) => Promise<EventMeetingStatisticsItem[]>;