reach-api-sdk 1.0.2 → 1.0.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/package.json +1 -1
- package/src/apiClient.ts +242 -242
- package/src/definition/swagger.yaml +58949 -58949
- package/src/index.ts +234 -234
- package/src/models/CoursePage.ts +11 -11
- package/src/models/CourseSessionPage.ts +11 -11
- package/src/models/CourseSessionSchedulePage.ts +11 -11
- package/src/models/CustomerPage.ts +11 -11
- package/src/models/EmailReminderSchedulePage.ts +11 -11
- package/src/models/EmailSettingPage.ts +11 -11
- package/src/models/FacilityIndividualPage.ts +11 -11
- package/src/models/FacilityPage.ts +11 -11
- package/src/models/GenericActivityPage.ts +11 -11
- package/src/models/ImagePage.ts +11 -11
- package/src/models/NotificationQueuePage.ts +11 -11
- package/src/models/NotificationSettingPage.ts +11 -11
- package/src/models/OfferPage.ts +11 -11
- package/src/models/OpenactiveFeedIntermediatePage.ts +11 -11
- package/src/models/OpenactiveFeedItemPage.ts +11 -11
- package/src/models/OrderItemPage.ts +11 -11
- package/src/models/OrderPage.ts +11 -11
- package/src/models/OrderTokenPage.ts +11 -11
- package/src/models/OrgCourseUtilisationPage.ts +11 -11
- package/src/models/PageMeta.ts +25 -25
- package/src/models/PaymentPage.ts +11 -11
- package/src/models/PermissionPage.ts +11 -11
- package/src/models/ProgrammePage.ts +11 -11
- package/src/models/RecentOrderActivityReportPage.ts +11 -11
- package/src/models/ScheduledSessionPage.ts +11 -11
- package/src/models/ScheduledSessionSchedulePage.ts +11 -11
- package/src/models/SessionPage.ts +11 -11
- package/src/models/SlotOfferPage.ts +11 -11
- package/src/models/SlotPage.ts +11 -11
- package/src/models/SlotScheduleOfferPage.ts +11 -11
- package/src/models/SlotSchedulePage.ts +11 -11
- package/src/models/StripeAccountPage.ts +11 -11
- package/src/models/SurveyAnswerPage.ts +11 -11
- package/src/models/SurveyPage.ts +11 -11
- package/src/models/SurveyQuestionPage.ts +11 -11
- package/src/models/SurveyReportExtended.ts +33 -33
- package/src/models/SurveyReportExtendedPage.ts +11 -11
- package/src/models/TenantPage.ts +11 -11
- package/src/models/TenantWebsiteSettingPage.ts +11 -11
- package/src/models/TotalRevenueReportPage.ts +11 -11
- package/src/models/UserPage.ts +11 -11
- package/src/models/VenuePage.ts +11 -11
- package/src/models/VenuesReportPage.ts +11 -11
- package/src/models/WaitlistActivityPage.ts +11 -11
- package/src/models/WaitlistOpportunityPage.ts +11 -11
- package/src/services/SurveyReportExtendedService.ts +618 -618
package/src/index.ts
CHANGED
|
@@ -1,234 +1,234 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
export { ApiClient } from './ApiClient';
|
|
5
|
-
|
|
6
|
-
export { ApiError } from './core/ApiError';
|
|
7
|
-
export { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
8
|
-
export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
9
|
-
export { OpenAPI } from './core/OpenAPI';
|
|
10
|
-
export type { OpenAPIConfig } from './core/OpenAPI';
|
|
11
|
-
|
|
12
|
-
export type { Activity } from './models/Activity';
|
|
13
|
-
export { ActivityType } from './models/ActivityType';
|
|
14
|
-
export { AdvanceBooking } from './models/AdvanceBooking';
|
|
15
|
-
export type { Amenity } from './models/Amenity';
|
|
16
|
-
export { ApplicationRole } from './models/ApplicationRole';
|
|
17
|
-
export { AppUserRole } from './models/AppUserRole';
|
|
18
|
-
export type { AutoCompleteResponseModel } from './models/AutoCompleteResponseModel';
|
|
19
|
-
export { BookingStatus } from './models/BookingStatus';
|
|
20
|
-
export { ContactOnConfirmation } from './models/ContactOnConfirmation';
|
|
21
|
-
export type { Country } from './models/Country';
|
|
22
|
-
export type { Course } from './models/Course';
|
|
23
|
-
export { CourseBookingCutoff } from './models/CourseBookingCutoff';
|
|
24
|
-
export type { CoursePage } from './models/CoursePage';
|
|
25
|
-
export { CourseSearchSortBy } from './models/CourseSearchSortBy';
|
|
26
|
-
export type { CourseSession } from './models/CourseSession';
|
|
27
|
-
export type { CourseSessionPage } from './models/CourseSessionPage';
|
|
28
|
-
export type { CourseSessionSchedule } from './models/CourseSessionSchedule';
|
|
29
|
-
export type { CourseSessionSchedulePage } from './models/CourseSessionSchedulePage';
|
|
30
|
-
export type { Customer } from './models/Customer';
|
|
31
|
-
export { CustomerCancellationOption } from './models/CustomerCancellationOption';
|
|
32
|
-
export type { CustomerPage } from './models/CustomerPage';
|
|
33
|
-
export { CustomerType } from './models/CustomerType';
|
|
34
|
-
export { DayOfWeek } from './models/DayOfWeek';
|
|
35
|
-
export type { EmailReminderSchedule } from './models/EmailReminderSchedule';
|
|
36
|
-
export type { EmailReminderSchedulePage } from './models/EmailReminderSchedulePage';
|
|
37
|
-
export type { EmailSetting } from './models/EmailSetting';
|
|
38
|
-
export type { EmailSettingPage } from './models/EmailSettingPage';
|
|
39
|
-
export type { Facility } from './models/Facility';
|
|
40
|
-
export type { FacilityIndividual } from './models/FacilityIndividual';
|
|
41
|
-
export type { FacilityIndividualPage } from './models/FacilityIndividualPage';
|
|
42
|
-
export { FacilityIndividualsType } from './models/FacilityIndividualsType';
|
|
43
|
-
export type { FacilityPage } from './models/FacilityPage';
|
|
44
|
-
export type { GenericActivity } from './models/GenericActivity';
|
|
45
|
-
export type { GenericActivityPage } from './models/GenericActivityPage';
|
|
46
|
-
export type { GeocodeResponseModel } from './models/GeocodeResponseModel';
|
|
47
|
-
export type { GooglePrediction } from './models/GooglePrediction';
|
|
48
|
-
export { HttpStatusCode } from './models/HttpStatusCode';
|
|
49
|
-
export type { Image } from './models/Image';
|
|
50
|
-
export type { ImagePage } from './models/ImagePage';
|
|
51
|
-
export { InviteStatus } from './models/InviteStatus';
|
|
52
|
-
export type { IOpportunity } from './models/IOpportunity';
|
|
53
|
-
export type { LoqateGeocode } from './models/LoqateGeocode';
|
|
54
|
-
export type { LoqatePlaceResult } from './models/LoqatePlaceResult';
|
|
55
|
-
export type { LoqatePrediction } from './models/LoqatePrediction';
|
|
56
|
-
export type { Northeast } from './models/Northeast';
|
|
57
|
-
export type { NotificationQueue } from './models/NotificationQueue';
|
|
58
|
-
export type { NotificationQueuePage } from './models/NotificationQueuePage';
|
|
59
|
-
export type { NotificationSetting } from './models/NotificationSetting';
|
|
60
|
-
export type { NotificationSettingPage } from './models/NotificationSettingPage';
|
|
61
|
-
export { NotificationType } from './models/NotificationType';
|
|
62
|
-
export type { Offer } from './models/Offer';
|
|
63
|
-
export type { OfferPage } from './models/OfferPage';
|
|
64
|
-
export type { OpenactiveFeedIntermediate } from './models/OpenactiveFeedIntermediate';
|
|
65
|
-
export type { OpenactiveFeedIntermediatePage } from './models/OpenactiveFeedIntermediatePage';
|
|
66
|
-
export type { OpenactiveFeedItem } from './models/OpenactiveFeedItem';
|
|
67
|
-
export type { OpenactiveFeedItemPage } from './models/OpenactiveFeedItemPage';
|
|
68
|
-
export { OpportunityType } from './models/OpportunityType';
|
|
69
|
-
export type { Order } from './models/Order';
|
|
70
|
-
export type { OrderItem } from './models/OrderItem';
|
|
71
|
-
export type { OrderItemPage } from './models/OrderItemPage';
|
|
72
|
-
export { OrderItemStatus } from './models/OrderItemStatus';
|
|
73
|
-
export type { OrderPage } from './models/OrderPage';
|
|
74
|
-
export { OrderSource } from './models/OrderSource';
|
|
75
|
-
export { OrderStage } from './models/OrderStage';
|
|
76
|
-
export type { OrderToken } from './models/OrderToken';
|
|
77
|
-
export type { OrderTokenPage } from './models/OrderTokenPage';
|
|
78
|
-
export { OrganisationApplicationFeeHandling } from './models/OrganisationApplicationFeeHandling';
|
|
79
|
-
export { OrganisationAvailableChannel } from './models/OrganisationAvailableChannel';
|
|
80
|
-
export { OrganisationRefundPolicy } from './models/OrganisationRefundPolicy';
|
|
81
|
-
export { OrganisationTaxMode } from './models/OrganisationTaxMode';
|
|
82
|
-
export { OrganisationType } from './models/OrganisationType';
|
|
83
|
-
export type { OrgCourseUtilisation } from './models/OrgCourseUtilisation';
|
|
84
|
-
export type { OrgCourseUtilisationPage } from './models/OrgCourseUtilisationPage';
|
|
85
|
-
export type { PageMeta } from './models/PageMeta';
|
|
86
|
-
export type { Payment } from './models/Payment';
|
|
87
|
-
export { PaymentMethod } from './models/PaymentMethod';
|
|
88
|
-
export type { PaymentPage } from './models/PaymentPage';
|
|
89
|
-
export type { Permission } from './models/Permission';
|
|
90
|
-
export type { PermissionPage } from './models/PermissionPage';
|
|
91
|
-
export type { PlaceDetailsResponseModel } from './models/PlaceDetailsResponseModel';
|
|
92
|
-
export type { PlaceGeometry } from './models/PlaceGeometry';
|
|
93
|
-
export type { PlaceLocation } from './models/PlaceLocation';
|
|
94
|
-
export type { PlaceResult } from './models/PlaceResult';
|
|
95
|
-
export type { PlaceViewport } from './models/PlaceViewport';
|
|
96
|
-
export type { PlusCode } from './models/PlusCode';
|
|
97
|
-
export { Prepayment } from './models/Prepayment';
|
|
98
|
-
export type { Programme } from './models/Programme';
|
|
99
|
-
export type { ProgrammePage } from './models/ProgrammePage';
|
|
100
|
-
export { ReachEntity } from './models/ReachEntity';
|
|
101
|
-
export type { ReachError } from './models/ReachError';
|
|
102
|
-
export { ReachOperation } from './models/ReachOperation';
|
|
103
|
-
export type { RecentOrderActivityReport } from './models/RecentOrderActivityReport';
|
|
104
|
-
export type { RecentOrderActivityReportPage } from './models/RecentOrderActivityReportPage';
|
|
105
|
-
export type { ScheduledSession } from './models/ScheduledSession';
|
|
106
|
-
export type { ScheduledSessionPage } from './models/ScheduledSessionPage';
|
|
107
|
-
export type { ScheduledSessionSchedule } from './models/ScheduledSessionSchedule';
|
|
108
|
-
export type { ScheduledSessionSchedulePage } from './models/ScheduledSessionSchedulePage';
|
|
109
|
-
export { ScheduledSessionSearchSortBy } from './models/ScheduledSessionSearchSortBy';
|
|
110
|
-
export { ScheduleStatus } from './models/ScheduleStatus';
|
|
111
|
-
export { SearchSortOrderDirection } from './models/SearchSortOrderDirection';
|
|
112
|
-
export type { Session } from './models/Session';
|
|
113
|
-
export { SessionGender } from './models/SessionGender';
|
|
114
|
-
export type { SessionPage } from './models/SessionPage';
|
|
115
|
-
export { SessionType } from './models/SessionType';
|
|
116
|
-
export type { Slot } from './models/Slot';
|
|
117
|
-
export { SlotAvailabilityStatus } from './models/SlotAvailabilityStatus';
|
|
118
|
-
export type { SlotOffer } from './models/SlotOffer';
|
|
119
|
-
export type { SlotOfferPage } from './models/SlotOfferPage';
|
|
120
|
-
export type { SlotPage } from './models/SlotPage';
|
|
121
|
-
export type { SlotSchedule } from './models/SlotSchedule';
|
|
122
|
-
export type { SlotScheduleOffer } from './models/SlotScheduleOffer';
|
|
123
|
-
export type { SlotScheduleOfferPage } from './models/SlotScheduleOfferPage';
|
|
124
|
-
export type { SlotSchedulePage } from './models/SlotSchedulePage';
|
|
125
|
-
export { SlotStatus } from './models/SlotStatus';
|
|
126
|
-
export type { Southwest } from './models/Southwest';
|
|
127
|
-
export type { StripeAccount } from './models/StripeAccount';
|
|
128
|
-
export type { StripeAccountPage } from './models/StripeAccountPage';
|
|
129
|
-
export type { StructuredFormatting } from './models/StructuredFormatting';
|
|
130
|
-
export type { Surface } from './models/Surface';
|
|
131
|
-
export type { Survey } from './models/Survey';
|
|
132
|
-
export type { SurveyAnswer } from './models/SurveyAnswer';
|
|
133
|
-
export type { SurveyAnswerPage } from './models/SurveyAnswerPage';
|
|
134
|
-
export type { SurveyPage } from './models/SurveyPage';
|
|
135
|
-
export type { SurveyQuestion } from './models/SurveyQuestion';
|
|
136
|
-
export type { SurveyQuestionOption } from './models/SurveyQuestionOption';
|
|
137
|
-
export type { SurveyQuestionPage } from './models/SurveyQuestionPage';
|
|
138
|
-
export { SurveyQuestionsTarget } from './models/SurveyQuestionsTarget';
|
|
139
|
-
export { SurveyQuestionType } from './models/SurveyQuestionType';
|
|
140
|
-
export type { SurveyReportExtended } from './models/SurveyReportExtended';
|
|
141
|
-
export type { SurveyReportExtendedPage } from './models/SurveyReportExtendedPage';
|
|
142
|
-
export type { SurveySubmissionModel } from './models/SurveySubmissionModel';
|
|
143
|
-
export { SurveyType } from './models/SurveyType';
|
|
144
|
-
export type { Tax } from './models/Tax';
|
|
145
|
-
export type { Tenant } from './models/Tenant';
|
|
146
|
-
export type { TenantPage } from './models/TenantPage';
|
|
147
|
-
export type { TenantWebsiteSetting } from './models/TenantWebsiteSetting';
|
|
148
|
-
export type { TenantWebsiteSettingPage } from './models/TenantWebsiteSettingPage';
|
|
149
|
-
export type { Timezone } from './models/Timezone';
|
|
150
|
-
export type { TotalRevenueReport } from './models/TotalRevenueReport';
|
|
151
|
-
export type { TotalRevenueReportPage } from './models/TotalRevenueReportPage';
|
|
152
|
-
export type { User } from './models/User';
|
|
153
|
-
export type { UserPage } from './models/UserPage';
|
|
154
|
-
export type { UserRole } from './models/UserRole';
|
|
155
|
-
export type { Venue } from './models/Venue';
|
|
156
|
-
export type { VenueOpeningHours } from './models/VenueOpeningHours';
|
|
157
|
-
export type { VenuePage } from './models/VenuePage';
|
|
158
|
-
export type { VenuesReport } from './models/VenuesReport';
|
|
159
|
-
export type { VenuesReportPage } from './models/VenuesReportPage';
|
|
160
|
-
export type { WaitlistActivity } from './models/WaitlistActivity';
|
|
161
|
-
export type { WaitlistActivityPage } from './models/WaitlistActivityPage';
|
|
162
|
-
export type { WaitlistOpportunity } from './models/WaitlistOpportunity';
|
|
163
|
-
export type { WaitlistOpportunityPage } from './models/WaitlistOpportunityPage';
|
|
164
|
-
|
|
165
|
-
export { ActivityService } from './services/ActivityService';
|
|
166
|
-
export { AmenityService } from './services/AmenityService';
|
|
167
|
-
export { BookingService } from './services/BookingService';
|
|
168
|
-
export { CountryService } from './services/CountryService';
|
|
169
|
-
export { CoursesService } from './services/CoursesService';
|
|
170
|
-
export { CourseSessionsService } from './services/CourseSessionsService';
|
|
171
|
-
export { CourseSessionSchedulesService } from './services/CourseSessionSchedulesService';
|
|
172
|
-
export { CustomersService } from './services/CustomersService';
|
|
173
|
-
export { EmailReminderSchedulesService } from './services/EmailReminderSchedulesService';
|
|
174
|
-
export { EmailSettingsService } from './services/EmailSettingsService';
|
|
175
|
-
export { FacilitiesService } from './services/FacilitiesService';
|
|
176
|
-
export { FacilityIndividualsService } from './services/FacilityIndividualsService';
|
|
177
|
-
export { GenericActivityService } from './services/GenericActivityService';
|
|
178
|
-
export { GeocodeService } from './services/GeocodeService';
|
|
179
|
-
export { ImagesService } from './services/ImagesService';
|
|
180
|
-
export { LeasingService } from './services/LeasingService';
|
|
181
|
-
export { LoqatePlacesService } from './services/LoqatePlacesService';
|
|
182
|
-
export { NotificationQueueService } from './services/NotificationQueueService';
|
|
183
|
-
export { NotificationSettingsService } from './services/NotificationSettingsService';
|
|
184
|
-
export { OffersService } from './services/OffersService';
|
|
185
|
-
export { OpenactiveFeedIntermediateService } from './services/OpenactiveFeedIntermediateService';
|
|
186
|
-
export { OpenactiveFeedItemService } from './services/OpenactiveFeedItemService';
|
|
187
|
-
export { OrderItemsService } from './services/OrderItemsService';
|
|
188
|
-
export { OrdersService } from './services/OrdersService';
|
|
189
|
-
export { OrgCourseUtilisationService } from './services/OrgCourseUtilisationService';
|
|
190
|
-
export { PaymentsService } from './services/PaymentsService';
|
|
191
|
-
export { PermissionsService } from './services/PermissionsService';
|
|
192
|
-
export { PlacesService } from './services/PlacesService';
|
|
193
|
-
export { ProgrammesService } from './services/ProgrammesService';
|
|
194
|
-
export { PublicBookingService } from './services/PublicBookingService';
|
|
195
|
-
export { PublicCoursesService } from './services/PublicCoursesService';
|
|
196
|
-
export { PublicFacilitiesService } from './services/PublicFacilitiesService';
|
|
197
|
-
export { PublicHealthCheckService } from './services/PublicHealthCheckService';
|
|
198
|
-
export { PublicLeasingService } from './services/PublicLeasingService';
|
|
199
|
-
export { PublicOrdersService } from './services/PublicOrdersService';
|
|
200
|
-
export { PublicOrderTokensService } from './services/PublicOrderTokensService';
|
|
201
|
-
export { PublicProgrammesService } from './services/PublicProgrammesService';
|
|
202
|
-
export { PublicScheduledSessionsService } from './services/PublicScheduledSessionsService';
|
|
203
|
-
export { PublicSessionsService } from './services/PublicSessionsService';
|
|
204
|
-
export { PublicSlotsService } from './services/PublicSlotsService';
|
|
205
|
-
export { PublicStripeWebhookService } from './services/PublicStripeWebhookService';
|
|
206
|
-
export { PublicSurveyQuestionsService } from './services/PublicSurveyQuestionsService';
|
|
207
|
-
export { PublicSurveysService } from './services/PublicSurveysService';
|
|
208
|
-
export { PublicTenantsService } from './services/PublicTenantsService';
|
|
209
|
-
export { PublicVenuesService } from './services/PublicVenuesService';
|
|
210
|
-
export { PublicWaitlistActivityService } from './services/PublicWaitlistActivityService';
|
|
211
|
-
export { PublicWaitlistOpportunityService } from './services/PublicWaitlistOpportunityService';
|
|
212
|
-
export { RecentOrderActivityReportService } from './services/RecentOrderActivityReportService';
|
|
213
|
-
export { ScheduledSessionsService } from './services/ScheduledSessionsService';
|
|
214
|
-
export { ScheduledSessionsSchedulesService } from './services/ScheduledSessionsSchedulesService';
|
|
215
|
-
export { SessionsService } from './services/SessionsService';
|
|
216
|
-
export { SlotOffersService } from './services/SlotOffersService';
|
|
217
|
-
export { SlotsService } from './services/SlotsService';
|
|
218
|
-
export { SlotScheduleOffersService } from './services/SlotScheduleOffersService';
|
|
219
|
-
export { SlotSchedulesService } from './services/SlotSchedulesService';
|
|
220
|
-
export { StripeAccountService } from './services/StripeAccountService';
|
|
221
|
-
export { SurfacesService } from './services/SurfacesService';
|
|
222
|
-
export { SurveyAnswersService } from './services/SurveyAnswersService';
|
|
223
|
-
export { SurveyQuestionsService } from './services/SurveyQuestionsService';
|
|
224
|
-
export { SurveyReportExtendedService } from './services/SurveyReportExtendedService';
|
|
225
|
-
export { SurveysService } from './services/SurveysService';
|
|
226
|
-
export { TenantsService } from './services/TenantsService';
|
|
227
|
-
export { TenantWebsiteSettingsService } from './services/TenantWebsiteSettingsService';
|
|
228
|
-
export { TimezoneService } from './services/TimezoneService';
|
|
229
|
-
export { TotalRevenueReportService } from './services/TotalRevenueReportService';
|
|
230
|
-
export { UsersService } from './services/UsersService';
|
|
231
|
-
export { VenuesService } from './services/VenuesService';
|
|
232
|
-
export { VenuesReportService } from './services/VenuesReportService';
|
|
233
|
-
export { WaitlistActivityService } from './services/WaitlistActivityService';
|
|
234
|
-
export { WaitlistOpportunityService } from './services/WaitlistOpportunityService';
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
export { ApiClient } from './ApiClient';
|
|
5
|
+
|
|
6
|
+
export { ApiError } from './core/ApiError';
|
|
7
|
+
export { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
8
|
+
export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
9
|
+
export { OpenAPI } from './core/OpenAPI';
|
|
10
|
+
export type { OpenAPIConfig } from './core/OpenAPI';
|
|
11
|
+
|
|
12
|
+
export type { Activity } from './models/Activity';
|
|
13
|
+
export { ActivityType } from './models/ActivityType';
|
|
14
|
+
export { AdvanceBooking } from './models/AdvanceBooking';
|
|
15
|
+
export type { Amenity } from './models/Amenity';
|
|
16
|
+
export { ApplicationRole } from './models/ApplicationRole';
|
|
17
|
+
export { AppUserRole } from './models/AppUserRole';
|
|
18
|
+
export type { AutoCompleteResponseModel } from './models/AutoCompleteResponseModel';
|
|
19
|
+
export { BookingStatus } from './models/BookingStatus';
|
|
20
|
+
export { ContactOnConfirmation } from './models/ContactOnConfirmation';
|
|
21
|
+
export type { Country } from './models/Country';
|
|
22
|
+
export type { Course } from './models/Course';
|
|
23
|
+
export { CourseBookingCutoff } from './models/CourseBookingCutoff';
|
|
24
|
+
export type { CoursePage } from './models/CoursePage';
|
|
25
|
+
export { CourseSearchSortBy } from './models/CourseSearchSortBy';
|
|
26
|
+
export type { CourseSession } from './models/CourseSession';
|
|
27
|
+
export type { CourseSessionPage } from './models/CourseSessionPage';
|
|
28
|
+
export type { CourseSessionSchedule } from './models/CourseSessionSchedule';
|
|
29
|
+
export type { CourseSessionSchedulePage } from './models/CourseSessionSchedulePage';
|
|
30
|
+
export type { Customer } from './models/Customer';
|
|
31
|
+
export { CustomerCancellationOption } from './models/CustomerCancellationOption';
|
|
32
|
+
export type { CustomerPage } from './models/CustomerPage';
|
|
33
|
+
export { CustomerType } from './models/CustomerType';
|
|
34
|
+
export { DayOfWeek } from './models/DayOfWeek';
|
|
35
|
+
export type { EmailReminderSchedule } from './models/EmailReminderSchedule';
|
|
36
|
+
export type { EmailReminderSchedulePage } from './models/EmailReminderSchedulePage';
|
|
37
|
+
export type { EmailSetting } from './models/EmailSetting';
|
|
38
|
+
export type { EmailSettingPage } from './models/EmailSettingPage';
|
|
39
|
+
export type { Facility } from './models/Facility';
|
|
40
|
+
export type { FacilityIndividual } from './models/FacilityIndividual';
|
|
41
|
+
export type { FacilityIndividualPage } from './models/FacilityIndividualPage';
|
|
42
|
+
export { FacilityIndividualsType } from './models/FacilityIndividualsType';
|
|
43
|
+
export type { FacilityPage } from './models/FacilityPage';
|
|
44
|
+
export type { GenericActivity } from './models/GenericActivity';
|
|
45
|
+
export type { GenericActivityPage } from './models/GenericActivityPage';
|
|
46
|
+
export type { GeocodeResponseModel } from './models/GeocodeResponseModel';
|
|
47
|
+
export type { GooglePrediction } from './models/GooglePrediction';
|
|
48
|
+
export { HttpStatusCode } from './models/HttpStatusCode';
|
|
49
|
+
export type { Image } from './models/Image';
|
|
50
|
+
export type { ImagePage } from './models/ImagePage';
|
|
51
|
+
export { InviteStatus } from './models/InviteStatus';
|
|
52
|
+
export type { IOpportunity } from './models/IOpportunity';
|
|
53
|
+
export type { LoqateGeocode } from './models/LoqateGeocode';
|
|
54
|
+
export type { LoqatePlaceResult } from './models/LoqatePlaceResult';
|
|
55
|
+
export type { LoqatePrediction } from './models/LoqatePrediction';
|
|
56
|
+
export type { Northeast } from './models/Northeast';
|
|
57
|
+
export type { NotificationQueue } from './models/NotificationQueue';
|
|
58
|
+
export type { NotificationQueuePage } from './models/NotificationQueuePage';
|
|
59
|
+
export type { NotificationSetting } from './models/NotificationSetting';
|
|
60
|
+
export type { NotificationSettingPage } from './models/NotificationSettingPage';
|
|
61
|
+
export { NotificationType } from './models/NotificationType';
|
|
62
|
+
export type { Offer } from './models/Offer';
|
|
63
|
+
export type { OfferPage } from './models/OfferPage';
|
|
64
|
+
export type { OpenactiveFeedIntermediate } from './models/OpenactiveFeedIntermediate';
|
|
65
|
+
export type { OpenactiveFeedIntermediatePage } from './models/OpenactiveFeedIntermediatePage';
|
|
66
|
+
export type { OpenactiveFeedItem } from './models/OpenactiveFeedItem';
|
|
67
|
+
export type { OpenactiveFeedItemPage } from './models/OpenactiveFeedItemPage';
|
|
68
|
+
export { OpportunityType } from './models/OpportunityType';
|
|
69
|
+
export type { Order } from './models/Order';
|
|
70
|
+
export type { OrderItem } from './models/OrderItem';
|
|
71
|
+
export type { OrderItemPage } from './models/OrderItemPage';
|
|
72
|
+
export { OrderItemStatus } from './models/OrderItemStatus';
|
|
73
|
+
export type { OrderPage } from './models/OrderPage';
|
|
74
|
+
export { OrderSource } from './models/OrderSource';
|
|
75
|
+
export { OrderStage } from './models/OrderStage';
|
|
76
|
+
export type { OrderToken } from './models/OrderToken';
|
|
77
|
+
export type { OrderTokenPage } from './models/OrderTokenPage';
|
|
78
|
+
export { OrganisationApplicationFeeHandling } from './models/OrganisationApplicationFeeHandling';
|
|
79
|
+
export { OrganisationAvailableChannel } from './models/OrganisationAvailableChannel';
|
|
80
|
+
export { OrganisationRefundPolicy } from './models/OrganisationRefundPolicy';
|
|
81
|
+
export { OrganisationTaxMode } from './models/OrganisationTaxMode';
|
|
82
|
+
export { OrganisationType } from './models/OrganisationType';
|
|
83
|
+
export type { OrgCourseUtilisation } from './models/OrgCourseUtilisation';
|
|
84
|
+
export type { OrgCourseUtilisationPage } from './models/OrgCourseUtilisationPage';
|
|
85
|
+
export type { PageMeta } from './models/PageMeta';
|
|
86
|
+
export type { Payment } from './models/Payment';
|
|
87
|
+
export { PaymentMethod } from './models/PaymentMethod';
|
|
88
|
+
export type { PaymentPage } from './models/PaymentPage';
|
|
89
|
+
export type { Permission } from './models/Permission';
|
|
90
|
+
export type { PermissionPage } from './models/PermissionPage';
|
|
91
|
+
export type { PlaceDetailsResponseModel } from './models/PlaceDetailsResponseModel';
|
|
92
|
+
export type { PlaceGeometry } from './models/PlaceGeometry';
|
|
93
|
+
export type { PlaceLocation } from './models/PlaceLocation';
|
|
94
|
+
export type { PlaceResult } from './models/PlaceResult';
|
|
95
|
+
export type { PlaceViewport } from './models/PlaceViewport';
|
|
96
|
+
export type { PlusCode } from './models/PlusCode';
|
|
97
|
+
export { Prepayment } from './models/Prepayment';
|
|
98
|
+
export type { Programme } from './models/Programme';
|
|
99
|
+
export type { ProgrammePage } from './models/ProgrammePage';
|
|
100
|
+
export { ReachEntity } from './models/ReachEntity';
|
|
101
|
+
export type { ReachError } from './models/ReachError';
|
|
102
|
+
export { ReachOperation } from './models/ReachOperation';
|
|
103
|
+
export type { RecentOrderActivityReport } from './models/RecentOrderActivityReport';
|
|
104
|
+
export type { RecentOrderActivityReportPage } from './models/RecentOrderActivityReportPage';
|
|
105
|
+
export type { ScheduledSession } from './models/ScheduledSession';
|
|
106
|
+
export type { ScheduledSessionPage } from './models/ScheduledSessionPage';
|
|
107
|
+
export type { ScheduledSessionSchedule } from './models/ScheduledSessionSchedule';
|
|
108
|
+
export type { ScheduledSessionSchedulePage } from './models/ScheduledSessionSchedulePage';
|
|
109
|
+
export { ScheduledSessionSearchSortBy } from './models/ScheduledSessionSearchSortBy';
|
|
110
|
+
export { ScheduleStatus } from './models/ScheduleStatus';
|
|
111
|
+
export { SearchSortOrderDirection } from './models/SearchSortOrderDirection';
|
|
112
|
+
export type { Session } from './models/Session';
|
|
113
|
+
export { SessionGender } from './models/SessionGender';
|
|
114
|
+
export type { SessionPage } from './models/SessionPage';
|
|
115
|
+
export { SessionType } from './models/SessionType';
|
|
116
|
+
export type { Slot } from './models/Slot';
|
|
117
|
+
export { SlotAvailabilityStatus } from './models/SlotAvailabilityStatus';
|
|
118
|
+
export type { SlotOffer } from './models/SlotOffer';
|
|
119
|
+
export type { SlotOfferPage } from './models/SlotOfferPage';
|
|
120
|
+
export type { SlotPage } from './models/SlotPage';
|
|
121
|
+
export type { SlotSchedule } from './models/SlotSchedule';
|
|
122
|
+
export type { SlotScheduleOffer } from './models/SlotScheduleOffer';
|
|
123
|
+
export type { SlotScheduleOfferPage } from './models/SlotScheduleOfferPage';
|
|
124
|
+
export type { SlotSchedulePage } from './models/SlotSchedulePage';
|
|
125
|
+
export { SlotStatus } from './models/SlotStatus';
|
|
126
|
+
export type { Southwest } from './models/Southwest';
|
|
127
|
+
export type { StripeAccount } from './models/StripeAccount';
|
|
128
|
+
export type { StripeAccountPage } from './models/StripeAccountPage';
|
|
129
|
+
export type { StructuredFormatting } from './models/StructuredFormatting';
|
|
130
|
+
export type { Surface } from './models/Surface';
|
|
131
|
+
export type { Survey } from './models/Survey';
|
|
132
|
+
export type { SurveyAnswer } from './models/SurveyAnswer';
|
|
133
|
+
export type { SurveyAnswerPage } from './models/SurveyAnswerPage';
|
|
134
|
+
export type { SurveyPage } from './models/SurveyPage';
|
|
135
|
+
export type { SurveyQuestion } from './models/SurveyQuestion';
|
|
136
|
+
export type { SurveyQuestionOption } from './models/SurveyQuestionOption';
|
|
137
|
+
export type { SurveyQuestionPage } from './models/SurveyQuestionPage';
|
|
138
|
+
export { SurveyQuestionsTarget } from './models/SurveyQuestionsTarget';
|
|
139
|
+
export { SurveyQuestionType } from './models/SurveyQuestionType';
|
|
140
|
+
export type { SurveyReportExtended } from './models/SurveyReportExtended';
|
|
141
|
+
export type { SurveyReportExtendedPage } from './models/SurveyReportExtendedPage';
|
|
142
|
+
export type { SurveySubmissionModel } from './models/SurveySubmissionModel';
|
|
143
|
+
export { SurveyType } from './models/SurveyType';
|
|
144
|
+
export type { Tax } from './models/Tax';
|
|
145
|
+
export type { Tenant } from './models/Tenant';
|
|
146
|
+
export type { TenantPage } from './models/TenantPage';
|
|
147
|
+
export type { TenantWebsiteSetting } from './models/TenantWebsiteSetting';
|
|
148
|
+
export type { TenantWebsiteSettingPage } from './models/TenantWebsiteSettingPage';
|
|
149
|
+
export type { Timezone } from './models/Timezone';
|
|
150
|
+
export type { TotalRevenueReport } from './models/TotalRevenueReport';
|
|
151
|
+
export type { TotalRevenueReportPage } from './models/TotalRevenueReportPage';
|
|
152
|
+
export type { User } from './models/User';
|
|
153
|
+
export type { UserPage } from './models/UserPage';
|
|
154
|
+
export type { UserRole } from './models/UserRole';
|
|
155
|
+
export type { Venue } from './models/Venue';
|
|
156
|
+
export type { VenueOpeningHours } from './models/VenueOpeningHours';
|
|
157
|
+
export type { VenuePage } from './models/VenuePage';
|
|
158
|
+
export type { VenuesReport } from './models/VenuesReport';
|
|
159
|
+
export type { VenuesReportPage } from './models/VenuesReportPage';
|
|
160
|
+
export type { WaitlistActivity } from './models/WaitlistActivity';
|
|
161
|
+
export type { WaitlistActivityPage } from './models/WaitlistActivityPage';
|
|
162
|
+
export type { WaitlistOpportunity } from './models/WaitlistOpportunity';
|
|
163
|
+
export type { WaitlistOpportunityPage } from './models/WaitlistOpportunityPage';
|
|
164
|
+
|
|
165
|
+
export { ActivityService } from './services/ActivityService';
|
|
166
|
+
export { AmenityService } from './services/AmenityService';
|
|
167
|
+
export { BookingService } from './services/BookingService';
|
|
168
|
+
export { CountryService } from './services/CountryService';
|
|
169
|
+
export { CoursesService } from './services/CoursesService';
|
|
170
|
+
export { CourseSessionsService } from './services/CourseSessionsService';
|
|
171
|
+
export { CourseSessionSchedulesService } from './services/CourseSessionSchedulesService';
|
|
172
|
+
export { CustomersService } from './services/CustomersService';
|
|
173
|
+
export { EmailReminderSchedulesService } from './services/EmailReminderSchedulesService';
|
|
174
|
+
export { EmailSettingsService } from './services/EmailSettingsService';
|
|
175
|
+
export { FacilitiesService } from './services/FacilitiesService';
|
|
176
|
+
export { FacilityIndividualsService } from './services/FacilityIndividualsService';
|
|
177
|
+
export { GenericActivityService } from './services/GenericActivityService';
|
|
178
|
+
export { GeocodeService } from './services/GeocodeService';
|
|
179
|
+
export { ImagesService } from './services/ImagesService';
|
|
180
|
+
export { LeasingService } from './services/LeasingService';
|
|
181
|
+
export { LoqatePlacesService } from './services/LoqatePlacesService';
|
|
182
|
+
export { NotificationQueueService } from './services/NotificationQueueService';
|
|
183
|
+
export { NotificationSettingsService } from './services/NotificationSettingsService';
|
|
184
|
+
export { OffersService } from './services/OffersService';
|
|
185
|
+
export { OpenactiveFeedIntermediateService } from './services/OpenactiveFeedIntermediateService';
|
|
186
|
+
export { OpenactiveFeedItemService } from './services/OpenactiveFeedItemService';
|
|
187
|
+
export { OrderItemsService } from './services/OrderItemsService';
|
|
188
|
+
export { OrdersService } from './services/OrdersService';
|
|
189
|
+
export { OrgCourseUtilisationService } from './services/OrgCourseUtilisationService';
|
|
190
|
+
export { PaymentsService } from './services/PaymentsService';
|
|
191
|
+
export { PermissionsService } from './services/PermissionsService';
|
|
192
|
+
export { PlacesService } from './services/PlacesService';
|
|
193
|
+
export { ProgrammesService } from './services/ProgrammesService';
|
|
194
|
+
export { PublicBookingService } from './services/PublicBookingService';
|
|
195
|
+
export { PublicCoursesService } from './services/PublicCoursesService';
|
|
196
|
+
export { PublicFacilitiesService } from './services/PublicFacilitiesService';
|
|
197
|
+
export { PublicHealthCheckService } from './services/PublicHealthCheckService';
|
|
198
|
+
export { PublicLeasingService } from './services/PublicLeasingService';
|
|
199
|
+
export { PublicOrdersService } from './services/PublicOrdersService';
|
|
200
|
+
export { PublicOrderTokensService } from './services/PublicOrderTokensService';
|
|
201
|
+
export { PublicProgrammesService } from './services/PublicProgrammesService';
|
|
202
|
+
export { PublicScheduledSessionsService } from './services/PublicScheduledSessionsService';
|
|
203
|
+
export { PublicSessionsService } from './services/PublicSessionsService';
|
|
204
|
+
export { PublicSlotsService } from './services/PublicSlotsService';
|
|
205
|
+
export { PublicStripeWebhookService } from './services/PublicStripeWebhookService';
|
|
206
|
+
export { PublicSurveyQuestionsService } from './services/PublicSurveyQuestionsService';
|
|
207
|
+
export { PublicSurveysService } from './services/PublicSurveysService';
|
|
208
|
+
export { PublicTenantsService } from './services/PublicTenantsService';
|
|
209
|
+
export { PublicVenuesService } from './services/PublicVenuesService';
|
|
210
|
+
export { PublicWaitlistActivityService } from './services/PublicWaitlistActivityService';
|
|
211
|
+
export { PublicWaitlistOpportunityService } from './services/PublicWaitlistOpportunityService';
|
|
212
|
+
export { RecentOrderActivityReportService } from './services/RecentOrderActivityReportService';
|
|
213
|
+
export { ScheduledSessionsService } from './services/ScheduledSessionsService';
|
|
214
|
+
export { ScheduledSessionsSchedulesService } from './services/ScheduledSessionsSchedulesService';
|
|
215
|
+
export { SessionsService } from './services/SessionsService';
|
|
216
|
+
export { SlotOffersService } from './services/SlotOffersService';
|
|
217
|
+
export { SlotsService } from './services/SlotsService';
|
|
218
|
+
export { SlotScheduleOffersService } from './services/SlotScheduleOffersService';
|
|
219
|
+
export { SlotSchedulesService } from './services/SlotSchedulesService';
|
|
220
|
+
export { StripeAccountService } from './services/StripeAccountService';
|
|
221
|
+
export { SurfacesService } from './services/SurfacesService';
|
|
222
|
+
export { SurveyAnswersService } from './services/SurveyAnswersService';
|
|
223
|
+
export { SurveyQuestionsService } from './services/SurveyQuestionsService';
|
|
224
|
+
export { SurveyReportExtendedService } from './services/SurveyReportExtendedService';
|
|
225
|
+
export { SurveysService } from './services/SurveysService';
|
|
226
|
+
export { TenantsService } from './services/TenantsService';
|
|
227
|
+
export { TenantWebsiteSettingsService } from './services/TenantWebsiteSettingsService';
|
|
228
|
+
export { TimezoneService } from './services/TimezoneService';
|
|
229
|
+
export { TotalRevenueReportService } from './services/TotalRevenueReportService';
|
|
230
|
+
export { UsersService } from './services/UsersService';
|
|
231
|
+
export { VenuesService } from './services/VenuesService';
|
|
232
|
+
export { VenuesReportService } from './services/VenuesReportService';
|
|
233
|
+
export { WaitlistActivityService } from './services/WaitlistActivityService';
|
|
234
|
+
export { WaitlistOpportunityService } from './services/WaitlistOpportunityService';
|
package/src/models/CoursePage.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { Course } from './Course';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type CoursePage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<Course> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Course } from './Course';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type CoursePage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<Course> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { CourseSession } from './CourseSession';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type CourseSessionPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<CourseSession> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { CourseSession } from './CourseSession';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type CourseSessionPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<CourseSession> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { CourseSessionSchedule } from './CourseSessionSchedule';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type CourseSessionSchedulePage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<CourseSessionSchedule> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { CourseSessionSchedule } from './CourseSessionSchedule';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type CourseSessionSchedulePage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<CourseSessionSchedule> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { Customer } from './Customer';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type CustomerPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<Customer> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Customer } from './Customer';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type CustomerPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<Customer> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { EmailReminderSchedule } from './EmailReminderSchedule';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type EmailReminderSchedulePage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<EmailReminderSchedule> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { EmailReminderSchedule } from './EmailReminderSchedule';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type EmailReminderSchedulePage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<EmailReminderSchedule> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { EmailSetting } from './EmailSetting';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type EmailSettingPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<EmailSetting> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { EmailSetting } from './EmailSetting';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type EmailSettingPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<EmailSetting> | null;
|
|
11
|
+
};
|