@vendasta/meetings 1.0.7 → 1.1.1

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,7 +1,7 @@
1
1
  export { MeetingSourceInfoInterface, MeetingSourceListRequestInterface, MeetingSourceListResponseInterface, MeetingSourceQueryInterface, } from './meeting-source.interface';
2
2
  export { CreateZoomMeetingRequestInterface, CreateZoomMeetingResponseInterface, ZoomMeetingRecurrenceInterface, ZoomMeetingSettingsInterface, ZoomMeetingTrackingFieldInterface, ZoomOccurrenceInterface, } from './zoom.interface';
3
3
  export { GoogleMeetConferenceDataInterface, GoogleMeetConferenceRequestStatusInterface, GoogleMeetConferenceSolutionInterface, GoogleMeetConferenceSolutionKeyInterface, GoogleMeetCreateConferenceRequestInterface, GoogleMeetCreateMeetingRequestInterface, GoogleMeetCreateMeetingResponseInterface, GoogleMeetEntryPointInterface, GoogleMeetListMeetingsRequestInterface, GoogleMeetListMeetingsResponseInterface, GoogleMeetMeetingInterface, GoogleMeetMeetingAttendeeInterface, GoogleMeetMeetingCreatorInterface, GoogleMeetMeetingDateTimeInterface, GoogleMeetMeetingOrganizerInterface, GoogleMeetMeetingReminderInterface, GoogleMeetMeetingRemindersInterface, } from './google-meet.interface';
4
- export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, CalendarInterface, ContactInterface, EmailsToDeleteInterface, HostInterface, HostUserInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PreferencesInterface, TimeRangeInterface, } from './shared.interface';
4
+ export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, CalendarInterface, ContactInterface, EmailsToDeleteInterface, HostInterface, HostOrderDetailsInterface, HostUserInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PreferencesInterface, TimeRangeInterface, } from './shared.interface';
5
5
  export { DateRangeInterface, } from './date-range.interface';
6
6
  export { EventTypeDateRangeInterface, FieldInterface, FormInterface, MeetingTypeInterface, RegistrationCutOffInterface, RelativeDateRangeInterface, } from './meeting-type.interface';
7
7
  export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from './groups-and-services.interface';
@@ -1,5 +1,5 @@
1
1
  import { DateRangeInterface } from './date-range.interface';
2
- import { HostUserInterface } from './shared.interface';
2
+ import { HostUserInterface, HostOrderDetailsInterface } from './shared.interface';
3
3
  import * as e from '../enums';
