reach-api-sdk 1.0.213 → 1.0.215
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 +650 -32
- package/dist/reach-sdk.js +553 -1
- package/package.json +1 -1
- package/src/apiClient.ts +12 -0
- package/src/definition/swagger.yaml +2163 -551
- package/src/index.ts +10 -0
- package/src/models/AttendeePatch.ts +2 -1
- package/src/models/CustomerAccountInvitePatch.ts +4 -0
- package/src/models/CustomerPortalAccountPatch.ts +50 -0
- package/src/models/EndUserAccessibleTenantDto.ts +22 -0
- package/src/models/StorefrontStaffPreviewTokenResponse.ts +14 -0
- package/src/models/StorefrontStaffPreviewValidateRequest.ts +14 -0
- package/src/models/StorefrontStaffPreviewValidateResponse.ts +14 -0
- package/src/models/TenantSetting.ts +15 -0
- package/src/models/TenantStorefrontSettingsPatch.ts +20 -0
- package/src/models/TenantWebsiteSetting.ts +4 -0
- package/src/models/TenantWebsiteSettingPatch.ts +4 -0
- package/src/models/User.ts +4 -0
- package/src/services/CoursesService.ts +60 -0
- package/src/services/CustomerAuthService.ts +160 -0
- package/src/services/CustomerPortalService.ts +310 -0
- package/src/services/OrderItemReportService.ts +133 -7
- package/src/services/PublicCoursesService.ts +24 -0
- package/src/services/PublicCustomersService.ts +28 -0
- package/src/services/PublicGenericActivityService.ts +8 -0
- package/src/services/PublicNetworksService.ts +12 -0
- package/src/services/PublicSessionsService.ts +24 -0
- package/src/services/PublicStorefrontStaffPreviewService.ts +39 -0
- package/src/services/SessionsService.ts +60 -0
- package/src/services/StorefrontStaffPreviewService.ts +29 -0
- package/src/services/TenantsService.ts +27 -0
- package/src/services/UsersService.ts +18 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -1760,6 +1760,10 @@ type TenantWebsiteSetting = {
|
|
|
1760
1760
|
* Gets or sets the website background image.
|
|
1761
1761
|
*/
|
|
1762
1762
|
backgroundImage?: string | null;
|
|
1763
|
+
/**
|
|
1764
|
+
* Gets or sets the hero image for the storefront browse login gate (not the site banner).
|
|
1765
|
+
*/
|
|
1766
|
+
browseLoginHeroImage?: string | null;
|
|
1763
1767
|
/**
|
|
1764
1768
|
* Gets or sets the website analytics property id.
|
|
1765
1769
|
*/
|
|
@@ -1898,6 +1902,10 @@ type User = {
|
|
|
1898
1902
|
* Gets or sets the users avatar url.
|
|
1899
1903
|
*/
|
|
1900
1904
|
avatar?: string | null;
|
|
1905
|
+
/**
|
|
1906
|
+
* Gets or sets the linked end-user identity for customer portal users (links to end_user_identities).
|
|
1907
|
+
*/
|
|
1908
|
+
endUserIdentityId?: string | null;
|
|
1901
1909
|
/**
|
|
1902
1910
|
* Gets or sets the users roles.
|
|
1903
1911
|
*/
|
|
@@ -5470,7 +5478,8 @@ type AttendeePatch = {
|
|
|
5470
5478
|
lastName?: string | null;
|
|
5471
5479
|
/**
|
|
5472
5480
|
* Gets or sets the attendee date of birth.
|
|
5473
|
-
*
|
|
5481
|
+
* When a linked `end_user_identity` exists, first name, last name, and date of birth
|
|
5482
|
+
* patch fields are applied to that record as well as to the attendee row where applicable.
|
|
5474
5483
|
*/
|
|
5475
5484
|
dateOfBirth?: string | null;
|
|
5476
5485
|
};
|
|
@@ -9276,7 +9285,7 @@ declare class CoursesService {
|
|
|
9276
9285
|
* @returns CoursePage OK
|
|
9277
9286
|
* @throws ApiError
|
|
9278
9287
|
*/
|
|
9279
|
-
getPage({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9288
|
+
getPage({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9280
9289
|
/**
|
|
9281
9290
|
* Gets or sets the queryable Course Id.
|
|
9282
9291
|
*/
|
|
@@ -9401,6 +9410,14 @@ declare class CoursesService {
|
|
|
9401
9410
|
* Gets or sets Distance.
|
|
9402
9411
|
*/
|
|
9403
9412
|
distance?: number;
|
|
9413
|
+
/**
|
|
9414
|
+
* Gets or sets AdditionalSupport.
|
|
9415
|
+
*/
|
|
9416
|
+
additionalSupport?: Array<string>;
|
|
9417
|
+
/**
|
|
9418
|
+
* Gets or sets Activity id.
|
|
9419
|
+
*/
|
|
9420
|
+
activityId?: number;
|
|
9404
9421
|
/**
|
|
9405
9422
|
* Gets or sets the queryable course template field permissions Id.
|
|
9406
9423
|
*/
|
|
@@ -9492,7 +9509,7 @@ declare class CoursesService {
|
|
|
9492
9509
|
* @returns boolean OK
|
|
9493
9510
|
* @throws ApiError
|
|
9494
9511
|
*/
|
|
9495
|
-
exists({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9512
|
+
exists({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9496
9513
|
/**
|
|
9497
9514
|
* Gets or sets the queryable Course Id.
|
|
9498
9515
|
*/
|
|
@@ -9617,6 +9634,14 @@ declare class CoursesService {
|
|
|
9617
9634
|
* Gets or sets Distance.
|
|
9618
9635
|
*/
|
|
9619
9636
|
distance?: number;
|
|
9637
|
+
/**
|
|
9638
|
+
* Gets or sets AdditionalSupport.
|
|
9639
|
+
*/
|
|
9640
|
+
additionalSupport?: Array<string>;
|
|
9641
|
+
/**
|
|
9642
|
+
* Gets or sets Activity id.
|
|
9643
|
+
*/
|
|
9644
|
+
activityId?: number;
|
|
9620
9645
|
/**
|
|
9621
9646
|
* Gets or sets the queryable course template field permissions Id.
|
|
9622
9647
|
*/
|
|
@@ -9675,7 +9700,7 @@ declare class CoursesService {
|
|
|
9675
9700
|
* @returns number OK
|
|
9676
9701
|
* @throws ApiError
|
|
9677
9702
|
*/
|
|
9678
|
-
count({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9703
|
+
count({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9679
9704
|
/**
|
|
9680
9705
|
* Gets or sets the queryable Course Id.
|
|
9681
9706
|
*/
|
|
@@ -9800,6 +9825,14 @@ declare class CoursesService {
|
|
|
9800
9825
|
* Gets or sets Distance.
|
|
9801
9826
|
*/
|
|
9802
9827
|
distance?: number;
|
|
9828
|
+
/**
|
|
9829
|
+
* Gets or sets AdditionalSupport.
|
|
9830
|
+
*/
|
|
9831
|
+
additionalSupport?: Array<string>;
|
|
9832
|
+
/**
|
|
9833
|
+
* Gets or sets Activity id.
|
|
9834
|
+
*/
|
|
9835
|
+
activityId?: number;
|
|
9803
9836
|
/**
|
|
9804
9837
|
* Gets or sets the queryable course template field permissions Id.
|
|
9805
9838
|
*/
|
|
@@ -9858,7 +9891,7 @@ declare class CoursesService {
|
|
|
9858
9891
|
* @returns Course OK
|
|
9859
9892
|
* @throws ApiError
|
|
9860
9893
|
*/
|
|
9861
|
-
getListWithoutReferences({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9894
|
+
getListWithoutReferences({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9862
9895
|
/**
|
|
9863
9896
|
* Gets or sets the queryable Course Id.
|
|
9864
9897
|
*/
|
|
@@ -9983,6 +10016,14 @@ declare class CoursesService {
|
|
|
9983
10016
|
* Gets or sets Distance.
|
|
9984
10017
|
*/
|
|
9985
10018
|
distance?: number;
|
|
10019
|
+
/**
|
|
10020
|
+
* Gets or sets AdditionalSupport.
|
|
10021
|
+
*/
|
|
10022
|
+
additionalSupport?: Array<string>;
|
|
10023
|
+
/**
|
|
10024
|
+
* Gets or sets Activity id.
|
|
10025
|
+
*/
|
|
10026
|
+
activityId?: number;
|
|
9986
10027
|
/**
|
|
9987
10028
|
* Gets or sets the queryable course template field permissions Id.
|
|
9988
10029
|
*/
|
|
@@ -10041,7 +10082,7 @@ declare class CoursesService {
|
|
|
10041
10082
|
* @returns Course OK
|
|
10042
10083
|
* @throws ApiError
|
|
10043
10084
|
*/
|
|
10044
|
-
getListIdName({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10085
|
+
getListIdName({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10045
10086
|
/**
|
|
10046
10087
|
* Gets or sets the queryable Course Id.
|
|
10047
10088
|
*/
|
|
@@ -10166,6 +10207,14 @@ declare class CoursesService {
|
|
|
10166
10207
|
* Gets or sets Distance.
|
|
10167
10208
|
*/
|
|
10168
10209
|
distance?: number;
|
|
10210
|
+
/**
|
|
10211
|
+
* Gets or sets AdditionalSupport.
|
|
10212
|
+
*/
|
|
10213
|
+
additionalSupport?: Array<string>;
|
|
10214
|
+
/**
|
|
10215
|
+
* Gets or sets Activity id.
|
|
10216
|
+
*/
|
|
10217
|
+
activityId?: number;
|
|
10169
10218
|
/**
|
|
10170
10219
|
* Gets or sets the queryable course template field permissions Id.
|
|
10171
10220
|
*/
|
|
@@ -11590,6 +11639,260 @@ declare class CourseSessionSchedulesService {
|
|
|
11590
11639
|
}): CancelablePromise<Array<CourseSessionSchedule>>;
|
|
11591
11640
|
}
|
|
11592
11641
|
|
|
11642
|
+
declare class CustomerAuthService {
|
|
11643
|
+
readonly httpRequest: BaseHttpRequest;
|
|
11644
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
11645
|
+
/**
|
|
11646
|
+
* Debug endpoint to view authorization URL and redirect URI details without redirecting.
|
|
11647
|
+
* @returns any OK
|
|
11648
|
+
* @throws ApiError
|
|
11649
|
+
*/
|
|
11650
|
+
authorizeDebug({ tenantSubdomain, }: {
|
|
11651
|
+
/**
|
|
11652
|
+
* The tenant subdomain (defaults to "testtenant" if not provided).
|
|
11653
|
+
*/
|
|
11654
|
+
tenantSubdomain?: string;
|
|
11655
|
+
}): CancelablePromise<any>;
|
|
11656
|
+
/**
|
|
11657
|
+
* Initiates WorkOS AuthKit authentication flow.
|
|
11658
|
+
* @returns any OK
|
|
11659
|
+
* @throws ApiError
|
|
11660
|
+
*/
|
|
11661
|
+
authorize({ tenantSubdomain, returnTo, loginHint, expectedEmail, screenHint, prompt, }: {
|
|
11662
|
+
/**
|
|
11663
|
+
* Optional tenant subdomain (from query, for sign-in page links).
|
|
11664
|
+
*/
|
|
11665
|
+
tenantSubdomain?: string;
|
|
11666
|
+
/**
|
|
11667
|
+
* 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.
|
|
11668
|
+
*/
|
|
11669
|
+
returnTo?: string;
|
|
11670
|
+
/**
|
|
11671
|
+
* Optional email hint for AuthKit sign-in UI.
|
|
11672
|
+
*/
|
|
11673
|
+
loginHint?: string;
|
|
11674
|
+
/**
|
|
11675
|
+
* Optional email that callback must match (state validation), even when AuthKit login hint is omitted.
|
|
11676
|
+
*/
|
|
11677
|
+
expectedEmail?: string;
|
|
11678
|
+
/**
|
|
11679
|
+
* Optional AuthKit screen (`sign-in` or `sign-up`).
|
|
11680
|
+
*/
|
|
11681
|
+
screenHint?: string;
|
|
11682
|
+
/**
|
|
11683
|
+
* Optional OAuth prompt (e.g. `login` to reduce silent reuse of another WorkOS session in the browser).
|
|
11684
|
+
*/
|
|
11685
|
+
prompt?: string;
|
|
11686
|
+
}): CancelablePromise<any>;
|
|
11687
|
+
/**
|
|
11688
|
+
* Handles WorkOS AuthKit callback after user authentication.
|
|
11689
|
+
* @returns any OK
|
|
11690
|
+
* @throws ApiError
|
|
11691
|
+
*/
|
|
11692
|
+
callback({ code, state, }: {
|
|
11693
|
+
/**
|
|
11694
|
+
* Authorization code from WorkOS.
|
|
11695
|
+
*/
|
|
11696
|
+
code?: string;
|
|
11697
|
+
/**
|
|
11698
|
+
* State parameter for CSRF protection.
|
|
11699
|
+
*/
|
|
11700
|
+
state?: string;
|
|
11701
|
+
}): CancelablePromise<any>;
|
|
11702
|
+
/**
|
|
11703
|
+
* Handles customer logout.
|
|
11704
|
+
* @returns any OK
|
|
11705
|
+
* @throws ApiError
|
|
11706
|
+
*/
|
|
11707
|
+
logout({ sessionId, tenantSubdomain, }: {
|
|
11708
|
+
/**
|
|
11709
|
+
* Optional WorkOS session ID (if using WorkOS session cookies).
|
|
11710
|
+
*/
|
|
11711
|
+
sessionId?: string;
|
|
11712
|
+
/**
|
|
11713
|
+
* Optional tenant subdomain (required when API host differs from storefront, e.g. cross-origin logout).
|
|
11714
|
+
*/
|
|
11715
|
+
tenantSubdomain?: string;
|
|
11716
|
+
}): CancelablePromise<any>;
|
|
11717
|
+
}
|
|
11718
|
+
|
|
11719
|
+
/**
|
|
11720
|
+
* Partial update payload for the authenticated customer's account (customer portal).
|
|
11721
|
+
*/
|
|
11722
|
+
type CustomerPortalAccountPatch = {
|
|
11723
|
+
/**
|
|
11724
|
+
* Gets or sets the first name (person customers).
|
|
11725
|
+
*/
|
|
11726
|
+
firstName?: string | null;
|
|
11727
|
+
/**
|
|
11728
|
+
* Gets or sets the last name (person customers).
|
|
11729
|
+
*/
|
|
11730
|
+
lastName?: string | null;
|
|
11731
|
+
/**
|
|
11732
|
+
* Gets or sets the organisation name (organisation customers).
|
|
11733
|
+
*/
|
|
11734
|
+
organisationName?: string | null;
|
|
11735
|
+
/**
|
|
11736
|
+
* Gets or sets the phone number.
|
|
11737
|
+
*/
|
|
11738
|
+
phone?: string | null;
|
|
11739
|
+
/**
|
|
11740
|
+
* Gets or sets the street address.
|
|
11741
|
+
*/
|
|
11742
|
+
streetAddress?: string | null;
|
|
11743
|
+
/**
|
|
11744
|
+
* Gets or sets the address locality.
|
|
11745
|
+
*/
|
|
11746
|
+
addressLocality?: string | null;
|
|
11747
|
+
/**
|
|
11748
|
+
* Gets or sets the address region.
|
|
11749
|
+
*/
|
|
11750
|
+
addressRegion?: string | null;
|
|
11751
|
+
/**
|
|
11752
|
+
* Gets or sets the postal code.
|
|
11753
|
+
*/
|
|
11754
|
+
addressPostalcode?: string | null;
|
|
11755
|
+
/**
|
|
11756
|
+
* Gets or sets the country id.
|
|
11757
|
+
*/
|
|
11758
|
+
countryId?: number | null;
|
|
11759
|
+
/**
|
|
11760
|
+
* Gets or sets a value indicating whether the customer opted into marketing.
|
|
11761
|
+
*/
|
|
11762
|
+
marketingOptIn?: boolean | null;
|
|
11763
|
+
};
|
|
11764
|
+
|
|
11765
|
+
declare class CustomerPortalService {
|
|
11766
|
+
readonly httpRequest: BaseHttpRequest;
|
|
11767
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
11768
|
+
/**
|
|
11769
|
+
* Returns the current authenticated customer's profile.
|
|
11770
|
+
* @returns any OK
|
|
11771
|
+
* @throws ApiError
|
|
11772
|
+
*/
|
|
11773
|
+
me(): CancelablePromise<any>;
|
|
11774
|
+
/**
|
|
11775
|
+
* Returns the authenticated customer's account details for this tenant (fields editable via PATCH, except email which is read-only in the portal).
|
|
11776
|
+
* @returns any OK
|
|
11777
|
+
* @throws ApiError
|
|
11778
|
+
*/
|
|
11779
|
+
getAccount(): CancelablePromise<any>;
|
|
11780
|
+
/**
|
|
11781
|
+
* Updates the authenticated customer's account for this tenant (partial update). Email cannot be changed via this endpoint.
|
|
11782
|
+
* @returns any OK
|
|
11783
|
+
* @throws ApiError
|
|
11784
|
+
*/
|
|
11785
|
+
patchAccount({ requestBody, }: {
|
|
11786
|
+
/**
|
|
11787
|
+
* Fields to update.
|
|
11788
|
+
*/
|
|
11789
|
+
requestBody?: CustomerPortalAccountPatch;
|
|
11790
|
+
}): CancelablePromise<any>;
|
|
11791
|
+
/**
|
|
11792
|
+
* Returns the participant profiles (attendees) for the authenticated customer in this tenant.
|
|
11793
|
+
* Resolves customer by end_user_identity_id (User -> Customer) with email fallback for unlinked users.
|
|
11794
|
+
* @returns any OK
|
|
11795
|
+
* @throws ApiError
|
|
11796
|
+
*/
|
|
11797
|
+
getParticipants(): CancelablePromise<any>;
|
|
11798
|
+
/**
|
|
11799
|
+
* Updates personal details for a participant (attendee) belonging to the authenticated customer.
|
|
11800
|
+
* Patches attendee and linked `end_user_identities` row when present.
|
|
11801
|
+
* @returns any OK
|
|
11802
|
+
* @throws ApiError
|
|
11803
|
+
*/
|
|
11804
|
+
patchParticipant({ attendeeId, requestBody, }: {
|
|
11805
|
+
/**
|
|
11806
|
+
* Attendee identifier.
|
|
11807
|
+
*/
|
|
11808
|
+
attendeeId: string;
|
|
11809
|
+
/**
|
|
11810
|
+
* Fields to update.
|
|
11811
|
+
*/
|
|
11812
|
+
requestBody?: AttendeePatch;
|
|
11813
|
+
}): CancelablePromise<any>;
|
|
11814
|
+
/**
|
|
11815
|
+
* Returns the authenticated customer's wallet balance and recent transactions.
|
|
11816
|
+
* When wallet tracking is per-attendee, attendeeId must be the participant id.
|
|
11817
|
+
* When tracking is at customer level, the customer wallet is returned and attendeeId is ignored.
|
|
11818
|
+
* @returns any OK
|
|
11819
|
+
* @throws ApiError
|
|
11820
|
+
*/
|
|
11821
|
+
getWallet({ attendeeId, }: {
|
|
11822
|
+
/**
|
|
11823
|
+
* Optional attendee id (required when wallet tracking is Attendee).
|
|
11824
|
+
*/
|
|
11825
|
+
attendeeId?: string;
|
|
11826
|
+
}): CancelablePromise<any>;
|
|
11827
|
+
/**
|
|
11828
|
+
* Lists order items for the authenticated customer (storefront dashboard parity), filtered by upcoming or past event timing.
|
|
11829
|
+
* @returns any OK
|
|
11830
|
+
* @throws ApiError
|
|
11831
|
+
*/
|
|
11832
|
+
getOrderItems({ eventTiming, }: {
|
|
11833
|
+
/**
|
|
11834
|
+
* Either `Upcoming` or `Past`.
|
|
11835
|
+
*/
|
|
11836
|
+
eventTiming?: string;
|
|
11837
|
+
}): CancelablePromise<any>;
|
|
11838
|
+
/**
|
|
11839
|
+
* Returns scheduled sessions the customer can reschedule an order item to (same logic as public storefront).
|
|
11840
|
+
* @returns any OK
|
|
11841
|
+
* @throws ApiError
|
|
11842
|
+
*/
|
|
11843
|
+
getRescheduleOpportunities({ orderItemId, }: {
|
|
11844
|
+
/**
|
|
11845
|
+
* Order item id.
|
|
11846
|
+
*/
|
|
11847
|
+
orderItemId: string;
|
|
11848
|
+
}): CancelablePromise<any>;
|
|
11849
|
+
/**
|
|
11850
|
+
* Reschedules a booked order item to another scheduled session (storefront parity).
|
|
11851
|
+
* @returns any OK
|
|
11852
|
+
* @throws ApiError
|
|
11853
|
+
*/
|
|
11854
|
+
rescheduleOrderItem({ orderItemId, scheduledSessionId, }: {
|
|
11855
|
+
/**
|
|
11856
|
+
* Order item id.
|
|
11857
|
+
*/
|
|
11858
|
+
orderItemId: string;
|
|
11859
|
+
/**
|
|
11860
|
+
* Target scheduled session id.
|
|
11861
|
+
*/
|
|
11862
|
+
scheduledSessionId: string;
|
|
11863
|
+
}): CancelablePromise<any>;
|
|
11864
|
+
/**
|
|
11865
|
+
* Cancels one or more order items without refund (outside refund window or free bookings).
|
|
11866
|
+
* @returns any OK
|
|
11867
|
+
* @throws ApiError
|
|
11868
|
+
*/
|
|
11869
|
+
cancelOrder({ orderId, requestBody, }: {
|
|
11870
|
+
/**
|
|
11871
|
+
* Order id.
|
|
11872
|
+
*/
|
|
11873
|
+
orderId: string;
|
|
11874
|
+
/**
|
|
11875
|
+
* Order item ids to cancel.
|
|
11876
|
+
*/
|
|
11877
|
+
requestBody?: Array<string>;
|
|
11878
|
+
}): CancelablePromise<any>;
|
|
11879
|
+
/**
|
|
11880
|
+
* Cancels one or more order items and requests a refund (inside refund window).
|
|
11881
|
+
* @returns any OK
|
|
11882
|
+
* @throws ApiError
|
|
11883
|
+
*/
|
|
11884
|
+
cancelOrderWithRefund({ orderId, requestBody, }: {
|
|
11885
|
+
/**
|
|
11886
|
+
* Order id.
|
|
11887
|
+
*/
|
|
11888
|
+
orderId: string;
|
|
11889
|
+
/**
|
|
11890
|
+
* Order item ids to cancel.
|
|
11891
|
+
*/
|
|
11892
|
+
requestBody?: Array<string>;
|
|
11893
|
+
}): CancelablePromise<any>;
|
|
11894
|
+
}
|
|
11895
|
+
|
|
11593
11896
|
/**
|
|
11594
11897
|
* Patch model for sending account invite email to the customer.
|
|
11595
11898
|
*/
|
|
@@ -11610,6 +11913,10 @@ type CustomerAccountInvitePatch = {
|
|
|
11610
11913
|
* Gets or sets the base domain for the invite link. If not provided, will use configuration value.
|
|
11611
11914
|
*/
|
|
11612
11915
|
baseDomain?: string | null;
|
|
11916
|
+
/**
|
|
11917
|
+
* Gets or sets an optional override for the customer WorkOS registration URL. If not provided, the API builds it from configuration and tenant subdomain.
|
|
11918
|
+
*/
|
|
11919
|
+
registrationUrl?: string | null;
|
|
11613
11920
|
};
|
|
11614
11921
|
|
|
11615
11922
|
/**
|
|
@@ -27751,7 +28058,7 @@ declare class OrderItemReportService {
|
|
|
27751
28058
|
* @returns any OK
|
|
27752
28059
|
* @throws ApiError
|
|
27753
28060
|
*/
|
|
27754
|
-
exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
28061
|
+
exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
27755
28062
|
/**
|
|
27756
28063
|
* Gets or sets the Venue Id.
|
|
27757
28064
|
*/
|
|
@@ -27773,9 +28080,21 @@ declare class OrderItemReportService {
|
|
|
27773
28080
|
*/
|
|
27774
28081
|
startDateLte?: string;
|
|
27775
28082
|
/**
|
|
27776
|
-
* Gets or sets
|
|
28083
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28084
|
+
*/
|
|
28085
|
+
orderDateGte?: string;
|
|
28086
|
+
/**
|
|
28087
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28088
|
+
*/
|
|
28089
|
+
orderDateLte?: string;
|
|
28090
|
+
/**
|
|
28091
|
+
* Gets or sets a preset range for <strong>activity start</strong> (scheduled session or course first session), mapped to Reach.Models.OrderItemReportSearchParameters.StartDateGTE / Reach.Models.OrderItemReportSearchParameters.StartDateLTE.
|
|
27777
28092
|
*/
|
|
27778
28093
|
dateRange?: CustomDateRange;
|
|
28094
|
+
/**
|
|
28095
|
+
* Gets or sets a preset range for <strong>order purchase</strong> date (`orders.order_date`), mapped to Reach.Models.OrderItemReportSearchParameters.OrderDateGTE / Reach.Models.OrderItemReportSearchParameters.OrderDateLTE.
|
|
28096
|
+
*/
|
|
28097
|
+
orderDateRange?: CustomDateRange;
|
|
27779
28098
|
/**
|
|
27780
28099
|
* Gets or sets the page number for paged queries.
|
|
27781
28100
|
*/
|
|
@@ -27832,7 +28151,7 @@ declare class OrderItemReportService {
|
|
|
27832
28151
|
* @returns OrderItemReportSummary OK
|
|
27833
28152
|
* @throws ApiError
|
|
27834
28153
|
*/
|
|
27835
|
-
getSummary({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28154
|
+
getSummary({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27836
28155
|
/**
|
|
27837
28156
|
* Gets or sets the Venue Id.
|
|
27838
28157
|
*/
|
|
@@ -27854,9 +28173,21 @@ declare class OrderItemReportService {
|
|
|
27854
28173
|
*/
|
|
27855
28174
|
startDateLte?: string;
|
|
27856
28175
|
/**
|
|
27857
|
-
* Gets or sets
|
|
28176
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28177
|
+
*/
|
|
28178
|
+
orderDateGte?: string;
|
|
28179
|
+
/**
|
|
28180
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28181
|
+
*/
|
|
28182
|
+
orderDateLte?: string;
|
|
28183
|
+
/**
|
|
28184
|
+
* Gets or sets a preset range for <strong>activity start</strong> (scheduled session or course first session), mapped to Reach.Models.OrderItemReportSearchParameters.StartDateGTE / Reach.Models.OrderItemReportSearchParameters.StartDateLTE.
|
|
27858
28185
|
*/
|
|
27859
28186
|
dateRange?: CustomDateRange;
|
|
28187
|
+
/**
|
|
28188
|
+
* Gets or sets a preset range for <strong>order purchase</strong> date (`orders.order_date`), mapped to Reach.Models.OrderItemReportSearchParameters.OrderDateGTE / Reach.Models.OrderItemReportSearchParameters.OrderDateLTE.
|
|
28189
|
+
*/
|
|
28190
|
+
orderDateRange?: CustomDateRange;
|
|
27860
28191
|
/**
|
|
27861
28192
|
* Gets or sets the page number for paged queries.
|
|
27862
28193
|
*/
|
|
@@ -27962,7 +28293,7 @@ declare class OrderItemReportService {
|
|
|
27962
28293
|
* @returns OrderItemReportPage OK
|
|
27963
28294
|
* @throws ApiError
|
|
27964
28295
|
*/
|
|
27965
|
-
getPage({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28296
|
+
getPage({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27966
28297
|
/**
|
|
27967
28298
|
* Gets or sets the Venue Id.
|
|
27968
28299
|
*/
|
|
@@ -27984,9 +28315,21 @@ declare class OrderItemReportService {
|
|
|
27984
28315
|
*/
|
|
27985
28316
|
startDateLte?: string;
|
|
27986
28317
|
/**
|
|
27987
|
-
* Gets or sets
|
|
28318
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28319
|
+
*/
|
|
28320
|
+
orderDateGte?: string;
|
|
28321
|
+
/**
|
|
28322
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28323
|
+
*/
|
|
28324
|
+
orderDateLte?: string;
|
|
28325
|
+
/**
|
|
28326
|
+
* Gets or sets a preset range for <strong>activity start</strong> (scheduled session or course first session), mapped to Reach.Models.OrderItemReportSearchParameters.StartDateGTE / Reach.Models.OrderItemReportSearchParameters.StartDateLTE.
|
|
27988
28327
|
*/
|
|
27989
28328
|
dateRange?: CustomDateRange;
|
|
28329
|
+
/**
|
|
28330
|
+
* Gets or sets a preset range for <strong>order purchase</strong> date (`orders.order_date`), mapped to Reach.Models.OrderItemReportSearchParameters.OrderDateGTE / Reach.Models.OrderItemReportSearchParameters.OrderDateLTE.
|
|
28331
|
+
*/
|
|
28332
|
+
orderDateRange?: CustomDateRange;
|
|
27990
28333
|
/**
|
|
27991
28334
|
* Gets or sets the page number for paged queries.
|
|
27992
28335
|
*/
|
|
@@ -28070,7 +28413,7 @@ declare class OrderItemReportService {
|
|
|
28070
28413
|
* @returns boolean OK
|
|
28071
28414
|
* @throws ApiError
|
|
28072
28415
|
*/
|
|
28073
|
-
exists({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28416
|
+
exists({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28074
28417
|
/**
|
|
28075
28418
|
* Gets or sets the Venue Id.
|
|
28076
28419
|
*/
|
|
@@ -28092,9 +28435,21 @@ declare class OrderItemReportService {
|
|
|
28092
28435
|
*/
|
|
28093
28436
|
startDateLte?: string;
|
|
28094
28437
|
/**
|
|
28095
|
-
* Gets or sets
|
|
28438
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28439
|
+
*/
|
|
28440
|
+
orderDateGte?: string;
|
|
28441
|
+
/**
|
|
28442
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28443
|
+
*/
|
|
28444
|
+
orderDateLte?: string;
|
|
28445
|
+
/**
|
|
28446
|
+
* Gets or sets a preset range for <strong>activity start</strong> (scheduled session or course first session), mapped to Reach.Models.OrderItemReportSearchParameters.StartDateGTE / Reach.Models.OrderItemReportSearchParameters.StartDateLTE.
|
|
28096
28447
|
*/
|
|
28097
28448
|
dateRange?: CustomDateRange;
|
|
28449
|
+
/**
|
|
28450
|
+
* Gets or sets a preset range for <strong>order purchase</strong> date (`orders.order_date`), mapped to Reach.Models.OrderItemReportSearchParameters.OrderDateGTE / Reach.Models.OrderItemReportSearchParameters.OrderDateLTE.
|
|
28451
|
+
*/
|
|
28452
|
+
orderDateRange?: CustomDateRange;
|
|
28098
28453
|
/**
|
|
28099
28454
|
* Gets or sets the page number for paged queries.
|
|
28100
28455
|
*/
|
|
@@ -28145,7 +28500,7 @@ declare class OrderItemReportService {
|
|
|
28145
28500
|
* @returns number OK
|
|
28146
28501
|
* @throws ApiError
|
|
28147
28502
|
*/
|
|
28148
|
-
count({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28503
|
+
count({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28149
28504
|
/**
|
|
28150
28505
|
* Gets or sets the Venue Id.
|
|
28151
28506
|
*/
|
|
@@ -28167,9 +28522,21 @@ declare class OrderItemReportService {
|
|
|
28167
28522
|
*/
|
|
28168
28523
|
startDateLte?: string;
|
|
28169
28524
|
/**
|
|
28170
|
-
* Gets or sets
|
|
28525
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28526
|
+
*/
|
|
28527
|
+
orderDateGte?: string;
|
|
28528
|
+
/**
|
|
28529
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28530
|
+
*/
|
|
28531
|
+
orderDateLte?: string;
|
|
28532
|
+
/**
|
|
28533
|
+
* Gets or sets a preset range for <strong>activity start</strong> (scheduled session or course first session), mapped to Reach.Models.OrderItemReportSearchParameters.StartDateGTE / Reach.Models.OrderItemReportSearchParameters.StartDateLTE.
|
|
28171
28534
|
*/
|
|
28172
28535
|
dateRange?: CustomDateRange;
|
|
28536
|
+
/**
|
|
28537
|
+
* Gets or sets a preset range for <strong>order purchase</strong> date (`orders.order_date`), mapped to Reach.Models.OrderItemReportSearchParameters.OrderDateGTE / Reach.Models.OrderItemReportSearchParameters.OrderDateLTE.
|
|
28538
|
+
*/
|
|
28539
|
+
orderDateRange?: CustomDateRange;
|
|
28173
28540
|
/**
|
|
28174
28541
|
* Gets or sets the page number for paged queries.
|
|
28175
28542
|
*/
|
|
@@ -28220,7 +28587,7 @@ declare class OrderItemReportService {
|
|
|
28220
28587
|
* @returns OrderItemReport OK
|
|
28221
28588
|
* @throws ApiError
|
|
28222
28589
|
*/
|
|
28223
|
-
getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28590
|
+
getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28224
28591
|
/**
|
|
28225
28592
|
* Gets or sets the Venue Id.
|
|
28226
28593
|
*/
|
|
@@ -28242,9 +28609,21 @@ declare class OrderItemReportService {
|
|
|
28242
28609
|
*/
|
|
28243
28610
|
startDateLte?: string;
|
|
28244
28611
|
/**
|
|
28245
|
-
* Gets or sets
|
|
28612
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28613
|
+
*/
|
|
28614
|
+
orderDateGte?: string;
|
|
28615
|
+
/**
|
|
28616
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28617
|
+
*/
|
|
28618
|
+
orderDateLte?: string;
|
|
28619
|
+
/**
|
|
28620
|
+
* Gets or sets a preset range for <strong>activity start</strong> (scheduled session or course first session), mapped to Reach.Models.OrderItemReportSearchParameters.StartDateGTE / Reach.Models.OrderItemReportSearchParameters.StartDateLTE.
|
|
28246
28621
|
*/
|
|
28247
28622
|
dateRange?: CustomDateRange;
|
|
28623
|
+
/**
|
|
28624
|
+
* Gets or sets a preset range for <strong>order purchase</strong> date (`orders.order_date`), mapped to Reach.Models.OrderItemReportSearchParameters.OrderDateGTE / Reach.Models.OrderItemReportSearchParameters.OrderDateLTE.
|
|
28625
|
+
*/
|
|
28626
|
+
orderDateRange?: CustomDateRange;
|
|
28248
28627
|
/**
|
|
28249
28628
|
* Gets or sets the page number for paged queries.
|
|
28250
28629
|
*/
|
|
@@ -28295,7 +28674,7 @@ declare class OrderItemReportService {
|
|
|
28295
28674
|
* @returns OrderItemReport OK
|
|
28296
28675
|
* @throws ApiError
|
|
28297
28676
|
*/
|
|
28298
|
-
getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28677
|
+
getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28299
28678
|
/**
|
|
28300
28679
|
* Gets or sets the Venue Id.
|
|
28301
28680
|
*/
|
|
@@ -28317,9 +28696,21 @@ declare class OrderItemReportService {
|
|
|
28317
28696
|
*/
|
|
28318
28697
|
startDateLte?: string;
|
|
28319
28698
|
/**
|
|
28320
|
-
* Gets or sets
|
|
28699
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28700
|
+
*/
|
|
28701
|
+
orderDateGte?: string;
|
|
28702
|
+
/**
|
|
28703
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28704
|
+
*/
|
|
28705
|
+
orderDateLte?: string;
|
|
28706
|
+
/**
|
|
28707
|
+
* Gets or sets a preset range for <strong>activity start</strong> (scheduled session or course first session), mapped to Reach.Models.OrderItemReportSearchParameters.StartDateGTE / Reach.Models.OrderItemReportSearchParameters.StartDateLTE.
|
|
28321
28708
|
*/
|
|
28322
28709
|
dateRange?: CustomDateRange;
|
|
28710
|
+
/**
|
|
28711
|
+
* Gets or sets a preset range for <strong>order purchase</strong> date (`orders.order_date`), mapped to Reach.Models.OrderItemReportSearchParameters.OrderDateGTE / Reach.Models.OrderItemReportSearchParameters.OrderDateLTE.
|
|
28712
|
+
*/
|
|
28713
|
+
orderDateRange?: CustomDateRange;
|
|
28323
28714
|
/**
|
|
28324
28715
|
* Gets or sets the page number for paged queries.
|
|
28325
28716
|
*/
|
|
@@ -34764,7 +35155,7 @@ declare class PublicCoursesService {
|
|
|
34764
35155
|
* @returns CoursePage OK
|
|
34765
35156
|
* @throws ApiError
|
|
34766
35157
|
*/
|
|
34767
|
-
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35158
|
+
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34768
35159
|
xTenantSubdomain?: string;
|
|
34769
35160
|
/**
|
|
34770
35161
|
* Gets or sets the queryable Course Id.
|
|
@@ -34890,6 +35281,14 @@ declare class PublicCoursesService {
|
|
|
34890
35281
|
* Gets or sets Distance.
|
|
34891
35282
|
*/
|
|
34892
35283
|
distance?: number;
|
|
35284
|
+
/**
|
|
35285
|
+
* Gets or sets AdditionalSupport.
|
|
35286
|
+
*/
|
|
35287
|
+
additionalSupport?: Array<string>;
|
|
35288
|
+
/**
|
|
35289
|
+
* Gets or sets Activity id.
|
|
35290
|
+
*/
|
|
35291
|
+
activityId?: number;
|
|
34893
35292
|
/**
|
|
34894
35293
|
* Gets or sets the queryable course template field permissions Id.
|
|
34895
35294
|
*/
|
|
@@ -35023,7 +35422,7 @@ declare class PublicCoursesService {
|
|
|
35023
35422
|
* @returns boolean OK
|
|
35024
35423
|
* @throws ApiError
|
|
35025
35424
|
*/
|
|
35026
|
-
exists({ xTenantSubdomain, id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35425
|
+
exists({ xTenantSubdomain, id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35027
35426
|
/**
|
|
35028
35427
|
* The tenants subdomain.
|
|
35029
35428
|
*/
|
|
@@ -35152,6 +35551,14 @@ declare class PublicCoursesService {
|
|
|
35152
35551
|
* Gets or sets Distance.
|
|
35153
35552
|
*/
|
|
35154
35553
|
distance?: number;
|
|
35554
|
+
/**
|
|
35555
|
+
* Gets or sets AdditionalSupport.
|
|
35556
|
+
*/
|
|
35557
|
+
additionalSupport?: Array<string>;
|
|
35558
|
+
/**
|
|
35559
|
+
* Gets or sets Activity id.
|
|
35560
|
+
*/
|
|
35561
|
+
activityId?: number;
|
|
35155
35562
|
/**
|
|
35156
35563
|
* Gets or sets the queryable course template field permissions Id.
|
|
35157
35564
|
*/
|
|
@@ -35346,6 +35753,18 @@ declare class PublicCustomersService {
|
|
|
35346
35753
|
*/
|
|
35347
35754
|
xTenantSubdomain?: string;
|
|
35348
35755
|
}): CancelablePromise<any>;
|
|
35756
|
+
/**
|
|
35757
|
+
* Bulk enqueues all opted-in customers to DotDigital integration.
|
|
35758
|
+
* For each customer with marketing_opt_in = true, finds their latest order and queues it for DotDigital sync.
|
|
35759
|
+
* @returns any OK
|
|
35760
|
+
* @throws ApiError
|
|
35761
|
+
*/
|
|
35762
|
+
bulkEnqueueOptedInCustomersToDotdigital({ xTenantSubdomain, }: {
|
|
35763
|
+
/**
|
|
35764
|
+
* The tenants subdomain.
|
|
35765
|
+
*/
|
|
35766
|
+
xTenantSubdomain?: string;
|
|
35767
|
+
}): CancelablePromise<any>;
|
|
35349
35768
|
/**
|
|
35350
35769
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
35351
35770
|
* @returns Customer OK
|
|
@@ -36416,7 +36835,11 @@ declare class PublicGenericActivityService {
|
|
|
36416
36835
|
* @returns ActivityFacet OK
|
|
36417
36836
|
* @throws ApiError
|
|
36418
36837
|
*/
|
|
36419
|
-
getActivityFacets({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
36838
|
+
getActivityFacets({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
36839
|
+
/**
|
|
36840
|
+
* Optional. When set (same header as other public activity endpoints), facets are scoped to that tenant and use explicit storefront visibility. When omitted, legacy behavior is preserved (no tenant filter on the facet query).
|
|
36841
|
+
*/
|
|
36842
|
+
xTenantSubdomain?: string;
|
|
36420
36843
|
/**
|
|
36421
36844
|
* Gets or sets the wildcard for use in a query search.
|
|
36422
36845
|
*/
|
|
@@ -37460,7 +37883,7 @@ declare class PublicNetworksService {
|
|
|
37460
37883
|
* @returns SessionPage OK
|
|
37461
37884
|
* @throws ApiError
|
|
37462
37885
|
*/
|
|
37463
|
-
getSessions({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
37886
|
+
getSessions({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
37464
37887
|
/**
|
|
37465
37888
|
* Gets or sets the queryable session ids.
|
|
37466
37889
|
*/
|
|
@@ -37585,6 +38008,14 @@ declare class PublicNetworksService {
|
|
|
37585
38008
|
* Gets or sets SearchGeoCenter.
|
|
37586
38009
|
*/
|
|
37587
38010
|
searchGeoCenter?: string;
|
|
38011
|
+
/**
|
|
38012
|
+
* Gets or sets AdditionalSupport.
|
|
38013
|
+
*/
|
|
38014
|
+
additionalSupport?: Array<string>;
|
|
38015
|
+
/**
|
|
38016
|
+
* Gets or sets Activity id.
|
|
38017
|
+
*/
|
|
38018
|
+
activityId?: number;
|
|
37588
38019
|
/**
|
|
37589
38020
|
* Gets or sets the queryable session template field permissions Id.
|
|
37590
38021
|
*/
|
|
@@ -40342,7 +40773,7 @@ declare class PublicSessionsService {
|
|
|
40342
40773
|
* @returns SessionPage OK
|
|
40343
40774
|
* @throws ApiError
|
|
40344
40775
|
*/
|
|
40345
|
-
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40776
|
+
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40346
40777
|
xTenantSubdomain?: string;
|
|
40347
40778
|
/**
|
|
40348
40779
|
* Gets or sets the queryable session ids.
|
|
@@ -40468,6 +40899,14 @@ declare class PublicSessionsService {
|
|
|
40468
40899
|
* Gets or sets SearchGeoCenter.
|
|
40469
40900
|
*/
|
|
40470
40901
|
searchGeoCenter?: string;
|
|
40902
|
+
/**
|
|
40903
|
+
* Gets or sets AdditionalSupport.
|
|
40904
|
+
*/
|
|
40905
|
+
additionalSupport?: Array<string>;
|
|
40906
|
+
/**
|
|
40907
|
+
* Gets or sets Activity id.
|
|
40908
|
+
*/
|
|
40909
|
+
activityId?: number;
|
|
40471
40910
|
/**
|
|
40472
40911
|
* Gets or sets the queryable session template field permissions Id.
|
|
40473
40912
|
*/
|
|
@@ -40791,7 +41230,7 @@ declare class PublicSessionsService {
|
|
|
40791
41230
|
* @returns boolean OK
|
|
40792
41231
|
* @throws ApiError
|
|
40793
41232
|
*/
|
|
40794
|
-
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
41233
|
+
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40795
41234
|
/**
|
|
40796
41235
|
* The tenants subdomain.
|
|
40797
41236
|
*/
|
|
@@ -40920,6 +41359,14 @@ declare class PublicSessionsService {
|
|
|
40920
41359
|
* Gets or sets SearchGeoCenter.
|
|
40921
41360
|
*/
|
|
40922
41361
|
searchGeoCenter?: string;
|
|
41362
|
+
/**
|
|
41363
|
+
* Gets or sets AdditionalSupport.
|
|
41364
|
+
*/
|
|
41365
|
+
additionalSupport?: Array<string>;
|
|
41366
|
+
/**
|
|
41367
|
+
* Gets or sets Activity id.
|
|
41368
|
+
*/
|
|
41369
|
+
activityId?: number;
|
|
40923
41370
|
/**
|
|
40924
41371
|
* Gets or sets the queryable session template field permissions Id.
|
|
40925
41372
|
*/
|
|
@@ -41493,6 +41940,42 @@ declare class PublicSlotsService {
|
|
|
41493
41940
|
}): CancelablePromise<boolean>;
|
|
41494
41941
|
}
|
|
41495
41942
|
|
|
41943
|
+
/**
|
|
41944
|
+
* Request body for validating a storefront staff preview token.
|
|
41945
|
+
*/
|
|
41946
|
+
type StorefrontStaffPreviewValidateRequest = {
|
|
41947
|
+
/**
|
|
41948
|
+
* Gets or sets the JWT from the storefront URL.
|
|
41949
|
+
*/
|
|
41950
|
+
token?: string | null;
|
|
41951
|
+
};
|
|
41952
|
+
|
|
41953
|
+
/**
|
|
41954
|
+
* Response when storefront staff preview validation succeeds.
|
|
41955
|
+
*/
|
|
41956
|
+
type StorefrontStaffPreviewValidateResponse = {
|
|
41957
|
+
/**
|
|
41958
|
+
* Gets or sets UTC expiry of the preview token.
|
|
41959
|
+
*/
|
|
41960
|
+
expiresAtUtc?: string;
|
|
41961
|
+
};
|
|
41962
|
+
|
|
41963
|
+
declare class PublicStorefrontStaffPreviewService {
|
|
41964
|
+
readonly httpRequest: BaseHttpRequest;
|
|
41965
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
41966
|
+
/**
|
|
41967
|
+
* Validates a preview JWT for the tenant indicated by `x_tenant_subdomain`.
|
|
41968
|
+
* @returns StorefrontStaffPreviewValidateResponse OK
|
|
41969
|
+
* @throws ApiError
|
|
41970
|
+
*/
|
|
41971
|
+
validate({ requestBody, }: {
|
|
41972
|
+
/**
|
|
41973
|
+
* Body with token.
|
|
41974
|
+
*/
|
|
41975
|
+
requestBody?: StorefrontStaffPreviewValidateRequest;
|
|
41976
|
+
}): CancelablePromise<StorefrontStaffPreviewValidateResponse>;
|
|
41977
|
+
}
|
|
41978
|
+
|
|
41496
41979
|
declare class PublicStripeWebhookService {
|
|
41497
41980
|
readonly httpRequest: BaseHttpRequest;
|
|
41498
41981
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -42958,6 +43441,21 @@ type TenantSetting = {
|
|
|
42958
43441
|
* When enabled, prices will be displayed as 'credits' rather than currency.
|
|
42959
43442
|
*/
|
|
42960
43443
|
walletOnlyPayments?: boolean;
|
|
43444
|
+
/**
|
|
43445
|
+
* Gets or sets a value indicating whether customer portal WorkOS login is restricted to pre-provisioned customers only.
|
|
43446
|
+
* When true, the authenticated email must match a live customer row (email or display_email) for this tenant.
|
|
43447
|
+
*/
|
|
43448
|
+
customerLoginRequiresPreprovision?: boolean;
|
|
43449
|
+
/**
|
|
43450
|
+
* Gets or sets a value indicating whether the storefront requires the customer to be signed in before browsing activities and venues.
|
|
43451
|
+
* When false (default), anonymous browsing is allowed.
|
|
43452
|
+
*/
|
|
43453
|
+
storefrontRequiresLoginToBrowse?: boolean;
|
|
43454
|
+
/**
|
|
43455
|
+
* Gets or sets a value indicating whether WorkOS customer-portal auth is enabled for this tenant.
|
|
43456
|
+
* When false (default), storefronts should hide WorkOS sign-in; use for phased rollout per tenant.
|
|
43457
|
+
*/
|
|
43458
|
+
customerPortalWorkOsLoginEnabled?: boolean;
|
|
42961
43459
|
/**
|
|
42962
43460
|
* Gets the next order number in the sequence.
|
|
42963
43461
|
*/
|
|
@@ -48735,7 +49233,7 @@ declare class SessionsService {
|
|
|
48735
49233
|
* @returns SessionPage OK
|
|
48736
49234
|
* @throws ApiError
|
|
48737
49235
|
*/
|
|
48738
|
-
getPage({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
49236
|
+
getPage({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
48739
49237
|
/**
|
|
48740
49238
|
* Gets or sets the queryable session ids.
|
|
48741
49239
|
*/
|
|
@@ -48860,6 +49358,14 @@ declare class SessionsService {
|
|
|
48860
49358
|
* Gets or sets SearchGeoCenter.
|
|
48861
49359
|
*/
|
|
48862
49360
|
searchGeoCenter?: string;
|
|
49361
|
+
/**
|
|
49362
|
+
* Gets or sets AdditionalSupport.
|
|
49363
|
+
*/
|
|
49364
|
+
additionalSupport?: Array<string>;
|
|
49365
|
+
/**
|
|
49366
|
+
* Gets or sets Activity id.
|
|
49367
|
+
*/
|
|
49368
|
+
activityId?: number;
|
|
48863
49369
|
/**
|
|
48864
49370
|
* Gets or sets the queryable session template field permissions Id.
|
|
48865
49371
|
*/
|
|
@@ -48951,7 +49457,7 @@ declare class SessionsService {
|
|
|
48951
49457
|
* @returns boolean OK
|
|
48952
49458
|
* @throws ApiError
|
|
48953
49459
|
*/
|
|
48954
|
-
exists({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
49460
|
+
exists({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
48955
49461
|
/**
|
|
48956
49462
|
* Gets or sets the queryable session ids.
|
|
48957
49463
|
*/
|
|
@@ -49076,6 +49582,14 @@ declare class SessionsService {
|
|
|
49076
49582
|
* Gets or sets SearchGeoCenter.
|
|
49077
49583
|
*/
|
|
49078
49584
|
searchGeoCenter?: string;
|
|
49585
|
+
/**
|
|
49586
|
+
* Gets or sets AdditionalSupport.
|
|
49587
|
+
*/
|
|
49588
|
+
additionalSupport?: Array<string>;
|
|
49589
|
+
/**
|
|
49590
|
+
* Gets or sets Activity id.
|
|
49591
|
+
*/
|
|
49592
|
+
activityId?: number;
|
|
49079
49593
|
/**
|
|
49080
49594
|
* Gets or sets the queryable session template field permissions Id.
|
|
49081
49595
|
*/
|
|
@@ -49134,7 +49648,7 @@ declare class SessionsService {
|
|
|
49134
49648
|
* @returns number OK
|
|
49135
49649
|
* @throws ApiError
|
|
49136
49650
|
*/
|
|
49137
|
-
count({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
49651
|
+
count({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
49138
49652
|
/**
|
|
49139
49653
|
* Gets or sets the queryable session ids.
|
|
49140
49654
|
*/
|
|
@@ -49259,6 +49773,14 @@ declare class SessionsService {
|
|
|
49259
49773
|
* Gets or sets SearchGeoCenter.
|
|
49260
49774
|
*/
|
|
49261
49775
|
searchGeoCenter?: string;
|
|
49776
|
+
/**
|
|
49777
|
+
* Gets or sets AdditionalSupport.
|
|
49778
|
+
*/
|
|
49779
|
+
additionalSupport?: Array<string>;
|
|
49780
|
+
/**
|
|
49781
|
+
* Gets or sets Activity id.
|
|
49782
|
+
*/
|
|
49783
|
+
activityId?: number;
|
|
49262
49784
|
/**
|
|
49263
49785
|
* Gets or sets the queryable session template field permissions Id.
|
|
49264
49786
|
*/
|
|
@@ -49317,7 +49839,7 @@ declare class SessionsService {
|
|
|
49317
49839
|
* @returns Session OK
|
|
49318
49840
|
* @throws ApiError
|
|
49319
49841
|
*/
|
|
49320
|
-
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
49842
|
+
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
49321
49843
|
/**
|
|
49322
49844
|
* Gets or sets the queryable session ids.
|
|
49323
49845
|
*/
|
|
@@ -49442,6 +49964,14 @@ declare class SessionsService {
|
|
|
49442
49964
|
* Gets or sets SearchGeoCenter.
|
|
49443
49965
|
*/
|
|
49444
49966
|
searchGeoCenter?: string;
|
|
49967
|
+
/**
|
|
49968
|
+
* Gets or sets AdditionalSupport.
|
|
49969
|
+
*/
|
|
49970
|
+
additionalSupport?: Array<string>;
|
|
49971
|
+
/**
|
|
49972
|
+
* Gets or sets Activity id.
|
|
49973
|
+
*/
|
|
49974
|
+
activityId?: number;
|
|
49445
49975
|
/**
|
|
49446
49976
|
* Gets or sets the queryable session template field permissions Id.
|
|
49447
49977
|
*/
|
|
@@ -49500,7 +50030,7 @@ declare class SessionsService {
|
|
|
49500
50030
|
* @returns Session OK
|
|
49501
50031
|
* @throws ApiError
|
|
49502
50032
|
*/
|
|
49503
|
-
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
50033
|
+
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
49504
50034
|
/**
|
|
49505
50035
|
* Gets or sets the queryable session ids.
|
|
49506
50036
|
*/
|
|
@@ -49625,6 +50155,14 @@ declare class SessionsService {
|
|
|
49625
50155
|
* Gets or sets SearchGeoCenter.
|
|
49626
50156
|
*/
|
|
49627
50157
|
searchGeoCenter?: string;
|
|
50158
|
+
/**
|
|
50159
|
+
* Gets or sets AdditionalSupport.
|
|
50160
|
+
*/
|
|
50161
|
+
additionalSupport?: Array<string>;
|
|
50162
|
+
/**
|
|
50163
|
+
* Gets or sets Activity id.
|
|
50164
|
+
*/
|
|
50165
|
+
activityId?: number;
|
|
49628
50166
|
/**
|
|
49629
50167
|
* Gets or sets the queryable session template field permissions Id.
|
|
49630
50168
|
*/
|
|
@@ -51928,6 +52466,27 @@ declare class SlotSchedulesService {
|
|
|
51928
52466
|
}): CancelablePromise<Array<SlotSchedule>>;
|
|
51929
52467
|
}
|
|
51930
52468
|
|
|
52469
|
+
/**
|
|
52470
|
+
* Response from issuing a storefront staff preview token.
|
|
52471
|
+
*/
|
|
52472
|
+
type StorefrontStaffPreviewTokenResponse = {
|
|
52473
|
+
/**
|
|
52474
|
+
* Gets or sets the JWT to pass to the storefront (query `sf_staff_preview`).
|
|
52475
|
+
*/
|
|
52476
|
+
token?: string | null;
|
|
52477
|
+
};
|
|
52478
|
+
|
|
52479
|
+
declare class StorefrontStaffPreviewService {
|
|
52480
|
+
readonly httpRequest: BaseHttpRequest;
|
|
52481
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
52482
|
+
/**
|
|
52483
|
+
* Creates a short-lived preview token for the tenant in the caller's Identity Server claims.
|
|
52484
|
+
* @returns StorefrontStaffPreviewTokenResponse OK
|
|
52485
|
+
* @throws ApiError
|
|
52486
|
+
*/
|
|
52487
|
+
createToken(): CancelablePromise<StorefrontStaffPreviewTokenResponse>;
|
|
52488
|
+
}
|
|
52489
|
+
|
|
51931
52490
|
/**
|
|
51932
52491
|
* The Stripe account linked entity type.
|
|
51933
52492
|
*/
|
|
@@ -57894,6 +58453,22 @@ type DatabaseState = {
|
|
|
57894
58453
|
stripeSetupRequirements?: Array<StripeSetupRequirement> | null;
|
|
57895
58454
|
};
|
|
57896
58455
|
|
|
58456
|
+
/**
|
|
58457
|
+
* Partial update for storefront-related tenant settings (partner API).
|
|
58458
|
+
*/
|
|
58459
|
+
type TenantStorefrontSettingsPatch = {
|
|
58460
|
+
/**
|
|
58461
|
+
* Gets or sets a value indicating whether customers must sign in before browsing the storefront.
|
|
58462
|
+
* When false (default), anonymous browsing is allowed.
|
|
58463
|
+
*/
|
|
58464
|
+
storefrontRequiresLoginToBrowse?: boolean;
|
|
58465
|
+
/**
|
|
58466
|
+
* Gets or sets whether WorkOS customer sign-in is shown for this tenant (storefront rollout).
|
|
58467
|
+
* When null, PATCH leaves the existing database value unchanged.
|
|
58468
|
+
*/
|
|
58469
|
+
customerPortalWorkOsLoginEnabled?: boolean | null;
|
|
58470
|
+
};
|
|
58471
|
+
|
|
57897
58472
|
declare class TenantsService {
|
|
57898
58473
|
readonly httpRequest: BaseHttpRequest;
|
|
57899
58474
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -57976,6 +58551,17 @@ declare class TenantsService {
|
|
|
57976
58551
|
* @throws ApiError
|
|
57977
58552
|
*/
|
|
57978
58553
|
getSettings(): CancelablePromise<TenantSetting>;
|
|
58554
|
+
/**
|
|
58555
|
+
* Updates storefront-related tenant settings.
|
|
58556
|
+
* @returns TenantSetting OK
|
|
58557
|
+
* @throws ApiError
|
|
58558
|
+
*/
|
|
58559
|
+
patchSettings({ requestBody, }: {
|
|
58560
|
+
/**
|
|
58561
|
+
* Fields to update.
|
|
58562
|
+
*/
|
|
58563
|
+
requestBody?: TenantStorefrontSettingsPatch;
|
|
58564
|
+
}): CancelablePromise<TenantSetting>;
|
|
57979
58565
|
/**
|
|
57980
58566
|
* Gets the tenants stripe account details. />.
|
|
57981
58567
|
* @returns Tenant OK
|
|
@@ -58499,6 +59085,10 @@ type TenantWebsiteSettingPatch = {
|
|
|
58499
59085
|
* Gets or sets the website background image.
|
|
58500
59086
|
*/
|
|
58501
59087
|
backgroundImage?: string | null;
|
|
59088
|
+
/**
|
|
59089
|
+
* Gets or sets the hero image for the storefront browse login gate.
|
|
59090
|
+
*/
|
|
59091
|
+
browseLoginHeroImage?: string | null;
|
|
58502
59092
|
/**
|
|
58503
59093
|
* Gets or sets the website analytics property id.
|
|
58504
59094
|
*/
|
|
@@ -61186,6 +61776,24 @@ declare class UserProvidersService {
|
|
|
61186
61776
|
}): CancelablePromise<Array<UserProvider>>;
|
|
61187
61777
|
}
|
|
61188
61778
|
|
|
61779
|
+
/**
|
|
61780
|
+
* End user accessible dto.
|
|
61781
|
+
*/
|
|
61782
|
+
type EndUserAccessibleTenantDto = {
|
|
61783
|
+
/**
|
|
61784
|
+
* Gets or sets the tenant id.
|
|
61785
|
+
*/
|
|
61786
|
+
id?: string;
|
|
61787
|
+
/**
|
|
61788
|
+
* Gets or sets the tenant name.
|
|
61789
|
+
*/
|
|
61790
|
+
name?: string | null;
|
|
61791
|
+
/**
|
|
61792
|
+
* Gets or sets the tenant subdomain.
|
|
61793
|
+
*/
|
|
61794
|
+
subDomain?: string | null;
|
|
61795
|
+
};
|
|
61796
|
+
|
|
61189
61797
|
type UserPage = {
|
|
61190
61798
|
pagination: Pagination;
|
|
61191
61799
|
readonly items: Array<User>;
|
|
@@ -61232,6 +61840,12 @@ declare class UsersService {
|
|
|
61232
61840
|
* @throws ApiError
|
|
61233
61841
|
*/
|
|
61234
61842
|
getUser(): CancelablePromise<User>;
|
|
61843
|
+
/**
|
|
61844
|
+
* Returns tenants accessible to the authenticated user.
|
|
61845
|
+
* @returns EndUserAccessibleTenantDto OK
|
|
61846
|
+
* @throws ApiError
|
|
61847
|
+
*/
|
|
61848
|
+
getAccessibleTenants(): CancelablePromise<Array<EndUserAccessibleTenantDto>>;
|
|
61235
61849
|
/**
|
|
61236
61850
|
* Gets the authenticated user permissions.
|
|
61237
61851
|
* @returns UserPermission OK
|
|
@@ -68216,6 +68830,8 @@ declare class ApiClient {
|
|
|
68216
68830
|
readonly courses: CoursesService;
|
|
68217
68831
|
readonly courseSessions: CourseSessionsService;
|
|
68218
68832
|
readonly courseSessionSchedules: CourseSessionSchedulesService;
|
|
68833
|
+
readonly customerAuth: CustomerAuthService;
|
|
68834
|
+
readonly customerPortal: CustomerPortalService;
|
|
68219
68835
|
readonly customers: CustomersService;
|
|
68220
68836
|
readonly customFields: CustomFieldsService;
|
|
68221
68837
|
readonly dealActivities: DealActivitiesService;
|
|
@@ -68281,6 +68897,7 @@ declare class ApiClient {
|
|
|
68281
68897
|
readonly publicScheduledSessions: PublicScheduledSessionsService;
|
|
68282
68898
|
readonly publicSessions: PublicSessionsService;
|
|
68283
68899
|
readonly publicSlots: PublicSlotsService;
|
|
68900
|
+
readonly publicStorefrontStaffPreview: PublicStorefrontStaffPreviewService;
|
|
68284
68901
|
readonly publicStripeWebhook: PublicStripeWebhookService;
|
|
68285
68902
|
readonly publicSurveyCompletionLogs: PublicSurveyCompletionLogsService;
|
|
68286
68903
|
readonly publicSurveyQuestions: PublicSurveyQuestionsService;
|
|
@@ -68300,6 +68917,7 @@ declare class ApiClient {
|
|
|
68300
68917
|
readonly slots: SlotsService;
|
|
68301
68918
|
readonly slotScheduleOffers: SlotScheduleOffersService;
|
|
68302
68919
|
readonly slotSchedules: SlotSchedulesService;
|
|
68920
|
+
readonly storefrontStaffPreview: StorefrontStaffPreviewService;
|
|
68303
68921
|
readonly stripeAccount: StripeAccountService;
|
|
68304
68922
|
readonly surfaces: SurfacesService;
|
|
68305
68923
|
readonly surveyAnswers: SurveyAnswersService;
|
|
@@ -68462,4 +69080,4 @@ type ValidationResultModel = {
|
|
|
68462
69080
|
readonly errors?: Array<ValidationError> | null;
|
|
68463
69081
|
};
|
|
68464
69082
|
|
|
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 };
|
|
69083
|
+
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, EndUserAccessibleTenantDto, 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, PublicStorefrontStaffPreviewService, 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, 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, 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 };
|