@vendasta/meetings 1.6.3 → 1.6.4
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/enums/index.mjs +2 -1
- package/esm2020/lib/_internal/enums/openapiv2.enum.mjs +55 -0
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-external.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/openapiv2.interface.mjs +8 -0
- package/esm2020/lib/_internal/objects/index.mjs +2 -1
- package/esm2020/lib/_internal/objects/meeting-external.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +2 -2
- package/esm2020/lib/_internal/objects/openapiv2.mjs +1191 -0
- package/fesm2015/vendasta-meetings.mjs +1400 -155
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +1400 -155
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/enums/index.d.ts +1 -0
- package/lib/_internal/enums/openapiv2.enum.d.ts +42 -0
- package/lib/_internal/interfaces/index.d.ts +1 -0
- package/lib/_internal/interfaces/meeting-external.interface.d.ts +1 -1
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +1 -1
- package/lib/_internal/interfaces/openapiv2.interface.d.ts +246 -0
- package/lib/_internal/objects/index.d.ts +1 -0
- package/lib/_internal/objects/meeting-external.d.ts +1 -1
- package/lib/_internal/objects/meeting-guest.d.ts +1 -1
- package/lib/_internal/objects/openapiv2.d.ts +353 -0
- package/package.json +1 -1
|
@@ -4,4 +4,5 @@ export { CalendarType, FormFieldType, OnBoardingState, } from './shared.enum';
|
|
|
4
4
|
export { BookingSource, DateRangeType, MeetingLocation, MeetingLocationType, NotificationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
|
|
5
5
|
export { FeatureFlagFieldType, } from './meeting-guest.enum';
|
|
6
6
|
export { BookingFailureReason, Recurrence, RegistrationMode, Weekday, } from './meeting-host.enum';
|
|
7
|
+
export { SecuritySchemeFlow, SecuritySchemeIn, JSONSchemaJSONSchemaSimpleTypes, Scheme, HeaderParameterType, SecuritySchemeType, } from './openapiv2.enum';
|
|
7
8
|
export { DayOfWeek, } from './dayofweek.enum';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export declare enum SecuritySchemeFlow {
|
|
2
|
+
FLOW_INVALID = 0,
|
|
3
|
+
FLOW_IMPLICIT = 1,
|
|
4
|
+
FLOW_PASSWORD = 2,
|
|
5
|
+
FLOW_APPLICATION = 3,
|
|
6
|
+
FLOW_ACCESS_CODE = 4
|
|
7
|
+
}
|
|
8
|
+
export declare enum SecuritySchemeIn {
|
|
9
|
+
IN_INVALID = 0,
|
|
10
|
+
IN_QUERY = 1,
|
|
11
|
+
IN_HEADER = 2
|
|
12
|
+
}
|
|
13
|
+
export declare enum JSONSchemaJSONSchemaSimpleTypes {
|
|
14
|
+
UNKNOWN = 0,
|
|
15
|
+
ARRAY = 1,
|
|
16
|
+
BOOLEAN = 2,
|
|
17
|
+
INTEGER = 3,
|
|
18
|
+
NULL = 4,
|
|
19
|
+
NUMBER = 5,
|
|
20
|
+
OBJECT = 6,
|
|
21
|
+
STRING = 7
|
|
22
|
+
}
|
|
23
|
+
export declare enum Scheme {
|
|
24
|
+
UNKNOWN = 0,
|
|
25
|
+
HTTP = 1,
|
|
26
|
+
HTTPS = 2,
|
|
27
|
+
WS = 3,
|
|
28
|
+
WSS = 4
|
|
29
|
+
}
|
|
30
|
+
export declare enum HeaderParameterType {
|
|
31
|
+
UNKNOWN = 0,
|
|
32
|
+
STRING = 1,
|
|
33
|
+
NUMBER = 2,
|
|
34
|
+
INTEGER = 3,
|
|
35
|
+
BOOLEAN = 4
|
|
36
|
+
}
|
|
37
|
+
export declare enum SecuritySchemeType {
|
|
38
|
+
TYPE_INVALID = 0,
|
|
39
|
+
TYPE_BASIC = 1,
|
|
40
|
+
TYPE_API_KEY = 2,
|
|
41
|
+
TYPE_OAUTH2 = 3
|
|
42
|
+
}
|
|
@@ -10,5 +10,6 @@ export { AvailableTimeSlotsRequestInterface, AvailableTimeSlotsResponseInterface
|
|
|
10
10
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
11
11
|
export { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, AvailabilityRuleListInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CalendarMigrationResponseInterface, CancelMeetingRequestInterface, CheckEventTypeSlugExistRequestInterface, CheckEventTypeSlugExistResponseInterface, CheckGroupOrServiceSlugExistRequestInterface, CheckGroupOrServiceSlugExistResponseInterface, CreateAvailabilityRequestInterface, CreateAvailabilityResponseInterface, CreateCalendarRequestInterface, CreateCalendarResponseInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateGroupResponseInterface, CreateMeetingTypeRequestInterface, CreateMeetingTypeResponseInterface, CreateServiceRequestInterface, CreateServiceResponseInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, DoesCalendarExistResponseInterface, EnsureGroupCalendarsExistRequestInterface, EnsureGroupCalendarsExistResponseInterface, EnsurePersonalCalendarExistsRequestInterface, EnsurePersonalCalendarExistsResponseInterface, EnsureSessionEventCalendarsExistRequestInterface, EnsureSessionEventCalendarsExistResponseInterface, EventTypeSummaryInterface, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, GetEventTypeByIdRequestInterface, GetEventTypeByIdResponseInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostBookSessionRequestInterface, HostBookSessionResponseInterface, HostDeleteAttendeesRequestInterface, HostDetailsInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAttendeesRequestInterface, ListAttendeesResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForRecurringSessionResponseInterface, ListAvailableTimeslotsForSessionRequestInterface, ListAvailableTimeslotsForSessionResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListEventTypesForMultipleCalendarsRequestInterface, ListEventTypesForMultipleCalendarsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
|
|
12
12
|
export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
|
|
13
|
+
export { EnumSchemaInterface, ResponseExamplesEntryInterface, ResponseExtensionsEntryInterface, SwaggerExtensionsEntryInterface, SecuritySchemeExtensionsEntryInterface, TagExtensionsEntryInterface, OperationExtensionsEntryInterface, JSONSchemaExtensionsEntryInterface, EnumSchemaExtensionsEntryInterface, InfoExtensionsEntryInterface, ExternalDocumentationInterface, JSONSchemaFieldConfigurationInterface, HeaderInterface, HeaderParameterInterface, ResponseHeadersEntryInterface, InfoInterface, JSONSchemaInterface, LicenseInterface, OperationInterface, ParametersInterface, ResponseInterface, OperationResponsesEntryInterface, SwaggerResponsesEntryInterface, SchemaInterface, ScopesScopeEntryInterface, ScopesInterface, SecurityDefinitionsInterface, SecurityDefinitionsSecurityEntryInterface, SecurityRequirementInterface, SecurityRequirementSecurityRequirementEntryInterface, SecurityRequirementSecurityRequirementValueInterface, SecuritySchemeInterface, SwaggerInterface, TagInterface, } from './openapiv2.interface';
|
|
13
14
|
export { TimeOfDayInterface, } from './timeofday.interface';
|
|
14
15
|
export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ContactInterface } from './
|
|
1
|
+
import { ContactInterface } from './openapiv2.interface';
|
|
2
2
|
import { DateRangeInterface } from './date-range.interface';
|
|
3
3
|
import { EventTypeDateRangeInterface } from './meeting-type.interface';
|
|
4
4
|
import { IsoDateTimeRangeInterface, AnswersInterface, HostOrderDetailsInterface } from './shared.interface';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AnswersInterface, CalendarInterface, HostInterface, HostUserInterface, IsoDateTimeRangeInterface } from './shared.interface';
|
|
2
|
-
import { ContactInterface } from './
|
|
2
|
+
import { ContactInterface } from './openapiv2.interface';
|
|
3
3
|
import { DateRangeInterface } from './date-range.interface';
|
|
4
4
|
import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
|
|
5
5
|
import { MeetingTypeInterface, FormInterface } from './meeting-type.interface';
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
import * as e from '../enums';
|
|
2
|
+
export interface ContactInterface {
|
|
3
|
+
name?: string;
|
|
4
|
+
url?: string;
|
|
5
|
+
email?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface EnumSchemaInterface {
|
|
8
|
+
description?: string;
|
|
9
|
+
default?: string;
|
|
10
|
+
title?: string;
|
|
11
|
+
required?: boolean;
|
|
12
|
+
readOnly?: boolean;
|
|
13
|
+
externalDocs?: ExternalDocumentationInterface;
|
|
14
|
+
example?: string;
|
|
15
|
+
ref?: string;
|
|
16
|
+
extensions?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
export interface ResponseExamplesEntryInterface {
|
|
21
|
+
key?: string;
|
|
22
|
+
value?: string;
|
|
23
|
+
}
|
|
24
|
+
export interface ResponseExtensionsEntryInterface {
|
|
25
|
+
key?: string;
|
|
26
|
+
value?: any;
|
|
27
|
+
}
|
|
28
|
+
export interface SwaggerExtensionsEntryInterface {
|
|
29
|
+
key?: string;
|
|
30
|
+
value?: any;
|
|
31
|
+
}
|
|
32
|
+
export interface SecuritySchemeExtensionsEntryInterface {
|
|
33
|
+
key?: string;
|
|
34
|
+
value?: any;
|
|
35
|
+
}
|
|
36
|
+
export interface TagExtensionsEntryInterface {
|
|
37
|
+
key?: string;
|
|
38
|
+
value?: any;
|
|
39
|
+
}
|
|
40
|
+
export interface OperationExtensionsEntryInterface {
|
|
41
|
+
key?: string;
|
|
42
|
+
value?: any;
|
|
43
|
+
}
|
|
44
|
+
export interface JSONSchemaExtensionsEntryInterface {
|
|
45
|
+
key?: string;
|
|
46
|
+
value?: any;
|
|
47
|
+
}
|
|
48
|
+
export interface EnumSchemaExtensionsEntryInterface {
|
|
49
|
+
key?: string;
|
|
50
|
+
value?: any;
|
|
51
|
+
}
|
|
52
|
+
export interface InfoExtensionsEntryInterface {
|
|
53
|
+
key?: string;
|
|
54
|
+
value?: any;
|
|
55
|
+
}
|
|
56
|
+
export interface ExternalDocumentationInterface {
|
|
57
|
+
description?: string;
|
|
58
|
+
url?: string;
|
|
59
|
+
}
|
|
60
|
+
export interface JSONSchemaFieldConfigurationInterface {
|
|
61
|
+
pathParamName?: string;
|
|
62
|
+
deprecated?: boolean;
|
|
63
|
+
}
|
|
64
|
+
export interface HeaderInterface {
|
|
65
|
+
description?: string;
|
|
66
|
+
type?: string;
|
|
67
|
+
format?: string;
|
|
68
|
+
default?: string;
|
|
69
|
+
pattern?: string;
|
|
70
|
+
}
|
|
71
|
+
export interface HeaderParameterInterface {
|
|
72
|
+
name?: string;
|
|
73
|
+
description?: string;
|
|
74
|
+
type?: e.HeaderParameterType;
|
|
75
|
+
format?: string;
|
|
76
|
+
required?: boolean;
|
|
77
|
+
}
|
|
78
|
+
export interface ResponseHeadersEntryInterface {
|
|
79
|
+
key?: string;
|
|
80
|
+
value?: HeaderInterface;
|
|
81
|
+
}
|
|
82
|
+
export interface InfoInterface {
|
|
83
|
+
title?: string;
|
|
84
|
+
description?: string;
|
|
85
|
+
termsOfService?: string;
|
|
86
|
+
contact?: ContactInterface;
|
|
87
|
+
license?: LicenseInterface;
|
|
88
|
+
version?: string;
|
|
89
|
+
extensions?: {
|
|
90
|
+
[key: string]: any;
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
export interface JSONSchemaInterface {
|
|
94
|
+
ref?: string;
|
|
95
|
+
title?: string;
|
|
96
|
+
description?: string;
|
|
97
|
+
default?: string;
|
|
98
|
+
readOnly?: boolean;
|
|
99
|
+
example?: string;
|
|
100
|
+
multipleOf?: number;
|
|
101
|
+
maximum?: number;
|
|
102
|
+
exclusiveMaximum?: boolean;
|
|
103
|
+
minimum?: number;
|
|
104
|
+
exclusiveMinimum?: boolean;
|
|
105
|
+
maxLength?: number;
|
|
106
|
+
minLength?: number;
|
|
107
|
+
pattern?: string;
|
|
108
|
+
maxItems?: number;
|
|
109
|
+
minItems?: number;
|
|
110
|
+
uniqueItems?: boolean;
|
|
111
|
+
maxProperties?: number;
|
|
112
|
+
minProperties?: number;
|
|
113
|
+
required?: string[];
|
|
114
|
+
array?: string[];
|
|
115
|
+
type?: e.JSONSchemaJSONSchemaSimpleTypes[];
|
|
116
|
+
format?: string;
|
|
117
|
+
enum?: string[];
|
|
118
|
+
fieldConfiguration?: JSONSchemaFieldConfigurationInterface;
|
|
119
|
+
extensions?: {
|
|
120
|
+
[key: string]: any;
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
export interface LicenseInterface {
|
|
124
|
+
name?: string;
|
|
125
|
+
url?: string;
|
|
126
|
+
}
|
|
127
|
+
export interface OperationInterface {
|
|
128
|
+
tags?: string[];
|
|
129
|
+
summary?: string;
|
|
130
|
+
description?: string;
|
|
131
|
+
externalDocs?: ExternalDocumentationInterface;
|
|
132
|
+
operationId?: string;
|
|
133
|
+
consumes?: string[];
|
|
134
|
+
produces?: string[];
|
|
135
|
+
responses?: {
|
|
136
|
+
[key: string]: ResponseInterface;
|
|
137
|
+
};
|
|
138
|
+
schemes?: e.Scheme[];
|
|
139
|
+
deprecated?: boolean;
|
|
140
|
+
security?: SecurityRequirementInterface[];
|
|
141
|
+
extensions?: {
|
|
142
|
+
[key: string]: any;
|
|
143
|
+
};
|
|
144
|
+
parameters?: ParametersInterface;
|
|
145
|
+
}
|
|
146
|
+
export interface ParametersInterface {
|
|
147
|
+
headers?: HeaderParameterInterface[];
|
|
148
|
+
}
|
|
149
|
+
export interface ResponseInterface {
|
|
150
|
+
description?: string;
|
|
151
|
+
schema?: SchemaInterface;
|
|
152
|
+
headers?: {
|
|
153
|
+
[key: string]: HeaderInterface;
|
|
154
|
+
};
|
|
155
|
+
examples?: {
|
|
156
|
+
[key: string]: string;
|
|
157
|
+
};
|
|
158
|
+
extensions?: {
|
|
159
|
+
[key: string]: any;
|
|
160
|
+
};
|
|
161
|
+
}
|
|
162
|
+
export interface OperationResponsesEntryInterface {
|
|
163
|
+
key?: string;
|
|
164
|
+
value?: ResponseInterface;
|
|
165
|
+
}
|
|
166
|
+
export interface SwaggerResponsesEntryInterface {
|
|
167
|
+
key?: string;
|
|
168
|
+
value?: ResponseInterface;
|
|
169
|
+
}
|
|
170
|
+
export interface SchemaInterface {
|
|
171
|
+
jsonSchema?: JSONSchemaInterface;
|
|
172
|
+
discriminator?: string;
|
|
173
|
+
readOnly?: boolean;
|
|
174
|
+
externalDocs?: ExternalDocumentationInterface;
|
|
175
|
+
example?: string;
|
|
176
|
+
}
|
|
177
|
+
export interface ScopesScopeEntryInterface {
|
|
178
|
+
key?: string;
|
|
179
|
+
value?: string;
|
|
180
|
+
}
|
|
181
|
+
export interface ScopesInterface {
|
|
182
|
+
scope?: {
|
|
183
|
+
[key: string]: string;
|
|
184
|
+
};
|
|
185
|
+
}
|
|
186
|
+
export interface SecurityDefinitionsInterface {
|
|
187
|
+
security?: {
|
|
188
|
+
[key: string]: SecuritySchemeInterface;
|
|
189
|
+
};
|
|
190
|
+
}
|
|
191
|
+
export interface SecurityDefinitionsSecurityEntryInterface {
|
|
192
|
+
key?: string;
|
|
193
|
+
value?: SecuritySchemeInterface;
|
|
194
|
+
}
|
|
195
|
+
export interface SecurityRequirementInterface {
|
|
196
|
+
securityRequirement?: {
|
|
197
|
+
[key: string]: SecurityRequirementSecurityRequirementValueInterface;
|
|
198
|
+
};
|
|
199
|
+
}
|
|
200
|
+
export interface SecurityRequirementSecurityRequirementEntryInterface {
|
|
201
|
+
key?: string;
|
|
202
|
+
value?: SecurityRequirementSecurityRequirementValueInterface;
|
|
203
|
+
}
|
|
204
|
+
export interface SecurityRequirementSecurityRequirementValueInterface {
|
|
205
|
+
scope?: string[];
|
|
206
|
+
}
|
|
207
|
+
export interface SecuritySchemeInterface {
|
|
208
|
+
type?: e.SecuritySchemeType;
|
|
209
|
+
description?: string;
|
|
210
|
+
name?: string;
|
|
211
|
+
in?: e.SecuritySchemeIn;
|
|
212
|
+
flow?: e.SecuritySchemeFlow;
|
|
213
|
+
authorizationUrl?: string;
|
|
214
|
+
tokenUrl?: string;
|
|
215
|
+
scopes?: ScopesInterface;
|
|
216
|
+
extensions?: {
|
|
217
|
+
[key: string]: any;
|
|
218
|
+
};
|
|
219
|
+
}
|
|
220
|
+
export interface SwaggerInterface {
|
|
221
|
+
swagger?: string;
|
|
222
|
+
info?: InfoInterface;
|
|
223
|
+
host?: string;
|
|
224
|
+
basePath?: string;
|
|
225
|
+
schemes?: e.Scheme[];
|
|
226
|
+
consumes?: string[];
|
|
227
|
+
produces?: string[];
|
|
228
|
+
responses?: {
|
|
229
|
+
[key: string]: ResponseInterface;
|
|
230
|
+
};
|
|
231
|
+
securityDefinitions?: SecurityDefinitionsInterface;
|
|
232
|
+
security?: SecurityRequirementInterface[];
|
|
233
|
+
tags?: TagInterface[];
|
|
234
|
+
externalDocs?: ExternalDocumentationInterface;
|
|
235
|
+
extensions?: {
|
|
236
|
+
[key: string]: any;
|
|
237
|
+
};
|
|
238
|
+
}
|
|
239
|
+
export interface TagInterface {
|
|
240
|
+
name?: string;
|
|
241
|
+
description?: string;
|
|
242
|
+
externalDocs?: ExternalDocumentationInterface;
|
|
243
|
+
extensions?: {
|
|
244
|
+
[key: string]: any;
|
|
245
|
+
};
|
|
246
|
+
}
|
|
@@ -10,5 +10,6 @@ export { AvailableTimeSlotsRequest, AvailableTimeSlotsResponse, BookMeetingExter
|
|
|
10
10
|
export { FieldMask, } from './field-mask';
|
|
11
11
|
export { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, AvailabilityRuleList, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CalendarMigrationResponse, CancelMeetingRequest, CheckEventTypeSlugExistRequest, CheckEventTypeSlugExistResponse, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, EnsureSessionEventCalendarsExistRequest, EnsureSessionEventCalendarsExistResponse, EventTypeSummary, ListAvailabilityRequestFilters, ListBookedMeetingsRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetEventTypeByIdRequest, GetEventTypeByIdResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostDetails, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, GetHostsForCalendarResponseHostUserAvailabilityRuleEntry, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListEventTypesForMultipleCalendarsRequest, ListEventTypesForMultipleCalendarsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
|
|
12
12
|
export { Access, MCPOptions, } from './annotations';
|
|
13
|
+
export { EnumSchema, ResponseExamplesEntry, ResponseExtensionsEntry, SwaggerExtensionsEntry, SecuritySchemeExtensionsEntry, TagExtensionsEntry, OperationExtensionsEntry, JSONSchemaExtensionsEntry, EnumSchemaExtensionsEntry, InfoExtensionsEntry, ExternalDocumentation, JSONSchemaFieldConfiguration, Header, HeaderParameter, ResponseHeadersEntry, Info, JSONSchema, License, Operation, Parameters, Response, OperationResponsesEntry, SwaggerResponsesEntry, Schema, ScopesScopeEntry, Scopes, SecurityDefinitions, SecurityDefinitionsSecurityEntry, SecurityRequirement, SecurityRequirementSecurityRequirementEntry, SecurityRequirementSecurityRequirementValue, SecurityScheme, Swagger, Tag, } from './openapiv2';
|
|
13
14
|
export { TimeOfDay, } from './timeofday';
|
|
14
15
|
export { DateTime, TimeZone, } from './datetime';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i from '../interfaces';
|
|
2
|
-
import { Contact } from './
|
|
2
|
+
import { Contact } from './openapiv2';
|
|
3
3
|
import { DateRange } from './date-range';
|
|
4
4
|
import { EventTypeDateRange } from './meeting-type';
|
|
5
5
|
import { IsoDateTimeRange, Answers, HostOrderDetails } from './shared';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i from '../interfaces';
|
|
2
2
|
import { Answers, Calendar, Host, HostUser, IsoDateTimeRange } from './shared';
|
|
3
|
-
import { Contact } from './
|
|
3
|
+
import { Contact } from './openapiv2';
|
|
4
4
|
import { DateRange } from './date-range';
|
|
5
5
|
import { Group, Service } from './groups-and-services';
|
|
6
6
|
import { MeetingType, Form } from './meeting-type';
|