@hubs101/js-api-skd-client 1.0.10489 → 1.0.10491
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,3 +1,4 @@
|
|
|
1
|
+
import { Attendee } from "../attendee/types";
|
|
1
2
|
import { Address } from "../types";
|
|
2
3
|
export type Link = {
|
|
3
4
|
rel: string;
|
|
@@ -32,7 +33,7 @@ export type MeetingItem = {
|
|
|
32
33
|
};
|
|
33
34
|
ratingScore: boolean;
|
|
34
35
|
};
|
|
35
|
-
invited_list?:
|
|
36
|
+
invited_list?: Attendee[];
|
|
36
37
|
};
|
|
37
38
|
export type MeetingObjType = {
|
|
38
39
|
selectedDate?: string | Date;
|
package/lib/types/base.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Attendee, AttendeeInput, AttendeeProfile, Note, NoteUpdateInput, UserNotification } from "../api/attendee/types";
|
|
2
2
|
import { ColocatedEventsGroupInputType, ColocatedEventsGroupType, GroupInputType, GroupResponseType, PublicGroupResponseType, RegisterManagerInput, ResponseAccountEventsType } from "../api/authentication/types";
|
|
3
3
|
import { LoginResponse, SendResetPasswordBody } from "../api/context/types";
|
|
4
|
-
import { Account, AccountInput,
|
|
4
|
+
import { Account, AccountInput, BlogPage, BlogPageInput, Booking, BookingDetails, Directory, DirectoryFiles, DiscountServerResponse, DocumentType, Event, EventLocation, EventRegistration, EventServerResponse, EventStream, Exhibition, ExhibitionInput, FileDetails, GroupServerResponse, GroupType, OptionServerResponse, Portfolio, PortfolioInput, Stream, StreamInput, TicketServerResponse, UserRegistrationsEvent, ZoomParams } from "../api/event/types";
|
|
5
5
|
import { EventMeetingStatisticsItem, MeetingItem } from "../api/meetings/types";
|
|
6
6
|
import { CommentBody, Post, PostBody, UpdatePostBody } from "../api/posts/types";
|
|
7
7
|
import { GenericResponseServerType, PublicEventItem, ResponsePaginationType, ResponseServerType } from "../api/public/types";
|
|
@@ -454,9 +454,7 @@ export type EventAPIType = {
|
|
|
454
454
|
confirmMyEventInvitation: (attendeeId: string) => Promise<APIResponse>;
|
|
455
455
|
checkIn: (attendeeId: string) => Promise<APIResponse>;
|
|
456
456
|
checkout: (attendeeId: string) => Promise<APIResponse>;
|
|
457
|
-
sendAttendeeOnboardingAnswers: (attendeeId: string, body:
|
|
458
|
-
[key: string]: Answer;
|
|
459
|
-
}) => Promise<APIResponse>;
|
|
457
|
+
sendAttendeeOnboardingAnswers: (attendeeId: string, body: Record<string, string>) => Promise<APIResponse>;
|
|
460
458
|
createAttendee: (eventId: string, type: string, body: Attendee) => Promise<APIResponse>;
|
|
461
459
|
importProfileFromLinkedIn: (body: {
|
|
462
460
|
event?: string | undefined;
|