@vendasta/meetings 1.15.1 → 1.15.3
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/groups-and-services.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-type.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/groups-and-services.mjs +25 -1
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +31 -1
- package/esm2020/lib/_internal/objects/meeting-type.mjs +13 -1
- package/esm2020/lib/shared/groups-and-services.mjs +13 -1
- package/esm2020/lib/shared/meeting-type.mjs +7 -1
- package/fesm2015/vendasta-meetings.mjs +84 -0
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +84 -0
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/groups-and-services.interface.d.ts +6 -0
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +8 -0
- package/lib/_internal/interfaces/meeting-type.interface.d.ts +3 -0
- package/lib/_internal/objects/groups-and-services.d.ts +6 -0
- package/lib/_internal/objects/meeting-guest.d.ts +8 -0
- package/lib/_internal/objects/meeting-type.d.ts +3 -0
- package/lib/shared/groups-and-services.d.ts +6 -0
- package/lib/shared/meeting-type.d.ts +3 -0
- package/package.json +1 -1
|
@@ -25,6 +25,9 @@ export interface GroupInterface {
|
|
|
25
25
|
hexColor?: string;
|
|
26
26
|
bookingUrl?: string;
|
|
27
27
|
isBatchBookingEnabled?: boolean;
|
|
28
|
+
redirectEnabled?: boolean;
|
|
29
|
+
redirectUrl?: string;
|
|
30
|
+
redirectDelaySeconds?: number;
|
|
28
31
|
}
|
|
29
32
|
export interface ServiceInterface {
|
|
30
33
|
id?: string;
|
|
@@ -36,4 +39,7 @@ export interface ServiceInterface {
|
|
|
36
39
|
hexColor?: string;
|
|
37
40
|
bookingUrl?: string;
|
|
38
41
|
isBatchBookingEnabled?: boolean;
|
|
42
|
+
redirectEnabled?: boolean;
|
|
43
|
+
redirectUrl?: string;
|
|
44
|
+
redirectDelaySeconds?: number;
|
|
39
45
|
}
|
|
@@ -88,6 +88,9 @@ export interface GetGroupV2ResponseInterface {
|
|
|
88
88
|
businessDisplayLogoUrl?: string;
|
|
89
89
|
bookingUrl?: string;
|
|
90
90
|
isBatchBookingEnabled?: boolean;
|
|
91
|
+
redirectEnabled?: boolean;
|
|
92
|
+
redirectUrl?: string;
|
|
93
|
+
redirectDelaySeconds?: number;
|
|
91
94
|
}
|
|
92
95
|
export interface GetHostRequestInterface {
|
|
93
96
|
hostId?: string;
|
|
@@ -137,6 +140,9 @@ export interface GetServiceV2ResponseInterface {
|
|
|
137
140
|
businessDisplayLogoUrl?: string;
|
|
138
141
|
bookingUrl?: string;
|
|
139
142
|
isBatchBookingEnabled?: boolean;
|
|
143
|
+
redirectEnabled?: boolean;
|
|
144
|
+
redirectUrl?: string;
|
|
145
|
+
redirectDelaySeconds?: number;
|
|
140
146
|
}
|
|
141
147
|
export interface GetSessionInviteeMeetingInfoRequestInterface {
|
|
142
148
|
sessionInviteeId?: string;
|
|
@@ -216,6 +222,8 @@ export interface GuestGetBookedMeetingResponseV2Interface {
|
|
|
216
222
|
meetings?: MeetingDetailInterface[];
|
|
217
223
|
primaryAttendeePhone?: string;
|
|
218
224
|
isLocationEditable?: boolean;
|
|
225
|
+
redirectUrl?: string;
|
|
226
|
+
redirectDelaySeconds?: number;
|
|
219
227
|
}
|
|
220
228
|
export interface GuestIsHostConfiguredRequestInterface {
|
|
221
229
|
hostId?: string;
|
|
@@ -59,6 +59,9 @@ export interface MeetingTypeInterface {
|
|
|
59
59
|
isEmailRequired?: boolean;
|
|
60
60
|
isPhoneNumberRequired?: boolean;
|
|
61
61
|
notificationType?: e.NotificationType;
|
|
62
|
+
redirectEnabled?: boolean;
|
|
63
|
+
redirectUrl?: string;
|
|
64
|
+
redirectDelaySeconds?: number;
|
|
62
65
|
}
|
|
63
66
|
export interface RegistrationCutOffInterface {
|
|
64
67
|
unit?: e.RegistrationCutOffUnit;
|
|
@@ -30,6 +30,9 @@ export declare class Group implements i.GroupInterface {
|
|
|
30
30
|
hexColor: string;
|
|
31
31
|
bookingUrl: string;
|
|
32
32
|
isBatchBookingEnabled: boolean;
|
|
33
|
+
redirectEnabled: boolean;
|
|
34
|
+
redirectUrl: string;
|
|
35
|
+
redirectDelaySeconds: number;
|
|
33
36
|
static fromProto(proto: any): Group;
|
|
34
37
|
constructor(kwargs?: i.GroupInterface);
|
|
35
38
|
toApiJson(): object;
|
|
@@ -44,6 +47,9 @@ export declare class Service implements i.ServiceInterface {
|
|
|
44
47
|
hexColor: string;
|
|
45
48
|
bookingUrl: string;
|
|
46
49
|
isBatchBookingEnabled: boolean;
|
|
50
|
+
redirectEnabled: boolean;
|
|
51
|
+
redirectUrl: string;
|
|
52
|
+
redirectDelaySeconds: number;
|
|
47
53
|
static fromProto(proto: any): Service;
|
|
48
54
|
constructor(kwargs?: i.ServiceInterface);
|
|
49
55
|
toApiJson(): object;
|
|
@@ -126,6 +126,9 @@ export declare class GetGroupV2Response implements i.GetGroupV2ResponseInterface
|
|
|
126
126
|
businessDisplayLogoUrl: string;
|
|
127
127
|
bookingUrl: string;
|
|
128
128
|
isBatchBookingEnabled: boolean;
|
|
129
|
+
redirectEnabled: boolean;
|
|
130
|
+
redirectUrl: string;
|
|
131
|
+
redirectDelaySeconds: number;
|
|
129
132
|
static fromProto(proto: any): GetGroupV2Response;
|
|
130
133
|
constructor(kwargs?: i.GetGroupV2ResponseInterface);
|
|
131
134
|
toApiJson(): object;
|
|
@@ -205,6 +208,9 @@ export declare class GetServiceV2Response implements i.GetServiceV2ResponseInter
|
|
|
205
208
|
businessDisplayLogoUrl: string;
|
|
206
209
|
bookingUrl: string;
|
|
207
210
|
isBatchBookingEnabled: boolean;
|
|
211
|
+
redirectEnabled: boolean;
|
|
212
|
+
redirectUrl: string;
|
|
213
|
+
redirectDelaySeconds: number;
|
|
208
214
|
static fromProto(proto: any): GetServiceV2Response;
|
|
209
215
|
constructor(kwargs?: i.GetServiceV2ResponseInterface);
|
|
210
216
|
toApiJson(): object;
|
|
@@ -311,6 +317,8 @@ export declare class GuestGetBookedMeetingResponseV2 implements i.GuestGetBooked
|
|
|
311
317
|
meetings: MeetingDetail[];
|
|
312
318
|
primaryAttendeePhone: string;
|
|
313
319
|
isLocationEditable: boolean;
|
|
320
|
+
redirectUrl: string;
|
|
321
|
+
redirectDelaySeconds: number;
|
|
314
322
|
static fromProto(proto: any): GuestGetBookedMeetingResponseV2;
|
|
315
323
|
constructor(kwargs?: i.GuestGetBookedMeetingResponseV2Interface);
|
|
316
324
|
toApiJson(): object;
|
|
@@ -73,6 +73,9 @@ export declare class MeetingType implements i.MeetingTypeInterface {
|
|
|
73
73
|
isEmailRequired: boolean;
|
|
74
74
|
isPhoneNumberRequired: boolean;
|
|
75
75
|
notificationType: e.NotificationType;
|
|
76
|
+
redirectEnabled: boolean;
|
|
77
|
+
redirectUrl: string;
|
|
78
|
+
redirectDelaySeconds: number;
|
|
76
79
|
static fromProto(proto: any): MeetingType;
|
|
77
80
|
constructor(kwargs?: i.MeetingTypeInterface);
|
|
78
81
|
toApiJson(): object;
|
|
@@ -10,6 +10,9 @@ export interface Group {
|
|
|
10
10
|
hexColor?: string;
|
|
11
11
|
bookingUrl?: string;
|
|
12
12
|
isBatchBookingEnabled?: boolean;
|
|
13
|
+
redirectEnabled?: boolean;
|
|
14
|
+
redirectUrl?: string;
|
|
15
|
+
redirectDelaySeconds?: number;
|
|
13
16
|
}
|
|
14
17
|
export interface EventGroupAndServiceAssociations {
|
|
15
18
|
id?: string;
|
|
@@ -34,6 +37,9 @@ export interface Service {
|
|
|
34
37
|
hexColor?: string;
|
|
35
38
|
bookingUrl?: string;
|
|
36
39
|
isBatchBookingEnabled?: boolean;
|
|
40
|
+
redirectEnabled?: boolean;
|
|
41
|
+
redirectUrl?: string;
|
|
42
|
+
redirectDelaySeconds?: number;
|
|
37
43
|
}
|
|
38
44
|
export interface EntityAssociations {
|
|
39
45
|
services?: string[];
|
|
@@ -39,6 +39,9 @@ export interface MeetingType {
|
|
|
39
39
|
isEmailRequired?: boolean;
|
|
40
40
|
isPhoneNumberRequired?: boolean;
|
|
41
41
|
notificationType?: NotificationType;
|
|
42
|
+
redirectEnabled?: boolean;
|
|
43
|
+
redirectUrl?: string;
|
|
44
|
+
redirectDelaySeconds?: number;
|
|
42
45
|
}
|
|
43
46
|
export type MeetingTypeFormField = Required<FieldInterface>;
|
|
44
47
|
export type MeetingTypeForm = Required<Omit<FormInterface, "fields">> & {
|