reach-api-sdk 1.0.138 → 1.0.139

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.
@@ -42807,6 +42807,481 @@ declare class UserPermissionsService {
42807
42807
  }): CancelablePromise<Array<UserPermission>>;
42808
42808
  }
42809
42809
 
42810
+ /**
42811
+ * Represents a relationship between a programme and a user.
42812
+ */
42813
+ type UserProgramme = {
42814
+ /**
42815
+ * Gets or sets the entities Id.
42816
+ */
42817
+ id?: string;
42818
+ /**
42819
+ * Gets or sets the tenant Id.
42820
+ */
42821
+ tenantId: string;
42822
+ /**
42823
+ * Gets or sets the created date of this entity.
42824
+ */
42825
+ dateCreated: string;
42826
+ /**
42827
+ * Gets or sets the last modified date of this entity.
42828
+ */
42829
+ dateModified: string;
42830
+ /**
42831
+ * Gets or sets the modified by Id.
42832
+ */
42833
+ modifiedById?: string | null;
42834
+ /**
42835
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
42836
+ */
42837
+ isLive: boolean;
42838
+ /**
42839
+ * Gets or sets the user id.
42840
+ */
42841
+ userId?: string | null;
42842
+ /**
42843
+ * Gets or sets the programme id.
42844
+ */
42845
+ programmeId?: string | null;
42846
+ };
42847
+
42848
+ type UserProgrammePage = {
42849
+ pagination: Pagination;
42850
+ readonly items: Array<UserProgramme>;
42851
+ };
42852
+
42853
+ /**
42854
+ * Post model for user programme updates.
42855
+ */
42856
+ type UserProgrammePatch = {
42857
+ /**
42858
+ * Gets or sets the tenant Id.
42859
+ */
42860
+ tenantId: string;
42861
+ /**
42862
+ * Gets or sets the Id.
42863
+ */
42864
+ id: string;
42865
+ /**
42866
+ * Gets or sets the user id.
42867
+ */
42868
+ userId?: string | null;
42869
+ /**
42870
+ * Gets or sets the programme id.
42871
+ */
42872
+ programmeId?: string | null;
42873
+ };
42874
+
42875
+ /**
42876
+ * Post model for user programme inserts.
42877
+ */
42878
+ type UserProgrammePost = {
42879
+ /**
42880
+ * Gets or sets the tenant Id.
42881
+ */
42882
+ tenantId: string;
42883
+ /**
42884
+ * Gets or sets the user id.
42885
+ */
42886
+ userId?: string | null;
42887
+ /**
42888
+ * Gets or sets the programme id.
42889
+ */
42890
+ programmeId?: string | null;
42891
+ };
42892
+
42893
+ declare class UserProgrammesService {
42894
+ readonly httpRequest: BaseHttpRequest;
42895
+ constructor(httpRequest: BaseHttpRequest);
42896
+ /**
42897
+ * Updates the assigned programmes for the user />.
42898
+ * @returns any Success
42899
+ * @throws ApiError
42900
+ */
42901
+ updateUserVenueAssignments({ userId, requestBody, }: {
42902
+ /**
42903
+ * The user Id.
42904
+ */
42905
+ userId: string;
42906
+ /**
42907
+ * The post model.
42908
+ */
42909
+ requestBody?: Array<UserProgrammePost>;
42910
+ }): CancelablePromise<any>;
42911
+ /**
42912
+ * Updates the assigned users for the programme />.
42913
+ * @returns any Success
42914
+ * @throws ApiError
42915
+ */
42916
+ updateVenueUserAssignments({ venueId, programmeId, requestBody, }: {
42917
+ venueId: string;
42918
+ /**
42919
+ * The programme Id.
42920
+ */
42921
+ programmeId?: string;
42922
+ /**
42923
+ * The post model.
42924
+ */
42925
+ requestBody?: Array<UserProgrammePost>;
42926
+ }): CancelablePromise<any>;
42927
+ /**
42928
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
42929
+ * @returns UserProgramme Success
42930
+ * @throws ApiError
42931
+ */
42932
+ post({ requestBody, }: {
42933
+ /**
42934
+ * The <typeparamref name="TObject" /> model.
42935
+ */
42936
+ requestBody?: UserProgrammePost;
42937
+ }): CancelablePromise<UserProgramme>;
42938
+ /**
42939
+ * Patches the resource.
42940
+ * @returns UserProgramme Success
42941
+ * @throws ApiError
42942
+ */
42943
+ patch({ requestBody, }: {
42944
+ /**
42945
+ * The <typeparamref name="TObject" /> model.
42946
+ */
42947
+ requestBody?: UserProgrammePatch;
42948
+ }): CancelablePromise<UserProgramme>;
42949
+ /**
42950
+ * Inserts a list of resources.
42951
+ * @returns UserProgramme Success
42952
+ * @throws ApiError
42953
+ */
42954
+ postList({ requestBody, }: {
42955
+ /**
42956
+ * The list of <typeparamref name="TObject" />.
42957
+ */
42958
+ requestBody?: Array<UserProgrammePost>;
42959
+ }): CancelablePromise<Array<UserProgramme>>;
42960
+ /**
42961
+ * Patches the resource.
42962
+ * @returns UserProgramme Success
42963
+ * @throws ApiError
42964
+ */
42965
+ patchWithReferences({ requestBody, }: {
42966
+ /**
42967
+ * The <typeparamref name="TObject" /> model.
42968
+ */
42969
+ requestBody?: UserProgrammePatch;
42970
+ }): CancelablePromise<UserProgramme>;
42971
+ /**
42972
+ * Deletes the resource.
42973
+ * @returns any Success
42974
+ * @throws ApiError
42975
+ */
42976
+ deleteByObject({ requestBody, }: {
42977
+ /**
42978
+ * The <typeparamref name="TObject" /> model.
42979
+ */
42980
+ requestBody?: UserProgramme;
42981
+ }): CancelablePromise<any>;
42982
+ /**
42983
+ * Gets a list of resources.
42984
+ * @returns UserProgrammePage Success
42985
+ * @throws ApiError
42986
+ */
42987
+ getPage({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
42988
+ /**
42989
+ * Gets or sets the queryable programme id.
42990
+ */
42991
+ programmeId?: string;
42992
+ /**
42993
+ * Gets or sets the queryable programme ids.
42994
+ */
42995
+ programmeIds?: Array<string>;
42996
+ /**
42997
+ * Gets or sets the queryable user id.
42998
+ */
42999
+ userId?: string;
43000
+ /**
43001
+ * Gets or sets the queryable user ids.
43002
+ */
43003
+ userIds?: Array<string>;
43004
+ /**
43005
+ * Gets or sets the page number for paged queries.
43006
+ */
43007
+ pageNumber?: number;
43008
+ /**
43009
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
43010
+ */
43011
+ take?: number;
43012
+ /**
43013
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
43014
+ */
43015
+ skip?: number;
43016
+ /**
43017
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
43018
+ */
43019
+ limitListRequests?: boolean;
43020
+ /**
43021
+ * Gets or sets the Tenant Id.
43022
+ */
43023
+ tenantId?: string;
43024
+ /**
43025
+ * Gets or sets the Modifed By Id.
43026
+ */
43027
+ modifiedById?: string;
43028
+ /**
43029
+ * Gets or sets the Modifed By Ids.
43030
+ */
43031
+ modifiedByIds?: Array<string>;
43032
+ /**
43033
+ * Gets or sets the Date Created greater than equal to.
43034
+ */
43035
+ dateCreatedGte?: string;
43036
+ /**
43037
+ * Gets or sets the Date Created less than equal to.
43038
+ */
43039
+ dateCreatedLte?: string;
43040
+ /**
43041
+ * Gets or sets the queryable only is live status.
43042
+ */
43043
+ isLive?: boolean;
43044
+ /**
43045
+ * Gets or sets the sort order direction.
43046
+ */
43047
+ sortOrderDirection?: SearchSortOrderDirection;
43048
+ }): CancelablePromise<UserProgrammePage>;
43049
+ /**
43050
+ * Deletes the resource.
43051
+ * @returns any Success
43052
+ * @throws ApiError
43053
+ */
43054
+ deleteById({ id, }: {
43055
+ /**
43056
+ * The <typeparamref name="TObject" /> id.
43057
+ */
43058
+ id: string;
43059
+ }): CancelablePromise<any>;
43060
+ /**
43061
+ * Gets the resource by its Id.
43062
+ * @returns UserProgramme Success
43063
+ * @throws ApiError
43064
+ */
43065
+ getObject({ id, }: {
43066
+ /**
43067
+ * The <typeparamref name="TObject" /> id.
43068
+ */
43069
+ id: string;
43070
+ }): CancelablePromise<UserProgramme>;
43071
+ /**
43072
+ * Returns a value indicating whether the resource is deletable.
43073
+ * @returns boolean Success
43074
+ * @throws ApiError
43075
+ */
43076
+ canDelete({ id, }: {
43077
+ /**
43078
+ * The <typeparamref name="TObject" /> id.
43079
+ */
43080
+ id: string;
43081
+ }): CancelablePromise<boolean>;
43082
+ /**
43083
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
43084
+ * @returns boolean Success
43085
+ * @throws ApiError
43086
+ */
43087
+ exists({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
43088
+ /**
43089
+ * Gets or sets the queryable programme id.
43090
+ */
43091
+ programmeId?: string;
43092
+ /**
43093
+ * Gets or sets the queryable programme ids.
43094
+ */
43095
+ programmeIds?: Array<string>;
43096
+ /**
43097
+ * Gets or sets the queryable user id.
43098
+ */
43099
+ userId?: string;
43100
+ /**
43101
+ * Gets or sets the queryable user ids.
43102
+ */
43103
+ userIds?: Array<string>;
43104
+ /**
43105
+ * Gets or sets the page number for paged queries.
43106
+ */
43107
+ pageNumber?: number;
43108
+ /**
43109
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
43110
+ */
43111
+ take?: number;
43112
+ /**
43113
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
43114
+ */
43115
+ skip?: number;
43116
+ /**
43117
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
43118
+ */
43119
+ limitListRequests?: boolean;
43120
+ /**
43121
+ * Gets or sets the Tenant Id.
43122
+ */
43123
+ tenantId?: string;
43124
+ /**
43125
+ * Gets or sets the Modifed By Id.
43126
+ */
43127
+ modifiedById?: string;
43128
+ /**
43129
+ * Gets or sets the Modifed By Ids.
43130
+ */
43131
+ modifiedByIds?: Array<string>;
43132
+ /**
43133
+ * Gets or sets the Date Created greater than equal to.
43134
+ */
43135
+ dateCreatedGte?: string;
43136
+ /**
43137
+ * Gets or sets the Date Created less than equal to.
43138
+ */
43139
+ dateCreatedLte?: string;
43140
+ /**
43141
+ * Gets or sets the queryable only is live status.
43142
+ */
43143
+ isLive?: boolean;
43144
+ /**
43145
+ * Gets or sets the sort order direction.
43146
+ */
43147
+ sortOrderDirection?: SearchSortOrderDirection;
43148
+ }): CancelablePromise<boolean>;
43149
+ /**
43150
+ * Gets a list of resources unpaged and without references.
43151
+ * @returns UserProgramme Success
43152
+ * @throws ApiError
43153
+ */
43154
+ getListWithoutReferences({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
43155
+ /**
43156
+ * Gets or sets the queryable programme id.
43157
+ */
43158
+ programmeId?: string;
43159
+ /**
43160
+ * Gets or sets the queryable programme ids.
43161
+ */
43162
+ programmeIds?: Array<string>;
43163
+ /**
43164
+ * Gets or sets the queryable user id.
43165
+ */
43166
+ userId?: string;
43167
+ /**
43168
+ * Gets or sets the queryable user ids.
43169
+ */
43170
+ userIds?: Array<string>;
43171
+ /**
43172
+ * Gets or sets the page number for paged queries.
43173
+ */
43174
+ pageNumber?: number;
43175
+ /**
43176
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
43177
+ */
43178
+ take?: number;
43179
+ /**
43180
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
43181
+ */
43182
+ skip?: number;
43183
+ /**
43184
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
43185
+ */
43186
+ limitListRequests?: boolean;
43187
+ /**
43188
+ * Gets or sets the Tenant Id.
43189
+ */
43190
+ tenantId?: string;
43191
+ /**
43192
+ * Gets or sets the Modifed By Id.
43193
+ */
43194
+ modifiedById?: string;
43195
+ /**
43196
+ * Gets or sets the Modifed By Ids.
43197
+ */
43198
+ modifiedByIds?: Array<string>;
43199
+ /**
43200
+ * Gets or sets the Date Created greater than equal to.
43201
+ */
43202
+ dateCreatedGte?: string;
43203
+ /**
43204
+ * Gets or sets the Date Created less than equal to.
43205
+ */
43206
+ dateCreatedLte?: string;
43207
+ /**
43208
+ * Gets or sets the queryable only is live status.
43209
+ */
43210
+ isLive?: boolean;
43211
+ /**
43212
+ * Gets or sets the sort order direction.
43213
+ */
43214
+ sortOrderDirection?: SearchSortOrderDirection;
43215
+ }): CancelablePromise<Array<UserProgramme>>;
43216
+ /**
43217
+ * Gets a list of resources.
43218
+ * @returns UserProgramme Success
43219
+ * @throws ApiError
43220
+ */
43221
+ getListIdName({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
43222
+ /**
43223
+ * Gets or sets the queryable programme id.
43224
+ */
43225
+ programmeId?: string;
43226
+ /**
43227
+ * Gets or sets the queryable programme ids.
43228
+ */
43229
+ programmeIds?: Array<string>;
43230
+ /**
43231
+ * Gets or sets the queryable user id.
43232
+ */
43233
+ userId?: string;
43234
+ /**
43235
+ * Gets or sets the queryable user ids.
43236
+ */
43237
+ userIds?: Array<string>;
43238
+ /**
43239
+ * Gets or sets the page number for paged queries.
43240
+ */
43241
+ pageNumber?: number;
43242
+ /**
43243
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
43244
+ */
43245
+ take?: number;
43246
+ /**
43247
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
43248
+ */
43249
+ skip?: number;
43250
+ /**
43251
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
43252
+ */
43253
+ limitListRequests?: boolean;
43254
+ /**
43255
+ * Gets or sets the Tenant Id.
43256
+ */
43257
+ tenantId?: string;
43258
+ /**
43259
+ * Gets or sets the Modifed By Id.
43260
+ */
43261
+ modifiedById?: string;
43262
+ /**
43263
+ * Gets or sets the Modifed By Ids.
43264
+ */
43265
+ modifiedByIds?: Array<string>;
43266
+ /**
43267
+ * Gets or sets the Date Created greater than equal to.
43268
+ */
43269
+ dateCreatedGte?: string;
43270
+ /**
43271
+ * Gets or sets the Date Created less than equal to.
43272
+ */
43273
+ dateCreatedLte?: string;
43274
+ /**
43275
+ * Gets or sets the queryable only is live status.
43276
+ */
43277
+ isLive?: boolean;
43278
+ /**
43279
+ * Gets or sets the sort order direction.
43280
+ */
43281
+ sortOrderDirection?: SearchSortOrderDirection;
43282
+ }): CancelablePromise<Array<UserProgramme>>;
43283
+ }
43284
+
42810
43285
  type UserPage = {
42811
43286
  pagination: Pagination;
42812
43287
  readonly items: Array<User>;
@@ -47554,6 +48029,7 @@ declare class ApiClient {
47554
48029
  readonly totalRevenueReport: TotalRevenueReportService;
47555
48030
  readonly unsplash: UnsplashService;
47556
48031
  readonly userPermissions: UserPermissionsService;
48032
+ readonly userProgrammes: UserProgrammesService;
47557
48033
  readonly users: UsersService;
47558
48034
  readonly venueManagers: VenueManagersService;
47559
48035
  readonly venuePerformance: VenuePerformanceService;
@@ -47694,4 +48170,4 @@ type ValidationResultModel = {
47694
48170
  readonly errors?: Array<ValidationError> | null;
47695
48171
  };
47696
48172
 
47697
- export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
48173
+ export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };