@hubs101/js-api-skd-client 1.0.10257 → 1.0.10258

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@ import { ExhibitionReport } from "../types";
3
3
  import { Account, AccountInput, Booking, BookingDetails, DocumentType, Event, EventLocation, EventRegistration, EventServerResponse, EventStream, Exhibition, ExhibitionInput, GroupServerResponse, OptionServerResponse, Stream, StreamInput, TicketServerResponse, UserRegistrationsEvent, ZoomParams } from "./types";
4
4
  export declare const _fetchEventRegistrations: (basePath: string, token: string, eventId: string) => Promise<EventRegistration[]>;
5
5
  export declare const _fetchAccounts: (basePath: string, token: string) => Promise<Account[]>;
6
- export declare const _fetchTickets: (basePath: string, token: string) => Promise<ResponsePaginationType<BookingDetails[]>>;
6
+ export declare const _fetchTickets: (basePath: string, token: string) => Promise<ResponsePaginationType<BookingDetails>>;
7
7
  export declare const _fetchEventsForAccount: (basePath: string, token: string, accountId: string) => Promise<Event[]>;
8
8
  export declare const _fetchExhibitions: (basePath: string, token: string, eventId: string) => Promise<Exhibition[]>;
9
9
  export declare const _fetchEventDetails: (basePath: string, token: string, eventId: string) => Promise<Event>;
@@ -84,7 +84,7 @@ export type BaseAPIType = {
84
84
  unpinExhibition: (basePath: string, token: string, exhibitionId: string) => Promise<boolean>;
85
85
  getPublicRegistrationForm: (basePath: string, eventId: string) => Promise<any>;
86
86
  fetchEventGroups: (basePath: string, token: string, eventId: string) => Promise<GroupServerResponse[]>;
87
- fetchTickets: (basePath: string, token: string) => Promise<ResponsePaginationType<BookingDetails[]>>;
87
+ fetchTickets: (basePath: string, token: string) => Promise<ResponsePaginationType<BookingDetails>>;
88
88
  fetchMyBookings: (basePath: string, token: string) => Promise<ResponsePaginationType<Booking>>;
89
89
  assignTicket: (basePath: string, token: string, bookingId: string, ticketId: string, data: any) => Promise<any>;
90
90
  acceptTicket: (basePath: string, ticketId: string, access: string, body: any) => Promise<any>;
@@ -278,7 +278,7 @@ export type EventAPIType = {
278
278
  pinExhibition: (exhibitionId: string) => Promise<boolean>;
279
279
  unpinExhibition: (exhibitionId: string) => Promise<boolean>;
280
280
  fetchEventGroups: (eventId: string) => Promise<GroupServerResponse[]>;
281
- fetchTickets: () => Promise<ResponsePaginationType<BookingDetails[]>>;
281
+ fetchTickets: () => Promise<ResponsePaginationType<BookingDetails>>;
282
282
  getPublicRegistrationForm: (eventId: string) => Promise<any>;
283
283
  fetchMyBookings: () => Promise<ResponsePaginationType<Booking>>;
284
284
  assignTicket: (bookingId: string, ticketId: string, data: any) => Promise<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10257",
3
+ "version": "1.0.10258",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",