reach-api-sdk 1.0.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.
Files changed (238) hide show
  1. package/.eslintrc copy.json +13 -0
  2. package/.eslintrc.json +23 -0
  3. package/.prettierrc.json +7 -0
  4. package/README.md +2 -0
  5. package/dist/reach-sdk.d.ts +24450 -0
  6. package/dist/reach-sdk.js +20631 -0
  7. package/package.json +46 -0
  8. package/rollup.config.mjs +30 -0
  9. package/src/ApiClient.ts +239 -0
  10. package/src/core/ApiError.ts +24 -0
  11. package/src/core/ApiRequestOptions.ts +16 -0
  12. package/src/core/ApiResult.ts +10 -0
  13. package/src/core/AxiosHttpRequest.ts +24 -0
  14. package/src/core/BaseHttpRequest.ts +12 -0
  15. package/src/core/CancelablePromise.ts +129 -0
  16. package/src/core/OpenAPI.ts +31 -0
  17. package/src/core/request.ts +328 -0
  18. package/src/definition/swagger.yaml +58566 -0
  19. package/src/index.ts +230 -0
  20. package/src/models/Activity.ts +51 -0
  21. package/src/models/ActivityType.ts +12 -0
  22. package/src/models/AdvanceBooking.ts +12 -0
  23. package/src/models/Amenity.ts +21 -0
  24. package/src/models/AppUserRole.ts +13 -0
  25. package/src/models/ApplicationRole.ts +14 -0
  26. package/src/models/AutoCompleteResponseModel.ts +15 -0
  27. package/src/models/BookingStatus.ts +11 -0
  28. package/src/models/ContactOnConfirmation.ts +11 -0
  29. package/src/models/Country.ts +43 -0
  30. package/src/models/Course.ts +252 -0
  31. package/src/models/CourseBookingCutoff.ts +11 -0
  32. package/src/models/CoursePage.ts +13 -0
  33. package/src/models/CourseSearchSortBy.ts +11 -0
  34. package/src/models/CourseSession.ts +88 -0
  35. package/src/models/CourseSessionPage.ts +13 -0
  36. package/src/models/CourseSessionSchedule.ts +85 -0
  37. package/src/models/CourseSessionSchedulePage.ts +13 -0
  38. package/src/models/Customer.ts +88 -0
  39. package/src/models/CustomerCancellationOption.ts +12 -0
  40. package/src/models/CustomerPage.ts +13 -0
  41. package/src/models/CustomerType.ts +11 -0
  42. package/src/models/DayOfWeek.ts +13 -0
  43. package/src/models/EmailReminderSchedule.ts +49 -0
  44. package/src/models/EmailReminderSchedulePage.ts +13 -0
  45. package/src/models/EmailSetting.ts +61 -0
  46. package/src/models/EmailSettingPage.ts +13 -0
  47. package/src/models/Facility.ts +105 -0
  48. package/src/models/FacilityIndividual.ts +67 -0
  49. package/src/models/FacilityIndividualPage.ts +13 -0
  50. package/src/models/FacilityIndividualsType.ts +19 -0
  51. package/src/models/FacilityPage.ts +13 -0
  52. package/src/models/GenericActivity.ts +112 -0
  53. package/src/models/GenericActivityPage.ts +13 -0
  54. package/src/models/GeocodeResponseModel.ts +18 -0
  55. package/src/models/GooglePrediction.ts +32 -0
  56. package/src/models/HttpStatusCode.ts +67 -0
  57. package/src/models/IOpportunity.ts +55 -0
  58. package/src/models/Image.ts +78 -0
  59. package/src/models/ImagePage.ts +13 -0
  60. package/src/models/InviteStatus.ts +11 -0
  61. package/src/models/LoqateGeocode.ts +21 -0
  62. package/src/models/LoqatePlaceResult.ts +48 -0
  63. package/src/models/LoqatePrediction.ts +21 -0
  64. package/src/models/Northeast.ts +17 -0
  65. package/src/models/NotificationQueue.ts +50 -0
  66. package/src/models/NotificationQueuePage.ts +13 -0
  67. package/src/models/NotificationSetting.ts +89 -0
  68. package/src/models/NotificationSettingPage.ts +13 -0
  69. package/src/models/NotificationType.ts +22 -0
  70. package/src/models/Offer.ts +100 -0
  71. package/src/models/OfferPage.ts +13 -0
  72. package/src/models/OpenactiveFeedIntermediate.ts +50 -0
  73. package/src/models/OpenactiveFeedIntermediatePage.ts +13 -0
  74. package/src/models/OpenactiveFeedItem.ts +56 -0
  75. package/src/models/OpenactiveFeedItemPage.ts +13 -0
  76. package/src/models/OpportunityType.ts +12 -0
  77. package/src/models/Order.ts +212 -0
  78. package/src/models/OrderItem.ts +98 -0
  79. package/src/models/OrderItemPage.ts +13 -0
  80. package/src/models/OrderItemStatus.ts +16 -0
  81. package/src/models/OrderPage.ts +13 -0
  82. package/src/models/OrderSource.ts +11 -0
  83. package/src/models/OrderStage.ts +12 -0
  84. package/src/models/OrderToken.ts +41 -0
  85. package/src/models/OrderTokenPage.ts +13 -0
  86. package/src/models/OrgCourseUtilisation.ts +81 -0
  87. package/src/models/OrgCourseUtilisationPage.ts +13 -0
  88. package/src/models/OrganisationApplicationFeeHandling.ts +11 -0
  89. package/src/models/OrganisationAvailableChannel.ts +11 -0
  90. package/src/models/OrganisationRefundPolicy.ts +12 -0
  91. package/src/models/OrganisationTaxMode.ts +11 -0
  92. package/src/models/OrganisationType.ts +11 -0
  93. package/src/models/Payment.ts +65 -0
  94. package/src/models/PaymentMethod.ts +13 -0
  95. package/src/models/PaymentPage.ts +13 -0
  96. package/src/models/Permission.ts +77 -0
  97. package/src/models/PermissionPage.ts +13 -0
  98. package/src/models/PlaceDetailsResponseModel.ts +12 -0
  99. package/src/models/PlaceGeometry.ts +14 -0
  100. package/src/models/PlaceLocation.ts +17 -0
  101. package/src/models/PlaceResult.ts +20 -0
  102. package/src/models/PlaceViewport.ts +14 -0
  103. package/src/models/PlusCode.ts +17 -0
  104. package/src/models/Prepayment.ts +12 -0
  105. package/src/models/Programme.ts +71 -0
  106. package/src/models/ProgrammePage.ts +13 -0
  107. package/src/models/ReachEntity.ts +18 -0
  108. package/src/models/ReachError.ts +17 -0
  109. package/src/models/ReachOperation.ts +11 -0
  110. package/src/models/RecentOrderActivityReport.ts +81 -0
  111. package/src/models/RecentOrderActivityReportPage.ts +13 -0
  112. package/src/models/ScheduleStatus.ts +13 -0
  113. package/src/models/ScheduledSession.ts +139 -0
  114. package/src/models/ScheduledSessionPage.ts +13 -0
  115. package/src/models/ScheduledSessionSchedule.ts +85 -0
  116. package/src/models/ScheduledSessionSchedulePage.ts +13 -0
  117. package/src/models/ScheduledSessionSearchSortBy.ts +10 -0
  118. package/src/models/SearchSortOrderDirection.ts +11 -0
  119. package/src/models/Session.ts +191 -0
  120. package/src/models/SessionGender.ts +12 -0
  121. package/src/models/SessionPage.ts +13 -0
  122. package/src/models/SessionType.ts +12 -0
  123. package/src/models/Slot.ts +142 -0
  124. package/src/models/SlotAvailabilityStatus.ts +17 -0
  125. package/src/models/SlotOffer.ts +41 -0
  126. package/src/models/SlotOfferPage.ts +13 -0
  127. package/src/models/SlotPage.ts +13 -0
  128. package/src/models/SlotSchedule.ts +107 -0
  129. package/src/models/SlotScheduleOffer.ts +42 -0
  130. package/src/models/SlotScheduleOfferPage.ts +13 -0
  131. package/src/models/SlotSchedulePage.ts +13 -0
  132. package/src/models/SlotStatus.ts +18 -0
  133. package/src/models/Southwest.ts +17 -0
  134. package/src/models/StripeAccount.ts +69 -0
  135. package/src/models/StripeAccountPage.ts +13 -0
  136. package/src/models/StructuredFormatting.ts +17 -0
  137. package/src/models/Surface.ts +24 -0
  138. package/src/models/Survey.ts +51 -0
  139. package/src/models/SurveyAnswer.ts +58 -0
  140. package/src/models/SurveyAnswerPage.ts +13 -0
  141. package/src/models/SurveyPage.ts +13 -0
  142. package/src/models/SurveyQuestion.ts +69 -0
  143. package/src/models/SurveyQuestionOption.ts +45 -0
  144. package/src/models/SurveyQuestionPage.ts +13 -0
  145. package/src/models/SurveyQuestionType.ts +13 -0
  146. package/src/models/SurveyQuestionsTarget.ts +11 -0
  147. package/src/models/SurveySubmissionModel.ts +33 -0
  148. package/src/models/SurveyType.ts +11 -0
  149. package/src/models/Tax.ts +37 -0
  150. package/src/models/Tenant.ts +242 -0
  151. package/src/models/TenantPage.ts +13 -0
  152. package/src/models/TenantWebsiteSetting.ts +89 -0
  153. package/src/models/TenantWebsiteSettingPage.ts +13 -0
  154. package/src/models/Timezone.ts +21 -0
  155. package/src/models/TotalRevenueReport.ts +68 -0
  156. package/src/models/TotalRevenueReportPage.ts +13 -0
  157. package/src/models/User.ts +65 -0
  158. package/src/models/UserPage.ts +13 -0
  159. package/src/models/UserRole.ts +28 -0
  160. package/src/models/Venue.ts +187 -0
  161. package/src/models/VenueOpeningHours.ts +52 -0
  162. package/src/models/VenuePage.ts +13 -0
  163. package/src/models/VenuesReport.ts +81 -0
  164. package/src/models/VenuesReportPage.ts +13 -0
  165. package/src/models/WaitlistActivity.ts +58 -0
  166. package/src/models/WaitlistActivityPage.ts +13 -0
  167. package/src/models/WaitlistOpportunity.ts +68 -0
  168. package/src/models/WaitlistOpportunityPage.ts +13 -0
  169. package/src/services/ActivityService.ts +118 -0
  170. package/src/services/AmenityService.ts +118 -0
  171. package/src/services/BookingService.ts +1037 -0
  172. package/src/services/CountryService.ts +118 -0
  173. package/src/services/CourseSessionSchedulesService.ts +589 -0
  174. package/src/services/CourseSessionsService.ts +715 -0
  175. package/src/services/CoursesService.ts +930 -0
  176. package/src/services/CustomersService.ts +726 -0
  177. package/src/services/EmailReminderSchedulesService.ts +526 -0
  178. package/src/services/EmailSettingsService.ts +528 -0
  179. package/src/services/FacilitiesService.ts +634 -0
  180. package/src/services/FacilityIndividualsService.ts +526 -0
  181. package/src/services/GenericActivityService.ts +564 -0
  182. package/src/services/GeocodeService.ts +43 -0
  183. package/src/services/ImagesService.ts +661 -0
  184. package/src/services/LeasingService.ts +739 -0
  185. package/src/services/LoqatePlacesService.ts +76 -0
  186. package/src/services/NotificationQueueService.ts +508 -0
  187. package/src/services/NotificationSettingsService.ts +708 -0
  188. package/src/services/OffersService.ts +636 -0
  189. package/src/services/OpenactiveFeedIntermediateService.ts +490 -0
  190. package/src/services/OpenactiveFeedItemService.ts +493 -0
  191. package/src/services/OrderItemsService.ts +474 -0
  192. package/src/services/OrdersService.ts +862 -0
  193. package/src/services/OrgCourseUtilisationService.ts +762 -0
  194. package/src/services/PaymentsService.ts +474 -0
  195. package/src/services/PermissionsService.ts +456 -0
  196. package/src/services/PlacesService.ts +70 -0
  197. package/src/services/ProgrammesService.ts +528 -0
  198. package/src/services/PublicBookingService.ts +528 -0
  199. package/src/services/PublicCoursesService.ts +632 -0
  200. package/src/services/PublicFacilitiesService.ts +462 -0
  201. package/src/services/PublicHealthCheckService.ts +25 -0
  202. package/src/services/PublicLeasingService.ts +602 -0
  203. package/src/services/PublicOrderTokensService.ts +468 -0
  204. package/src/services/PublicOrdersService.ts +527 -0
  205. package/src/services/PublicProgrammesService.ts +426 -0
  206. package/src/services/PublicScheduledSessionsService.ts +621 -0
  207. package/src/services/PublicSessionsService.ts +697 -0
  208. package/src/services/PublicSlotsService.ts +810 -0
  209. package/src/services/PublicStripeWebhookService.ts +35 -0
  210. package/src/services/PublicSurveyQuestionsService.ts +424 -0
  211. package/src/services/PublicSurveysService.ts +378 -0
  212. package/src/services/PublicTenantsService.ts +427 -0
  213. package/src/services/PublicVenuesService.ts +522 -0
  214. package/src/services/PublicWaitlistActivityService.ts +442 -0
  215. package/src/services/PublicWaitlistOpportunityService.ts +430 -0
  216. package/src/services/RecentOrderActivityReportService.ts +546 -0
  217. package/src/services/ScheduledSessionsSchedulesService.ts +605 -0
  218. package/src/services/ScheduledSessionsService.ts +903 -0
  219. package/src/services/SessionsService.ts +670 -0
  220. package/src/services/SlotOffersService.ts +492 -0
  221. package/src/services/SlotScheduleOffersService.ts +492 -0
  222. package/src/services/SlotSchedulesService.ts +641 -0
  223. package/src/services/SlotsService.ts +842 -0
  224. package/src/services/StripeAccountService.ts +552 -0
  225. package/src/services/SurfacesService.ts +124 -0
  226. package/src/services/SurveyAnswersService.ts +726 -0
  227. package/src/services/SurveyQuestionsService.ts +474 -0
  228. package/src/services/SurveysService.ts +456 -0
  229. package/src/services/TenantWebsiteSettingsService.ts +456 -0
  230. package/src/services/TenantsService.ts +801 -0
  231. package/src/services/TimezoneService.ts +124 -0
  232. package/src/services/TotalRevenueReportService.ts +528 -0
  233. package/src/services/UsersService.ts +543 -0
  234. package/src/services/VenuesReportService.ts +666 -0
  235. package/src/services/VenuesService.ts +724 -0
  236. package/src/services/WaitlistActivityService.ts +546 -0
  237. package/src/services/WaitlistOpportunityService.ts +528 -0
  238. package/tsconfig.json +11 -0
