reach-api-sdk 1.0.214 → 1.0.216
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 +362 -37
- package/dist/reach-sdk.js +195 -3
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +814 -193
- package/src/index.ts +6 -0
- package/src/models/CustomerPortalAccountPatch.ts +0 -4
- package/src/models/EndUserAccessibleTenantDto.ts +22 -0
- package/src/models/FilestackImageMetaResponseModel.ts +8 -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 +5 -0
- package/src/models/TenantStorefrontSettingsPatch.ts +5 -0
- package/src/models/TenantWebsiteSetting.ts +4 -0
- package/src/models/TenantWebsiteSettingPatch.ts +4 -0
- package/src/services/CoursesService.ts +60 -0
- package/src/services/CustomerPortalService.ts +2 -2
- 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/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
|
*/
|
|
@@ -9281,7 +9285,7 @@ declare class CoursesService {
|
|
|
9281
9285
|
* @returns CoursePage OK
|
|
9282
9286
|
* @throws ApiError
|
|
9283
9287
|
*/
|
|
9284
|
-
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, }: {
|
|
9285
9289
|
/**
|
|
9286
9290
|
* Gets or sets the queryable Course Id.
|
|
9287
9291
|
*/
|
|
@@ -9406,6 +9410,14 @@ declare class CoursesService {
|
|
|
9406
9410
|
* Gets or sets Distance.
|
|
9407
9411
|
*/
|
|
9408
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;
|
|
9409
9421
|
/**
|
|
9410
9422
|
* Gets or sets the queryable course template field permissions Id.
|
|
9411
9423
|
*/
|
|
@@ -9497,7 +9509,7 @@ declare class CoursesService {
|
|
|
9497
9509
|
* @returns boolean OK
|
|
9498
9510
|
* @throws ApiError
|
|
9499
9511
|
*/
|
|
9500
|
-
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, }: {
|
|
9501
9513
|
/**
|
|
9502
9514
|
* Gets or sets the queryable Course Id.
|
|
9503
9515
|
*/
|
|
@@ -9622,6 +9634,14 @@ declare class CoursesService {
|
|
|
9622
9634
|
* Gets or sets Distance.
|
|
9623
9635
|
*/
|
|
9624
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;
|
|
9625
9645
|
/**
|
|
9626
9646
|
* Gets or sets the queryable course template field permissions Id.
|
|
9627
9647
|
*/
|
|
@@ -9680,7 +9700,7 @@ declare class CoursesService {
|
|
|
9680
9700
|
* @returns number OK
|
|
9681
9701
|
* @throws ApiError
|
|
9682
9702
|
*/
|
|
9683
|
-
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, }: {
|
|
9684
9704
|
/**
|
|
9685
9705
|
* Gets or sets the queryable Course Id.
|
|
9686
9706
|
*/
|
|
@@ -9805,6 +9825,14 @@ declare class CoursesService {
|
|
|
9805
9825
|
* Gets or sets Distance.
|
|
9806
9826
|
*/
|
|
9807
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;
|
|
9808
9836
|
/**
|
|
9809
9837
|
* Gets or sets the queryable course template field permissions Id.
|
|
9810
9838
|
*/
|
|
@@ -9863,7 +9891,7 @@ declare class CoursesService {
|
|
|
9863
9891
|
* @returns Course OK
|
|
9864
9892
|
* @throws ApiError
|
|
9865
9893
|
*/
|
|
9866
|
-
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, }: {
|
|
9867
9895
|
/**
|
|
9868
9896
|
* Gets or sets the queryable Course Id.
|
|
9869
9897
|
*/
|
|
@@ -9988,6 +10016,14 @@ declare class CoursesService {
|
|
|
9988
10016
|
* Gets or sets Distance.
|
|
9989
10017
|
*/
|
|
9990
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;
|
|
9991
10027
|
/**
|
|
9992
10028
|
* Gets or sets the queryable course template field permissions Id.
|
|
9993
10029
|
*/
|
|
@@ -10046,7 +10082,7 @@ declare class CoursesService {
|
|
|
10046
10082
|
* @returns Course OK
|
|
10047
10083
|
* @throws ApiError
|
|
10048
10084
|
*/
|
|
10049
|
-
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, }: {
|
|
10050
10086
|
/**
|
|
10051
10087
|
* Gets or sets the queryable Course Id.
|
|
10052
10088
|
*/
|
|
@@ -10171,6 +10207,14 @@ declare class CoursesService {
|
|
|
10171
10207
|
* Gets or sets Distance.
|
|
10172
10208
|
*/
|
|
10173
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;
|
|
10174
10218
|
/**
|
|
10175
10219
|
* Gets or sets the queryable course template field permissions Id.
|
|
10176
10220
|
*/
|
|
@@ -11688,10 +11732,6 @@ type CustomerPortalAccountPatch = {
|
|
|
11688
11732
|
* Gets or sets the organisation name (organisation customers).
|
|
11689
11733
|
*/
|
|
11690
11734
|
organisationName?: string | null;
|
|
11691
|
-
/**
|
|
11692
|
-
* Gets or sets the display / contact email.
|
|
11693
|
-
*/
|
|
11694
|
-
email?: string | null;
|
|
11695
11735
|
/**
|
|
11696
11736
|
* Gets or sets the phone number.
|
|
11697
11737
|
*/
|
|
@@ -11732,13 +11772,13 @@ declare class CustomerPortalService {
|
|
|
11732
11772
|
*/
|
|
11733
11773
|
me(): CancelablePromise<any>;
|
|
11734
11774
|
/**
|
|
11735
|
-
* Returns the authenticated customer's account details for this tenant (editable
|
|
11775
|
+
* Returns the authenticated customer's account details for this tenant (fields editable via PATCH, except email which is read-only in the portal).
|
|
11736
11776
|
* @returns any OK
|
|
11737
11777
|
* @throws ApiError
|
|
11738
11778
|
*/
|
|
11739
11779
|
getAccount(): CancelablePromise<any>;
|
|
11740
11780
|
/**
|
|
11741
|
-
* Updates the authenticated customer's account for this tenant (partial update).
|
|
11781
|
+
* Updates the authenticated customer's account for this tenant (partial update). Email cannot be changed via this endpoint.
|
|
11742
11782
|
* @returns any OK
|
|
11743
11783
|
* @throws ApiError
|
|
11744
11784
|
*/
|
|
@@ -17549,6 +17589,14 @@ type FilestackImageMetaResponseModel = {
|
|
|
17549
17589
|
* Gets or sets the size.
|
|
17550
17590
|
*/
|
|
17551
17591
|
size?: number;
|
|
17592
|
+
/**
|
|
17593
|
+
* Gets or sets the image width in pixels (from Filestack metadata).
|
|
17594
|
+
*/
|
|
17595
|
+
width?: number | null;
|
|
17596
|
+
/**
|
|
17597
|
+
* Gets or sets the image height in pixels (from Filestack metadata).
|
|
17598
|
+
*/
|
|
17599
|
+
height?: number | null;
|
|
17552
17600
|
/**
|
|
17553
17601
|
* Gets or sets the url.
|
|
17554
17602
|
*/
|
|
@@ -28018,7 +28066,7 @@ declare class OrderItemReportService {
|
|
|
28018
28066
|
* @returns any OK
|
|
28019
28067
|
* @throws ApiError
|
|
28020
28068
|
*/
|
|
28021
|
-
exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
28069
|
+
exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
28022
28070
|
/**
|
|
28023
28071
|
* Gets or sets the Venue Id.
|
|
28024
28072
|
*/
|
|
@@ -28040,9 +28088,21 @@ declare class OrderItemReportService {
|
|
|
28040
28088
|
*/
|
|
28041
28089
|
startDateLte?: string;
|
|
28042
28090
|
/**
|
|
28043
|
-
* Gets or sets
|
|
28091
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28092
|
+
*/
|
|
28093
|
+
orderDateGte?: string;
|
|
28094
|
+
/**
|
|
28095
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28096
|
+
*/
|
|
28097
|
+
orderDateLte?: string;
|
|
28098
|
+
/**
|
|
28099
|
+
* 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.
|
|
28044
28100
|
*/
|
|
28045
28101
|
dateRange?: CustomDateRange;
|
|
28102
|
+
/**
|
|
28103
|
+
* 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.
|
|
28104
|
+
*/
|
|
28105
|
+
orderDateRange?: CustomDateRange;
|
|
28046
28106
|
/**
|
|
28047
28107
|
* Gets or sets the page number for paged queries.
|
|
28048
28108
|
*/
|
|
@@ -28099,7 +28159,7 @@ declare class OrderItemReportService {
|
|
|
28099
28159
|
* @returns OrderItemReportSummary OK
|
|
28100
28160
|
* @throws ApiError
|
|
28101
28161
|
*/
|
|
28102
|
-
getSummary({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28162
|
+
getSummary({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28103
28163
|
/**
|
|
28104
28164
|
* Gets or sets the Venue Id.
|
|
28105
28165
|
*/
|
|
@@ -28121,9 +28181,21 @@ declare class OrderItemReportService {
|
|
|
28121
28181
|
*/
|
|
28122
28182
|
startDateLte?: string;
|
|
28123
28183
|
/**
|
|
28124
|
-
* Gets or sets
|
|
28184
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28185
|
+
*/
|
|
28186
|
+
orderDateGte?: string;
|
|
28187
|
+
/**
|
|
28188
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28189
|
+
*/
|
|
28190
|
+
orderDateLte?: string;
|
|
28191
|
+
/**
|
|
28192
|
+
* 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.
|
|
28125
28193
|
*/
|
|
28126
28194
|
dateRange?: CustomDateRange;
|
|
28195
|
+
/**
|
|
28196
|
+
* 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.
|
|
28197
|
+
*/
|
|
28198
|
+
orderDateRange?: CustomDateRange;
|
|
28127
28199
|
/**
|
|
28128
28200
|
* Gets or sets the page number for paged queries.
|
|
28129
28201
|
*/
|
|
@@ -28229,7 +28301,7 @@ declare class OrderItemReportService {
|
|
|
28229
28301
|
* @returns OrderItemReportPage OK
|
|
28230
28302
|
* @throws ApiError
|
|
28231
28303
|
*/
|
|
28232
|
-
getPage({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28304
|
+
getPage({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28233
28305
|
/**
|
|
28234
28306
|
* Gets or sets the Venue Id.
|
|
28235
28307
|
*/
|
|
@@ -28251,9 +28323,21 @@ declare class OrderItemReportService {
|
|
|
28251
28323
|
*/
|
|
28252
28324
|
startDateLte?: string;
|
|
28253
28325
|
/**
|
|
28254
|
-
* Gets or sets
|
|
28326
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28327
|
+
*/
|
|
28328
|
+
orderDateGte?: string;
|
|
28329
|
+
/**
|
|
28330
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28331
|
+
*/
|
|
28332
|
+
orderDateLte?: string;
|
|
28333
|
+
/**
|
|
28334
|
+
* 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.
|
|
28255
28335
|
*/
|
|
28256
28336
|
dateRange?: CustomDateRange;
|
|
28337
|
+
/**
|
|
28338
|
+
* 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.
|
|
28339
|
+
*/
|
|
28340
|
+
orderDateRange?: CustomDateRange;
|
|
28257
28341
|
/**
|
|
28258
28342
|
* Gets or sets the page number for paged queries.
|
|
28259
28343
|
*/
|
|
@@ -28337,7 +28421,7 @@ declare class OrderItemReportService {
|
|
|
28337
28421
|
* @returns boolean OK
|
|
28338
28422
|
* @throws ApiError
|
|
28339
28423
|
*/
|
|
28340
|
-
exists({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28424
|
+
exists({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28341
28425
|
/**
|
|
28342
28426
|
* Gets or sets the Venue Id.
|
|
28343
28427
|
*/
|
|
@@ -28359,9 +28443,21 @@ declare class OrderItemReportService {
|
|
|
28359
28443
|
*/
|
|
28360
28444
|
startDateLte?: string;
|
|
28361
28445
|
/**
|
|
28362
|
-
* Gets or sets
|
|
28446
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28447
|
+
*/
|
|
28448
|
+
orderDateGte?: string;
|
|
28449
|
+
/**
|
|
28450
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28451
|
+
*/
|
|
28452
|
+
orderDateLte?: string;
|
|
28453
|
+
/**
|
|
28454
|
+
* 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.
|
|
28363
28455
|
*/
|
|
28364
28456
|
dateRange?: CustomDateRange;
|
|
28457
|
+
/**
|
|
28458
|
+
* 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.
|
|
28459
|
+
*/
|
|
28460
|
+
orderDateRange?: CustomDateRange;
|
|
28365
28461
|
/**
|
|
28366
28462
|
* Gets or sets the page number for paged queries.
|
|
28367
28463
|
*/
|
|
@@ -28412,7 +28508,7 @@ declare class OrderItemReportService {
|
|
|
28412
28508
|
* @returns number OK
|
|
28413
28509
|
* @throws ApiError
|
|
28414
28510
|
*/
|
|
28415
|
-
count({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28511
|
+
count({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28416
28512
|
/**
|
|
28417
28513
|
* Gets or sets the Venue Id.
|
|
28418
28514
|
*/
|
|
@@ -28434,9 +28530,21 @@ declare class OrderItemReportService {
|
|
|
28434
28530
|
*/
|
|
28435
28531
|
startDateLte?: string;
|
|
28436
28532
|
/**
|
|
28437
|
-
* Gets or sets
|
|
28533
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28534
|
+
*/
|
|
28535
|
+
orderDateGte?: string;
|
|
28536
|
+
/**
|
|
28537
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28538
|
+
*/
|
|
28539
|
+
orderDateLte?: string;
|
|
28540
|
+
/**
|
|
28541
|
+
* 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.
|
|
28438
28542
|
*/
|
|
28439
28543
|
dateRange?: CustomDateRange;
|
|
28544
|
+
/**
|
|
28545
|
+
* 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.
|
|
28546
|
+
*/
|
|
28547
|
+
orderDateRange?: CustomDateRange;
|
|
28440
28548
|
/**
|
|
28441
28549
|
* Gets or sets the page number for paged queries.
|
|
28442
28550
|
*/
|
|
@@ -28487,7 +28595,7 @@ declare class OrderItemReportService {
|
|
|
28487
28595
|
* @returns OrderItemReport OK
|
|
28488
28596
|
* @throws ApiError
|
|
28489
28597
|
*/
|
|
28490
|
-
getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28598
|
+
getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28491
28599
|
/**
|
|
28492
28600
|
* Gets or sets the Venue Id.
|
|
28493
28601
|
*/
|
|
@@ -28509,9 +28617,21 @@ declare class OrderItemReportService {
|
|
|
28509
28617
|
*/
|
|
28510
28618
|
startDateLte?: string;
|
|
28511
28619
|
/**
|
|
28512
|
-
* Gets or sets
|
|
28620
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28621
|
+
*/
|
|
28622
|
+
orderDateGte?: string;
|
|
28623
|
+
/**
|
|
28624
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28625
|
+
*/
|
|
28626
|
+
orderDateLte?: string;
|
|
28627
|
+
/**
|
|
28628
|
+
* 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.
|
|
28513
28629
|
*/
|
|
28514
28630
|
dateRange?: CustomDateRange;
|
|
28631
|
+
/**
|
|
28632
|
+
* 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.
|
|
28633
|
+
*/
|
|
28634
|
+
orderDateRange?: CustomDateRange;
|
|
28515
28635
|
/**
|
|
28516
28636
|
* Gets or sets the page number for paged queries.
|
|
28517
28637
|
*/
|
|
@@ -28562,7 +28682,7 @@ declare class OrderItemReportService {
|
|
|
28562
28682
|
* @returns OrderItemReport OK
|
|
28563
28683
|
* @throws ApiError
|
|
28564
28684
|
*/
|
|
28565
|
-
getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28685
|
+
getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, orderDateGte, orderDateLte, dateRange, orderDateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28566
28686
|
/**
|
|
28567
28687
|
* Gets or sets the Venue Id.
|
|
28568
28688
|
*/
|
|
@@ -28584,9 +28704,21 @@ declare class OrderItemReportService {
|
|
|
28584
28704
|
*/
|
|
28585
28705
|
startDateLte?: string;
|
|
28586
28706
|
/**
|
|
28587
|
-
* Gets or sets
|
|
28707
|
+
* Gets or sets the order purchase date greater than or equal to (filters `orders.order_date`).
|
|
28708
|
+
*/
|
|
28709
|
+
orderDateGte?: string;
|
|
28710
|
+
/**
|
|
28711
|
+
* Gets or sets the order purchase date less than or equal to (filters `orders.order_date`).
|
|
28712
|
+
*/
|
|
28713
|
+
orderDateLte?: string;
|
|
28714
|
+
/**
|
|
28715
|
+
* 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.
|
|
28588
28716
|
*/
|
|
28589
28717
|
dateRange?: CustomDateRange;
|
|
28718
|
+
/**
|
|
28719
|
+
* 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.
|
|
28720
|
+
*/
|
|
28721
|
+
orderDateRange?: CustomDateRange;
|
|
28590
28722
|
/**
|
|
28591
28723
|
* Gets or sets the page number for paged queries.
|
|
28592
28724
|
*/
|
|
@@ -35031,7 +35163,7 @@ declare class PublicCoursesService {
|
|
|
35031
35163
|
* @returns CoursePage OK
|
|
35032
35164
|
* @throws ApiError
|
|
35033
35165
|
*/
|
|
35034
|
-
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, }: {
|
|
35166
|
+
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, }: {
|
|
35035
35167
|
xTenantSubdomain?: string;
|
|
35036
35168
|
/**
|
|
35037
35169
|
* Gets or sets the queryable Course Id.
|
|
@@ -35157,6 +35289,14 @@ declare class PublicCoursesService {
|
|
|
35157
35289
|
* Gets or sets Distance.
|
|
35158
35290
|
*/
|
|
35159
35291
|
distance?: number;
|
|
35292
|
+
/**
|
|
35293
|
+
* Gets or sets AdditionalSupport.
|
|
35294
|
+
*/
|
|
35295
|
+
additionalSupport?: Array<string>;
|
|
35296
|
+
/**
|
|
35297
|
+
* Gets or sets Activity id.
|
|
35298
|
+
*/
|
|
35299
|
+
activityId?: number;
|
|
35160
35300
|
/**
|
|
35161
35301
|
* Gets or sets the queryable course template field permissions Id.
|
|
35162
35302
|
*/
|
|
@@ -35290,7 +35430,7 @@ declare class PublicCoursesService {
|
|
|
35290
35430
|
* @returns boolean OK
|
|
35291
35431
|
* @throws ApiError
|
|
35292
35432
|
*/
|
|
35293
|
-
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, }: {
|
|
35433
|
+
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, }: {
|
|
35294
35434
|
/**
|
|
35295
35435
|
* The tenants subdomain.
|
|
35296
35436
|
*/
|
|
@@ -35419,6 +35559,14 @@ declare class PublicCoursesService {
|
|
|
35419
35559
|
* Gets or sets Distance.
|
|
35420
35560
|
*/
|
|
35421
35561
|
distance?: number;
|
|
35562
|
+
/**
|
|
35563
|
+
* Gets or sets AdditionalSupport.
|
|
35564
|
+
*/
|
|
35565
|
+
additionalSupport?: Array<string>;
|
|
35566
|
+
/**
|
|
35567
|
+
* Gets or sets Activity id.
|
|
35568
|
+
*/
|
|
35569
|
+
activityId?: number;
|
|
35422
35570
|
/**
|
|
35423
35571
|
* Gets or sets the queryable course template field permissions Id.
|
|
35424
35572
|
*/
|
|
@@ -35613,6 +35761,18 @@ declare class PublicCustomersService {
|
|
|
35613
35761
|
*/
|
|
35614
35762
|
xTenantSubdomain?: string;
|
|
35615
35763
|
}): CancelablePromise<any>;
|
|
35764
|
+
/**
|
|
35765
|
+
* Bulk enqueues all opted-in customers to DotDigital integration.
|
|
35766
|
+
* For each customer with marketing_opt_in = true, finds their latest order and queues it for DotDigital sync.
|
|
35767
|
+
* @returns any OK
|
|
35768
|
+
* @throws ApiError
|
|
35769
|
+
*/
|
|
35770
|
+
bulkEnqueueOptedInCustomersToDotdigital({ xTenantSubdomain, }: {
|
|
35771
|
+
/**
|
|
35772
|
+
* The tenants subdomain.
|
|
35773
|
+
*/
|
|
35774
|
+
xTenantSubdomain?: string;
|
|
35775
|
+
}): CancelablePromise<any>;
|
|
35616
35776
|
/**
|
|
35617
35777
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
35618
35778
|
* @returns Customer OK
|
|
@@ -36683,7 +36843,11 @@ declare class PublicGenericActivityService {
|
|
|
36683
36843
|
* @returns ActivityFacet OK
|
|
36684
36844
|
* @throws ApiError
|
|
36685
36845
|
*/
|
|
36686
|
-
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, }: {
|
|
36846
|
+
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, }: {
|
|
36847
|
+
/**
|
|
36848
|
+
* 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).
|
|
36849
|
+
*/
|
|
36850
|
+
xTenantSubdomain?: string;
|
|
36687
36851
|
/**
|
|
36688
36852
|
* Gets or sets the wildcard for use in a query search.
|
|
36689
36853
|
*/
|
|
@@ -37727,7 +37891,7 @@ declare class PublicNetworksService {
|
|
|
37727
37891
|
* @returns SessionPage OK
|
|
37728
37892
|
* @throws ApiError
|
|
37729
37893
|
*/
|
|
37730
|
-
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, }: {
|
|
37894
|
+
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, }: {
|
|
37731
37895
|
/**
|
|
37732
37896
|
* Gets or sets the queryable session ids.
|
|
37733
37897
|
*/
|
|
@@ -37852,6 +38016,14 @@ declare class PublicNetworksService {
|
|
|
37852
38016
|
* Gets or sets SearchGeoCenter.
|
|
37853
38017
|
*/
|
|
37854
38018
|
searchGeoCenter?: string;
|
|
38019
|
+
/**
|
|
38020
|
+
* Gets or sets AdditionalSupport.
|
|
38021
|
+
*/
|
|
38022
|
+
additionalSupport?: Array<string>;
|
|
38023
|
+
/**
|
|
38024
|
+
* Gets or sets Activity id.
|
|
38025
|
+
*/
|
|
38026
|
+
activityId?: number;
|
|
37855
38027
|
/**
|
|
37856
38028
|
* Gets or sets the queryable session template field permissions Id.
|
|
37857
38029
|
*/
|
|
@@ -40609,7 +40781,7 @@ declare class PublicSessionsService {
|
|
|
40609
40781
|
* @returns SessionPage OK
|
|
40610
40782
|
* @throws ApiError
|
|
40611
40783
|
*/
|
|
40612
|
-
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, }: {
|
|
40784
|
+
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, }: {
|
|
40613
40785
|
xTenantSubdomain?: string;
|
|
40614
40786
|
/**
|
|
40615
40787
|
* Gets or sets the queryable session ids.
|
|
@@ -40735,6 +40907,14 @@ declare class PublicSessionsService {
|
|
|
40735
40907
|
* Gets or sets SearchGeoCenter.
|
|
40736
40908
|
*/
|
|
40737
40909
|
searchGeoCenter?: string;
|
|
40910
|
+
/**
|
|
40911
|
+
* Gets or sets AdditionalSupport.
|
|
40912
|
+
*/
|
|
40913
|
+
additionalSupport?: Array<string>;
|
|
40914
|
+
/**
|
|
40915
|
+
* Gets or sets Activity id.
|
|
40916
|
+
*/
|
|
40917
|
+
activityId?: number;
|
|
40738
40918
|
/**
|
|
40739
40919
|
* Gets or sets the queryable session template field permissions Id.
|
|
40740
40920
|
*/
|
|
@@ -41058,7 +41238,7 @@ declare class PublicSessionsService {
|
|
|
41058
41238
|
* @returns boolean OK
|
|
41059
41239
|
* @throws ApiError
|
|
41060
41240
|
*/
|
|
41061
|
-
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, }: {
|
|
41241
|
+
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, }: {
|
|
41062
41242
|
/**
|
|
41063
41243
|
* The tenants subdomain.
|
|
41064
41244
|
*/
|
|
@@ -41187,6 +41367,14 @@ declare class PublicSessionsService {
|
|
|
41187
41367
|
* Gets or sets SearchGeoCenter.
|
|
41188
41368
|
*/
|
|
41189
41369
|
searchGeoCenter?: string;
|
|
41370
|
+
/**
|
|
41371
|
+
* Gets or sets AdditionalSupport.
|
|
41372
|
+
*/
|
|
41373
|
+
additionalSupport?: Array<string>;
|
|
41374
|
+
/**
|
|
41375
|
+
* Gets or sets Activity id.
|
|
41376
|
+
*/
|
|
41377
|
+
activityId?: number;
|
|
41190
41378
|
/**
|
|
41191
41379
|
* Gets or sets the queryable session template field permissions Id.
|
|
41192
41380
|
*/
|
|
@@ -41760,6 +41948,42 @@ declare class PublicSlotsService {
|
|
|
41760
41948
|
}): CancelablePromise<boolean>;
|
|
41761
41949
|
}
|
|
41762
41950
|
|
|
41951
|
+
/**
|
|
41952
|
+
* Request body for validating a storefront staff preview token.
|
|
41953
|
+
*/
|
|
41954
|
+
type StorefrontStaffPreviewValidateRequest = {
|
|
41955
|
+
/**
|
|
41956
|
+
* Gets or sets the JWT from the storefront URL.
|
|
41957
|
+
*/
|
|
41958
|
+
token?: string | null;
|
|
41959
|
+
};
|
|
41960
|
+
|
|
41961
|
+
/**
|
|
41962
|
+
* Response when storefront staff preview validation succeeds.
|
|
41963
|
+
*/
|
|
41964
|
+
type StorefrontStaffPreviewValidateResponse = {
|
|
41965
|
+
/**
|
|
41966
|
+
* Gets or sets UTC expiry of the preview token.
|
|
41967
|
+
*/
|
|
41968
|
+
expiresAtUtc?: string;
|
|
41969
|
+
};
|
|
41970
|
+
|
|
41971
|
+
declare class PublicStorefrontStaffPreviewService {
|
|
41972
|
+
readonly httpRequest: BaseHttpRequest;
|
|
41973
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
41974
|
+
/**
|
|
41975
|
+
* Validates a preview JWT for the tenant indicated by `x_tenant_subdomain`.
|
|
41976
|
+
* @returns StorefrontStaffPreviewValidateResponse OK
|
|
41977
|
+
* @throws ApiError
|
|
41978
|
+
*/
|
|
41979
|
+
validate({ requestBody, }: {
|
|
41980
|
+
/**
|
|
41981
|
+
* Body with token.
|
|
41982
|
+
*/
|
|
41983
|
+
requestBody?: StorefrontStaffPreviewValidateRequest;
|
|
41984
|
+
}): CancelablePromise<StorefrontStaffPreviewValidateResponse>;
|
|
41985
|
+
}
|
|
41986
|
+
|
|
41763
41987
|
declare class PublicStripeWebhookService {
|
|
41764
41988
|
readonly httpRequest: BaseHttpRequest;
|
|
41765
41989
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -43235,6 +43459,11 @@ type TenantSetting = {
|
|
|
43235
43459
|
* When false (default), anonymous browsing is allowed.
|
|
43236
43460
|
*/
|
|
43237
43461
|
storefrontRequiresLoginToBrowse?: boolean;
|
|
43462
|
+
/**
|
|
43463
|
+
* Gets or sets a value indicating whether WorkOS customer-portal auth is enabled for this tenant.
|
|
43464
|
+
* When false (default), storefronts should hide WorkOS sign-in; use for phased rollout per tenant.
|
|
43465
|
+
*/
|
|
43466
|
+
customerPortalWorkOsLoginEnabled?: boolean;
|
|
43238
43467
|
/**
|
|
43239
43468
|
* Gets the next order number in the sequence.
|
|
43240
43469
|
*/
|
|
@@ -49012,7 +49241,7 @@ declare class SessionsService {
|
|
|
49012
49241
|
* @returns SessionPage OK
|
|
49013
49242
|
* @throws ApiError
|
|
49014
49243
|
*/
|
|
49015
|
-
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, }: {
|
|
49244
|
+
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, }: {
|
|
49016
49245
|
/**
|
|
49017
49246
|
* Gets or sets the queryable session ids.
|
|
49018
49247
|
*/
|
|
@@ -49137,6 +49366,14 @@ declare class SessionsService {
|
|
|
49137
49366
|
* Gets or sets SearchGeoCenter.
|
|
49138
49367
|
*/
|
|
49139
49368
|
searchGeoCenter?: string;
|
|
49369
|
+
/**
|
|
49370
|
+
* Gets or sets AdditionalSupport.
|
|
49371
|
+
*/
|
|
49372
|
+
additionalSupport?: Array<string>;
|
|
49373
|
+
/**
|
|
49374
|
+
* Gets or sets Activity id.
|
|
49375
|
+
*/
|
|
49376
|
+
activityId?: number;
|
|
49140
49377
|
/**
|
|
49141
49378
|
* Gets or sets the queryable session template field permissions Id.
|
|
49142
49379
|
*/
|
|
@@ -49228,7 +49465,7 @@ declare class SessionsService {
|
|
|
49228
49465
|
* @returns boolean OK
|
|
49229
49466
|
* @throws ApiError
|
|
49230
49467
|
*/
|
|
49231
|
-
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, }: {
|
|
49468
|
+
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, }: {
|
|
49232
49469
|
/**
|
|
49233
49470
|
* Gets or sets the queryable session ids.
|
|
49234
49471
|
*/
|
|
@@ -49353,6 +49590,14 @@ declare class SessionsService {
|
|
|
49353
49590
|
* Gets or sets SearchGeoCenter.
|
|
49354
49591
|
*/
|
|
49355
49592
|
searchGeoCenter?: string;
|
|
49593
|
+
/**
|
|
49594
|
+
* Gets or sets AdditionalSupport.
|
|
49595
|
+
*/
|
|
49596
|
+
additionalSupport?: Array<string>;
|
|
49597
|
+
/**
|
|
49598
|
+
* Gets or sets Activity id.
|
|
49599
|
+
*/
|
|
49600
|
+
activityId?: number;
|
|
49356
49601
|
/**
|
|
49357
49602
|
* Gets or sets the queryable session template field permissions Id.
|
|
49358
49603
|
*/
|
|
@@ -49411,7 +49656,7 @@ declare class SessionsService {
|
|
|
49411
49656
|
* @returns number OK
|
|
49412
49657
|
* @throws ApiError
|
|
49413
49658
|
*/
|
|
49414
|
-
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, }: {
|
|
49659
|
+
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, }: {
|
|
49415
49660
|
/**
|
|
49416
49661
|
* Gets or sets the queryable session ids.
|
|
49417
49662
|
*/
|
|
@@ -49536,6 +49781,14 @@ declare class SessionsService {
|
|
|
49536
49781
|
* Gets or sets SearchGeoCenter.
|
|
49537
49782
|
*/
|
|
49538
49783
|
searchGeoCenter?: string;
|
|
49784
|
+
/**
|
|
49785
|
+
* Gets or sets AdditionalSupport.
|
|
49786
|
+
*/
|
|
49787
|
+
additionalSupport?: Array<string>;
|
|
49788
|
+
/**
|
|
49789
|
+
* Gets or sets Activity id.
|
|
49790
|
+
*/
|
|
49791
|
+
activityId?: number;
|
|
49539
49792
|
/**
|
|
49540
49793
|
* Gets or sets the queryable session template field permissions Id.
|
|
49541
49794
|
*/
|
|
@@ -49594,7 +49847,7 @@ declare class SessionsService {
|
|
|
49594
49847
|
* @returns Session OK
|
|
49595
49848
|
* @throws ApiError
|
|
49596
49849
|
*/
|
|
49597
|
-
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, }: {
|
|
49850
|
+
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, }: {
|
|
49598
49851
|
/**
|
|
49599
49852
|
* Gets or sets the queryable session ids.
|
|
49600
49853
|
*/
|
|
@@ -49719,6 +49972,14 @@ declare class SessionsService {
|
|
|
49719
49972
|
* Gets or sets SearchGeoCenter.
|
|
49720
49973
|
*/
|
|
49721
49974
|
searchGeoCenter?: string;
|
|
49975
|
+
/**
|
|
49976
|
+
* Gets or sets AdditionalSupport.
|
|
49977
|
+
*/
|
|
49978
|
+
additionalSupport?: Array<string>;
|
|
49979
|
+
/**
|
|
49980
|
+
* Gets or sets Activity id.
|
|
49981
|
+
*/
|
|
49982
|
+
activityId?: number;
|
|
49722
49983
|
/**
|
|
49723
49984
|
* Gets or sets the queryable session template field permissions Id.
|
|
49724
49985
|
*/
|
|
@@ -49777,7 +50038,7 @@ declare class SessionsService {
|
|
|
49777
50038
|
* @returns Session OK
|
|
49778
50039
|
* @throws ApiError
|
|
49779
50040
|
*/
|
|
49780
|
-
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, }: {
|
|
50041
|
+
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, }: {
|
|
49781
50042
|
/**
|
|
49782
50043
|
* Gets or sets the queryable session ids.
|
|
49783
50044
|
*/
|
|
@@ -49902,6 +50163,14 @@ declare class SessionsService {
|
|
|
49902
50163
|
* Gets or sets SearchGeoCenter.
|
|
49903
50164
|
*/
|
|
49904
50165
|
searchGeoCenter?: string;
|
|
50166
|
+
/**
|
|
50167
|
+
* Gets or sets AdditionalSupport.
|
|
50168
|
+
*/
|
|
50169
|
+
additionalSupport?: Array<string>;
|
|
50170
|
+
/**
|
|
50171
|
+
* Gets or sets Activity id.
|
|
50172
|
+
*/
|
|
50173
|
+
activityId?: number;
|
|
49905
50174
|
/**
|
|
49906
50175
|
* Gets or sets the queryable session template field permissions Id.
|
|
49907
50176
|
*/
|
|
@@ -52205,6 +52474,27 @@ declare class SlotSchedulesService {
|
|
|
52205
52474
|
}): CancelablePromise<Array<SlotSchedule>>;
|
|
52206
52475
|
}
|
|
52207
52476
|
|
|
52477
|
+
/**
|
|
52478
|
+
* Response from issuing a storefront staff preview token.
|
|
52479
|
+
*/
|
|
52480
|
+
type StorefrontStaffPreviewTokenResponse = {
|
|
52481
|
+
/**
|
|
52482
|
+
* Gets or sets the JWT to pass to the storefront (query `sf_staff_preview`).
|
|
52483
|
+
*/
|
|
52484
|
+
token?: string | null;
|
|
52485
|
+
};
|
|
52486
|
+
|
|
52487
|
+
declare class StorefrontStaffPreviewService {
|
|
52488
|
+
readonly httpRequest: BaseHttpRequest;
|
|
52489
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
52490
|
+
/**
|
|
52491
|
+
* Creates a short-lived preview token for the tenant in the caller's Identity Server claims.
|
|
52492
|
+
* @returns StorefrontStaffPreviewTokenResponse OK
|
|
52493
|
+
* @throws ApiError
|
|
52494
|
+
*/
|
|
52495
|
+
createToken(): CancelablePromise<StorefrontStaffPreviewTokenResponse>;
|
|
52496
|
+
}
|
|
52497
|
+
|
|
52208
52498
|
/**
|
|
52209
52499
|
* The Stripe account linked entity type.
|
|
52210
52500
|
*/
|
|
@@ -58180,6 +58470,11 @@ type TenantStorefrontSettingsPatch = {
|
|
|
58180
58470
|
* When false (default), anonymous browsing is allowed.
|
|
58181
58471
|
*/
|
|
58182
58472
|
storefrontRequiresLoginToBrowse?: boolean;
|
|
58473
|
+
/**
|
|
58474
|
+
* Gets or sets whether WorkOS customer sign-in is shown for this tenant (storefront rollout).
|
|
58475
|
+
* When null, PATCH leaves the existing database value unchanged.
|
|
58476
|
+
*/
|
|
58477
|
+
customerPortalWorkOsLoginEnabled?: boolean | null;
|
|
58183
58478
|
};
|
|
58184
58479
|
|
|
58185
58480
|
declare class TenantsService {
|
|
@@ -58798,6 +59093,10 @@ type TenantWebsiteSettingPatch = {
|
|
|
58798
59093
|
* Gets or sets the website background image.
|
|
58799
59094
|
*/
|
|
58800
59095
|
backgroundImage?: string | null;
|
|
59096
|
+
/**
|
|
59097
|
+
* Gets or sets the hero image for the storefront browse login gate.
|
|
59098
|
+
*/
|
|
59099
|
+
browseLoginHeroImage?: string | null;
|
|
58801
59100
|
/**
|
|
58802
59101
|
* Gets or sets the website analytics property id.
|
|
58803
59102
|
*/
|
|
@@ -61485,6 +61784,24 @@ declare class UserProvidersService {
|
|
|
61485
61784
|
}): CancelablePromise<Array<UserProvider>>;
|
|
61486
61785
|
}
|
|
61487
61786
|
|
|
61787
|
+
/**
|
|
61788
|
+
* End user accessible dto.
|
|
61789
|
+
*/
|
|
61790
|
+
type EndUserAccessibleTenantDto = {
|
|
61791
|
+
/**
|
|
61792
|
+
* Gets or sets the tenant id.
|
|
61793
|
+
*/
|
|
61794
|
+
id?: string;
|
|
61795
|
+
/**
|
|
61796
|
+
* Gets or sets the tenant name.
|
|
61797
|
+
*/
|
|
61798
|
+
name?: string | null;
|
|
61799
|
+
/**
|
|
61800
|
+
* Gets or sets the tenant subdomain.
|
|
61801
|
+
*/
|
|
61802
|
+
subDomain?: string | null;
|
|
61803
|
+
};
|
|
61804
|
+
|
|
61488
61805
|
type UserPage = {
|
|
61489
61806
|
pagination: Pagination;
|
|
61490
61807
|
readonly items: Array<User>;
|
|
@@ -61531,6 +61848,12 @@ declare class UsersService {
|
|
|
61531
61848
|
* @throws ApiError
|
|
61532
61849
|
*/
|
|
61533
61850
|
getUser(): CancelablePromise<User>;
|
|
61851
|
+
/**
|
|
61852
|
+
* Returns tenants accessible to the authenticated user.
|
|
61853
|
+
* @returns EndUserAccessibleTenantDto OK
|
|
61854
|
+
* @throws ApiError
|
|
61855
|
+
*/
|
|
61856
|
+
getAccessibleTenants(): CancelablePromise<Array<EndUserAccessibleTenantDto>>;
|
|
61534
61857
|
/**
|
|
61535
61858
|
* Gets the authenticated user permissions.
|
|
61536
61859
|
* @returns UserPermission OK
|
|
@@ -68582,6 +68905,7 @@ declare class ApiClient {
|
|
|
68582
68905
|
readonly publicScheduledSessions: PublicScheduledSessionsService;
|
|
68583
68906
|
readonly publicSessions: PublicSessionsService;
|
|
68584
68907
|
readonly publicSlots: PublicSlotsService;
|
|
68908
|
+
readonly publicStorefrontStaffPreview: PublicStorefrontStaffPreviewService;
|
|
68585
68909
|
readonly publicStripeWebhook: PublicStripeWebhookService;
|
|
68586
68910
|
readonly publicSurveyCompletionLogs: PublicSurveyCompletionLogsService;
|
|
68587
68911
|
readonly publicSurveyQuestions: PublicSurveyQuestionsService;
|
|
@@ -68601,6 +68925,7 @@ declare class ApiClient {
|
|
|
68601
68925
|
readonly slots: SlotsService;
|
|
68602
68926
|
readonly slotScheduleOffers: SlotScheduleOffersService;
|
|
68603
68927
|
readonly slotSchedules: SlotSchedulesService;
|
|
68928
|
+
readonly storefrontStaffPreview: StorefrontStaffPreviewService;
|
|
68604
68929
|
readonly stripeAccount: StripeAccountService;
|
|
68605
68930
|
readonly surfaces: SurfacesService;
|
|
68606
68931
|
readonly surveyAnswers: SurveyAnswersService;
|
|
@@ -68763,4 +69088,4 @@ type ValidationResultModel = {
|
|
|
68763
69088
|
readonly errors?: Array<ValidationError> | null;
|
|
68764
69089
|
};
|
|
68765
69090
|
|
|
68766
|
-
export { Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerAuthService, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPortalAccountPatch, CustomerPortalService, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, SortIndex, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantStorefrontSettingsPatch, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };
|
|
69091
|
+
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 };
|