reach-api-sdk 1.0.213 → 1.0.214
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/reach-sdk.d.ts +303 -2
- package/dist/reach-sdk.js +361 -1
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +1244 -243
- package/src/index.ts +4 -0
- package/src/models/AttendeePatch.ts +2 -1
- package/src/models/CustomerAccountInvitePatch.ts +4 -0
- package/src/models/CustomerPortalAccountPatch.ts +54 -0
- package/src/models/TenantSetting.ts +10 -0
- package/src/models/TenantStorefrontSettingsPatch.ts +15 -0
- package/src/models/User.ts +4 -0
- package/src/services/CustomerAuthService.ts +160 -0
- package/src/services/CustomerPortalService.ts +310 -0
- package/src/services/TenantsService.ts +27 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -1898,6 +1898,10 @@ type User = {
|
|
|
1898
1898
|
* Gets or sets the users avatar url.
|
|
1899
1899
|
*/
|
|
1900
1900
|
avatar?: string | null;
|
|
1901
|
+
/**
|
|
1902
|
+
* Gets or sets the linked end-user identity for customer portal users (links to end_user_identities).
|
|
1903
|
+
*/
|
|
1904
|
+
endUserIdentityId?: string | null;
|
|
1901
1905
|
/**
|
|
1902
1906
|
* Gets or sets the users roles.
|
|
1903
1907
|
*/
|
|
@@ -5470,7 +5474,8 @@ type AttendeePatch = {
|
|
|
5470
5474
|
lastName?: string | null;
|
|
5471
5475
|
/**
|
|
5472
5476
|
* Gets or sets the attendee date of birth.
|
|
5473
|
-
*
|
|
5477
|
+
* When a linked `end_user_identity` exists, first name, last name, and date of birth
|
|
5478
|
+
* patch fields are applied to that record as well as to the attendee row where applicable.
|
|
5474
5479
|
*/
|
|
5475
5480
|
dateOfBirth?: string | null;
|
|
5476
5481
|
};
|
|
@@ -11590,6 +11595,264 @@ declare class CourseSessionSchedulesService {
|
|
|
11590
11595
|
}): CancelablePromise<Array<CourseSessionSchedule>>;
|
|
11591
11596
|
}
|
|
11592
11597
|
|
|
11598
|
+
declare class CustomerAuthService {
|
|
11599
|
+
readonly httpRequest: BaseHttpRequest;
|
|
11600
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
11601
|
+
/**
|
|
11602
|
+
* Debug endpoint to view authorization URL and redirect URI details without redirecting.
|
|
11603
|
+
* @returns any OK
|
|
11604
|
+
* @throws ApiError
|
|
11605
|
+
*/
|
|
11606
|
+
authorizeDebug({ tenantSubdomain, }: {
|
|
11607
|
+
/**
|
|
11608
|
+
* The tenant subdomain (defaults to "testtenant" if not provided).
|
|
11609
|
+
*/
|
|
11610
|
+
tenantSubdomain?: string;
|
|
11611
|
+
}): CancelablePromise<any>;
|
|
11612
|
+
/**
|
|
11613
|
+
* Initiates WorkOS AuthKit authentication flow.
|
|
11614
|
+
* @returns any OK
|
|
11615
|
+
* @throws ApiError
|
|
11616
|
+
*/
|
|
11617
|
+
authorize({ tenantSubdomain, returnTo, loginHint, expectedEmail, screenHint, prompt, }: {
|
|
11618
|
+
/**
|
|
11619
|
+
* Optional tenant subdomain (from query, for sign-in page links).
|
|
11620
|
+
*/
|
|
11621
|
+
tenantSubdomain?: string;
|
|
11622
|
+
/**
|
|
11623
|
+
* Optional path to redirect to after login (e.g. "/" for storefront, "/account" for account portal). Defaults to "/account" if omitted. Must start with "/" to prevent open redirects.
|
|
11624
|
+
*/
|
|
11625
|
+
returnTo?: string;
|
|
11626
|
+
/**
|
|
11627
|
+
* Optional email hint for AuthKit sign-in UI.
|
|
11628
|
+
*/
|
|
11629
|
+
loginHint?: string;
|
|
11630
|
+
/**
|
|
11631
|
+
* Optional email that callback must match (state validation), even when AuthKit login hint is omitted.
|
|
11632
|
+
*/
|
|
11633
|
+
expectedEmail?: string;
|
|
11634
|
+
/**
|
|
11635
|
+
* Optional AuthKit screen (`sign-in` or `sign-up`).
|
|
11636
|
+
*/
|
|
11637
|
+
screenHint?: string;
|
|
11638
|
+
/**
|
|
11639
|
+
* Optional OAuth prompt (e.g. `login` to reduce silent reuse of another WorkOS session in the browser).
|
|
11640
|
+
*/
|
|
11641
|
+
prompt?: string;
|
|
11642
|
+
}): CancelablePromise<any>;
|
|
11643
|
+
/**
|
|
11644
|
+
* Handles WorkOS AuthKit callback after user authentication.
|
|
11645
|
+
* @returns any OK
|
|
11646
|
+
* @throws ApiError
|
|
11647
|
+
*/
|
|
11648
|
+
callback({ code, state, }: {
|
|
11649
|
+
/**
|
|
11650
|
+
* Authorization code from WorkOS.
|
|
11651
|
+
*/
|
|
11652
|
+
code?: string;
|
|
11653
|
+
/**
|
|
11654
|
+
* State parameter for CSRF protection.
|
|
11655
|
+
*/
|
|
11656
|
+
state?: string;
|
|
11657
|
+
}): CancelablePromise<any>;
|
|
11658
|
+
/**
|
|
11659
|
+
* Handles customer logout.
|
|
11660
|
+
* @returns any OK
|
|
11661
|
+
* @throws ApiError
|
|
11662
|
+
*/
|
|
11663
|
+
logout({ sessionId, tenantSubdomain, }: {
|
|
11664
|
+
/**
|
|
11665
|
+
* Optional WorkOS session ID (if using WorkOS session cookies).
|
|
11666
|
+
*/
|
|
11667
|
+
sessionId?: string;
|
|
11668
|
+
/**
|
|
11669
|
+
* Optional tenant subdomain (required when API host differs from storefront, e.g. cross-origin logout).
|
|
11670
|
+
*/
|
|
11671
|
+
tenantSubdomain?: string;
|
|
11672
|
+
}): CancelablePromise<any>;
|
|
11673
|
+
}
|
|
11674
|
+
|
|
11675
|
+
/**
|
|
11676
|
+
* Partial update payload for the authenticated customer's account (customer portal).
|
|
11677
|
+
*/
|
|
11678
|
+
type CustomerPortalAccountPatch = {
|
|
11679
|
+
/**
|
|
11680
|
+
* Gets or sets the first name (person customers).
|
|
11681
|
+
*/
|
|
11682
|
+
firstName?: string | null;
|
|
11683
|
+
/**
|
|
11684
|
+
* Gets or sets the last name (person customers).
|
|
11685
|
+
*/
|
|
11686
|
+
lastName?: string | null;
|
|
11687
|
+
/**
|
|
11688
|
+
* Gets or sets the organisation name (organisation customers).
|
|
11689
|
+
*/
|
|
11690
|
+
organisationName?: string | null;
|
|
11691
|
+
/**
|
|
11692
|
+
* Gets or sets the display / contact email.
|
|
11693
|
+
*/
|
|
11694
|
+
email?: string | null;
|
|
11695
|
+
/**
|
|
11696
|
+
* Gets or sets the phone number.
|
|
11697
|
+
*/
|
|
11698
|
+
phone?: string | null;
|
|
11699
|
+
/**
|
|
11700
|
+
* Gets or sets the street address.
|
|
11701
|
+
*/
|
|
11702
|
+
streetAddress?: string | null;
|
|
11703
|
+
/**
|
|
11704
|
+
* Gets or sets the address locality.
|
|
11705
|
+
*/
|
|
11706
|
+
addressLocality?: string | null;
|
|
11707
|
+
/**
|
|
11708
|
+
* Gets or sets the address region.
|
|
11709
|
+
*/
|
|
11710
|
+
addressRegion?: string | null;
|
|
11711
|
+
/**
|
|
11712
|
+
* Gets or sets the postal code.
|
|
11713
|
+
*/
|
|
11714
|
+
addressPostalcode?: string | null;
|
|
11715
|
+
/**
|
|
11716
|
+
* Gets or sets the country id.
|
|
11717
|
+
*/
|
|
11718
|
+
countryId?: number | null;
|
|
11719
|
+
/**
|
|
11720
|
+
* Gets or sets a value indicating whether the customer opted into marketing.
|
|
11721
|
+
*/
|
|
11722
|
+
marketingOptIn?: boolean | null;
|
|
11723
|
+
};
|
|
11724
|
+
|
|
11725
|
+
declare class CustomerPortalService {
|
|
11726
|
+
readonly httpRequest: BaseHttpRequest;
|
|
11727
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
11728
|
+
/**
|
|
11729
|
+
* Returns the current authenticated customer's profile.
|
|
11730
|
+
* @returns any OK
|
|
11731
|
+
* @throws ApiError
|
|
11732
|
+
*/
|
|
11733
|
+
me(): CancelablePromise<any>;
|
|
11734
|
+
/**
|
|
11735
|
+
* Returns the authenticated customer's account details for this tenant (editable fields).
|
|
11736
|
+
* @returns any OK
|
|
11737
|
+
* @throws ApiError
|
|
11738
|
+
*/
|
|
11739
|
+
getAccount(): CancelablePromise<any>;
|
|
11740
|
+
/**
|
|
11741
|
+
* Updates the authenticated customer's account for this tenant (partial update).
|
|
11742
|
+
* @returns any OK
|
|
11743
|
+
* @throws ApiError
|
|
11744
|
+
*/
|
|
11745
|
+
patchAccount({ requestBody, }: {
|
|
11746
|
+
/**
|
|
11747
|
+
* Fields to update.
|
|
11748
|
+
*/
|
|
11749
|
+
requestBody?: CustomerPortalAccountPatch;
|
|
11750
|
+
}): CancelablePromise<any>;
|
|
11751
|
+
/**
|
|
11752
|
+
* Returns the participant profiles (attendees) for the authenticated customer in this tenant.
|
|
11753
|
+
* Resolves customer by end_user_identity_id (User -> Customer) with email fallback for unlinked users.
|
|
11754
|
+
* @returns any OK
|
|
11755
|
+
* @throws ApiError
|
|
11756
|
+
*/
|
|
11757
|
+
getParticipants(): CancelablePromise<any>;
|
|
11758
|
+
/**
|
|
11759
|
+
* Updates personal details for a participant (attendee) belonging to the authenticated customer.
|
|
11760
|
+
* Patches attendee and linked `end_user_identities` row when present.
|
|
11761
|
+
* @returns any OK
|
|
11762
|
+
* @throws ApiError
|
|
11763
|
+
*/
|
|
11764
|
+
patchParticipant({ attendeeId, requestBody, }: {
|
|
11765
|
+
/**
|
|
11766
|
+
* Attendee identifier.
|
|
11767
|
+
*/
|
|
11768
|
+
attendeeId: string;
|
|
11769
|
+
/**
|
|
11770
|
+
* Fields to update.
|
|
11771
|
+
*/
|
|
11772
|
+
requestBody?: AttendeePatch;
|
|
11773
|
+
}): CancelablePromise<any>;
|
|
11774
|
+
/**
|
|
11775
|
+
* Returns the authenticated customer's wallet balance and recent transactions.
|
|
11776
|
+
* When wallet tracking is per-attendee, attendeeId must be the participant id.
|
|
11777
|
+
* When tracking is at customer level, the customer wallet is returned and attendeeId is ignored.
|
|
11778
|
+
* @returns any OK
|
|
11779
|
+
* @throws ApiError
|
|
11780
|
+
*/
|
|
11781
|
+
getWallet({ attendeeId, }: {
|
|
11782
|
+
/**
|
|
11783
|
+
* Optional attendee id (required when wallet tracking is Attendee).
|
|
11784
|
+
*/
|
|
11785
|
+
attendeeId?: string;
|
|
11786
|
+
}): CancelablePromise<any>;
|
|
11787
|
+
/**
|
|
11788
|
+
* Lists order items for the authenticated customer (storefront dashboard parity), filtered by upcoming or past event timing.
|
|
11789
|
+
* @returns any OK
|
|
11790
|
+
* @throws ApiError
|
|
11791
|
+
*/
|
|
11792
|
+
getOrderItems({ eventTiming, }: {
|
|
11793
|
+
/**
|
|
11794
|
+
* Either `Upcoming` or `Past`.
|
|
11795
|
+
*/
|
|
11796
|
+
eventTiming?: string;
|
|
11797
|
+
}): CancelablePromise<any>;
|
|
11798
|
+
/**
|
|
11799
|
+
* Returns scheduled sessions the customer can reschedule an order item to (same logic as public storefront).
|
|
11800
|
+
* @returns any OK
|
|
11801
|
+
* @throws ApiError
|
|
11802
|
+
*/
|
|
11803
|
+
getRescheduleOpportunities({ orderItemId, }: {
|
|
11804
|
+
/**
|
|
11805
|
+
* Order item id.
|
|
11806
|
+
*/
|
|
11807
|
+
orderItemId: string;
|
|
11808
|
+
}): CancelablePromise<any>;
|
|
11809
|
+
/**
|
|
11810
|
+
* Reschedules a booked order item to another scheduled session (storefront parity).
|
|
11811
|
+
* @returns any OK
|
|
11812
|
+
* @throws ApiError
|
|
11813
|
+
*/
|
|
11814
|
+
rescheduleOrderItem({ orderItemId, scheduledSessionId, }: {
|
|
11815
|
+
/**
|
|
11816
|
+
* Order item id.
|
|
11817
|
+
*/
|
|
11818
|
+
orderItemId: string;
|
|
11819
|
+
/**
|
|
11820
|
+
* Target scheduled session id.
|
|
11821
|
+
*/
|
|
11822
|
+
scheduledSessionId: string;
|
|
11823
|
+
}): CancelablePromise<any>;
|
|
11824
|
+
/**
|
|
11825
|
+
* Cancels one or more order items without refund (outside refund window or free bookings).
|
|
11826
|
+
* @returns any OK
|
|
11827
|
+
* @throws ApiError
|
|
11828
|
+
*/
|
|
11829
|
+
cancelOrder({ orderId, requestBody, }: {
|
|
11830
|
+
/**
|
|
11831
|
+
* Order id.
|
|
11832
|
+
*/
|
|
11833
|
+
orderId: string;
|
|
11834
|
+
/**
|
|
11835
|
+
* Order item ids to cancel.
|
|
11836
|
+
*/
|
|
11837
|
+
requestBody?: Array<string>;
|
|
11838
|
+
}): CancelablePromise<any>;
|
|
11839
|
+
/**
|
|
11840
|
+
* Cancels one or more order items and requests a refund (inside refund window).
|
|
11841
|
+
* @returns any OK
|
|
11842
|
+
* @throws ApiError
|
|
11843
|
+
*/
|
|
11844
|
+
cancelOrderWithRefund({ orderId, requestBody, }: {
|
|
11845
|
+
/**
|
|
11846
|
+
* Order id.
|
|
11847
|
+
*/
|
|
11848
|
+
orderId: string;
|
|
11849
|
+
/**
|
|
11850
|
+
* Order item ids to cancel.
|
|
11851
|
+
*/
|
|
11852
|
+
requestBody?: Array<string>;
|
|
11853
|
+
}): CancelablePromise<any>;
|
|
11854
|
+
}
|
|
11855
|
+
|
|
11593
11856
|
/**
|
|
11594
11857
|
* Patch model for sending account invite email to the customer.
|
|
11595
11858
|
*/
|
|
@@ -11610,6 +11873,10 @@ type CustomerAccountInvitePatch = {
|
|
|
11610
11873
|
* Gets or sets the base domain for the invite link. If not provided, will use configuration value.
|
|
11611
11874
|
*/
|
|
11612
11875
|
baseDomain?: string | null;
|
|
11876
|
+
/**
|
|
11877
|
+
* Gets or sets an optional override for the customer WorkOS registration URL. If not provided, the API builds it from configuration and tenant subdomain.
|
|
11878
|
+
*/
|
|
11879
|
+
registrationUrl?: string | null;
|
|
11613
11880
|
};
|
|
11614
11881
|
|
|
11615
11882
|
/**
|
|
@@ -42958,6 +43225,16 @@ type TenantSetting = {
|
|
|
42958
43225
|
* When enabled, prices will be displayed as 'credits' rather than currency.
|
|
42959
43226
|
*/
|
|
42960
43227
|
walletOnlyPayments?: boolean;
|
|
43228
|
+
/**
|
|
43229
|
+
* Gets or sets a value indicating whether customer portal WorkOS login is restricted to pre-provisioned customers only.
|
|
43230
|
+
* When true, the authenticated email must match a live customer row (email or display_email) for this tenant.
|
|
43231
|
+
*/
|
|
43232
|
+
customerLoginRequiresPreprovision?: boolean;
|
|
43233
|
+
/**
|
|
43234
|
+
* Gets or sets a value indicating whether the storefront requires the customer to be signed in before browsing activities and venues.
|
|
43235
|
+
* When false (default), anonymous browsing is allowed.
|
|
43236
|
+
*/
|
|
43237
|
+
storefrontRequiresLoginToBrowse?: boolean;
|
|
42961
43238
|
/**
|
|
42962
43239
|
* Gets the next order number in the sequence.
|
|
42963
43240
|
*/
|
|
@@ -57894,6 +58171,17 @@ type DatabaseState = {
|
|
|
57894
58171
|
stripeSetupRequirements?: Array<StripeSetupRequirement> | null;
|
|
57895
58172
|
};
|
|
57896
58173
|
|
|
58174
|
+
/**
|
|
58175
|
+
* Partial update for storefront-related tenant settings (partner API).
|
|
58176
|
+
*/
|
|
58177
|
+
type TenantStorefrontSettingsPatch = {
|
|
58178
|
+
/**
|
|
58179
|
+
* Gets or sets a value indicating whether customers must sign in before browsing the storefront.
|
|
58180
|
+
* When false (default), anonymous browsing is allowed.
|
|
58181
|
+
*/
|
|
58182
|
+
storefrontRequiresLoginToBrowse?: boolean;
|
|
58183
|
+
};
|
|
58184
|
+
|
|
57897
58185
|
declare class TenantsService {
|
|
57898
58186
|
readonly httpRequest: BaseHttpRequest;
|
|
57899
58187
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -57976,6 +58264,17 @@ declare class TenantsService {
|
|
|
57976
58264
|
* @throws ApiError
|
|
57977
58265
|
*/
|
|
57978
58266
|
getSettings(): CancelablePromise<TenantSetting>;
|
|
58267
|
+
/**
|
|
58268
|
+
* Updates storefront-related tenant settings.
|
|
58269
|
+
* @returns TenantSetting OK
|
|
58270
|
+
* @throws ApiError
|
|
58271
|
+
*/
|
|
58272
|
+
patchSettings({ requestBody, }: {
|
|
58273
|
+
/**
|
|
58274
|
+
* Fields to update.
|
|
58275
|
+
*/
|
|
58276
|
+
requestBody?: TenantStorefrontSettingsPatch;
|
|
58277
|
+
}): CancelablePromise<TenantSetting>;
|
|
57979
58278
|
/**
|
|
57980
58279
|
* Gets the tenants stripe account details. />.
|
|
57981
58280
|
* @returns Tenant OK
|
|
@@ -68216,6 +68515,8 @@ declare class ApiClient {
|
|
|
68216
68515
|
readonly courses: CoursesService;
|
|
68217
68516
|
readonly courseSessions: CourseSessionsService;
|
|
68218
68517
|
readonly courseSessionSchedules: CourseSessionSchedulesService;
|
|
68518
|
+
readonly customerAuth: CustomerAuthService;
|
|
68519
|
+
readonly customerPortal: CustomerPortalService;
|
|
68219
68520
|
readonly customers: CustomersService;
|
|
68220
68521
|
readonly customFields: CustomFieldsService;
|
|
68221
68522
|
readonly dealActivities: DealActivitiesService;
|
|
@@ -68462,4 +68763,4 @@ type ValidationResultModel = {
|
|
|
68462
68763
|
readonly errors?: Array<ValidationError> | null;
|
|
68463
68764
|
};
|
|
68464
68765
|
|
|
68465
|
-
export { 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, 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, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, 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, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, 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, 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, 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, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, 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, 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, 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, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, 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, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };
|
|
68766
|
+
export { 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, 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, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, 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, 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, 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, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, 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, 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, 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, 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, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };
|