reach-api-sdk 1.0.214 → 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 +354 -37
- package/dist/reach-sdk.js +195 -3
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +624 -13
- package/src/index.ts +6 -0
- package/src/models/CustomerPortalAccountPatch.ts +0 -4
- 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 +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
|
*/
|
|
@@ -28018,7 +28058,7 @@ declare class OrderItemReportService {
|
|
|
28018
28058
|
* @returns any OK
|
|
28019
28059
|
* @throws ApiError
|
|
28020
28060
|
*/
|
|
28021
|
-
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, }: {
|
|
28022
28062
|
/**
|
|
28023
28063
|
* Gets or sets the Venue Id.
|
|
28024
28064
|
*/
|
|
@@ -28040,9 +28080,21 @@ declare class OrderItemReportService {
|
|
|
28040
28080
|
*/
|
|
28041
28081
|
startDateLte?: string;
|
|
28042
28082
|
/**
|
|
28043
|
-
* 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.
|
|
28044
28092
|
*/
|
|
28045
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;
|
|
28046
28098
|
/**
|
|
28047
28099
|
* Gets or sets the page number for paged queries.
|
|
28048
28100
|
*/
|
|
@@ -28099,7 +28151,7 @@ declare class OrderItemReportService {
|
|
|
28099
28151
|
* @returns OrderItemReportSummary OK
|
|
28100
28152
|
* @throws ApiError
|
|
28101
28153
|
*/
|
|
28102
|
-
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, }: {
|
|
28103
28155
|
/**
|
|
28104
28156
|
* Gets or sets the Venue Id.
|
|
28105
28157
|
*/
|
|
@@ -28121,9 +28173,21 @@ declare class OrderItemReportService {
|
|
|
28121
28173
|
*/
|
|
28122
28174
|
startDateLte?: string;
|
|
28123
28175
|
/**
|
|
28124
|
-
* 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.
|
|
28125
28185
|
*/
|
|
28126
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;
|
|
28127
28191
|
/**
|
|
28128
28192
|
* Gets or sets the page number for paged queries.
|
|
28129
28193
|
*/
|
|
@@ -28229,7 +28293,7 @@ declare class OrderItemReportService {
|
|
|
28229
28293
|
* @returns OrderItemReportPage OK
|
|
28230
28294
|
* @throws ApiError
|
|
28231
28295
|
*/
|
|
28232
|
-
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, }: {
|
|
28233
28297
|
/**
|
|
28234
28298
|
* Gets or sets the Venue Id.
|
|
28235
28299
|
*/
|
|
@@ -28251,9 +28315,21 @@ declare class OrderItemReportService {
|
|
|
28251
28315
|
*/
|
|
28252
28316
|
startDateLte?: string;
|
|
28253
28317
|
/**
|
|
28254
|
-
* 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.
|
|
28255
28327
|
*/
|
|
28256
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;
|
|
28257
28333
|
/**
|
|
28258
28334
|
* Gets or sets the page number for paged queries.
|
|
28259
28335
|
*/
|
|
@@ -28337,7 +28413,7 @@ declare class OrderItemReportService {
|
|
|
28337
28413
|
* @returns boolean OK
|
|
28338
28414
|
* @throws ApiError
|
|
28339
28415
|
*/
|
|
28340
|
-
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, }: {
|
|
28341
28417
|
/**
|
|
28342
28418
|
* Gets or sets the Venue Id.
|
|
28343
28419
|
*/
|
|
@@ -28359,9 +28435,21 @@ declare class OrderItemReportService {
|
|
|
28359
28435
|
*/
|
|
28360
28436
|
startDateLte?: string;
|
|
28361
28437
|
/**
|
|
28362
|
-
* 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.
|
|
28363
28447
|
*/
|
|
28364
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;
|
|
28365
28453
|
/**
|
|
28366
28454
|
* Gets or sets the page number for paged queries.
|
|
28367
28455
|
*/
|
|
@@ -28412,7 +28500,7 @@ declare class OrderItemReportService {
|
|
|
28412
28500
|
* @returns number OK
|
|
28413
28501
|
* @throws ApiError
|
|
28414
28502
|
*/
|
|
28415
|
-
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, }: {
|
|
28416
28504
|
/**
|
|
28417
28505
|
* Gets or sets the Venue Id.
|
|
28418
28506
|
*/
|
|
@@ -28434,9 +28522,21 @@ declare class OrderItemReportService {
|
|
|
28434
28522
|
*/
|
|
28435
28523
|
startDateLte?: string;
|
|
28436
28524
|
/**
|
|
28437
|
-
* 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.
|
|
28438
28534
|
*/
|
|
28439
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;
|
|
28440
28540
|
/**
|
|
28441
28541
|
* Gets or sets the page number for paged queries.
|
|
28442
28542
|
*/
|
|
@@ -28487,7 +28587,7 @@ declare class OrderItemReportService {
|
|
|
28487
28587
|
* @returns OrderItemReport OK
|
|
28488
28588
|
* @throws ApiError
|
|
28489
28589
|
*/
|
|
28490
|
-
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, }: {
|
|
28491
28591
|
/**
|
|
28492
28592
|
* Gets or sets the Venue Id.
|
|
28493
28593
|
*/
|
|
@@ -28509,9 +28609,21 @@ declare class OrderItemReportService {
|
|
|
28509
28609
|
*/
|
|
28510
28610
|
startDateLte?: string;
|
|
28511
28611
|
/**
|
|
28512
|
-
* 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.
|
|
28513
28621
|
*/
|
|
28514
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;
|
|
28515
28627
|
/**
|
|
28516
28628
|
* Gets or sets the page number for paged queries.
|
|
28517
28629
|
*/
|
|
@@ -28562,7 +28674,7 @@ declare class OrderItemReportService {
|
|
|
28562
28674
|
* @returns OrderItemReport OK
|
|
28563
28675
|
* @throws ApiError
|
|
28564
28676
|
*/
|
|
28565
|
-
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, }: {
|
|
28566
28678
|
/**
|
|
28567
28679
|
* Gets or sets the Venue Id.
|
|
28568
28680
|
*/
|
|
@@ -28584,9 +28696,21 @@ declare class OrderItemReportService {
|
|
|
28584
28696
|
*/
|
|
28585
28697
|
startDateLte?: string;
|
|
28586
28698
|
/**
|
|
28587
|
-
* 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.
|
|
28588
28708
|
*/
|
|
28589
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;
|
|
28590
28714
|
/**
|
|
28591
28715
|
* Gets or sets the page number for paged queries.
|
|
28592
28716
|
*/
|
|
@@ -35031,7 +35155,7 @@ declare class PublicCoursesService {
|
|
|
35031
35155
|
* @returns CoursePage OK
|
|
35032
35156
|
* @throws ApiError
|
|
35033
35157
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
35035
35159
|
xTenantSubdomain?: string;
|
|
35036
35160
|
/**
|
|
35037
35161
|
* Gets or sets the queryable Course Id.
|
|
@@ -35157,6 +35281,14 @@ declare class PublicCoursesService {
|
|
|
35157
35281
|
* Gets or sets Distance.
|
|
35158
35282
|
*/
|
|
35159
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;
|
|
35160
35292
|
/**
|
|
35161
35293
|
* Gets or sets the queryable course template field permissions Id.
|
|
35162
35294
|
*/
|
|
@@ -35290,7 +35422,7 @@ declare class PublicCoursesService {
|
|
|
35290
35422
|
* @returns boolean OK
|
|
35291
35423
|
* @throws ApiError
|
|
35292
35424
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
35294
35426
|
/**
|
|
35295
35427
|
* The tenants subdomain.
|
|
35296
35428
|
*/
|
|
@@ -35419,6 +35551,14 @@ declare class PublicCoursesService {
|
|
|
35419
35551
|
* Gets or sets Distance.
|
|
35420
35552
|
*/
|
|
35421
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;
|
|
35422
35562
|
/**
|
|
35423
35563
|
* Gets or sets the queryable course template field permissions Id.
|
|
35424
35564
|
*/
|
|
@@ -35613,6 +35753,18 @@ declare class PublicCustomersService {
|
|
|
35613
35753
|
*/
|
|
35614
35754
|
xTenantSubdomain?: string;
|
|
35615
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>;
|
|
35616
35768
|
/**
|
|
35617
35769
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
35618
35770
|
* @returns Customer OK
|
|
@@ -36683,7 +36835,11 @@ declare class PublicGenericActivityService {
|
|
|
36683
36835
|
* @returns ActivityFacet OK
|
|
36684
36836
|
* @throws ApiError
|
|
36685
36837
|
*/
|
|
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, }: {
|
|
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;
|
|
36687
36843
|
/**
|
|
36688
36844
|
* Gets or sets the wildcard for use in a query search.
|
|
36689
36845
|
*/
|
|
@@ -37727,7 +37883,7 @@ declare class PublicNetworksService {
|
|
|
37727
37883
|
* @returns SessionPage OK
|
|
37728
37884
|
* @throws ApiError
|
|
37729
37885
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
37731
37887
|
/**
|
|
37732
37888
|
* Gets or sets the queryable session ids.
|
|
37733
37889
|
*/
|
|
@@ -37852,6 +38008,14 @@ declare class PublicNetworksService {
|
|
|
37852
38008
|
* Gets or sets SearchGeoCenter.
|
|
37853
38009
|
*/
|
|
37854
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;
|
|
37855
38019
|
/**
|
|
37856
38020
|
* Gets or sets the queryable session template field permissions Id.
|
|
37857
38021
|
*/
|
|
@@ -40609,7 +40773,7 @@ declare class PublicSessionsService {
|
|
|
40609
40773
|
* @returns SessionPage OK
|
|
40610
40774
|
* @throws ApiError
|
|
40611
40775
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
40613
40777
|
xTenantSubdomain?: string;
|
|
40614
40778
|
/**
|
|
40615
40779
|
* Gets or sets the queryable session ids.
|
|
@@ -40735,6 +40899,14 @@ declare class PublicSessionsService {
|
|
|
40735
40899
|
* Gets or sets SearchGeoCenter.
|
|
40736
40900
|
*/
|
|
40737
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;
|
|
40738
40910
|
/**
|
|
40739
40911
|
* Gets or sets the queryable session template field permissions Id.
|
|
40740
40912
|
*/
|
|
@@ -41058,7 +41230,7 @@ declare class PublicSessionsService {
|
|
|
41058
41230
|
* @returns boolean OK
|
|
41059
41231
|
* @throws ApiError
|
|
41060
41232
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
41062
41234
|
/**
|
|
41063
41235
|
* The tenants subdomain.
|
|
41064
41236
|
*/
|
|
@@ -41187,6 +41359,14 @@ declare class PublicSessionsService {
|
|
|
41187
41359
|
* Gets or sets SearchGeoCenter.
|
|
41188
41360
|
*/
|
|
41189
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;
|
|
41190
41370
|
/**
|
|
41191
41371
|
* Gets or sets the queryable session template field permissions Id.
|
|
41192
41372
|
*/
|
|
@@ -41760,6 +41940,42 @@ declare class PublicSlotsService {
|
|
|
41760
41940
|
}): CancelablePromise<boolean>;
|
|
41761
41941
|
}
|
|
41762
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
|
+
|
|
41763
41979
|
declare class PublicStripeWebhookService {
|
|
41764
41980
|
readonly httpRequest: BaseHttpRequest;
|
|
41765
41981
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -43235,6 +43451,11 @@ type TenantSetting = {
|
|
|
43235
43451
|
* When false (default), anonymous browsing is allowed.
|
|
43236
43452
|
*/
|
|
43237
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;
|
|
43238
43459
|
/**
|
|
43239
43460
|
* Gets the next order number in the sequence.
|
|
43240
43461
|
*/
|
|
@@ -49012,7 +49233,7 @@ declare class SessionsService {
|
|
|
49012
49233
|
* @returns SessionPage OK
|
|
49013
49234
|
* @throws ApiError
|
|
49014
49235
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
49016
49237
|
/**
|
|
49017
49238
|
* Gets or sets the queryable session ids.
|
|
49018
49239
|
*/
|
|
@@ -49137,6 +49358,14 @@ declare class SessionsService {
|
|
|
49137
49358
|
* Gets or sets SearchGeoCenter.
|
|
49138
49359
|
*/
|
|
49139
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;
|
|
49140
49369
|
/**
|
|
49141
49370
|
* Gets or sets the queryable session template field permissions Id.
|
|
49142
49371
|
*/
|
|
@@ -49228,7 +49457,7 @@ declare class SessionsService {
|
|
|
49228
49457
|
* @returns boolean OK
|
|
49229
49458
|
* @throws ApiError
|
|
49230
49459
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
49232
49461
|
/**
|
|
49233
49462
|
* Gets or sets the queryable session ids.
|
|
49234
49463
|
*/
|
|
@@ -49353,6 +49582,14 @@ declare class SessionsService {
|
|
|
49353
49582
|
* Gets or sets SearchGeoCenter.
|
|
49354
49583
|
*/
|
|
49355
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;
|
|
49356
49593
|
/**
|
|
49357
49594
|
* Gets or sets the queryable session template field permissions Id.
|
|
49358
49595
|
*/
|
|
@@ -49411,7 +49648,7 @@ declare class SessionsService {
|
|
|
49411
49648
|
* @returns number OK
|
|
49412
49649
|
* @throws ApiError
|
|
49413
49650
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
49415
49652
|
/**
|
|
49416
49653
|
* Gets or sets the queryable session ids.
|
|
49417
49654
|
*/
|
|
@@ -49536,6 +49773,14 @@ declare class SessionsService {
|
|
|
49536
49773
|
* Gets or sets SearchGeoCenter.
|
|
49537
49774
|
*/
|
|
49538
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;
|
|
49539
49784
|
/**
|
|
49540
49785
|
* Gets or sets the queryable session template field permissions Id.
|
|
49541
49786
|
*/
|
|
@@ -49594,7 +49839,7 @@ declare class SessionsService {
|
|
|
49594
49839
|
* @returns Session OK
|
|
49595
49840
|
* @throws ApiError
|
|
49596
49841
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
49598
49843
|
/**
|
|
49599
49844
|
* Gets or sets the queryable session ids.
|
|
49600
49845
|
*/
|
|
@@ -49719,6 +49964,14 @@ declare class SessionsService {
|
|
|
49719
49964
|
* Gets or sets SearchGeoCenter.
|
|
49720
49965
|
*/
|
|
49721
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;
|
|
49722
49975
|
/**
|
|
49723
49976
|
* Gets or sets the queryable session template field permissions Id.
|
|
49724
49977
|
*/
|
|
@@ -49777,7 +50030,7 @@ declare class SessionsService {
|
|
|
49777
50030
|
* @returns Session OK
|
|
49778
50031
|
* @throws ApiError
|
|
49779
50032
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
49781
50034
|
/**
|
|
49782
50035
|
* Gets or sets the queryable session ids.
|
|
49783
50036
|
*/
|
|
@@ -49902,6 +50155,14 @@ declare class SessionsService {
|
|
|
49902
50155
|
* Gets or sets SearchGeoCenter.
|
|
49903
50156
|
*/
|
|
49904
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;
|
|
49905
50166
|
/**
|
|
49906
50167
|
* Gets or sets the queryable session template field permissions Id.
|
|
49907
50168
|
*/
|
|
@@ -52205,6 +52466,27 @@ declare class SlotSchedulesService {
|
|
|
52205
52466
|
}): CancelablePromise<Array<SlotSchedule>>;
|
|
52206
52467
|
}
|
|
52207
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
|
+
|
|
52208
52490
|
/**
|
|
52209
52491
|
* The Stripe account linked entity type.
|
|
52210
52492
|
*/
|
|
@@ -58180,6 +58462,11 @@ type TenantStorefrontSettingsPatch = {
|
|
|
58180
58462
|
* When false (default), anonymous browsing is allowed.
|
|
58181
58463
|
*/
|
|
58182
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;
|
|
58183
58470
|
};
|
|
58184
58471
|
|
|
58185
58472
|
declare class TenantsService {
|
|
@@ -58798,6 +59085,10 @@ type TenantWebsiteSettingPatch = {
|
|
|
58798
59085
|
* Gets or sets the website background image.
|
|
58799
59086
|
*/
|
|
58800
59087
|
backgroundImage?: string | null;
|
|
59088
|
+
/**
|
|
59089
|
+
* Gets or sets the hero image for the storefront browse login gate.
|
|
59090
|
+
*/
|
|
59091
|
+
browseLoginHeroImage?: string | null;
|
|
58801
59092
|
/**
|
|
58802
59093
|
* Gets or sets the website analytics property id.
|
|
58803
59094
|
*/
|
|
@@ -61485,6 +61776,24 @@ declare class UserProvidersService {
|
|
|
61485
61776
|
}): CancelablePromise<Array<UserProvider>>;
|
|
61486
61777
|
}
|
|
61487
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
|
+
|
|
61488
61797
|
type UserPage = {
|
|
61489
61798
|
pagination: Pagination;
|
|
61490
61799
|
readonly items: Array<User>;
|
|
@@ -61531,6 +61840,12 @@ declare class UsersService {
|
|
|
61531
61840
|
* @throws ApiError
|
|
61532
61841
|
*/
|
|
61533
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>>;
|
|
61534
61849
|
/**
|
|
61535
61850
|
* Gets the authenticated user permissions.
|
|
61536
61851
|
* @returns UserPermission OK
|
|
@@ -68582,6 +68897,7 @@ declare class ApiClient {
|
|
|
68582
68897
|
readonly publicScheduledSessions: PublicScheduledSessionsService;
|
|
68583
68898
|
readonly publicSessions: PublicSessionsService;
|
|
68584
68899
|
readonly publicSlots: PublicSlotsService;
|
|
68900
|
+
readonly publicStorefrontStaffPreview: PublicStorefrontStaffPreviewService;
|
|
68585
68901
|
readonly publicStripeWebhook: PublicStripeWebhookService;
|
|
68586
68902
|
readonly publicSurveyCompletionLogs: PublicSurveyCompletionLogsService;
|
|
68587
68903
|
readonly publicSurveyQuestions: PublicSurveyQuestionsService;
|
|
@@ -68601,6 +68917,7 @@ declare class ApiClient {
|
|
|
68601
68917
|
readonly slots: SlotsService;
|
|
68602
68918
|
readonly slotScheduleOffers: SlotScheduleOffersService;
|
|
68603
68919
|
readonly slotSchedules: SlotSchedulesService;
|
|
68920
|
+
readonly storefrontStaffPreview: StorefrontStaffPreviewService;
|
|
68604
68921
|
readonly stripeAccount: StripeAccountService;
|
|
68605
68922
|
readonly surfaces: SurfacesService;
|
|
68606
68923
|
readonly surveyAnswers: SurveyAnswersService;
|
|
@@ -68763,4 +69080,4 @@ type ValidationResultModel = {
|
|
|
68763
69080
|
readonly errors?: Array<ValidationError> | null;
|
|
68764
69081
|
};
|
|
68765
69082
|
|
|
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 };
|
|
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 };
|