@vendasta/meetings 0.89.0 → 0.91.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.
- package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-type.interface.mjs +1 -7
- package/esm2020/lib/_internal/objects/groups-and-services.mjs +13 -1
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +2 -8
- package/esm2020/lib/_internal/objects/meeting-host.mjs +7 -1
- package/esm2020/lib/_internal/objects/meeting-type.mjs +11 -1
- package/esm2020/lib/host/url.mjs +2 -2
- package/esm2020/lib/shared/meeting-type.mjs +6 -2
- package/fesm2015/vendasta-meetings.mjs +33 -8
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +33 -8
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +1 -2
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +2 -0
- package/lib/_internal/interfaces/meeting-type.interface.d.ts +3 -0
- package/lib/_internal/objects/groups-and-services.d.ts +4 -0
- package/lib/_internal/objects/meeting-guest.d.ts +1 -2
- package/lib/_internal/objects/meeting-host.d.ts +2 -0
- package/lib/_internal/objects/meeting-type.d.ts +3 -0
- package/lib/shared/meeting-type.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ContactInterface, AnswersInterface, CalendarInterface, HostInterface
|
|
1
|
+
import { ContactInterface, AnswersInterface, CalendarInterface, HostInterface } from './shared.interface';
|
|
2
2
|
import { DateRangeInterface } from './date-range.interface';
|
|
3
3
|
import { MeetingTypeInterface } from './meeting-type.interface';
|
|
4
4
|
import { TimeZoneInterface } from './';
|
|
@@ -39,7 +39,6 @@ export interface GetMeetingTypeRequestInterface {
|
|
|
39
39
|
}
|
|
40
40
|
export interface GetMeetingTypeResponseInterface {
|
|
41
41
|
meetingType?: MeetingTypeInterface;
|
|
42
|
-
hostUsers?: HostUserInterface[];
|
|
43
42
|
}
|
|
44
43
|
export interface GuestCancelMeetingRequestInterface {
|
|
45
44
|
meetingId?: string;
|
|
@@ -83,12 +83,14 @@ export interface DeleteAvailabilityRequestInterface {
|
|
|
83
83
|
}
|
|
84
84
|
export interface DeleteGroupRequestInterface {
|
|
85
85
|
id?: string;
|
|
86
|
+
hostId?: string;
|
|
86
87
|
}
|
|
87
88
|
export interface DeleteMeetingTypeRequestInterface {
|
|
88
89
|
id?: string;
|
|
89
90
|
}
|
|
90
91
|
export interface DeleteServiceRequestInterface {
|
|
91
92
|
id?: string;
|
|
93
|
+
hostId?: string;
|
|
92
94
|
}
|
|
93
95
|
export interface DoesCalendarExistRequestInterface {
|
|
94
96
|
calendarIdentifier?: string;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { HostUserInterface } from './shared.interface';
|
|
1
2
|
import * as e from '../enums';
|
|
2
3
|
export interface FieldInterface {
|
|
3
4
|
id?: string;
|
|
@@ -32,4 +33,6 @@ export interface MeetingTypeInterface {
|
|
|
32
33
|
emailDescription?: string;
|
|
33
34
|
isPinned?: boolean;
|
|
34
35
|
calendarType?: string;
|
|
36
|
+
hostUsers?: HostUserInterface[];
|
|
37
|
+
teamName?: string;
|
|
35
38
|
}
|
|
@@ -18,6 +18,8 @@ export declare class Group implements i.GroupInterface {
|
|
|
18
18
|
slug: string;
|
|
19
19
|
isPinned: boolean;
|
|
20
20
|
associations: EventGroupAndServiceAssociations[];
|
|
21
|
+
hexColor: string;
|
|
22
|
+
bookingUrl: string;
|
|
21
23
|
static fromProto(proto: any): Group;
|
|
22
24
|
constructor(kwargs?: i.GroupInterface);
|
|
23
25
|
toApiJson(): object;
|
|
@@ -29,6 +31,8 @@ export declare class Service implements i.ServiceInterface {
|
|
|
29
31
|
slug: string;
|
|
30
32
|
isPinned: boolean;
|
|
31
33
|
associations: EventGroupAndServiceAssociations[];
|
|
34
|
+
hexColor: string;
|
|
35
|
+
bookingUrl: string;
|
|
32
36
|
static fromProto(proto: any): Service;
|
|
33
37
|
constructor(kwargs?: i.ServiceInterface);
|
|
34
38
|
toApiJson(): object;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i from '../interfaces';
|
|
2
|
-
import { Contact, Answers, Calendar, Host
|
|
2
|
+
import { Contact, Answers, Calendar, Host } from './shared';
|
|
3
3
|
import { DateRange } from './date-range';
|
|
4
4
|
import { MeetingType } from './meeting-type';
|
|
5
5
|
import { TimeZone } from './';
|
|
@@ -62,7 +62,6 @@ export declare class GetMeetingTypeRequest implements i.GetMeetingTypeRequestInt
|
|
|
62
62
|
}
|
|
63
63
|
export declare class GetMeetingTypeResponse implements i.GetMeetingTypeResponseInterface {
|
|
64
64
|
meetingType: MeetingType;
|
|
65
|
-
hostUsers: HostUser[];
|
|
66
65
|
static fromProto(proto: any): GetMeetingTypeResponse;
|
|
67
66
|
constructor(kwargs?: i.GetMeetingTypeResponseInterface);
|
|
68
67
|
toApiJson(): object;
|
|
@@ -145,6 +145,7 @@ export declare class DeleteAvailabilityRequest implements i.DeleteAvailabilityRe
|
|
|
145
145
|
}
|
|
146
146
|
export declare class DeleteGroupRequest implements i.DeleteGroupRequestInterface {
|
|
147
147
|
id: string;
|
|
148
|
+
hostId: string;
|
|
148
149
|
static fromProto(proto: any): DeleteGroupRequest;
|
|
149
150
|
constructor(kwargs?: i.DeleteGroupRequestInterface);
|
|
150
151
|
toApiJson(): object;
|
|
@@ -157,6 +158,7 @@ export declare class DeleteMeetingTypeRequest implements i.DeleteMeetingTypeRequ
|
|
|
157
158
|
}
|
|
158
159
|
export declare class DeleteServiceRequest implements i.DeleteServiceRequestInterface {
|
|
159
160
|
id: string;
|
|
161
|
+
hostId: string;
|
|
160
162
|
static fromProto(proto: any): DeleteServiceRequest;
|
|
161
163
|
constructor(kwargs?: i.DeleteServiceRequestInterface);
|
|
162
164
|
toApiJson(): object;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as i from '../interfaces';
|
|
2
|
+
import { HostUser } from './shared';
|
|
2
3
|
import * as e from '../enums';
|
|
3
4
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
4
5
|
export declare class Field implements i.FieldInterface {
|
|
@@ -40,6 +41,8 @@ export declare class MeetingType implements i.MeetingTypeInterface {
|
|
|
40
41
|
emailDescription: string;
|
|
41
42
|
isPinned: boolean;
|
|
42
43
|
calendarType: string;
|
|
44
|
+
hostUsers: HostUser[];
|
|
45
|
+
teamName: string;
|
|
43
46
|
static fromProto(proto: any): MeetingType;
|
|
44
47
|
constructor(kwargs?: i.MeetingTypeInterface);
|
|
45
48
|
toApiJson(): object;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FieldInterface, FormInterface, MeetingTypeInterface as ApiMeetingType } from '../_internal/interfaces';
|
|
1
|
+
import { FieldInterface, FormInterface, HostUserInterface, MeetingTypeInterface as ApiMeetingType } from '../_internal/interfaces';
|
|
2
2
|
import { Environment } from "./environment";
|
|
3
3
|
export interface MeetingType {
|
|
4
4
|
id: string;
|
|
@@ -26,6 +26,8 @@ export interface MeetingType {
|
|
|
26
26
|
isClientChoice?: boolean;
|
|
27
27
|
isPinned?: boolean;
|
|
28
28
|
CalendarType?: string;
|
|
29
|
+
hostUsers: HostUserInterface[];
|
|
30
|
+
teamName?: string;
|
|
29
31
|
}
|
|
30
32
|
export type MeetingTypeFormField = Required<FieldInterface>;
|
|
31
33
|
export type MeetingTypeForm = Required<Omit<FormInterface, 'fields'>> & {
|