@vendasta/meetings 1.8.0 → 1.9.0

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.
Files changed (34) hide show
  1. package/esm2020/lib/_internal/interfaces/meeting-external.interface.mjs +1 -1
  2. package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
  3. package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
  4. package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
  5. package/esm2020/lib/_internal/objects/annotations.mjs +1 -1
  6. package/esm2020/lib/_internal/objects/date-range.mjs +1 -1
  7. package/esm2020/lib/_internal/objects/field-mask.mjs +1 -1
  8. package/esm2020/lib/_internal/objects/meeting-external.mjs +2 -2
  9. package/esm2020/lib/_internal/objects/meeting-guest.mjs +44 -2
  10. package/esm2020/lib/_internal/objects/meeting-host.mjs +2 -2
  11. package/esm2020/lib/_internal/objects/meeting-type.mjs +1 -1
  12. package/esm2020/lib/_internal/objects/openapiv2.mjs +1 -1
  13. package/esm2020/lib/_internal/objects/shared.mjs +1 -1
  14. package/esm2020/lib/_internal/objects/zoom.mjs +1 -1
  15. package/esm2020/lib/guest/guest.service.mjs +1 -1
  16. package/fesm2015/vendasta-meetings.mjs +42 -0
  17. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  18. package/fesm2020/vendasta-meetings.mjs +42 -0
  19. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  20. package/lib/_internal/interfaces/meeting-external.interface.d.ts +1 -1
  21. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +9 -1
  22. package/lib/_internal/interfaces/meeting-host.interface.d.ts +3 -1
  23. package/lib/_internal/objects/annotations.d.ts +1 -1
  24. package/lib/_internal/objects/date-range.d.ts +1 -1
  25. package/lib/_internal/objects/field-mask.d.ts +1 -1
  26. package/lib/_internal/objects/meeting-external.d.ts +2 -2
  27. package/lib/_internal/objects/meeting-guest.d.ts +12 -2
  28. package/lib/_internal/objects/meeting-host.d.ts +2 -2
  29. package/lib/_internal/objects/meeting-type.d.ts +1 -1
  30. package/lib/_internal/objects/openapiv2.d.ts +1 -1
  31. package/lib/_internal/objects/shared.d.ts +1 -1
  32. package/lib/_internal/objects/zoom.d.ts +1 -1
  33. package/lib/guest/guest.service.d.ts +10 -0
  34. package/package.json +1 -1
@@ -1,8 +1,8 @@
1
- import { TimeZoneInterface } from './';
2
1
  import { ContactInterface } from './openapiv2.interface';
3
2
  import { DateRangeInterface } from './date-range.interface';
4
3
  import { EventTypeDateRangeInterface } from './meeting-type.interface';
5
4
  import { IsoDateTimeRangeInterface, AnswersInterface, HostOrderDetailsInterface } from './shared.interface';
5
+ import { TimeZoneInterface } from './';
6
6
  import * as e from '../enums';
