reach-api-sdk 1.0.196 → 1.0.198

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.
@@ -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
  */
@@ -4647,6 +4652,7 @@ type Venue = {
4647
4652
  * Gets or sets the contact website.
4648
4653
  */
4649
4654
  contactWebsite?: string | null;
4655
+ upcomingLayout?: UpcomingLayout;
4650
4656
  /**
4651
4657
  * Gets or sets a value indicating whether the venue can take bookings.
4652
4658
  */
@@ -5224,6 +5230,10 @@ type Course = {
5224
5230
  * Gets or sets a value indicating whether there is an age restriction.
5225
5231
  */
5226
5232
  noAgeRestriction?: boolean;
5233
+ /**
5234
+ * Gets or sets a value indicating whether activity is private or no.
5235
+ */
5236
+ private?: boolean;
5227
5237
  /**
5228
5238
  * Gets or sets additional support options.
5229
5239
  */
@@ -8260,6 +8270,10 @@ type CoursePatch = {
8260
8270
  * Gets or sets a value indicating whether there is an age restriction.
8261
8271
  */
8262
8272
  noAgeRestriction?: boolean | null;
8273
+ /**
8274
+ * Gets or sets a value indicating whether course is private or no.
8275
+ */
8276
+ private?: boolean | null;
8263
8277
  /**
8264
8278
  * Gets or sets a value indicating whether the course is online and can take bookings.
8265
8279
  */
@@ -8567,7 +8581,7 @@ declare class CoursesService {
8567
8581
  * @returns CoursePage OK
8568
8582
  * @throws ApiError
8569
8583
  */
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, }: {
8584
+ 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
8585
  /**
8572
8586
  * Gets or sets the queryable Course Id.
8573
8587
  */
@@ -8656,6 +8670,10 @@ declare class CoursesService {
8656
8670
  * Gets or sets a value indicating whether the course is featured on the storefront.
8657
8671
  */
8658
8672
  featured?: boolean;
8673
+ /**
8674
+ * Gets or sets a value indicating whether the session is private or no.
8675
+ */
8676
+ _private?: boolean;
8659
8677
  /**
8660
8678
  * Gets or sets a value indicating whether the scheduled session has availability.
8661
8679
  */
@@ -8775,7 +8793,7 @@ declare class CoursesService {
8775
8793
  * @returns boolean OK
8776
8794
  * @throws ApiError
8777
8795
  */
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, }: {
8796
+ 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
8797
  /**
8780
8798
  * Gets or sets the queryable Course Id.
8781
8799
  */
@@ -8864,6 +8882,10 @@ declare class CoursesService {
8864
8882
  * Gets or sets a value indicating whether the course is featured on the storefront.
8865
8883
  */
8866
8884
  featured?: boolean;
8885
+ /**
8886
+ * Gets or sets a value indicating whether the session is private or no.
8887
+ */
8888
+ _private?: boolean;
8867
8889
  /**
8868
8890
  * Gets or sets a value indicating whether the scheduled session has availability.
8869
8891
  */
@@ -8950,7 +8972,7 @@ declare class CoursesService {
8950
8972
  * @returns number OK
8951
8973
  * @throws ApiError
8952
8974
  */
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, }: {
8975
+ 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
8976
  /**
8955
8977
  * Gets or sets the queryable Course Id.
8956
8978
  */
@@ -9039,6 +9061,10 @@ declare class CoursesService {
9039
9061
  * Gets or sets a value indicating whether the course is featured on the storefront.
9040
9062
  */
9041
9063
  featured?: boolean;
9064
+ /**
9065
+ * Gets or sets a value indicating whether the session is private or no.
9066
+ */
9067
+ _private?: boolean;
9042
9068
  /**
9043
9069
  * Gets or sets a value indicating whether the scheduled session has availability.
9044
9070
  */
@@ -9125,7 +9151,7 @@ declare class CoursesService {
9125
9151
  * @returns Course OK
9126
9152
  * @throws ApiError
9127
9153
  */
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, }: {
9154
+ 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
9155
  /**
9130
9156
  * Gets or sets the queryable Course Id.
9131
9157
  */
@@ -9214,6 +9240,10 @@ declare class CoursesService {
9214
9240
  * Gets or sets a value indicating whether the course is featured on the storefront.
9215
9241
  */
9216
9242
  featured?: boolean;
9243
+ /**
9244
+ * Gets or sets a value indicating whether the session is private or no.
9245
+ */
9246
+ _private?: boolean;
9217
9247
  /**
9218
9248
  * Gets or sets a value indicating whether the scheduled session has availability.
9219
9249
  */
@@ -9300,7 +9330,7 @@ declare class CoursesService {
9300
9330
  * @returns Course OK
9301
9331
  * @throws ApiError
9302
9332
  */
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, }: {
9333
+ 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
9334
  /**
9305
9335
  * Gets or sets the queryable Course Id.
9306
9336
  */
@@ -9389,6 +9419,10 @@ declare class CoursesService {
9389
9419
  * Gets or sets a value indicating whether the course is featured on the storefront.
9390
9420
  */
9391
9421
  featured?: boolean;
9422
+ /**
9423
+ * Gets or sets a value indicating whether the session is private or no.
9424
+ */
9425
+ _private?: boolean;
9392
9426
  /**
9393
9427
  * Gets or sets a value indicating whether the scheduled session has availability.
9394
9428
  */
@@ -15734,6 +15768,10 @@ type GenericActivity = {
15734
15768
  * Gets or sets a value indicating whether there is an age restriction.
15735
15769
  */
15736
15770
  noAgeRestriction?: boolean;
15771
+ /**
15772
+ * Gets or sets a value indicating whether activity is private or not.
15773
+ */
15774
+ private?: boolean;
15737
15775
  /**
15738
15776
  * Gets or sets a value indicating whether the activity should be featured on the storefront.
15739
15777
  */
@@ -15856,7 +15894,7 @@ declare class GenericActivityService {
15856
15894
  * @returns GenericActivity OK
15857
15895
  * @throws ApiError
15858
15896
  */
15859
- 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, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
15897
+ 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, }: {
15860
15898
  /**
15861
15899
  * Gets or sets the wildcard for use in a query search.
15862
15900
  */
@@ -15897,6 +15935,10 @@ declare class GenericActivityService {
15897
15935
  * Gets or sets a value indicating whether to filter on whether the activity is featured.
15898
15936
  */
15899
15937
  featured?: boolean;
15938
+ /**
15939
+ * Gets or sets a value indicating does session is private or no.
15940
+ */
15941
+ _private?: boolean;
15900
15942
  /**
15901
15943
  * Gets or sets SearchGeoCenter.
15902
15944
  */
@@ -15962,13 +16004,13 @@ declare class GenericActivityService {
15962
16004
  */
15963
16005
  timeOfDay?: string;
15964
16006
  /**
15965
- * Gets or sets DateFrom.
16007
+ * Gets or sets StartDateTimeGTE.
15966
16008
  */
15967
- dateFrom?: string;
16009
+ startDateTimeGte?: string;
15968
16010
  /**
15969
- * Gets or sets DateTo.
16011
+ * Gets or sets EndDateTimeLTE.
15970
16012
  */
15971
- dateTo?: string;
16013
+ endDateTimeLte?: string;
15972
16014
  /**
15973
16015
  * Gets or sets Gender.
15974
16016
  */
@@ -16050,7 +16092,7 @@ declare class GenericActivityService {
16050
16092
  * @returns boolean OK
16051
16093
  * @throws ApiError
16052
16094
  */
16053
- 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, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16095
+ 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, }: {
16054
16096
  /**
16055
16097
  * Gets or sets the wildcard for use in a query search.
16056
16098
  */
@@ -16091,6 +16133,10 @@ declare class GenericActivityService {
16091
16133
  * Gets or sets a value indicating whether to filter on whether the activity is featured.
16092
16134
  */
16093
16135
  featured?: boolean;
16136
+ /**
16137
+ * Gets or sets a value indicating does session is private or no.
16138
+ */
16139
+ _private?: boolean;
16094
16140
  /**
16095
16141
  * Gets or sets SearchGeoCenter.
16096
16142
  */
@@ -16156,13 +16202,13 @@ declare class GenericActivityService {
16156
16202
  */
16157
16203
  timeOfDay?: string;
16158
16204
  /**
16159
- * Gets or sets DateFrom.
16205
+ * Gets or sets StartDateTimeGTE.
16160
16206
  */
16161
- dateFrom?: string;
16207
+ startDateTimeGte?: string;
16162
16208
  /**
16163
- * Gets or sets DateTo.
16209
+ * Gets or sets EndDateTimeLTE.
16164
16210
  */
16165
- dateTo?: string;
16211
+ endDateTimeLte?: string;
16166
16212
  /**
16167
16213
  * Gets or sets Gender.
16168
16214
  */
@@ -16233,7 +16279,7 @@ declare class GenericActivityService {
16233
16279
  * @returns number OK
16234
16280
  * @throws ApiError
16235
16281
  */
16236
- 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, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16282
+ 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, }: {
16237
16283
  /**
16238
16284
  * Gets or sets the wildcard for use in a query search.
16239
16285
  */
@@ -16274,6 +16320,10 @@ declare class GenericActivityService {
16274
16320
  * Gets or sets a value indicating whether to filter on whether the activity is featured.
16275
16321
  */
16276
16322
  featured?: boolean;
16323
+ /**
16324
+ * Gets or sets a value indicating does session is private or no.
16325
+ */
16326
+ _private?: boolean;
16277
16327
  /**
16278
16328
  * Gets or sets SearchGeoCenter.
16279
16329
  */
@@ -16339,13 +16389,13 @@ declare class GenericActivityService {
16339
16389
  */
16340
16390
  timeOfDay?: string;
16341
16391
  /**
16342
- * Gets or sets DateFrom.
16392
+ * Gets or sets StartDateTimeGTE.
16343
16393
  */
16344
- dateFrom?: string;
16394
+ startDateTimeGte?: string;
16345
16395
  /**
16346
- * Gets or sets DateTo.
16396
+ * Gets or sets EndDateTimeLTE.
16347
16397
  */
16348
- dateTo?: string;
16398
+ endDateTimeLte?: string;
16349
16399
  /**
16350
16400
  * Gets or sets Gender.
16351
16401
  */
@@ -16416,7 +16466,7 @@ declare class GenericActivityService {
16416
16466
  * @returns GenericActivityPage OK
16417
16467
  * @throws ApiError
16418
16468
  */
16419
- 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, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16469
+ 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, }: {
16420
16470
  /**
16421
16471
  * Gets or sets the wildcard for use in a query search.
16422
16472
  */
@@ -16457,6 +16507,10 @@ declare class GenericActivityService {
16457
16507
  * Gets or sets a value indicating whether to filter on whether the activity is featured.
16458
16508
  */
16459
16509
  featured?: boolean;
16510
+ /**
16511
+ * Gets or sets a value indicating does session is private or no.
16512
+ */
16513
+ _private?: boolean;
16460
16514
  /**
16461
16515
  * Gets or sets SearchGeoCenter.
16462
16516
  */
@@ -16522,13 +16576,13 @@ declare class GenericActivityService {
16522
16576
  */
16523
16577
  timeOfDay?: string;
16524
16578
  /**
16525
- * Gets or sets DateFrom.
16579
+ * Gets or sets StartDateTimeGTE.
16526
16580
  */
16527
- dateFrom?: string;
16581
+ startDateTimeGte?: string;
16528
16582
  /**
16529
- * Gets or sets DateTo.
16583
+ * Gets or sets EndDateTimeLTE.
16530
16584
  */
16531
- dateTo?: string;
16585
+ endDateTimeLte?: string;
16532
16586
  /**
16533
16587
  * Gets or sets Gender.
16534
16588
  */
@@ -16599,7 +16653,7 @@ declare class GenericActivityService {
16599
16653
  * @returns GenericActivity OK
16600
16654
  * @throws ApiError
16601
16655
  */
16602
- 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, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16656
+ 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, }: {
16603
16657
  /**
16604
16658
  * Gets or sets the wildcard for use in a query search.
16605
16659
  */
@@ -16640,6 +16694,10 @@ declare class GenericActivityService {
16640
16694
  * Gets or sets a value indicating whether to filter on whether the activity is featured.
16641
16695
  */
16642
16696
  featured?: boolean;
16697
+ /**
16698
+ * Gets or sets a value indicating does session is private or no.
16699
+ */
16700
+ _private?: boolean;
16643
16701
  /**
16644
16702
  * Gets or sets SearchGeoCenter.
16645
16703
  */
@@ -16705,13 +16763,13 @@ declare class GenericActivityService {
16705
16763
  */
16706
16764
  timeOfDay?: string;
16707
16765
  /**
16708
- * Gets or sets DateFrom.
16766
+ * Gets or sets StartDateTimeGTE.
16709
16767
  */
16710
- dateFrom?: string;
16768
+ startDateTimeGte?: string;
16711
16769
  /**
16712
- * Gets or sets DateTo.
16770
+ * Gets or sets EndDateTimeLTE.
16713
16771
  */
16714
- dateTo?: string;
16772
+ endDateTimeLte?: string;
16715
16773
  /**
16716
16774
  * Gets or sets Gender.
16717
16775
  */
@@ -16782,7 +16840,7 @@ declare class GenericActivityService {
16782
16840
  * @returns GenericActivity OK
16783
16841
  * @throws ApiError
16784
16842
  */
16785
- 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, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16843
+ 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, }: {
16786
16844
  /**
16787
16845
  * Gets or sets the wildcard for use in a query search.
16788
16846
  */
@@ -16823,6 +16881,10 @@ declare class GenericActivityService {
16823
16881
  * Gets or sets a value indicating whether to filter on whether the activity is featured.
16824
16882
  */
16825
16883
  featured?: boolean;
16884
+ /**
16885
+ * Gets or sets a value indicating does session is private or no.
16886
+ */
16887
+ _private?: boolean;
16826
16888
  /**
16827
16889
  * Gets or sets SearchGeoCenter.
16828
16890
  */
@@ -16888,13 +16950,13 @@ declare class GenericActivityService {
16888
16950
  */
16889
16951
  timeOfDay?: string;
16890
16952
  /**
16891
- * Gets or sets DateFrom.
16953
+ * Gets or sets StartDateTimeGTE.
16892
16954
  */
16893
- dateFrom?: string;
16955
+ startDateTimeGte?: string;
16894
16956
  /**
16895
- * Gets or sets DateTo.
16957
+ * Gets or sets EndDateTimeLTE.
16896
16958
  */
16897
- dateTo?: string;
16959
+ endDateTimeLte?: string;
16898
16960
  /**
16899
16961
  * Gets or sets Gender.
16900
16962
  */
@@ -28840,6 +28902,7 @@ type ProgrammePatch = {
28840
28902
  * Gets or sets the programme image url.
28841
28903
  */
28842
28904
  imageUrl?: string | null;
28905
+ upcomingLayout: UpcomingLayout;
28843
28906
  };
28844
28907
 
28845
28908
  /**
@@ -30878,7 +30941,7 @@ declare class PublicCoursesService {
30878
30941
  * @returns CoursePage OK
30879
30942
  * @throws ApiError
30880
30943
  */
30881
- 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, }: {
30944
+ 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, }: {
30882
30945
  xTenantSubdomain?: string;
30883
30946
  /**
30884
30947
  * Gets or sets the queryable Course Id.
@@ -30968,6 +31031,10 @@ declare class PublicCoursesService {
30968
31031
  * Gets or sets a value indicating whether the course is featured on the storefront.
30969
31032
  */
30970
31033
  featured?: boolean;
31034
+ /**
31035
+ * Gets or sets a value indicating whether the session is private or no.
31036
+ */
31037
+ _private?: boolean;
30971
31038
  /**
30972
31039
  * Gets or sets a value indicating whether the scheduled session has availability.
30973
31040
  */
@@ -31114,7 +31181,7 @@ declare class PublicCoursesService {
31114
31181
  * @returns boolean OK
31115
31182
  * @throws ApiError
31116
31183
  */
31117
- 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, }: {
31184
+ 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, }: {
31118
31185
  /**
31119
31186
  * The tenants subdomain.
31120
31187
  */
@@ -31207,6 +31274,10 @@ declare class PublicCoursesService {
31207
31274
  * Gets or sets a value indicating whether the course is featured on the storefront.
31208
31275
  */
31209
31276
  featured?: boolean;
31277
+ /**
31278
+ * Gets or sets a value indicating whether the session is private or no.
31279
+ */
31280
+ _private?: boolean;
31210
31281
  /**
31211
31282
  * Gets or sets a value indicating whether the scheduled session has availability.
31212
31283
  */
@@ -31848,7 +31919,7 @@ declare class PublicGenericActivityService {
31848
31919
  * @returns GenericActivityPage OK
31849
31920
  * @throws ApiError
31850
31921
  */
31851
- 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, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
31922
+ 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, }: {
31852
31923
  xTenantSubdomain?: string;
31853
31924
  /**
31854
31925
  * Gets or sets the wildcard for use in a query search.
@@ -31890,6 +31961,10 @@ declare class PublicGenericActivityService {
31890
31961
  * Gets or sets a value indicating whether to filter on whether the activity is featured.
31891
31962
  */
31892
31963
  featured?: boolean;
31964
+ /**
31965
+ * Gets or sets a value indicating does session is private or no.
31966
+ */
31967
+ _private?: boolean;
31893
31968
  /**
31894
31969
  * Gets or sets SearchGeoCenter.
31895
31970
  */
@@ -31955,13 +32030,13 @@ declare class PublicGenericActivityService {
31955
32030
  */
31956
32031
  timeOfDay?: string;
31957
32032
  /**
31958
- * Gets or sets DateFrom.
32033
+ * Gets or sets StartDateTimeGTE.
31959
32034
  */
31960
- dateFrom?: string;
32035
+ startDateTimeGte?: string;
31961
32036
  /**
31962
- * Gets or sets DateTo.
32037
+ * Gets or sets EndDateTimeLTE.
31963
32038
  */
31964
- dateTo?: string;
32039
+ endDateTimeLte?: string;
31965
32040
  /**
31966
32041
  * Gets or sets Gender.
31967
32042
  */
@@ -32032,7 +32107,7 @@ declare class PublicGenericActivityService {
32032
32107
  * @returns GenericActivityPage OK
32033
32108
  * @throws ApiError
32034
32109
  */
32035
- 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, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32110
+ 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, }: {
32036
32111
  /**
32037
32112
  * Gets or sets the wildcard for use in a query search.
32038
32113
  */
@@ -32073,6 +32148,10 @@ declare class PublicGenericActivityService {
32073
32148
  * Gets or sets a value indicating whether to filter on whether the activity is featured.
32074
32149
  */
32075
32150
  featured?: boolean;
32151
+ /**
32152
+ * Gets or sets a value indicating does session is private or no.
32153
+ */
32154
+ _private?: boolean;
32076
32155
  /**
32077
32156
  * Gets or sets SearchGeoCenter.
32078
32157
  */
@@ -32138,13 +32217,13 @@ declare class PublicGenericActivityService {
32138
32217
  */
32139
32218
  timeOfDay?: string;
32140
32219
  /**
32141
- * Gets or sets DateFrom.
32220
+ * Gets or sets StartDateTimeGTE.
32142
32221
  */
32143
- dateFrom?: string;
32222
+ startDateTimeGte?: string;
32144
32223
  /**
32145
- * Gets or sets DateTo.
32224
+ * Gets or sets EndDateTimeLTE.
32146
32225
  */
32147
- dateTo?: string;
32226
+ endDateTimeLte?: string;
32148
32227
  /**
32149
32228
  * Gets or sets Gender.
32150
32229
  */
@@ -32215,7 +32294,7 @@ declare class PublicGenericActivityService {
32215
32294
  * @returns GenericActivity OK
32216
32295
  * @throws ApiError
32217
32296
  */
32218
- 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, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32297
+ 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, }: {
32219
32298
  /**
32220
32299
  * The tenants subdomain.
32221
32300
  */
@@ -32260,6 +32339,10 @@ declare class PublicGenericActivityService {
32260
32339
  * Gets or sets a value indicating whether to filter on whether the activity is featured.
32261
32340
  */
32262
32341
  featured?: boolean;
32342
+ /**
32343
+ * Gets or sets a value indicating does session is private or no.
32344
+ */
32345
+ _private?: boolean;
32263
32346
  /**
32264
32347
  * Gets or sets SearchGeoCenter.
32265
32348
  */
@@ -32325,13 +32408,13 @@ declare class PublicGenericActivityService {
32325
32408
  */
32326
32409
  timeOfDay?: string;
32327
32410
  /**
32328
- * Gets or sets DateFrom.
32411
+ * Gets or sets StartDateTimeGTE.
32329
32412
  */
32330
- dateFrom?: string;
32413
+ startDateTimeGte?: string;
32331
32414
  /**
32332
- * Gets or sets DateTo.
32415
+ * Gets or sets EndDateTimeLTE.
32333
32416
  */
32334
- dateTo?: string;
32417
+ endDateTimeLte?: string;
32335
32418
  /**
32336
32419
  * Gets or sets Gender.
32337
32420
  */
@@ -32425,7 +32508,7 @@ declare class PublicGenericActivityService {
32425
32508
  * @returns boolean OK
32426
32509
  * @throws ApiError
32427
32510
  */
32428
- 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, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32511
+ 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, }: {
32429
32512
  /**
32430
32513
  * The tenants subdomain.
32431
32514
  */
@@ -32470,6 +32553,10 @@ declare class PublicGenericActivityService {
32470
32553
  * Gets or sets a value indicating whether to filter on whether the activity is featured.
32471
32554
  */
32472
32555
  featured?: boolean;
32556
+ /**
32557
+ * Gets or sets a value indicating does session is private or no.
32558
+ */
32559
+ _private?: boolean;
32473
32560
  /**
32474
32561
  * Gets or sets SearchGeoCenter.
32475
32562
  */
@@ -32535,13 +32622,13 @@ declare class PublicGenericActivityService {
32535
32622
  */
32536
32623
  timeOfDay?: string;
32537
32624
  /**
32538
- * Gets or sets DateFrom.
32625
+ * Gets or sets StartDateTimeGTE.
32539
32626
  */
32540
- dateFrom?: string;
32627
+ startDateTimeGte?: string;
32541
32628
  /**
32542
- * Gets or sets DateTo.
32629
+ * Gets or sets EndDateTimeLTE.
32543
32630
  */
32544
- dateTo?: string;
32631
+ endDateTimeLte?: string;
32545
32632
  /**
32546
32633
  * Gets or sets Gender.
32547
32634
  */
@@ -33050,7 +33137,7 @@ declare class PublicNetworksService {
33050
33137
  * @returns SessionPage OK
33051
33138
  * @throws ApiError
33052
33139
  */
33053
- 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, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
33140
+ 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, }: {
33054
33141
  /**
33055
33142
  * Gets or sets the queryable session ids.
33056
33143
  */
@@ -33083,6 +33170,10 @@ declare class PublicNetworksService {
33083
33170
  * Gets or sets a value indicating whether the session is featured on the storefront.
33084
33171
  */
33085
33172
  featured?: boolean;
33173
+ /**
33174
+ * Gets or sets a value indicating whether the session is private or open.
33175
+ */
33176
+ _private?: boolean;
33086
33177
  /**
33087
33178
  * Gets or sets the queryable Programme Id.
33088
33179
  */
@@ -33148,13 +33239,13 @@ declare class PublicNetworksService {
33148
33239
  */
33149
33240
  timeOfDay?: string;
33150
33241
  /**
33151
- * Gets or sets DateFrom.
33242
+ * Gets or sets StartDateTimeGTE.
33152
33243
  */
33153
- dateFrom?: string;
33244
+ startDateTimeGte?: string;
33154
33245
  /**
33155
- * Gets or sets DateTo.
33246
+ * Gets or sets EndDateTimeLTE.
33156
33247
  */
33157
- dateTo?: string;
33248
+ endDateTimeLte?: string;
33158
33249
  /**
33159
33250
  * Gets or sets Gender.
33160
33251
  */
@@ -35789,6 +35880,10 @@ type SessionPatch = {
35789
35880
  * Gets or sets a value indicating whether there is an age restriction.
35790
35881
  */
35791
35882
  noAgeRestriction?: boolean | null;
35883
+ /**
35884
+ * Gets or sets a value indicating whether session is private or no.
35885
+ */
35886
+ private?: boolean | null;
35792
35887
  /**
35793
35888
  * Gets or sets a value indicating whether the session is online and can take bookings.
35794
35889
  */
@@ -35894,7 +35989,7 @@ declare class PublicSessionsService {
35894
35989
  * @returns SessionPage OK
35895
35990
  * @throws ApiError
35896
35991
  */
35897
- 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, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35992
+ 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, }: {
35898
35993
  xTenantSubdomain?: string;
35899
35994
  /**
35900
35995
  * Gets or sets the queryable session ids.
@@ -35928,6 +36023,10 @@ declare class PublicSessionsService {
35928
36023
  * Gets or sets a value indicating whether the session is featured on the storefront.
35929
36024
  */
35930
36025
  featured?: boolean;
36026
+ /**
36027
+ * Gets or sets a value indicating whether the session is private or open.
36028
+ */
36029
+ _private?: boolean;
35931
36030
  /**
35932
36031
  * Gets or sets the queryable Programme Id.
35933
36032
  */
@@ -35993,13 +36092,13 @@ declare class PublicSessionsService {
35993
36092
  */
35994
36093
  timeOfDay?: string;
35995
36094
  /**
35996
- * Gets or sets DateFrom.
36095
+ * Gets or sets StartDateTimeGTE.
35997
36096
  */
35998
- dateFrom?: string;
36097
+ startDateTimeGte?: string;
35999
36098
  /**
36000
- * Gets or sets DateTo.
36099
+ * Gets or sets EndDateTimeLTE.
36001
36100
  */
36002
- dateTo?: string;
36101
+ endDateTimeLte?: string;
36003
36102
  /**
36004
36103
  * Gets or sets Gender.
36005
36104
  */
@@ -36312,7 +36411,7 @@ declare class PublicSessionsService {
36312
36411
  * @returns boolean OK
36313
36412
  * @throws ApiError
36314
36413
  */
36315
- 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, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36414
+ 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, }: {
36316
36415
  /**
36317
36416
  * The tenants subdomain.
36318
36417
  */
@@ -36349,6 +36448,10 @@ declare class PublicSessionsService {
36349
36448
  * Gets or sets a value indicating whether the session is featured on the storefront.
36350
36449
  */
36351
36450
  featured?: boolean;
36451
+ /**
36452
+ * Gets or sets a value indicating whether the session is private or open.
36453
+ */
36454
+ _private?: boolean;
36352
36455
  /**
36353
36456
  * Gets or sets the queryable Programme Id.
36354
36457
  */
@@ -36414,13 +36517,13 @@ declare class PublicSessionsService {
36414
36517
  */
36415
36518
  timeOfDay?: string;
36416
36519
  /**
36417
- * Gets or sets DateFrom.
36520
+ * Gets or sets StartDateTimeGTE.
36418
36521
  */
36419
- dateFrom?: string;
36522
+ startDateTimeGte?: string;
36420
36523
  /**
36421
- * Gets or sets DateTo.
36524
+ * Gets or sets EndDateTimeLTE.
36422
36525
  */
36423
- dateTo?: string;
36526
+ endDateTimeLte?: string;
36424
36527
  /**
36425
36528
  * Gets or sets Gender.
36426
36529
  */
@@ -38783,6 +38886,7 @@ type VenuePatch = {
38783
38886
  * Gets or sets the contact website.
38784
38887
  */
38785
38888
  contactWebsite?: string | null;
38889
+ upcomingLayout: UpcomingLayout;
38786
38890
  /**
38787
38891
  * Gets or sets a value indicating whether the venue can take bookings.
38788
38892
  */
@@ -43620,7 +43724,7 @@ declare class SessionsService {
43620
43724
  * @returns SessionPage OK
43621
43725
  * @throws ApiError
43622
43726
  */
43623
- 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, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
43727
+ 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, }: {
43624
43728
  /**
43625
43729
  * Gets or sets the queryable session ids.
43626
43730
  */
@@ -43653,6 +43757,10 @@ declare class SessionsService {
43653
43757
  * Gets or sets a value indicating whether the session is featured on the storefront.
43654
43758
  */
43655
43759
  featured?: boolean;
43760
+ /**
43761
+ * Gets or sets a value indicating whether the session is private or open.
43762
+ */
43763
+ _private?: boolean;
43656
43764
  /**
43657
43765
  * Gets or sets the queryable Programme Id.
43658
43766
  */
@@ -43718,13 +43826,13 @@ declare class SessionsService {
43718
43826
  */
43719
43827
  timeOfDay?: string;
43720
43828
  /**
43721
- * Gets or sets DateFrom.
43829
+ * Gets or sets StartDateTimeGTE.
43722
43830
  */
43723
- dateFrom?: string;
43831
+ startDateTimeGte?: string;
43724
43832
  /**
43725
- * Gets or sets DateTo.
43833
+ * Gets or sets EndDateTimeLTE.
43726
43834
  */
43727
- dateTo?: string;
43835
+ endDateTimeLte?: string;
43728
43836
  /**
43729
43837
  * Gets or sets Gender.
43730
43838
  */
@@ -43828,7 +43936,7 @@ declare class SessionsService {
43828
43936
  * @returns boolean OK
43829
43937
  * @throws ApiError
43830
43938
  */
43831
- 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, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
43939
+ 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, }: {
43832
43940
  /**
43833
43941
  * Gets or sets the queryable session ids.
43834
43942
  */
@@ -43861,6 +43969,10 @@ declare class SessionsService {
43861
43969
  * Gets or sets a value indicating whether the session is featured on the storefront.
43862
43970
  */
43863
43971
  featured?: boolean;
43972
+ /**
43973
+ * Gets or sets a value indicating whether the session is private or open.
43974
+ */
43975
+ _private?: boolean;
43864
43976
  /**
43865
43977
  * Gets or sets the queryable Programme Id.
43866
43978
  */
@@ -43926,13 +44038,13 @@ declare class SessionsService {
43926
44038
  */
43927
44039
  timeOfDay?: string;
43928
44040
  /**
43929
- * Gets or sets DateFrom.
44041
+ * Gets or sets StartDateTimeGTE.
43930
44042
  */
43931
- dateFrom?: string;
44043
+ startDateTimeGte?: string;
43932
44044
  /**
43933
- * Gets or sets DateTo.
44045
+ * Gets or sets EndDateTimeLTE.
43934
44046
  */
43935
- dateTo?: string;
44047
+ endDateTimeLte?: string;
43936
44048
  /**
43937
44049
  * Gets or sets Gender.
43938
44050
  */
@@ -44003,7 +44115,7 @@ declare class SessionsService {
44003
44115
  * @returns number OK
44004
44116
  * @throws ApiError
44005
44117
  */
44006
- 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, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
44118
+ 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, }: {
44007
44119
  /**
44008
44120
  * Gets or sets the queryable session ids.
44009
44121
  */
@@ -44036,6 +44148,10 @@ declare class SessionsService {
44036
44148
  * Gets or sets a value indicating whether the session is featured on the storefront.
44037
44149
  */
44038
44150
  featured?: boolean;
44151
+ /**
44152
+ * Gets or sets a value indicating whether the session is private or open.
44153
+ */
44154
+ _private?: boolean;
44039
44155
  /**
44040
44156
  * Gets or sets the queryable Programme Id.
44041
44157
  */
@@ -44101,13 +44217,13 @@ declare class SessionsService {
44101
44217
  */
44102
44218
  timeOfDay?: string;
44103
44219
  /**
44104
- * Gets or sets DateFrom.
44220
+ * Gets or sets StartDateTimeGTE.
44105
44221
  */
44106
- dateFrom?: string;
44222
+ startDateTimeGte?: string;
44107
44223
  /**
44108
- * Gets or sets DateTo.
44224
+ * Gets or sets EndDateTimeLTE.
44109
44225
  */
44110
- dateTo?: string;
44226
+ endDateTimeLte?: string;
44111
44227
  /**
44112
44228
  * Gets or sets Gender.
44113
44229
  */
@@ -44178,7 +44294,7 @@ declare class SessionsService {
44178
44294
  * @returns Session OK
44179
44295
  * @throws ApiError
44180
44296
  */
44181
- 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, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
44297
+ 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, }: {
44182
44298
  /**
44183
44299
  * Gets or sets the queryable session ids.
44184
44300
  */
@@ -44211,6 +44327,10 @@ declare class SessionsService {
44211
44327
  * Gets or sets a value indicating whether the session is featured on the storefront.
44212
44328
  */
44213
44329
  featured?: boolean;
44330
+ /**
44331
+ * Gets or sets a value indicating whether the session is private or open.
44332
+ */
44333
+ _private?: boolean;
44214
44334
  /**
44215
44335
  * Gets or sets the queryable Programme Id.
44216
44336
  */
@@ -44276,13 +44396,13 @@ declare class SessionsService {
44276
44396
  */
44277
44397
  timeOfDay?: string;
44278
44398
  /**
44279
- * Gets or sets DateFrom.
44399
+ * Gets or sets StartDateTimeGTE.
44280
44400
  */
44281
- dateFrom?: string;
44401
+ startDateTimeGte?: string;
44282
44402
  /**
44283
- * Gets or sets DateTo.
44403
+ * Gets or sets EndDateTimeLTE.
44284
44404
  */
44285
- dateTo?: string;
44405
+ endDateTimeLte?: string;
44286
44406
  /**
44287
44407
  * Gets or sets Gender.
44288
44408
  */
@@ -44353,7 +44473,7 @@ declare class SessionsService {
44353
44473
  * @returns Session OK
44354
44474
  * @throws ApiError
44355
44475
  */
44356
- 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, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
44476
+ 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, }: {
44357
44477
  /**
44358
44478
  * Gets or sets the queryable session ids.
44359
44479
  */
@@ -44386,6 +44506,10 @@ declare class SessionsService {
44386
44506
  * Gets or sets a value indicating whether the session is featured on the storefront.
44387
44507
  */
44388
44508
  featured?: boolean;
44509
+ /**
44510
+ * Gets or sets a value indicating whether the session is private or open.
44511
+ */
44512
+ _private?: boolean;
44389
44513
  /**
44390
44514
  * Gets or sets the queryable Programme Id.
44391
44515
  */
@@ -44451,13 +44575,13 @@ declare class SessionsService {
44451
44575
  */
44452
44576
  timeOfDay?: string;
44453
44577
  /**
44454
- * Gets or sets DateFrom.
44578
+ * Gets or sets StartDateTimeGTE.
44455
44579
  */
44456
- dateFrom?: string;
44580
+ startDateTimeGte?: string;
44457
44581
  /**
44458
- * Gets or sets DateTo.
44582
+ * Gets or sets EndDateTimeLTE.
44459
44583
  */
44460
- dateTo?: string;
44584
+ endDateTimeLte?: string;
44461
44585
  /**
44462
44586
  * Gets or sets Gender.
44463
44587
  */
@@ -50165,6 +50289,7 @@ type TemplateFieldPermission = {
50165
50289
  minAge?: FieldPermission;
50166
50290
  maxAge?: FieldPermission;
50167
50291
  noAgeRestriction?: FieldPermission;
50292
+ private?: FieldPermission;
50168
50293
  additionalSupport?: FieldPermission;
50169
50294
  contactName?: FieldPermission;
50170
50295
  contactPhone?: FieldPermission;
@@ -50347,6 +50472,10 @@ type TemplateDetail = {
50347
50472
  * Gets or sets a value indicating whether there is an age restriction.
50348
50473
  */
50349
50474
  noAgeRestriction?: boolean;
50475
+ /**
50476
+ * Gets or sets a value indicating whether the activity is private.
50477
+ */
50478
+ private?: boolean;
50350
50479
  /**
50351
50480
  * Gets or sets the templates additional support options.
50352
50481
  */
@@ -50540,6 +50669,10 @@ type TemplateDetailPatch = {
50540
50669
  * Gets or sets a value indicating whether there is an age restriction.
50541
50670
  */
50542
50671
  noAgeRestriction?: boolean;
50672
+ /**
50673
+ * Gets or sets a value indicating whether activity is private or no.
50674
+ */
50675
+ private?: boolean;
50543
50676
  /**
50544
50677
  * Gets or sets the templates additional support options.
50545
50678
  */
@@ -51031,6 +51164,7 @@ type TemplateFieldPermissionPatch = {
51031
51164
  minAge?: FieldPermission;
51032
51165
  maxAge?: FieldPermission;
51033
51166
  noAgeRestriction?: FieldPermission;
51167
+ private?: FieldPermission;
51034
51168
  additionalSupport?: FieldPermission;
51035
51169
  contactName?: FieldPermission;
51036
51170
  contactPhone?: FieldPermission;
@@ -51920,6 +52054,7 @@ type CreateTemplateFieldPermission = {
51920
52054
  minAge?: FieldPermission;
51921
52055
  maxAge?: FieldPermission;
51922
52056
  noAgeRestriction?: FieldPermission;
52057
+ private?: FieldPermission;
51923
52058
  additionalSupport?: FieldPermission;
51924
52059
  contactName?: FieldPermission;
51925
52060
  contactPhone?: FieldPermission;
@@ -52016,6 +52151,10 @@ type CreateTemplateDetail = {
52016
52151
  * Gets or sets a value indicating whether there is an age restriction.
52017
52152
  */
52018
52153
  noAgeRestriction?: boolean;
52154
+ /**
52155
+ * Gets or sets a value indicating whether activity is private or no.
52156
+ */
52157
+ private?: boolean;
52019
52158
  /**
52020
52159
  * Gets or sets the templates additional support options.
52021
52160
  */
@@ -60866,6 +61005,12 @@ declare class WaitlistOpportunityService {
60866
61005
  }): CancelablePromise<Array<WaitlistOpportunity>>;
60867
61006
  }
60868
61007
 
61008
+ type WaitlistConversionStatsResponseDto = {
61009
+ totalWaitlistCount?: number;
61010
+ totalUpcomingWaitlistCount?: number;
61011
+ conversionPercentage?: number;
61012
+ };
61013
+
60869
61014
  /**
60870
61015
  * Represents the waitlist opportunity report model.
60871
61016
  */
@@ -61012,10 +61157,10 @@ declare class WaitlistOpportunityReportService {
61012
61157
  }): CancelablePromise<any>;
61013
61158
  /**
61014
61159
  * Gets waitlist conversion statistics.
61015
- * @returns any OK
61160
+ * @returns WaitlistConversionStatsResponseDto OK
61016
61161
  * @throws ApiError
61017
61162
  */
61018
- getConversionStats(): CancelablePromise<any>;
61163
+ getConversionStats(): CancelablePromise<WaitlistConversionStatsResponseDto>;
61019
61164
  /**
61020
61165
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
61021
61166
  * @returns WaitlistOpportunityReport OK
@@ -61731,4 +61876,4 @@ type ValidationResultModel = {
61731
61876
  readonly errors?: Array<ValidationError> | null;
61732
61877
  };
61733
61878
 
61734
- 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 };
61879
+ 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 };