reach-api-sdk 1.0.195 → 1.0.197
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 +337 -116
- package/dist/reach-sdk.js +174 -72
- package/package.json +1 -1
- package/src/definition/swagger.yaml +410 -72
- package/src/index.ts +1 -0
- package/src/models/Course.ts +4 -0
- package/src/models/CoursePatch.ts +4 -0
- package/src/models/CreateTemplateDetail.ts +4 -0
- package/src/models/CreateTemplateFieldPermission.ts +1 -0
- package/src/models/GenericActivity.ts +4 -0
- package/src/models/Programme.ts +2 -0
- package/src/models/ProgrammePatch.ts +3 -0
- package/src/models/Session.ts +4 -0
- package/src/models/SessionPatch.ts +4 -0
- package/src/models/TemplateDetail.ts +4 -0
- package/src/models/TemplateDetailPatch.ts +4 -0
- package/src/models/TemplateFieldPermission.ts +1 -0
- package/src/models/TemplateFieldPermissionPatch.ts +1 -0
- package/src/models/WaitlistConversionStatsResponseDto.ts +10 -0
- package/src/services/CoursesService.ts +30 -0
- package/src/services/DiscountCodeUsesService.ts +31 -0
- package/src/services/GenericActivityService.ts +84 -48
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicGenericActivityService.ts +56 -32
- package/src/services/PublicNetworksService.ts +14 -8
- package/src/services/PublicSessionsService.ts +28 -16
- package/src/services/PublicWaitlistOpportunityService.ts +12 -0
- package/src/services/SessionsService.ts +70 -40
- package/src/services/WaitlistOpportunityReportService.ts +54 -0
- package/src/services/WaitlistOpportunityService.ts +30 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -3057,6 +3057,7 @@ type Programme = {
|
|
|
3057
3057
|
* Gets or sets the programmes sort order with 0 as base.
|
|
3058
3058
|
*/
|
|
3059
3059
|
sortOrder?: number | null;
|
|
3060
|
+
upcomingLayout?: UpcomingLayout;
|
|
3060
3061
|
tenant?: Tenant;
|
|
3061
3062
|
/**
|
|
3062
3063
|
* Gets or sets the programmes referenced sessions.
|
|
@@ -4031,6 +4032,10 @@ type Session = {
|
|
|
4031
4032
|
* Gets or sets a value indicating whether there is an age restriction.
|
|
4032
4033
|
*/
|
|
4033
4034
|
noAgeRestriction?: boolean;
|
|
4035
|
+
/**
|
|
4036
|
+
* Gets or sets a value indicating whether activity is private or no.
|
|
4037
|
+
*/
|
|
4038
|
+
private?: boolean;
|
|
4034
4039
|
/**
|
|
4035
4040
|
* Gets or sets additional support options.
|
|
4036
4041
|
*/
|
|
@@ -5224,6 +5229,10 @@ type Course = {
|
|
|
5224
5229
|
* Gets or sets a value indicating whether there is an age restriction.
|
|
5225
5230
|
*/
|
|
5226
5231
|
noAgeRestriction?: boolean;
|
|
5232
|
+
/**
|
|
5233
|
+
* Gets or sets a value indicating whether activity is private or no.
|
|
5234
|
+
*/
|
|
5235
|
+
private?: boolean;
|
|
5227
5236
|
/**
|
|
5228
5237
|
* Gets or sets additional support options.
|
|
5229
5238
|
*/
|
|
@@ -8260,6 +8269,10 @@ type CoursePatch = {
|
|
|
8260
8269
|
* Gets or sets a value indicating whether there is an age restriction.
|
|
8261
8270
|
*/
|
|
8262
8271
|
noAgeRestriction?: boolean | null;
|
|
8272
|
+
/**
|
|
8273
|
+
* Gets or sets a value indicating whether course is private or no.
|
|
8274
|
+
*/
|
|
8275
|
+
private?: boolean | null;
|
|
8263
8276
|
/**
|
|
8264
8277
|
* Gets or sets a value indicating whether the course is online and can take bookings.
|
|
8265
8278
|
*/
|
|
@@ -8567,7 +8580,7 @@ declare class CoursesService {
|
|
|
8567
8580
|
* @returns CoursePage OK
|
|
8568
8581
|
* @throws ApiError
|
|
8569
8582
|
*/
|
|
8570
|
-
getPage({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8583
|
+
getPage({ id, ids, venueId, programmeId, 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, }: {
|
|
8571
8584
|
/**
|
|
8572
8585
|
* Gets or sets the queryable Course Id.
|
|
8573
8586
|
*/
|
|
@@ -8656,6 +8669,10 @@ declare class CoursesService {
|
|
|
8656
8669
|
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
8657
8670
|
*/
|
|
8658
8671
|
featured?: boolean;
|
|
8672
|
+
/**
|
|
8673
|
+
* Gets or sets a value indicating whether the session is private or no.
|
|
8674
|
+
*/
|
|
8675
|
+
_private?: boolean;
|
|
8659
8676
|
/**
|
|
8660
8677
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
8661
8678
|
*/
|
|
@@ -8775,7 +8792,7 @@ declare class CoursesService {
|
|
|
8775
8792
|
* @returns boolean OK
|
|
8776
8793
|
* @throws ApiError
|
|
8777
8794
|
*/
|
|
8778
|
-
exists({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8795
|
+
exists({ id, ids, venueId, programmeId, 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, }: {
|
|
8779
8796
|
/**
|
|
8780
8797
|
* Gets or sets the queryable Course Id.
|
|
8781
8798
|
*/
|
|
@@ -8864,6 +8881,10 @@ declare class CoursesService {
|
|
|
8864
8881
|
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
8865
8882
|
*/
|
|
8866
8883
|
featured?: boolean;
|
|
8884
|
+
/**
|
|
8885
|
+
* Gets or sets a value indicating whether the session is private or no.
|
|
8886
|
+
*/
|
|
8887
|
+
_private?: boolean;
|
|
8867
8888
|
/**
|
|
8868
8889
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
8869
8890
|
*/
|
|
@@ -8950,7 +8971,7 @@ declare class CoursesService {
|
|
|
8950
8971
|
* @returns number OK
|
|
8951
8972
|
* @throws ApiError
|
|
8952
8973
|
*/
|
|
8953
|
-
count({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8974
|
+
count({ id, ids, venueId, programmeId, 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, }: {
|
|
8954
8975
|
/**
|
|
8955
8976
|
* Gets or sets the queryable Course Id.
|
|
8956
8977
|
*/
|
|
@@ -9039,6 +9060,10 @@ declare class CoursesService {
|
|
|
9039
9060
|
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
9040
9061
|
*/
|
|
9041
9062
|
featured?: boolean;
|
|
9063
|
+
/**
|
|
9064
|
+
* Gets or sets a value indicating whether the session is private or no.
|
|
9065
|
+
*/
|
|
9066
|
+
_private?: boolean;
|
|
9042
9067
|
/**
|
|
9043
9068
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
9044
9069
|
*/
|
|
@@ -9125,7 +9150,7 @@ declare class CoursesService {
|
|
|
9125
9150
|
* @returns Course OK
|
|
9126
9151
|
* @throws ApiError
|
|
9127
9152
|
*/
|
|
9128
|
-
getListWithoutReferences({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9153
|
+
getListWithoutReferences({ id, ids, venueId, programmeId, 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, }: {
|
|
9129
9154
|
/**
|
|
9130
9155
|
* Gets or sets the queryable Course Id.
|
|
9131
9156
|
*/
|
|
@@ -9214,6 +9239,10 @@ declare class CoursesService {
|
|
|
9214
9239
|
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
9215
9240
|
*/
|
|
9216
9241
|
featured?: boolean;
|
|
9242
|
+
/**
|
|
9243
|
+
* Gets or sets a value indicating whether the session is private or no.
|
|
9244
|
+
*/
|
|
9245
|
+
_private?: boolean;
|
|
9217
9246
|
/**
|
|
9218
9247
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
9219
9248
|
*/
|
|
@@ -9300,7 +9329,7 @@ declare class CoursesService {
|
|
|
9300
9329
|
* @returns Course OK
|
|
9301
9330
|
* @throws ApiError
|
|
9302
9331
|
*/
|
|
9303
|
-
getListIdName({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9332
|
+
getListIdName({ id, ids, venueId, programmeId, 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, }: {
|
|
9304
9333
|
/**
|
|
9305
9334
|
* Gets or sets the queryable Course Id.
|
|
9306
9335
|
*/
|
|
@@ -9389,6 +9418,10 @@ declare class CoursesService {
|
|
|
9389
9418
|
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
9390
9419
|
*/
|
|
9391
9420
|
featured?: boolean;
|
|
9421
|
+
/**
|
|
9422
|
+
* Gets or sets a value indicating whether the session is private or no.
|
|
9423
|
+
*/
|
|
9424
|
+
_private?: boolean;
|
|
9392
9425
|
/**
|
|
9393
9426
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
9394
9427
|
*/
|
|
@@ -13001,7 +13034,7 @@ declare class DiscountCodeUsesService {
|
|
|
13001
13034
|
* @returns DiscountCodeUsePage OK
|
|
13002
13035
|
* @throws ApiError
|
|
13003
13036
|
*/
|
|
13004
|
-
getPage({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13037
|
+
getPage({ dealId, orderId, customerId, orderStages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13005
13038
|
/**
|
|
13006
13039
|
* Gets or sets the deal id.
|
|
13007
13040
|
*/
|
|
@@ -13014,6 +13047,10 @@ declare class DiscountCodeUsesService {
|
|
|
13014
13047
|
* Gets or sets the customer id.
|
|
13015
13048
|
*/
|
|
13016
13049
|
customerId?: string;
|
|
13050
|
+
/**
|
|
13051
|
+
* Gets or sets the queryable order stages.
|
|
13052
|
+
*/
|
|
13053
|
+
orderStages?: Array<OrderStage>;
|
|
13017
13054
|
/**
|
|
13018
13055
|
* Gets or sets the page number for paged queries.
|
|
13019
13056
|
*/
|
|
@@ -13097,7 +13134,7 @@ declare class DiscountCodeUsesService {
|
|
|
13097
13134
|
* @returns boolean OK
|
|
13098
13135
|
* @throws ApiError
|
|
13099
13136
|
*/
|
|
13100
|
-
exists({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13137
|
+
exists({ dealId, orderId, customerId, orderStages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13101
13138
|
/**
|
|
13102
13139
|
* Gets or sets the deal id.
|
|
13103
13140
|
*/
|
|
@@ -13110,6 +13147,10 @@ declare class DiscountCodeUsesService {
|
|
|
13110
13147
|
* Gets or sets the customer id.
|
|
13111
13148
|
*/
|
|
13112
13149
|
customerId?: string;
|
|
13150
|
+
/**
|
|
13151
|
+
* Gets or sets the queryable order stages.
|
|
13152
|
+
*/
|
|
13153
|
+
orderStages?: Array<OrderStage>;
|
|
13113
13154
|
/**
|
|
13114
13155
|
* Gets or sets the page number for paged queries.
|
|
13115
13156
|
*/
|
|
@@ -13160,7 +13201,7 @@ declare class DiscountCodeUsesService {
|
|
|
13160
13201
|
* @returns number OK
|
|
13161
13202
|
* @throws ApiError
|
|
13162
13203
|
*/
|
|
13163
|
-
count({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13204
|
+
count({ dealId, orderId, customerId, orderStages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13164
13205
|
/**
|
|
13165
13206
|
* Gets or sets the deal id.
|
|
13166
13207
|
*/
|
|
@@ -13173,6 +13214,10 @@ declare class DiscountCodeUsesService {
|
|
|
13173
13214
|
* Gets or sets the customer id.
|
|
13174
13215
|
*/
|
|
13175
13216
|
customerId?: string;
|
|
13217
|
+
/**
|
|
13218
|
+
* Gets or sets the queryable order stages.
|
|
13219
|
+
*/
|
|
13220
|
+
orderStages?: Array<OrderStage>;
|
|
13176
13221
|
/**
|
|
13177
13222
|
* Gets or sets the page number for paged queries.
|
|
13178
13223
|
*/
|
|
@@ -13223,7 +13268,7 @@ declare class DiscountCodeUsesService {
|
|
|
13223
13268
|
* @returns DiscountCodeUse OK
|
|
13224
13269
|
* @throws ApiError
|
|
13225
13270
|
*/
|
|
13226
|
-
getListWithoutReferences({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13271
|
+
getListWithoutReferences({ dealId, orderId, customerId, orderStages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13227
13272
|
/**
|
|
13228
13273
|
* Gets or sets the deal id.
|
|
13229
13274
|
*/
|
|
@@ -13236,6 +13281,10 @@ declare class DiscountCodeUsesService {
|
|
|
13236
13281
|
* Gets or sets the customer id.
|
|
13237
13282
|
*/
|
|
13238
13283
|
customerId?: string;
|
|
13284
|
+
/**
|
|
13285
|
+
* Gets or sets the queryable order stages.
|
|
13286
|
+
*/
|
|
13287
|
+
orderStages?: Array<OrderStage>;
|
|
13239
13288
|
/**
|
|
13240
13289
|
* Gets or sets the page number for paged queries.
|
|
13241
13290
|
*/
|
|
@@ -13286,7 +13335,7 @@ declare class DiscountCodeUsesService {
|
|
|
13286
13335
|
* @returns DiscountCodeUse OK
|
|
13287
13336
|
* @throws ApiError
|
|
13288
13337
|
*/
|
|
13289
|
-
getListIdName({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13338
|
+
getListIdName({ dealId, orderId, customerId, orderStages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13290
13339
|
/**
|
|
13291
13340
|
* Gets or sets the deal id.
|
|
13292
13341
|
*/
|
|
@@ -13299,6 +13348,10 @@ declare class DiscountCodeUsesService {
|
|
|
13299
13348
|
* Gets or sets the customer id.
|
|
13300
13349
|
*/
|
|
13301
13350
|
customerId?: string;
|
|
13351
|
+
/**
|
|
13352
|
+
* Gets or sets the queryable order stages.
|
|
13353
|
+
*/
|
|
13354
|
+
orderStages?: Array<OrderStage>;
|
|
13302
13355
|
/**
|
|
13303
13356
|
* Gets or sets the page number for paged queries.
|
|
13304
13357
|
*/
|
|
@@ -15714,6 +15767,10 @@ type GenericActivity = {
|
|
|
15714
15767
|
* Gets or sets a value indicating whether there is an age restriction.
|
|
15715
15768
|
*/
|
|
15716
15769
|
noAgeRestriction?: boolean;
|
|
15770
|
+
/**
|
|
15771
|
+
* Gets or sets a value indicating whether activity is private or not.
|
|
15772
|
+
*/
|
|
15773
|
+
private?: boolean;
|
|
15717
15774
|
/**
|
|
15718
15775
|
* Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
15719
15776
|
*/
|
|
@@ -15836,7 +15893,7 @@ declare class GenericActivityService {
|
|
|
15836
15893
|
* @returns GenericActivity OK
|
|
15837
15894
|
* @throws ApiError
|
|
15838
15895
|
*/
|
|
15839
|
-
getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
15896
|
+
getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
15840
15897
|
/**
|
|
15841
15898
|
* Gets or sets the wildcard for use in a query search.
|
|
15842
15899
|
*/
|
|
@@ -15877,6 +15934,10 @@ declare class GenericActivityService {
|
|
|
15877
15934
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
15878
15935
|
*/
|
|
15879
15936
|
featured?: boolean;
|
|
15937
|
+
/**
|
|
15938
|
+
* Gets or sets a value indicating does session is private or no.
|
|
15939
|
+
*/
|
|
15940
|
+
_private?: boolean;
|
|
15880
15941
|
/**
|
|
15881
15942
|
* Gets or sets SearchGeoCenter.
|
|
15882
15943
|
*/
|
|
@@ -15942,13 +16003,13 @@ declare class GenericActivityService {
|
|
|
15942
16003
|
*/
|
|
15943
16004
|
timeOfDay?: string;
|
|
15944
16005
|
/**
|
|
15945
|
-
* Gets or sets
|
|
16006
|
+
* Gets or sets StartDateTimeGTE.
|
|
15946
16007
|
*/
|
|
15947
|
-
|
|
16008
|
+
startDateTimeGte?: string;
|
|
15948
16009
|
/**
|
|
15949
|
-
* Gets or sets
|
|
16010
|
+
* Gets or sets EndDateTimeLTE.
|
|
15950
16011
|
*/
|
|
15951
|
-
|
|
16012
|
+
endDateTimeLte?: string;
|
|
15952
16013
|
/**
|
|
15953
16014
|
* Gets or sets Gender.
|
|
15954
16015
|
*/
|
|
@@ -16030,7 +16091,7 @@ declare class GenericActivityService {
|
|
|
16030
16091
|
* @returns boolean OK
|
|
16031
16092
|
* @throws ApiError
|
|
16032
16093
|
*/
|
|
16033
|
-
exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
16094
|
+
exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16034
16095
|
/**
|
|
16035
16096
|
* Gets or sets the wildcard for use in a query search.
|
|
16036
16097
|
*/
|
|
@@ -16071,6 +16132,10 @@ declare class GenericActivityService {
|
|
|
16071
16132
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
16072
16133
|
*/
|
|
16073
16134
|
featured?: boolean;
|
|
16135
|
+
/**
|
|
16136
|
+
* Gets or sets a value indicating does session is private or no.
|
|
16137
|
+
*/
|
|
16138
|
+
_private?: boolean;
|
|
16074
16139
|
/**
|
|
16075
16140
|
* Gets or sets SearchGeoCenter.
|
|
16076
16141
|
*/
|
|
@@ -16136,13 +16201,13 @@ declare class GenericActivityService {
|
|
|
16136
16201
|
*/
|
|
16137
16202
|
timeOfDay?: string;
|
|
16138
16203
|
/**
|
|
16139
|
-
* Gets or sets
|
|
16204
|
+
* Gets or sets StartDateTimeGTE.
|
|
16140
16205
|
*/
|
|
16141
|
-
|
|
16206
|
+
startDateTimeGte?: string;
|
|
16142
16207
|
/**
|
|
16143
|
-
* Gets or sets
|
|
16208
|
+
* Gets or sets EndDateTimeLTE.
|
|
16144
16209
|
*/
|
|
16145
|
-
|
|
16210
|
+
endDateTimeLte?: string;
|
|
16146
16211
|
/**
|
|
16147
16212
|
* Gets or sets Gender.
|
|
16148
16213
|
*/
|
|
@@ -16213,7 +16278,7 @@ declare class GenericActivityService {
|
|
|
16213
16278
|
* @returns number OK
|
|
16214
16279
|
* @throws ApiError
|
|
16215
16280
|
*/
|
|
16216
|
-
count({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
16281
|
+
count({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16217
16282
|
/**
|
|
16218
16283
|
* Gets or sets the wildcard for use in a query search.
|
|
16219
16284
|
*/
|
|
@@ -16254,6 +16319,10 @@ declare class GenericActivityService {
|
|
|
16254
16319
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
16255
16320
|
*/
|
|
16256
16321
|
featured?: boolean;
|
|
16322
|
+
/**
|
|
16323
|
+
* Gets or sets a value indicating does session is private or no.
|
|
16324
|
+
*/
|
|
16325
|
+
_private?: boolean;
|
|
16257
16326
|
/**
|
|
16258
16327
|
* Gets or sets SearchGeoCenter.
|
|
16259
16328
|
*/
|
|
@@ -16319,13 +16388,13 @@ declare class GenericActivityService {
|
|
|
16319
16388
|
*/
|
|
16320
16389
|
timeOfDay?: string;
|
|
16321
16390
|
/**
|
|
16322
|
-
* Gets or sets
|
|
16391
|
+
* Gets or sets StartDateTimeGTE.
|
|
16323
16392
|
*/
|
|
16324
|
-
|
|
16393
|
+
startDateTimeGte?: string;
|
|
16325
16394
|
/**
|
|
16326
|
-
* Gets or sets
|
|
16395
|
+
* Gets or sets EndDateTimeLTE.
|
|
16327
16396
|
*/
|
|
16328
|
-
|
|
16397
|
+
endDateTimeLte?: string;
|
|
16329
16398
|
/**
|
|
16330
16399
|
* Gets or sets Gender.
|
|
16331
16400
|
*/
|
|
@@ -16396,7 +16465,7 @@ declare class GenericActivityService {
|
|
|
16396
16465
|
* @returns GenericActivityPage OK
|
|
16397
16466
|
* @throws ApiError
|
|
16398
16467
|
*/
|
|
16399
|
-
getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
16468
|
+
getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16400
16469
|
/**
|
|
16401
16470
|
* Gets or sets the wildcard for use in a query search.
|
|
16402
16471
|
*/
|
|
@@ -16437,6 +16506,10 @@ declare class GenericActivityService {
|
|
|
16437
16506
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
16438
16507
|
*/
|
|
16439
16508
|
featured?: boolean;
|
|
16509
|
+
/**
|
|
16510
|
+
* Gets or sets a value indicating does session is private or no.
|
|
16511
|
+
*/
|
|
16512
|
+
_private?: boolean;
|
|
16440
16513
|
/**
|
|
16441
16514
|
* Gets or sets SearchGeoCenter.
|
|
16442
16515
|
*/
|
|
@@ -16502,13 +16575,13 @@ declare class GenericActivityService {
|
|
|
16502
16575
|
*/
|
|
16503
16576
|
timeOfDay?: string;
|
|
16504
16577
|
/**
|
|
16505
|
-
* Gets or sets
|
|
16578
|
+
* Gets or sets StartDateTimeGTE.
|
|
16506
16579
|
*/
|
|
16507
|
-
|
|
16580
|
+
startDateTimeGte?: string;
|
|
16508
16581
|
/**
|
|
16509
|
-
* Gets or sets
|
|
16582
|
+
* Gets or sets EndDateTimeLTE.
|
|
16510
16583
|
*/
|
|
16511
|
-
|
|
16584
|
+
endDateTimeLte?: string;
|
|
16512
16585
|
/**
|
|
16513
16586
|
* Gets or sets Gender.
|
|
16514
16587
|
*/
|
|
@@ -16579,7 +16652,7 @@ declare class GenericActivityService {
|
|
|
16579
16652
|
* @returns GenericActivity OK
|
|
16580
16653
|
* @throws ApiError
|
|
16581
16654
|
*/
|
|
16582
|
-
getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
16655
|
+
getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16583
16656
|
/**
|
|
16584
16657
|
* Gets or sets the wildcard for use in a query search.
|
|
16585
16658
|
*/
|
|
@@ -16620,6 +16693,10 @@ declare class GenericActivityService {
|
|
|
16620
16693
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
16621
16694
|
*/
|
|
16622
16695
|
featured?: boolean;
|
|
16696
|
+
/**
|
|
16697
|
+
* Gets or sets a value indicating does session is private or no.
|
|
16698
|
+
*/
|
|
16699
|
+
_private?: boolean;
|
|
16623
16700
|
/**
|
|
16624
16701
|
* Gets or sets SearchGeoCenter.
|
|
16625
16702
|
*/
|
|
@@ -16685,13 +16762,13 @@ declare class GenericActivityService {
|
|
|
16685
16762
|
*/
|
|
16686
16763
|
timeOfDay?: string;
|
|
16687
16764
|
/**
|
|
16688
|
-
* Gets or sets
|
|
16765
|
+
* Gets or sets StartDateTimeGTE.
|
|
16689
16766
|
*/
|
|
16690
|
-
|
|
16767
|
+
startDateTimeGte?: string;
|
|
16691
16768
|
/**
|
|
16692
|
-
* Gets or sets
|
|
16769
|
+
* Gets or sets EndDateTimeLTE.
|
|
16693
16770
|
*/
|
|
16694
|
-
|
|
16771
|
+
endDateTimeLte?: string;
|
|
16695
16772
|
/**
|
|
16696
16773
|
* Gets or sets Gender.
|
|
16697
16774
|
*/
|
|
@@ -16762,7 +16839,7 @@ declare class GenericActivityService {
|
|
|
16762
16839
|
* @returns GenericActivity OK
|
|
16763
16840
|
* @throws ApiError
|
|
16764
16841
|
*/
|
|
16765
|
-
getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
16842
|
+
getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16766
16843
|
/**
|
|
16767
16844
|
* Gets or sets the wildcard for use in a query search.
|
|
16768
16845
|
*/
|
|
@@ -16803,6 +16880,10 @@ declare class GenericActivityService {
|
|
|
16803
16880
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
16804
16881
|
*/
|
|
16805
16882
|
featured?: boolean;
|
|
16883
|
+
/**
|
|
16884
|
+
* Gets or sets a value indicating does session is private or no.
|
|
16885
|
+
*/
|
|
16886
|
+
_private?: boolean;
|
|
16806
16887
|
/**
|
|
16807
16888
|
* Gets or sets SearchGeoCenter.
|
|
16808
16889
|
*/
|
|
@@ -16868,13 +16949,13 @@ declare class GenericActivityService {
|
|
|
16868
16949
|
*/
|
|
16869
16950
|
timeOfDay?: string;
|
|
16870
16951
|
/**
|
|
16871
|
-
* Gets or sets
|
|
16952
|
+
* Gets or sets StartDateTimeGTE.
|
|
16872
16953
|
*/
|
|
16873
|
-
|
|
16954
|
+
startDateTimeGte?: string;
|
|
16874
16955
|
/**
|
|
16875
|
-
* Gets or sets
|
|
16956
|
+
* Gets or sets EndDateTimeLTE.
|
|
16876
16957
|
*/
|
|
16877
|
-
|
|
16958
|
+
endDateTimeLte?: string;
|
|
16878
16959
|
/**
|
|
16879
16960
|
* Gets or sets Gender.
|
|
16880
16961
|
*/
|
|
@@ -28820,6 +28901,7 @@ type ProgrammePatch = {
|
|
|
28820
28901
|
* Gets or sets the programme image url.
|
|
28821
28902
|
*/
|
|
28822
28903
|
imageUrl?: string | null;
|
|
28904
|
+
upcomingLayout: UpcomingLayout;
|
|
28823
28905
|
};
|
|
28824
28906
|
|
|
28825
28907
|
/**
|
|
@@ -30858,7 +30940,7 @@ declare class PublicCoursesService {
|
|
|
30858
30940
|
* @returns CoursePage OK
|
|
30859
30941
|
* @throws ApiError
|
|
30860
30942
|
*/
|
|
30861
|
-
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30943
|
+
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, 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, }: {
|
|
30862
30944
|
xTenantSubdomain?: string;
|
|
30863
30945
|
/**
|
|
30864
30946
|
* Gets or sets the queryable Course Id.
|
|
@@ -30948,6 +31030,10 @@ declare class PublicCoursesService {
|
|
|
30948
31030
|
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
30949
31031
|
*/
|
|
30950
31032
|
featured?: boolean;
|
|
31033
|
+
/**
|
|
31034
|
+
* Gets or sets a value indicating whether the session is private or no.
|
|
31035
|
+
*/
|
|
31036
|
+
_private?: boolean;
|
|
30951
31037
|
/**
|
|
30952
31038
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
30953
31039
|
*/
|
|
@@ -31094,7 +31180,7 @@ declare class PublicCoursesService {
|
|
|
31094
31180
|
* @returns boolean OK
|
|
31095
31181
|
* @throws ApiError
|
|
31096
31182
|
*/
|
|
31097
|
-
exists({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
31183
|
+
exists({ xTenantSubdomain, id, ids, venueId, programmeId, 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, }: {
|
|
31098
31184
|
/**
|
|
31099
31185
|
* The tenants subdomain.
|
|
31100
31186
|
*/
|
|
@@ -31187,6 +31273,10 @@ declare class PublicCoursesService {
|
|
|
31187
31273
|
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
31188
31274
|
*/
|
|
31189
31275
|
featured?: boolean;
|
|
31276
|
+
/**
|
|
31277
|
+
* Gets or sets a value indicating whether the session is private or no.
|
|
31278
|
+
*/
|
|
31279
|
+
_private?: boolean;
|
|
31190
31280
|
/**
|
|
31191
31281
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
31192
31282
|
*/
|
|
@@ -31828,7 +31918,7 @@ declare class PublicGenericActivityService {
|
|
|
31828
31918
|
* @returns GenericActivityPage OK
|
|
31829
31919
|
* @throws ApiError
|
|
31830
31920
|
*/
|
|
31831
|
-
getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
31921
|
+
getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
31832
31922
|
xTenantSubdomain?: string;
|
|
31833
31923
|
/**
|
|
31834
31924
|
* Gets or sets the wildcard for use in a query search.
|
|
@@ -31870,6 +31960,10 @@ declare class PublicGenericActivityService {
|
|
|
31870
31960
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
31871
31961
|
*/
|
|
31872
31962
|
featured?: boolean;
|
|
31963
|
+
/**
|
|
31964
|
+
* Gets or sets a value indicating does session is private or no.
|
|
31965
|
+
*/
|
|
31966
|
+
_private?: boolean;
|
|
31873
31967
|
/**
|
|
31874
31968
|
* Gets or sets SearchGeoCenter.
|
|
31875
31969
|
*/
|
|
@@ -31935,13 +32029,13 @@ declare class PublicGenericActivityService {
|
|
|
31935
32029
|
*/
|
|
31936
32030
|
timeOfDay?: string;
|
|
31937
32031
|
/**
|
|
31938
|
-
* Gets or sets
|
|
32032
|
+
* Gets or sets StartDateTimeGTE.
|
|
31939
32033
|
*/
|
|
31940
|
-
|
|
32034
|
+
startDateTimeGte?: string;
|
|
31941
32035
|
/**
|
|
31942
|
-
* Gets or sets
|
|
32036
|
+
* Gets or sets EndDateTimeLTE.
|
|
31943
32037
|
*/
|
|
31944
|
-
|
|
32038
|
+
endDateTimeLte?: string;
|
|
31945
32039
|
/**
|
|
31946
32040
|
* Gets or sets Gender.
|
|
31947
32041
|
*/
|
|
@@ -32012,7 +32106,7 @@ declare class PublicGenericActivityService {
|
|
|
32012
32106
|
* @returns GenericActivityPage OK
|
|
32013
32107
|
* @throws ApiError
|
|
32014
32108
|
*/
|
|
32015
|
-
getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
32109
|
+
getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32016
32110
|
/**
|
|
32017
32111
|
* Gets or sets the wildcard for use in a query search.
|
|
32018
32112
|
*/
|
|
@@ -32053,6 +32147,10 @@ declare class PublicGenericActivityService {
|
|
|
32053
32147
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
32054
32148
|
*/
|
|
32055
32149
|
featured?: boolean;
|
|
32150
|
+
/**
|
|
32151
|
+
* Gets or sets a value indicating does session is private or no.
|
|
32152
|
+
*/
|
|
32153
|
+
_private?: boolean;
|
|
32056
32154
|
/**
|
|
32057
32155
|
* Gets or sets SearchGeoCenter.
|
|
32058
32156
|
*/
|
|
@@ -32118,13 +32216,13 @@ declare class PublicGenericActivityService {
|
|
|
32118
32216
|
*/
|
|
32119
32217
|
timeOfDay?: string;
|
|
32120
32218
|
/**
|
|
32121
|
-
* Gets or sets
|
|
32219
|
+
* Gets or sets StartDateTimeGTE.
|
|
32122
32220
|
*/
|
|
32123
|
-
|
|
32221
|
+
startDateTimeGte?: string;
|
|
32124
32222
|
/**
|
|
32125
|
-
* Gets or sets
|
|
32223
|
+
* Gets or sets EndDateTimeLTE.
|
|
32126
32224
|
*/
|
|
32127
|
-
|
|
32225
|
+
endDateTimeLte?: string;
|
|
32128
32226
|
/**
|
|
32129
32227
|
* Gets or sets Gender.
|
|
32130
32228
|
*/
|
|
@@ -32195,7 +32293,7 @@ declare class PublicGenericActivityService {
|
|
|
32195
32293
|
* @returns GenericActivity OK
|
|
32196
32294
|
* @throws ApiError
|
|
32197
32295
|
*/
|
|
32198
|
-
getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
32296
|
+
getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32199
32297
|
/**
|
|
32200
32298
|
* The tenants subdomain.
|
|
32201
32299
|
*/
|
|
@@ -32240,6 +32338,10 @@ declare class PublicGenericActivityService {
|
|
|
32240
32338
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
32241
32339
|
*/
|
|
32242
32340
|
featured?: boolean;
|
|
32341
|
+
/**
|
|
32342
|
+
* Gets or sets a value indicating does session is private or no.
|
|
32343
|
+
*/
|
|
32344
|
+
_private?: boolean;
|
|
32243
32345
|
/**
|
|
32244
32346
|
* Gets or sets SearchGeoCenter.
|
|
32245
32347
|
*/
|
|
@@ -32305,13 +32407,13 @@ declare class PublicGenericActivityService {
|
|
|
32305
32407
|
*/
|
|
32306
32408
|
timeOfDay?: string;
|
|
32307
32409
|
/**
|
|
32308
|
-
* Gets or sets
|
|
32410
|
+
* Gets or sets StartDateTimeGTE.
|
|
32309
32411
|
*/
|
|
32310
|
-
|
|
32412
|
+
startDateTimeGte?: string;
|
|
32311
32413
|
/**
|
|
32312
|
-
* Gets or sets
|
|
32414
|
+
* Gets or sets EndDateTimeLTE.
|
|
32313
32415
|
*/
|
|
32314
|
-
|
|
32416
|
+
endDateTimeLte?: string;
|
|
32315
32417
|
/**
|
|
32316
32418
|
* Gets or sets Gender.
|
|
32317
32419
|
*/
|
|
@@ -32405,7 +32507,7 @@ declare class PublicGenericActivityService {
|
|
|
32405
32507
|
* @returns boolean OK
|
|
32406
32508
|
* @throws ApiError
|
|
32407
32509
|
*/
|
|
32408
|
-
exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
32510
|
+
exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32409
32511
|
/**
|
|
32410
32512
|
* The tenants subdomain.
|
|
32411
32513
|
*/
|
|
@@ -32450,6 +32552,10 @@ declare class PublicGenericActivityService {
|
|
|
32450
32552
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
32451
32553
|
*/
|
|
32452
32554
|
featured?: boolean;
|
|
32555
|
+
/**
|
|
32556
|
+
* Gets or sets a value indicating does session is private or no.
|
|
32557
|
+
*/
|
|
32558
|
+
_private?: boolean;
|
|
32453
32559
|
/**
|
|
32454
32560
|
* Gets or sets SearchGeoCenter.
|
|
32455
32561
|
*/
|
|
@@ -32515,13 +32621,13 @@ declare class PublicGenericActivityService {
|
|
|
32515
32621
|
*/
|
|
32516
32622
|
timeOfDay?: string;
|
|
32517
32623
|
/**
|
|
32518
|
-
* Gets or sets
|
|
32624
|
+
* Gets or sets StartDateTimeGTE.
|
|
32519
32625
|
*/
|
|
32520
|
-
|
|
32626
|
+
startDateTimeGte?: string;
|
|
32521
32627
|
/**
|
|
32522
|
-
* Gets or sets
|
|
32628
|
+
* Gets or sets EndDateTimeLTE.
|
|
32523
32629
|
*/
|
|
32524
|
-
|
|
32630
|
+
endDateTimeLte?: string;
|
|
32525
32631
|
/**
|
|
32526
32632
|
* Gets or sets Gender.
|
|
32527
32633
|
*/
|
|
@@ -33030,7 +33136,7 @@ declare class PublicNetworksService {
|
|
|
33030
33136
|
* @returns SessionPage OK
|
|
33031
33137
|
* @throws ApiError
|
|
33032
33138
|
*/
|
|
33033
|
-
getSessions({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
33139
|
+
getSessions({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, 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, }: {
|
|
33034
33140
|
/**
|
|
33035
33141
|
* Gets or sets the queryable session ids.
|
|
33036
33142
|
*/
|
|
@@ -33063,6 +33169,10 @@ declare class PublicNetworksService {
|
|
|
33063
33169
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
33064
33170
|
*/
|
|
33065
33171
|
featured?: boolean;
|
|
33172
|
+
/**
|
|
33173
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
33174
|
+
*/
|
|
33175
|
+
_private?: boolean;
|
|
33066
33176
|
/**
|
|
33067
33177
|
* Gets or sets the queryable Programme Id.
|
|
33068
33178
|
*/
|
|
@@ -33128,13 +33238,13 @@ declare class PublicNetworksService {
|
|
|
33128
33238
|
*/
|
|
33129
33239
|
timeOfDay?: string;
|
|
33130
33240
|
/**
|
|
33131
|
-
* Gets or sets
|
|
33241
|
+
* Gets or sets StartDateTimeGTE.
|
|
33132
33242
|
*/
|
|
33133
|
-
|
|
33243
|
+
startDateTimeGte?: string;
|
|
33134
33244
|
/**
|
|
33135
|
-
* Gets or sets
|
|
33245
|
+
* Gets or sets EndDateTimeLTE.
|
|
33136
33246
|
*/
|
|
33137
|
-
|
|
33247
|
+
endDateTimeLte?: string;
|
|
33138
33248
|
/**
|
|
33139
33249
|
* Gets or sets Gender.
|
|
33140
33250
|
*/
|
|
@@ -35769,6 +35879,10 @@ type SessionPatch = {
|
|
|
35769
35879
|
* Gets or sets a value indicating whether there is an age restriction.
|
|
35770
35880
|
*/
|
|
35771
35881
|
noAgeRestriction?: boolean | null;
|
|
35882
|
+
/**
|
|
35883
|
+
* Gets or sets a value indicating whether session is private or no.
|
|
35884
|
+
*/
|
|
35885
|
+
private?: boolean | null;
|
|
35772
35886
|
/**
|
|
35773
35887
|
* Gets or sets a value indicating whether the session is online and can take bookings.
|
|
35774
35888
|
*/
|
|
@@ -35874,7 +35988,7 @@ declare class PublicSessionsService {
|
|
|
35874
35988
|
* @returns SessionPage OK
|
|
35875
35989
|
* @throws ApiError
|
|
35876
35990
|
*/
|
|
35877
|
-
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
35991
|
+
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, 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, }: {
|
|
35878
35992
|
xTenantSubdomain?: string;
|
|
35879
35993
|
/**
|
|
35880
35994
|
* Gets or sets the queryable session ids.
|
|
@@ -35908,6 +36022,10 @@ declare class PublicSessionsService {
|
|
|
35908
36022
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
35909
36023
|
*/
|
|
35910
36024
|
featured?: boolean;
|
|
36025
|
+
/**
|
|
36026
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
36027
|
+
*/
|
|
36028
|
+
_private?: boolean;
|
|
35911
36029
|
/**
|
|
35912
36030
|
* Gets or sets the queryable Programme Id.
|
|
35913
36031
|
*/
|
|
@@ -35973,13 +36091,13 @@ declare class PublicSessionsService {
|
|
|
35973
36091
|
*/
|
|
35974
36092
|
timeOfDay?: string;
|
|
35975
36093
|
/**
|
|
35976
|
-
* Gets or sets
|
|
36094
|
+
* Gets or sets StartDateTimeGTE.
|
|
35977
36095
|
*/
|
|
35978
|
-
|
|
36096
|
+
startDateTimeGte?: string;
|
|
35979
36097
|
/**
|
|
35980
|
-
* Gets or sets
|
|
36098
|
+
* Gets or sets EndDateTimeLTE.
|
|
35981
36099
|
*/
|
|
35982
|
-
|
|
36100
|
+
endDateTimeLte?: string;
|
|
35983
36101
|
/**
|
|
35984
36102
|
* Gets or sets Gender.
|
|
35985
36103
|
*/
|
|
@@ -36292,7 +36410,7 @@ declare class PublicSessionsService {
|
|
|
36292
36410
|
* @returns boolean OK
|
|
36293
36411
|
* @throws ApiError
|
|
36294
36412
|
*/
|
|
36295
|
-
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
36413
|
+
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, 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, }: {
|
|
36296
36414
|
/**
|
|
36297
36415
|
* The tenants subdomain.
|
|
36298
36416
|
*/
|
|
@@ -36329,6 +36447,10 @@ declare class PublicSessionsService {
|
|
|
36329
36447
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
36330
36448
|
*/
|
|
36331
36449
|
featured?: boolean;
|
|
36450
|
+
/**
|
|
36451
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
36452
|
+
*/
|
|
36453
|
+
_private?: boolean;
|
|
36332
36454
|
/**
|
|
36333
36455
|
* Gets or sets the queryable Programme Id.
|
|
36334
36456
|
*/
|
|
@@ -36394,13 +36516,13 @@ declare class PublicSessionsService {
|
|
|
36394
36516
|
*/
|
|
36395
36517
|
timeOfDay?: string;
|
|
36396
36518
|
/**
|
|
36397
|
-
* Gets or sets
|
|
36519
|
+
* Gets or sets StartDateTimeGTE.
|
|
36398
36520
|
*/
|
|
36399
|
-
|
|
36521
|
+
startDateTimeGte?: string;
|
|
36400
36522
|
/**
|
|
36401
|
-
* Gets or sets
|
|
36523
|
+
* Gets or sets EndDateTimeLTE.
|
|
36402
36524
|
*/
|
|
36403
|
-
|
|
36525
|
+
endDateTimeLte?: string;
|
|
36404
36526
|
/**
|
|
36405
36527
|
* Gets or sets Gender.
|
|
36406
36528
|
*/
|
|
@@ -39728,7 +39850,7 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39728
39850
|
* @returns WaitlistOpportunityPage OK
|
|
39729
39851
|
* @throws ApiError
|
|
39730
39852
|
*/
|
|
39731
|
-
getPage({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39853
|
+
getPage({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39732
39854
|
/**
|
|
39733
39855
|
* The tenants subdomain.
|
|
39734
39856
|
*/
|
|
@@ -39753,6 +39875,10 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39753
39875
|
* Gets or sets the queryable Email.
|
|
39754
39876
|
*/
|
|
39755
39877
|
email?: string;
|
|
39878
|
+
/**
|
|
39879
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
39880
|
+
*/
|
|
39881
|
+
futureOnly?: boolean;
|
|
39756
39882
|
/**
|
|
39757
39883
|
* Gets or sets the page number for paged queries.
|
|
39758
39884
|
*/
|
|
@@ -39833,7 +39959,7 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39833
39959
|
* @returns boolean OK
|
|
39834
39960
|
* @throws ApiError
|
|
39835
39961
|
*/
|
|
39836
|
-
exists({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39962
|
+
exists({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39837
39963
|
/**
|
|
39838
39964
|
* The tenants subdomain.
|
|
39839
39965
|
*/
|
|
@@ -39858,6 +39984,10 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39858
39984
|
* Gets or sets the queryable Email.
|
|
39859
39985
|
*/
|
|
39860
39986
|
email?: string;
|
|
39987
|
+
/**
|
|
39988
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
39989
|
+
*/
|
|
39990
|
+
futureOnly?: boolean;
|
|
39861
39991
|
/**
|
|
39862
39992
|
* Gets or sets the page number for paged queries.
|
|
39863
39993
|
*/
|
|
@@ -43592,7 +43722,7 @@ declare class SessionsService {
|
|
|
43592
43722
|
* @returns SessionPage OK
|
|
43593
43723
|
* @throws ApiError
|
|
43594
43724
|
*/
|
|
43595
|
-
getPage({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
43725
|
+
getPage({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, 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, }: {
|
|
43596
43726
|
/**
|
|
43597
43727
|
* Gets or sets the queryable session ids.
|
|
43598
43728
|
*/
|
|
@@ -43625,6 +43755,10 @@ declare class SessionsService {
|
|
|
43625
43755
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
43626
43756
|
*/
|
|
43627
43757
|
featured?: boolean;
|
|
43758
|
+
/**
|
|
43759
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
43760
|
+
*/
|
|
43761
|
+
_private?: boolean;
|
|
43628
43762
|
/**
|
|
43629
43763
|
* Gets or sets the queryable Programme Id.
|
|
43630
43764
|
*/
|
|
@@ -43690,13 +43824,13 @@ declare class SessionsService {
|
|
|
43690
43824
|
*/
|
|
43691
43825
|
timeOfDay?: string;
|
|
43692
43826
|
/**
|
|
43693
|
-
* Gets or sets
|
|
43827
|
+
* Gets or sets StartDateTimeGTE.
|
|
43694
43828
|
*/
|
|
43695
|
-
|
|
43829
|
+
startDateTimeGte?: string;
|
|
43696
43830
|
/**
|
|
43697
|
-
* Gets or sets
|
|
43831
|
+
* Gets or sets EndDateTimeLTE.
|
|
43698
43832
|
*/
|
|
43699
|
-
|
|
43833
|
+
endDateTimeLte?: string;
|
|
43700
43834
|
/**
|
|
43701
43835
|
* Gets or sets Gender.
|
|
43702
43836
|
*/
|
|
@@ -43800,7 +43934,7 @@ declare class SessionsService {
|
|
|
43800
43934
|
* @returns boolean OK
|
|
43801
43935
|
* @throws ApiError
|
|
43802
43936
|
*/
|
|
43803
|
-
exists({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
43937
|
+
exists({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, 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, }: {
|
|
43804
43938
|
/**
|
|
43805
43939
|
* Gets or sets the queryable session ids.
|
|
43806
43940
|
*/
|
|
@@ -43833,6 +43967,10 @@ declare class SessionsService {
|
|
|
43833
43967
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
43834
43968
|
*/
|
|
43835
43969
|
featured?: boolean;
|
|
43970
|
+
/**
|
|
43971
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
43972
|
+
*/
|
|
43973
|
+
_private?: boolean;
|
|
43836
43974
|
/**
|
|
43837
43975
|
* Gets or sets the queryable Programme Id.
|
|
43838
43976
|
*/
|
|
@@ -43898,13 +44036,13 @@ declare class SessionsService {
|
|
|
43898
44036
|
*/
|
|
43899
44037
|
timeOfDay?: string;
|
|
43900
44038
|
/**
|
|
43901
|
-
* Gets or sets
|
|
44039
|
+
* Gets or sets StartDateTimeGTE.
|
|
43902
44040
|
*/
|
|
43903
|
-
|
|
44041
|
+
startDateTimeGte?: string;
|
|
43904
44042
|
/**
|
|
43905
|
-
* Gets or sets
|
|
44043
|
+
* Gets or sets EndDateTimeLTE.
|
|
43906
44044
|
*/
|
|
43907
|
-
|
|
44045
|
+
endDateTimeLte?: string;
|
|
43908
44046
|
/**
|
|
43909
44047
|
* Gets or sets Gender.
|
|
43910
44048
|
*/
|
|
@@ -43975,7 +44113,7 @@ declare class SessionsService {
|
|
|
43975
44113
|
* @returns number OK
|
|
43976
44114
|
* @throws ApiError
|
|
43977
44115
|
*/
|
|
43978
|
-
count({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
44116
|
+
count({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, 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, }: {
|
|
43979
44117
|
/**
|
|
43980
44118
|
* Gets or sets the queryable session ids.
|
|
43981
44119
|
*/
|
|
@@ -44008,6 +44146,10 @@ declare class SessionsService {
|
|
|
44008
44146
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
44009
44147
|
*/
|
|
44010
44148
|
featured?: boolean;
|
|
44149
|
+
/**
|
|
44150
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
44151
|
+
*/
|
|
44152
|
+
_private?: boolean;
|
|
44011
44153
|
/**
|
|
44012
44154
|
* Gets or sets the queryable Programme Id.
|
|
44013
44155
|
*/
|
|
@@ -44073,13 +44215,13 @@ declare class SessionsService {
|
|
|
44073
44215
|
*/
|
|
44074
44216
|
timeOfDay?: string;
|
|
44075
44217
|
/**
|
|
44076
|
-
* Gets or sets
|
|
44218
|
+
* Gets or sets StartDateTimeGTE.
|
|
44077
44219
|
*/
|
|
44078
|
-
|
|
44220
|
+
startDateTimeGte?: string;
|
|
44079
44221
|
/**
|
|
44080
|
-
* Gets or sets
|
|
44222
|
+
* Gets or sets EndDateTimeLTE.
|
|
44081
44223
|
*/
|
|
44082
|
-
|
|
44224
|
+
endDateTimeLte?: string;
|
|
44083
44225
|
/**
|
|
44084
44226
|
* Gets or sets Gender.
|
|
44085
44227
|
*/
|
|
@@ -44150,7 +44292,7 @@ declare class SessionsService {
|
|
|
44150
44292
|
* @returns Session OK
|
|
44151
44293
|
* @throws ApiError
|
|
44152
44294
|
*/
|
|
44153
|
-
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
44295
|
+
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, 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, }: {
|
|
44154
44296
|
/**
|
|
44155
44297
|
* Gets or sets the queryable session ids.
|
|
44156
44298
|
*/
|
|
@@ -44183,6 +44325,10 @@ declare class SessionsService {
|
|
|
44183
44325
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
44184
44326
|
*/
|
|
44185
44327
|
featured?: boolean;
|
|
44328
|
+
/**
|
|
44329
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
44330
|
+
*/
|
|
44331
|
+
_private?: boolean;
|
|
44186
44332
|
/**
|
|
44187
44333
|
* Gets or sets the queryable Programme Id.
|
|
44188
44334
|
*/
|
|
@@ -44248,13 +44394,13 @@ declare class SessionsService {
|
|
|
44248
44394
|
*/
|
|
44249
44395
|
timeOfDay?: string;
|
|
44250
44396
|
/**
|
|
44251
|
-
* Gets or sets
|
|
44397
|
+
* Gets or sets StartDateTimeGTE.
|
|
44252
44398
|
*/
|
|
44253
|
-
|
|
44399
|
+
startDateTimeGte?: string;
|
|
44254
44400
|
/**
|
|
44255
|
-
* Gets or sets
|
|
44401
|
+
* Gets or sets EndDateTimeLTE.
|
|
44256
44402
|
*/
|
|
44257
|
-
|
|
44403
|
+
endDateTimeLte?: string;
|
|
44258
44404
|
/**
|
|
44259
44405
|
* Gets or sets Gender.
|
|
44260
44406
|
*/
|
|
@@ -44325,7 +44471,7 @@ declare class SessionsService {
|
|
|
44325
44471
|
* @returns Session OK
|
|
44326
44472
|
* @throws ApiError
|
|
44327
44473
|
*/
|
|
44328
|
-
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay,
|
|
44474
|
+
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, 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, }: {
|
|
44329
44475
|
/**
|
|
44330
44476
|
* Gets or sets the queryable session ids.
|
|
44331
44477
|
*/
|
|
@@ -44358,6 +44504,10 @@ declare class SessionsService {
|
|
|
44358
44504
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
44359
44505
|
*/
|
|
44360
44506
|
featured?: boolean;
|
|
44507
|
+
/**
|
|
44508
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
44509
|
+
*/
|
|
44510
|
+
_private?: boolean;
|
|
44361
44511
|
/**
|
|
44362
44512
|
* Gets or sets the queryable Programme Id.
|
|
44363
44513
|
*/
|
|
@@ -44423,13 +44573,13 @@ declare class SessionsService {
|
|
|
44423
44573
|
*/
|
|
44424
44574
|
timeOfDay?: string;
|
|
44425
44575
|
/**
|
|
44426
|
-
* Gets or sets
|
|
44576
|
+
* Gets or sets StartDateTimeGTE.
|
|
44427
44577
|
*/
|
|
44428
|
-
|
|
44578
|
+
startDateTimeGte?: string;
|
|
44429
44579
|
/**
|
|
44430
|
-
* Gets or sets
|
|
44580
|
+
* Gets or sets EndDateTimeLTE.
|
|
44431
44581
|
*/
|
|
44432
|
-
|
|
44582
|
+
endDateTimeLte?: string;
|
|
44433
44583
|
/**
|
|
44434
44584
|
* Gets or sets Gender.
|
|
44435
44585
|
*/
|
|
@@ -50137,6 +50287,7 @@ type TemplateFieldPermission = {
|
|
|
50137
50287
|
minAge?: FieldPermission;
|
|
50138
50288
|
maxAge?: FieldPermission;
|
|
50139
50289
|
noAgeRestriction?: FieldPermission;
|
|
50290
|
+
private?: FieldPermission;
|
|
50140
50291
|
additionalSupport?: FieldPermission;
|
|
50141
50292
|
contactName?: FieldPermission;
|
|
50142
50293
|
contactPhone?: FieldPermission;
|
|
@@ -50319,6 +50470,10 @@ type TemplateDetail = {
|
|
|
50319
50470
|
* Gets or sets a value indicating whether there is an age restriction.
|
|
50320
50471
|
*/
|
|
50321
50472
|
noAgeRestriction?: boolean;
|
|
50473
|
+
/**
|
|
50474
|
+
* Gets or sets a value indicating whether the activity is private.
|
|
50475
|
+
*/
|
|
50476
|
+
private?: boolean;
|
|
50322
50477
|
/**
|
|
50323
50478
|
* Gets or sets the templates additional support options.
|
|
50324
50479
|
*/
|
|
@@ -50512,6 +50667,10 @@ type TemplateDetailPatch = {
|
|
|
50512
50667
|
* Gets or sets a value indicating whether there is an age restriction.
|
|
50513
50668
|
*/
|
|
50514
50669
|
noAgeRestriction?: boolean;
|
|
50670
|
+
/**
|
|
50671
|
+
* Gets or sets a value indicating whether activity is private or no.
|
|
50672
|
+
*/
|
|
50673
|
+
private?: boolean;
|
|
50515
50674
|
/**
|
|
50516
50675
|
* Gets or sets the templates additional support options.
|
|
50517
50676
|
*/
|
|
@@ -51003,6 +51162,7 @@ type TemplateFieldPermissionPatch = {
|
|
|
51003
51162
|
minAge?: FieldPermission;
|
|
51004
51163
|
maxAge?: FieldPermission;
|
|
51005
51164
|
noAgeRestriction?: FieldPermission;
|
|
51165
|
+
private?: FieldPermission;
|
|
51006
51166
|
additionalSupport?: FieldPermission;
|
|
51007
51167
|
contactName?: FieldPermission;
|
|
51008
51168
|
contactPhone?: FieldPermission;
|
|
@@ -51892,6 +52052,7 @@ type CreateTemplateFieldPermission = {
|
|
|
51892
52052
|
minAge?: FieldPermission;
|
|
51893
52053
|
maxAge?: FieldPermission;
|
|
51894
52054
|
noAgeRestriction?: FieldPermission;
|
|
52055
|
+
private?: FieldPermission;
|
|
51895
52056
|
additionalSupport?: FieldPermission;
|
|
51896
52057
|
contactName?: FieldPermission;
|
|
51897
52058
|
contactPhone?: FieldPermission;
|
|
@@ -51988,6 +52149,10 @@ type CreateTemplateDetail = {
|
|
|
51988
52149
|
* Gets or sets a value indicating whether there is an age restriction.
|
|
51989
52150
|
*/
|
|
51990
52151
|
noAgeRestriction?: boolean;
|
|
52152
|
+
/**
|
|
52153
|
+
* Gets or sets a value indicating whether activity is private or no.
|
|
52154
|
+
*/
|
|
52155
|
+
private?: boolean;
|
|
51991
52156
|
/**
|
|
51992
52157
|
* Gets or sets the templates additional support options.
|
|
51993
52158
|
*/
|
|
@@ -60433,7 +60598,7 @@ declare class WaitlistOpportunityService {
|
|
|
60433
60598
|
* @returns WaitlistOpportunityPage OK
|
|
60434
60599
|
* @throws ApiError
|
|
60435
60600
|
*/
|
|
60436
|
-
getPage({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60601
|
+
getPage({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60437
60602
|
/**
|
|
60438
60603
|
* Gets or sets the queryable User Id.
|
|
60439
60604
|
*/
|
|
@@ -60454,6 +60619,10 @@ declare class WaitlistOpportunityService {
|
|
|
60454
60619
|
* Gets or sets the queryable Email.
|
|
60455
60620
|
*/
|
|
60456
60621
|
email?: string;
|
|
60622
|
+
/**
|
|
60623
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60624
|
+
*/
|
|
60625
|
+
futureOnly?: boolean;
|
|
60457
60626
|
/**
|
|
60458
60627
|
* Gets or sets the page number for paged queries.
|
|
60459
60628
|
*/
|
|
@@ -60537,7 +60706,7 @@ declare class WaitlistOpportunityService {
|
|
|
60537
60706
|
* @returns boolean OK
|
|
60538
60707
|
* @throws ApiError
|
|
60539
60708
|
*/
|
|
60540
|
-
exists({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60709
|
+
exists({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60541
60710
|
/**
|
|
60542
60711
|
* Gets or sets the queryable User Id.
|
|
60543
60712
|
*/
|
|
@@ -60558,6 +60727,10 @@ declare class WaitlistOpportunityService {
|
|
|
60558
60727
|
* Gets or sets the queryable Email.
|
|
60559
60728
|
*/
|
|
60560
60729
|
email?: string;
|
|
60730
|
+
/**
|
|
60731
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60732
|
+
*/
|
|
60733
|
+
futureOnly?: boolean;
|
|
60561
60734
|
/**
|
|
60562
60735
|
* Gets or sets the page number for paged queries.
|
|
60563
60736
|
*/
|
|
@@ -60608,7 +60781,7 @@ declare class WaitlistOpportunityService {
|
|
|
60608
60781
|
* @returns number OK
|
|
60609
60782
|
* @throws ApiError
|
|
60610
60783
|
*/
|
|
60611
|
-
count({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60784
|
+
count({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60612
60785
|
/**
|
|
60613
60786
|
* Gets or sets the queryable User Id.
|
|
60614
60787
|
*/
|
|
@@ -60629,6 +60802,10 @@ declare class WaitlistOpportunityService {
|
|
|
60629
60802
|
* Gets or sets the queryable Email.
|
|
60630
60803
|
*/
|
|
60631
60804
|
email?: string;
|
|
60805
|
+
/**
|
|
60806
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60807
|
+
*/
|
|
60808
|
+
futureOnly?: boolean;
|
|
60632
60809
|
/**
|
|
60633
60810
|
* Gets or sets the page number for paged queries.
|
|
60634
60811
|
*/
|
|
@@ -60679,7 +60856,7 @@ declare class WaitlistOpportunityService {
|
|
|
60679
60856
|
* @returns WaitlistOpportunity OK
|
|
60680
60857
|
* @throws ApiError
|
|
60681
60858
|
*/
|
|
60682
|
-
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60859
|
+
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60683
60860
|
/**
|
|
60684
60861
|
* Gets or sets the queryable User Id.
|
|
60685
60862
|
*/
|
|
@@ -60700,6 +60877,10 @@ declare class WaitlistOpportunityService {
|
|
|
60700
60877
|
* Gets or sets the queryable Email.
|
|
60701
60878
|
*/
|
|
60702
60879
|
email?: string;
|
|
60880
|
+
/**
|
|
60881
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60882
|
+
*/
|
|
60883
|
+
futureOnly?: boolean;
|
|
60703
60884
|
/**
|
|
60704
60885
|
* Gets or sets the page number for paged queries.
|
|
60705
60886
|
*/
|
|
@@ -60750,7 +60931,7 @@ declare class WaitlistOpportunityService {
|
|
|
60750
60931
|
* @returns WaitlistOpportunity OK
|
|
60751
60932
|
* @throws ApiError
|
|
60752
60933
|
*/
|
|
60753
|
-
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60934
|
+
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60754
60935
|
/**
|
|
60755
60936
|
* Gets or sets the queryable User Id.
|
|
60756
60937
|
*/
|
|
@@ -60771,6 +60952,10 @@ declare class WaitlistOpportunityService {
|
|
|
60771
60952
|
* Gets or sets the queryable Email.
|
|
60772
60953
|
*/
|
|
60773
60954
|
email?: string;
|
|
60955
|
+
/**
|
|
60956
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60957
|
+
*/
|
|
60958
|
+
futureOnly?: boolean;
|
|
60774
60959
|
/**
|
|
60775
60960
|
* Gets or sets the page number for paged queries.
|
|
60776
60961
|
*/
|
|
@@ -60818,6 +61003,12 @@ declare class WaitlistOpportunityService {
|
|
|
60818
61003
|
}): CancelablePromise<Array<WaitlistOpportunity>>;
|
|
60819
61004
|
}
|
|
60820
61005
|
|
|
61006
|
+
type WaitlistConversionStatsResponseDto = {
|
|
61007
|
+
totalWaitlistCount?: number;
|
|
61008
|
+
totalUpcomingWaitlistCount?: number;
|
|
61009
|
+
conversionPercentage?: number;
|
|
61010
|
+
};
|
|
61011
|
+
|
|
60821
61012
|
/**
|
|
60822
61013
|
* Represents the waitlist opportunity report model.
|
|
60823
61014
|
*/
|
|
@@ -60886,7 +61077,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
60886
61077
|
* @returns any OK
|
|
60887
61078
|
* @throws ApiError
|
|
60888
61079
|
*/
|
|
60889
|
-
exportToCsv({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
61080
|
+
exportToCsv({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
60890
61081
|
/**
|
|
60891
61082
|
* Gets or sets the queryable User Id.
|
|
60892
61083
|
*/
|
|
@@ -60907,6 +61098,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
60907
61098
|
* Gets or sets the queryable Email.
|
|
60908
61099
|
*/
|
|
60909
61100
|
email?: string;
|
|
61101
|
+
/**
|
|
61102
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61103
|
+
*/
|
|
61104
|
+
futureOnly?: boolean;
|
|
60910
61105
|
/**
|
|
60911
61106
|
* Gets or sets the page number for paged queries.
|
|
60912
61107
|
*/
|
|
@@ -60958,6 +61153,12 @@ declare class WaitlistOpportunityReportService {
|
|
|
60958
61153
|
Token?: string;
|
|
60959
61154
|
};
|
|
60960
61155
|
}): CancelablePromise<any>;
|
|
61156
|
+
/**
|
|
61157
|
+
* Gets waitlist conversion statistics.
|
|
61158
|
+
* @returns WaitlistConversionStatsResponseDto OK
|
|
61159
|
+
* @throws ApiError
|
|
61160
|
+
*/
|
|
61161
|
+
getConversionStats(): CancelablePromise<WaitlistConversionStatsResponseDto>;
|
|
60961
61162
|
/**
|
|
60962
61163
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
60963
61164
|
* @returns WaitlistOpportunityReport OK
|
|
@@ -61018,7 +61219,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61018
61219
|
* @returns WaitlistOpportunityReportPage OK
|
|
61019
61220
|
* @throws ApiError
|
|
61020
61221
|
*/
|
|
61021
|
-
getPage({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61222
|
+
getPage({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61022
61223
|
/**
|
|
61023
61224
|
* Gets or sets the queryable User Id.
|
|
61024
61225
|
*/
|
|
@@ -61039,6 +61240,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61039
61240
|
* Gets or sets the queryable Email.
|
|
61040
61241
|
*/
|
|
61041
61242
|
email?: string;
|
|
61243
|
+
/**
|
|
61244
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61245
|
+
*/
|
|
61246
|
+
futureOnly?: boolean;
|
|
61042
61247
|
/**
|
|
61043
61248
|
* Gets or sets the page number for paged queries.
|
|
61044
61249
|
*/
|
|
@@ -61122,7 +61327,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61122
61327
|
* @returns boolean OK
|
|
61123
61328
|
* @throws ApiError
|
|
61124
61329
|
*/
|
|
61125
|
-
exists({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61330
|
+
exists({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61126
61331
|
/**
|
|
61127
61332
|
* Gets or sets the queryable User Id.
|
|
61128
61333
|
*/
|
|
@@ -61143,6 +61348,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61143
61348
|
* Gets or sets the queryable Email.
|
|
61144
61349
|
*/
|
|
61145
61350
|
email?: string;
|
|
61351
|
+
/**
|
|
61352
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61353
|
+
*/
|
|
61354
|
+
futureOnly?: boolean;
|
|
61146
61355
|
/**
|
|
61147
61356
|
* Gets or sets the page number for paged queries.
|
|
61148
61357
|
*/
|
|
@@ -61193,7 +61402,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61193
61402
|
* @returns number OK
|
|
61194
61403
|
* @throws ApiError
|
|
61195
61404
|
*/
|
|
61196
|
-
count({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61405
|
+
count({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61197
61406
|
/**
|
|
61198
61407
|
* Gets or sets the queryable User Id.
|
|
61199
61408
|
*/
|
|
@@ -61214,6 +61423,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61214
61423
|
* Gets or sets the queryable Email.
|
|
61215
61424
|
*/
|
|
61216
61425
|
email?: string;
|
|
61426
|
+
/**
|
|
61427
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61428
|
+
*/
|
|
61429
|
+
futureOnly?: boolean;
|
|
61217
61430
|
/**
|
|
61218
61431
|
* Gets or sets the page number for paged queries.
|
|
61219
61432
|
*/
|
|
@@ -61264,7 +61477,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61264
61477
|
* @returns WaitlistOpportunityReport OK
|
|
61265
61478
|
* @throws ApiError
|
|
61266
61479
|
*/
|
|
61267
|
-
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61480
|
+
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61268
61481
|
/**
|
|
61269
61482
|
* Gets or sets the queryable User Id.
|
|
61270
61483
|
*/
|
|
@@ -61285,6 +61498,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61285
61498
|
* Gets or sets the queryable Email.
|
|
61286
61499
|
*/
|
|
61287
61500
|
email?: string;
|
|
61501
|
+
/**
|
|
61502
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61503
|
+
*/
|
|
61504
|
+
futureOnly?: boolean;
|
|
61288
61505
|
/**
|
|
61289
61506
|
* Gets or sets the page number for paged queries.
|
|
61290
61507
|
*/
|
|
@@ -61335,7 +61552,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61335
61552
|
* @returns WaitlistOpportunityReport OK
|
|
61336
61553
|
* @throws ApiError
|
|
61337
61554
|
*/
|
|
61338
|
-
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61555
|
+
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61339
61556
|
/**
|
|
61340
61557
|
* Gets or sets the queryable User Id.
|
|
61341
61558
|
*/
|
|
@@ -61356,6 +61573,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61356
61573
|
* Gets or sets the queryable Email.
|
|
61357
61574
|
*/
|
|
61358
61575
|
email?: string;
|
|
61576
|
+
/**
|
|
61577
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61578
|
+
*/
|
|
61579
|
+
futureOnly?: boolean;
|
|
61359
61580
|
/**
|
|
61360
61581
|
* Gets or sets the page number for paged queries.
|
|
61361
61582
|
*/
|
|
@@ -61653,4 +61874,4 @@ type ValidationResultModel = {
|
|
|
61653
61874
|
readonly errors?: Array<ValidationError> | null;
|
|
61654
61875
|
};
|
|
61655
61876
|
|
|
61656
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, 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, 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, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, 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, 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, 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, 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, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, 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, 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, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, 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, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
61877
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, 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, 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, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, 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, 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, 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, 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, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, 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, 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, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, 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, 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 };
|