UNPKG

@hubs101/js-api-skd-client

Version:
15 lines (14 loc) 1.54 kB
import { EventMeetingStatisticsItem, MeetingItem } from "./types"; import { APIResponse } from "../../types/base"; 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<APIResponse>; 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<APIResponse>; export declare const _deliverMeeting: (basePath: string, token: string, meetingId: string) => Promise<APIResponse>; 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[]>;