package/src/index.ts ADDED
@@ -0,0 +1,230 @@
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 { Payment } from './models/Payment';
86
+ export { PaymentMethod } from './models/PaymentMethod';
87
+ export type { PaymentPage } from './models/PaymentPage';
88
+ export type { Permission } from './models/Permission';
89
+ export type { PermissionPage } from './models/PermissionPage';
90
+ export type { PlaceDetailsResponseModel } from './models/PlaceDetailsResponseModel';
91
+ export type { PlaceGeometry } from './models/PlaceGeometry';
92
+ export type { PlaceLocation } from './models/PlaceLocation';
93
+ export type { PlaceResult } from './models/PlaceResult';
94
+ export type { PlaceViewport } from './models/PlaceViewport';
95
+ export type { PlusCode } from './models/PlusCode';
96
+ export { Prepayment } from './models/Prepayment';
97
+ export type { Programme } from './models/Programme';
98
+ export type { ProgrammePage } from './models/ProgrammePage';
99
+ export { ReachEntity } from './models/ReachEntity';
100
+ export type { ReachError } from './models/ReachError';
101
+ export { ReachOperation } from './models/ReachOperation';
102
+ export type { RecentOrderActivityReport } from './models/RecentOrderActivityReport';
103
+ export type { RecentOrderActivityReportPage } from './models/RecentOrderActivityReportPage';
104
+ export type { ScheduledSession } from './models/ScheduledSession';
105
+ export type { ScheduledSessionPage } from './models/ScheduledSessionPage';
106
+ export type { ScheduledSessionSchedule } from './models/ScheduledSessionSchedule';
107
+ export type { ScheduledSessionSchedulePage } from './models/ScheduledSessionSchedulePage';
108
+ export { ScheduledSessionSearchSortBy } from './models/ScheduledSessionSearchSortBy';
109
+ export { ScheduleStatus } from './models/ScheduleStatus';
110
+ export { SearchSortOrderDirection } from './models/SearchSortOrderDirection';
111
+ export type { Session } from './models/Session';
112
+ export { SessionGender } from './models/SessionGender';
113
+ export type { SessionPage } from './models/SessionPage';
114
+ export { SessionType } from './models/SessionType';
115
+ export type { Slot } from './models/Slot';
116
+ export { SlotAvailabilityStatus } from './models/SlotAvailabilityStatus';
117
+ export type { SlotOffer } from './models/SlotOffer';
118
+ export type { SlotOfferPage } from './models/SlotOfferPage';
119
+ export type { SlotPage } from './models/SlotPage';
120
+ export type { SlotSchedule } from './models/SlotSchedule';
121
+ export type { SlotScheduleOffer } from './models/SlotScheduleOffer';
122
+ export type { SlotScheduleOfferPage } from './models/SlotScheduleOfferPage';
123
+ export type { SlotSchedulePage } from './models/SlotSchedulePage';
124
+ export { SlotStatus } from './models/SlotStatus';
125
+ export type { Southwest } from './models/Southwest';
126
+ export type { StripeAccount } from './models/StripeAccount';
127
+ export type { StripeAccountPage } from './models/StripeAccountPage';
128
+ export type { StructuredFormatting } from './models/StructuredFormatting';
129
+ export type { Surface } from './models/Surface';
130
+ export type { Survey } from './models/Survey';
131
+ export type { SurveyAnswer } from './models/SurveyAnswer';
132
+ export type { SurveyAnswerPage } from './models/SurveyAnswerPage';
133
+ export type { SurveyPage } from './models/SurveyPage';
134
+ export type { SurveyQuestion } from './models/SurveyQuestion';
135
+ export type { SurveyQuestionOption } from './models/SurveyQuestionOption';
136
+ export type { SurveyQuestionPage } from './models/SurveyQuestionPage';
137
+ export { SurveyQuestionsTarget } from './models/SurveyQuestionsTarget';
138
+ export { SurveyQuestionType } from './models/SurveyQuestionType';
139
+ export type { SurveySubmissionModel } from './models/SurveySubmissionModel';
140
+ export { SurveyType } from './models/SurveyType';
141
+ export type { Tax } from './models/Tax';
142
+ export type { Tenant } from './models/Tenant';
143
+ export type { TenantPage } from './models/TenantPage';
144
+ export type { TenantWebsiteSetting } from './models/TenantWebsiteSetting';
145
+ export type { TenantWebsiteSettingPage } from './models/TenantWebsiteSettingPage';
146
+ export type { Timezone } from './models/Timezone';
147
+ export type { TotalRevenueReport } from './models/TotalRevenueReport';
148
+ export type { TotalRevenueReportPage } from './models/TotalRevenueReportPage';
149
+ export type { User } from './models/User';
150
+ export type { UserPage } from './models/UserPage';
151
+ export type { UserRole } from './models/UserRole';
152
+ export type { Venue } from './models/Venue';
153
+ export type { VenueOpeningHours } from './models/VenueOpeningHours';
154
+ export type { VenuePage } from './models/VenuePage';
155
+ export type { VenuesReport } from './models/VenuesReport';
156
+ export type { VenuesReportPage } from './models/VenuesReportPage';
157
+ export type { WaitlistActivity } from './models/WaitlistActivity';
158
+ export type { WaitlistActivityPage } from './models/WaitlistActivityPage';
159
+ export type { WaitlistOpportunity } from './models/WaitlistOpportunity';
160
+ export type { WaitlistOpportunityPage } from './models/WaitlistOpportunityPage';
161
+
162
+ export { ActivityService } from './services/ActivityService';
163
+ export { AmenityService } from './services/AmenityService';
164
+ export { BookingService } from './services/BookingService';
165
+ export { CountryService } from './services/CountryService';
166
+ export { CoursesService } from './services/CoursesService';
167
+ export { CourseSessionsService } from './services/CourseSessionsService';
168
+ export { CourseSessionSchedulesService } from './services/CourseSessionSchedulesService';
169
+ export { CustomersService } from './services/CustomersService';
170
+ export { EmailReminderSchedulesService } from './services/EmailReminderSchedulesService';
171
+ export { EmailSettingsService } from './services/EmailSettingsService';
172
+ export { FacilitiesService } from './services/FacilitiesService';
173
+ export { FacilityIndividualsService } from './services/FacilityIndividualsService';
174
+ export { GenericActivityService } from './services/GenericActivityService';
175
+ export { GeocodeService } from './services/GeocodeService';
176
+ export { ImagesService } from './services/ImagesService';
177
+ export { LeasingService } from './services/LeasingService';
178
+ export { LoqatePlacesService } from './services/LoqatePlacesService';
179
+ export { NotificationQueueService } from './services/NotificationQueueService';
180
+ export { NotificationSettingsService } from './services/NotificationSettingsService';
181
+ export { OffersService } from './services/OffersService';
182
+ export { OpenactiveFeedIntermediateService } from './services/OpenactiveFeedIntermediateService';
183
+ export { OpenactiveFeedItemService } from './services/OpenactiveFeedItemService';
184
+ export { OrderItemsService } from './services/OrderItemsService';
185
+ export { OrdersService } from './services/OrdersService';
186
+ export { OrgCourseUtilisationService } from './services/OrgCourseUtilisationService';
187
+ export { PaymentsService } from './services/PaymentsService';
188
+ export { PermissionsService } from './services/PermissionsService';
189
+ export { PlacesService } from './services/PlacesService';
190
+ export { ProgrammesService } from './services/ProgrammesService';
191
+ export { PublicBookingService } from './services/PublicBookingService';
192
+ export { PublicCoursesService } from './services/PublicCoursesService';
193
+ export { PublicFacilitiesService } from './services/PublicFacilitiesService';
194
+ export { PublicHealthCheckService } from './services/PublicHealthCheckService';
195
+ export { PublicLeasingService } from './services/PublicLeasingService';
196
+ export { PublicOrdersService } from './services/PublicOrdersService';
197
+ export { PublicOrderTokensService } from './services/PublicOrderTokensService';
198
+ export { PublicProgrammesService } from './services/PublicProgrammesService';
199
+ export { PublicScheduledSessionsService } from './services/PublicScheduledSessionsService';
200
+ export { PublicSessionsService } from './services/PublicSessionsService';
201
+ export { PublicSlotsService } from './services/PublicSlotsService';
202
+ export { PublicStripeWebhookService } from './services/PublicStripeWebhookService';
203
+ export { PublicSurveyQuestionsService } from './services/PublicSurveyQuestionsService';
204
+ export { PublicSurveysService } from './services/PublicSurveysService';
205
+ export { PublicTenantsService } from './services/PublicTenantsService';
206
+ export { PublicVenuesService } from './services/PublicVenuesService';
207
+ export { PublicWaitlistActivityService } from './services/PublicWaitlistActivityService';
208
+ export { PublicWaitlistOpportunityService } from './services/PublicWaitlistOpportunityService';
209
+ export { RecentOrderActivityReportService } from './services/RecentOrderActivityReportService';
210
+ export { ScheduledSessionsService } from './services/ScheduledSessionsService';
211
+ export { ScheduledSessionsSchedulesService } from './services/ScheduledSessionsSchedulesService';
212
+ export { SessionsService } from './services/SessionsService';
213
+ export { SlotOffersService } from './services/SlotOffersService';
214
+ export { SlotsService } from './services/SlotsService';
215
+ export { SlotScheduleOffersService } from './services/SlotScheduleOffersService';
216
+ export { SlotSchedulesService } from './services/SlotSchedulesService';
217
+ export { StripeAccountService } from './services/StripeAccountService';
218
+ export { SurfacesService } from './services/SurfacesService';
219
+ export { SurveyAnswersService } from './services/SurveyAnswersService';
220
+ export { SurveyQuestionsService } from './services/SurveyQuestionsService';
221
+ export { SurveysService } from './services/SurveysService';
222
+ export { TenantsService } from './services/TenantsService';
223
+ export { TenantWebsiteSettingsService } from './services/TenantWebsiteSettingsService';
224
+ export { TimezoneService } from './services/TimezoneService';
225
+ export { TotalRevenueReportService } from './services/TotalRevenueReportService';
226
+ export { UsersService } from './services/UsersService';
227
+ export { VenuesService } from './services/VenuesService';
228
+ export { VenuesReportService } from './services/VenuesReportService';
229
+ export { WaitlistActivityService } from './services/WaitlistActivityService';
230
+ export { WaitlistOpportunityService } from './services/WaitlistOpportunityService';
@@ -0,0 +1,51 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Surface } from './Surface';
6
+
7
+ /**
8
+ * Represents a Country within the Reach application.
9
+ */
10
+ export type Activity = {
11
+ /**
12
+ * Gets or sets the activities Id.
13
+ */
14
+ id?: number;
15
+ /**
16
+ * Gets or sets the activities Name.
17
+ */
18
+ name?: string | null;
19
+ /**
20
+ * Gets or sets the activities Name.
21
+ */
22
+ openactiveActivityId?: string | null;
23
+ /**
24
+ * Gets or sets the activities Name.
25
+ */
26
+ openactiveActivityPrefLabel?: string | null;
27
+ /**
28
+ * Gets or sets the activities Inventory type.
29
+ */
30
+ inventoryType?: string | null;
31
+ /**
32
+ * Gets or sets a value indicating whether the activity can be assigned to a session.
33
+ */
34
+ session?: boolean | null;
35
+ /**
36
+ * Gets or sets a value indicating whether the activity can be assigned to a facility.
37
+ */
38
+ facility?: boolean | null;
39
+ /**
40
+ * Gets or sets a value indicating whether the activity can be assigned to a course.
41
+ */
42
+ course?: boolean | null;
43
+ /**
44
+ * Gets or sets the activities Icon url.
45
+ */
46
+ iconUrl?: string | null;
47
+ /**
48
+ * Gets or sets the activities referenced surfaces.
49
+ */
50
+ surfaces?: Array<Surface> | null;
51
+ };
@@ -0,0 +1,12 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ /**
6
+ * The activity type.
7
+ */
8
+ export enum ActivityType {
9
+ FACILITY = 'Facility',
10
+ SESSION = 'Session',
11
+ COURSE = 'Course',
12
+ }
@@ -0,0 +1,12 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ /**
6
+ * Advance booking options.
7
+ */
8
+ export enum AdvanceBooking {
9
+ REQUIRED = 'Required',
10
+ OPTIONAL = 'Optional',
11
+ UNAVAILABLE = 'Unavailable',
12
+ }
@@ -0,0 +1,21 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ /**
6
+ * Represents a Country within the Reach application.
7
+ */
8
+ export type Amenity = {
9
+ /**
10
+ * Gets or sets the activities Id.
11
+ */
12
+ id?: number;
13
+ /**
14
+ * Gets or sets the countries Name.
15
+ */
16
+ openActiveType?: string | null;
17
+ /**
18
+ * Gets or sets the countries Code.
19
+ */
20
+ name?: string | null;
21
+ };
@@ -0,0 +1,13 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ /**
6
+ * Controls the status of team member roles.
7
+ */
8
+ export enum AppUserRole {
9
+ OWNER = 'Owner',
10
+ ADMIN = 'Admin',
11
+ VENUE_MANAGER = 'VenueManager',
12
+ ANALYTICS_VIEWER = 'AnalyticsViewer',
13
+ }
@@ -0,0 +1,14 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ /**
6
+ * Controls the status of team member roles.
7
+ */
8
+ export enum ApplicationRole {
9
+ OWNER = 'Owner',
10
+ ADMIN = 'Admin',
11
+ USER = 'User',
12
+ SYSTEM = 'System',
13
+ VENUE_MANAGER = 'VenueManager',
14
+ }
@@ -0,0 +1,15 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { GooglePrediction } from './GooglePrediction';
6
+
7
+ /**
8
+ * AutoCompleteResponseModel.
9
+ */
10
+ export type AutoCompleteResponseModel = {
11
+ /**
12
+ * Gets or sets predictions.
13
+ */
14
+ predictions?: Array<GooglePrediction> | null;
15
+ };
@@ -0,0 +1,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ /**
6
+ * The Opportunity booking status, indicating whether the opportunity has an active booking or has been attended.
7
+ */
8
+ export enum BookingStatus {
9
+ HAS_ORDER = 'HasOrder',
10
+ FREE = 'Free',
11
+ }
@@ -0,0 +1,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ /**
6
+ * Controls who the contact is on the confirmation emails.
7
+ */
8
+ export enum ContactOnConfirmation {
9
+ ORGANISATION = 'Organisation',
10
+ VENUE = 'Venue',
11
+ }
@@ -0,0 +1,43 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Tax } from './Tax';
6
+
7
+ /**
8
+ * Represents a Country within the Reach application.
9
+ */
10
+ export type Country = {
11
+ /**
12
+ * Gets or sets the activities Id.
13
+ */
14
+ id?: number;
15
+ /**
16
+ * Gets or sets the countries Name.
17
+ */
18
+ code?: string | null;
19
+ /**
20
+ * Gets or sets the countries Code.
21
+ */
22
+ name?: string | null;
23
+ /**
24
+ * Gets or sets the countries Currency.
25
+ */
26
+ currency?: string | null;
27
+ /**
28
+ * Gets or sets the countries Code.
29
+ */
30
+ currencyCode?: string | null;
31
+ /**
32
+ * Gets or sets the countries currency symbol.
33
+ */
34
+ currencySymbol?: string | null;
35
+ /**
36
+ * Gets or sets a value indicating whether the country is active.
37
+ */
38
+ active?: boolean;
39
+ /**
40
+ * Gets or sets the available taxes.
41
+ */
42
+ taxes?: Array<Tax> | null;
43
+ };