7
7
  export interface AvailableTimeSlotsRequestInterface {
8
8
  businessId?: string;
@@ -1,9 +1,9 @@
1
- import { TimeZoneInterface } from './';
2
1
  import { BatchBookingTargetInterface, AnswersInterface, CalendarInterface, HostInterface, HostUserInterface, IsoDateTimeRangeInterface, BatchEventTypeTargetInterface, PhoneFieldsInterface } from './shared.interface';
3
2
  import { ContactInterface } from './openapiv2.interface';
4
3
  import { DateRangeInterface } from './date-range.interface';
5
4
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
6
5
  import { MeetingTypeInterface, FormInterface } from './meeting-type.interface';
6
+ import { TimeZoneInterface } from './';
7
7
  import * as e from '../enums';
8
8
  export interface BookBatchMeetingRequestInterface {
9
9
  targets?: BatchBookingTargetInterface[];
@@ -18,6 +18,7 @@ export interface BookBatchMeetingRequestInterface {
18
18
  location?: string;
19
19
  bookingSource?: e.BookingSource;
20
20
  bookingOriginId?: string;
21
+ uniqueRequestId?: string;
21
22
  }
22
23
  export interface BookBatchMeetingResponseInterface {
23
24
  bookingGroupId?: string;
@@ -38,6 +39,7 @@ export interface BookMeetingRequestInterface {
38
39
  userId?: string;
39
40
  bookingSource?: e.BookingSource;
40
41
  hasSmsConsent?: boolean;
42
+ uniqueRequestId?: string;
41
43
  }
42
44
  export interface BookMeetingResponseInterface {
43
45
  meetingId?: string;
@@ -65,6 +67,8 @@ export interface GetGroupRequestInterface {
65
67
  groupId?: string;
66
68
  slug?: string;
67
69
  hostId?: string;
70
+ uniqueRequestId?: string;
71
+ bookingSource?: e.BookingSource;
68
72
  }
69
73
  export interface GetGroupResponseInterface {
70
74
  group?: GroupInterface;
@@ -95,6 +99,8 @@ export interface GetServiceRequestInterface {
95
99
  serviceId?: string;
96
100
  slug?: string;
97
101
  hostId?: string;
102
+ uniqueRequestId?: string;
103
+ bookingSource?: e.BookingSource;
98
104
  }
99
105
  export interface GetServiceResponseInterface {
100
106
  service?: ServiceInterface;
@@ -102,6 +108,8 @@ export interface GetServiceResponseInterface {
102
108
  }
103
109
  export interface GetServiceV2RequestInterface {
104
110
  serviceId?: string;
111
+ uniqueRequestId?: string;
112
+ bookingSource?: e.BookingSource;
105
113
  }
106
114
  export interface GetServiceV2ResponseInterface {
107
115
  id?: string;
@@ -1,10 +1,10 @@
1
- import { TimeZoneInterface } from './';
2
1
  import { ContactInterface } from './shared.interface';
3
2
  import { DateRangeInterface } from './date-range.interface';
4
3
  import { FieldMaskInterface } from './field-mask.interface';
5
4
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
6
5
  import { MeetingTypeInterface, EventTypeDateRangeInterface, RegistrationCutOffInterface, BookingEventForAIInterface } from './meeting-type.interface';
7
6
  import { TimeRangeInterface, CalendarInterface, HostUserInterface, PreferencesInterface, BatchBookingTargetInterface, AnswersInterface, EmailsToDeleteInterface, BatchEventTypeTargetInterface, IsoDateTimeRangeInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, AttendeeInterface, AttachmentInterface } from './shared.interface';
7
+ import { TimeZoneInterface } from './';
8
8
  import * as e from '../enums';
9
9
  export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
10
10
  key?: string;
@@ -184,6 +184,8 @@ export interface GetEntityAssociationResponseInterface {
184
184
  }
185
185
  export interface GetEventTypeByIdRequestInterface {
186
186
  eventTypeId?: string;
187
+ uniqueRequestId?: string;
188
+ bookingSource?: e.BookingSource;
187
189
  }
188
190
  export interface GetEventTypeByIdResponseInterface {
189
191
  meetingType?: MeetingTypeInterface;
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces/annotations.interface';
1
+ import * as i from '../interfaces';
2
2
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
3
  export declare class Access implements i.AccessInterface {
4
4
  scope: string[];
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces/date-range.interface';
1
+ import * as i from '../interfaces';
2
2
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
3
  export declare class DateRange implements i.DateRangeInterface {
4
4
  start: Date;
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces/field-mask.interface';
1
+ import * as i from '../interfaces';
2
2
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
3
  export declare class FieldMask implements i.FieldMaskInterface {
4
4
  paths: string[];
@@ -1,9 +1,9 @@
1
- import * as i from '../interfaces/meeting-external.interface';
2
- import { TimeZone } from './';
1
+ import * as i from '../interfaces';
3
2
  import { Contact } from './openapiv2';
4
3
  import { DateRange } from './date-range';
5
4
  import { EventTypeDateRange } from './meeting-type';
6
5
  import { IsoDateTimeRange, Answers, HostOrderDetails } from './shared';
6
+ import { TimeZone } from './';
7
7
  import * as e from '../enums';
8
8
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
9
9
  export declare class AvailableTimeSlotsRequest implements i.AvailableTimeSlotsRequestInterface {
@@ -1,10 +1,10 @@
1
- import * as i from '../interfaces/meeting-guest.interface';
2
- import { TimeZone } from './';
1
+ import * as i from '../interfaces';
3
2
  import { BatchBookingTarget, Answers, Calendar, Host, HostUser, IsoDateTimeRange, BatchEventTypeTarget, PhoneFields } from './shared';
4
3
  import { Contact } from './openapiv2';
5
4
  import { DateRange } from './date-range';
6
5
  import { Group, Service } from './groups-and-services';
7
6
  import { MeetingType, Form } from './meeting-type';
7
+ import { TimeZone } from './';
8
8
  import * as e from '../enums';
9
9
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
10
10
  export declare class BookBatchMeetingRequest implements i.BookBatchMeetingRequestInterface {
@@ -20,6 +20,7 @@ export declare class BookBatchMeetingRequest implements i.BookBatchMeetingReques
20
20
  location: string;
21
21
  bookingSource: e.BookingSource;
22
22
  bookingOriginId: string;
23
+ uniqueRequestId: string;
23
24
  static fromProto(proto: any): BookBatchMeetingRequest;
24
25
  constructor(kwargs?: i.BookBatchMeetingRequestInterface);
25
26
  toApiJson(): object;
@@ -46,6 +47,7 @@ export declare class BookMeetingRequest implements i.BookMeetingRequestInterface
46
47
  userId: string;
47
48
  bookingSource: e.BookingSource;
48
49
  hasSmsConsent: boolean;
50
+ uniqueRequestId: string;
49
51
  static fromProto(proto: any): BookMeetingRequest;
50
52
  constructor(kwargs?: i.BookMeetingRequestInterface);
51
53
  toApiJson(): object;
@@ -94,6 +96,8 @@ export declare class GetGroupRequest implements i.GetGroupRequestInterface {
94
96
  groupId: string;
95
97
  slug: string;
96
98
  hostId: string;
99
+ uniqueRequestId: string;
100
+ bookingSource: e.BookingSource;
97
101
  static fromProto(proto: any): GetGroupRequest;
98
102
  constructor(kwargs?: i.GetGroupRequestInterface);
99
103
  toApiJson(): object;
@@ -134,6 +138,8 @@ export declare class GetMeetingCalendarInfoResponse implements i.GetMeetingCalen
134
138
  export declare class GetMeetingTypeRequest implements i.GetMeetingTypeRequestInterface {
135
139
  calendarSlug: string;
136
140
  meetingTypeSlug: string;
141
+ uniqueRequestId: string;
142
+ bookingSource: e.BookingSource;
137
143
  static fromProto(proto: any): GetMeetingTypeRequest;
138
144
  constructor(kwargs?: i.GetMeetingTypeRequestInterface);
139
145
  toApiJson(): object;
@@ -148,6 +154,8 @@ export declare class GetServiceRequest implements i.GetServiceRequestInterface {
148
154
  serviceId: string;
149
155
  slug: string;
150
156
  hostId: string;
157
+ uniqueRequestId: string;
158
+ bookingSource: e.BookingSource;
151
159
  static fromProto(proto: any): GetServiceRequest;
152
160
  constructor(kwargs?: i.GetServiceRequestInterface);
153
161
  toApiJson(): object;
@@ -161,6 +169,8 @@ export declare class GetServiceResponse implements i.GetServiceResponseInterface
161
169
  }
162
170
  export declare class GetServiceV2Request implements i.GetServiceV2RequestInterface {
163
171
  serviceId: string;
172
+ uniqueRequestId: string;
173
+ bookingSource: e.BookingSource;
164
174
  static fromProto(proto: any): GetServiceV2Request;
165
175
  constructor(kwargs?: i.GetServiceV2RequestInterface);
166
176
  toApiJson(): object;
@@ -1,11 +1,11 @@
1
- import * as i from '../interfaces/meeting-host.interface';
2
- import { TimeZone } from './';
1
+ import * as i from '../interfaces';
3
2
  import { Contact } from './shared';
4
3
  import { DateRange } from './date-range';
5
4
  import { FieldMask } from './field-mask';
6
5
  import { Group, Service } from './groups-and-services';
7
6
  import { MeetingType, EventTypeDateRange, RegistrationCutOff, BookingEventForAI } from './meeting-type';
8
7
  import { TimeRange, Calendar, HostUser, Preferences, BatchBookingTarget, Answers, EmailsToDelete, BatchEventTypeTarget, IsoDateTimeRange, PagedRequestOptions, PagedResponseMetadata, Attendee, Attachment } from './shared';
8
+ import { TimeZone } from './';
9
9
  import * as e from '../enums';
10
10
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
11
11
  export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntry implements i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces/meeting-type.interface';
1
+ import * as i from '../interfaces';
2
2
  import { DateRange } from './date-range';
3
3
  import { HostUser, HostOrderDetails } from './shared';
4
4
  import * as e from '../enums';
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces/openapiv2.interface';
1
+ import * as i from '../interfaces';
2
2
  import * as e from '../enums';
3
3
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
4
  export declare class Contact implements i.ContactInterface {
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces/shared.interface';
1
+ import * as i from '../interfaces';
2
2
  import { TimeZone, TimeOfDay } from './';
3
3
  import * as e from '../enums';
4
4
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces/zoom.interface';
1
+ import * as i from '../interfaces';
2
2
  import * as e from '../enums';
3
3
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
4
  export declare class CreateZoomMeetingRequest implements i.CreateZoomMeetingRequestInterface {
@@ -54,6 +54,8 @@ export declare class GuestService implements GuestServiceInterface {
54
54
  metadata?: {
55
55
  [name: string]: string;
56
56
  };
57
+ uniqueRequestId?: string;
58
+ bookingSource?: BookingSource;
57
59
  }): Observable<MeetingType>;
58
60
  listMeetingTypes(req: {
59
61
  hostId: string;
@@ -85,6 +87,7 @@ export declare class GuestService implements GuestServiceInterface {
85
87
  userId?: string;
86
88
  bookingSource?: BookingSource;
87
89
  hasSmsConsent?: boolean;
90
+ uniqueRequestId?: string;
88
91
  }): Observable<BookMeetingResponse>;
89
92
  cancelMeeting(req: {
90
93
  authToken: string;
@@ -118,10 +121,14 @@ export declare class GuestService implements GuestServiceInterface {
118
121
  getGroup(req: {
119
122
  groupId: string;
120
123
  slug: string;
124
+ uniqueRequestId?: string;
125
+ bookingSource?: BookingSource;
121
126
  }): Observable<GetGroupResponse>;
122
127
  getService(req: {
123
128
  serviceId: string;
124
129
  slug: string;
130
+ uniqueRequestId?: string;
131
+ bookingSource?: BookingSource;
125
132
  }): Observable<GetServiceResponse>;
126
133
  getSessionMeetingInfo(req: {
127
134
  sessionMeetingId: string;
@@ -149,6 +156,8 @@ export declare class GuestService implements GuestServiceInterface {
149
156
  }): Observable<CheckFeatureFlagResponse>;
150
157
  getServiceV2(req: {
151
158
  serviceId: string;
159
+ uniqueRequestId?: string;
160
+ bookingSource?: BookingSource;
152
161
  }): Observable<GetServiceV2Response>;
153
162
  listBatchAvailableTimeSlots(req: {
154
163
  targets: BatchEventTypeTargetInterface[];
@@ -168,6 +177,7 @@ export declare class GuestService implements GuestServiceInterface {
168
177
  location?: string;
169
178
  bookingSource?: BookingSource;
170
179
  bookingOriginId?: string;
180
+ uniqueRequestId?: string;
171
181
  }): Observable<BookBatchMeetingResponse>;
172
182
  rescheduleBatchMeeting(req: {
173
183
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"