@vendasta/meetings 0.93.1 → 0.93.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.
@@ -3,6 +3,7 @@ import { DateRangeInterface } from './date-range.interface';
3
3
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
4
4
  import { MeetingTypeInterface } from './meeting-type.interface';
5
5
  import { TimeZoneInterface } from './';
6
+ import * as e from '../enums';
6
7
  export interface BookMeetingRequestInterface {
7
8
  hostId?: string;
8
9
  meetingTypeId?: string;
@@ -72,6 +73,8 @@ export interface GuestGetBookedMeetingResponseInterface {
72
73
  timeZone?: TimeZoneInterface;
73
74
  meetingTypeId?: string;
74
75
  location?: string;
76
+ locationType?: e.MeetingLocationType;
77
+ locationGuideline?: string;
75
78
  }
76
79
  export interface GuestIsHostConfiguredRequestInterface {
77
80
  hostId?: string;
@@ -84,6 +87,7 @@ export interface GuestRescheduleMeetingRequestInterface {
84
87
  authToken?: string;
85
88
  start?: Date;
86
89
  timeZone?: TimeZoneInterface;
90
+ location?: string;
87
91
  }
88
92
  export interface ListAvailableTimeSlotsRequestInterface {
89
93
  hostId?: string;
@@ -3,8 +3,6 @@ export interface MeetingSourceInfoInterface {
3
3
  source?: e.MeetingSource;
4
4
  status?: e.MeetingSourceStatus;
5
5
  connectDisconnectUrl?: string;
6
- created?: Date;
7
- updated?: Date;
8
6
  }
9
7
  export interface MeetingSourceListRequestInterface {
10
8
  iamUserId?: string;
@@ -36,4 +36,5 @@ export interface MeetingTypeInterface {
36
36
  hostUsers?: HostUserInterface[];
37
37
  teamName?: string;
38
38
  isVideoLinkDisabled?: boolean;
39
+ bufferDurationBeforeMeeting?: number;
39
40
  }
@@ -76,6 +76,7 @@ export interface PreferencesInterface {
76
76
  bufferDurationAfterMeeting?: number;
77
77
  noticeTime?: number;
78
78
  calendarSlug?: string;
79
+ bufferDurationBeforeMeeting?: number;
79
80
  }
80
81
  export interface TimeRangeInterface {
81
82
  from?: TimeOfDayInterface;
@@ -4,7 +4,7 @@ import { DateRange } from './date-range';
4
4
  import { Group, Service } from './groups-and-services';
5
5
  import { MeetingType } from './meeting-type';
6
6
  import { TimeZone } from './';
7
- import { MeetingLocationType } from "../enums";
7
+ import * as e from '../enums';
8
8
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
9
9
  export declare class BookMeetingRequest implements i.BookMeetingRequestInterface {
10
10
  hostId: string;
@@ -117,7 +117,7 @@ export declare class GuestGetBookedMeetingResponse implements i.GuestGetBookedMe
117
117
  timeZone: TimeZone;
118
118
  meetingTypeId: string;
119
119
  location: string;
120
- locationType: MeetingLocationType;
120
+ locationType: e.MeetingLocationType;
121
121
  locationGuideline: string;
122
122
  static fromProto(proto: any): GuestGetBookedMeetingResponse;
123
123
  constructor(kwargs?: i.GuestGetBookedMeetingResponseInterface);
@@ -5,8 +5,6 @@ export declare class MeetingSourceInfo implements i.MeetingSourceInfoInterface {
5
5
  source: e.MeetingSource;
6
6
  status: e.MeetingSourceStatus;
7
7
  connectDisconnectUrl: string;
8
- created: Date;
9
- updated: Date;
10
8
  static fromProto(proto: any): MeetingSourceInfo;
11
9
  constructor(kwargs?: i.MeetingSourceInfoInterface);
12
10
  toApiJson(): object;
@@ -44,6 +44,7 @@ export declare class MeetingType implements i.MeetingTypeInterface {
44
44
  hostUsers: HostUser[];
45
45
  teamName: string;
46
46
  isVideoLinkDisabled: boolean;
47
+ bufferDurationBeforeMeeting: number;
47
48
  static fromProto(proto: any): MeetingType;
48
49
  constructor(kwargs?: i.MeetingTypeInterface);
49
50
  toApiJson(): object;
@@ -111,6 +111,7 @@ export declare class Preferences implements i.PreferencesInterface {
111
111
  bufferDurationAfterMeeting: number;
112
112
  noticeTime: number;
113
113
  calendarSlug: string;
114
+ bufferDurationBeforeMeeting: number;
114
115
  static fromProto(proto: any): Preferences;
115
116
  constructor(kwargs?: i.PreferencesInterface);
116
117
  toApiJson(): object;
@@ -18,6 +18,7 @@ export interface MeetingType {
18
18
  form: MeetingTypeForm;
19
19
  availabilityIncrement?: number;
20
20
  bufferDurationAfterMeeting?: number;
21
+ bufferDurationBeforeMeeting?: number;
21
22
  noticeTime?: number;
22
23
  location?: string;
23
24
  locationGuidelines?: string;
@@ -6,6 +6,7 @@ export interface Preferences {
6
6
  meetingIntegration: MeetingSource;
7
7
  availabilityIncrement: number;
8
8
  bufferDurationAfterMeeting: number;
9
+ bufferDurationBeforeMeeting: number;
9
10
  noticeTime: number;
10
11
  calendarSlug: string;
11
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "0.93.1",
3
+ "version": "0.93.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"