@vendasta/meetings 1.10.1 → 1.11.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.
@@ -262,9 +262,12 @@ export interface ListGuestBookedMeetingsResponseInterface {
262
262
  }
263
263
  export interface ListMeetingTypesRequestInterface {
264
264
  hostId?: string;
265
+ uniqueRequestId?: string;
266
+ bookingSource?: e.BookingSource;
265
267
  }
266
268
  export interface ListMeetingTypesResponseInterface {
267
269
  meetingTypes?: MeetingTypeInterface[];
270
+ businessDisplayLogoUrl?: string;
268
271
  }
269
272
  export interface MeetingDetailInterface {
270
273
  meetingId?: string;
@@ -165,8 +165,8 @@ export interface EventTypeSummaryInterface {
165
165
  dateRange?: EventTypeDateRangeInterface;
166
166
  locationGuidelines?: string;
167
167
  description?: string;
168
- bufferDurationBeforeMeeting?: number;
169
168
  bufferDurationAfterMeeting?: number;
169
+ bufferDurationBeforeMeeting?: number;
170
170
  }
171
171
  export interface ListBookedMeetingsRequestFiltersInterface {
172
172
  meetingTypeIds?: string[];
@@ -87,6 +87,7 @@ export interface HostUserInterface {
87
87
  displayName?: string;
88
88
  isConfigured?: boolean;
89
89
  isConnected?: boolean;
90
+ isDeleted?: boolean;
90
91
  }
91
92
  export interface IsoDateTimeRangeInterface {
92
93
  start?: string;
@@ -387,12 +387,15 @@ export declare class ListGuestBookedMeetingsResponse implements i.ListGuestBooke
387
387
  }
388
388
  export declare class ListMeetingTypesRequest implements i.ListMeetingTypesRequestInterface {
389
389
  hostId: string;
390
+ uniqueRequestId: string;
391
+ bookingSource: e.BookingSource;
390
392
  static fromProto(proto: any): ListMeetingTypesRequest;
391
393
  constructor(kwargs?: i.ListMeetingTypesRequestInterface);
392
394
  toApiJson(): object;
393
395
  }
394
396
  export declare class ListMeetingTypesResponse implements i.ListMeetingTypesResponseInterface {
395
397
  meetingTypes: MeetingType[];
398
+ businessDisplayLogoUrl: string;
396
399
  static fromProto(proto: any): ListMeetingTypesResponse;
397
400
  constructor(kwargs?: i.ListMeetingTypesResponseInterface);
398
401
  toApiJson(): object;
@@ -281,8 +281,8 @@ export declare class EventTypeSummary implements i.EventTypeSummaryInterface {
281
281
  dateRange: EventTypeDateRange;
282
282
  locationGuidelines: string;
283
283
  description: string;
284
- bufferDurationBeforeMeeting: number;
285
284
  bufferDurationAfterMeeting: number;
285
+ bufferDurationBeforeMeeting: number;
286
286
  static fromProto(proto: any): EventTypeSummary;
287
287
  constructor(kwargs?: i.EventTypeSummaryInterface);
288
288
  toApiJson(): object;
@@ -128,6 +128,7 @@ export declare class HostUser implements i.HostUserInterface {
128
128
  displayName: string;
129
129
  isConfigured: boolean;
130
130
  isConnected: boolean;
131
+ isDeleted: boolean;
131
132
  static fromProto(proto: any): HostUser;
132
133
  constructor(kwargs?: i.HostUserInterface);
133
134
  toApiJson(): object;
@@ -1,4 +1,4 @@
1
- import { CalendarInterface, Contact, GetGroupResponse, GetServiceV2Response, GetSessionMeetingResponse, MeetingGuestApiService, MeetingLocationType, TeamEventMeetingType, TimeZoneInterface, ContactInterface, AnswersInterface, GetSessionInviteeMeetingInfoResponse, GuestGetBookedMeetingResponseV2, BookingSource, CheckFeatureFlagResponse, FeatureFlagFieldType, BatchBookingTargetInterface, BatchEventTypeTargetInterface, BookBatchMeetingResponse, ListGuestBookedMeetingsResponse, PhoneFieldsInterface } from "../_internal";
1
+ import { CalendarInterface, Contact, GetGroupResponse, GetServiceV2Response, GetSessionMeetingResponse, MeetingGuestApiService, MeetingLocationType, TeamEventMeetingType, TimeZoneInterface, ContactInterface, AnswersInterface, GetSessionInviteeMeetingInfoResponse, GuestGetBookedMeetingResponseV2, BookingSource, CheckFeatureFlagResponse, FeatureFlagFieldType, BatchBookingTargetInterface, BatchEventTypeTargetInterface, BookBatchMeetingResponse, ListGuestBookedMeetingsResponse, PhoneFieldsInterface, ListMeetingTypesResponse } 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";
@@ -40,7 +40,9 @@ export interface GuestServiceInterface {
40
40
  [name: string]: string;
41
41
  };
42
42
  slug?: string;
43
- }): Observable<MeetingType[]>;
43
+ uniqueRequestId?: string;
44
+ bookingSource?: BookingSource;
45
+ }): Observable<ListMeetingTypesResponse>;
44
46
  isHostConfigured(req: {
45
47
  hostId: string;
46
48
  }): Observable<boolean>;
@@ -62,9 +64,11 @@ export declare class GuestService implements GuestServiceInterface {
62
64
  metadata?: {
63
65
  [name: string]: string;
64
66
  };
67
+ uniqueRequestId?: string;
68
+ bookingSource?: BookingSource;
65
69
  timeZone?: TimeZoneInterface;
66
70
  calendarSlug?: string;
67
- }): Observable<MeetingType[]>;
71
+ }): Observable<ListMeetingTypesResponse>;
68
72
  listAvailableTimeSlots(req: {
69
73
  hostId: string;
70
74
  meetingTypeId: string;
@@ -5,4 +5,5 @@ export declare function hostUserFromApi(hostUser: HostUserInterface): {
5
5
  displayName: string;
6
6
  isConfigured: boolean;
7
7
  isConnected: boolean;
8
+ isDeleted: boolean;
8
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "1.10.1",
3
+ "version": "1.11.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"