4
4
  export interface EventTypeDateRangeInterface {
5
5
  dateRangeType?: e.DateRangeType;
@@ -47,6 +47,7 @@ export interface MeetingTypeInterface {
47
47
  attendeeCount?: number;
48
48
  sessionTitle?: string;
49
49
  registrationCutoff?: RegistrationCutOffInterface;
50
+ hostOrderDetails?: HostOrderDetailsInterface[];
50
51
  }
51
52
  export interface RegistrationCutOffInterface {
52
53
  unit?: e.RegistrationCutOffUnit;
@@ -60,6 +60,10 @@ export interface HostInterface {
60
60
  displayProfileUrl?: string;
61
61
  displayLogoUrl?: string;
62
62
  }
63
+ export interface HostOrderDetailsInterface {
64
+ userId?: string;
65
+ hostOrder?: number;
66
+ }
63
67
  export interface HostUserInterface {
64
68
  userId?: string;
65
69
  displayName?: string;
@@ -1,7 +1,7 @@
1
1
  export { MeetingSourceInfo, MeetingSourceListRequest, MeetingSourceListResponse, MeetingSourceQuery, } from './meeting-source';
2
2
  export { CreateZoomMeetingRequest, CreateZoomMeetingResponse, ZoomMeetingRecurrence, ZoomMeetingSettings, ZoomMeetingTrackingField, ZoomOccurrence, } from './zoom';
3
3
  export { GoogleMeetConferenceData, GoogleMeetConferenceRequestStatus, GoogleMeetConferenceSolution, GoogleMeetConferenceSolutionKey, GoogleMeetCreateConferenceRequest, GoogleMeetCreateMeetingRequest, GoogleMeetCreateMeetingResponse, GoogleMeetEntryPoint, GoogleMeetListMeetingsRequest, GoogleMeetListMeetingsResponse, GoogleMeetMeeting, GoogleMeetMeetingAttendee, GoogleMeetMeetingCreator, GoogleMeetMeetingDateTime, GoogleMeetMeetingOrganizer, GoogleMeetMeetingReminder, GoogleMeetMeetingReminders, } from './google-meet';
4
- export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee, Calendar, Contact, EmailsToDelete, Host, HostUser, PagedRequestOptions, PagedResponseMetadata, Preferences, TimeRange, } from './shared';
4
+ export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee, Calendar, Contact, EmailsToDelete, Host, HostOrderDetails, HostUser, PagedRequestOptions, PagedResponseMetadata, Preferences, TimeRange, } from './shared';
5
5
  export { DateRange, } from './date-range';
6
6
  export { EventTypeDateRange, Field, Form, MeetingType, RegistrationCutOff, RelativeDateRange, } from './meeting-type';
7
7
  export { EventGroupAndServiceAssociations, Group, Service, } from './groups-and-services';
@@ -1,6 +1,6 @@
1
1
  import * as i from '../interfaces';
2
2
  import { DateRange } from './date-range';
3
- import { HostUser } from './shared';
3
+ import { HostUser, HostOrderDetails } from './shared';
4
4
  import * as e from '../enums';
5
5
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
6
6
  export declare class EventTypeDateRange implements i.EventTypeDateRangeInterface {
@@ -58,6 +58,7 @@ export declare class MeetingType implements i.MeetingTypeInterface {
58
58
  attendeeCount: number;
59
59
  sessionTitle: string;
60
60
  registrationCutoff: RegistrationCutOff;
61
+ hostOrderDetails: HostOrderDetails[];
61
62
  static fromProto(proto: any): MeetingType;
62
63
  constructor(kwargs?: i.MeetingTypeInterface);
63
64
  toApiJson(): object;
@@ -89,6 +89,13 @@ export declare class Host implements i.HostInterface {
89
89
  constructor(kwargs?: i.HostInterface);
90
90
  toApiJson(): object;
91
91
  }
92
+ export declare class HostOrderDetails implements i.HostOrderDetailsInterface {
93
+ userId: string;
94
+ hostOrder: number;
95
+ static fromProto(proto: any): HostOrderDetails;
96
+ constructor(kwargs?: i.HostOrderDetailsInterface);
97
+ toApiJson(): object;
98
+ }
92
99
  export declare class HostUser implements i.HostUserInterface {
93
100
  userId: string;
94
101
  displayName: string;
@@ -1,4 +1,4 @@
1
- import { CalendarInterface, Contact, GetGroupResponse, GetSessionMeetingResponse, MeetingGuestApiService, MeetingLocationType, TeamEventMeetingType, TimeZoneInterface } from '../_internal';
1
+ import { CalendarInterface, Contact, GetGroupResponse, GetSessionMeetingResponse, MeetingGuestApiService, MeetingLocationType, TeamEventMeetingType, TimeZoneInterface, ContactInterface, AnswersInterface } from '../_internal';
2
2
  import { Observable } from 'rxjs';
3
3
  import { Host, MeetingForm, MeetingMetadata, MeetingType, TimeSpan } from '../shared';
4
4
  import { GetServiceResponse } from "../_internal/objects/meeting-guest";
@@ -107,9 +107,16 @@ export declare class GuestService implements GuestServiceInterface {
107
107
  slug: string;
108
108
  }): Observable<GetServiceResponse>;
109
109
  getSessionMeetingInfo(req: {
110
- meetingId: string;
110
+ sessionMeetingId: string;
111
111
  slug: string;
112
112
  }): Observable<GetSessionMeetingResponse>;
113
+ inviteeRegisterSessionMeeting(req: {
114
+ meetingId: string;
115
+ attendee: ContactInterface;
116
+ comment: string;
117
+ formAnswers: AnswersInterface;
118
+ recaptchaToken: string;
119
+ }): Observable<null>;
113
120
  static ɵfac: i0.ɵɵFactoryDeclaration<GuestService, never>;
114
121
  static ɵprov: i0.ɵɵInjectableDeclaration<GuestService>;
115
122
  }
@@ -1,4 +1,4 @@
1
- import { EventTypeDateRangeInterface, FieldInterface, FormInterface, HostUserInterface, MeetingTypeInterface as ApiMeetingType, RegistrationCutOffInterface } from "../_internal/interfaces";
1
+ import { EventTypeDateRangeInterface, FieldInterface, FormInterface, HostOrderDetailsInterface, HostUserInterface, MeetingTypeInterface as ApiMeetingType, RegistrationCutOffInterface } from "../_internal/interfaces";
2
2
  import { MeetingLocationType, TeamEventMeetingType } from "../_internal/enums";
3
3
  import { Environment } from "./environment";
4
4
  export interface MeetingType {
@@ -35,6 +35,7 @@ export interface MeetingType {
35
35
  attendeeCount?: number;
36
36
  registrationCutoff?: RegistrationCutOffInterface;
37
37
  sessionTitle?: string;
38
+ hostOrderDetails?: HostOrderDetailsInterface[];
38
39
  }
39
40
  export type MeetingTypeFormField = Required<FieldInterface>;
40
41
  export type MeetingTypeForm = Required<Omit<FormInterface, "fields">> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "1.0.7",
3
+ "version": "1.1.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"