UNPKG

@hubs101/js-api-skd-client

Version:
18 lines (17 loc) 1.88 kB
import { ResponsePaginationType } from "../public/types"; 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 _fetchPersonalMeetings: (basePath: string, token: string, eventId: string, params?: string) => Promise<ResponsePaginationType<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[]>; export declare const _editMeetingNative: (basePath: string, token: string, body: MeetingItem) => Promise<MeetingItem>;