reach-api-sdk 1.0.229 → 1.0.230

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.
@@ -13171,6 +13171,559 @@ declare class CourseSessionSchedulesService {
13171
13171
  }): CancelablePromise<Array<CourseSessionSchedule>>;
13172
13172
  }
13173
13173
 
13174
+ /**
13175
+ * Represents a scheduled customer account invite email tied to a wallet credit period.
13176
+ */
13177
+ type CustomerAccountInviteSchedule = {
13178
+ /**
13179
+ * Gets or sets the entities Id.
13180
+ */
13181
+ id?: string;
13182
+ /**
13183
+ * Gets or sets the tenant Id.
13184
+ */
13185
+ tenantId: string;
13186
+ /**
13187
+ * Gets or sets the created date of this entity.
13188
+ */
13189
+ dateCreated: string;
13190
+ /**
13191
+ * Gets or sets the last modified date of this entity.
13192
+ */
13193
+ dateModified: string;
13194
+ /**
13195
+ * Gets or sets the modified by Id.
13196
+ */
13197
+ modifiedById?: string | null;
13198
+ /**
13199
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
13200
+ */
13201
+ isLive: boolean;
13202
+ /**
13203
+ * Gets or sets the customer id.
13204
+ */
13205
+ customerId?: string;
13206
+ /**
13207
+ * Gets or sets the wallet credit period id that triggered this invite schedule.
13208
+ */
13209
+ walletCreditPeriodId?: string;
13210
+ /**
13211
+ * Gets or sets the date the invite is scheduled to send.
13212
+ */
13213
+ dateScheduled?: string;
13214
+ /**
13215
+ * Gets or sets a value indicating whether the invite has been sent.
13216
+ */
13217
+ sent?: boolean;
13218
+ /**
13219
+ * Gets or sets a value indicating whether sending the invite errored.
13220
+ */
13221
+ errored?: boolean;
13222
+ };
13223
+
13224
+ type CustomerAccountInviteSchedulePage = {
13225
+ pagination: Pagination;
13226
+ readonly items: Array<CustomerAccountInviteSchedule>;
13227
+ };
13228
+
13229
+ /**
13230
+ * Patch model for customer account invite schedule updates.
13231
+ */
13232
+ type CustomerAccountInviteSchedulePatch = {
13233
+ /**
13234
+ * Gets or sets the tenant Id.
13235
+ */
13236
+ tenantId: string;
13237
+ /**
13238
+ * Gets or sets the Id.
13239
+ */
13240
+ id: string;
13241
+ };
13242
+
13243
+ /**
13244
+ * Post model for customer account invite schedule inserts.
13245
+ */
13246
+ type CustomerAccountInviteSchedulePost = {
13247
+ /**
13248
+ * Gets or sets the tenant Id.
13249
+ */
13250
+ tenantId: string;
13251
+ };
13252
+
13253
+ declare class CustomerAccountInviteSchedulesService {
13254
+ readonly httpRequest: BaseHttpRequest;
13255
+ constructor(httpRequest: BaseHttpRequest);
13256
+ /**
13257
+ * Sends due customer account invite emails.
13258
+ * @returns any OK
13259
+ * @throws ApiError
13260
+ */
13261
+ sendDueInvites(): CancelablePromise<any>;
13262
+ /**
13263
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
13264
+ * @returns CustomerAccountInviteSchedule OK
13265
+ * @throws ApiError
13266
+ */
13267
+ post({ requestBody, }: {
13268
+ /**
13269
+ * The <typeparamref name="TObject" /> model.
13270
+ */
13271
+ requestBody?: CustomerAccountInviteSchedulePost;
13272
+ }): CancelablePromise<CustomerAccountInviteSchedule>;
13273
+ /**
13274
+ * Patches the resource.
13275
+ * @returns CustomerAccountInviteSchedule OK
13276
+ * @throws ApiError
13277
+ */
13278
+ patch({ requestBody, }: {
13279
+ /**
13280
+ * The <typeparamref name="TObject" /> model.
13281
+ */
13282
+ requestBody?: CustomerAccountInviteSchedulePatch;
13283
+ }): CancelablePromise<CustomerAccountInviteSchedule>;
13284
+ /**
13285
+ * Inserts a list of resources.
13286
+ * @returns CustomerAccountInviteSchedule OK
13287
+ * @throws ApiError
13288
+ */
13289
+ postList({ requestBody, }: {
13290
+ /**
13291
+ * The list of <typeparamref name="TObject" />.
13292
+ */
13293
+ requestBody?: Array<CustomerAccountInviteSchedulePost>;
13294
+ }): CancelablePromise<Array<CustomerAccountInviteSchedule>>;
13295
+ /**
13296
+ * Patches the resource.
13297
+ * @returns CustomerAccountInviteSchedule OK
13298
+ * @throws ApiError
13299
+ */
13300
+ patchWithReferences({ requestBody, }: {
13301
+ /**
13302
+ * The <typeparamref name="TObject" /> model.
13303
+ */
13304
+ requestBody?: CustomerAccountInviteSchedulePatch;
13305
+ }): CancelablePromise<CustomerAccountInviteSchedule>;
13306
+ /**
13307
+ * Deletes the resource.
13308
+ * @returns any OK
13309
+ * @throws ApiError
13310
+ */
13311
+ deleteByObject({ requestBody, }: {
13312
+ /**
13313
+ * The <typeparamref name="TObject" /> model.
13314
+ */
13315
+ requestBody?: CustomerAccountInviteSchedule;
13316
+ }): CancelablePromise<any>;
13317
+ /**
13318
+ * Gets a list of resources.
13319
+ * @returns CustomerAccountInviteSchedulePage OK
13320
+ * @throws ApiError
13321
+ */
13322
+ getPage({ customerId, walletCreditPeriodId, dateScheduledGte, dateScheduledLte, sent, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
13323
+ /**
13324
+ * Gets or sets the queryable customer id.
13325
+ */
13326
+ customerId?: string;
13327
+ /**
13328
+ * Gets or sets the queryable wallet credit period id.
13329
+ */
13330
+ walletCreditPeriodId?: string;
13331
+ /**
13332
+ * Gets or sets the queryable date scheduled greater than or equal to.
13333
+ */
13334
+ dateScheduledGte?: string;
13335
+ /**
13336
+ * Gets or sets the queryable date scheduled less than or equal to.
13337
+ */
13338
+ dateScheduledLte?: string;
13339
+ /**
13340
+ * Gets or sets the queryable sent flag.
13341
+ */
13342
+ sent?: boolean;
13343
+ /**
13344
+ * Gets or sets the queryable errored flag.
13345
+ */
13346
+ errored?: boolean;
13347
+ /**
13348
+ * Gets or sets the page number for paged queries.
13349
+ */
13350
+ pageNumber?: number;
13351
+ /**
13352
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
13353
+ */
13354
+ take?: number;
13355
+ /**
13356
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
13357
+ */
13358
+ skip?: number;
13359
+ /**
13360
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
13361
+ */
13362
+ limitListRequests?: boolean;
13363
+ /**
13364
+ * Gets or sets the Tenant Id.
13365
+ */
13366
+ tenantId?: string;
13367
+ /**
13368
+ * Gets or sets the Modifed By Id.
13369
+ */
13370
+ modifiedById?: string;
13371
+ /**
13372
+ * Gets or sets the Modifed By Ids.
13373
+ */
13374
+ modifiedByIds?: Array<string>;
13375
+ /**
13376
+ * Gets or sets the Date Created greater than equal to.
13377
+ */
13378
+ dateCreatedGte?: string;
13379
+ /**
13380
+ * Gets or sets the Date Created less than equal to.
13381
+ */
13382
+ dateCreatedLte?: string;
13383
+ /**
13384
+ * Gets or sets the queryable only is live status.
13385
+ */
13386
+ isLive?: boolean;
13387
+ /**
13388
+ * Gets or sets the sort order direction.
13389
+ */
13390
+ sortOrderDirection?: SearchSortOrderDirection;
13391
+ }): CancelablePromise<CustomerAccountInviteSchedulePage>;
13392
+ /**
13393
+ * Deletes the resource.
13394
+ * @returns any OK
13395
+ * @throws ApiError
13396
+ */
13397
+ deleteById({ id, }: {
13398
+ /**
13399
+ * The <typeparamref name="TObject" /> id.
13400
+ */
13401
+ id: string;
13402
+ }): CancelablePromise<any>;
13403
+ /**
13404
+ * Gets the resource by its Id.
13405
+ * @returns CustomerAccountInviteSchedule OK
13406
+ * @throws ApiError
13407
+ */
13408
+ getObject({ id, }: {
13409
+ /**
13410
+ * The <typeparamref name="TObject" /> id.
13411
+ */
13412
+ id: string;
13413
+ }): CancelablePromise<CustomerAccountInviteSchedule>;
13414
+ /**
13415
+ * Returns a value indicating whether the resource is deletable.
13416
+ * @returns boolean OK
13417
+ * @throws ApiError
13418
+ */
13419
+ canDelete({ id, }: {
13420
+ /**
13421
+ * The <typeparamref name="TObject" /> id.
13422
+ */
13423
+ id: string;
13424
+ }): CancelablePromise<boolean>;
13425
+ /**
13426
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
13427
+ * @returns boolean OK
13428
+ * @throws ApiError
13429
+ */
13430
+ exists({ customerId, walletCreditPeriodId, dateScheduledGte, dateScheduledLte, sent, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
13431
+ /**
13432
+ * Gets or sets the queryable customer id.
13433
+ */
13434
+ customerId?: string;
13435
+ /**
13436
+ * Gets or sets the queryable wallet credit period id.
13437
+ */
13438
+ walletCreditPeriodId?: string;
13439
+ /**
13440
+ * Gets or sets the queryable date scheduled greater than or equal to.
13441
+ */
13442
+ dateScheduledGte?: string;
13443
+ /**
13444
+ * Gets or sets the queryable date scheduled less than or equal to.
13445
+ */
13446
+ dateScheduledLte?: string;
13447
+ /**
13448
+ * Gets or sets the queryable sent flag.
13449
+ */
13450
+ sent?: boolean;
13451
+ /**
13452
+ * Gets or sets the queryable errored flag.
13453
+ */
13454
+ errored?: boolean;
13455
+ /**
13456
+ * Gets or sets the page number for paged queries.
13457
+ */
13458
+ pageNumber?: number;
13459
+ /**
13460
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
13461
+ */
13462
+ take?: number;
13463
+ /**
13464
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
13465
+ */
13466
+ skip?: number;
13467
+ /**
13468
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
13469
+ */
13470
+ limitListRequests?: boolean;
13471
+ /**
13472
+ * Gets or sets the Tenant Id.
13473
+ */
13474
+ tenantId?: string;
13475
+ /**
13476
+ * Gets or sets the Modifed By Id.
13477
+ */
13478
+ modifiedById?: string;
13479
+ /**
13480
+ * Gets or sets the Modifed By Ids.
13481
+ */
13482
+ modifiedByIds?: Array<string>;
13483
+ /**
13484
+ * Gets or sets the Date Created greater than equal to.
13485
+ */
13486
+ dateCreatedGte?: string;
13487
+ /**
13488
+ * Gets or sets the Date Created less than equal to.
13489
+ */
13490
+ dateCreatedLte?: string;
13491
+ /**
13492
+ * Gets or sets the queryable only is live status.
13493
+ */
13494
+ isLive?: boolean;
13495
+ /**
13496
+ * Gets or sets the sort order direction.
13497
+ */
13498
+ sortOrderDirection?: SearchSortOrderDirection;
13499
+ }): CancelablePromise<boolean>;
13500
+ /**
13501
+ * Returns the number of results in the database given the provided search params.
13502
+ * @returns number OK
13503
+ * @throws ApiError
13504
+ */
13505
+ count({ customerId, walletCreditPeriodId, dateScheduledGte, dateScheduledLte, sent, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
13506
+ /**
13507
+ * Gets or sets the queryable customer id.
13508
+ */
13509
+ customerId?: string;
13510
+ /**
13511
+ * Gets or sets the queryable wallet credit period id.
13512
+ */
13513
+ walletCreditPeriodId?: string;
13514
+ /**
13515
+ * Gets or sets the queryable date scheduled greater than or equal to.
13516
+ */
13517
+ dateScheduledGte?: string;
13518
+ /**
13519
+ * Gets or sets the queryable date scheduled less than or equal to.
13520
+ */
13521
+ dateScheduledLte?: string;
13522
+ /**
13523
+ * Gets or sets the queryable sent flag.
13524
+ */
13525
+ sent?: boolean;
13526
+ /**
13527
+ * Gets or sets the queryable errored flag.
13528
+ */
13529
+ errored?: boolean;
13530
+ /**
13531
+ * Gets or sets the page number for paged queries.
13532
+ */
13533
+ pageNumber?: number;
13534
+ /**
13535
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
13536
+ */
13537
+ take?: number;
13538
+ /**
13539
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
13540
+ */
13541
+ skip?: number;
13542
+ /**
13543
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
13544
+ */
13545
+ limitListRequests?: boolean;
13546
+ /**
13547
+ * Gets or sets the Tenant Id.
13548
+ */
13549
+ tenantId?: string;
13550
+ /**
13551
+ * Gets or sets the Modifed By Id.
13552
+ */
13553
+ modifiedById?: string;
13554
+ /**
13555
+ * Gets or sets the Modifed By Ids.
13556
+ */
13557
+ modifiedByIds?: Array<string>;
13558
+ /**
13559
+ * Gets or sets the Date Created greater than equal to.
13560
+ */
13561
+ dateCreatedGte?: string;
13562
+ /**
13563
+ * Gets or sets the Date Created less than equal to.
13564
+ */
13565
+ dateCreatedLte?: string;
13566
+ /**
13567
+ * Gets or sets the queryable only is live status.
13568
+ */
13569
+ isLive?: boolean;
13570
+ /**
13571
+ * Gets or sets the sort order direction.
13572
+ */
13573
+ sortOrderDirection?: SearchSortOrderDirection;
13574
+ }): CancelablePromise<number>;
13575
+ /**
13576
+ * Gets a list of resources unpaged and without references.
13577
+ * @returns CustomerAccountInviteSchedule OK
13578
+ * @throws ApiError
13579
+ */
13580
+ getListWithoutReferences({ customerId, walletCreditPeriodId, dateScheduledGte, dateScheduledLte, sent, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
13581
+ /**
13582
+ * Gets or sets the queryable customer id.
13583
+ */
13584
+ customerId?: string;
13585
+ /**
13586
+ * Gets or sets the queryable wallet credit period id.
13587
+ */
13588
+ walletCreditPeriodId?: string;
13589
+ /**
13590
+ * Gets or sets the queryable date scheduled greater than or equal to.
13591
+ */
13592
+ dateScheduledGte?: string;
13593
+ /**
13594
+ * Gets or sets the queryable date scheduled less than or equal to.
13595
+ */
13596
+ dateScheduledLte?: string;
13597
+ /**
13598
+ * Gets or sets the queryable sent flag.
13599
+ */
13600
+ sent?: boolean;
13601
+ /**
13602
+ * Gets or sets the queryable errored flag.
13603
+ */
13604
+ errored?: boolean;
13605
+ /**
13606
+ * Gets or sets the page number for paged queries.
13607
+ */
13608
+ pageNumber?: number;
13609
+ /**
13610
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
13611
+ */
13612
+ take?: number;
13613
+ /**
13614
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
13615
+ */
13616
+ skip?: number;
13617
+ /**
13618
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
13619
+ */
13620
+ limitListRequests?: boolean;
13621
+ /**
13622
+ * Gets or sets the Tenant Id.
13623
+ */
13624
+ tenantId?: string;
13625
+ /**
13626
+ * Gets or sets the Modifed By Id.
13627
+ */
13628
+ modifiedById?: string;
13629
+ /**
13630
+ * Gets or sets the Modifed By Ids.
13631
+ */
13632
+ modifiedByIds?: Array<string>;
13633
+ /**
13634
+ * Gets or sets the Date Created greater than equal to.
13635
+ */
13636
+ dateCreatedGte?: string;
13637
+ /**
13638
+ * Gets or sets the Date Created less than equal to.
13639
+ */
13640
+ dateCreatedLte?: string;
13641
+ /**
13642
+ * Gets or sets the queryable only is live status.
13643
+ */
13644
+ isLive?: boolean;
13645
+ /**
13646
+ * Gets or sets the sort order direction.
13647
+ */
13648
+ sortOrderDirection?: SearchSortOrderDirection;
13649
+ }): CancelablePromise<Array<CustomerAccountInviteSchedule>>;
13650
+ /**
13651
+ * Gets a list of resources.
13652
+ * @returns CustomerAccountInviteSchedule OK
13653
+ * @throws ApiError
13654
+ */
13655
+ getListIdName({ customerId, walletCreditPeriodId, dateScheduledGte, dateScheduledLte, sent, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
13656
+ /**
13657
+ * Gets or sets the queryable customer id.
13658
+ */
13659
+ customerId?: string;
13660
+ /**
13661
+ * Gets or sets the queryable wallet credit period id.
13662
+ */
13663
+ walletCreditPeriodId?: string;
13664
+ /**
13665
+ * Gets or sets the queryable date scheduled greater than or equal to.
13666
+ */
13667
+ dateScheduledGte?: string;
13668
+ /**
13669
+ * Gets or sets the queryable date scheduled less than or equal to.
13670
+ */
13671
+ dateScheduledLte?: string;
13672
+ /**
13673
+ * Gets or sets the queryable sent flag.
13674
+ */
13675
+ sent?: boolean;
13676
+ /**
13677
+ * Gets or sets the queryable errored flag.
13678
+ */
13679
+ errored?: boolean;
13680
+ /**
13681
+ * Gets or sets the page number for paged queries.
13682
+ */
13683
+ pageNumber?: number;
13684
+ /**
13685
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
13686
+ */
13687
+ take?: number;
13688
+ /**
13689
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
13690
+ */
13691
+ skip?: number;
13692
+ /**
13693
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
13694
+ */
13695
+ limitListRequests?: boolean;
13696
+ /**
13697
+ * Gets or sets the Tenant Id.
13698
+ */
13699
+ tenantId?: string;
13700
+ /**
13701
+ * Gets or sets the Modifed By Id.
13702
+ */
13703
+ modifiedById?: string;
13704
+ /**
13705
+ * Gets or sets the Modifed By Ids.
13706
+ */
13707
+ modifiedByIds?: Array<string>;
13708
+ /**
13709
+ * Gets or sets the Date Created greater than equal to.
13710
+ */
13711
+ dateCreatedGte?: string;
13712
+ /**
13713
+ * Gets or sets the Date Created less than equal to.
13714
+ */
13715
+ dateCreatedLte?: string;
13716
+ /**
13717
+ * Gets or sets the queryable only is live status.
13718
+ */
13719
+ isLive?: boolean;
13720
+ /**
13721
+ * Gets or sets the sort order direction.
13722
+ */
13723
+ sortOrderDirection?: SearchSortOrderDirection;
13724
+ }): CancelablePromise<Array<CustomerAccountInviteSchedule>>;
13725
+ }
13726
+
13174
13727
  declare class CustomerAuthService {
13175
13728
  readonly httpRequest: BaseHttpRequest;
13176
13729
  constructor(httpRequest: BaseHttpRequest);
@@ -46525,6 +47078,12 @@ type TenantSetting = {
46525
47078
  * When enabled, attendee wallets require an active credit period for bookings and allocation management.
46526
47079
  */
46527
47080
  enableWalletCreditPeriods?: boolean;
47081
+ /**
47082
+ * Gets or sets how many days before a credit period start date to send the customer account invite.
47083
+ * Allowed values: 0 (on period start), 7 (one week before), 14 (two weeks before).
47084
+ * Only applies when Reach.Models.TenantSetting.EnableWalletCreditPeriods is true.
47085
+ */
47086
+ walletCreditPeriodAccountInviteDaysBefore?: number | null;
46528
47087
  /**
46529
47088
  * Gets or sets a value indicating whether customer portal WorkOS login is restricted to pre-provisioned customers only.
46530
47089
  * When true, the authenticated email must match a live customer row (email or display_email) for this tenant.
@@ -62622,6 +63181,12 @@ type TenantStorefrontSettingsPatch = {
62622
63181
  * When null, PATCH leaves the existing database value unchanged.
62623
63182
  */
62624
63183
  customerPortalWorkOsLoginEnabled?: boolean | null;
63184
+ /**
63185
+ * Gets or sets how many days before a credit period start date to automatically send customer account invites.
63186
+ * Allowed values: 0 (on period start), 7 (one week before), 14 (two weeks before).
63187
+ * When null, PATCH leaves the existing database value unchanged.
63188
+ */
63189
+ walletCreditPeriodAccountInviteDaysBefore?: number | null;
62625
63190
  };
62626
63191
 
62627
63192
  declare class TenantsService {
@@ -73052,6 +73617,7 @@ declare class ApiClient {
73052
73617
  readonly courses: CoursesService;
73053
73618
  readonly courseSessions: CourseSessionsService;
73054
73619
  readonly courseSessionSchedules: CourseSessionSchedulesService;
73620
+ readonly customerAccountInviteSchedules: CustomerAccountInviteSchedulesService;
73055
73621
  readonly customerAuth: CustomerAuthService;
73056
73622
  readonly customerPortal: CustomerPortalService;
73057
73623
  readonly customers: CustomersService;
@@ -73308,4 +73874,4 @@ type ValidationResultModel = {
73308
73874
  readonly errors?: Array<ValidationError> | null;
73309
73875
  };
73310
73876
 
73311
- export { AccessCredential, AccessCredentialPage, AccessCredentialPatch, AccessCredentialPost, AccessCredentialsService, Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CodelocksLock, CodelocksLockPage, CodelocksLockPatch, CodelocksLockPost, CodelocksLocksService, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerAuthService, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPortalAccountPatch, CustomerPortalService, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserAccessibleTenantDto, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FeatureAnnouncementDismissPost, FeatureAnnouncementForUserDto, FeatureAnnouncementsService, FieldPermission, 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, IntegrationCodelocksSettings, IntegrationCodelocksSettingsCreate, IntegrationCodelocksSettingsPage, IntegrationCodelocksSettingsPatch, IntegrationCodelocksSettingsPost, IntegrationCodelocksSettingsService, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, 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, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemCodelocksAccess, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, 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, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSellableItemsService, PublicSessionsService, PublicSlotsService, PublicStorefrontStaffPreviewService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantFaqsService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, SellableItem, SellableItemPage, SellableItemPatch, SellableItemPost, SellableItemsService, 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, SortIndex, Southwest, StorefrontStaffPreviewService, StorefrontStaffPreviewTokenResponse, StorefrontStaffPreviewValidateRequest, StorefrontStaffPreviewValidateResponse, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantFaq, TenantFaqPage, TenantFaqPatch, TenantFaqPost, TenantFaqsService, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantStorefrontSettingsPatch, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, 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, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletCreditPeriod, WalletCreditPeriodReassessPost, WalletCreditPeriodStatus, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };
73877
+ export { AccessCredential, AccessCredentialPage, AccessCredentialPatch, AccessCredentialPost, AccessCredentialsService, Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CodelocksLock, CodelocksLockPage, CodelocksLockPatch, CodelocksLockPost, CodelocksLocksService, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerAccountInviteSchedule, CustomerAccountInviteSchedulePage, CustomerAccountInviteSchedulePatch, CustomerAccountInviteSchedulePost, CustomerAccountInviteSchedulesService, CustomerAuthService, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPortalAccountPatch, CustomerPortalService, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserAccessibleTenantDto, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FeatureAnnouncementDismissPost, FeatureAnnouncementForUserDto, FeatureAnnouncementsService, FieldPermission, 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, IntegrationCodelocksSettings, IntegrationCodelocksSettingsCreate, IntegrationCodelocksSettingsPage, IntegrationCodelocksSettingsPatch, IntegrationCodelocksSettingsPost, IntegrationCodelocksSettingsService, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, 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, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemCodelocksAccess, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, 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, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSellableItemsService, PublicSessionsService, PublicSlotsService, PublicStorefrontStaffPreviewService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantFaqsService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, SellableItem, SellableItemPage, SellableItemPatch, SellableItemPost, SellableItemsService, 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, SortIndex, Southwest, StorefrontStaffPreviewService, StorefrontStaffPreviewTokenResponse, StorefrontStaffPreviewValidateRequest, StorefrontStaffPreviewValidateResponse, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantFaq, TenantFaqPage, TenantFaqPatch, TenantFaqPost, TenantFaqsService, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantStorefrontSettingsPatch, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, 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, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletCreditPeriod, WalletCreditPeriodReassessPost, WalletCreditPeriodStatus, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };