@vendasta/meetings 1.1.0 → 1.1.2

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 { 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">> & {
@@ -1,6 +1,6 @@
1
- import { Meeting as ApiMeeting } from '../_internal/objects';
2
- import { AnswerInterface, AnswersInterface, AttachmentInterface, HostDetailsInterface } from '../_internal/interfaces';
3
- import { TeamEventMeetingType } from '../_internal/enums';
1
+ import { Meeting as ApiMeeting } from "../_internal/objects";
2
+ import { AnswerInterface, AnswersInterface, AttachmentInterface, HostDetailsInterface } from "../_internal/interfaces";
3
+ import { TeamEventMeetingType } from "../_internal/enums";
4
4
  export interface Attendee {
5
5
  firstName: string;
6
6
  lastName: string;
@@ -10,7 +10,7 @@ export interface Attendee {
10
10
  isPrimary: boolean;
11
11
  }
12
12
  export type MeetingFormAnswer = Required<AnswerInterface>;
13
- export type MeetingForm = Required<Omit<AnswersInterface, 'formAnswers'>> & {
13
+ export type MeetingForm = Required<Omit<AnswersInterface, "formAnswers">> & {
14
14
  formAnswers: MeetingFormAnswer[];
15
15
  };
16
16
  export declare enum WellKnownMeetingMetadataKeys {
@@ -47,6 +47,11 @@ export interface Meeting {
47
47
  calendarId: string;
48
48
  hostDetails: HostDetailsInterface[];
49
49
  meetingType: TeamEventMeetingType;
50
+ sessionTitle: string;
51
+ sessionRegistrationUrl: string;
52
+ maxAttendeeCount: number;
53
+ registeredAttendeeCount: number;
54
+ registrationCutoff: string;
50
55
  }
51
56
  export declare function meetingFromApi(meetingApi: ApiMeeting): Meeting;
52
57
  export declare function answersFromAPI(formAnswers: AnswersInterface): MeetingForm;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"