@hubs101/js-api-skd-client 1.0.10417 → 1.0.10418

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.
@@ -1,4 +1,4 @@
1
- import { Attendee, AttendeeInput, AttendeeProfile, Note, NoteUpdateInput, UserNotification } from "./types";
1
+ import { Attendee, AttendeeInput, AttendeeProfile, Note, NoteUpdateInput, SuccessResponse, UserNotification } from "./types";
2
2
  import { Response } from "../../types/base";
3
3
  import { Answer } from "../event/types";
4
4
  import { AttendeeReport } from "../types";
@@ -42,4 +42,4 @@ export declare const _addOnsiteAttendee: (basePath: string, token: string, atten
42
42
  export declare const _resendWelcomeEmail: (basePath: string, token: string, attendeeId: string) => Promise<any>;
43
43
  export declare const _hideAttendee: (basePath: string, token: string, attendeeId: string) => Promise<any>;
44
44
  export declare const _showAttendee: (basePath: string, token: string, attendeeId: string) => Promise<any>;
45
- export declare const _updateVisibilityAttendee: (basePath: string, token: string, attendeeId: string, visibility: string) => Promise<any>;
45
+ export declare const _updateVisibilityAttendee: (basePath: string, token: string, attendeeId: string, visibility: string) => Promise<SuccessResponse>;
@@ -1,4 +1,4 @@
1
- import { Attendee, AttendeeInput, AttendeeProfile, Note, NoteUpdateInput, UserNotification } from "../api/attendee/types";
1
+ import { Attendee, AttendeeInput, AttendeeProfile, Note, NoteUpdateInput, SuccessResponse, UserNotification } from "../api/attendee/types";
2
2
  import { GroupInputType, GroupResponseType, PublicGroupResponseType, RegisterManagerInput, ResponseAccountEventsType } from "../api/authentication/types";
3
3
  import { LoginResponse, SendResetPasswordBody } from "../api/context/types";
4
4
  import { Account, AccountInput, Answer, BlogPage, BlogPageInput, Booking, BookingDetails, DiscountServerResponse, DocumentType, Event, EventLocation, EventRegistration, EventServerResponse, EventStream, Exhibition, ExhibitionInput, GroupServerResponse, GroupType, OptionServerResponse, Portfolio, PortfolioInput, Stream, StreamInput, TicketServerResponse, UserRegistrationsEvent, ZoomParams } from "../api/event/types";
@@ -89,7 +89,7 @@ export type BaseAPIType = {
89
89
  unpinExhibition: (basePath: string, token: string, exhibitionId: string) => Promise<boolean>;
90
90
  getPublicRegistrationForm: (basePath: string, eventId: string) => Promise<any>;
91
91
  fetchEventGroups: (basePath: string, token: string, eventId: string) => Promise<GroupServerResponse[]>;
92
- updateVisibilityAttendee: (basePath: string, token: string, attendeeId: string, visibility: string) => Promise<any>;
92
+ updateVisibilityAttendee: (basePath: string, token: string, attendeeId: string, visibility: string) => Promise<SuccessResponse>;
93
93
  fetchAccountGroups: (basePath: string, token: string, accountId: string, type: GroupType) => Promise<ResponsePaginationType<GroupResponseType>>;
94
94
  fetchEventAttendeeActions: (basePath: string, token: string, eventId: string) => Promise<ResponseServerType<FetchCurrentEventAttendeesActionsResponse[]>>;
95
95
  fetchAccountBookings: (basePath: string, token: string, accountId: string, params?: string) => Promise<ResponsePaginationType<Booking>>;
@@ -327,7 +327,7 @@ export type EventAPIType = {
327
327
  pinExhibition: (exhibitionId: string) => Promise<boolean>;
328
328
  unpinExhibition: (exhibitionId: string) => Promise<boolean>;
329
329
  fetchEventGroups: (eventId: string) => Promise<GroupServerResponse[]>;
330
- updateVisibilityAttendee: (attendeeId: string, visibility: string) => Promise<any>;
330
+ updateVisibilityAttendee: (attendeeId: string, visibility: string) => Promise<SuccessResponse>;
331
331
  fetchAccountGroups: (accountId: string, type: GroupType) => Promise<ResponsePaginationType<GroupResponseType>>;
332
332
  fetchEventAttendeeActions: (eventId: string) => Promise<ResponseServerType<FetchCurrentEventAttendeesActionsResponse[]>>;
333
333
  fetchAccountBookings: (accountId: string, params?: string) => Promise<ResponsePaginationType<Booking>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10417",
3
+ "version": "1.0.10418",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",