@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.
- package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-source.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-type.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +1 -1
- package/esm2020/lib/_internal/objects/meeting-source.mjs +1 -13
- package/esm2020/lib/_internal/objects/meeting-type.mjs +7 -1
- package/esm2020/lib/_internal/objects/shared.mjs +7 -1
- package/esm2020/lib/shared/meeting-type.mjs +3 -1
- package/esm2020/lib/shared/preferences.mjs +2 -1
- package/fesm2015/vendasta-meetings.mjs +15 -12
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +15 -12
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +4 -0
- package/lib/_internal/interfaces/meeting-source.interface.d.ts +0 -2
- package/lib/_internal/interfaces/meeting-type.interface.d.ts +1 -0
- package/lib/_internal/interfaces/shared.interface.d.ts +1 -0
- package/lib/_internal/objects/meeting-guest.d.ts +2 -2
- package/lib/_internal/objects/meeting-source.d.ts +0 -2
- package/lib/_internal/objects/meeting-type.d.ts +1 -0
- package/lib/_internal/objects/shared.d.ts +1 -0
- package/lib/shared/meeting-type.d.ts +1 -0
- package/lib/shared/preferences.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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
|
|
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;
|